diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index fe7c7f84f..000000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.github/.DS_Store b/.github/.DS_Store deleted file mode 100644 index 127299e8a..000000000 Binary files a/.github/.DS_Store and /dev/null differ diff --git a/.github/workflows/generate-sdk-stable.yaml b/.github/workflows/generate-sdk-stable.yaml deleted file mode 100644 index ddd405fef..000000000 --- a/.github/workflows/generate-sdk-stable.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: Generate stable API - -on: - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - ref: 'main' - - - name: Generate - uses: docker://openapitools/openapi-generator-cli:latest - with: - args: >- - generate -i jellyfin-openapi-stable-edited.json - -g swift5 - --additional-properties=projectName=JellyfinAPI,responseAs=Combine,library=vapor,useSPMFileStructure=true - -o /github/workspace - -t templates/swift5/ - --type-mappings UUID=String - - # "echo" in commit returns true so the build succeeds, even if no changed files - - name: Commit new changes to the repo - run: | - git config user.name jellyfin-bot - git config user.email team@jellyfin.org - git pull - git add . - git commit -m "Update stable OpenAPI client" || echo - git push diff --git a/.gitignore b/.gitignore index 627d360a9..a19fb00b2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,20 @@ -# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode -# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode - -### Swift ### # Xcode # # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore -## User settings -xcuserdata/ - -## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) -*.xcscmblueprint -*.xccheckout - -## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) +## Build generated build/ DerivedData/ -*.moved-aside + +Pods/ +Podfile.lock +dynatraceSymbols.zip +Cartfile.resolved +Gemfile.lock +dynatrace/ +Carthage + +## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -25,11 +23,15 @@ DerivedData/ !default.mode2v3 *.perspectivev3 !default.perspectivev3 +xcuserdata/ + +## Other +*.moved-aside +*.xccheckout +*.xcscmblueprint ## Obj-C/Swift specific *.hmap - -## App packaging *.ipa *.dSYM.zip *.dSYM @@ -39,38 +41,39 @@ timeline.xctimeline playground.xcworkspace # Swift Package Manager +# # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. # Packages/ # Package.pins # Package.resolved -# *.xcodeproj -# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata -# hence it is not needed unless you have added a package configuration file to your project -# .swiftpm - .build/ # CocoaPods +# # We recommend against adding the Pods directory to your .gitignore. However # you should judge for yourself, the pros and cons are mentioned at: # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# # Pods/ +# # Add this line if you want to avoid checking in source code from the Xcode workspace # *.xcworkspace # Carthage +# # Add this line if you want to avoid checking in source code from Carthage dependencies. # Carthage/Checkouts -Carthage/Build/ +Carthage/Build -# Add this lines if you are using Accio dependency management (Deprecated since Xcode 12) -# Dependencies/ -# .accio/ +# Accio dependency management +Dependencies/ +.accio/ # fastlane -# It is recommended to not store the screenshots in the git repo. -# Instead, use fastlane to re-generate the screenshots whenever they are needed. +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. # For more information about the recommended setup visit: # https://docs.fastlane.tools/best-practices/source-control/#source-control @@ -80,26 +83,19 @@ fastlane/screenshots/**/*.png fastlane/test_output # Code Injection +# # After new code Injection tools there's a generated folder /iOSInjectionProject # https://github.com/johnno1962/injectionforxcode iOSInjectionProject/ -### Xcode ### -# Xcode -# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore - - - - -## Gcc Patch -/*.gcno - -### Xcode Patch ### -*.xcodeproj/* -!*.xcodeproj/project.pbxproj -!*.xcodeproj/xcshareddata/ -!*.xcworkspace/contents.xcworkspacedata -**/xcshareddata/WorkspaceSettings.xcsettings - -# End of https://www.toptal.com/developers/gitignore/api/swift,xcode +# macOS specific +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +Shared/Generated/Strings.swift +.swiftpm/xcode/ diff --git a/.openapi-generator-ignore b/.openapi-generator-ignore deleted file mode 100644 index 7484ee590..000000000 --- a/.openapi-generator-ignore +++ /dev/null @@ -1,23 +0,0 @@ -# OpenAPI Generator Ignore -# Generated by openapi-generator https://github.com/openapitools/openapi-generator - -# Use this file to prevent files from being overwritten by the generator. -# The patterns follow closely to .gitignore or .dockerignore. - -# As an example, the C# client generator defines ApiClient.cs. -# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line: -#ApiClient.cs - -# You can match any string of characters against a directory, file or extension with a single asterisk (*): -#foo/*/qux -# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux - -# You can recursively match patterns against a directory, file or extension with a double asterisk (**): -#foo/**/qux -# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux - -# You can also negate patterns with an exclamation (!). -# For example, you can ignore all files in a docs folder with the file extension .md: -#docs/*.md -# Then explicitly reverse the ignore rule for a single file: -#!docs/README.md diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES deleted file mode 100644 index 5f2d5273f..000000000 --- a/.openapi-generator/FILES +++ /dev/null @@ -1,910 +0,0 @@ -.gitignore -Cartfile -JellyfinAPI.podspec -Package.swift -README.md -Sources/JellyfinAPI/APIHelper.swift -Sources/JellyfinAPI/APIs.swift -Sources/JellyfinAPI/APIs/ActivityLogAPI.swift -Sources/JellyfinAPI/APIs/ApiKeyAPI.swift -Sources/JellyfinAPI/APIs/ArtistsAPI.swift -Sources/JellyfinAPI/APIs/AudioAPI.swift -Sources/JellyfinAPI/APIs/BrandingAPI.swift -Sources/JellyfinAPI/APIs/ChannelsAPI.swift -Sources/JellyfinAPI/APIs/ClientLogAPI.swift -Sources/JellyfinAPI/APIs/CollectionAPI.swift -Sources/JellyfinAPI/APIs/ConfigurationAPI.swift -Sources/JellyfinAPI/APIs/DashboardAPI.swift -Sources/JellyfinAPI/APIs/DevicesAPI.swift -Sources/JellyfinAPI/APIs/DisplayPreferencesAPI.swift -Sources/JellyfinAPI/APIs/DlnaAPI.swift -Sources/JellyfinAPI/APIs/DlnaServerAPI.swift -Sources/JellyfinAPI/APIs/DynamicHlsAPI.swift -Sources/JellyfinAPI/APIs/EnvironmentAPI.swift -Sources/JellyfinAPI/APIs/FilterAPI.swift -Sources/JellyfinAPI/APIs/GenresAPI.swift -Sources/JellyfinAPI/APIs/HlsSegmentAPI.swift -Sources/JellyfinAPI/APIs/ImageAPI.swift -Sources/JellyfinAPI/APIs/ImageByNameAPI.swift -Sources/JellyfinAPI/APIs/InstantMixAPI.swift -Sources/JellyfinAPI/APIs/ItemLookupAPI.swift -Sources/JellyfinAPI/APIs/ItemRefreshAPI.swift -Sources/JellyfinAPI/APIs/ItemUpdateAPI.swift -Sources/JellyfinAPI/APIs/ItemsAPI.swift -Sources/JellyfinAPI/APIs/LibraryAPI.swift -Sources/JellyfinAPI/APIs/LibraryStructureAPI.swift -Sources/JellyfinAPI/APIs/LiveTvAPI.swift -Sources/JellyfinAPI/APIs/LocalizationAPI.swift -Sources/JellyfinAPI/APIs/MediaInfoAPI.swift -Sources/JellyfinAPI/APIs/MoviesAPI.swift -Sources/JellyfinAPI/APIs/MusicGenresAPI.swift -Sources/JellyfinAPI/APIs/NotificationsAPI.swift -Sources/JellyfinAPI/APIs/PackageAPI.swift -Sources/JellyfinAPI/APIs/PersonsAPI.swift -Sources/JellyfinAPI/APIs/PlaylistsAPI.swift -Sources/JellyfinAPI/APIs/PlaystateAPI.swift -Sources/JellyfinAPI/APIs/PluginsAPI.swift -Sources/JellyfinAPI/APIs/QuickConnectAPI.swift -Sources/JellyfinAPI/APIs/RemoteImageAPI.swift -Sources/JellyfinAPI/APIs/ScheduledTasksAPI.swift -Sources/JellyfinAPI/APIs/SearchAPI.swift -Sources/JellyfinAPI/APIs/SessionAPI.swift -Sources/JellyfinAPI/APIs/StartupAPI.swift -Sources/JellyfinAPI/APIs/StudiosAPI.swift -Sources/JellyfinAPI/APIs/SubtitleAPI.swift -Sources/JellyfinAPI/APIs/SuggestionsAPI.swift -Sources/JellyfinAPI/APIs/SyncPlayAPI.swift -Sources/JellyfinAPI/APIs/SystemAPI.swift -Sources/JellyfinAPI/APIs/TimeSyncAPI.swift -Sources/JellyfinAPI/APIs/TmdbAPI.swift -Sources/JellyfinAPI/APIs/TrailersAPI.swift -Sources/JellyfinAPI/APIs/TvShowsAPI.swift -Sources/JellyfinAPI/APIs/UniversalAudioAPI.swift -Sources/JellyfinAPI/APIs/UserAPI.swift -Sources/JellyfinAPI/APIs/UserLibraryAPI.swift -Sources/JellyfinAPI/APIs/UserViewsAPI.swift -Sources/JellyfinAPI/APIs/VideoAttachmentsAPI.swift -Sources/JellyfinAPI/APIs/VideosAPI.swift -Sources/JellyfinAPI/APIs/YearsAPI.swift -Sources/JellyfinAPI/CodableHelper.swift -Sources/JellyfinAPI/Configuration.swift -Sources/JellyfinAPI/Extensions.swift -Sources/JellyfinAPI/JSONDataEncoding.swift -Sources/JellyfinAPI/JSONEncodingHelper.swift -Sources/JellyfinAPI/Models.swift -Sources/JellyfinAPI/Models/AccessSchedule.swift -Sources/JellyfinAPI/Models/ActivityLogEntry.swift -Sources/JellyfinAPI/Models/ActivityLogEntryQueryResult.swift -Sources/JellyfinAPI/Models/AddListingProviderRequest.swift -Sources/JellyfinAPI/Models/AddMediaPathRequest.swift -Sources/JellyfinAPI/Models/AddTunerHostRequest.swift -Sources/JellyfinAPI/Models/AddVirtualFolderDto.swift -Sources/JellyfinAPI/Models/AddVirtualFolderDtoLibraryOptions.swift -Sources/JellyfinAPI/Models/AddVirtualFolderRequest.swift -Sources/JellyfinAPI/Models/AdminNotificationDto.swift -Sources/JellyfinAPI/Models/AlbumInfo.swift -Sources/JellyfinAPI/Models/AlbumInfoRemoteSearchQuery.swift -Sources/JellyfinAPI/Models/AlbumInfoRemoteSearchQuerySearchInfo.swift -Sources/JellyfinAPI/Models/AllThemeMediaResult.swift -Sources/JellyfinAPI/Models/AllThemeMediaResultThemeVideosResult.swift -Sources/JellyfinAPI/Models/ApplySearchCriteriaRequest.swift -Sources/JellyfinAPI/Models/Architecture.swift -Sources/JellyfinAPI/Models/ArtistInfo.swift -Sources/JellyfinAPI/Models/ArtistInfoRemoteSearchQuery.swift -Sources/JellyfinAPI/Models/ArtistInfoRemoteSearchQuerySearchInfo.swift -Sources/JellyfinAPI/Models/AuthenticateUserByName.swift -Sources/JellyfinAPI/Models/AuthenticateUserByNameRequest.swift -Sources/JellyfinAPI/Models/AuthenticateWithQuickConnectRequest.swift -Sources/JellyfinAPI/Models/AuthenticationInfo.swift -Sources/JellyfinAPI/Models/AuthenticationInfoQueryResult.swift -Sources/JellyfinAPI/Models/AuthenticationResult.swift -Sources/JellyfinAPI/Models/AuthenticationResultSessionInfo.swift -Sources/JellyfinAPI/Models/AuthenticationResultUser.swift -Sources/JellyfinAPI/Models/BaseItem.swift -Sources/JellyfinAPI/Models/BaseItemDto.swift -Sources/JellyfinAPI/Models/BaseItemDtoImageBlurHashes.swift -Sources/JellyfinAPI/Models/BaseItemDtoQueryResult.swift -Sources/JellyfinAPI/Models/BaseItemDtoUserData.swift -Sources/JellyfinAPI/Models/BaseItemKind.swift -Sources/JellyfinAPI/Models/BaseItemPerson.swift -Sources/JellyfinAPI/Models/BaseItemPersonImageBlurHashes.swift -Sources/JellyfinAPI/Models/BookInfo.swift -Sources/JellyfinAPI/Models/BookInfoRemoteSearchQuery.swift -Sources/JellyfinAPI/Models/BookInfoRemoteSearchQuerySearchInfo.swift -Sources/JellyfinAPI/Models/BoxSetInfo.swift -Sources/JellyfinAPI/Models/BoxSetInfoRemoteSearchQuery.swift -Sources/JellyfinAPI/Models/BoxSetInfoRemoteSearchQuerySearchInfo.swift -Sources/JellyfinAPI/Models/BrandingOptions.swift -Sources/JellyfinAPI/Models/BufferRequestDto.swift -Sources/JellyfinAPI/Models/ChannelFeatures.swift -Sources/JellyfinAPI/Models/ChannelItemSortField.swift -Sources/JellyfinAPI/Models/ChannelMappingOptionsDto.swift -Sources/JellyfinAPI/Models/ChannelMediaContentType.swift -Sources/JellyfinAPI/Models/ChannelMediaType.swift -Sources/JellyfinAPI/Models/ChannelType.swift -Sources/JellyfinAPI/Models/ChapterInfo.swift -Sources/JellyfinAPI/Models/ClientCapabilities.swift -Sources/JellyfinAPI/Models/ClientCapabilitiesDeviceProfile.swift -Sources/JellyfinAPI/Models/ClientCapabilitiesDto.swift -Sources/JellyfinAPI/Models/ClientLogDocumentResponseDto.swift -Sources/JellyfinAPI/Models/CodecProfile.swift -Sources/JellyfinAPI/Models/CodecType.swift -Sources/JellyfinAPI/Models/CollectionCreationResult.swift -Sources/JellyfinAPI/Models/CollectionTypeOptions.swift -Sources/JellyfinAPI/Models/ConfigImageTypes.swift -Sources/JellyfinAPI/Models/ConfigurationPageInfo.swift -Sources/JellyfinAPI/Models/ContainerProfile.swift -Sources/JellyfinAPI/Models/ControlResponse.swift -Sources/JellyfinAPI/Models/CountryInfo.swift -Sources/JellyfinAPI/Models/CreateAdminNotificationRequest.swift -Sources/JellyfinAPI/Models/CreatePlaylistDto.swift -Sources/JellyfinAPI/Models/CreatePlaylistRequest.swift -Sources/JellyfinAPI/Models/CreateProfileRequest.swift -Sources/JellyfinAPI/Models/CreateSeriesTimerRequest.swift -Sources/JellyfinAPI/Models/CreateTimerRequest.swift -Sources/JellyfinAPI/Models/CreateUserByName.swift -Sources/JellyfinAPI/Models/CreateUserByNameRequest.swift -Sources/JellyfinAPI/Models/CultureDto.swift -Sources/JellyfinAPI/Models/DayOfWeek.swift -Sources/JellyfinAPI/Models/DayPattern.swift -Sources/JellyfinAPI/Models/DefaultDirectoryBrowserInfoDto.swift -Sources/JellyfinAPI/Models/DeviceIdentification.swift -Sources/JellyfinAPI/Models/DeviceInfo.swift -Sources/JellyfinAPI/Models/DeviceInfoCapabilities.swift -Sources/JellyfinAPI/Models/DeviceInfoQueryResult.swift -Sources/JellyfinAPI/Models/DeviceOptions.swift -Sources/JellyfinAPI/Models/DeviceOptionsDto.swift -Sources/JellyfinAPI/Models/DeviceProfile.swift -Sources/JellyfinAPI/Models/DeviceProfileIdentification.swift -Sources/JellyfinAPI/Models/DeviceProfileInfo.swift -Sources/JellyfinAPI/Models/DeviceProfileType.swift -Sources/JellyfinAPI/Models/DirectPlayProfile.swift -Sources/JellyfinAPI/Models/DisplayPreferencesDto.swift -Sources/JellyfinAPI/Models/DlnaOptions.swift -Sources/JellyfinAPI/Models/DlnaProfileType.swift -Sources/JellyfinAPI/Models/DynamicDayOfWeek.swift -Sources/JellyfinAPI/Models/EmbeddedSubtitleOptions.swift -Sources/JellyfinAPI/Models/EncodingContext.swift -Sources/JellyfinAPI/Models/EncodingOptions.swift -Sources/JellyfinAPI/Models/EndPointInfo.swift -Sources/JellyfinAPI/Models/ExternalIdInfo.swift -Sources/JellyfinAPI/Models/ExternalIdMediaType.swift -Sources/JellyfinAPI/Models/ExternalUrl.swift -Sources/JellyfinAPI/Models/FFmpegLocation.swift -Sources/JellyfinAPI/Models/FileSystemEntryInfo.swift -Sources/JellyfinAPI/Models/FileSystemEntryType.swift -Sources/JellyfinAPI/Models/FontFile.swift -Sources/JellyfinAPI/Models/ForgotPasswordAction.swift -Sources/JellyfinAPI/Models/ForgotPasswordDto.swift -Sources/JellyfinAPI/Models/ForgotPasswordPinDto.swift -Sources/JellyfinAPI/Models/ForgotPasswordPinRequest.swift -Sources/JellyfinAPI/Models/ForgotPasswordRequest.swift -Sources/JellyfinAPI/Models/ForgotPasswordResult.swift -Sources/JellyfinAPI/Models/GeneralCommand.swift -Sources/JellyfinAPI/Models/GeneralCommandType.swift -Sources/JellyfinAPI/Models/GetBookRemoteSearchResultsRequest.swift -Sources/JellyfinAPI/Models/GetBoxSetRemoteSearchResultsRequest.swift -Sources/JellyfinAPI/Models/GetMovieRemoteSearchResultsRequest.swift -Sources/JellyfinAPI/Models/GetMusicAlbumRemoteSearchResultsRequest.swift -Sources/JellyfinAPI/Models/GetMusicArtistRemoteSearchResultsRequest.swift -Sources/JellyfinAPI/Models/GetMusicVideoRemoteSearchResultsRequest.swift -Sources/JellyfinAPI/Models/GetPersonRemoteSearchResultsRequest.swift -Sources/JellyfinAPI/Models/GetPostedPlaybackInfoRequest.swift -Sources/JellyfinAPI/Models/GetProgramsDto.swift -Sources/JellyfinAPI/Models/GetProgramsRequest.swift -Sources/JellyfinAPI/Models/GetSeriesRemoteSearchResultsRequest.swift -Sources/JellyfinAPI/Models/GetTrailerRemoteSearchResultsRequest.swift -Sources/JellyfinAPI/Models/GroupInfoDto.swift -Sources/JellyfinAPI/Models/GroupQueueMode.swift -Sources/JellyfinAPI/Models/GroupRepeatMode.swift -Sources/JellyfinAPI/Models/GroupShuffleMode.swift -Sources/JellyfinAPI/Models/GroupStateType.swift -Sources/JellyfinAPI/Models/GroupUpdateType.swift -Sources/JellyfinAPI/Models/GuideInfo.swift -Sources/JellyfinAPI/Models/HardwareEncodingType.swift -Sources/JellyfinAPI/Models/HeaderMatchType.swift -Sources/JellyfinAPI/Models/HttpHeaderInfo.swift -Sources/JellyfinAPI/Models/IPlugin.swift -Sources/JellyfinAPI/Models/IgnoreWaitRequestDto.swift -Sources/JellyfinAPI/Models/ImageByNameInfo.swift -Sources/JellyfinAPI/Models/ImageFormat.swift -Sources/JellyfinAPI/Models/ImageInfo.swift -Sources/JellyfinAPI/Models/ImageOption.swift -Sources/JellyfinAPI/Models/ImageOrientation.swift -Sources/JellyfinAPI/Models/ImageProviderInfo.swift -Sources/JellyfinAPI/Models/ImageSavingConvention.swift -Sources/JellyfinAPI/Models/ImageType.swift -Sources/JellyfinAPI/Models/InstallationInfo.swift -Sources/JellyfinAPI/Models/InstallationInfoPackageInfo.swift -Sources/JellyfinAPI/Models/IsoType.swift -Sources/JellyfinAPI/Models/ItemCounts.swift -Sources/JellyfinAPI/Models/ItemFields.swift -Sources/JellyfinAPI/Models/ItemFilter.swift -Sources/JellyfinAPI/Models/JoinGroupRequestDto.swift -Sources/JellyfinAPI/Models/KeepUntil.swift -Sources/JellyfinAPI/Models/LibraryOptionInfoDto.swift -Sources/JellyfinAPI/Models/LibraryOptions.swift -Sources/JellyfinAPI/Models/LibraryOptionsResultDto.swift -Sources/JellyfinAPI/Models/LibraryTypeOptionsDto.swift -Sources/JellyfinAPI/Models/LibraryUpdateInfo.swift -Sources/JellyfinAPI/Models/ListingsProviderInfo.swift -Sources/JellyfinAPI/Models/LiveStreamResponse.swift -Sources/JellyfinAPI/Models/LiveStreamResponseMediaSource.swift -Sources/JellyfinAPI/Models/LiveTvInfo.swift -Sources/JellyfinAPI/Models/LiveTvOptions.swift -Sources/JellyfinAPI/Models/LiveTvServiceInfo.swift -Sources/JellyfinAPI/Models/LiveTvServiceStatus.swift -Sources/JellyfinAPI/Models/LocalizationOption.swift -Sources/JellyfinAPI/Models/LocationType.swift -Sources/JellyfinAPI/Models/LogFile.swift -Sources/JellyfinAPI/Models/LogLevel.swift -Sources/JellyfinAPI/Models/MediaAttachment.swift -Sources/JellyfinAPI/Models/MediaEncoderPathDto.swift -Sources/JellyfinAPI/Models/MediaPathDto.swift -Sources/JellyfinAPI/Models/MediaPathDtoPathInfo.swift -Sources/JellyfinAPI/Models/MediaPathInfo.swift -Sources/JellyfinAPI/Models/MediaProtocol.swift -Sources/JellyfinAPI/Models/MediaSourceInfo.swift -Sources/JellyfinAPI/Models/MediaSourceType.swift -Sources/JellyfinAPI/Models/MediaStream.swift -Sources/JellyfinAPI/Models/MediaStreamType.swift -Sources/JellyfinAPI/Models/MediaUpdateInfoDto.swift -Sources/JellyfinAPI/Models/MediaUpdateInfoPathDto.swift -Sources/JellyfinAPI/Models/MediaUrl.swift -Sources/JellyfinAPI/Models/MessageCommand.swift -Sources/JellyfinAPI/Models/MetadataConfiguration.swift -Sources/JellyfinAPI/Models/MetadataEditorInfo.swift -Sources/JellyfinAPI/Models/MetadataField.swift -Sources/JellyfinAPI/Models/MetadataOptions.swift -Sources/JellyfinAPI/Models/MetadataRefreshMode.swift -Sources/JellyfinAPI/Models/MovePlaylistItemRequestDto.swift -Sources/JellyfinAPI/Models/MovieInfo.swift -Sources/JellyfinAPI/Models/MovieInfoRemoteSearchQuery.swift -Sources/JellyfinAPI/Models/MovieInfoRemoteSearchQuerySearchInfo.swift -Sources/JellyfinAPI/Models/MusicVideoInfo.swift -Sources/JellyfinAPI/Models/MusicVideoInfoRemoteSearchQuery.swift -Sources/JellyfinAPI/Models/MusicVideoInfoRemoteSearchQuerySearchInfo.swift -Sources/JellyfinAPI/Models/NameGuidPair.swift -Sources/JellyfinAPI/Models/NameIdPair.swift -Sources/JellyfinAPI/Models/NameValuePair.swift -Sources/JellyfinAPI/Models/NetworkConfiguration.swift -Sources/JellyfinAPI/Models/NewGroupRequestDto.swift -Sources/JellyfinAPI/Models/NextItemRequestDto.swift -Sources/JellyfinAPI/Models/NotificationDto.swift -Sources/JellyfinAPI/Models/NotificationLevel.swift -Sources/JellyfinAPI/Models/NotificationOption.swift -Sources/JellyfinAPI/Models/NotificationOptions.swift -Sources/JellyfinAPI/Models/NotificationResultDto.swift -Sources/JellyfinAPI/Models/NotificationTypeInfo.swift -Sources/JellyfinAPI/Models/NotificationsSummaryDto.swift -Sources/JellyfinAPI/Models/ObjectGroupUpdate.swift -Sources/JellyfinAPI/Models/OpenLiveStreamDto.swift -Sources/JellyfinAPI/Models/OpenLiveStreamRequest.swift -Sources/JellyfinAPI/Models/PackageInfo.swift -Sources/JellyfinAPI/Models/ParentalRating.swift -Sources/JellyfinAPI/Models/PathSubstitution.swift -Sources/JellyfinAPI/Models/PersonLookupInfo.swift -Sources/JellyfinAPI/Models/PersonLookupInfoRemoteSearchQuery.swift -Sources/JellyfinAPI/Models/PersonLookupInfoRemoteSearchQuerySearchInfo.swift -Sources/JellyfinAPI/Models/PinRedeemResult.swift -Sources/JellyfinAPI/Models/PingRequestDto.swift -Sources/JellyfinAPI/Models/PlayAccess.swift -Sources/JellyfinAPI/Models/PlayCommand.swift -Sources/JellyfinAPI/Models/PlayMethod.swift -Sources/JellyfinAPI/Models/PlayRequest.swift -Sources/JellyfinAPI/Models/PlayRequestDto.swift -Sources/JellyfinAPI/Models/PlaybackErrorCode.swift -Sources/JellyfinAPI/Models/PlaybackInfoDto.swift -Sources/JellyfinAPI/Models/PlaybackInfoResponse.swift -Sources/JellyfinAPI/Models/PlaybackProgressInfo.swift -Sources/JellyfinAPI/Models/PlaybackProgressInfoItem.swift -Sources/JellyfinAPI/Models/PlaybackStartInfo.swift -Sources/JellyfinAPI/Models/PlaybackStopInfo.swift -Sources/JellyfinAPI/Models/PlayerStateInfo.swift -Sources/JellyfinAPI/Models/PlaylistCreationResult.swift -Sources/JellyfinAPI/Models/PlaystateCommand.swift -Sources/JellyfinAPI/Models/PlaystateRequest.swift -Sources/JellyfinAPI/Models/PluginInfo.swift -Sources/JellyfinAPI/Models/PluginStatus.swift -Sources/JellyfinAPI/Models/PostFullCapabilitiesRequest.swift -Sources/JellyfinAPI/Models/PostUpdatedMediaRequest.swift -Sources/JellyfinAPI/Models/PreviousItemRequestDto.swift -Sources/JellyfinAPI/Models/ProblemDetails.swift -Sources/JellyfinAPI/Models/ProfileCondition.swift -Sources/JellyfinAPI/Models/ProfileConditionType.swift -Sources/JellyfinAPI/Models/ProfileConditionValue.swift -Sources/JellyfinAPI/Models/ProgramAudio.swift -Sources/JellyfinAPI/Models/PublicSystemInfo.swift -Sources/JellyfinAPI/Models/QueryFilters.swift -Sources/JellyfinAPI/Models/QueryFiltersLegacy.swift -Sources/JellyfinAPI/Models/QueueItem.swift -Sources/JellyfinAPI/Models/QueueRequestDto.swift -Sources/JellyfinAPI/Models/QuickConnectDto.swift -Sources/JellyfinAPI/Models/QuickConnectResult.swift -Sources/JellyfinAPI/Models/RatingType.swift -Sources/JellyfinAPI/Models/ReadyRequestDto.swift -Sources/JellyfinAPI/Models/RecommendationDto.swift -Sources/JellyfinAPI/Models/RecommendationType.swift -Sources/JellyfinAPI/Models/RecordingStatus.swift -Sources/JellyfinAPI/Models/RemoteImageInfo.swift -Sources/JellyfinAPI/Models/RemoteImageResult.swift -Sources/JellyfinAPI/Models/RemoteSearchResult.swift -Sources/JellyfinAPI/Models/RemoteSubtitleInfo.swift -Sources/JellyfinAPI/Models/RemoveFromPlaylistRequestDto.swift -Sources/JellyfinAPI/Models/RepeatMode.swift -Sources/JellyfinAPI/Models/ReportPlaybackProgressRequest.swift -Sources/JellyfinAPI/Models/ReportPlaybackStartRequest.swift -Sources/JellyfinAPI/Models/ReportPlaybackStoppedRequest.swift -Sources/JellyfinAPI/Models/RepositoryInfo.swift -Sources/JellyfinAPI/Models/ResponseProfile.swift -Sources/JellyfinAPI/Models/ScrollDirection.swift -Sources/JellyfinAPI/Models/SearchHint.swift -Sources/JellyfinAPI/Models/SearchHintResult.swift -Sources/JellyfinAPI/Models/SeekRequestDto.swift -Sources/JellyfinAPI/Models/SendCommand.swift -Sources/JellyfinAPI/Models/SendCommandType.swift -Sources/JellyfinAPI/Models/SendFullGeneralCommandRequest.swift -Sources/JellyfinAPI/Models/SendMessageCommandRequest.swift -Sources/JellyfinAPI/Models/SendToUserType.swift -Sources/JellyfinAPI/Models/SeriesInfo.swift -Sources/JellyfinAPI/Models/SeriesInfoRemoteSearchQuery.swift -Sources/JellyfinAPI/Models/SeriesInfoRemoteSearchQuerySearchInfo.swift -Sources/JellyfinAPI/Models/SeriesStatus.swift -Sources/JellyfinAPI/Models/SeriesTimerInfoDto.swift -Sources/JellyfinAPI/Models/SeriesTimerInfoDtoQueryResult.swift -Sources/JellyfinAPI/Models/ServerConfiguration.swift -Sources/JellyfinAPI/Models/ServerDiscoveryInfo.swift -Sources/JellyfinAPI/Models/SessionInfo.swift -Sources/JellyfinAPI/Models/SessionInfoCapabilities.swift -Sources/JellyfinAPI/Models/SessionInfoFullNowPlayingItem.swift -Sources/JellyfinAPI/Models/SessionInfoNowPlayingItem.swift -Sources/JellyfinAPI/Models/SessionInfoNowViewingItem.swift -Sources/JellyfinAPI/Models/SessionInfoPlayState.swift -Sources/JellyfinAPI/Models/SessionInfoTranscodingInfo.swift -Sources/JellyfinAPI/Models/SessionMessageType.swift -Sources/JellyfinAPI/Models/SessionUserInfo.swift -Sources/JellyfinAPI/Models/SetChannelMappingDto.swift -Sources/JellyfinAPI/Models/SetChannelMappingRequest.swift -Sources/JellyfinAPI/Models/SetPlaylistItemRequestDto.swift -Sources/JellyfinAPI/Models/SetRemoteAccessRequest.swift -Sources/JellyfinAPI/Models/SetRepeatModeRequestDto.swift -Sources/JellyfinAPI/Models/SetShuffleModeRequestDto.swift -Sources/JellyfinAPI/Models/SongInfo.swift -Sources/JellyfinAPI/Models/SortOrder.swift -Sources/JellyfinAPI/Models/SpecialViewOptionDto.swift -Sources/JellyfinAPI/Models/StartupConfigurationDto.swift -Sources/JellyfinAPI/Models/StartupRemoteAccessDto.swift -Sources/JellyfinAPI/Models/StartupUserDto.swift -Sources/JellyfinAPI/Models/SubtitleDeliveryMethod.swift -Sources/JellyfinAPI/Models/SubtitleOptions.swift -Sources/JellyfinAPI/Models/SubtitlePlaybackMode.swift -Sources/JellyfinAPI/Models/SubtitleProfile.swift -Sources/JellyfinAPI/Models/SyncPlayBufferingRequest.swift -Sources/JellyfinAPI/Models/SyncPlayCreateGroupRequest.swift -Sources/JellyfinAPI/Models/SyncPlayJoinGroupRequest.swift -Sources/JellyfinAPI/Models/SyncPlayMovePlaylistItemRequest.swift -Sources/JellyfinAPI/Models/SyncPlayNextItemRequest.swift -Sources/JellyfinAPI/Models/SyncPlayPingRequest.swift -Sources/JellyfinAPI/Models/SyncPlayPreviousItemRequest.swift -Sources/JellyfinAPI/Models/SyncPlayQueueRequest.swift -Sources/JellyfinAPI/Models/SyncPlayReadyRequest.swift -Sources/JellyfinAPI/Models/SyncPlayRemoveFromPlaylistRequest.swift -Sources/JellyfinAPI/Models/SyncPlaySeekRequest.swift -Sources/JellyfinAPI/Models/SyncPlaySetIgnoreWaitRequest.swift -Sources/JellyfinAPI/Models/SyncPlaySetNewQueueRequest.swift -Sources/JellyfinAPI/Models/SyncPlaySetPlaylistItemRequest.swift -Sources/JellyfinAPI/Models/SyncPlaySetRepeatModeRequest.swift -Sources/JellyfinAPI/Models/SyncPlaySetShuffleModeRequest.swift -Sources/JellyfinAPI/Models/SyncPlayUserAccessType.swift -Sources/JellyfinAPI/Models/SystemInfo.swift -Sources/JellyfinAPI/Models/TaskCompletionStatus.swift -Sources/JellyfinAPI/Models/TaskInfo.swift -Sources/JellyfinAPI/Models/TaskInfoLastExecutionResult.swift -Sources/JellyfinAPI/Models/TaskResult.swift -Sources/JellyfinAPI/Models/TaskState.swift -Sources/JellyfinAPI/Models/TaskTriggerInfo.swift -Sources/JellyfinAPI/Models/ThemeMediaResult.swift -Sources/JellyfinAPI/Models/TimerEventInfo.swift -Sources/JellyfinAPI/Models/TimerInfoDto.swift -Sources/JellyfinAPI/Models/TimerInfoDtoProgramInfo.swift -Sources/JellyfinAPI/Models/TimerInfoDtoQueryResult.swift -Sources/JellyfinAPI/Models/TrailerInfo.swift -Sources/JellyfinAPI/Models/TrailerInfoRemoteSearchQuery.swift -Sources/JellyfinAPI/Models/TrailerInfoRemoteSearchQuerySearchInfo.swift -Sources/JellyfinAPI/Models/TranscodeSeekInfo.swift -Sources/JellyfinAPI/Models/TranscodingInfo.swift -Sources/JellyfinAPI/Models/TranscodingProfile.swift -Sources/JellyfinAPI/Models/TransportStreamTimestamp.swift -Sources/JellyfinAPI/Models/TunerChannelMapping.swift -Sources/JellyfinAPI/Models/TunerHostInfo.swift -Sources/JellyfinAPI/Models/TypeOptions.swift -Sources/JellyfinAPI/Models/UnratedItem.swift -Sources/JellyfinAPI/Models/UpdateConfigurationRequest.swift -Sources/JellyfinAPI/Models/UpdateDeviceOptionsRequest.swift -Sources/JellyfinAPI/Models/UpdateDisplayPreferencesRequest.swift -Sources/JellyfinAPI/Models/UpdateInitialConfigurationRequest.swift -Sources/JellyfinAPI/Models/UpdateItemRequest.swift -Sources/JellyfinAPI/Models/UpdateLibraryOptionsDto.swift -Sources/JellyfinAPI/Models/UpdateLibraryOptionsRequest.swift -Sources/JellyfinAPI/Models/UpdateMediaEncoderPathRequest.swift -Sources/JellyfinAPI/Models/UpdateMediaPathRequest.swift -Sources/JellyfinAPI/Models/UpdateMediaPathRequestDto.swift -Sources/JellyfinAPI/Models/UpdateMediaPathRequestDtoPathInfo.swift -Sources/JellyfinAPI/Models/UpdateStartupUserRequest.swift -Sources/JellyfinAPI/Models/UpdateUserConfigurationRequest.swift -Sources/JellyfinAPI/Models/UpdateUserEasyPassword.swift -Sources/JellyfinAPI/Models/UpdateUserEasyPasswordRequest.swift -Sources/JellyfinAPI/Models/UpdateUserPassword.swift -Sources/JellyfinAPI/Models/UpdateUserPasswordRequest.swift -Sources/JellyfinAPI/Models/UpdateUserPolicyRequest.swift -Sources/JellyfinAPI/Models/UpdateUserRequest.swift -Sources/JellyfinAPI/Models/UploadSubtitleDto.swift -Sources/JellyfinAPI/Models/UploadSubtitleRequest.swift -Sources/JellyfinAPI/Models/UserConfiguration.swift -Sources/JellyfinAPI/Models/UserDto.swift -Sources/JellyfinAPI/Models/UserDtoConfiguration.swift -Sources/JellyfinAPI/Models/UserDtoPolicy.swift -Sources/JellyfinAPI/Models/UserItemDataDto.swift -Sources/JellyfinAPI/Models/UserPolicy.swift -Sources/JellyfinAPI/Models/UtcTimeResponse.swift -Sources/JellyfinAPI/Models/ValidatePathDto.swift -Sources/JellyfinAPI/Models/ValidatePathRequest.swift -Sources/JellyfinAPI/Models/VersionInfo.swift -Sources/JellyfinAPI/Models/Video3DFormat.swift -Sources/JellyfinAPI/Models/VideoType.swift -Sources/JellyfinAPI/Models/VirtualFolderInfo.swift -Sources/JellyfinAPI/Models/VirtualFolderInfoLibraryOptions.swift -Sources/JellyfinAPI/Models/WakeOnLanInfo.swift -Sources/JellyfinAPI/Models/XbmcMetadataOptions.swift -Sources/JellyfinAPI/Models/XmlAttribute.swift -Sources/JellyfinAPI/OpenISO8601DateFormatter.swift -Sources/JellyfinAPI/SynchronizedDictionary.swift -Sources/JellyfinAPI/URLSessionImplementations.swift -docs/AccessSchedule.md -docs/ActivityLogAPI.md -docs/ActivityLogEntry.md -docs/ActivityLogEntryQueryResult.md -docs/AddListingProviderRequest.md -docs/AddMediaPathRequest.md -docs/AddTunerHostRequest.md -docs/AddVirtualFolderDto.md -docs/AddVirtualFolderDtoLibraryOptions.md -docs/AddVirtualFolderRequest.md -docs/AdminNotificationDto.md -docs/AlbumInfo.md -docs/AlbumInfoRemoteSearchQuery.md -docs/AlbumInfoRemoteSearchQuerySearchInfo.md -docs/AllThemeMediaResult.md -docs/AllThemeMediaResultThemeVideosResult.md -docs/ApiKeyAPI.md -docs/ApplySearchCriteriaRequest.md -docs/Architecture.md -docs/ArtistInfo.md -docs/ArtistInfoRemoteSearchQuery.md -docs/ArtistInfoRemoteSearchQuerySearchInfo.md -docs/ArtistsAPI.md -docs/AudioAPI.md -docs/AuthenticateUserByName.md -docs/AuthenticateUserByNameRequest.md -docs/AuthenticateWithQuickConnectRequest.md -docs/AuthenticationInfo.md -docs/AuthenticationInfoQueryResult.md -docs/AuthenticationResult.md -docs/AuthenticationResultSessionInfo.md -docs/AuthenticationResultUser.md -docs/BaseItem.md -docs/BaseItemDto.md -docs/BaseItemDtoImageBlurHashes.md -docs/BaseItemDtoQueryResult.md -docs/BaseItemDtoUserData.md -docs/BaseItemKind.md -docs/BaseItemPerson.md -docs/BaseItemPersonImageBlurHashes.md -docs/BookInfo.md -docs/BookInfoRemoteSearchQuery.md -docs/BookInfoRemoteSearchQuerySearchInfo.md -docs/BoxSetInfo.md -docs/BoxSetInfoRemoteSearchQuery.md -docs/BoxSetInfoRemoteSearchQuerySearchInfo.md -docs/BrandingAPI.md -docs/BrandingOptions.md -docs/BufferRequestDto.md -docs/ChannelFeatures.md -docs/ChannelItemSortField.md -docs/ChannelMappingOptionsDto.md -docs/ChannelMediaContentType.md -docs/ChannelMediaType.md -docs/ChannelType.md -docs/ChannelsAPI.md -docs/ChapterInfo.md -docs/ClientCapabilities.md -docs/ClientCapabilitiesDeviceProfile.md -docs/ClientCapabilitiesDto.md -docs/ClientLogAPI.md -docs/ClientLogDocumentResponseDto.md -docs/CodecProfile.md -docs/CodecType.md -docs/CollectionAPI.md -docs/CollectionCreationResult.md -docs/CollectionTypeOptions.md -docs/ConfigImageTypes.md -docs/ConfigurationAPI.md -docs/ConfigurationPageInfo.md -docs/ContainerProfile.md -docs/ControlResponse.md -docs/CountryInfo.md -docs/CreateAdminNotificationRequest.md -docs/CreatePlaylistDto.md -docs/CreatePlaylistRequest.md -docs/CreateProfileRequest.md -docs/CreateSeriesTimerRequest.md -docs/CreateTimerRequest.md -docs/CreateUserByName.md -docs/CreateUserByNameRequest.md -docs/CultureDto.md -docs/DashboardAPI.md -docs/DayOfWeek.md -docs/DayPattern.md -docs/DefaultDirectoryBrowserInfoDto.md -docs/DeviceIdentification.md -docs/DeviceInfo.md -docs/DeviceInfoCapabilities.md -docs/DeviceInfoQueryResult.md -docs/DeviceOptions.md -docs/DeviceOptionsDto.md -docs/DeviceProfile.md -docs/DeviceProfileIdentification.md -docs/DeviceProfileInfo.md -docs/DeviceProfileType.md -docs/DevicesAPI.md -docs/DirectPlayProfile.md -docs/DisplayPreferencesAPI.md -docs/DisplayPreferencesDto.md -docs/DlnaAPI.md -docs/DlnaOptions.md -docs/DlnaProfileType.md -docs/DlnaServerAPI.md -docs/DynamicDayOfWeek.md -docs/DynamicHlsAPI.md -docs/EmbeddedSubtitleOptions.md -docs/EncodingContext.md -docs/EncodingOptions.md -docs/EndPointInfo.md -docs/EnvironmentAPI.md -docs/ExternalIdInfo.md -docs/ExternalIdMediaType.md -docs/ExternalUrl.md -docs/FFmpegLocation.md -docs/FileSystemEntryInfo.md -docs/FileSystemEntryType.md -docs/FilterAPI.md -docs/FontFile.md -docs/ForgotPasswordAction.md -docs/ForgotPasswordDto.md -docs/ForgotPasswordPinDto.md -docs/ForgotPasswordPinRequest.md -docs/ForgotPasswordRequest.md -docs/ForgotPasswordResult.md -docs/GeneralCommand.md -docs/GeneralCommandType.md -docs/GenresAPI.md -docs/GetBookRemoteSearchResultsRequest.md -docs/GetBoxSetRemoteSearchResultsRequest.md -docs/GetMovieRemoteSearchResultsRequest.md -docs/GetMusicAlbumRemoteSearchResultsRequest.md -docs/GetMusicArtistRemoteSearchResultsRequest.md -docs/GetMusicVideoRemoteSearchResultsRequest.md -docs/GetPersonRemoteSearchResultsRequest.md -docs/GetPostedPlaybackInfoRequest.md -docs/GetProgramsDto.md -docs/GetProgramsRequest.md -docs/GetSeriesRemoteSearchResultsRequest.md -docs/GetTrailerRemoteSearchResultsRequest.md -docs/GroupInfoDto.md -docs/GroupQueueMode.md -docs/GroupRepeatMode.md -docs/GroupShuffleMode.md -docs/GroupStateType.md -docs/GroupUpdateType.md -docs/GuideInfo.md -docs/HardwareEncodingType.md -docs/HeaderMatchType.md -docs/HlsSegmentAPI.md -docs/HttpHeaderInfo.md -docs/IPlugin.md -docs/IgnoreWaitRequestDto.md -docs/ImageAPI.md -docs/ImageByNameAPI.md -docs/ImageByNameInfo.md -docs/ImageFormat.md -docs/ImageInfo.md -docs/ImageOption.md -docs/ImageOrientation.md -docs/ImageProviderInfo.md -docs/ImageSavingConvention.md -docs/ImageType.md -docs/InstallationInfo.md -docs/InstallationInfoPackageInfo.md -docs/InstantMixAPI.md -docs/IsoType.md -docs/ItemCounts.md -docs/ItemFields.md -docs/ItemFilter.md -docs/ItemLookupAPI.md -docs/ItemRefreshAPI.md -docs/ItemUpdateAPI.md -docs/ItemsAPI.md -docs/JoinGroupRequestDto.md -docs/KeepUntil.md -docs/LibraryAPI.md -docs/LibraryOptionInfoDto.md -docs/LibraryOptions.md -docs/LibraryOptionsResultDto.md -docs/LibraryStructureAPI.md -docs/LibraryTypeOptionsDto.md -docs/LibraryUpdateInfo.md -docs/ListingsProviderInfo.md -docs/LiveStreamResponse.md -docs/LiveStreamResponseMediaSource.md -docs/LiveTvAPI.md -docs/LiveTvInfo.md -docs/LiveTvOptions.md -docs/LiveTvServiceInfo.md -docs/LiveTvServiceStatus.md -docs/LocalizationAPI.md -docs/LocalizationOption.md -docs/LocationType.md -docs/LogFile.md -docs/LogLevel.md -docs/MediaAttachment.md -docs/MediaEncoderPathDto.md -docs/MediaInfoAPI.md -docs/MediaPathDto.md -docs/MediaPathDtoPathInfo.md -docs/MediaPathInfo.md -docs/MediaProtocol.md -docs/MediaSourceInfo.md -docs/MediaSourceType.md -docs/MediaStream.md -docs/MediaStreamType.md -docs/MediaUpdateInfoDto.md -docs/MediaUpdateInfoPathDto.md -docs/MediaUrl.md -docs/MessageCommand.md -docs/MetadataConfiguration.md -docs/MetadataEditorInfo.md -docs/MetadataField.md -docs/MetadataOptions.md -docs/MetadataRefreshMode.md -docs/MovePlaylistItemRequestDto.md -docs/MovieInfo.md -docs/MovieInfoRemoteSearchQuery.md -docs/MovieInfoRemoteSearchQuerySearchInfo.md -docs/MoviesAPI.md -docs/MusicGenresAPI.md -docs/MusicVideoInfo.md -docs/MusicVideoInfoRemoteSearchQuery.md -docs/MusicVideoInfoRemoteSearchQuerySearchInfo.md -docs/NameGuidPair.md -docs/NameIdPair.md -docs/NameValuePair.md -docs/NetworkConfiguration.md -docs/NewGroupRequestDto.md -docs/NextItemRequestDto.md -docs/NotificationDto.md -docs/NotificationLevel.md -docs/NotificationOption.md -docs/NotificationOptions.md -docs/NotificationResultDto.md -docs/NotificationTypeInfo.md -docs/NotificationsAPI.md -docs/NotificationsSummaryDto.md -docs/ObjectGroupUpdate.md -docs/OpenLiveStreamDto.md -docs/OpenLiveStreamRequest.md -docs/PackageAPI.md -docs/PackageInfo.md -docs/ParentalRating.md -docs/PathSubstitution.md -docs/PersonLookupInfo.md -docs/PersonLookupInfoRemoteSearchQuery.md -docs/PersonLookupInfoRemoteSearchQuerySearchInfo.md -docs/PersonsAPI.md -docs/PinRedeemResult.md -docs/PingRequestDto.md -docs/PlayAccess.md -docs/PlayCommand.md -docs/PlayMethod.md -docs/PlayRequest.md -docs/PlayRequestDto.md -docs/PlaybackErrorCode.md -docs/PlaybackInfoDto.md -docs/PlaybackInfoResponse.md -docs/PlaybackProgressInfo.md -docs/PlaybackProgressInfoItem.md -docs/PlaybackStartInfo.md -docs/PlaybackStopInfo.md -docs/PlayerStateInfo.md -docs/PlaylistCreationResult.md -docs/PlaylistsAPI.md -docs/PlaystateAPI.md -docs/PlaystateCommand.md -docs/PlaystateRequest.md -docs/PluginInfo.md -docs/PluginStatus.md -docs/PluginsAPI.md -docs/PostFullCapabilitiesRequest.md -docs/PostUpdatedMediaRequest.md -docs/PreviousItemRequestDto.md -docs/ProblemDetails.md -docs/ProfileCondition.md -docs/ProfileConditionType.md -docs/ProfileConditionValue.md -docs/ProgramAudio.md -docs/PublicSystemInfo.md -docs/QueryFilters.md -docs/QueryFiltersLegacy.md -docs/QueueItem.md -docs/QueueRequestDto.md -docs/QuickConnectAPI.md -docs/QuickConnectDto.md -docs/QuickConnectResult.md -docs/RatingType.md -docs/ReadyRequestDto.md -docs/RecommendationDto.md -docs/RecommendationType.md -docs/RecordingStatus.md -docs/RemoteImageAPI.md -docs/RemoteImageInfo.md -docs/RemoteImageResult.md -docs/RemoteSearchResult.md -docs/RemoteSubtitleInfo.md -docs/RemoveFromPlaylistRequestDto.md -docs/RepeatMode.md -docs/ReportPlaybackProgressRequest.md -docs/ReportPlaybackStartRequest.md -docs/ReportPlaybackStoppedRequest.md -docs/RepositoryInfo.md -docs/ResponseProfile.md -docs/ScheduledTasksAPI.md -docs/ScrollDirection.md -docs/SearchAPI.md -docs/SearchHint.md -docs/SearchHintResult.md -docs/SeekRequestDto.md -docs/SendCommand.md -docs/SendCommandType.md -docs/SendFullGeneralCommandRequest.md -docs/SendMessageCommandRequest.md -docs/SendToUserType.md -docs/SeriesInfo.md -docs/SeriesInfoRemoteSearchQuery.md -docs/SeriesInfoRemoteSearchQuerySearchInfo.md -docs/SeriesStatus.md -docs/SeriesTimerInfoDto.md -docs/SeriesTimerInfoDtoQueryResult.md -docs/ServerConfiguration.md -docs/ServerDiscoveryInfo.md -docs/SessionAPI.md -docs/SessionInfo.md -docs/SessionInfoCapabilities.md -docs/SessionInfoFullNowPlayingItem.md -docs/SessionInfoNowPlayingItem.md -docs/SessionInfoNowViewingItem.md -docs/SessionInfoPlayState.md -docs/SessionInfoTranscodingInfo.md -docs/SessionMessageType.md -docs/SessionUserInfo.md -docs/SetChannelMappingDto.md -docs/SetChannelMappingRequest.md -docs/SetPlaylistItemRequestDto.md -docs/SetRemoteAccessRequest.md -docs/SetRepeatModeRequestDto.md -docs/SetShuffleModeRequestDto.md -docs/SongInfo.md -docs/SortOrder.md -docs/SpecialViewOptionDto.md -docs/StartupAPI.md -docs/StartupConfigurationDto.md -docs/StartupRemoteAccessDto.md -docs/StartupUserDto.md -docs/StudiosAPI.md -docs/SubtitleAPI.md -docs/SubtitleDeliveryMethod.md -docs/SubtitleOptions.md -docs/SubtitlePlaybackMode.md -docs/SubtitleProfile.md -docs/SuggestionsAPI.md -docs/SyncPlayAPI.md -docs/SyncPlayBufferingRequest.md -docs/SyncPlayCreateGroupRequest.md -docs/SyncPlayJoinGroupRequest.md -docs/SyncPlayMovePlaylistItemRequest.md -docs/SyncPlayNextItemRequest.md -docs/SyncPlayPingRequest.md -docs/SyncPlayPreviousItemRequest.md -docs/SyncPlayQueueRequest.md -docs/SyncPlayReadyRequest.md -docs/SyncPlayRemoveFromPlaylistRequest.md -docs/SyncPlaySeekRequest.md -docs/SyncPlaySetIgnoreWaitRequest.md -docs/SyncPlaySetNewQueueRequest.md -docs/SyncPlaySetPlaylistItemRequest.md -docs/SyncPlaySetRepeatModeRequest.md -docs/SyncPlaySetShuffleModeRequest.md -docs/SyncPlayUserAccessType.md -docs/SystemAPI.md -docs/SystemInfo.md -docs/TaskCompletionStatus.md -docs/TaskInfo.md -docs/TaskInfoLastExecutionResult.md -docs/TaskResult.md -docs/TaskState.md -docs/TaskTriggerInfo.md -docs/ThemeMediaResult.md -docs/TimeSyncAPI.md -docs/TimerEventInfo.md -docs/TimerInfoDto.md -docs/TimerInfoDtoProgramInfo.md -docs/TimerInfoDtoQueryResult.md -docs/TmdbAPI.md -docs/TrailerInfo.md -docs/TrailerInfoRemoteSearchQuery.md -docs/TrailerInfoRemoteSearchQuerySearchInfo.md -docs/TrailersAPI.md -docs/TranscodeSeekInfo.md -docs/TranscodingInfo.md -docs/TranscodingProfile.md -docs/TransportStreamTimestamp.md -docs/TunerChannelMapping.md -docs/TunerHostInfo.md -docs/TvShowsAPI.md -docs/TypeOptions.md -docs/UniversalAudioAPI.md -docs/UnratedItem.md -docs/UpdateConfigurationRequest.md -docs/UpdateDeviceOptionsRequest.md -docs/UpdateDisplayPreferencesRequest.md -docs/UpdateInitialConfigurationRequest.md -docs/UpdateItemRequest.md -docs/UpdateLibraryOptionsDto.md -docs/UpdateLibraryOptionsRequest.md -docs/UpdateMediaEncoderPathRequest.md -docs/UpdateMediaPathRequest.md -docs/UpdateMediaPathRequestDto.md -docs/UpdateMediaPathRequestDtoPathInfo.md -docs/UpdateStartupUserRequest.md -docs/UpdateUserConfigurationRequest.md -docs/UpdateUserEasyPassword.md -docs/UpdateUserEasyPasswordRequest.md -docs/UpdateUserPassword.md -docs/UpdateUserPasswordRequest.md -docs/UpdateUserPolicyRequest.md -docs/UpdateUserRequest.md -docs/UploadSubtitleDto.md -docs/UploadSubtitleRequest.md -docs/UserAPI.md -docs/UserConfiguration.md -docs/UserDto.md -docs/UserDtoConfiguration.md -docs/UserDtoPolicy.md -docs/UserItemDataDto.md -docs/UserLibraryAPI.md -docs/UserPolicy.md -docs/UserViewsAPI.md -docs/UtcTimeResponse.md -docs/ValidatePathDto.md -docs/ValidatePathRequest.md -docs/VersionInfo.md -docs/Video3DFormat.md -docs/VideoAttachmentsAPI.md -docs/VideoType.md -docs/VideosAPI.md -docs/VirtualFolderInfo.md -docs/VirtualFolderInfoLibraryOptions.md -docs/WakeOnLanInfo.md -docs/XbmcMetadataOptions.md -docs/XmlAttribute.md -docs/YearsAPI.md -git_push.sh -project.yml diff --git a/.openapi-generator/VERSION b/.openapi-generator/VERSION deleted file mode 100644 index 89648de33..000000000 --- a/.openapi-generator/VERSION +++ /dev/null @@ -1 +0,0 @@ -6.0.1-SNAPSHOT \ No newline at end of file diff --git a/.swiftformat b/.swiftformat new file mode 100644 index 000000000..3a90a9c2b --- /dev/null +++ b/.swiftformat @@ -0,0 +1,46 @@ +# version: 0.49.11 + +--swiftversion 5.6 + +--tabwidth 4 +--xcodeindentation enabled +--semicolons never +--stripunusedargs closure-only +--maxwidth 140 +--assetliterals visual-width +--wraparguments before-first +--wrapparameters before-first +--wrapcollections before-first +--wrapconditions after-first +--funcattributes prev-line +--typeattributes prev-line +--varattributes prev-line +--trailingclosures +--shortoptionals "always" + +--enable isEmpty, \ + leadingDelimiters, \ + wrapEnumCases, \ + typeSugar, \ + void, \ + trailingSpace, \ + spaceInsideParens, \ + spaceInsideGenerics, \ + spaceInsideComments, \ + spaceInsideBrackets, \ + spaceInsideBraces, \ + blankLinesAroundMark, \ + redundantLet, \ + redundantInit, \ + blankLinesAroundMark + +--disable strongOutlets, \ + yodaConditions, \ + blankLinesAtStartOfScope,\ + andOperator, \ + redundantFileprivate, \ + redundantSelf, \ + redundantClosure, \ + redundantType + +--header "\njellyfin-sdk-swift is subject to the terms of the Mozilla Public\nLicense, v2.0. If a copy of the MPL was not distributed with this\nfile, you can obtain one at https://mozilla.org/MPL/2.0/.\n\nCopyright (c) {year} Jellyfin & Jellyfin Contributors\n" diff --git a/Cartfile b/Cartfile deleted file mode 100644 index 3f7e6304c..000000000 --- a/Cartfile +++ /dev/null @@ -1 +0,0 @@ -github "Flight-School/AnyCodable" ~> 0.6.1 diff --git a/Jellyfin.podspec b/Jellyfin.podspec deleted file mode 100644 index cdcc8d40c..000000000 --- a/Jellyfin.podspec +++ /dev/null @@ -1,15 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'Jellyfin' - s.ios.deployment_target = '9.0' - s.osx.deployment_target = '10.11' - s.tvos.deployment_target = '9.0' - s.watchos.deployment_target = '3.0' - s.version = '10.7.6' - s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v10.7.6' } - s.authors = 'OpenAPI Generator' - s.license = 'Proprietary' - s.homepage = 'https://github.com/OpenAPITools/openapi-generator' - s.summary = 'Jellyfin Swift SDK' - s.source_files = 'Sources/Jellyfin/**/*.swift' - s.dependency 'AnyCodable-FlightSchool', '~> 0.4.0' -end diff --git a/JellyfinAPI.doccarchive/css/documentation-topic.de084985.css b/JellyfinAPI.doccarchive/css/documentation-topic.de084985.css new file mode 100644 index 000000000..2271f5614 --- /dev/null +++ b/JellyfinAPI.doccarchive/css/documentation-topic.de084985.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.badge[data-v-2bfc9463]{--badge-color:var(--color-badge-default);--badge-dark-color:var(--color-badge-dark-default);font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:inline-block;padding:2px 10px;white-space:nowrap;background:none;border-radius:3px;margin-left:10px;border:1px solid var(--badge-color);color:var(--badge-color)}.theme-dark .badge[data-v-2bfc9463]{--badge-color:var(--badge-dark-color)}.badge-deprecated[data-v-2bfc9463]{--badge-color:var(--color-badge-deprecated);--badge-dark-color:var(--color-badge-dark-deprecated)}.badge-beta[data-v-2bfc9463]{--badge-color:var(--color-badge-beta);--badge-dark-color:var(--color-badge-dark-beta)}.hierarchy-collapsed-items[data-v-45c48d1a]{position:relative;display:inline-flex;align-items:center;margin-left:.58824rem}.hierarchy-collapsed-items .hierarchy-item-icon[data-v-45c48d1a]{width:9px;height:15px;margin-right:.58824rem}.nav--in-breakpoint-range .hierarchy-collapsed-items[data-v-45c48d1a]{display:none}.hierarchy-collapsed-items .toggle[data-v-45c48d1a]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-figure-gray-secondary);border-radius:4px;border-style:solid;border-width:0;font-weight:600;height:1.11765rem;text-align:center;width:2.11765rem;display:flex;align-items:center;justify-content:center}.theme-dark .hierarchy-collapsed-items .toggle[data-v-45c48d1a]{background:var(--color-nav-dark-hierarchy-collapse-background)}.hierarchy-collapsed-items .toggle.focused[data-v-45c48d1a],.hierarchy-collapsed-items .toggle[data-v-45c48d1a]:active,.hierarchy-collapsed-items .toggle[data-v-45c48d1a]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.indicator[data-v-45c48d1a]{width:1em;height:1em;display:flex;align-items:center}.indicator .toggle-icon[data-v-45c48d1a]{width:100%}.dropdown[data-v-45c48d1a]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:4px;border-style:solid;box-shadow:0 1px 4px -1px var(--color-figure-gray-secondary);border-width:0;padding:0 .5rem;position:absolute;z-index:42;top:calc(100% + .41176rem)}.theme-dark .dropdown[data-v-45c48d1a]{background:var(--color-nav-dark-hierarchy-collapse-background);border-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown.collapsed[data-v-45c48d1a]{opacity:0;transform:translate3d(0,-.41176rem,0);transition:opacity .25s ease,transform .25s ease,visibility 0s linear .25s;visibility:hidden}.dropdown[data-v-45c48d1a]:not(.collapsed){opacity:1;transform:none;transition:opacity .25s ease,transform .25s ease,visibility 0s linear 0s;visibility:visible}.nav--in-breakpoint-range .dropdown[data-v-45c48d1a]:not(.collapsed){display:none}.dropdown[data-v-45c48d1a]:before{border-bottom-color:var(--color-nav-hierarchy-collapse-background);border-bottom-style:solid;border-bottom-width:.5rem;border-left-color:transparent;border-left-style:solid;border-left-width:.5rem;border-right-color:transparent;border-right-style:solid;border-right-width:.5rem;content:"";left:1.67647rem;position:absolute;top:-.44118rem}.theme-dark .dropdown[data-v-45c48d1a]:before{border-bottom-color:var(--color-nav-dark-hierarchy-collapse-background)}.dropdown-item[data-v-45c48d1a]{border-top-color:var(--color-nav-hierarchy-collapse-borders);border-top-style:solid;border-top-width:1px}.theme-dark .dropdown-item[data-v-45c48d1a]{border-top-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown-item[data-v-45c48d1a]:first-child{border-top:none}.nav-menu-link[data-v-45c48d1a]{max-width:57.64706rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;padding:.75rem 1rem}.nav-menu-item[data-v-f44c239a]{margin-left:1.41176rem;list-style:none;min-width:0}.nav--in-breakpoint-range .nav-menu-item[data-v-f44c239a]{margin-left:0;width:100%;height:2.47059rem}.nav--in-breakpoint-range .nav-menu-item[data-v-f44c239a]:first-child .nav-menu-link{border-top:0}.nav--in-breakpoint-range .nav-menu-item--animated[data-v-f44c239a]{opacity:0;transform:none;transition:.5s ease;transition-property:transform,opacity}.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.hierarchy-item[data-v-57182fdb] .hierarchy-item-icon{width:9px;height:15px;margin-right:.58824rem}.nav--in-breakpoint-range .hierarchy-item[data-v-57182fdb] .hierarchy-item-icon{display:none}@media only screen and (min-width:1024px){.hierarchy-item[data-v-57182fdb]{display:flex;align-items:center;margin-left:.58824rem}}.nav--in-breakpoint-range .hierarchy-item[data-v-57182fdb]{border-top:1px solid var(--color-nav-hierarchy-item-borders);display:flex;align-items:center}.theme-dark.nav--in-breakpoint-range .hierarchy-item[data-v-57182fdb]{border-top-color:var(--color-nav-dark-hierarchy-item-borders)}.nav--in-breakpoint-range .hierarchy-item[data-v-57182fdb]:first-of-type{border-top:none}.hierarchy-item.collapsed[data-v-57182fdb]{display:none}.nav--in-breakpoint-range .hierarchy-item.collapsed[data-v-57182fdb]{display:inline-block}.item[data-v-57182fdb]{display:inline-block;vertical-align:middle}.nav--in-breakpoint-range .item[data-v-57182fdb]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;height:100%;line-height:2.47059rem}@media only screen and (min-width:1024px){.hierarchy-item:first-child:last-child .item[data-v-57182fdb],.hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-57182fdb]{max-width:27rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:last-child .item[data-v-57182fdb],.has-badge .hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-57182fdb]{max-width:21.6rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(2) .item[data-v-57182fdb],.hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-57182fdb]{max-width:18rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(2) .item[data-v-57182fdb],.has-badge .hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-57182fdb]{max-width:14.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(3) .item[data-v-57182fdb],.hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-57182fdb]{max-width:9rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(3) .item[data-v-57182fdb],.has-badge .hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-57182fdb]{max-width:7.2rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item .item[data-v-57182fdb]{max-width:10.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-collapsed-items~.hierarchy-item .item[data-v-57182fdb]{max-width:8.64rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.hierarchy[data-v-20e91056]{justify-content:flex-start;min-width:0}[data-v-324c15b2] .nav-menu{font-size:.88235rem;line-height:1.26667;font-weight:400;letter-spacing:-.014em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1023px){[data-v-324c15b2] .nav-menu{font-size:.82353rem;line-height:1.5;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (min-width:1024px){[data-v-324c15b2] .nav-menu{padding-top:0}}.documentation-nav[data-v-324c15b2] .nav-title{font-size:.88235rem;line-height:1.26667;font-weight:400;letter-spacing:-.014em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1023px){.documentation-nav[data-v-324c15b2] .nav-title{font-size:.82353rem;line-height:1.5;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:767px){.documentation-nav[data-v-324c15b2] .nav-title{padding-top:0}}.documentation-nav[data-v-324c15b2] .nav-title .nav-title-link.inactive{height:auto;color:var(--color-figure-gray-secondary-alt)}.theme-dark.documentation-nav .nav-title .nav-title-link.inactive[data-v-324c15b2]{color:#b0b0b0}.betainfo[data-v-4edf30f4]{font-size:.94118rem;padding:3rem 0;background-color:var(--color-fill-secondary)}.betainfo-container[data-v-4edf30f4]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1068px){.betainfo-container[data-v-4edf30f4]{width:692px}}@media only screen and (max-width:735px){.betainfo-container[data-v-4edf30f4]{width:87.5%}}.betainfo-label[data-v-4edf30f4]{font-weight:600;font-size:.94118rem}.betainfo-content[data-v-4edf30f4] p{margin-bottom:10px}.contenttable+.betainfo[data-v-4edf30f4]{background-color:var(--color-fill)}.summary-section[data-v-6185a550]{margin:0 0 1.5rem}.summary-section[data-v-6185a550]:last-of-type{margin-bottom:0}.title[data-v-b903be56]{color:var(--colors-text,var(--color-text));font-size:1.11765rem;line-height:1.21053;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:.82353rem;margin-bottom:.5rem;text-rendering:optimizeLegibility}.language[data-v-0836085b]{font-size:14px}.language-option[data-v-0836085b]{display:inline}@media only screen and (max-width:735px){.language-option[data-v-0836085b]{display:block;margin-bottom:.25rem}}.language-option.active[data-v-0836085b],.language-option.router-link-exact-active[data-v-0836085b]{color:var(--colors-secondary-label,var(--color-secondary-label))}@media only screen and (min-width:736px){.language-option.swift[data-v-0836085b]{border-right:1px solid var(--color-fill-gray-tertiary);margin-right:10px;padding-right:10px}}[data-v-002affcc] .code-listing{background:var(--background,var(--color-code-background));color:var(--text,var(--color-code-plain));border-color:var(--colors-grid,var(--color-grid));border-width:1px;border-style:solid}[data-v-002affcc]+.code-listing,[data-v-002affcc] .code-listing+*{margin-top:1.6em}[data-v-002affcc] .code-listing pre{padding:8px 14px;padding-right:0}[data-v-002affcc] .code-listing pre>code{font-size:.88235rem;line-height:1.66667;font-weight:400;letter-spacing:-.027em;font-family:Menlo,monospace}[data-v-002affcc] *+aside,[data-v-002affcc] *+figure,[data-v-002affcc]+.endpoint-example,[data-v-002affcc] .endpoint-example+*,[data-v-002affcc] aside+*,[data-v-002affcc] figure+*{margin-top:1.6em}[data-v-002affcc] img{display:block;margin:1.6em auto;max-width:100%}[data-v-002affcc] ol,[data-v-002affcc] ul{margin-top:.8em;margin-left:2rem}[data-v-002affcc] ol li:not(:first-child),[data-v-002affcc] ul li:not(:first-child){margin-top:.8em}@media only screen and (max-width:735px){[data-v-002affcc] ol,[data-v-002affcc] ul{margin-left:1.25rem}}[data-v-002affcc]+dl,[data-v-002affcc] dl+*,[data-v-002affcc] dt:not(:first-child){margin-top:.8em}[data-v-002affcc] dd{margin-left:2em}.abstract[data-v-702ec04e]{font-size:1.23529rem;line-height:1.38095;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:735px){.abstract[data-v-702ec04e]{font-size:1.11765rem;line-height:1.42105;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-702ec04e] p:last-child{margin-bottom:0}.contenttable[data-v-1a780186]{background:var(--color-content-table-content-color);padding:3rem 0}.container[data-v-1a780186]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1068px){.container[data-v-1a780186]{width:692px}}@media only screen and (max-width:735px){.container[data-v-1a780186]{width:87.5%}}.title[data-v-1a780186]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){.title[data-v-1a780186]{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-1a780186]{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.contenttable-section[data-v-bedf02be]{border-top-color:var(--color-grid);border-top-style:solid;border-top-width:1px;align-items:baseline;display:flex;margin:2rem 0;padding-top:2rem}.contenttable-section[data-v-bedf02be]:last-child{margin-bottom:0}.section-content[data-v-bedf02be]{padding-left:1rem}[data-v-bedf02be] .title{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-bedf02be] .title{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.contenttable-section[data-v-bedf02be]{align-items:unset;border-top:none;display:inherit;margin:0}.section-content[data-v-bedf02be],.section-title[data-v-bedf02be]{padding:0}[data-v-bedf02be] .title{border-bottom-color:var(--color-grid);border-bottom-style:solid;border-bottom-width:1px;margin:0 0 2rem 0;padding-bottom:.5rem}}.topic-icon-wrapper[data-v-4d1e7968]{display:flex;align-items:center;justify-content:center;height:1.47059rem;flex:0 0 1.294rem;width:1.294rem;margin-right:.5em}.topic-icon[data-v-4d1e7968]{height:.88235rem;transform:scale(1);-webkit-transform:scale(1);overflow:visible}.topic-icon.curly-brackets-icon[data-v-4d1e7968]{height:1rem}.token-method[data-v-5caf1b5b]{font-weight:700}.token-keyword[data-v-5caf1b5b]{color:var(--syntax-keyword,var(--color-syntax-keywords))}.token-number[data-v-5caf1b5b]{color:var(--syntax-number,var(--color-syntax-numbers))}.token-string[data-v-5caf1b5b]{color:var(--syntax-string,var(--color-syntax-strings))}.token-attribute[data-v-5caf1b5b]{color:var(--syntax-attribute,var(--color-syntax-keywords))}.token-internalParam[data-v-5caf1b5b]{color:var(--color-syntax-param-internal-name)}.type-identifier-link[data-v-5caf1b5b]{color:var(--syntax-type,var(--color-syntax-other-type-names))}.token-removed[data-v-5caf1b5b]{background-color:var(--color-highlight-red)}.token-added[data-v-5caf1b5b]{background-color:var(--color-highlight-green)}.decorator[data-v-06ec7395],.label[data-v-06ec7395]{color:var(--colors-secondary-label,var(--color-secondary-label))}.label[data-v-06ec7395]{font-size:1rem;line-height:1.47059;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.empty-token[data-v-06ec7395]{font-size:0}.empty-token[data-v-06ec7395]:after{content:"\00a0";font-size:1rem}.conditional-constraints[data-v-1548fd90] code{color:var(--colors-secondary-label,var(--color-secondary-label))}.abstract[data-v-1e5f16e7],.link-block[data-v-1e5f16e7] .badge{margin-left:calc(.5em + 1.294rem)}.link-block .badge+.badge[data-v-1e5f16e7]{margin-left:1rem}.link-block[data-v-1e5f16e7],.link[data-v-1e5f16e7]{box-sizing:inherit}.link-block.changed[data-v-1e5f16e7],.link.changed[data-v-1e5f16e7]{padding-left:.70588rem;padding-right:1.88235rem;padding-top:5px;padding-bottom:5px;display:inline-flex;margin-left:-.76471rem;width:calc(100% + 13px)}.link-block.changed.changed[data-v-1e5f16e7],.link.changed.changed[data-v-1e5f16e7]{padding-left:12px}@media only screen and (max-width:735px){.link-block.changed[data-v-1e5f16e7],.link.changed[data-v-1e5f16e7]{padding-left:0;padding-right:0}.link-block.changed.changed[data-v-1e5f16e7],.link.changed.changed[data-v-1e5f16e7]{padding-left:12px;padding-right:1.88235rem}}@media only screen and (max-width:735px){.link-block.changed[data-v-1e5f16e7],.link.changed[data-v-1e5f16e7]{padding-left:0;padding-right:0}}@media only screen and (max-width:735px){.link-block.changed[data-v-1e5f16e7]:not(.changed),.link.changed[data-v-1e5f16e7]:not(.changed){margin-left:0;width:100%}.link-block.changed.changed[data-v-1e5f16e7],.link.changed.changed[data-v-1e5f16e7]{margin-left:-.70588rem;width:calc(100% + 24px)}}.link[data-v-1e5f16e7]{display:flex}.link-block .badge[data-v-1e5f16e7]{margin-top:.5rem}.link-block.has-inline-element[data-v-1e5f16e7]{display:flex;align-items:flex-start;flex-flow:row wrap}.link-block.has-inline-element .badge[data-v-1e5f16e7]{margin-left:1rem;margin-top:0}.link-block .has-adjacent-elements[data-v-1e5f16e7]{padding-top:5px;padding-bottom:5px;display:inline-flex}.abstract .topic-required[data-v-1e5f16e7]:not(:first-child){margin-top:4px}.topic-required[data-v-1e5f16e7]{font-size:.8em}.deprecated[data-v-1e5f16e7]{text-decoration:line-through}.conditional-constraints[data-v-1e5f16e7]{font-size:.82353rem;margin-top:4px}.section-content>.content[data-v-3e48ad3a],.topic[data-v-3e48ad3a]:not(:last-child){margin-bottom:1.5rem}.description[data-v-3b0e7cbb]:not(:empty){margin-bottom:2rem}.nodocumentation[data-v-3b0e7cbb]{font-size:1.23529rem;line-height:1.38095;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-secondary-label,var(--color-secondary-label));margin-bottom:0}@media only screen and (max-width:735px){.nodocumentation[data-v-3b0e7cbb]{font-size:1.11765rem;line-height:1.42105;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-3b0e7cbb] .content+*{margin-top:.8em}.summary-list[data-v-731de2f2]{font-size:.82353rem;list-style:none;margin:0}.summary-list-item[data-v-1648b0ac]{margin-bottom:.25rem;padding-left:0}.summary-list-item[data-v-1648b0ac]:last-child{margin-bottom:0}.name[data-v-4616e162]:after{content:", "}.name[data-v-4616e162]:last-of-type:after{content:""}.icon-holder[data-v-7e43087c]{display:inline;white-space:nowrap}.icon-holder .link-text[data-v-7e43087c]{vertical-align:middle}.icon-holder .link-icon[data-v-7e43087c]{height:1em;vertical-align:text-bottom}.datalist dd{padding-left:2rem}.datalist dt{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.datalist dt:first-of-type{padding-top:0}.source[data-v-bb800958]{background:var(--background,var(--color-code-background));border-color:var(--color-grid);color:var(--text,var(--color-code-plain));border-radius:4px;border-style:solid;border-width:1px;padding:8px 14px;speak:literal-punctuation;line-height:25px}.source.has-multiple-lines[data-v-bb800958]{border-radius:4px}.source.indented[data-v-bb800958]{padding-left:2.76447em;text-indent:-1.88235em;white-space:normal}.source>code[data-v-bb800958]{font-size:.88235rem;line-height:1.66667;font-weight:400;letter-spacing:-.027em;font-family:Menlo,monospace;display:block}.platforms[data-v-1dc256a6]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:.45rem;margin-top:1.6em}.changed .platforms[data-v-1dc256a6]{padding-left:.588rem}.platforms[data-v-1dc256a6]:first-of-type{margin-top:1rem}.source[data-v-1dc256a6]{margin:14px 0}.platforms+.source[data-v-1dc256a6]{margin:0}.changed .source[data-v-1dc256a6]{background:none;border:none;margin-top:0;margin-bottom:0;margin-right:1.88235rem;padding-right:0}.declaration-diff-version[data-v-676d8556]{padding-left:.588rem;padding-right:1.88235rem;font-size:1rem;line-height:1.52941;font-weight:600;letter-spacing:-.021em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-figure-gray-secondary);margin:0}.declaration-diff-current[data-v-676d8556],.declaration-diff-previous[data-v-676d8556]{padding-top:5px}.declaration-diff-previous[data-v-676d8556]{background-color:var(--color-changes-modified-previous-background);border-radius:0 0 4px 4px;position:relative}.conditional-constraints[data-v-e39c4ee4]{margin:1.17647rem 0 3rem 0}.type[data-v-791bac44]:first-letter{text-transform:capitalize}.detail-type[data-v-61ef551b]{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.detail-type[data-v-61ef551b]:first-child{padding-top:0}@media only screen and (max-width:735px){.detail-type[data-v-61ef551b]{padding-left:0}}.detail-content[data-v-61ef551b]{padding-left:2rem}@media only screen and (max-width:735px){.detail-content[data-v-61ef551b]{padding-left:0}}.param-name[data-v-7bb7c035]{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.param-name[data-v-7bb7c035]:first-child{padding-top:0}@media only screen and (max-width:735px){.param-name[data-v-7bb7c035]{padding-left:0}}.param-content[data-v-7bb7c035]{padding-left:2rem}@media only screen and (max-width:735px){.param-content[data-v-7bb7c035]{padding-left:0}}.param-content[data-v-7bb7c035] dt{font-weight:600}.param-content[data-v-7bb7c035] dd{margin-left:1em}.parameters-table[data-v-1455266b] .change-added,.parameters-table[data-v-1455266b] .change-removed{display:inline-block}.parameters-table[data-v-1455266b] .change-removed,.parameters-table[data-v-1455266b] .token-removed{text-decoration:line-through}.param[data-v-1455266b]{font-size:.88235rem;box-sizing:border-box}.param.changed[data-v-1455266b]{display:flex;flex-flow:row wrap;width:100%;padding-left:.70588rem;padding-right:1.88235rem;padding-top:5px;padding-bottom:5px;display:inline-flex}.param.changed.changed[data-v-1455266b]{padding-left:12px}@media only screen and (max-width:735px){.param.changed[data-v-1455266b]{padding-left:0;padding-right:0}.param.changed.changed[data-v-1455266b]{padding-left:12px;padding-right:1.88235rem}}@media only screen and (max-width:735px){.param.changed[data-v-1455266b]{padding-left:0;padding-right:0}}@media only screen and (max-width:735px){.param.changed[data-v-1455266b]:not(.changed){margin-left:0;width:100%}.param.changed.changed[data-v-1455266b]{margin-left:-.70588rem;width:calc(100% + 24px)}}.param.changed+.param.changed[data-v-1455266b]{margin-top:.82353rem}.changed .param-content[data-v-1455266b],.changed .param-symbol[data-v-1455266b]{padding-top:5px;padding-bottom:5px}@media only screen and (max-width:735px){.changed .param-content[data-v-1455266b]{padding-top:0}.changed .param-symbol[data-v-1455266b]{padding-bottom:0}}.param-symbol[data-v-1455266b]{text-align:right}@media only screen and (max-width:735px){.param-symbol[data-v-1455266b]{text-align:left}}.param-symbol[data-v-1455266b] .type-identifier-link{color:var(--color-link)}.param+.param[data-v-1455266b]{margin-top:1.64706rem}.param+.param[data-v-1455266b]:first-child{margin-top:0}.param-content[data-v-1455266b]{padding-left:1rem;padding-right:1.88235rem}@media only screen and (max-width:735px){.param-content[data-v-1455266b]{padding-left:0;padding-right:0}}.property-metadata[data-v-8590589e]{color:var(--color-figure-gray-secondary)}.property-required{font-weight:700}.property-metadata[data-v-0a648a1e]{color:var(--color-figure-gray-secondary)}.property-name[data-v-387d76c0]{font-weight:700}.property-name.deprecated[data-v-387d76c0]{text-decoration:line-through}.property-deprecated[data-v-387d76c0]{margin-left:0}.content[data-v-387d76c0],.content[data-v-387d76c0] p:first-child{display:inline}.response-mimetype[data-v-2faa6020]{color:var(--color-figure-gray-secondary)}.part-name[data-v-458971c5]{font-weight:700}.content[data-v-458971c5],.content[data-v-458971c5] p:first-child{display:inline}.param-name[data-v-74e7f790]{font-weight:700}.param-name.deprecated[data-v-74e7f790]{text-decoration:line-through}.param-deprecated[data-v-74e7f790]{margin-left:0}.content[data-v-74e7f790],.content[data-v-74e7f790] p:first-child{display:inline}.response-name[data-v-57796e8c],.response-reason[data-v-57796e8c]{font-weight:700}@media only screen and (max-width:735px){.response-reason[data-v-57796e8c]{display:none}}.response-name>code>.reason[data-v-57796e8c]{display:none}@media only screen and (max-width:735px){.response-name>code>.reason[data-v-57796e8c]{display:initial}}[data-v-011bef72] h2{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-011bef72] h2{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-011bef72] h2{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.primary-content[data-v-011bef72]:before{border-top-color:var(--colors-grid,var(--color-grid));border-top-style:solid;border-top-width:1px;content:"";display:block}.primary-content[data-v-011bef72]>*{margin-bottom:3rem;margin-top:3rem}.primary-content[data-v-011bef72]>:first-child{margin-top:2rem}.relationships-list[data-v-e4fe9834]{list-style:none}.relationships-list.column[data-v-e4fe9834]{margin:0}.relationships-list.inline[data-v-e4fe9834]{-moz-columns:1;columns:1;display:flex;flex-direction:row;flex-wrap:wrap;margin:0}.relationships-list.inline li[data-v-e4fe9834]:not(:last-child):after{content:",\00a0"}.relationships-list.changed[data-v-e4fe9834]{padding-left:.70588rem;padding-right:1.88235rem;padding-top:5px;padding-bottom:5px;display:inline-flex;margin-left:-.76471rem;width:calc(100% + 13px)}.relationships-list.changed.changed[data-v-e4fe9834]{padding-left:12px}@media only screen and (max-width:735px){.relationships-list.changed[data-v-e4fe9834]{padding-left:0;padding-right:0}.relationships-list.changed.changed[data-v-e4fe9834]{padding-left:12px;padding-right:1.88235rem}}@media only screen and (max-width:735px){.relationships-list.changed[data-v-e4fe9834]{padding-left:0;padding-right:0}}@media only screen and (max-width:735px){.relationships-list.changed[data-v-e4fe9834]:not(.changed){margin-left:0;width:100%}.relationships-list.changed.changed[data-v-e4fe9834]{margin-left:-.70588rem;width:calc(100% + 24px)}}.relationships-list.changed[data-v-e4fe9834]:after{margin-top:7px}.relationships-list.changed.column[data-v-e4fe9834]{display:block}.relationships-item[data-v-e4fe9834],.relationships-list[data-v-e4fe9834]{box-sizing:inherit}.conditional-constraints[data-v-e4fe9834]{font-size:.82353rem;margin:.17647rem 0 .58824rem 1.17647rem}.availability[data-v-0c59731a],.platform-list[data-v-0c59731a],.platform[data-v-0c59731a]{box-sizing:inherit}.platform[data-v-0c59731a]{padding-right:2rem;box-sizing:border-box;padding-left:.70588rem;padding-right:1.88235rem;padding-left:0;margin-bottom:.25rem;padding-top:5px;padding-bottom:5px}.platform[data-v-0c59731a]:after{width:1rem;height:1rem;margin-top:6px}.platform.changed[data-v-0c59731a]{padding-left:12px}@media only screen and (max-width:735px){.platform[data-v-0c59731a]{padding-left:0;padding-right:0}.platform.changed[data-v-0c59731a]{padding-left:12px;padding-right:1.88235rem}}.platform[data-v-0c59731a]:last-child{margin-bottom:0}.platform-badge[data-v-0c59731a]{margin-left:.47059rem}.platform.changed[data-v-0c59731a]{margin-left:-.76471rem;width:calc(100% + 13px)}.platform.changed[data-v-0c59731a]:after{width:1rem;height:1rem;margin-top:6px}@media only screen and (max-width:735px){.platform.changed[data-v-0c59731a]:not(.changed){margin-left:0;width:100%}.platform.changed.changed[data-v-0c59731a]{margin-left:-.70588rem;width:calc(100% + 24px)}}.summary[data-v-19bd58b6]{color:var(--colors-secondary-label,var(--color-secondary-label));font-size:.94118rem;margin-bottom:3rem;padding:5px 0 0 4em}@media only screen and (max-width:1068px){.summary[data-v-19bd58b6]{padding-left:2em}}@media only screen and (max-width:735px){.summary[data-v-19bd58b6]{padding-left:0;margin-bottom:2.35294rem;display:grid;grid-gap:.94118rem;grid-template-columns:repeat(auto-fill,minmax(128px,1fr))}}.topictitle[data-v-e1f00c5e]{margin-left:auto;margin-right:auto;width:980px;margin-top:2rem}@media only screen and (max-width:1068px){.topictitle[data-v-e1f00c5e]{width:692px}}@media only screen and (max-width:735px){.topictitle[data-v-e1f00c5e]{width:87.5%}}.eyebrow[data-v-e1f00c5e]{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-secondary-label,var(--color-secondary-label));display:block;margin-bottom:1.17647rem}@media only screen and (max-width:735px){.eyebrow[data-v-e1f00c5e]{font-size:1.11765rem;line-height:1.21053;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.title[data-v-e1f00c5e]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){.title[data-v-e1f00c5e]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-e1f00c5e]{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.doc-topic[data-v-134e8272]{background:var(--colors-text-background,var(--color-text-background))}#main[data-v-134e8272]{outline-style:none}.container[data-v-134e8272]{margin-left:auto;margin-right:auto;width:980px;outline-style:none;margin-top:1.5rem}@media only screen and (max-width:1068px){.container[data-v-134e8272]{width:692px}}@media only screen and (max-width:735px){.container[data-v-134e8272]{width:87.5%}}.content-grid[data-v-134e8272]{display:grid;grid-template-columns:75% 25%;grid-template-rows:auto minmax(0,1fr)}@media only screen and (max-width:735px){.content-grid[data-v-134e8272]{display:block}}.content-grid[data-v-134e8272]:after,.content-grid[data-v-134e8272]:before{display:none}.content-grid.full-width[data-v-134e8272]{grid-template-columns:100%}.description[data-v-134e8272]{grid-column:1}.summary[data-v-134e8272]{grid-column:2;grid-row:1/-1}.primary-content[data-v-134e8272]{grid-column:1}.button-cta[data-v-134e8272]{margin-top:2em}[data-v-134e8272] h3{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-134e8272] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-134e8272] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-134e8272] h4{font-size:1.41176rem;line-height:1.16667;font-weight:600;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-134e8272] h4{font-size:1.23529rem;line-height:1.19048;font-weight:600;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-134e8272] h5{font-size:1.29412rem;line-height:1.18182;font-weight:600;letter-spacing:.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-134e8272] h5{font-size:1.17647rem;line-height:1.2;font-weight:600;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-134e8272] h5{font-size:1.05882rem;line-height:1.44444;font-weight:600;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-134e8272] h6{font-size:1rem;line-height:1.47059;font-weight:600;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/css/documentation-topic~topic~tutorials-overview.67b822e0.css b/JellyfinAPI.doccarchive/css/documentation-topic~topic~tutorials-overview.67b822e0.css new file mode 100644 index 000000000..6b790386a --- /dev/null +++ b/JellyfinAPI.doccarchive/css/documentation-topic~topic~tutorials-overview.67b822e0.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.svg-icon[data-v-0137d411]{fill:var(--colors-svg-icon-fill-light,var(--color-svg-icon));transform:scale(1);-webkit-transform:scale(1);overflow:visible}.theme-dark .svg-icon[data-v-0137d411]{fill:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.svg-icon.icon-inline[data-v-0137d411]{display:inline-block;vertical-align:middle;fill:currentColor}.svg-icon.icon-inline[data-v-0137d411] .svg-icon-stroke{stroke:currentColor}[data-v-0137d411] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-light,var(--color-svg-icon))}.theme-dark[data-v-0137d411] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.label[data-v-5117d474]{font-size:.70588rem;line-height:1.33333;font-weight:600;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.label+[data-v-5117d474]{margin-top:.4em}.deprecated .label[data-v-5117d474]{color:var(--color-aside-deprecated)}.experiment .label[data-v-5117d474]{color:var(--color-aside-experiment)}.important .label[data-v-5117d474]{color:var(--color-aside-important)}.note .label[data-v-5117d474]{color:var(--color-aside-note)}.tip .label[data-v-5117d474]{color:var(--color-aside-tip)}.warning .label[data-v-5117d474]{color:var(--color-aside-warning)}.doc-topic aside[data-v-5117d474]{border-radius:4px;padding:.94118rem;border:0 solid;border-left-width:6px}.doc-topic aside.deprecated[data-v-5117d474]{background-color:var(--color-aside-deprecated-background);border-color:var(--color-aside-deprecated-border);box-shadow:0 0 0 0 var(--color-aside-deprecated-border) inset,0 0 0 0 var(--color-aside-deprecated-border)}.doc-topic aside.experiment[data-v-5117d474]{background-color:var(--color-aside-experiment-background);border-color:var(--color-aside-experiment-border);box-shadow:0 0 0 0 var(--color-aside-experiment-border) inset,0 0 0 0 var(--color-aside-experiment-border)}.doc-topic aside.important[data-v-5117d474]{background-color:var(--color-aside-important-background);border-color:var(--color-aside-important-border);box-shadow:0 0 0 0 var(--color-aside-important-border) inset,0 0 0 0 var(--color-aside-important-border)}.doc-topic aside.note[data-v-5117d474]{background-color:var(--color-aside-note-background);border-color:var(--color-aside-note-border);box-shadow:0 0 0 0 var(--color-aside-note-border) inset,0 0 0 0 var(--color-aside-note-border)}.doc-topic aside.tip[data-v-5117d474]{background-color:var(--color-aside-tip-background);border-color:var(--color-aside-tip-border);box-shadow:0 0 0 0 var(--color-aside-tip-border) inset,0 0 0 0 var(--color-aside-tip-border)}.doc-topic aside.warning[data-v-5117d474]{background-color:var(--color-aside-warning-background);border-color:var(--color-aside-warning-border);box-shadow:0 0 0 0 var(--color-aside-warning-border) inset,0 0 0 0 var(--color-aside-warning-border)}.doc-topic aside .label[data-v-5117d474]{font-size:1rem;line-height:1.52941;font-weight:600;letter-spacing:-.021em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}code[data-v-05f4a5b7]{speak-punctuation:code}.nav-menu-items[data-v-aa06bfc4]{display:flex;justify-content:flex-end}.nav--in-breakpoint-range .nav-menu-items[data-v-aa06bfc4]{display:block;opacity:0;padding:1rem 1.88235rem 1.64706rem 1.88235rem;transform:translate3d(0,-50px,0);transition:transform 1s cubic-bezier(.07,1.06,.27,.95) .5s,opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s}.nav--is-open.nav--in-breakpoint-range .nav-menu-items[data-v-aa06bfc4]{opacity:1;transform:translateZ(0);transition-delay:.2s,.4s}.nav--in-breakpoint-range .nav-menu-items[data-v-aa06bfc4]:not(:only-child):not(:last-child){padding-bottom:0}.nav--in-breakpoint-range .nav-menu-items[data-v-aa06bfc4]:not(:only-child):last-child{padding-top:0}.button-cta[data-v-494ad9c8]{border-radius:var(--style-button-borderRadius,4px);background:var(--colors-button-light-background,var(--color-button-background));color:var(--colors-button-text,var(--color-button-text));cursor:pointer;min-width:1.76471rem;padding:.23529rem .88235rem;text-align:center;white-space:nowrap;display:inline-block;font-size:1rem;line-height:1.47059;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.button-cta[data-v-494ad9c8]:active{background:var(--colors-button-light-backgroundActive,var(--color-button-background-active));outline:none}.button-cta[data-v-494ad9c8]:hover:not([disabled]){background:var(--colors-button-light-backgroundHover,var(--color-button-background-hover));text-decoration:none}.button-cta[data-v-494ad9c8]:disabled{opacity:.32;cursor:default}.fromkeyboard .button-cta[data-v-494ad9c8]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.button-cta.is-dark[data-v-494ad9c8]{background:var(--colors-button-dark-background,#06f)}.button-cta.is-dark[data-v-494ad9c8]:active{background:var(--colors-button-dark-backgroundActive,var(--color-button-background-active))}.button-cta.is-dark[data-v-494ad9c8]:hover:not([disabled]){background:var(--colors-button-dark-backgroundHover,var(--color-button-background-hover))}.file-icon[data-v-7c381064]{position:relative;align-items:flex-end;height:24px;margin:0 .5rem 0 1rem}.filename[data-v-c8c40662]{color:var(--text,var(--colors-secondary-label,var(--color-secondary-label)));font-size:.94118rem;line-height:1.1875;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-top:1rem}@media only screen and (max-width:735px){.filename[data-v-c8c40662]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-top:0}}.filename>a[data-v-c8c40662],.filename>span[data-v-c8c40662]{display:flex;align-items:center;line-height:normal}a[data-v-c8c40662]{color:var(--url,var(--color-link))}.code-line-container[data-v-193a0b82]{display:flex}.code-number[data-v-193a0b82]{padding:0 1rem 0 8px;text-align:right;min-width:2em;color:#666;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-193a0b82]:before{content:attr(data-line-number)}.highlighted[data-v-193a0b82]{background:var(--line-highlight,var(--color-code-line-highlight));border-left:4px solid var(--color-code-line-highlight-border)}.highlighted .code-number[data-v-193a0b82]{padding-left:4px}pre[data-v-193a0b82]{padding:14px 0;display:flex;overflow:auto;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal;height:100%}@media only screen and (max-width:735px){pre[data-v-193a0b82]{padding-top:.82353rem}}code[data-v-193a0b82]{display:flex;flex-direction:column;white-space:pre;word-wrap:normal;flex-grow:9999}.code-line-container[data-v-193a0b82]{flex-shrink:0;padding-right:14px}.code-listing[data-v-193a0b82],.container-general[data-v-193a0b82]{display:flex}.code-listing[data-v-193a0b82]{flex-direction:column;min-height:100%;border-radius:4px;overflow:auto}.code-listing.single-line[data-v-193a0b82]{border-radius:4px}.container-general[data-v-193a0b82],pre[data-v-193a0b82]{flex-grow:1}code[data-v-369467b5]{width:100%}.container-general[data-v-369467b5]{display:flex;flex-flow:row wrap}.container-general .code-line[data-v-369467b5]{flex:1 0 auto}.code-line-container[data-v-369467b5]{align-items:center;display:flex;border-left:4px solid transparent;counter-increment:linenumbers;padding-right:14px}.code-number[data-v-369467b5]{font-size:.70588rem;line-height:1.5;font-weight:400;letter-spacing:0;font-family:Menlo,monospace;padding:0 1rem 0 8px;text-align:right;min-width:2.01em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-369467b5]:before{content:counter(linenumbers)}.code-line[data-v-369467b5]{display:flex}pre[data-v-369467b5]{padding:14px 0;display:flex;flex-flow:row wrap;overflow:auto;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal}@media only screen and (max-width:735px){pre[data-v-369467b5]{padding-top:.82353rem}}.collapsible-code-listing[data-v-369467b5]{background:var(--background,var(--color-code-background));border-color:var(--colors-grid,var(--color-grid));color:var(--text,var(--color-code-plain));border-radius:4px;border-style:solid;border-width:1px;counter-reset:linenumbers;font-size:15px}.collapsible-code-listing.single-line[data-v-369467b5]{border-radius:4px}.collapsible[data-v-369467b5]{background:var(--color-code-collapsible-background);color:var(--color-code-collapsible-text)}.collapsed[data-v-369467b5]:before{content:"⋯";display:inline-block;font-family:monospace;font-weight:700;height:100%;line-height:1;text-align:right;width:2.3rem}.collapsed .code-line-container[data-v-369467b5]{height:0;visibility:hidden}.row[data-v-be73599c]{box-sizing:border-box;display:flex;flex-flow:row wrap}.col[data-v-2ee3ad8b]{box-sizing:border-box;flex:none}.large-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.large-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.large-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.large-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.large-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.large-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.large-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.large-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.large-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.large-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.large-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.large-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.large-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.large-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}@media only screen and (max-width:1068px){.medium-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.medium-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.medium-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.medium-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.medium-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.medium-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.medium-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.medium-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.medium-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.medium-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.medium-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.medium-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.medium-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.medium-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}@media only screen and (max-width:735px){.small-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.small-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.small-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.small-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.small-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.small-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.small-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.small-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.small-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.small-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.small-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.small-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.small-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.small-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}.tabnav[data-v-42371214]{margin:.88235rem 0 1.47059rem 0}.tabnav-items[data-v-42371214]{display:inline-block;margin:0;text-align:center}.tabnav-item[data-v-723a9588]{border-bottom:1px solid;border-color:var(--colors-tabnav-item-border-color,var(--color-tabnav-item-border-color));display:inline-block;list-style:none;padding-left:1.76471rem;margin:0;outline:none}.tabnav-item[data-v-723a9588]:first-child{padding-left:0}.tabnav-item[data-v-723a9588]:nth-child(n+1){margin:0}.tabnav-link[data-v-723a9588]{color:var(--colors-secondary-label,var(--color-secondary-label));font-size:1rem;line-height:1;font-weight:400;letter-spacing:-.021em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:9px 0 11px;margin-top:2px;margin-bottom:4px;text-align:left;text-decoration:none;display:block;position:relative;z-index:0}.tabnav-link[data-v-723a9588]:hover{text-decoration:none}.tabnav-link[data-v-723a9588]:focus{outline-offset:-1px}.tabnav-link[data-v-723a9588]:after{content:"";position:absolute;bottom:-5px;left:0;width:100%;border:1px solid transparent}.tabnav-link.active[data-v-723a9588]{color:var(--colors-text,var(--color-text));cursor:default;z-index:10}.tabnav-link.active[data-v-723a9588]:after{border-bottom-color:var(--colors-text,var(--color-text))}.controls[data-v-6197ce3f]{margin-top:5px;font-size:14px;display:flex;justify-content:flex-end}.controls a[data-v-6197ce3f]{color:var(--colors-text,var(--color-text));display:flex;align-items:center}.controls .control-icon[data-v-6197ce3f]{width:1.05em;margin-right:.3em}[data-v-7be42fb4] figcaption+*{margin-top:1rem}.caption[data-v-0bcb8b58]{font-size:.82353rem;line-height:1.5;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}[data-v-0bcb8b58] p{display:inline-block}[data-v-3a939631] img{max-width:100%}*+.table-wrapper,.table-wrapper+*{margin-top:1.6em}.table-wrapper[data-v-358dcd5e]{overflow:auto;-webkit-overflow-scrolling:touch}[data-v-358dcd5e] th{font-weight:600}[data-v-358dcd5e] td,[data-v-358dcd5e] th{border-color:var(--color-fill-gray-tertiary);border-style:solid;border-width:1px 0;padding:.58824rem}s[data-v-eb91ce54]:after,s[data-v-eb91ce54]:before{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}s[data-v-eb91ce54]:before{content:" [start of stricken text] "}s[data-v-eb91ce54]:after{content:" [end of stricken text] "}.nav[data-v-aada5b66]{position:sticky;top:0;width:100%;height:3.05882rem;z-index:9997;color:var(--color-nav-color)}@media only screen and (max-width:767px){.nav[data-v-aada5b66]{min-width:320px;height:2.82353rem}}.theme-dark.nav[data-v-aada5b66]{background:none;color:var(--color-nav-dark-color)}.nav__wrapper[data-v-aada5b66]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.nav__background[data-v-aada5b66]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;transition:background-color .5s ease-in}.nav__background[data-v-aada5b66]:after{background-color:var(--color-nav-keyline)}.nav--solid-background .nav__background[data-v-aada5b66]{background-color:var(--color-nav-solid-background);-webkit-backdrop-filter:none;backdrop-filter:none}.nav--is-open.nav--solid-background .nav__background[data-v-aada5b66],.nav--is-sticking.nav--solid-background .nav__background[data-v-aada5b66]{background-color:var(--color-nav-solid-background)}.nav--is-open.theme-dark.nav--solid-background .nav__background[data-v-aada5b66],.nav--is-sticking.theme-dark.nav--solid-background .nav__background[data-v-aada5b66],.theme-dark.nav--solid-background .nav__background[data-v-aada5b66]{background-color:var(--color-nav-dark-solid-background)}.nav--in-breakpoint-range .nav__background[data-v-aada5b66]{min-height:2.82353rem;transition:background-color .5s ease .7s}.nav--is-sticking .nav__background[data-v-aada5b66]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color .5s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-sticking .nav__background[data-v-aada5b66]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-sticking .nav__background[data-v-aada5b66]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-stuck)}}.theme-dark.nav--is-sticking .nav__background[data-v-aada5b66]{background-color:var(--color-nav-dark-stuck)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-sticking .nav__background[data-v-aada5b66]{background-color:var(--color-nav-dark-uiblur-stuck)}}.nav--is-open .nav__background[data-v-aada5b66]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color .5s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-open .nav__background[data-v-aada5b66]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-open .nav__background[data-v-aada5b66]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-expanded)}}.theme-dark.nav--is-open .nav__background[data-v-aada5b66]{background-color:var(--color-nav-dark-expanded)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-open .nav__background[data-v-aada5b66]{background-color:var(--color-nav-dark-uiblur-expanded)}}.theme-dark .nav__background[data-v-aada5b66]:after{background-color:var(--color-nav-dark-keyline)}.nav--is-open.theme-dark .nav__background[data-v-aada5b66]:after,.nav--is-sticking.theme-dark .nav__background[data-v-aada5b66]:after{background-color:var(--color-nav-dark-sticking-expanded-keyline)}.nav__background[data-v-aada5b66]:after{content:"";display:block;position:absolute;top:100%;left:50%;transform:translateX(-50%);width:980px;height:1px;z-index:1}@media only screen and (max-width:1023px){.nav__background[data-v-aada5b66]:after{width:100%}}.nav--noborder .nav__background[data-v-aada5b66]:after{display:none}.nav--is-sticking.nav--noborder .nav__background[data-v-aada5b66]:after{display:block}.nav--fullwidth-border .nav__background[data-v-aada5b66]:after,.nav--is-open .nav__background[data-v-aada5b66]:after,.nav--is-sticking .nav__background[data-v-aada5b66]:after,.nav--solid-background .nav__background[data-v-aada5b66]:after{width:100%}.nav-overlay[data-v-aada5b66]{position:fixed;left:0;right:0;top:0;display:block;opacity:0}.nav--is-open .nav-overlay[data-v-aada5b66]{background-color:rgba(51,51,51,.4);transition:opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s;bottom:0;opacity:1}.nav-wrapper[data-v-aada5b66]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.nav-content[data-v-aada5b66]{display:flex;padding:0 1.29412rem;max-width:980px;margin:0 auto;position:relative;z-index:2;justify-content:space-between}@supports (padding:calc(max(0px))){.nav-content[data-v-aada5b66]{padding-left:calc(max(1.29412rem, env(safe-area-inset-left)));padding-right:calc(max(1.29412rem, env(safe-area-inset-right)))}}@media only screen and (max-width:767px){.nav-content[data-v-aada5b66]{padding:0 .94118rem}}.nav--in-breakpoint-range .nav-content[data-v-aada5b66]{display:grid;grid-template-columns:1fr auto;grid-auto-rows:minmax(-webkit-min-content,-webkit-max-content);grid-auto-rows:minmax(min-content,max-content);grid-template-areas:"title actions" "menu menu"}.nav-menu[data-v-aada5b66]{font-size:.70588rem;line-height:1;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;flex:1 1 auto;display:flex;padding-top:10px;min-width:0}@media only screen and (max-width:767px){.nav-menu[data-v-aada5b66]{font-size:.82353rem;line-height:1;font-weight:400;letter-spacing:-.02em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.nav--in-breakpoint-range .nav-menu[data-v-aada5b66]{font-size:.82353rem;line-height:1;font-weight:400;letter-spacing:-.02em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding-top:0;grid-area:menu}.nav-menu-tray[data-v-aada5b66]{width:100%;max-width:100%;align-items:center;display:flex;justify-content:space-between}.nav--in-breakpoint-range .nav-menu-tray[data-v-aada5b66]{display:block;overflow:hidden;pointer-events:none;visibility:hidden;max-height:0;transition:max-height .4s ease-in 0s,visibility 0s linear 1s}.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-aada5b66]{max-height:calc(100vh - 5.64706rem);overflow-y:auto;-webkit-overflow-scrolling:touch;pointer-events:auto;visibility:visible;transition-delay:.2s,0s}.nav--is-opening.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-aada5b66]{overflow-y:hidden}.nav--is-sticking.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-aada5b66]{max-height:calc(100vh - 2.82353rem)}.nav-actions[data-v-aada5b66]{display:flex;align-items:center;max-height:2.82353rem}.nav--in-breakpoint-range .nav-actions[data-v-aada5b66]{grid-area:actions;justify-content:flex-end}.nav-title[data-v-aada5b66]{height:3.05882rem;font-size:1.11765rem;line-height:1.42105;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;cursor:default;display:flex;align-items:center;white-space:nowrap;box-sizing:border-box}@media only screen and (max-width:767px){.nav-title[data-v-aada5b66]{padding-top:0;height:2.82353rem;width:90%}}.nav--in-breakpoint-range .nav-title[data-v-aada5b66]{grid-area:title}.nav-title[data-v-aada5b66] span{height:100%;line-height:normal}.nav-title a[data-v-aada5b66]{display:inline-block;letter-spacing:inherit;line-height:normal;margin:0;text-decoration:none;white-space:nowrap}.nav-title a[data-v-aada5b66]:hover{text-decoration:none}@media only screen and (max-width:767px){.nav-title a[data-v-aada5b66]{display:flex}}.nav-title[data-v-aada5b66],.nav-title a[data-v-aada5b66]{color:var(--color-figure-gray);transition:color .5s ease-in}.nav--is-open.theme-dark .nav-title[data-v-aada5b66],.nav--is-open.theme-dark .nav-title a[data-v-aada5b66],.nav--is-sticking.theme-dark .nav-title[data-v-aada5b66],.nav--is-sticking.theme-dark .nav-title a[data-v-aada5b66],.theme-dark .nav-title[data-v-aada5b66],.theme-dark .nav-title a[data-v-aada5b66]{color:var(--color-nav-dark-link-color)}.nav-ax-toggle[data-v-aada5b66]{display:none;position:absolute;top:0;left:0;width:1px;height:1px;z-index:10}.nav-ax-toggle[data-v-aada5b66]:focus{outline-offset:-6px;width:100%;height:100%}.nav--in-breakpoint-range .nav-ax-toggle[data-v-aada5b66]{display:block}.nav-menucta[data-v-aada5b66]{cursor:pointer;display:none;align-items:center;overflow:hidden;width:1.17647rem;-webkit-tap-highlight-color:transparent;height:2.82353rem}.nav--in-breakpoint-range .nav-menucta[data-v-aada5b66]{display:flex}.nav-menucta-chevron[data-v-aada5b66]{display:block;position:relative;width:100%;height:.70588rem;transition:transform .3s linear;margin-top:2px}.nav-menucta-chevron[data-v-aada5b66]:after,.nav-menucta-chevron[data-v-aada5b66]:before{content:"";display:block;position:absolute;top:.58824rem;width:.70588rem;height:.05882rem;transition:transform .3s linear;background:var(--color-figure-gray)}.nav-menucta-chevron[data-v-aada5b66]:before{right:50%;border-radius:.5px 0 0 .5px}.nav-menucta-chevron[data-v-aada5b66]:after{left:50%;border-radius:0 .5px .5px 0}.nav-menucta-chevron[data-v-aada5b66]:before{transform-origin:100% 100%;transform:rotate(40deg) scaleY(1.5)}.nav-menucta-chevron[data-v-aada5b66]:after{transform-origin:0 100%;transform:rotate(-40deg) scaleY(1.5)}.nav--is-open .nav-menucta-chevron[data-v-aada5b66]{transform:scaleY(-1)}.theme-dark .nav-menucta-chevron[data-v-aada5b66]:after,.theme-dark .nav-menucta-chevron[data-v-aada5b66]:before{background:var(--color-nav-dark-link-color)}[data-v-aada5b66] .nav-menu-link{color:var(--color-nav-link-color)}[data-v-aada5b66] .nav-menu-link:hover{color:var(--color-nav-link-color-hover);text-decoration:none}.theme-dark[data-v-aada5b66] .nav-menu-link{color:var(--color-nav-dark-link-color)}.theme-dark[data-v-aada5b66] .nav-menu-link:hover{color:var(--color-nav-dark-link-color-hover)}[data-v-aada5b66] .nav-menu-link.current{color:var(--color-nav-current-link);cursor:default}[data-v-aada5b66] .nav-menu-link.current:hover{color:var(--color-nav-current-link)}.theme-dark[data-v-aada5b66] .nav-menu-link.current,.theme-dark[data-v-aada5b66] .nav-menu-link.current:hover{color:var(--color-nav-dark-current-link)} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/css/index.47bc740e.css b/JellyfinAPI.doccarchive/css/index.47bc740e.css new file mode 100644 index 000000000..71872c34b --- /dev/null +++ b/JellyfinAPI.doccarchive/css/index.47bc740e.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.color-scheme-toggle[data-v-4472ec1e]{--toggle-color-fill:var(--color-button-background);--toggle-color-text:var(--color-fill-blue);font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;border:1px solid var(--toggle-color-fill);border-radius:var(--toggle-border-radius-outer,4px);display:inline-flex;padding:1px}@media screen{[data-color-scheme=dark] .color-scheme-toggle[data-v-4472ec1e]{--toggle-color-text:var(--color-figure-blue)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .color-scheme-toggle[data-v-4472ec1e]{--toggle-color-text:var(--color-figure-blue)}}input[data-v-4472ec1e]{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.text[data-v-4472ec1e]{border:1px solid transparent;border-radius:var(--toggle-border-radius-inner,2px);color:var(--toggle-color-text);display:inline-block;text-align:center;padding:1px 6px;min-width:42px;box-sizing:border-box}.text[data-v-4472ec1e]:hover{cursor:pointer}input:checked+.text[data-v-4472ec1e]{--toggle-color-text:var(--color-button-text);background:var(--toggle-color-fill);border-color:var(--toggle-color-fill)}.footer[data-v-67c823d8]{border-top:1px solid var(--color-grid)}.row[data-v-67c823d8]{margin-left:auto;margin-right:auto;width:980px;display:flex;flex-direction:row-reverse;padding:20px 0}@media only screen and (max-width:1068px){.row[data-v-67c823d8]{width:692px}}@media only screen and (max-width:735px){.row[data-v-67c823d8]{width:87.5%}}.InitialLoadingPlaceholder[data-v-47e4ace8]{background:var(--colors-loading-placeholder-background,var(--color-loading-placeholder-background));height:100vh;width:100%}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;background-color:var(--colors-text-background,var(--color-text-background));height:100%}abbr,blockquote,body,button,dd,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,hgroup,input,legend,li,ol,p,pre,ul{margin:0;padding:0}address,caption,code,figcaption,pre,th{font-size:1em;font-weight:400;font-style:normal}fieldset,iframe,img{border:0}caption,th{text-align:left}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}button{background:none;border:0;box-sizing:content-box;color:inherit;cursor:pointer;font:inherit;line-height:inherit;overflow:visible;vertical-align:inherit}button:disabled{cursor:default}:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}::-moz-focus-inner{border:0;padding:0}@media print{#content,#main,body{color:#000}a,a:link,a:visited{color:#000;text-decoration:none}.hide,.noprint{display:none}}body{height:100%;min-width:320px}html{font:var(--typography-html-font,17px "Helvetica Neue","Helvetica","Arial",sans-serif);quotes:"“" "”"}body{font-size:1rem;line-height:1.47059;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;background-color:var(--color-fill);color:var(--colors-text,var(--color-text));font-style:normal;word-wrap:break-word}body,button,input,select,textarea{font-synthesis:none;-moz-font-feature-settings:"kern";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}h1,h2,h3,h4,h5,h6{color:var(--colors-header-text,var(--color-header-text))}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:.8em}h1+h1,h1+h2,h1+h3,h1+h4,h1+h5,h1+h6,h2+h1,h2+h2,h2+h3,h2+h4,h2+h5,h2+h6,h3+h1,h3+h2,h3+h3,h3+h4,h3+h5,h3+h6,h4+h1,h4+h2,h4+h3,h4+h4,h4+h5,h4+h6,h5+h1,h5+h2,h5+h3,h5+h4,h5+h5,h5+h6,h6+h1,h6+h2,h6+h3,h6+h4,h6+h5,h6+h6{margin-top:.4em}ol+h1,ol+h2,ol+h3,ol+h4,ol+h5,ol+h6,p+h1,p+h2,p+h3,p+h4,p+h5,p+h6,ul+h1,ul+h2,ul+h3,ul+h4,ul+h5,ul+h6{margin-top:1.6em}ol+*,p+*,ul+*{margin-top:.8em}ol,ul{margin-left:1.17647em}ol ol,ol ul,ul ol,ul ul{margin-top:0;margin-bottom:0}nav ol,nav ul{margin:0;list-style:none}li li{font-size:1em}a{color:var(--colors-link,var(--color-link))}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}p+a{display:inline-block}b,strong{font-weight:600}cite,dfn,em,i{font-style:italic}sup{font-size:.6em;vertical-align:top;position:relative;bottom:-.2em}h1 sup,h2 sup,h3 sup{font-size:.4em}sup a{vertical-align:inherit;color:inherit}sup a:hover{color:var(--figure-blue);text-decoration:none}sub{line-height:1}abbr{border:0}pre{overflow:auto;-webkit-overflow-scrolling:auto;white-space:pre;word-wrap:normal}code{font-family:Menlo,monospace;font-weight:inherit;letter-spacing:0}.syntax-comment{color:var(--syntax-comment,var(--color-syntax-comments))}.syntax-quote{color:var(--syntax-quote,var(--color-syntax-comments))}.syntax-keyword{color:var(--syntax-keyword,var(--color-syntax-keywords))}.syntax-literal{color:var(--syntax-literal,var(--color-syntax-keywords))}.syntax-selector-tag{color:var(--syntax-selector-tag,var(--color-syntax-keywords))}.syntax-string{color:var(--syntax-string,var(--color-syntax-strings))}.syntax-bullet{color:var(--syntax-bullet,var(--color-syntax-characters))}.syntax-meta{color:var(--syntax-meta,var(--color-syntax-characters))}.syntax-number{color:var(--syntax-number,var(--color-syntax-characters))}.syntax-symbol{color:var(--syntax-symbol,var(--color-syntax-characters))}.syntax-tag{color:var(--syntax-tag,var(--color-syntax-characters))}.syntax-attr{color:var(--syntax-attr,var(--color-syntax-other-type-names))}.syntax-built_in{color:var(--syntax-built_in,var(--color-syntax-other-type-names))}.syntax-builtin-name{color:var(--syntax-builtin-name,var(--color-syntax-other-type-names))}.syntax-class{color:var(--syntax-class,var(--color-syntax-other-type-names))}.syntax-params{color:var(--syntax-params,var(--color-syntax-other-type-names))}.syntax-section{color:var(--syntax-section,var(--color-syntax-other-type-names))}.syntax-title{color:var(--syntax-title,var(--color-syntax-other-type-names))}.syntax-type{color:var(--syntax-type,var(--color-syntax-other-type-names))}.syntax-attribute{color:var(--syntax-attribute,var(--color-syntax-plain-text))}.syntax-identifier{color:var(--syntax-identifier,var(--color-syntax-plain-text))}.syntax-subst{color:var(--syntax-subst,var(--color-syntax-plain-text))}.syntax-doctag,.syntax-strong{font-weight:700}.syntax-emphasis,.syntax-link{font-style:italic}[data-syntax=swift] .syntax-meta{color:var(--syntax-meta,var(--color-syntax-keywords))}[data-syntax=swift] .syntax-class,[data-syntax=swift] .syntax-keyword+.syntax-params,[data-syntax=swift] .syntax-params+.syntax-params{color:unset}[data-syntax=json] .syntax-attr{color:var(--syntax-attr,var(--color-syntax-strings))}#skip-nav{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}#skip-nav:active,#skip-nav:focus{position:relative;float:left;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;color:var(--color-figure-blue);font-size:1em;padding:0 10px;z-index:100000;top:0;left:0;height:44px;line-height:44px;-webkit-clip-path:unset;clip-path:unset}.nav--in-breakpoint-range #skip-nav{display:none}.visuallyhidden{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}.changed{border:1px solid var(--color-changes-modified);border-radius:4px;position:relative}.changed.has-multiple-lines,.has-multiple-lines .changed{border-radius:4px}.changed:after{right:0;background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:" ";margin:auto;margin-right:7px;position:absolute;top:0;width:1.17647rem;height:1.17647rem;margin-top:.41176rem;z-index:2}@media screen{[data-color-scheme=dark] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.changed-added{border-color:var(--color-changes-added)}.changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.changed-deprecated{border-color:var(--color-changes-deprecated)}.changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.changed.link-block:after,.changed.relationships-item:after,.link-block .changed:after{margin-top:7px}.change-added,.change-removed{padding:2px 0}.change-removed{background-color:var(--color-highlight-red)}.change-added{background-color:var(--color-highlight-green)}body{color-scheme:light dark}body[data-color-scheme=light]{color-scheme:light}body[data-color-scheme=dark]{color-scheme:dark}body{--color-fill:#fff;--color-fill-secondary:#f7f7f7;--color-fill-tertiary:#f0f0f0;--color-fill-quaternary:#282828;--color-fill-blue:#00f;--color-fill-gray:#ccc;--color-fill-gray-secondary:#f5f5f5;--color-fill-gray-tertiary:#f0f0f0;--color-fill-green-secondary:#f0fff0;--color-fill-orange-secondary:#fffaf6;--color-fill-red-secondary:#fff0f5;--color-figure-blue:#36f;--color-figure-gray:#000;--color-figure-gray-secondary:#666;--color-figure-gray-secondary-alt:#666;--color-figure-gray-tertiary:#666;--color-figure-green:green;--color-figure-light-gray:#666;--color-figure-orange:#c30;--color-figure-red:red;--color-tutorials-teal:#000;--color-article-background:var(--color-fill-tertiary);--color-article-body-background:var(--color-fill);--color-aside-deprecated:var(--color-figure-gray);--color-aside-deprecated-background:var(--color-fill-orange-secondary);--color-aside-deprecated-border:var(--color-figure-orange);--color-aside-experiment:var(--color-figure-gray);--color-aside-experiment-background:var(--color-fill-gray-secondary);--color-aside-experiment-border:var(--color-figure-light-gray);--color-aside-important:var(--color-figure-gray);--color-aside-important-background:var(--color-fill-gray-secondary);--color-aside-important-border:var(--color-figure-light-gray);--color-aside-note:var(--color-figure-gray);--color-aside-note-background:var(--color-fill-gray-secondary);--color-aside-note-border:var(--color-figure-light-gray);--color-aside-tip:var(--color-figure-gray);--color-aside-tip-background:var(--color-fill-gray-secondary);--color-aside-tip-border:var(--color-figure-light-gray);--color-aside-warning:var(--color-figure-gray);--color-aside-warning-background:var(--color-fill-red-secondary);--color-aside-warning-border:var(--color-figure-red);--color-badge-default:var(--color-figure-light-gray);--color-badge-beta:var(--color-figure-gray-tertiary);--color-badge-deprecated:var(--color-figure-orange);--color-badge-dark-default:#b0b0b0;--color-badge-dark-beta:#b0b0b0;--color-badge-dark-deprecated:#f60;--color-button-background:var(--color-fill-blue);--color-button-background-active:#36f;--color-button-background-hover:var(--color-figure-blue);--color-button-text:#fff;--color-call-to-action-background:var(--color-fill-secondary);--color-changes-added:var(--color-figure-light-gray);--color-changes-added-hover:var(--color-figure-light-gray);--color-changes-deprecated:var(--color-figure-light-gray);--color-changes-deprecated-hover:var(--color-figure-light-gray);--color-changes-modified:var(--color-figure-light-gray);--color-changes-modified-hover:var(--color-figure-light-gray);--color-changes-modified-previous-background:var(--color-fill-gray-secondary);--color-code-background:var(--color-fill-secondary);--color-code-collapsible-background:var(--color-fill-tertiary);--color-code-collapsible-text:var(--color-figure-gray-secondary-alt);--color-code-line-highlight:rgba(51,102,255,0.08);--color-code-line-highlight-border:var(--color-figure-blue);--color-code-plain:var(--color-figure-gray);--color-content-table-content-color:var(--color-fill-secondary);--color-dropdown-background:hsla(0,0%,100%,0.8);--color-dropdown-border:#ccc;--color-dropdown-option-text:#666;--color-dropdown-text:#000;--color-dropdown-dark-background:hsla(0,0%,100%,0.1);--color-dropdown-dark-border:hsla(0,0%,94.1%,0.2);--color-dropdown-dark-option-text:#ccc;--color-dropdown-dark-text:#fff;--color-eyebrow:var(--color-figure-gray-secondary);--color-focus-border-color:var(--color-fill-blue);--color-focus-color:rgba(0,125,250,0.6);--color-form-error:var(--color-figure-red);--color-form-error-background:var(--color-fill-red-secondary);--color-form-valid:var(--color-figure-green);--color-form-valid-background:var(--color-fill-green-secondary);--color-generic-modal-background:var(--color-fill);--color-grid:var(--color-fill-gray);--color-header-text:var(--color-figure-gray);--color-hero-eyebrow:#ccc;--color-link:var(--color-figure-blue);--color-loading-placeholder-background:var(--color-fill);--color-nav-color:#666;--color-nav-current-link:rgba(0,0,0,0.6);--color-nav-expanded:#fff;--color-nav-hierarchy-collapse-background:#f0f0f0;--color-nav-hierarchy-collapse-borders:#ccc;--color-nav-hierarchy-item-borders:#ccc;--color-nav-keyline:rgba(0,0,0,0.2);--color-nav-link-color:#000;--color-nav-link-color-hover:#36f;--color-nav-outlines:#ccc;--color-nav-rule:hsla(0,0%,94.1%,0.5);--color-nav-solid-background:#fff;--color-nav-sticking-expanded-keyline:rgba(0,0,0,0.1);--color-nav-stuck:hsla(0,0%,100%,0.9);--color-nav-uiblur-expanded:hsla(0,0%,100%,0.9);--color-nav-uiblur-stuck:hsla(0,0%,100%,0.7);--color-nav-root-subhead:var(--color-tutorials-teal);--color-nav-dark-border-top-color:hsla(0,0%,100%,0.4);--color-nav-dark-color:#b0b0b0;--color-nav-dark-current-link:hsla(0,0%,100%,0.6);--color-nav-dark-expanded:#2a2a2a;--color-nav-dark-hierarchy-collapse-background:#424242;--color-nav-dark-hierarchy-collapse-borders:#666;--color-nav-dark-hierarchy-item-borders:#424242;--color-nav-dark-keyline:rgba(66,66,66,0.95);--color-nav-dark-link-color:#fff;--color-nav-dark-link-color-hover:#09f;--color-nav-dark-outlines:#575757;--color-nav-dark-rule:#575757;--color-nav-dark-solid-background:#000;--color-nav-dark-sticking-expanded-keyline:rgba(66,66,66,0.7);--color-nav-dark-stuck:rgba(42,42,42,0.9);--color-nav-dark-uiblur-expanded:rgba(42,42,42,0.9);--color-nav-dark-uiblur-stuck:rgba(42,42,42,0.7);--color-nav-dark-root-subhead:#fff;--color-runtime-preview-background:var(--color-fill-tertiary);--color-runtime-preview-disabled-text:hsla(0,0%,40%,0.6);--color-runtime-preview-text:var(--color-figure-gray-secondary);--color-secondary-label:var(--color-figure-gray-secondary);--color-step-background:var(--color-fill-secondary);--color-step-caption:var(--color-figure-gray-secondary);--color-step-focused:var(--color-figure-light-gray);--color-step-text:var(--color-figure-gray-secondary);--color-svg-icon:#666;--color-syntax-attributes:#947100;--color-syntax-characters:#272ad8;--color-syntax-comments:#707f8c;--color-syntax-documentation-markup:#506375;--color-syntax-documentation-markup-keywords:#506375;--color-syntax-heading:#ba2da2;--color-syntax-keywords:#ad3da4;--color-syntax-marks:#000;--color-syntax-numbers:#272ad8;--color-syntax-other-class-names:#703daa;--color-syntax-other-constants:#4b21b0;--color-syntax-other-declarations:#047cb0;--color-syntax-other-function-and-method-names:#4b21b0;--color-syntax-other-instance-variables-and-globals:#703daa;--color-syntax-other-preprocessor-macros:#78492a;--color-syntax-other-type-names:#703daa;--color-syntax-param-internal-name:#404040;--color-syntax-plain-text:#000;--color-syntax-preprocessor-statements:#78492a;--color-syntax-project-class-names:#3e8087;--color-syntax-project-constants:#2d6469;--color-syntax-project-function-and-method-names:#2d6469;--color-syntax-project-instance-variables-and-globals:#3e8087;--color-syntax-project-preprocessor-macros:#78492a;--color-syntax-project-type-names:#3e8087;--color-syntax-strings:#d12f1b;--color-syntax-type-declarations:#03638c;--color-syntax-urls:#1337ff;--color-tabnav-item-border-color:var(--color-fill-gray);--color-text:var(--color-figure-gray);--color-text-background:var(--color-fill);--color-tutorial-assessments-background:var(--color-fill-secondary);--color-tutorial-background:var(--color-fill);--color-tutorial-navbar-dropdown-background:var(--color-fill);--color-tutorial-navbar-dropdown-border:var(--color-fill-gray);--color-tutorial-quiz-border-active:var(--color-figure-blue);--color-tutorials-overview-background:#161616;--color-tutorials-overview-content:#fff;--color-tutorials-overview-content-alt:#fff;--color-tutorials-overview-eyebrow:#ccc;--color-tutorials-overview-icon:#b0b0b0;--color-tutorials-overview-link:#09f;--color-tutorials-overview-navigation-link:#ccc;--color-tutorials-overview-navigation-link-active:#fff;--color-tutorials-overview-navigation-link-hover:#fff;--color-tutorial-hero-text:#fff;--color-tutorial-hero-background:#000}@media screen{body[data-color-scheme=dark]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary)}}@media screen and (prefers-color-scheme:dark){body[data-color-scheme=auto]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary)}}#main{outline-style:none}[data-v-bf0cd418] :focus:not(input):not(textarea):not(select){outline:none}.fromkeyboard[data-v-bf0cd418] :focus:not(input):not(textarea):not(select){outline:4px solid var(--color-focus-color);outline-offset:1px}#app[data-v-bf0cd418]{display:grid;grid-template-rows:auto 1fr auto;min-height:100%}#app[data-v-bf0cd418]>*{min-width:0}#app.hascustomheader[data-v-bf0cd418]{grid-template-rows:auto auto 1fr auto}.container[data-v-790053de]{margin-left:auto;margin-right:auto;width:980px;outline-style:none;margin-top:92px;margin-bottom:140px}@media only screen and (max-width:1068px){.container[data-v-790053de]{width:692px}}@media only screen and (max-width:735px){.container[data-v-790053de]{width:87.5%}}.error-content[data-v-790053de]{box-sizing:border-box;width:502px;margin-left:auto;margin-right:auto;margin-bottom:54px}@media only screen and (max-width:1068px){.error-content[data-v-790053de]{width:420px;margin-bottom:45px}}@media only screen and (max-width:735px){.error-content[data-v-790053de]{max-width:330px;width:auto;margin-bottom:35px}}.title[data-v-790053de]{text-align:center;font-size:2.82353rem;line-height:1.08333;font-weight:400;letter-spacing:-.003em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){.title[data-v-790053de]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-790053de]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/css/topic.2eb01958.css b/JellyfinAPI.doccarchive/css/topic.2eb01958.css new file mode 100644 index 000000000..87570572d --- /dev/null +++ b/JellyfinAPI.doccarchive/css/topic.2eb01958.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.nav-title-content[data-v-60ea3af8]{max-width:100%}.title[data-v-60ea3af8]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-60ea3af8]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-60ea3af8]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-60ea3af8]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-60ea3af8]{color:var(--color-nav-dark-root-subhead)}.nav-menu-item[data-v-f44c239a]{margin-left:1.41176rem;list-style:none;min-width:0}.nav--in-breakpoint-range .nav-menu-item[data-v-f44c239a]{margin-left:0;width:100%;height:2.47059rem}.nav--in-breakpoint-range .nav-menu-item[data-v-f44c239a]:first-child .nav-menu-link{border-top:0}.nav--in-breakpoint-range .nav-menu-item--animated[data-v-f44c239a]{opacity:0;transform:none;transition:.5s ease;transition-property:transform,opacity}.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.mobile-dropdown[data-v-3d58f504]{box-sizing:border-box}.nav--in-breakpoint-range .mobile-dropdown[data-v-3d58f504]{padding-left:.23529rem;padding-right:.23529rem}.mobile-dropdown ul[data-v-3d58f504]{list-style:none}.mobile-dropdown .option[data-v-3d58f504]{cursor:pointer;font-size:.70588rem;padding:.5rem 0;display:block;text-decoration:none;color:inherit}.mobile-dropdown .option[data-v-3d58f504]:focus{outline-offset:0}.mobile-dropdown .option.depth1[data-v-3d58f504]{padding-left:.47059rem}.active[data-v-3d58f504],.tutorial.router-link-active[data-v-3d58f504]{font-weight:600}.active[data-v-3d58f504]:focus,.tutorial.router-link-active[data-v-3d58f504]:focus{outline:none}.chapter-list[data-v-3d58f504]:not(:first-child){margin-top:1rem}.chapter-name[data-v-3d58f504],.tutorial[data-v-3d58f504]{padding:.5rem 0;font-size:1rem;line-height:1.47059;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.section-list[data-v-3d58f504],.tutorial-list[data-v-3d58f504]{padding:0 .58824rem}.chapter-list:last-child .tutorial-list[data-v-3d58f504]:last-child{padding-bottom:10em}.chapter-list[data-v-3d58f504]{display:inline-block}.form-element[data-v-998803d8]{position:relative}.form-dropdown[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:block;box-sizing:border-box;width:100%;height:3.3em;color:var(--color-dropdown-text);padding:1.11765rem 2.35294rem 0 .94118rem;text-align:left;border:1px solid var(--color-dropdown-border);border-radius:4px;background-clip:padding-box;margin-bottom:.82353rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;min-height:32px}.form-dropdown[data-v-998803d8]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown.no-eyebrow[data-v-998803d8]{padding-top:0}.form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-text)}.form-dropdown[data-v-998803d8]::-ms-expand{opacity:0}.form-dropdown~.form-icon[data-v-998803d8]{position:absolute;display:block;pointer-events:none;fill:var(--color-figure-gray-tertiary);right:14px;width:13px;height:auto;top:50%;transform:translateY(-50%)}.is-open .form-dropdown~.form-icon[data-v-998803d8]{transform:translateY(-50%) scale(-1)}@media only screen and (max-width:735px){.form-dropdown~.form-icon[data-v-998803d8]{right:14px}}.form-dropdown~.form-label[data-v-998803d8]{font-size:.70588rem;line-height:1.75;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;position:absolute;top:.47059rem;left:17px;color:var(--color-figure-gray-secondary);pointer-events:none;padding:0;z-index:1}.form-dropdown[data-v-998803d8] option{color:var(--color-dropdown-text)}.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.form-dropdown-selectnone~.form-label[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;top:19px;left:17px;color:var(--color-figure-gray-tertiary)}.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.form-dropdown-selectnone[data-v-998803d8]::-ms-value{display:none}.theme-dark .form-dropdown[data-v-998803d8]{color:var(--color-dropdown-dark-text);background-color:var(--color-dropdown-dark-background);border-color:var(--color-dropdown-dark-border)}.theme-dark .form-dropdown~.form-label[data-v-998803d8]{color:#ccc}.theme-dark .form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-dark-text)}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.theme-dark .form-dropdown-selectnone~.form-label[data-v-998803d8]{color:#b0b0b0}.dropdown-small[data-v-47f38161]{height:30px;display:flex;align-items:center;position:relative;background:var(--color-fill)}.dropdown-small .form-dropdown-toggle[data-v-47f38161]{line-height:1.5;font-size:12px;padding-top:0;padding-bottom:0;padding-left:20px;min-height:unset;height:30px;display:flex;align-items:center}.dropdown-small .form-dropdown-toggle[data-v-47f38161]:focus{box-shadow:none;border-color:var(--color-dropdown-border)}.fromkeyboard .dropdown-small .form-dropdown-toggle[data-v-47f38161]:focus{box-shadow:0 0 0 2px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown-toggle[data-v-47f38161]{margin:0}.is-open .form-dropdown-toggle[data-v-47f38161]{border-radius:4px 4px 0 0;border-bottom:none;padding-bottom:1px}.fromkeyboard .is-open .form-dropdown-toggle[data-v-47f38161]{box-shadow:1px -1px 0 1px var(--color-focus-color),-1px -1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color)}.form-dropdown-title[data-v-47f38161]{margin:0;padding:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dropdown-custom[data-v-47f38161]{border-radius:4px}.dropdown-custom.is-open[data-v-47f38161]{border-radius:4px 4px 0 0}.dropdown-custom[data-v-47f38161] .form-dropdown-content{background:var(--color-fill);position:absolute;right:0;left:0;top:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border:1px solid var(--color-dropdown-border);border-top:none;display:none;overflow-y:auto}.dropdown-custom[data-v-47f38161] .form-dropdown-content.is-open{display:block}.fromkeyboard .dropdown-custom[data-v-47f38161] .form-dropdown-content.is-open{box-shadow:1px 1px 0 1px var(--color-focus-color),-1px 1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color);border-top-color:transparent}.nav .dropdown-custom[data-v-47f38161] .form-dropdown-content{max-height:calc(100vh - 116px - 3.05882rem)}.nav--is-sticking.nav .dropdown-custom[data-v-47f38161] .form-dropdown-content{max-height:calc(100vh - 3.05882rem - 72px)}.dropdown-custom[data-v-47f38161] .options{list-style:none;margin:0;padding:0 0 20px}.dropdown-custom[data-v-47f38161] .option{cursor:pointer;padding:5px 20px;font-size:12px;line-height:20px;outline:none}.dropdown-custom[data-v-47f38161] .option:hover{background-color:var(--color-fill-tertiary)}.dropdown-custom[data-v-47f38161] .option.option-active{font-weight:600}.fromkeyboard .dropdown-custom[data-v-47f38161] .option:hover{background-color:transparent}.fromkeyboard .dropdown-custom[data-v-47f38161] .option:focus{background-color:var(--color-fill-tertiary);outline:none}.tutorial-dropdown[data-v-4a151342]{grid-column:3}.section-tracker[data-v-4a151342]{font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-figure-gray-secondary);margin-left:15px}.tutorial-dropdown[data-v-78dc103f]{grid-column:1/2}.tutorial-dropdown .options[data-v-78dc103f]{padding-top:1rem;padding-bottom:0}.tutorial-dropdown .option[data-v-78dc103f]{padding:5px 20px 5px 30px}.chapter-list[data-v-78dc103f]{padding-bottom:20px}.chapter-name[data-v-78dc103f]{margin:0 20px 5px 20px;line-height:normal;color:var(--color-figure-gray-secondary)}.chevron-icon[data-v-7138b5bf]{padding:0;color:var(--color-nav-outlines);grid-column:2;height:20px;width:20px;margin:0 4px}@media only screen and (min-width:768px){.nav[data-v-7138b5bf] .nav-content{display:grid;grid-template-columns:auto auto 3fr;align-items:center}.nav[data-v-7138b5bf] .nav-menu-tray{width:auto}.nav[data-v-7138b5bf] .nav-menu{padding:0;grid-column:3/5}.nav[data-v-7138b5bf] .nav-menu-item{margin:0}}.dropdown-container[data-v-7138b5bf]{height:3.05882rem;display:grid;grid-template-columns:minmax(230px,285px) auto minmax(230px,1fr);align-items:center}@media only screen and (max-width:1023px){.dropdown-container[data-v-7138b5bf]{grid-template-columns:minmax(173px,216px) auto minmax(173px,1fr)}}.separator[data-v-7138b5bf]{height:20px;border-right:1px solid;border-color:var(--color-nav-outlines);margin:0 20px;grid-column:2}.mobile-dropdown-container[data-v-7138b5bf],.nav--in-breakpoint-range.nav .dropdown-container[data-v-7138b5bf],.nav--in-breakpoint-range.nav .separator[data-v-7138b5bf]{display:none}.nav--in-breakpoint-range.nav .mobile-dropdown-container[data-v-7138b5bf]{display:block}.nav[data-v-7138b5bf] .nav-title{grid-column:1;width:90%;padding-top:0}.primary-dropdown[data-v-7138b5bf],.secondary-dropdown[data-v-7138b5bf]{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-7138b5bf] .form-dropdown,.primary-dropdown[data-v-7138b5bf] .form-dropdown:focus,.secondary-dropdown[data-v-7138b5bf] .form-dropdown,.secondary-dropdown[data-v-7138b5bf] .form-dropdown:focus{border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-7138b5bf] .options,.secondary-dropdown[data-v-7138b5bf] .options{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}.replay-button[data-v-7335dbb2]{display:flex;align-items:center;justify-content:center;cursor:pointer;visibility:hidden;margin-top:.5rem;-webkit-tap-highlight-color:transparent}.replay-button.visible[data-v-7335dbb2]{visibility:visible}.replay-button svg.replay-icon[data-v-7335dbb2]{height:12px;width:12px;margin-left:.3em}[data-v-1b5cc854] img,[data-v-1b5cc854] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}[data-v-3cfe1c35] .code-listing+*,[data-v-3cfe1c35] aside+*,[data-v-3cfe1c35] h2+*,[data-v-3cfe1c35] h3+*,[data-v-3cfe1c35] ol+*,[data-v-3cfe1c35] p+*,[data-v-3cfe1c35] ul+*{margin-top:20px}[data-v-3cfe1c35] ol ol,[data-v-3cfe1c35] ol ul,[data-v-3cfe1c35] ul ol,[data-v-3cfe1c35] ul ul{margin-top:0}[data-v-3cfe1c35] h2{font-size:1.88235rem;line-height:1.25;font-weight:400;letter-spacing:.004em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-3cfe1c35] h2{font-size:1.64706rem;line-height:1.28571;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-3cfe1c35] h2{font-size:1.41176rem;line-height:1.33333;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-3cfe1c35] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-3cfe1c35] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-3cfe1c35] .code-listing{background:var(--color-code-background);border-color:var(--colors-grid,var(--color-grid));border-style:solid;border-width:1px}[data-v-3cfe1c35] .code-listing pre{font-size:.70588rem;line-height:1.83333;font-weight:400;letter-spacing:-.01em;font-family:Menlo,monospace;padding:20px 0}.columns[data-v-30edf911]{display:grid;grid-template-rows:repeat(2,auto)}.columns.cols-2[data-v-30edf911]{gap:20px 8.33333%;grid-template-columns:repeat(2,1fr)}.columns.cols-3[data-v-30edf911]{gap:20px 4.16667%;grid-template-columns:repeat(3,1fr)}.asset[data-v-30edf911]{align-self:end;grid-row:1}.content[data-v-30edf911]{grid-row:2}@media only screen and (max-width:735px){.columns.cols-2[data-v-30edf911],.columns.cols-3[data-v-30edf911]{grid-template-columns:unset}.asset[data-v-30edf911],.content[data-v-30edf911]{grid-row:auto}}.content-and-media[data-v-3fa44f9e]{display:flex}.content-and-media.media-leading[data-v-3fa44f9e]{flex-direction:row-reverse}.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:row}@media only screen and (min-width:736px){.content-and-media[data-v-3fa44f9e]{align-items:center;justify-content:center}}.content[data-v-3fa44f9e]{width:62.5%}.asset[data-v-3fa44f9e]{width:29.16667%}.media-leading .asset[data-v-3fa44f9e]{margin-right:8.33333%}.media-trailing .asset[data-v-3fa44f9e]{margin-left:8.33333%}@media only screen and (max-width:735px){.content-and-media.media-leading[data-v-3fa44f9e],.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:column}.asset[data-v-3fa44f9e],.content[data-v-3fa44f9e]{width:100%}.media-leading .asset[data-v-3fa44f9e],.media-trailing .asset[data-v-3fa44f9e]{margin:20px 0 0 0}}.group[id][data-v-1f2be54b]{margin-top:20px;padding-top:20px}[data-v-1f2be54b] img,[data-v-1f2be54b] video{display:block;margin:0 auto;max-width:100%}.layout+[data-v-4d5a806e]{margin-top:40px}@media only screen and (max-width:735px){.layout[data-v-4d5a806e]:first-child>:not(.group[id]){margin-top:40px}}.body[data-v-6499e2f2]{background:var(--colors-text-background,var(--color-article-body-background));margin-left:auto;margin-right:auto;width:980px;border-radius:10px;transform:translateY(-120px)}@media only screen and (max-width:1068px){.body[data-v-6499e2f2]{width:692px}}@media only screen and (max-width:735px){.body[data-v-6499e2f2]{width:87.5%;border-radius:0;transform:none}}.body[data-v-6499e2f2]~*{margin-top:-40px}.body-content[data-v-6499e2f2]{padding:40px 8.33333% 80px 8.33333%}@media only screen and (max-width:735px){.body-content[data-v-6499e2f2]{padding:0 0 40px 0}}.call-to-action[data-v-2016b288]{padding:65px 0;background:var(--color-call-to-action-background)}.theme-dark .call-to-action[data-v-2016b288]{--color-call-to-action-background:#424242}.row[data-v-2016b288]{margin-left:auto;margin-right:auto;width:980px;display:flex;align-items:center}@media only screen and (max-width:1068px){.row[data-v-2016b288]{width:692px}}@media only screen and (max-width:735px){.row[data-v-2016b288]{width:87.5%}}[data-v-2016b288] img,[data-v-2016b288] video{max-height:560px}h2[data-v-2016b288]{font-size:1.88235rem;line-height:1.25;font-weight:400;letter-spacing:.004em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){h2[data-v-2016b288]{font-size:1.64706rem;line-height:1.28571;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){h2[data-v-2016b288]{font-size:1.41176rem;line-height:1.33333;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.label[data-v-2016b288]{display:block;font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:.4em;color:var(--color-eyebrow)}@media only screen and (max-width:735px){.label[data-v-2016b288]{font-size:1.11765rem;line-height:1.21053;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-2016b288]{margin-bottom:1.5rem}.right-column[data-v-2016b288]{margin-left:auto}@media only screen and (max-width:735px){.row[data-v-2016b288]{display:block}.col+.col[data-v-2016b288]{margin-top:40px}}@media only screen and (max-width:735px){.call-to-action[data-v-426a965c]{margin-top:0}}.headline[data-v-1898f592]{margin-bottom:.8em}.heading[data-v-1898f592]{font-size:2.82353rem;line-height:1.08333;font-weight:400;letter-spacing:-.003em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-header-text)}@media only screen and (max-width:1068px){.heading[data-v-1898f592]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.heading[data-v-1898f592]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.dark .heading[data-v-1898f592]{color:#fff}.eyebrow[data-v-1898f592]{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:block;margin-bottom:.4em;color:var(--color-eyebrow)}@media only screen and (max-width:1068px){.eyebrow[data-v-1898f592]{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.generic-modal[data-v-0e383dfa]{position:fixed;top:0;left:0;right:0;bottom:0;margin:0;z-index:11000;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;background:none;overflow:auto}.modal-fullscreen[data-v-0e383dfa]{align-items:stretch}.modal-fullscreen .container[data-v-0e383dfa]{margin:0;flex:1;width:100%;height:100%;padding-top:env(safe-area-inset-top);padding-right:env(safe-area-inset-right);padding-bottom:env(safe-area-inset-bottom);padding-left:env(safe-area-inset-left)}.modal-standard[data-v-0e383dfa]{padding:20px}.modal-standard.modal-with-close .container[data-v-0e383dfa]{padding-top:80px}.modal-standard .container[data-v-0e383dfa]{padding:50px;border-radius:4px}@media screen{[data-color-scheme=dark] .modal-standard .container[data-v-0e383dfa]{background:#1d1d1f}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .modal-standard .container[data-v-0e383dfa]{background:#1d1d1f}}@media only screen and (max-width:735px){.modal-standard[data-v-0e383dfa]{padding:0;align-items:stretch}.modal-standard .container[data-v-0e383dfa]{margin:20px 0 0;padding:50px 30px;flex:1;width:100%;border-bottom-left-radius:0;border-bottom-right-radius:0}}.backdrop[data-v-0e383dfa]{overflow:auto;background:rgba(0,0,0,.4);-webkit-overflow-scrolling:touch;width:100%;height:100%;position:fixed}.container[data-v-0e383dfa]{margin-left:auto;margin-right:auto;width:980px;background:var(--colors-generic-modal-background,var(--color-generic-modal-background));z-index:1;position:relative;overflow:auto;max-width:100%}@media only screen and (max-width:1068px){.container[data-v-0e383dfa]{width:692px}}@media only screen and (max-width:735px){.container[data-v-0e383dfa]{width:87.5%}}.close[data-v-0e383dfa]{position:absolute;z-index:9999;top:22px;left:22px;width:30px;height:30px;color:#666;cursor:pointer;background:none;border:0;display:flex;align-items:center}.close .close-icon[data-v-0e383dfa]{fill:currentColor;width:100%;height:100%}.theme-dark .container[data-v-0e383dfa]{background:#000}.theme-dark .container .close[data-v-0e383dfa]{color:#b0b0b0}.theme-code .container[data-v-0e383dfa]{background-color:var(--background,var(--color-code-background))}.metadata[data-v-2fa6f125]{display:flex}.item[data-v-2fa6f125]{font-size:.70588rem;line-height:1.33333;font-weight:600;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;border-right:1px solid #fff;padding:0 27.5px}@media only screen and (max-width:735px){.item[data-v-2fa6f125]{font-size:.64706rem;line-height:1.63636;font-weight:600;letter-spacing:-.008em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:0 8px}}.item[data-v-2fa6f125]:first-of-type{padding-left:0}.item[data-v-2fa6f125]:last-of-type{border:none}@media only screen and (max-width:735px){.item[data-v-2fa6f125]:last-of-type{padding-right:0}}.content[data-v-2fa6f125]{color:#fff}.icon[data-v-2fa6f125]{font-size:2.82353rem;line-height:1.08333;font-weight:400;letter-spacing:-.003em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){.icon[data-v-2fa6f125]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.icon[data-v-2fa6f125]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.small-icon[data-v-2fa6f125]{width:1em;height:1em;margin-left:.2rem}.small-icon.xcode-icon[data-v-2fa6f125]{width:.8em;height:.8em}.content-link[data-v-2fa6f125]{display:flex;align-items:center}a[data-v-2fa6f125]{color:var(--colors-link,var(--color-tutorials-overview-link))}.duration[data-v-2fa6f125]{display:flex;align-items:baseline;font-size:2.35294rem;line-height:1;font-weight:400;letter-spacing:0;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:1.8rem}@media only screen and (max-width:735px){.duration[data-v-2fa6f125]{font-size:1.64706rem;line-height:1;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:1.3rem}}.minutes[data-v-2fa6f125]{display:inline-block;font-size:1.64706rem;line-height:1;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:1.3rem}@media only screen and (max-width:735px){.minutes[data-v-2fa6f125]{font-size:1rem;line-height:1.23529;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:.8rem}}.item-large-icon[data-v-2fa6f125]{height:2.3rem;max-width:100%}@media only screen and (max-width:735px){.item-large-icon[data-v-2fa6f125]{height:1.5rem;max-width:100%}}.bottom[data-v-2fa6f125]{margin-top:13px}@media only screen and (max-width:735px){.bottom[data-v-2fa6f125]{margin-top:8px}}.hero[data-v-cb87b2d0]{color:var(--color-tutorial-hero-text);position:relative}.bg[data-v-cb87b2d0],.hero[data-v-cb87b2d0]{background-color:var(--color-tutorial-hero-background)}.bg[data-v-cb87b2d0]{background-position:top;background-repeat:no-repeat;background-size:cover;content:"";height:100%;left:0;opacity:.3;position:absolute;top:0;width:100%}.row[data-v-cb87b2d0]{margin-left:auto;margin-right:auto;width:980px;padding:80px 0}@media only screen and (max-width:1068px){.row[data-v-cb87b2d0]{width:692px}}@media only screen and (max-width:735px){.row[data-v-cb87b2d0]{width:87.5%}}.col[data-v-cb87b2d0]{z-index:1}[data-v-cb87b2d0] .eyebrow{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-hero-eyebrow)}@media only screen and (max-width:1068px){[data-v-cb87b2d0] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.headline[data-v-cb87b2d0]{font-size:2.82353rem;line-height:1.08333;font-weight:400;letter-spacing:-.003em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:2rem}@media only screen and (max-width:1068px){.headline[data-v-cb87b2d0]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.headline[data-v-cb87b2d0]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.intro[data-v-cb87b2d0]{font-size:1.23529rem;line-height:1.38095;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:735px){.intro[data-v-cb87b2d0]{font-size:1.11765rem;line-height:1.42105;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content+p[data-v-cb87b2d0]{margin-top:.8em}@media only screen and (max-width:735px){.content+p[data-v-cb87b2d0]{margin-top:8px}}.call-to-action[data-v-cb87b2d0]{display:flex;align-items:center}.call-to-action .cta-icon[data-v-cb87b2d0]{margin-left:.4rem;width:1em;height:1em}.metadata[data-v-cb87b2d0]{margin-top:2rem}.video-asset[data-v-cb87b2d0]{display:grid;height:100vh;margin:0;place-items:center center}.video-asset[data-v-cb87b2d0] video{max-width:1280px;min-width:320px;width:100%}@media only screen and (max-width:735px){.headline[data-v-cb87b2d0]{margin-bottom:19px}}.tutorial-hero[data-v-35a9482f]{margin-bottom:80px}@media only screen and (max-width:735px){.tutorial-hero[data-v-35a9482f]{margin-bottom:0}}.title[data-v-8ec95972]{font-size:.70588rem;line-height:1.33333;letter-spacing:-.01em;color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-8ec95972],.title[data-v-71da656d]{font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.title[data-v-71da656d]{font-size:1.11765rem;line-height:1.21053;letter-spacing:.012em;color:var(--colors-header-text,var(--color-header-text));margin:25px 0}.question-content[data-v-71da656d] code{font-size:.76471rem;line-height:1.84615;font-weight:400;letter-spacing:-.013em;font-family:Menlo,monospace}.choices[data-v-71da656d]{display:flex;flex-direction:column;padding:0;list-style:none;margin:25px 0}.choice[data-v-71da656d]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;flex:1;border-radius:4px;margin:8px 0;padding:1.5rem 40px;cursor:pointer;background:var(--colors-text-background,var(--color-text-background));display:flex;flex-direction:column;justify-content:center;border-width:1px;border-style:solid;border-color:var(--colors-grid,var(--color-grid));position:relative}.choice[data-v-71da656d] img{max-height:23.52941rem}.choice[data-v-71da656d]:first-of-type{margin-top:0}.choice[data-v-71da656d] code{font-size:.76471rem;line-height:1.84615;font-weight:400;letter-spacing:-.013em;font-family:Menlo,monospace}.controls[data-v-71da656d]{text-align:center;margin-bottom:40px}.controls .button-cta[data-v-71da656d]{margin:.5rem;margin-top:0;padding:.3rem 3rem;min-width:8rem}input[type=radio][data-v-71da656d]{position:absolute;width:100%;left:0;height:100%;opacity:0;z-index:-1}.active[data-v-71da656d]{border-color:var(--color-tutorial-quiz-border-active);box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.active [data-v-71da656d]{color:var(--colors-text,var(--color-text))}.correct[data-v-71da656d]{background:var(--color-form-valid-background);border-color:var(--color-form-valid)}.correct .choice-icon[data-v-71da656d]{fill:var(--color-form-valid)}.incorrect[data-v-71da656d]{background:var(--color-form-error-background);border-color:var(--color-form-error)}.incorrect .choice-icon[data-v-71da656d]{fill:var(--color-form-error)}.correct[data-v-71da656d],.incorrect[data-v-71da656d]{position:relative}.correct .choice-icon[data-v-71da656d],.incorrect .choice-icon[data-v-71da656d]{position:absolute;top:11px;left:10px;font-size:20px;width:1.05em}.disabled[data-v-71da656d]{pointer-events:none}.answer[data-v-71da656d]{margin:.5rem 1.5rem .5rem 0;font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.answer[data-v-71da656d]:last-of-type{margin-bottom:0}[data-v-71da656d] .question>.code-listing{padding:unset}[data-v-71da656d] pre{padding:0}[data-v-71da656d] img{display:block;margin-left:auto;margin-right:auto;max-width:100%}.title[data-v-6bd5c4e9]{font-size:1.88235rem;line-height:1.25;font-weight:400;letter-spacing:.004em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-header-text,var(--color-header-text))}@media only screen and (max-width:1068px){.title[data-v-6bd5c4e9]{font-size:1.64706rem;line-height:1.28571;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-6bd5c4e9]{font-size:1.41176rem;line-height:1.33333;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.title p[data-v-6bd5c4e9]{color:var(--colors-text,var(--color-text))}.assessments[data-v-6bd5c4e9]{box-sizing:content-box;padding:0 1rem;background:var(--color-tutorial-assessments-background);margin-left:auto;margin-right:auto;width:980px;margin-bottom:80px}@media only screen and (max-width:1068px){.assessments[data-v-6bd5c4e9]{width:692px}}@media only screen and (max-width:735px){.assessments[data-v-6bd5c4e9]{width:87.5%}}.banner[data-v-6bd5c4e9]{padding:40px 0;border-bottom:1px solid;margin-bottom:40px;border-color:var(--colors-grid,var(--color-grid));text-align:center}.success[data-v-6bd5c4e9]{text-align:center;padding-bottom:40px;font-size:1.88235rem;line-height:1.25;font-weight:400;letter-spacing:.004em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-text,var(--color-text))}@media only screen and (max-width:1068px){.success[data-v-6bd5c4e9]{font-size:1.64706rem;line-height:1.28571;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.success[data-v-6bd5c4e9]{font-size:1.41176rem;line-height:1.33333;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.assessments-wrapper[data-v-6bd5c4e9]{padding-top:80px}.assessments-wrapper[data-v-3c94366b]{padding-bottom:40px;padding-top:0}@media only screen and (max-width:735px){.assessments-wrapper[data-v-3c94366b]{padding-top:80px}}.article[data-v-5f5888a5]{background:var(--colors-article-background,var(--color-article-background))}@media only screen and (max-width:735px){.article[data-v-5f5888a5]{background:var(--colors-text-background,var(--color-article-body-background))}}.intro-container[data-v-54daa228]{margin-bottom:80px}.intro[data-v-54daa228]{display:flex;align-items:center}@media only screen and (max-width:735px){.intro[data-v-54daa228]{padding-bottom:0;flex-direction:column}}.intro.ide .media[data-v-54daa228] img{background-color:var(--colors-text-background,var(--color-text-background))}.col.left[data-v-54daa228]{padding-right:40px}@media only screen and (max-width:1068px){.col.left[data-v-54daa228]{padding-right:28px}}@media only screen and (max-width:735px){.col.left[data-v-54daa228]{margin-left:auto;margin-right:auto;width:980px;padding-right:0}}@media only screen and (max-width:735px) and (max-width:1068px){.col.left[data-v-54daa228]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.col.left[data-v-54daa228]{width:87.5%}}.col.right[data-v-54daa228]{padding-left:40px}@media only screen and (max-width:1068px){.col.right[data-v-54daa228]{padding-left:28px}}@media only screen and (max-width:735px){.col.right[data-v-54daa228]{padding-left:0}}.content[data-v-54daa228]{font-size:1rem;line-height:1.47059;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.media[data-v-54daa228] img{width:auto;max-height:560px;min-height:18.82353rem;-o-object-fit:scale-down;object-fit:scale-down}@media only screen and (max-width:735px){.media[data-v-54daa228]{margin:0;margin-top:3rem}.media[data-v-54daa228] img,.media[data-v-54daa228] video{max-height:80vh}}.media[data-v-54daa228] .asset{padding:0 20px}.headline[data-v-54daa228]{color:var(--colors-header-text,var(--color-header-text))}[data-v-54daa228] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:735px){[data-v-54daa228] .eyebrow{font-size:1.11765rem;line-height:1.21053;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-54daa228] .eyebrow a{color:inherit}[data-v-54daa228] .heading{font-size:1.88235rem;line-height:1.25;font-weight:400;letter-spacing:.004em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-54daa228] .heading{font-size:1.64706rem;line-height:1.28571;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-54daa228] .heading{font-size:1.41176rem;line-height:1.33333;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.expanded-intro[data-v-54daa228]{margin-left:auto;margin-right:auto;width:980px;margin-top:40px}@media only screen and (max-width:1068px){.expanded-intro[data-v-54daa228]{width:692px}}@media only screen and (max-width:735px){.expanded-intro[data-v-54daa228]{width:87.5%}}[data-v-54daa228] .cols-2{gap:20px 16.66667%}[data-v-54daa228] .cols-3 .column{gap:20px 12.5%}.code-preview[data-v-1890a2ba]{position:sticky;overflow-y:auto;-webkit-overflow-scrolling:touch;background-color:var(--background,var(--color-step-background));height:calc(100vh - 3.05882rem)}.code-preview.ide[data-v-1890a2ba]{height:100vh}.code-preview[data-v-1890a2ba] .code-listing{color:var(--text,var(--color-code-plain))}.code-preview[data-v-1890a2ba] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;letter-spacing:-.01em;font-family:Menlo,monospace}.header[data-v-1890a2ba]{font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;position:relative;display:flex;justify-content:space-between;align-items:center;width:-webkit-fill-available;width:-moz-available;width:stretch;cursor:pointer;font-weight:600;padding:8px 12px;border-radius:4px 4px 0 0;z-index:1;background:var(--color-runtime-preview-background);color:var(--colors-runtime-preview-text,var(--color-runtime-preview-text))}.header[data-v-1890a2ba]:focus{outline-style:none}#app.fromkeyboard .header[data-v-1890a2ba]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.runtime-preview[data-v-1890a2ba]{--color-runtime-preview-shadow:rgba(0,0,0,0.4);position:absolute;top:0;right:0;background:var(--color-runtime-preview-background);border-radius:4px;margin:1rem;margin-left:0;transition:width .2s ease-in,height .2s ease-in}@media screen{[data-color-scheme=dark] .runtime-preview[data-v-1890a2ba]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .runtime-preview[data-v-1890a2ba]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@supports not ((width:-webkit-fill-available) or (width:-moz-available) or (width:stretch)){.runtime-preview[data-v-1890a2ba]{display:flex;flex-direction:column}}.runtime-preview[data-v-1890a2ba]:before{box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow);border-radius:4px;content:"";position:absolute;top:0;right:0;left:0;bottom:0}@media screen{[data-color-scheme=dark] .runtime-preview[data-v-1890a2ba]:before{mix-blend-mode:difference}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .runtime-preview[data-v-1890a2ba]:before{mix-blend-mode:difference}}.runtime-preview-ide[data-v-1890a2ba]{top:0}.runtime-preview-ide .runtime-preview-asset[data-v-1890a2ba] img{background-color:var(--color-runtime-preview-background)}.runtime-preview.collapsed[data-v-1890a2ba]{box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow);width:102px;height:28px}.runtime-preview.collapsed .header[data-v-1890a2ba]{border-radius:4px}.runtime-preview.disabled[data-v-1890a2ba]{box-shadow:0 0 3px 0 transparent}.runtime-preview.disabled .header[data-v-1890a2ba]{color:var(--color-runtime-preview-disabled-text);cursor:auto}.runtime-preview-asset[data-v-1890a2ba]{border-radius:0 0 4px 4px}.runtime-preview-asset[data-v-1890a2ba] img{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.preview-icon[data-v-1890a2ba]{height:.8em;width:.8em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.preview-show[data-v-1890a2ba]{transform:scale(-1)}[data-v-5ad4e037] pre{padding:10px 0}.toggle-preview[data-v-d0709828]{color:var(--color-runtime-preview-disabled-text);display:flex;align-items:center}a[data-v-d0709828]{color:var(--url,var(--color-link))}.toggle-text[data-v-d0709828]{display:flex;align-items:center}svg.toggle-icon[data-v-d0709828]{width:1em;height:1em;margin-left:.5em}.mobile-code-preview[data-v-b130569c]{background-color:var(--background,var(--color-step-background));padding:14px 0}@media only screen and (max-width:735px){.mobile-code-preview[data-v-b130569c]{display:flex;flex-direction:column}}.runtime-preview-modal-content[data-v-b130569c]{padding:45px 60px 0 60px;min-width:200px}.runtime-preview-modal-content[data-v-b130569c] img:not(.file-icon){border-radius:4px;box-shadow:0 0 3px rgba(0,0,0,.4);min-height:320px;max-height:80vh;width:auto;display:block;margin-bottom:1rem}.runtime-preview-modal-content .runtime-preview-label[data-v-b130569c]{font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-runtime-preview-text);display:block;text-align:center;padding:.5em}[data-v-b130569c] .code-listing{color:var(--text,var(--color-code-plain))}[data-v-b130569c] .full-code-listing{padding-top:60px;min-height:calc(100vh - 60px)}[data-v-b130569c] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;letter-spacing:-.01em;font-family:Menlo,monospace}.preview-toggle-container[data-v-b130569c]{align-self:flex-end;margin-right:20px}.step-container[data-v-4abdd121]{margin:0}.step-container[data-v-4abdd121]:not(:last-child){margin-bottom:100px}@media only screen and (max-width:735px){.step-container[data-v-4abdd121]:not(:last-child){margin-bottom:80px}}.step[data-v-4abdd121]{position:relative;border-radius:4px;padding:1rem 2rem;background-color:var(--color-step-background);overflow:hidden;-webkit-mask-image:-webkit-radial-gradient(#fff,#000)}.step[data-v-4abdd121]:before{content:"";position:absolute;top:0;left:0;border:1px solid var(--color-step-focused);background-color:var(--color-step-focused);height:calc(100% - 2px);width:4px;opacity:0;transition:opacity .15s ease-in}.step.focused[data-v-4abdd121],.step[data-v-4abdd121]:focus{outline:none}.step.focused[data-v-4abdd121]:before,.step[data-v-4abdd121]:focus:before{opacity:1}@media only screen and (max-width:735px){.step[data-v-4abdd121]{padding-left:2rem}.step[data-v-4abdd121]:before{opacity:1}}.step-label[data-v-4abdd121]{font-size:.70588rem;line-height:1.33333;font-weight:600;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-text,var(--color-step-text));margin-bottom:.4em}.caption[data-v-4abdd121]{border-top:1px solid;border-color:var(--color-step-caption);padding:1rem 0 0 0;margin-top:1rem}.media-container[data-v-4abdd121]{display:none}@media only screen and (max-width:735px){.step[data-v-4abdd121]{margin:0 .58824rem 1.17647rem .58824rem}.step.focused[data-v-4abdd121],.step[data-v-4abdd121]:focus{outline:none}.media-container[data-v-4abdd121]{display:block;position:relative}.media-container[data-v-4abdd121] img,.media-container[data-v-4abdd121] video{max-height:80vh}[data-v-4abdd121] .asset{padding:0 20px}}.steps[data-v-25d30c2c]{position:relative;font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:flex;color:var(--colors-text,var(--color-text))}@media only screen and (max-width:735px){.steps[data-v-25d30c2c]{padding-top:80px}.steps[data-v-25d30c2c]:before{position:absolute;top:0;border-top:1px solid var(--color-fill-gray-tertiary);content:"";width:calc(100% - 2.35294rem);margin:0 1.17647rem}}.content-container[data-v-25d30c2c]{flex:none;margin-right:4.16667%;width:37.5%;margin-top:140px;margin-bottom:94vh}@media only screen and (max-width:735px){.content-container[data-v-25d30c2c]{margin-top:0;margin-bottom:0;height:100%;margin-left:0;margin-right:0;position:relative;width:100%}}.asset-container[data-v-25d30c2c]{flex:none;height:calc(100vh - 3.05882rem);background-color:var(--background,var(--color-step-background));max-width:921px;width:calc(50vw + 8.33333%);position:sticky;top:3.05882rem;transition:margin .1s ease-in-out}@media only screen and (max-width:767px){.asset-container[data-v-25d30c2c]{top:2.82353rem;height:calc(100vh - 2.82353rem)}}.asset-container[data-v-25d30c2c]:not(.for-step-code){overflow-y:auto;-webkit-overflow-scrolling:touch}.asset-container.ide[data-v-25d30c2c]{height:100vh;top:0}@media only screen and (min-width:736px){.asset-container[data-v-25d30c2c]{display:grid}.asset-container>[data-v-25d30c2c]{grid-row:1;grid-column:1;height:calc(100vh - 3.05882rem)}.asset-container.ide>[data-v-25d30c2c]{height:100vh}}.asset-container .step-asset[data-v-25d30c2c]{box-sizing:border-box;padding:0;padding-left:40px;min-height:320px;height:100%}.asset-container .step-asset[data-v-25d30c2c],.asset-container .step-asset[data-v-25d30c2c] picture{height:100%;display:flex;align-items:center}.asset-container .step-asset[data-v-25d30c2c] .video-replay-container{height:100%;display:flex;flex-direction:column;justify-content:center}.asset-container .step-asset[data-v-25d30c2c] img,.asset-container .step-asset[data-v-25d30c2c] video{width:auto;max-height:calc(100vh - 3.05882rem - 80px);max-width:531.6634px;margin:0}@media only screen and (max-width:1068px){.asset-container .step-asset[data-v-25d30c2c] img,.asset-container .step-asset[data-v-25d30c2c] video{max-width:363.66436px}}.asset-container .step-asset[data-v-25d30c2c] .video-replay-container,.asset-container .step-asset[data-v-25d30c2c] img{min-height:320px}.asset-container .step-asset[data-v-25d30c2c] .video-replay-container video{min-height:280px}@media only screen and (max-width:735px){.asset-container[data-v-25d30c2c]{display:none}}.asset-wrapper[data-v-25d30c2c]{width:63.2%;align-self:center;transition:transform .25s ease-out;will-change:transform}.asset-wrapper.ide .step-asset[data-v-25d30c2c] img{background-color:var(--background,var(--color-step-background))}[data-v-25d30c2c] .runtime-preview-asset{display:grid}[data-v-25d30c2c] .runtime-preview-asset>*{grid-row:1;grid-column:1}.interstitial[data-v-25d30c2c]{padding:0 2rem}.interstitial[data-v-25d30c2c]:not(:first-child){margin-top:5.88235rem}.interstitial[data-v-25d30c2c]:not(:last-child){margin-bottom:30px}@media only screen and (max-width:735px){.interstitial[data-v-25d30c2c]{margin-left:auto;margin-right:auto;width:980px;padding:0}}@media only screen and (max-width:735px) and (max-width:1068px){.interstitial[data-v-25d30c2c]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.interstitial[data-v-25d30c2c]{width:87.5%}}@media only screen and (max-width:735px){.interstitial[data-v-25d30c2c]:not(:first-child){margin-top:0}}.fade-enter-active[data-v-25d30c2c],.fade-leave-active[data-v-25d30c2c]{transition:opacity .3s ease-in-out}.fade-enter[data-v-25d30c2c],.fade-leave-to[data-v-25d30c2c]{opacity:0}.section[data-v-6b3a0b3a]{padding-top:80px}.sections[data-v-79a75e9e]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1068px){.sections[data-v-79a75e9e]{width:692px}}@media only screen and (max-width:735px){.sections[data-v-79a75e9e]{width:87.5%;margin:0;width:100%}}.tutorial[data-v-6e17d3d0]{background-color:var(--colors-text-background,var(--color-tutorial-background))} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/css/tutorials-overview.8754eb09.css b/JellyfinAPI.doccarchive/css/tutorials-overview.8754eb09.css new file mode 100644 index 000000000..5691d1b05 --- /dev/null +++ b/JellyfinAPI.doccarchive/css/tutorials-overview.8754eb09.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.replay-button[data-v-7335dbb2]{display:flex;align-items:center;justify-content:center;cursor:pointer;visibility:hidden;margin-top:.5rem;-webkit-tap-highlight-color:transparent}.replay-button.visible[data-v-7335dbb2]{visibility:visible}.replay-button svg.replay-icon[data-v-7335dbb2]{height:12px;width:12px;margin-left:.3em}[data-v-1b5cc854] img,[data-v-1b5cc854] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.hero[data-v-fc7f508c]{margin-left:auto;margin-right:auto;width:980px;padding-bottom:4.70588rem;padding-top:4.70588rem}@media only screen and (max-width:1068px){.hero[data-v-fc7f508c]{width:692px}}@media only screen and (max-width:735px){.hero[data-v-fc7f508c]{width:87.5%}}.copy-container[data-v-fc7f508c]{margin:0 auto;text-align:center;width:720px}.title[data-v-fc7f508c]{font-size:2.82353rem;line-height:1.08333;font-weight:400;letter-spacing:-.003em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content)}@media only screen and (max-width:1068px){.title[data-v-fc7f508c]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-fc7f508c]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-fc7f508c]{font-size:1.23529rem;line-height:1.38095;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content)}@media only screen and (max-width:735px){.content[data-v-fc7f508c]{font-size:1.11765rem;line-height:1.42105;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.meta[data-v-fc7f508c]{color:var(--color-tutorials-overview-content-alt);align-items:center;display:flex;justify-content:center}.meta-content[data-v-fc7f508c]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.meta .timer-icon[data-v-fc7f508c]{margin-right:.35294rem;height:.94118rem;width:.94118rem;fill:var(--color-tutorials-overview-icon)}@media only screen and (max-width:735px){.meta .timer-icon[data-v-fc7f508c]{margin-right:.29412rem;height:.82353rem;width:.82353rem}}.meta .time[data-v-fc7f508c]{font-size:1.11765rem;line-height:1.21053;font-weight:600;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:735px){.meta .time[data-v-fc7f508c]{font-size:1rem;line-height:1.11765;font-weight:600;letter-spacing:.019em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.title+.content[data-v-fc7f508c]{margin-top:1.47059rem}.content+.meta[data-v-fc7f508c]{margin-top:1.17647rem}.button-cta[data-v-fc7f508c]{margin-top:1.76471rem}*+.asset[data-v-fc7f508c]{margin-top:4.11765rem}@media only screen and (max-width:1068px){.copy-container[data-v-fc7f508c]{width:636px}}@media only screen and (max-width:735px){.hero[data-v-fc7f508c]{padding-bottom:1.76471rem;padding-top:2.35294rem}.copy-container[data-v-fc7f508c]{width:100%}.title+.content[data-v-fc7f508c]{margin-top:.88235rem}.button-cta[data-v-fc7f508c]{margin-top:1.41176rem}*+.asset[data-v-fc7f508c]{margin-top:2.23529rem}}.image[data-v-14577284]{margin-bottom:10px}.name[data-v-14577284]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#f0f0f0;word-break:break-word}@media only screen and (max-width:1068px){.name[data-v-14577284]{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.name[data-v-14577284]{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-14577284]{font-size:1rem;line-height:1.23529;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content-alt);margin-top:10px}.volume-name[data-v-14577284]{padding:50px 60px;text-align:center;background:#161616;margin:2px 0}@media only screen and (max-width:735px){.volume-name[data-v-14577284]{padding:40px 20px}}.document-icon[data-v-56114692]{margin-left:-3px}.tile[data-v-86db603a]{background:#161616;padding:40px 30px;color:var(--color-tutorials-overview-content-alt)}.content[data-v-86db603a] a,a[data-v-86db603a]{color:var(--colors-link,var(--color-tutorials-overview-link))}.icon[data-v-86db603a]{display:block;height:1.47059rem;line-height:1.47059rem;margin-bottom:.58824rem;width:1.47059rem}.icon[data-v-86db603a] svg.svg-icon{width:100%;max-height:100%;fill:var(--color-tutorials-overview-icon)}.icon[data-v-86db603a] svg.svg-icon .svg-icon-stroke{stroke:var(--color-tutorials-overview-content-alt)}.title[data-v-86db603a]{font-size:1.23529rem;line-height:1.19048;font-weight:600;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:.8em}.content[data-v-86db603a],.link[data-v-86db603a]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.content[data-v-86db603a]{color:var(--color-tutorials-overview-content-alt)}.link[data-v-86db603a]{display:block;margin-top:1.17647rem}.link .link-icon[data-v-86db603a]{margin-left:.2em;width:.6em;height:.6em}[data-v-86db603a] .content ul{list-style-type:none;margin-left:0;font-size:.82353rem;line-height:1.28571;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}[data-v-86db603a] .content ul li:before{content:"\200B";position:absolute}[data-v-86db603a] .content li+li{margin-top:8px}@media only screen and (max-width:735px){.tile[data-v-86db603a]{padding:1.76471rem 1.17647rem}}.tile-group[data-v-015f9f13]{display:grid;grid-column-gap:2px;grid-row-gap:2px}.tile-group.count-1[data-v-015f9f13]{grid-template-columns:1fr;text-align:center}.tile-group.count-1[data-v-015f9f13] .icon{margin-left:auto;margin-right:auto}.tile-group.count-2[data-v-015f9f13]{grid-template-columns:repeat(2,1fr)}.tile-group.count-3[data-v-015f9f13]{grid-template-columns:repeat(3,1fr)}.tile-group.count-4[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5[data-v-015f9f13]{grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5 .tile[data-v-015f9f13]{grid-column-end:span 2}.tile-group.count-5 .tile[data-v-015f9f13]:nth-of-type(-n+2){grid-column-end:span 3}.tile-group.count-6[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,auto)}@media only screen and (min-width:768px) and (max-width:1068px){.tile-group.tile-group[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}@media only screen and (max-width:735px){.tile-group.count-1[data-v-015f9f13],.tile-group.count-2[data-v-015f9f13],.tile-group.count-3[data-v-015f9f13],.tile-group.count-4[data-v-015f9f13],.tile-group.count-5[data-v-015f9f13],.tile-group.count-6[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}.title[data-v-49ba6f62]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#f0f0f0}@media only screen and (max-width:1068px){.title[data-v-49ba6f62]{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-49ba6f62]{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-49ba6f62]{font-size:1rem;line-height:1.23529;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#b0b0b0;margin-top:10px}.tutorials-navigation-link[data-v-6bb99205]{color:var(--color-tutorials-overview-navigation-link);transition:color .3s linear}.tutorials-navigation-link[data-v-6bb99205]:hover{text-decoration:none;transition:none;color:var(--color-tutorials-overview-navigation-link-hover)}.tutorials-navigation-link.active[data-v-6bb99205]{color:var(--color-tutorials-overview-navigation-link-active)}.tutorials-navigation-list[data-v-6f2800d1]{list-style-type:none;margin:0}.tutorials-navigation-list li+li[data-v-6f2800d1]:not(.volume--named){margin-top:24px}.tutorials-navigation-list .volume--named+.volume--named[data-v-6f2800d1]{margin-top:12px}.expand-enter-active,.expand-leave-active{transition:height .3s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.toggle[data-v-6513d652]{color:#f0f0f0;line-height:21px;display:flex;align-items:center;width:100%;font-weight:600;padding:6px 6px 6px 0;border-bottom:1px solid #2a2a2a;text-decoration:none;box-sizing:border-box}@media only screen and (max-width:767px){.toggle[data-v-6513d652]{padding-right:6px;border-bottom-color:hsla(0,0%,100%,.1)}}.toggle .text[data-v-6513d652]{word-break:break-word}.toggle[data-v-6513d652]:hover{text-decoration:none}.toggle .toggle-icon[data-v-6513d652]{display:inline-block;transition:transform .2s ease-in;height:.4em;width:.4em;margin-left:auto;margin-right:.2em}.collapsed .toggle .toggle-icon[data-v-6513d652]{transform:rotate(45deg)}.collapsed .toggle[data-v-6513d652],.collapsed .toggle[data-v-6513d652]:hover{color:#b0b0b0}.tutorials-navigation-menu-content[data-v-6513d652]{opacity:1;transition:height .2s ease-in,opacity .2s ease-in}.collapsed .tutorials-navigation-menu-content[data-v-6513d652]{height:0;opacity:0}.tutorials-navigation-menu-content .tutorials-navigation-list[data-v-6513d652]{padding:24px 0 12px 0}.tutorials-navigation[data-v-0cbd8adb]{font-size:1rem;line-height:1.23529;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.topic-list[data-v-9a8371c6]{list-style-type:none;margin:50px 0 0 0;position:relative}.topic-list li[data-v-9a8371c6]:before{content:"\200B";position:absolute}.topic-list[data-v-9a8371c6]:before{content:"";border-left:1px solid var(--color-fill-quaternary);display:block;height:calc(100% - .88235rem);left:.88235rem;position:absolute;top:50%;transform:translateY(-50%);width:0}.topic[data-v-9a8371c6]{font-size:1rem;line-height:1.47059;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:flex;align-items:flex-start}@media only screen and (max-width:735px){.topic[data-v-9a8371c6]{font-size:.82353rem;line-height:1.28571;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.topic+.topic[data-v-9a8371c6]{margin-top:.58824rem}.topic .topic-icon[data-v-9a8371c6]{background-color:var(--color-fill-quaternary);border-radius:50%;flex-shrink:0;height:1.76471rem;width:1.76471rem;margin-right:1.17647rem;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;padding:.47059rem;box-sizing:border-box;display:flex;justify-content:center;align-items:center}.topic .topic-icon svg[data-v-9a8371c6]{fill:var(--color-tutorials-overview-icon);max-width:100%;max-height:100%;width:100%}.container[data-v-9a8371c6]{align-items:baseline;display:flex;justify-content:space-between;width:100%;padding-top:.11765rem}.container[data-v-9a8371c6]:hover{text-decoration:none}.container:hover .link[data-v-9a8371c6]{text-decoration:underline}.timer-icon[data-v-9a8371c6]{margin-right:.29412rem;height:.70588rem;width:.70588rem;fill:var(--color-tutorials-overview-icon)}.time[data-v-9a8371c6]{font-size:.82353rem;line-height:1.28571;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content-alt);align-items:center;display:inline-flex}.link[data-v-9a8371c6]{padding-right:.58824rem;color:var(--colors-link,var(--color-tutorials-overview-link))}@media only screen and (min-width:768px) and (max-width:1068px){.topic-list[data-v-9a8371c6]{margin-top:2.35294rem}}@media only screen and (max-width:735px){.topic-list[data-v-9a8371c6]{margin-top:1.76471rem}.topic[data-v-9a8371c6]{height:auto;align-items:flex-start}.topic+.topic[data-v-9a8371c6]{margin-top:1.17647rem}.topic .topic-icon[data-v-9a8371c6]{top:.29412rem;margin-right:.76471rem}.container[data-v-9a8371c6]{flex-wrap:wrap;padding-top:0}.link[data-v-9a8371c6],.time[data-v-9a8371c6]{flex-basis:100%}.time[data-v-9a8371c6]{margin-top:.29412rem}}.chapter[data-v-1d13969f]:focus{outline:none!important}.info[data-v-1d13969f]{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.name[data-v-1d13969f]{font-size:1.23529rem;line-height:1.19048;font-weight:600;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#f0f0f0}.name-text[data-v-1d13969f]{word-break:break-word}.eyebrow[data-v-1d13969f]{font-size:1rem;line-height:1.23529;font-weight:400;letter-spacing:-.022em;color:var(--color-tutorials-overview-eyebrow);display:block;font-weight:600;margin-bottom:5px}.content[data-v-1d13969f],.eyebrow[data-v-1d13969f]{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.content[data-v-1d13969f]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;color:var(--color-tutorials-overview-content-alt)}.asset[data-v-1d13969f]{flex:0 0 190px}.intro[data-v-1d13969f]{flex:0 1 360px}@media only screen and (min-width:768px) and (max-width:1068px){.asset[data-v-1d13969f]{flex:0 0 130px}.intro[data-v-1d13969f]{flex:0 1 260px}}@media only screen and (max-width:767px){.intro[data-v-1d13969f]{flex:0 1 340px}}@media only screen and (max-width:735px){.info[data-v-1d13969f]{display:block;text-align:center}.asset[data-v-1d13969f]{margin:0 45px}.eyebrow[data-v-1d13969f]{margin-bottom:7px}.intro[data-v-1d13969f]{margin-top:40px}}.tile[data-v-2129f58c]{background:#161616;margin:2px 0;padding:50px 60px}.asset[data-v-2129f58c]{margin-bottom:10px}@media only screen and (min-width:768px) and (max-width:1068px){.tile[data-v-2129f58c]{padding:40px 30px}}@media only screen and (max-width:735px){.volume[data-v-2129f58c]{border-radius:0}.tile[data-v-2129f58c]{padding:40px 20px}}.learning-path[data-v-48bfa85c]{background:#000;padding:4.70588rem 0}.main-container[data-v-48bfa85c]{margin-left:auto;margin-right:auto;width:980px;align-items:stretch;display:flex;justify-content:space-between}@media only screen and (max-width:1068px){.main-container[data-v-48bfa85c]{width:692px}}@media only screen and (max-width:735px){.main-container[data-v-48bfa85c]{width:87.5%}}.ide .main-container[data-v-48bfa85c]{justify-content:center}.secondary-content-container[data-v-48bfa85c]{flex:0 0 200px;width:200px}.tutorials-navigation[data-v-48bfa85c]{position:sticky;top:7.76471rem}.primary-content-container[data-v-48bfa85c]{flex:0 1 720px;max-width:100%}.content-sections-container .content-section[data-v-48bfa85c]{border-radius:12px;overflow:hidden}.content-sections-container .content-section+.content-section[data-v-48bfa85c]{margin-top:1.17647rem}@media only screen and (min-width:768px) and (max-width:1068px){.learning-path[data-v-48bfa85c]{padding:2.35294rem 0}.primary-content-container[data-v-48bfa85c]{flex-basis:auto;margin-left:1.29412rem}.secondary-content-container[data-v-48bfa85c]{flex:0 0 180px;width:180px}}@media only screen and (max-width:767px){.secondary-content-container[data-v-48bfa85c]{display:none}}@media only screen and (max-width:735px){.content-sections-container .content-section[data-v-48bfa85c]{border-radius:0}.content-sections-container .content-section.volume[data-v-48bfa85c]{margin-top:1.17647rem}.learning-path[data-v-48bfa85c]{padding:0}.main-container[data-v-48bfa85c]{width:100%}}.nav-title-content[data-v-60ea3af8]{max-width:100%}.title[data-v-60ea3af8]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-60ea3af8]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-60ea3af8]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-60ea3af8]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-60ea3af8]{color:var(--color-nav-dark-root-subhead)}.tutorials-navigation[data-v-07700f98]{display:none}@media only screen and (max-width:767px){.tutorials-navigation[data-v-07700f98]{display:block}}.nav[data-v-07700f98] .nav-menu .nav-menu-items{padding:12px 0 44px 0}@media only screen and (min-width:768px){.nav[data-v-07700f98] .nav-menu .nav-menu-items{display:none}}@media only screen and (min-width:736px) and (max-width:1068px){.nav[data-v-07700f98] .nav-menu .nav-menu-items{padding-top:25px}}@media only screen and (min-width:320px) and (max-width:735px){.nav[data-v-07700f98] .nav-menu .nav-menu-items{padding-top:18px;padding-bottom:40px}}.tutorials-overview[data-v-0c0b1eea]{height:100%}.tutorials-overview .radial-gradient[data-v-0c0b1eea]{margin-top:-3.05882rem;padding-top:3.05882rem;background:var(--color-tutorials-overview-background)}@media only screen and (max-width:735px){.tutorials-overview .radial-gradient[data-v-0c0b1eea]{margin-top:-2.82353rem;padding-top:2.82353rem}}@-moz-document url-prefix(){.tutorials-overview .radial-gradient{background:#111!important}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi.json new file mode 100644 index 000000000..4911cdbe3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":""}],"kind":"symbol","metadata":{"roleHeading":"Framework","externalID":"JellyfinAPI","title":"JellyfinAPI","symbolKind":"module","role":"collection","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[[]]},"topicSections":[{"title":"Classes","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]},{"title":"Structures","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute"]},{"title":"Enumerations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto":{"role":"symbol","title":"RemoveFromPlaylistRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"abstract":[{"type":"text","text":"Class RemoveFromPlaylistRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions":{"role":"symbol","title":"DeviceOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}],"url":"\/documentation\/jellyfinapi\/deviceoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions":{"role":"symbol","title":"XbmcMetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XbmcMetadataOptions"}],"url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto":{"role":"symbol","title":"ForgotPasswordDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordDto"}],"abstract":[{"type":"text","text":"Forgot Password request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordDto"}],"url":"\/documentation\/jellyfinapi\/forgotpassworddto"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto":{"role":"symbol","title":"CreatePlaylistDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"abstract":[{"type":"text","text":"Create new playlist dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistDto"}],"url":"\/documentation\/jellyfinapi\/createplaylistdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions":{"role":"symbol","title":"BrandingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BrandingOptions"}],"abstract":[{"type":"text","text":"The branding options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BrandingOptions"}],"url":"\/documentation\/jellyfinapi\/brandingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto":{"role":"symbol","title":"SetShuffleModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetShuffleModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo":{"role":"symbol","title":"FileSystemEntryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}],"url":"\/documentation\/jellyfinapi\/filesystementryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL":{"role":"symbol","title":"MediaURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaURL"}],"url":"\/documentation\/jellyfinapi\/mediaurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto":{"role":"symbol","title":"UploadSubtitleDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"abstract":[{"type":"text","text":"Upload subtitles dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadSubtitleDto"}],"url":"\/documentation\/jellyfinapi\/uploadsubtitledto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto":{"role":"symbol","title":"BufferRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"abstract":[{"type":"text","text":"Class BufferRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BufferRequestDto"}],"url":"\/documentation\/jellyfinapi\/bufferrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo":{"role":"symbol","title":"TimerEventInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerEventInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerEventInfo"}],"url":"\/documentation\/jellyfinapi\/timereventinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName":{"role":"symbol","title":"AuthenticateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticateUserByName"}],"abstract":[{"type":"text","text":"The authenticate user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticateUserByName"}],"url":"\/documentation\/jellyfinapi\/authenticateuserbyname"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult":{"role":"symbol","title":"SearchHintResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHintResult"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHintResult"}],"url":"\/documentation\/jellyfinapi\/searchhintresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto":{"role":"symbol","title":"SetRepeatModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetRepeatModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile":{"role":"symbol","title":"DirectPlayProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}],"url":"\/documentation\/jellyfinapi\/directplayprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto":{"role":"symbol","title":"SetChannelMappingDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetChannelMappingDto"}],"abstract":[{"type":"text","text":"Set channel mapping dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetChannelMappingDto"}],"url":"\/documentation\/jellyfinapi\/setchannelmappingdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto":{"role":"symbol","title":"PlayRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequestDto"}],"abstract":[{"type":"text","text":"Class PlayRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequestDto"}],"url":"\/documentation\/jellyfinapi\/playrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating":{"role":"symbol","title":"ParentalRating","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"abstract":[{"type":"text","text":"Class ParentalRating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ParentalRating"}],"url":"\/documentation\/jellyfinapi\/parentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult":{"role":"symbol","title":"DeviceInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto":{"role":"symbol","title":"QueueRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueRequestDto"}],"abstract":[{"type":"text","text":"Class QueueRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueRequestDto"}],"url":"\/documentation\/jellyfinapi\/queuerequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand":{"role":"symbol","title":"GeneralCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommand"}],"url":"\/documentation\/jellyfinapi\/generalcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo":{"role":"symbol","title":"EndPointInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EndPointInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EndPointInfo"}],"url":"\/documentation\/jellyfinapi\/endpointinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult":{"role":"symbol","title":"ActivityLogEntryQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute":{"role":"symbol","title":"XmlAttribute","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XmlAttribute"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Dlna.XmlAttribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XmlAttribute"}],"url":"\/documentation\/jellyfinapi\/xmlattribute"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult":{"role":"symbol","title":"SeriesTimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto":{"role":"symbol","title":"GroupInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}],"url":"\/documentation\/jellyfinapi\/groupinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo":{"role":"symbol","title":"NotificationTypeInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}],"url":"\/documentation\/jellyfinapi\/notificationtypeinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto":{"role":"symbol","title":"StartupRemoteAccessDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupRemoteAccessDto"}],"abstract":[{"type":"text","text":"Startup remote access dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupRemoteAccessDto"}],"url":"\/documentation\/jellyfinapi\/startupremoteaccessdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile":{"role":"symbol","title":"FontFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"abstract":[{"type":"text","text":"Class FontFile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FontFile"}],"url":"\/documentation\/jellyfinapi\/fontfile"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto":{"role":"symbol","title":"NextItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NextItemRequestDto"}],"abstract":[{"type":"text","text":"Class NextItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NextItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/nextitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto":{"role":"symbol","title":"QuickConnectDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectDto"}],"abstract":[{"type":"text","text":"The quick connect request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectDto"}],"url":"\/documentation\/jellyfinapi\/quickconnectdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult":{"role":"symbol","title":"AuthenticationInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto":{"role":"symbol","title":"ValidatePathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ValidatePathDto"}],"abstract":[{"type":"text","text":"Validate path object."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ValidatePathDto"}],"url":"\/documentation\/jellyfinapi\/validatepathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery":{"role":"symbol","title":"SeriesInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile":{"role":"symbol","title":"LogFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogFile"}],"url":"\/documentation\/jellyfinapi\/logfile"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery":{"role":"symbol","title":"MusicVideoInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo":{"role":"symbol","title":"GuideInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GuideInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GuideInfo"}],"url":"\/documentation\/jellyfinapi\/guideinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto":{"role":"symbol","title":"AddVirtualFolderDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderDto"}],"abstract":[{"type":"text","text":"Add virtual folder dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderDto"}],"url":"\/documentation\/jellyfinapi\/addvirtualfolderdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse":{"role":"symbol","title":"ControlResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ControlResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ControlResponse"}],"url":"\/documentation\/jellyfinapi\/controlresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult":{"role":"symbol","title":"ForgotPasswordResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordResult"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL":{"role":"symbol","title":"ExternalURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalURL"}],"url":"\/documentation\/jellyfinapi\/externalurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult":{"role":"symbol","title":"PlaylistCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaylistCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaylistCreationResult"}],"url":"\/documentation\/jellyfinapi\/playlistcreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto":{"role":"symbol","title":"NewGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NewGroupRequestDto"}],"abstract":[{"type":"text","text":"Class NewGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NewGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/newgrouprequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse":{"role":"symbol","title":"UtcTimeResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UtcTimeResponse"}],"abstract":[{"type":"text","text":"Class UtcTimeResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UtcTimeResponse"}],"url":"\/documentation\/jellyfinapi\/utctimeresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand":{"role":"symbol","title":"SendCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"abstract":[{"type":"text","text":"Class SendCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommand"}],"url":"\/documentation\/jellyfinapi\/sendcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto":{"role":"symbol","title":"StartupUserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"abstract":[{"type":"text","text":"The startup user DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupUserDto"}],"url":"\/documentation\/jellyfinapi\/startupuserdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile":{"role":"symbol","title":"ContainerProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ContainerProfile"}],"url":"\/documentation\/jellyfinapi\/containerprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult":{"role":"symbol","title":"RemoteImageResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageResult"}],"abstract":[{"type":"text","text":"Class RemoteImageResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageResult"}],"url":"\/documentation\/jellyfinapi\/remoteimageresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions":{"role":"symbol","title":"NotificationOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOptions"}],"url":"\/documentation\/jellyfinapi\/notificationoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery":{"role":"symbol","title":"MovieInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto":{"role":"symbol","title":"ClientLogDocumentResponseDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"abstract":[{"type":"text","text":"Client log document response dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto":{"role":"symbol","title":"MediaUpdateInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoDto"}],"abstract":[{"type":"text","text":"Media Update Info Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration":{"role":"symbol","title":"MetadataConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataConfiguration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataConfiguration"}],"url":"\/documentation\/jellyfinapi\/metadataconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters":{"role":"symbol","title":"QueryFilters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFilters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFilters"}],"url":"\/documentation\/jellyfinapi\/queryfilters"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo":{"role":"symbol","title":"ImageProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageProviderInfo"}],"abstract":[{"type":"text","text":"Class ImageProviderInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageProviderInfo"}],"url":"\/documentation\/jellyfinapi\/imageproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto":{"role":"symbol","title":"RecommendationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationDto"}],"url":"\/documentation\/jellyfinapi\/recommendationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery":{"role":"symbol","title":"AlbumInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate":{"role":"symbol","title":"ObjectGroupUpdate","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ObjectGroupUpdate"}],"abstract":[{"type":"text","text":"Class GroupUpdate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ObjectGroupUpdate"}],"url":"\/documentation\/jellyfinapi\/objectgroupupdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword":{"role":"symbol","title":"UpdateUserEasyPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserEasyPassword"}],"abstract":[{"type":"text","text":"The update user easy password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserEasyPassword"}],"url":"\/documentation\/jellyfinapi\/updateusereasypassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto":{"role":"symbol","title":"MovePlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class MovePlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto":{"role":"symbol","title":"PingRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PingRequestDto"}],"abstract":[{"type":"text","text":"Class PingRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PingRequestDto"}],"url":"\/documentation\/jellyfinapi\/pingrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword":{"role":"symbol","title":"UpdateUserPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"abstract":[{"type":"text","text":"The update user password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserPassword"}],"url":"\/documentation\/jellyfinapi\/updateuserpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo":{"role":"symbol","title":"LiveTvInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvInfo"}],"url":"\/documentation\/jellyfinapi\/livetvinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto":{"role":"symbol","title":"JoinGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"JoinGroupRequestDto"}],"abstract":[{"type":"text","text":"Class JoinGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JoinGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/joingrouprequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto":{"role":"symbol","title":"SpecialViewOptionDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"abstract":[{"type":"text","text":"Special view option dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SpecialViewOptionDto"}],"url":"\/documentation\/jellyfinapi\/specialviewoptiondto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse":{"role":"symbol","title":"PlaybackInfoResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"abstract":[{"type":"text","text":"Class PlaybackInfoResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoResponse"}],"url":"\/documentation\/jellyfinapi\/playbackinforesponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery":{"role":"symbol","title":"BoxSetInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto":{"role":"symbol","title":"DefaultDirectoryBrowserInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"abstract":[{"type":"text","text":"Default directory browser info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo":{"role":"symbol","title":"DeviceProfileInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}],"url":"\/documentation\/jellyfinapi\/deviceprofileinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto":{"role":"symbol","title":"NotificationsSummaryDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationsSummaryDto"}],"abstract":[{"type":"text","text":"The notification summary DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationsSummaryDto"}],"url":"\/documentation\/jellyfinapi\/notificationssummarydto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand":{"role":"symbol","title":"MessageCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MessageCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MessageCommand"}],"url":"\/documentation\/jellyfinapi\/messagecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo":{"role":"symbol","title":"WakeOnLanInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"WakeOnLanInfo"}],"abstract":[{"type":"text","text":"Provides the MAC address and port for wake-on-LAN functionality."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"WakeOnLanInfo"}],"url":"\/documentation\/jellyfinapi\/wakeonlaninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto":{"role":"symbol","title":"SetPlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class SetPlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto":{"role":"symbol","title":"StartupConfigurationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"abstract":[{"type":"text","text":"The startup configuration DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupConfigurationDto"}],"url":"\/documentation\/jellyfinapi\/startupconfigurationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto":{"role":"symbol","title":"SeekRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeekRequestDto"}],"abstract":[{"type":"text","text":"Class SeekRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeekRequestDto"}],"url":"\/documentation\/jellyfinapi\/seekrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto":{"role":"symbol","title":"PreviousItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PreviousItemRequestDto"}],"abstract":[{"type":"text","text":"Class PreviousItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PreviousItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/previousitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto":{"role":"symbol","title":"MediaPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathDto"}],"abstract":[{"type":"text","text":"Media Path dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathDto"}],"url":"\/documentation\/jellyfinapi\/mediapathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy":{"role":"symbol","title":"QueryFiltersLegacy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFiltersLegacy"}],"url":"\/documentation\/jellyfinapi\/queryfilterslegacy"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult":{"role":"symbol","title":"AllThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AllThemeMediaResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AllThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/allthememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto":{"role":"symbol","title":"LibraryOptionsResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"abstract":[{"type":"text","text":"Library options result dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionsResultDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto":{"role":"symbol","title":"AdminNotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"abstract":[{"type":"text","text":"The admin notification dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AdminNotificationDto"}],"url":"\/documentation\/jellyfinapi\/adminnotificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption":{"role":"symbol","title":"LocalizationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocalizationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocalizationOption"}],"url":"\/documentation\/jellyfinapi\/localizationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo":{"role":"symbol","title":"SessionUserInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionUserInfo"}],"abstract":[{"type":"text","text":"Class SessionUserInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionUserInfo"}],"url":"\/documentation\/jellyfinapi\/sessionuserinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto":{"role":"symbol","title":"MediaEncoderPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaEncoderPathDto"}],"abstract":[{"type":"text","text":"Media Encoder Path Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaEncoderPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaencoderpathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult":{"role":"symbol","title":"CollectionCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionCreationResult"}],"url":"\/documentation\/jellyfinapi\/collectioncreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto":{"role":"symbol","title":"ForgotPasswordPinDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordPinDto"}],"abstract":[{"type":"text","text":"Forgot Password Pin enter request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordPinDto"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordpindto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto":{"role":"symbol","title":"DeviceOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}],"url":"\/documentation\/jellyfinapi\/deviceoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse":{"role":"symbol","title":"LiveStreamResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveStreamResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveStreamResponse"}],"url":"\/documentation\/jellyfinapi\/livestreamresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto":{"role":"symbol","title":"MediaUpdateInfoPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"abstract":[{"type":"text","text":"The media update info path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest":{"role":"symbol","title":"PlaystateRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateRequest"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateRequest"}],"url":"\/documentation\/jellyfinapi\/playstaterequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery":{"role":"symbol","title":"TrailerInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto":{"role":"symbol","title":"UpdateLibraryOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName":{"role":"symbol","title":"CreateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateUserByName"}],"abstract":[{"type":"text","text":"The create user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateUserByName"}],"url":"\/documentation\/jellyfinapi\/createuserbyname"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery":{"role":"symbol","title":"BookInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto":{"role":"symbol","title":"ChannelMappingOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"abstract":[{"type":"text","text":"Channel mapping options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult":{"role":"symbol","title":"TimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto":{"role":"symbol","title":"UpdateMediaPathRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution":{"role":"symbol","title":"PathSubstitution","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PathSubstitution"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Configuration.PathSubstitution."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PathSubstitution"}],"url":"\/documentation\/jellyfinapi\/pathsubstitution"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo":{"role":"symbol","title":"ServerDiscoveryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"abstract":[{"type":"text","text":"The server discovery info model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}],"url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery":{"role":"symbol","title":"ArtistInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"},"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto":{"role":"symbol","title":"IgnoreWaitRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"abstract":[{"type":"text","text":"Class IgnoreWaitRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto":{"role":"symbol","title":"NotificationResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationResultDto"}],"abstract":[{"type":"text","text":"A list of notifications with the total record count for pagination."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationResultDto"}],"url":"\/documentation\/jellyfinapi\/notificationresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult":{"role":"symbol","title":"PinRedeemResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PinRedeemResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PinRedeemResult"}],"url":"\/documentation\/jellyfinapi\/pinredeemresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo":{"role":"symbol","title":"HTTPHeaderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPHeaderInfo"}],"url":"\/documentation\/jellyfinapi\/httpheaderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery":{"role":"symbol","title":"PersonLookupInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto":{"role":"symbol","title":"ReadyRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"abstract":[{"type":"text","text":"Class ReadyRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ReadyRequestDto"}],"url":"\/documentation\/jellyfinapi\/readyrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule.json new file mode 100644 index 000000000..e86cdd200 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/accessschedule"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"title":"AccessSchedule","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14AccessScheduleV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/init(dayOfWeek:endHour:id:startHour:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/dayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/endHour","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/id-cm1n","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/startHour","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/userID"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the id of the associated user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/dayOfWeek":{"role":"symbol","title":"dayOfWeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DynamicDayOfWeek","preciseIdentifier":"s:11JellyfinAPI16DynamicDayOfWeekO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the day of week."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/dayOfWeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/init(dayOfWeek:endHour:id:startHour:userID:)":{"role":"symbol","title":"init(dayOfWeek:endHour:id:startHour:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DynamicDayOfWeek","preciseIdentifier":"s:11JellyfinAPI16DynamicDayOfWeekO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/init(dayOfWeek:endHour:id:startHour:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/init(dayofweek:endhour:id:starthour:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/id-cm1n":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the id of this instance."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/id-cm1n","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/id-cm1n"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/startHour":{"role":"symbol","title":"startHour","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start hour."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/startHour","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/starthour"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/endHour":{"role":"symbol","title":"endHour","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end hour."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/endHour","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/endhour"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/dayofweek.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/dayofweek.json new file mode 100644 index 000000000..804288697 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/dayofweek.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","preciseIdentifier":"s:11JellyfinAPI16DynamicDayOfWeekO","text":"DynamicDayOfWeek"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/accessschedule\/dayofweek"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/dayOfWeek","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the day of week."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DynamicDayOfWeek","preciseIdentifier":"s:11JellyfinAPI16DynamicDayOfWeekO"},{"kind":"text","text":"?"}],"title":"dayOfWeek","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14AccessScheduleV9dayOfWeekAA010DynamicDayfG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/dayOfWeek":{"role":"symbol","title":"dayOfWeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DynamicDayOfWeek","preciseIdentifier":"s:11JellyfinAPI16DynamicDayOfWeekO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the day of week."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/dayOfWeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/dayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/endhour.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/endhour.json new file mode 100644 index 000000000..454227079 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/endhour.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/accessschedule\/endhour"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/endHour","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the end hour."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"endHour","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14AccessScheduleV7endHourSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/endHour":{"role":"symbol","title":"endHour","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end hour."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/endHour","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/endhour"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/id-5q9x5.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/id-5q9x5.json new file mode 100644 index 000000000..2cc529376 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/id-5q9x5.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/accessschedule\/id-5q9x5"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/id-5q9x5","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI14AccessScheduleV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/id-5q9x5":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/id-5q9x5","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/id-5q9x5"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/id-cm1n.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/id-cm1n.json new file mode 100644 index 000000000..6bd3ba4e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/id-cm1n.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/accessschedule\/id-cm1n"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/id-cm1n","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the id of this instance."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14AccessScheduleV2ids5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/id-cm1n":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the id of this instance."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/id-cm1n","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/id-cm1n"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/identifiable-implementations.json new file mode 100644 index 000000000..0e10944ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/accessschedule\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/id-5q9x5"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/id-5q9x5":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/id-5q9x5","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/id-5q9x5"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/init(dayofweek:endhour:id:starthour:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/init(dayofweek:endhour:id:starthour:userid:).json new file mode 100644 index 000000000..df92cd06c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/init(dayofweek:endhour:id:starthour:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","preciseIdentifier":"s:11JellyfinAPI16DynamicDayOfWeekO","text":"DynamicDayOfWeek"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"endHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/accessschedule\/init(dayofweek:endhour:id:starthour:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/init(dayOfWeek:endHour:id:startHour:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DynamicDayOfWeek","preciseIdentifier":"s:11JellyfinAPI16DynamicDayOfWeekO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(dayOfWeek:endHour:id:startHour:userID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14AccessScheduleV9dayOfWeek7endHour2id05startI06userIDAcA010DynamicDayfG0OSg_SdSgs5Int32VSgAL10Foundation4UUIDVSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/init(dayOfWeek:endHour:id:startHour:userID:)":{"role":"symbol","title":"init(dayOfWeek:endHour:id:startHour:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DynamicDayOfWeek","preciseIdentifier":"s:11JellyfinAPI16DynamicDayOfWeekO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/init(dayOfWeek:endHour:id:startHour:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/init(dayofweek:endhour:id:starthour:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/init(from:).json new file mode 100644 index 000000000..909154cac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/accessschedule\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14AccessScheduleV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/starthour.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/starthour.json new file mode 100644 index 000000000..a800f14ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/starthour.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/accessschedule\/starthour"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/startHour","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start hour."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"startHour","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14AccessScheduleV9startHourSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/startHour":{"role":"symbol","title":"startHour","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startHour"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start hour."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/startHour","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/starthour"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/userid.json new file mode 100644 index 000000000..a85340197 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/accessschedule/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/accessschedule\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the id of the associated user."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14AccessScheduleV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the id of the associated user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/accessschedule\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry.json new file mode 100644 index 000000000..5172e412d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An activity log entry."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"title":"ActivityLogEntry","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16ActivityLogEntryV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/init(date:id:itemID:name:overview:severity:shortOverview:type:userID:userPrimaryImageTag:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/date","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/id-8q9qm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/overview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/severity","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/shortOverview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/userID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/userPrimaryImageTag"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/date":{"role":"symbol","title":"date","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/date","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/date"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the overview."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/init(date:id:itemID:name:overview:severity:shortOverview:type:userID:userPrimaryImageTag:)":{"role":"symbol","title":"init(date:id:itemID:name:overview:severity:shortOverview:type:userID:userPrimaryImageTag:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"severity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LogLevel","preciseIdentifier":"s:11JellyfinAPI8LogLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"shortOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/init(date:id:itemID:name:overview:severity:shortOverview:type:userID:userPrimaryImageTag:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/init(date:id:itemid:name:overview:severity:shortoverview:type:userid:userprimaryimagetag:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/name"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/shortOverview":{"role":"symbol","title":"shortOverview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shortOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the short overview."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/shortOverview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/shortoverview"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/userPrimaryImageTag":{"role":"symbol","title":"userPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/userPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/userprimaryimagetag"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/identifiable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/id-8q9qm":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/id-8q9qm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/id-8q9qm"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/severity":{"role":"symbol","title":"severity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"severity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LogLevel","preciseIdentifier":"s:11JellyfinAPI8LogLevelO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the log severity."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/severity","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/severity"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/date.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/date.json new file mode 100644 index 000000000..bc05e5a7d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/date.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/date"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/date","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"date","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ActivityLogEntryV4date10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/date":{"role":"symbol","title":"date","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/date","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/date"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/id-4zydd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/id-4zydd.json new file mode 100644 index 000000000..9584827ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/id-4zydd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/id-4zydd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/id-4zydd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI16ActivityLogEntryV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/id-4zydd":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/id-4zydd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/id-4zydd"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/id-8q9qm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/id-8q9qm.json new file mode 100644 index 000000000..e80636aa5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/id-8q9qm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/id-8q9qm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/id-8q9qm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ActivityLogEntryV2ids5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/id-8q9qm":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/id-8q9qm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/id-8q9qm"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/identifiable-implementations.json new file mode 100644 index 000000000..40dd6f639 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/id-4zydd"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/id-4zydd":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/id-4zydd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/id-4zydd"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/init(date:id:itemid:name:overview:severity:shortoverview:type:userid:userprimaryimagetag:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/init(date:id:itemid:name:overview:severity:shortoverview:type:userid:userprimaryimagetag:).json new file mode 100644 index 000000000..99f1a5b25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/init(date:id:itemid:name:overview:severity:shortoverview:type:userid:userprimaryimagetag:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"severity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","preciseIdentifier":"s:11JellyfinAPI8LogLevelO","text":"LogLevel"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"shortOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/init(date:id:itemid:name:overview:severity:shortoverview:type:userid:userprimaryimagetag:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/init(date:id:itemID:name:overview:severity:shortOverview:type:userID:userPrimaryImageTag:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"severity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LogLevel","preciseIdentifier":"s:11JellyfinAPI8LogLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"shortOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(date:id:itemID:name:overview:severity:shortOverview:type:userID:userPrimaryImageTag:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ActivityLogEntryV4date2id6itemID4name8overview8severity13shortOverview4type04userI00P15PrimaryImageTagAC10Foundation4DateVSg_s5Int64VSgSSSgA2uA0D5LevelOSgA2uN4UUIDVSgAUtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/init(date:id:itemID:name:overview:severity:shortOverview:type:userID:userPrimaryImageTag:)":{"role":"symbol","title":"init(date:id:itemID:name:overview:severity:shortOverview:type:userID:userPrimaryImageTag:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"severity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LogLevel","preciseIdentifier":"s:11JellyfinAPI8LogLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"shortOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/init(date:id:itemID:name:overview:severity:shortOverview:type:userID:userPrimaryImageTag:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/init(date:id:itemid:name:overview:severity:shortoverview:type:userid:userprimaryimagetag:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/init(from:).json new file mode 100644 index 000000000..49aec011b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ActivityLogEntryV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/itemid.json new file mode 100644 index 000000000..4b17302c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ActivityLogEntryV6itemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/name.json new file mode 100644 index 000000000..727858750 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ActivityLogEntryV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/overview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/overview.json new file mode 100644 index 000000000..7a3aee2a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/overview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/overview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/overview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the overview."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"overview","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ActivityLogEntryV8overviewSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the overview."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/severity.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/severity.json new file mode 100644 index 000000000..0d1e6be68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/severity.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"severity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","preciseIdentifier":"s:11JellyfinAPI8LogLevelO","text":"LogLevel"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/severity"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/severity","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the log severity."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"severity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LogLevel","preciseIdentifier":"s:11JellyfinAPI8LogLevelO"},{"kind":"text","text":"?"}],"title":"severity","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ActivityLogEntryV8severityAA0D5LevelOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/severity":{"role":"symbol","title":"severity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"severity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LogLevel","preciseIdentifier":"s:11JellyfinAPI8LogLevelO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the log severity."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/severity","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/severity"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/shortoverview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/shortoverview.json new file mode 100644 index 000000000..a8e3b8cd8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/shortoverview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shortOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/shortoverview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/shortOverview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the short overview."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shortOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"shortOverview","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ActivityLogEntryV13shortOverviewSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/shortOverview":{"role":"symbol","title":"shortOverview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shortOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the short overview."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/shortOverview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/shortoverview"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/type.json new file mode 100644 index 000000000..c437dc4ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ActivityLogEntryV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/type"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/userid.json new file mode 100644 index 000000000..5e8f4b556 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the user identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ActivityLogEntryV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/userprimaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/userprimaryimagetag.json new file mode 100644 index 000000000..1409e78f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentry/userprimaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"aside","style":"warning","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentry\/userprimaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/userPrimaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the user primary image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"userPrimaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ActivityLogEntryV19userPrimaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry/userPrimaryImageTag":{"role":"symbol","title":"userPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry\/userPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentry\/userprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult.json new file mode 100644 index 000000000..92189dd37 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentryqueryresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"title":"ActivityLogEntryQueryResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI27ActivityLogEntryQueryResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntryQueryResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/init(items:startIndex:totalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/items","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/totalRecordCount"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ActivityLogEntry","preciseIdentifier":"s:11JellyfinAPI16ActivityLogEntryV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult\/items"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ActivityLogEntry","preciseIdentifier":"s:11JellyfinAPI16ActivityLogEntryV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult":{"role":"symbol","title":"ActivityLogEntryQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult\/totalrecordcount"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/init(from:).json new file mode 100644 index 000000000..d3c8f2ac9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentryqueryresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI27ActivityLogEntryQueryResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult":{"role":"symbol","title":"ActivityLogEntryQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/init(items:startindex:totalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/init(items:startindex:totalrecordcount:).json new file mode 100644 index 000000000..95a42e0f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/init(items:startindex:totalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","preciseIdentifier":"s:11JellyfinAPI16ActivityLogEntryV","text":"ActivityLogEntry"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentryqueryresult\/init(items:startindex:totalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/init(items:startIndex:totalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ActivityLogEntry","preciseIdentifier":"s:11JellyfinAPI16ActivityLogEntryV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(items:startIndex:totalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI27ActivityLogEntryQueryResultV5items10startIndex16totalRecordCountACSayAA0cdE0VGSg_s5Int32VSgAMtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult":{"role":"symbol","title":"ActivityLogEntryQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ActivityLogEntry","preciseIdentifier":"s:11JellyfinAPI16ActivityLogEntryV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult\/init(items:startindex:totalrecordcount:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/items.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/items.json new file mode 100644 index 000000000..1100b32f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/items.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","preciseIdentifier":"s:11JellyfinAPI16ActivityLogEntryV","text":"ActivityLogEntry"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentryqueryresult\/items"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/items","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ActivityLogEntry","preciseIdentifier":"s:11JellyfinAPI16ActivityLogEntryV"},{"kind":"text","text":"]?"}],"title":"items","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27ActivityLogEntryQueryResultV5itemsSayAA0cdE0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult":{"role":"symbol","title":"ActivityLogEntryQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntry":{"role":"symbol","title":"ActivityLogEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntry"}],"abstract":[{"type":"text","text":"An activity log entry."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntry"}],"url":"\/documentation\/jellyfinapi\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ActivityLogEntry","preciseIdentifier":"s:11JellyfinAPI16ActivityLogEntryV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult\/items"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/startindex.json new file mode 100644 index 000000000..412129fab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentryqueryresult\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27ActivityLogEntryQueryResultV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult":{"role":"symbol","title":"ActivityLogEntryQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/totalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/totalrecordcount.json new file mode 100644 index 000000000..d6a2e1abf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/activitylogentryqueryresult/totalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/activitylogentryqueryresult\/totalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/totalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"totalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27ActivityLogEntryQueryResultV16totalRecordCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult":{"role":"symbol","title":"ActivityLogEntryQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto.json new file mode 100644 index 000000000..2f17d43fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/addvirtualfolderdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Add virtual folder dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderDto"}],"title":"AddVirtualFolderDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI19AddVirtualFolderDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/init(libraryOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/libraryOptions"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/addvirtualfolderdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto":{"role":"symbol","title":"AddVirtualFolderDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderDto"}],"abstract":[{"type":"text","text":"Add virtual folder dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderDto"}],"url":"\/documentation\/jellyfinapi\/addvirtualfolderdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto/init(libraryOptions:)":{"role":"symbol","title":"init(libraryOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/init(libraryOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/addvirtualfolderdto\/init(libraryoptions:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto/libraryOptions":{"role":"symbol","title":"libraryOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets library options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/libraryOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/addvirtualfolderdto\/libraryoptions"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto/init(from:).json new file mode 100644 index 000000000..d8a4847c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/addvirtualfolderdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19AddVirtualFolderDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/addvirtualfolderdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto":{"role":"symbol","title":"AddVirtualFolderDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderDto"}],"abstract":[{"type":"text","text":"Add virtual folder dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderDto"}],"url":"\/documentation\/jellyfinapi\/addvirtualfolderdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto/init(libraryoptions:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto/init(libraryoptions:).json new file mode 100644 index 000000000..6bd18fdcf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto/init(libraryoptions:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV","text":"LibraryOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/addvirtualfolderdto\/init(libraryoptions:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/init(libraryOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?)"}],"title":"init(libraryOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19AddVirtualFolderDtoV14libraryOptionsAcA07LibraryH0VSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto/init(libraryOptions:)":{"role":"symbol","title":"init(libraryOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/init(libraryOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/addvirtualfolderdto\/init(libraryoptions:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto":{"role":"symbol","title":"AddVirtualFolderDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderDto"}],"abstract":[{"type":"text","text":"Add virtual folder dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderDto"}],"url":"\/documentation\/jellyfinapi\/addvirtualfolderdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto/libraryoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto/libraryoptions.json new file mode 100644 index 000000000..c6b022ec7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/addvirtualfolderdto/libraryoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV","text":"LibraryOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/addvirtualfolderdto\/libraryoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/libraryOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets library options."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?"}],"title":"libraryOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19AddVirtualFolderDtoV14libraryOptionsAA07LibraryH0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto/libraryOptions":{"role":"symbol","title":"libraryOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets library options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto\/libraryOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/addvirtualfolderdto\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto":{"role":"symbol","title":"AddVirtualFolderDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderDto"}],"abstract":[{"type":"text","text":"Add virtual folder dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderDto"}],"url":"\/documentation\/jellyfinapi\/addvirtualfolderdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto.json new file mode 100644 index 000000000..f4593a207 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/adminnotificationdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The admin notification dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"title":"AdminNotificationDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20AdminNotificationDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AdminNotificationDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/init(description:name:notificationLevel:url:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/description","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/notificationLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/url"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto":{"role":"symbol","title":"AdminNotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"abstract":[{"type":"text","text":"The admin notification dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AdminNotificationDto"}],"url":"\/documentation\/jellyfinapi\/adminnotificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification description."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/description"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/notificationLevel":{"role":"symbol","title":"notificationLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"notificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/notificationLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/notificationlevel"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/init(description:name:notificationLevel:url:)":{"role":"symbol","title":"init(description:name:notificationLevel:url:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"notificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/init(description:name:notificationLevel:url:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/init(description:name:notificationlevel:url:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification url."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/description.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/description.json new file mode 100644 index 000000000..828392def --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/description.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/adminnotificationdto\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification description."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20AdminNotificationDtoV11descriptionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto":{"role":"symbol","title":"AdminNotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"abstract":[{"type":"text","text":"The admin notification dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AdminNotificationDto"}],"url":"\/documentation\/jellyfinapi\/adminnotificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification description."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/description"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/init(description:name:notificationlevel:url:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/init(description:name:notificationlevel:url:).json new file mode 100644 index 000000000..350b5e7bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/init(description:name:notificationlevel:url:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"notificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO","text":"NotificationLevel"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/adminnotificationdto\/init(description:name:notificationlevel:url:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/init(description:name:notificationLevel:url:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"notificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(description:name:notificationLevel:url:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20AdminNotificationDtoV11description4name17notificationLevel3urlACSSSg_AhA0dI0OSgAHtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/init(description:name:notificationLevel:url:)":{"role":"symbol","title":"init(description:name:notificationLevel:url:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"notificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/init(description:name:notificationLevel:url:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/init(description:name:notificationlevel:url:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto":{"role":"symbol","title":"AdminNotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"abstract":[{"type":"text","text":"The admin notification dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AdminNotificationDto"}],"url":"\/documentation\/jellyfinapi\/adminnotificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/init(from:).json new file mode 100644 index 000000000..63cec529d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/adminnotificationdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20AdminNotificationDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto":{"role":"symbol","title":"AdminNotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"abstract":[{"type":"text","text":"The admin notification dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AdminNotificationDto"}],"url":"\/documentation\/jellyfinapi\/adminnotificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/name.json new file mode 100644 index 000000000..9d9797c89 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/adminnotificationdto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20AdminNotificationDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto":{"role":"symbol","title":"AdminNotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"abstract":[{"type":"text","text":"The admin notification dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AdminNotificationDto"}],"url":"\/documentation\/jellyfinapi\/adminnotificationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/notificationlevel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/notificationlevel.json new file mode 100644 index 000000000..85b1a8f4e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/notificationlevel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"notificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO","text":"NotificationLevel"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/adminnotificationdto\/notificationlevel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/notificationLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification level."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"notificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?"}],"title":"notificationLevel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20AdminNotificationDtoV17notificationLevelAA0dG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/notificationLevel":{"role":"symbol","title":"notificationLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"notificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/notificationLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto":{"role":"symbol","title":"AdminNotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"abstract":[{"type":"text","text":"The admin notification dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AdminNotificationDto"}],"url":"\/documentation\/jellyfinapi\/adminnotificationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/url.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/url.json new file mode 100644 index 000000000..2b69ecff4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/adminnotificationdto/url.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/adminnotificationdto\/url"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/url","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification url."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"url","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20AdminNotificationDtoV3urlSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto":{"role":"symbol","title":"AdminNotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"abstract":[{"type":"text","text":"The admin notification dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AdminNotificationDto"}],"url":"\/documentation\/jellyfinapi\/adminnotificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification url."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/adminnotificationdto\/url"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo.json new file mode 100644 index 000000000..5c5350e33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"title":"AlbumInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI9AlbumInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/init(albumArtists:artistProviderIDs:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/albumArtists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/artistProviderIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/isAutomated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/metadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/songInfos","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/year"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/init(albumArtists:artistProviderIDs:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)":{"role":"symbol","title":"init(albumArtists:artistProviderIDs:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistProviderIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/init(albumArtists:artistProviderIDs:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/init(albumartists:artistproviderids:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/albumArtists":{"role":"symbol","title":"albumArtists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the album artist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/albumArtists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/albumartists"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/artistProviderIDs":{"role":"symbol","title":"artistProviderIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistProviderIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the artist provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/artistProviderIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/artistproviderids"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/songInfos":{"role":"symbol","title":"songInfos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/songInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/songinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/year"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/premieredate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/albumartists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/albumartists.json new file mode 100644 index 000000000..c2c6bac88 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/albumartists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/albumartists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/albumArtists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the album artist."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"albumArtists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV12albumArtistsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/albumArtists":{"role":"symbol","title":"albumArtists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the album artist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/albumArtists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/albumartists"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/artistproviderids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/artistproviderids.json new file mode 100644 index 000000000..c35607bc4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/artistproviderids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistProviderIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/artistproviderids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/artistProviderIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the artist provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistProviderIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"artistProviderIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV17artistProviderIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/artistProviderIDs":{"role":"symbol","title":"artistProviderIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistProviderIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the artist provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/artistProviderIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/artistproviderids"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/indexnumber.json new file mode 100644 index 000000000..d31ac43f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/init(albumartists:artistproviderids:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/init(albumartists:artistproviderids:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:).json new file mode 100644 index 000000000..1d71db732 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/init(albumartists:artistproviderids:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"artistProviderIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV","text":"SongInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/init(albumartists:artistproviderids:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/init(albumArtists:artistProviderIDs:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistProviderIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(albumArtists:artistProviderIDs:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9AlbumInfoV12albumArtists17artistProviderIDs11indexNumber11isAutomated19metadataCountryCode0N8Language4name13originalTitle011parentIndexK04path12premiereDate08providerI09songInfos4yearACSaySSGSg_SDyS2SGSgs5Int32VSgSbSgSSSgA3zxZ10Foundation0Y0VSgAUSayAA04SongD0VGSgAXtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/init(albumArtists:artistProviderIDs:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)":{"role":"symbol","title":"init(albumArtists:artistProviderIDs:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistProviderIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/init(albumArtists:artistProviderIDs:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/init(albumartists:artistproviderids:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/init(from:).json new file mode 100644 index 000000000..b271033aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9AlbumInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/isautomated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/isautomated.json new file mode 100644 index 000000000..f6aa915de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/isautomated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/isautomated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/isAutomated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV11isAutomatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/metadatacountrycode.json new file mode 100644 index 000000000..eca3dd998 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/metadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/metadatalanguage.json new file mode 100644 index 000000000..5bf829c99 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/metadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/metadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/metadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV16metadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/name.json new file mode 100644 index 000000000..e0ddb9365 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/originaltitle.json new file mode 100644 index 000000000..f6a78c246 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the original title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/parentindexnumber.json new file mode 100644 index 000000000..14fa4fd56 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/parentindexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/path.json new file mode 100644 index 000000000..5e5a43457 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/premieredate.json new file mode 100644 index 000000000..6f62d883c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV12premiereDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/providerids.json new file mode 100644 index 000000000..5ef399105 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/songinfos.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/songinfos.json new file mode 100644 index 000000000..9c2909ede --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/songinfos.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV","text":"SongInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/songinfos"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/songInfos","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?"}],"title":"songInfos","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV9songInfosSayAA04SongD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/songInfos":{"role":"symbol","title":"songInfos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/songInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/songinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/year.json new file mode 100644 index 000000000..8831f466c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminfo/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminfo\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"year","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9AlbumInfoV4years5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery.json new file mode 100644 index 000000000..b34e35083 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminforemotesearchquery"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"title":"AlbumInfoRemoteSearchQuery","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/isIncludeDisabledProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/searchInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/searchProviderName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery":{"role":"symbol","title":"AlbumInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AlbumInfo","preciseIdentifier":"s:11JellyfinAPI9AlbumInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AlbumInfo","preciseIdentifier":"s:11JellyfinAPI9AlbumInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/isincludedisabledproviders"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/init(from:).json new file mode 100644 index 000000000..391b00e76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminforemotesearchquery\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery":{"role":"symbol","title":"AlbumInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json new file mode 100644 index 000000000..42dab5398 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","preciseIdentifier":"s:11JellyfinAPI9AlbumInfoV","text":"AlbumInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AlbumInfo","preciseIdentifier":"s:11JellyfinAPI9AlbumInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV26isIncludeDisabledProviders6itemID06searchD00N12ProviderNameACSbSg_10Foundation4UUIDVSgAA0cD0VSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery":{"role":"symbol","title":"AlbumInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AlbumInfo","preciseIdentifier":"s:11JellyfinAPI9AlbumInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/isincludedisabledproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/isincludedisabledproviders.json new file mode 100644 index 000000000..cfa184c50 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/isincludedisabledproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminforemotesearchquery\/isincludedisabledproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/isIncludeDisabledProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeDisabledProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV26isIncludeDisabledProvidersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery":{"role":"symbol","title":"AlbumInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/isincludedisabledproviders"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/itemid.json new file mode 100644 index 000000000..e46d4bb7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminforemotesearchquery\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery":{"role":"symbol","title":"AlbumInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/searchinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/searchinfo.json new file mode 100644 index 000000000..eaeb25484 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/searchinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","preciseIdentifier":"s:11JellyfinAPI9AlbumInfoV","text":"AlbumInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminforemotesearchquery\/searchinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/searchInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AlbumInfo","preciseIdentifier":"s:11JellyfinAPI9AlbumInfoV"},{"kind":"text","text":"?"}],"title":"searchInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV06searchD0AA0cD0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AlbumInfo","preciseIdentifier":"s:11JellyfinAPI9AlbumInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfo":{"role":"symbol","title":"AlbumInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfo"}],"url":"\/documentation\/jellyfinapi\/albuminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery":{"role":"symbol","title":"AlbumInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/searchprovidername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/searchprovidername.json new file mode 100644 index 000000000..fe249d810 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/albuminforemotesearchquery/searchprovidername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/albuminforemotesearchquery\/searchprovidername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/searchProviderName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchProviderName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV18searchProviderNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery":{"role":"symbol","title":"AlbumInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery\/searchprovidername"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult.json new file mode 100644 index 000000000..f775a0835 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AllThemeMediaResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/allthememediaresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AllThemeMediaResult"}],"title":"AllThemeMediaResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI19AllThemeMediaResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AllThemeMediaResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/init(soundtrackSongsResult:themeSongsResult:themeVideosResult:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/soundtrackSongsResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/themeSongsResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/themeVideosResult"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult":{"role":"symbol","title":"AllThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AllThemeMediaResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AllThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/allthememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult/soundtrackSongsResult":{"role":"symbol","title":"soundtrackSongsResult","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"soundtrackSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/soundtrackSongsResult","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/allthememediaresult\/soundtracksongsresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult/themeVideosResult":{"role":"symbol","title":"themeVideosResult","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeVideosResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/themeVideosResult","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/allthememediaresult\/themevideosresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult/init(soundtrackSongsResult:themeSongsResult:themeVideosResult:)":{"role":"symbol","title":"init(soundtrackSongsResult:themeSongsResult:themeVideosResult:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"soundtrackSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"themeSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"themeVideosResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/init(soundtrackSongsResult:themeSongsResult:themeVideosResult:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/allthememediaresult\/init(soundtracksongsresult:themesongsresult:themevideosresult:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/allthememediaresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult/themeSongsResult":{"role":"symbol","title":"themeSongsResult","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/themeSongsResult","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/allthememediaresult\/themesongsresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/init(from:).json new file mode 100644 index 000000000..a264c00ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/allthememediaresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19AllThemeMediaResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/allthememediaresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult":{"role":"symbol","title":"AllThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AllThemeMediaResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AllThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/allthememediaresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/init(soundtracksongsresult:themesongsresult:themevideosresult:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/init(soundtracksongsresult:themesongsresult:themevideosresult:).json new file mode 100644 index 000000000..9885782cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/init(soundtracksongsresult:themesongsresult:themevideosresult:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"soundtrackSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV","text":"ThemeMediaResult"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"themeSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV","text":"ThemeMediaResult"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"themeVideosResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV","text":"ThemeMediaResult"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/allthememediaresult\/init(soundtracksongsresult:themesongsresult:themevideosresult:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/init(soundtrackSongsResult:themeSongsResult:themeVideosResult:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"soundtrackSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"themeSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"themeVideosResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?)"}],"title":"init(soundtrackSongsResult:themeSongsResult:themeVideosResult:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19AllThemeMediaResultV015soundtrackSongsF005themehF00i6VideosF0AcA0deF0VSg_A2Itcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult":{"role":"symbol","title":"AllThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AllThemeMediaResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AllThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/allthememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult/init(soundtrackSongsResult:themeSongsResult:themeVideosResult:)":{"role":"symbol","title":"init(soundtrackSongsResult:themeSongsResult:themeVideosResult:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"soundtrackSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"themeSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"themeVideosResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/init(soundtrackSongsResult:themeSongsResult:themeVideosResult:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/allthememediaresult\/init(soundtracksongsresult:themesongsresult:themevideosresult:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/soundtracksongsresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/soundtracksongsresult.json new file mode 100644 index 000000000..e9a8d998e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/soundtracksongsresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"soundtrackSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV","text":"ThemeMediaResult"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/allthememediaresult\/soundtracksongsresult"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/soundtrackSongsResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"soundtrackSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?"}],"title":"soundtrackSongsResult","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19AllThemeMediaResultV015soundtrackSongsF0AA0deF0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult/soundtrackSongsResult":{"role":"symbol","title":"soundtrackSongsResult","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"soundtrackSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/soundtrackSongsResult","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/allthememediaresult\/soundtracksongsresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult":{"role":"symbol","title":"AllThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AllThemeMediaResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AllThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/allthememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/themesongsresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/themesongsresult.json new file mode 100644 index 000000000..d19f7afbf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/themesongsresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV","text":"ThemeMediaResult"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/allthememediaresult\/themesongsresult"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/themeSongsResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?"}],"title":"themeSongsResult","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19AllThemeMediaResultV010themeSongsF0AA0deF0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult":{"role":"symbol","title":"AllThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AllThemeMediaResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AllThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/allthememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult/themeSongsResult":{"role":"symbol","title":"themeSongsResult","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeSongsResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/themeSongsResult","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/allthememediaresult\/themesongsresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/themevideosresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/themevideosresult.json new file mode 100644 index 000000000..948da2736 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/allthememediaresult/themevideosresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeVideosResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV","text":"ThemeMediaResult"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/allthememediaresult\/themevideosresult"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/themeVideosResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeVideosResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?"}],"title":"themeVideosResult","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19AllThemeMediaResultV011themeVideosF0AA0deF0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult/themeVideosResult":{"role":"symbol","title":"themeVideosResult","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeVideosResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ThemeMediaResult","preciseIdentifier":"s:11JellyfinAPI16ThemeMediaResultV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult\/themeVideosResult","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/allthememediaresult\/themevideosresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult":{"role":"symbol","title":"AllThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AllThemeMediaResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AllThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/allthememediaresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson.json new file mode 100644 index 000000000..aa941a282 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/anyjson"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"title":"AnyJSON","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI7AnyJSONO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/array(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/bool(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/number(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/object(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/string(_:)"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/init(from:)"]},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/encode(to:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/Equatable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/encode(to:)":{"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/bool(_:)":{"role":"symbol","title":"AnyJSON.bool(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bool"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/bool(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/bool(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/number(_:)":{"role":"symbol","title":"AnyJSON.number(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"number"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/number(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/number(_:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/string(_:)":{"role":"symbol","title":"AnyJSON.string(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"string"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/string(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/string(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/object(_:)":{"role":"symbol","title":"AnyJSON.object(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"object"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/object(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/object(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/array(_:)":{"role":"symbol","title":"AnyJSON.array(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"array"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/array(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/array(_:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/!=(_:_:).json new file mode 100644 index 000000000..2d59a5838 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/anyjson\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI7AnyJSONO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/array(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/array(_:).json new file mode 100644 index 000000000..6f64d36f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/array(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"array"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO","text":"AnyJSON"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/anyjson\/array(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/array(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"array"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"])"}],"title":"AnyJSON.array(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI7AnyJSONO5arrayyACSayACGcACmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/array(_:)":{"role":"symbol","title":"AnyJSON.array(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"array"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/array(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/array(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/bool(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/bool(_:).json new file mode 100644 index 000000000..8d1fef5a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/bool(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bool"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/anyjson\/bool(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/bool(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bool"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"title":"AnyJSON.bool(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI7AnyJSONO4boolyACSbcACmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/bool(_:)":{"role":"symbol","title":"AnyJSON.bool(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bool"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/bool(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/bool(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/encode(to:).json new file mode 100644 index 000000000..72329e403 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/anyjson\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Encodable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"encode(to:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:11JellyfinAPI7AnyJSONO6encode2toys7Encoder_p_tKF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/encode(to:)":{"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/equatable-implementations.json new file mode 100644 index 000000000..66f3a8526 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/anyjson\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/init(from:).json new file mode 100644 index 000000000..3e2be5ffa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/anyjson\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI7AnyJSONO4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/number(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/number(_:).json new file mode 100644 index 000000000..7c335ee11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/number(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"number"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/anyjson\/number(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/number(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"number"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"title":"AnyJSON.number(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI7AnyJSONO6numberyACSdcACmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/number(_:)":{"role":"symbol","title":"AnyJSON.number(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"number"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/number(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/number(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/object(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/object(_:).json new file mode 100644 index 000000000..2a330bd2e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/object(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"object"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO","text":"AnyJSON"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/anyjson\/object(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/object(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"object"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"])"}],"title":"AnyJSON.object(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI7AnyJSONO6objectyACSDySSACGcACmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/object(_:)":{"role":"symbol","title":"AnyJSON.object(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"object"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/object(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/object(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/string(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/string(_:).json new file mode 100644 index 000000000..a4622094e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/anyjson/string(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"string"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/anyjson\/string(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/string(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"string"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"AnyJSON.string(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI7AnyJSONO6stringyACSScACmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON/string(_:)":{"role":"symbol","title":"AnyJSON.string(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"string"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON\/string(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/anyjson\/string(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture.json new file mode 100644 index 000000000..4341479b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"title":"Architecture","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI12ArchitectureO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Architecture"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/arm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/arm64","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/s390x","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/wasm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/x64","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/x86"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/init(rawvalue:)"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/arm64":{"role":"symbol","title":"Architecture.arm64","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"arm64"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/arm64","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/arm64"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/x64":{"role":"symbol","title":"Architecture.x64","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"x64"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/x64","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/x64"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/x86":{"role":"symbol","title":"Architecture.x86","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"x86"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/x86","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/x86"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/s390x":{"role":"symbol","title":"Architecture.s390x","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"s390x"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/s390x","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/s390x"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/arm":{"role":"symbol","title":"Architecture.arm","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"arm"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/arm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/arm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/wasm":{"role":"symbol","title":"Architecture.wasm","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wasm"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/wasm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/wasm"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/!=(_:_:).json new file mode 100644 index 000000000..ac73f0be8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI12ArchitectureO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/arm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/arm.json new file mode 100644 index 000000000..30d8ef096 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/arm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"arm"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/arm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/arm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"arm"}],"title":"Architecture.arm","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ArchitectureO3armyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/arm":{"role":"symbol","title":"Architecture.arm","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"arm"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/arm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/arm"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/arm64.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/arm64.json new file mode 100644 index 000000000..73a0601c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/arm64.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"arm64"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/arm64"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/arm64","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"arm64"}],"title":"Architecture.arm64","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ArchitectureO5arm64yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/arm64":{"role":"symbol","title":"Architecture.arm64","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"arm64"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/arm64","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/arm64"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/encode(to:).json new file mode 100644 index 000000000..378be8f33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI12ArchitectureO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/equatable-implementations.json new file mode 100644 index 000000000..7db345081 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/hash(into:).json new file mode 100644 index 000000000..7c25489c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI12ArchitectureO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/hashvalue.json new file mode 100644 index 000000000..a4b2afe25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI12ArchitectureO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/init(from:).json new file mode 100644 index 000000000..bd14299e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI12ArchitectureO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/init(rawvalue:).json new file mode 100644 index 000000000..926e57fe1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12ArchitectureO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/rawrepresentable-implementations.json new file mode 100644 index 000000000..0c2a8252d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/s390x.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/s390x.json new file mode 100644 index 000000000..2052ce00f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/s390x.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"s390x"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/s390x"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/s390x","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"s390x"}],"title":"Architecture.s390x","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ArchitectureO5s390xyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/s390x":{"role":"symbol","title":"Architecture.s390x","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"s390x"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/s390x","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/s390x"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/wasm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/wasm.json new file mode 100644 index 000000000..e1535f112 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/wasm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wasm"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/wasm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/wasm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wasm"}],"title":"Architecture.wasm","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ArchitectureO4wasmyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/wasm":{"role":"symbol","title":"Architecture.wasm","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wasm"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/wasm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/wasm"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/x64.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/x64.json new file mode 100644 index 000000000..e73b01e67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/x64.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"x64"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/x64"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/x64","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"x64"}],"title":"Architecture.x64","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ArchitectureO3x64yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/x64":{"role":"symbol","title":"Architecture.x64","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"x64"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/x64","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/x64"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/x86.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/x86.json new file mode 100644 index 000000000..689126f3b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/architecture/x86.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"x86"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/architecture\/x86"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/x86","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"x86"}],"title":"Architecture.x86","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ArchitectureO3x86yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture/x86":{"role":"symbol","title":"Architecture.x86","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"x86"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture\/x86","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/architecture\/x86"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo.json new file mode 100644 index 000000000..168a2803e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"title":"ArtistInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10ArtistInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/isAutomated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/metadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/songInfos","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/year"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/songInfos":{"role":"symbol","title":"songInfos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/songInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/songinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/metadatalanguage"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/indexnumber.json new file mode 100644 index 000000000..4df8cca9d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/indexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/init(from:).json new file mode 100644 index 000000000..0c93537bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10ArtistInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:).json new file mode 100644 index 000000000..4f36633a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV","text":"SongInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10ArtistInfoV11indexNumber11isAutomated19metadataCountryCode0I8Language4name13originalTitle011parentIndexF04path12premiereDate11providerIDs9songInfos4yearACs5Int32VSg_SbSgSSSgA3trT10Foundation0T0VSgSDyS2SGSgSayAA04SongD0VGSgARtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:songInfos:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:songinfos:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/isautomated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/isautomated.json new file mode 100644 index 000000000..da4dab1bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/isautomated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/isautomated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/isAutomated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV11isAutomatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/isautomated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/metadatacountrycode.json new file mode 100644 index 000000000..f007a3053 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/metadatacountrycode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/metadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/metadatalanguage.json new file mode 100644 index 000000000..6608bfc39 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/metadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/metadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/metadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV16metadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/name.json new file mode 100644 index 000000000..d2a534419 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/originaltitle.json new file mode 100644 index 000000000..b16e9c8e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the original title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/originaltitle"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/parentindexnumber.json new file mode 100644 index 000000000..ae5426d7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/path.json new file mode 100644 index 000000000..abf1a4d07 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/premieredate.json new file mode 100644 index 000000000..8e8411da8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV12premiereDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/providerids.json new file mode 100644 index 000000000..1da83c904 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/songinfos.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/songinfos.json new file mode 100644 index 000000000..61f0dcb1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/songinfos.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV","text":"SongInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/songinfos"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/songInfos","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?"}],"title":"songInfos","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV9songInfosSayAA04SongD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/songInfos":{"role":"symbol","title":"songInfos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SongInfo","preciseIdentifier":"s:11JellyfinAPI8SongInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/songInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/songinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/year.json new file mode 100644 index 000000000..a4e94715a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinfo/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinfo\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"year","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ArtistInfoV4years5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery.json new file mode 100644 index 000000000..02d173cd1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinforemotesearchquery"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"title":"ArtistInfoRemoteSearchQuery","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/isIncludeDisabledProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/searchInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/searchProviderName"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery":{"role":"symbol","title":"ArtistInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ArtistInfo","preciseIdentifier":"s:11JellyfinAPI10ArtistInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ArtistInfo","preciseIdentifier":"s:11JellyfinAPI10ArtistInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/searchprovidername"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/init(from:).json new file mode 100644 index 000000000..ba939c53d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinforemotesearchquery\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery":{"role":"symbol","title":"ArtistInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json new file mode 100644 index 000000000..3324d9760 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","preciseIdentifier":"s:11JellyfinAPI10ArtistInfoV","text":"ArtistInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ArtistInfo","preciseIdentifier":"s:11JellyfinAPI10ArtistInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV26isIncludeDisabledProviders6itemID06searchD00N12ProviderNameACSbSg_10Foundation4UUIDVSgAA0cD0VSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery":{"role":"symbol","title":"ArtistInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ArtistInfo","preciseIdentifier":"s:11JellyfinAPI10ArtistInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/isincludedisabledproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/isincludedisabledproviders.json new file mode 100644 index 000000000..bfb310b39 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/isincludedisabledproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinforemotesearchquery\/isincludedisabledproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/isIncludeDisabledProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeDisabledProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV26isIncludeDisabledProvidersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery":{"role":"symbol","title":"ArtistInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/itemid.json new file mode 100644 index 000000000..01b648537 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinforemotesearchquery\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery":{"role":"symbol","title":"ArtistInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/searchinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/searchinfo.json new file mode 100644 index 000000000..2f53b4008 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/searchinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","preciseIdentifier":"s:11JellyfinAPI10ArtistInfoV","text":"ArtistInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinforemotesearchquery\/searchinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/searchInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ArtistInfo","preciseIdentifier":"s:11JellyfinAPI10ArtistInfoV"},{"kind":"text","text":"?"}],"title":"searchInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV06searchD0AA0cD0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery":{"role":"symbol","title":"ArtistInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ArtistInfo","preciseIdentifier":"s:11JellyfinAPI10ArtistInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfo":{"role":"symbol","title":"ArtistInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfo"}],"url":"\/documentation\/jellyfinapi\/artistinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/searchprovidername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/searchprovidername.json new file mode 100644 index 000000000..a7ed89966 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/artistinforemotesearchquery/searchprovidername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/artistinforemotesearchquery\/searchprovidername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/searchProviderName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchProviderName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV18searchProviderNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery":{"role":"symbol","title":"ArtistInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname.json new file mode 100644 index 000000000..f46042e35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticateUserByName"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticateuserbyname"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The authenticate user by name request body."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticateUserByName"}],"title":"AuthenticateUserByName","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI22AuthenticateUserByNameV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AuthenticateUserByName"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/init(password:pw:username:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/password","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/pw","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/username"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName/pw":{"role":"symbol","title":"pw","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the plain text password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/pw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticateuserbyname\/pw"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName/username":{"role":"symbol","title":"username","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the username."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/username","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticateuserbyname\/username"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName":{"role":"symbol","title":"AuthenticateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticateUserByName"}],"abstract":[{"type":"text","text":"The authenticate user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticateUserByName"}],"url":"\/documentation\/jellyfinapi\/authenticateuserbyname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName/password":{"role":"symbol","title":"password","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the sha1-hashed password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/password","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticateuserbyname\/password"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticateuserbyname\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName/init(password:pw:username:)":{"role":"symbol","title":"init(password:pw:username:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/init(password:pw:username:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticateuserbyname\/init(password:pw:username:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/init(from:).json new file mode 100644 index 000000000..6a2ded881 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticateuserbyname\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22AuthenticateUserByNameV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticateuserbyname\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName":{"role":"symbol","title":"AuthenticateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticateUserByName"}],"abstract":[{"type":"text","text":"The authenticate user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticateUserByName"}],"url":"\/documentation\/jellyfinapi\/authenticateuserbyname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/init(password:pw:username:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/init(password:pw:username:).json new file mode 100644 index 000000000..ce19ae461 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/init(password:pw:username:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticateuserbyname\/init(password:pw:username:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/init(password:pw:username:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(password:pw:username:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22AuthenticateUserByNameV8password2pw8usernameACSSSg_A2Gtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName/init(password:pw:username:)":{"role":"symbol","title":"init(password:pw:username:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/init(password:pw:username:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticateuserbyname\/init(password:pw:username:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName":{"role":"symbol","title":"AuthenticateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticateUserByName"}],"abstract":[{"type":"text","text":"The authenticate user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticateUserByName"}],"url":"\/documentation\/jellyfinapi\/authenticateuserbyname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/password.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/password.json new file mode 100644 index 000000000..a1655ef4d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/password.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"aside","style":"warning","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticateuserbyname\/password"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/password","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the sha1-hashed password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"password","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22AuthenticateUserByNameV8passwordSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName/password":{"role":"symbol","title":"password","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the sha1-hashed password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/password","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticateuserbyname\/password"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName":{"role":"symbol","title":"AuthenticateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticateUserByName"}],"abstract":[{"type":"text","text":"The authenticate user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticateUserByName"}],"url":"\/documentation\/jellyfinapi\/authenticateuserbyname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/pw.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/pw.json new file mode 100644 index 000000000..c39abf700 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/pw.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticateuserbyname\/pw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/pw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the plain text password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"pw","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22AuthenticateUserByNameV2pwSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName/pw":{"role":"symbol","title":"pw","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the plain text password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/pw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticateuserbyname\/pw"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName":{"role":"symbol","title":"AuthenticateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticateUserByName"}],"abstract":[{"type":"text","text":"The authenticate user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticateUserByName"}],"url":"\/documentation\/jellyfinapi\/authenticateuserbyname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/username.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/username.json new file mode 100644 index 000000000..67b30519e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticateuserbyname/username.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticateuserbyname\/username"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/username","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the username."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"username","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22AuthenticateUserByNameV8usernameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName/username":{"role":"symbol","title":"username","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the username."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName\/username","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticateuserbyname\/username"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName":{"role":"symbol","title":"AuthenticateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticateUserByName"}],"abstract":[{"type":"text","text":"The authenticate user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticateUserByName"}],"url":"\/documentation\/jellyfinapi\/authenticateuserbyname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo.json new file mode 100644 index 000000000..a1a695734 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"title":"AuthenticationInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18AuthenticationInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/init(accessToken:appName:appVersion:dateCreated:dateLastActivity:dateRevoked:deviceID:deviceName:id:isActive:userID:userName:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/accessToken","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/appName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/appVersion","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateCreated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateLastActivity","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateRevoked","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/deviceName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/id-862tw","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/isActive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/userID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/userName"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/appName":{"role":"symbol","title":"appName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the application."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/appName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/appname"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/userName":{"role":"symbol","title":"userName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/userName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/username"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/dateLastActivity":{"role":"symbol","title":"dateLastActivity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateLastActivity","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/datelastactivity"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/id-862tw":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/id-862tw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/id-862tw"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/deviceName":{"role":"symbol","title":"deviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/deviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/devicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/isActive":{"role":"symbol","title":"isActive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is active."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/isActive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/isactive"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/appVersion":{"role":"symbol","title":"appVersion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the application version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/appVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/appversion"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/init(accessToken:appName:appVersion:dateCreated:dateLastActivity:dateRevoked:deviceID:deviceName:id:isActive:userID:userName:)":{"role":"symbol","title":"init(accessToken:appName:appVersion:dateCreated:dateLastActivity:dateRevoked:deviceID:deviceName:id:isActive:userID:userName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateRevoked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/init(accessToken:appName:appVersion:dateCreated:dateLastActivity:dateRevoked:deviceID:deviceName:id:isActive:userID:userName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/init(accesstoken:appname:appversion:datecreated:datelastactivity:daterevoked:deviceid:devicename:id:isactive:userid:username:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/dateCreated":{"role":"symbol","title":"dateCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/datecreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/accessToken":{"role":"symbol","title":"accessToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the access token."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/accessToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/accesstoken"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the device identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/deviceid"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/dateRevoked":{"role":"symbol","title":"dateRevoked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateRevoked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date revoked."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateRevoked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/daterevoked"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/accesstoken.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/accesstoken.json new file mode 100644 index 000000000..211a02cab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/accesstoken.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/accesstoken"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/accessToken","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the access token."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"accessToken","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV11accessTokenSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/accessToken":{"role":"symbol","title":"accessToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the access token."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/accessToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/accesstoken"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/appname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/appname.json new file mode 100644 index 000000000..9c50993dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/appname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/appname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/appName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the application."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"appName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV7appNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/appName":{"role":"symbol","title":"appName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the application."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/appName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/appname"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/appversion.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/appversion.json new file mode 100644 index 000000000..be3a19bad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/appversion.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/appversion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/appVersion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the application version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"appVersion","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV10appVersionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/appVersion":{"role":"symbol","title":"appVersion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the application version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/appVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/appversion"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/datecreated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/datecreated.json new file mode 100644 index 000000000..650c1b000 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/datecreated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/datecreated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateCreated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the date created."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateCreated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV11dateCreated10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/dateCreated":{"role":"symbol","title":"dateCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/datecreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/datelastactivity.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/datelastactivity.json new file mode 100644 index 000000000..31b2df537 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/datelastactivity.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/datelastactivity"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateLastActivity","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateLastActivity","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV16dateLastActivity10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/dateLastActivity":{"role":"symbol","title":"dateLastActivity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateLastActivity","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/datelastactivity"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/daterevoked.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/daterevoked.json new file mode 100644 index 000000000..e1528df95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/daterevoked.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateRevoked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/daterevoked"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateRevoked","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the date revoked."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateRevoked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateRevoked","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV11dateRevoked10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/dateRevoked":{"role":"symbol","title":"dateRevoked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateRevoked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date revoked."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/dateRevoked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/daterevoked"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/deviceid.json new file mode 100644 index 000000000..ee7776218 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the device identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the device identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/devicename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/devicename.json new file mode 100644 index 000000000..7cd92e567 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/devicename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/devicename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/deviceName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the device."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV10deviceNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/deviceName":{"role":"symbol","title":"deviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/deviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/devicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/id-4vicd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/id-4vicd.json new file mode 100644 index 000000000..cc3858c8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/id-4vicd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/id-4vicd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/id-4vicd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI18AuthenticationInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/id-4vicd":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/id-4vicd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/id-4vicd"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/id-862tw.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/id-862tw.json new file mode 100644 index 000000000..aa56c7d2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/id-862tw.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/id-862tw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/id-862tw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV2ids5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/id-862tw":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/id-862tw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/id-862tw"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/identifiable-implementations.json new file mode 100644 index 000000000..e03f42d5a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/id-4vicd"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/id-4vicd":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/id-4vicd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/id-4vicd"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/init(accesstoken:appname:appversion:datecreated:datelastactivity:daterevoked:deviceid:devicename:id:isactive:userid:username:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/init(accesstoken:appname:appversion:datecreated:datelastactivity:daterevoked:deviceid:devicename:id:isactive:userid:username:).json new file mode 100644 index 000000000..6ef886e93 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/init(accesstoken:appname:appversion:datecreated:datelastactivity:daterevoked:deviceid:devicename:id:isactive:userid:username:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateRevoked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/init(accesstoken:appname:appversion:datecreated:datelastactivity:daterevoked:deviceid:devicename:id:isactive:userid:username:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/init(accessToken:appName:appVersion:dateCreated:dateLastActivity:dateRevoked:deviceID:deviceName:id:isActive:userID:userName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateRevoked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(accessToken:appName:appVersion:dateCreated:dateLastActivity:dateRevoked:deviceID:deviceName:id:isActive:userID:userName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18AuthenticationInfoV11accessToken7appName0G7Version11dateCreated0J12LastActivity0J7Revoked8deviceID0oH02id8isActive04userP00tH0ACSSSg_A2P10Foundation4DateVSgA2t2Ps5Int64VSgSbSgAQ4UUIDVSgAPtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/init(accessToken:appName:appVersion:dateCreated:dateLastActivity:dateRevoked:deviceID:deviceName:id:isActive:userID:userName:)":{"role":"symbol","title":"init(accessToken:appName:appVersion:dateCreated:dateLastActivity:dateRevoked:deviceID:deviceName:id:isActive:userID:userName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateRevoked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/init(accessToken:appName:appVersion:dateCreated:dateLastActivity:dateRevoked:deviceID:deviceName:id:isActive:userID:userName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/init(accesstoken:appname:appversion:datecreated:datelastactivity:daterevoked:deviceid:devicename:id:isactive:userid:username:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/init(from:).json new file mode 100644 index 000000000..2641dc8fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18AuthenticationInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/isactive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/isactive.json new file mode 100644 index 000000000..f39b700d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/isactive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/isactive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/isActive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is active."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isActive","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV8isActiveSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/isActive":{"role":"symbol","title":"isActive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is active."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/isActive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/isactive"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/userid.json new file mode 100644 index 000000000..731062ae5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the user identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/username.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/username.json new file mode 100644 index 000000000..e8cf33476 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfo/username.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfo\/username"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/userName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"userName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18AuthenticationInfoV8userNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo/userName":{"role":"symbol","title":"userName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo\/userName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfo\/username"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult.json new file mode 100644 index 000000000..aa629b7ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfoqueryresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"title":"AuthenticationInfoQueryResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI29AuthenticationInfoQueryResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfoQueryResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/init(items:startIndex:totalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/items","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/totalRecordCount"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AuthenticationInfo","preciseIdentifier":"s:11JellyfinAPI18AuthenticationInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AuthenticationInfo","preciseIdentifier":"s:11JellyfinAPI18AuthenticationInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/items"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult":{"role":"symbol","title":"AuthenticationInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/startindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/init(from:).json new file mode 100644 index 000000000..7c6b93a91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI29AuthenticationInfoQueryResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult":{"role":"symbol","title":"AuthenticationInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/init(items:startindex:totalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/init(items:startindex:totalrecordcount:).json new file mode 100644 index 000000000..6dc604caf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/init(items:startindex:totalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","preciseIdentifier":"s:11JellyfinAPI18AuthenticationInfoV","text":"AuthenticationInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/init(items:startindex:totalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/init(items:startIndex:totalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AuthenticationInfo","preciseIdentifier":"s:11JellyfinAPI18AuthenticationInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(items:startIndex:totalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI29AuthenticationInfoQueryResultV5items10startIndex16totalRecordCountACSayAA0cD0VGSg_s5Int32VSgAMtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AuthenticationInfo","preciseIdentifier":"s:11JellyfinAPI18AuthenticationInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult":{"role":"symbol","title":"AuthenticationInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/items.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/items.json new file mode 100644 index 000000000..947d6dadf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/items.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","preciseIdentifier":"s:11JellyfinAPI18AuthenticationInfoV","text":"AuthenticationInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/items"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/items","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AuthenticationInfo","preciseIdentifier":"s:11JellyfinAPI18AuthenticationInfoV"},{"kind":"text","text":"]?"}],"title":"items","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI29AuthenticationInfoQueryResultV5itemsSayAA0cD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfo":{"role":"symbol","title":"AuthenticationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfo"}],"url":"\/documentation\/jellyfinapi\/authenticationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult":{"role":"symbol","title":"AuthenticationInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AuthenticationInfo","preciseIdentifier":"s:11JellyfinAPI18AuthenticationInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/items"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/startindex.json new file mode 100644 index 000000000..8b406a8dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI29AuthenticationInfoQueryResultV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult":{"role":"symbol","title":"AuthenticationInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/totalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/totalrecordcount.json new file mode 100644 index 000000000..e42e034ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationinfoqueryresult/totalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/totalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/totalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"totalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI29AuthenticationInfoQueryResultV16totalRecordCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult":{"role":"symbol","title":"AuthenticationInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult.json new file mode 100644 index 000000000..658b7a0fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"title":"AuthenticationResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20AuthenticationResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/init(accessToken:serverID:sessionInfo:user:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/accessToken","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/serverID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/sessionInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/user"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/user":{"role":"symbol","title":"user","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"user"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/user","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/user"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/accessToken":{"role":"symbol","title":"accessToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/accessToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/accesstoken"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/sessionInfo":{"role":"symbol","title":"sessionInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/sessionInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/init(accessToken:serverID:sessionInfo:user:)":{"role":"symbol","title":"init(accessToken:serverID:sessionInfo:user:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"user"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/init(accessToken:serverID:sessionInfo:user:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/init(accesstoken:serverid:sessioninfo:user:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/accesstoken.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/accesstoken.json new file mode 100644 index 000000000..482f89f5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/accesstoken.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationresult\/accesstoken"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/accessToken","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"accessToken","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20AuthenticationResultV11accessTokenSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/accessToken":{"role":"symbol","title":"accessToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/accessToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/accesstoken"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/init(accesstoken:serverid:sessioninfo:user:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/init(accesstoken:serverid:sessioninfo:user:).json new file mode 100644 index 000000000..2b733d2d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/init(accesstoken:serverid:sessioninfo:user:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sessionInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV","text":"SessionInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"user"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV","text":"UserDto"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationresult\/init(accesstoken:serverid:sessioninfo:user:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/init(accessToken:serverID:sessionInfo:user:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"user"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"?)"}],"title":"init(accessToken:serverID:sessionInfo:user:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20AuthenticationResultV11accessToken8serverID11sessionInfo4userACSSSg_AhA07SessionJ0VSgAA7UserDtoVSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/init(accessToken:serverID:sessionInfo:user:)":{"role":"symbol","title":"init(accessToken:serverID:sessionInfo:user:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"user"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/init(accessToken:serverID:sessionInfo:user:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/init(accesstoken:serverid:sessioninfo:user:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/init(from:).json new file mode 100644 index 000000000..9ef6b5b7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20AuthenticationResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/serverid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/serverid.json new file mode 100644 index 000000000..df8ad1921 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/serverid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationresult\/serverid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/serverID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serverID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20AuthenticationResultV8serverIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/sessioninfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/sessioninfo.json new file mode 100644 index 000000000..6285be1c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/sessioninfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV","text":"SessionInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationresult\/sessioninfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/sessionInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SessionInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV"},{"kind":"text","text":"?"}],"title":"sessionInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20AuthenticationResultV11sessionInfoAA07SessionF0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/sessionInfo":{"role":"symbol","title":"sessionInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/sessionInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/user.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/user.json new file mode 100644 index 000000000..3b5ebfcd5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/authenticationresult/user.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"user"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV","text":"UserDto"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/authenticationresult\/user"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/user","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class UserDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"user"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"?"}],"title":"user","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20AuthenticationResultV4userAA7UserDtoVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult/user":{"role":"symbol","title":"user","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"user"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult\/user","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/authenticationresult\/user"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem.json new file mode 100644 index 000000000..eaf771e7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class BaseItem."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"title":"BaseItem","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI8BaseItemV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BaseItem"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/init(container:dateLastSaved:extraIDs:height:isHD:isShortcut:remoteTrailers:shortcutPath:size:isSupportsExternalTransfer:width:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/dateLastSaved","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/extraIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isHD","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isShortcut","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isSupportsExternalTransfer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/remoteTrailers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/shortcutPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/size","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/width"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/shortcutPath":{"role":"symbol","title":"shortcutPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shortcutPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/shortcutPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/shortcutpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/isShortcut":{"role":"symbol","title":"isShortcut","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShortcut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isShortcut","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/isshortcut"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/dateLastSaved":{"role":"symbol","title":"dateLastSaved","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/dateLastSaved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/datelastsaved"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/isHD":{"role":"symbol","title":"isHD","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isHD","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/extraIDs":{"role":"symbol","title":"extraIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/extraIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/extraids"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/size":{"role":"symbol","title":"size","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/size","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/size"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/init(container:dateLastSaved:extraIDs:height:isHD:isShortcut:remoteTrailers:shortcutPath:size:isSupportsExternalTransfer:width:)":{"role":"symbol","title":"init(container:dateLastSaved:extraIDs:height:isHD:isShortcut:remoteTrailers:shortcutPath:size:isSupportsExternalTransfer:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"extraIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShortcut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"shortcutPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsExternalTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/init(container:dateLastSaved:extraIDs:height:isHD:isShortcut:remoteTrailers:shortcutPath:size:isSupportsExternalTransfer:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/init(container:datelastsaved:extraids:height:ishd:isshortcut:remotetrailers:shortcutpath:size:issupportsexternaltransfer:width:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/isSupportsExternalTransfer":{"role":"symbol","title":"isSupportsExternalTransfer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsExternalTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isSupportsExternalTransfer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/issupportsexternaltransfer"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/remoteTrailers":{"role":"symbol","title":"remoteTrailers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the remote trailers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/remoteTrailers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/remotetrailers"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/container.json new file mode 100644 index 000000000..0fa57014a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/container"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/datelastsaved.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/datelastsaved.json new file mode 100644 index 000000000..7afc8391e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/datelastsaved.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/datelastsaved"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/dateLastSaved","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateLastSaved","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV13dateLastSaved10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/dateLastSaved":{"role":"symbol","title":"dateLastSaved","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/dateLastSaved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/datelastsaved"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/extraids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/extraids.json new file mode 100644 index 000000000..8b90c9716 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/extraids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/extraids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/extraIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"extraIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV8extraIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/extraIDs":{"role":"symbol","title":"extraIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/extraIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/extraids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/height.json new file mode 100644 index 000000000..9d23c036a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/init(container:datelastsaved:extraids:height:ishd:isshortcut:remotetrailers:shortcutpath:size:issupportsexternaltransfer:width:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/init(container:datelastsaved:extraids:height:ishd:isshortcut:remotetrailers:shortcutpath:size:issupportsexternaltransfer:width:).json new file mode 100644 index 000000000..a462509e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/init(container:datelastsaved:extraids:height:ishd:isshortcut:remotetrailers:shortcutpath:size:issupportsexternaltransfer:width:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"extraIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isShortcut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV","text":"MediaURL"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"shortcutPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsExternalTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/init(container:datelastsaved:extraids:height:ishd:isshortcut:remotetrailers:shortcutpath:size:issupportsexternaltransfer:width:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/init(container:dateLastSaved:extraIDs:height:isHD:isShortcut:remoteTrailers:shortcutPath:size:isSupportsExternalTransfer:width:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"extraIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShortcut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"shortcutPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsExternalTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(container:dateLastSaved:extraIDs:height:isHD:isShortcut:remoteTrailers:shortcutPath:size:isSupportsExternalTransfer:width:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8BaseItemV9container13dateLastSaved8extraIDs6height4isHD0L8Shortcut14remoteTrailers12shortcutPath4size0L24SupportsExternalTransfer5widthACSSSg_10Foundation4DateVSgSayAP4UUIDVGSgs5Int32VSgSbSgA_SayAA8MediaURLVGSgAOs5Int64VSgA_AZtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL":{"role":"symbol","title":"MediaURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaURL"}],"url":"\/documentation\/jellyfinapi\/mediaurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/init(container:dateLastSaved:extraIDs:height:isHD:isShortcut:remoteTrailers:shortcutPath:size:isSupportsExternalTransfer:width:)":{"role":"symbol","title":"init(container:dateLastSaved:extraIDs:height:isHD:isShortcut:remoteTrailers:shortcutPath:size:isSupportsExternalTransfer:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"extraIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShortcut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"shortcutPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsExternalTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/init(container:dateLastSaved:extraIDs:height:isHD:isShortcut:remoteTrailers:shortcutPath:size:isSupportsExternalTransfer:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/init(container:datelastsaved:extraids:height:ishd:isshortcut:remotetrailers:shortcutpath:size:issupportsexternaltransfer:width:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/init(from:).json new file mode 100644 index 000000000..d7582757c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8BaseItemV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/ishd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/ishd.json new file mode 100644 index 000000000..ae0075f33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/ishd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/ishd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isHD","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isHD","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV4isHDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/isHD":{"role":"symbol","title":"isHD","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isHD","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/isshortcut.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/isshortcut.json new file mode 100644 index 000000000..de61eafe8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/isshortcut.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShortcut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/isshortcut"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isShortcut","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShortcut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isShortcut","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV10isShortcutSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/isShortcut":{"role":"symbol","title":"isShortcut","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShortcut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isShortcut","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/isshortcut"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/issupportsexternaltransfer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/issupportsexternaltransfer.json new file mode 100644 index 000000000..8b2c92fad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/issupportsexternaltransfer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsExternalTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/issupportsexternaltransfer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isSupportsExternalTransfer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsExternalTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsExternalTransfer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV26isSupportsExternalTransferSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/isSupportsExternalTransfer":{"role":"symbol","title":"isSupportsExternalTransfer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsExternalTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/isSupportsExternalTransfer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/issupportsexternaltransfer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/remotetrailers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/remotetrailers.json new file mode 100644 index 000000000..dbc3fbcf6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/remotetrailers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV","text":"MediaURL"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/remotetrailers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/remoteTrailers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the remote trailers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?"}],"title":"remoteTrailers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV14remoteTrailersSayAA8MediaURLVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/remoteTrailers":{"role":"symbol","title":"remoteTrailers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the remote trailers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/remoteTrailers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/remotetrailers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL":{"role":"symbol","title":"MediaURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaURL"}],"url":"\/documentation\/jellyfinapi\/mediaurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/shortcutpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/shortcutpath.json new file mode 100644 index 000000000..5703c3971 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/shortcutpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shortcutPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/shortcutpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/shortcutPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shortcutPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"shortcutPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV12shortcutPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/shortcutPath":{"role":"symbol","title":"shortcutPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shortcutPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/shortcutPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/shortcutpath"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/size.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/size.json new file mode 100644 index 000000000..a1064b052 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/size.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/size"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/size","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"size","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV4sizes5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/size":{"role":"symbol","title":"size","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/size","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/size"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/width.json new file mode 100644 index 000000000..c72134f6c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitem/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitem\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BaseItemV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitem\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto.json new file mode 100644 index 000000000..e2de7ffb3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This holds information about a BaseItem in a format that is convenient for the client."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"title":"BaseItemDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11BaseItemDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Structures","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/init(airDays:airTime:airsAfterSeasonNumber:airsBeforeEpisodeNumber:airsBeforeSeasonNumber:album:albumArtist:albumArtists:albumCount:albumID:albumPrimaryImageTag:altitude:aperture:artistCount:artistItems:artists:aspectRatio:audio:backdropImageTags:cameraMake:cameraModel:canDelete:canDownload:channelID:channelName:channelNumber:channelPrimaryImageTag:channelType:chapters:childCount:collectionType:communityRating:completionPercentage:container:criticRating:cumulativeRunTimeTicks:customRating:dateCreated:dateLastMediaAdded:displayOrder:displayPreferencesID:enableMediaSourceDisplay:endDate:episodeCount:episodeTitle:etag:exposureTime:externalURLs:extraType:focalLength:forcedSortName:genreItems:genres:hasSubtitles:height:id:imageBlurHashes:imageOrientation:imageTags:indexNumber:indexNumberEnd:isFolder:isHD:isKids:isLive:isMovie:isNews:isPlaceHolder:isPremiere:isRepeat:isSeries:isSports:isoSpeedRating:isoType:latitude:localTrailerCount:locationType:lockData:lockedFields:longitude:mediaSourceCount:mediaSources:mediaStreams:mediaType:movieCount:musicVideoCount:name:number:officialRating:originalTitle:overview:parentArtImageTag:parentArtItemID:parentBackdropImageTags:parentBackdropItemID:parentID:parentIndexNumber:parentLogoImageTag:parentLogoItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:partCount:path:people:playAccess:playlistItemID:preferredMetadataCountryCode:preferredMetadataLanguage:premiereDate:primaryImageAspectRatio:productionLocations:productionYear:programCount:programID:providerIDs:recursiveItemCount:remoteTrailers:runTimeTicks:screenshotImageTags:seasonID:seasonName:seriesCount:seriesID:seriesName:seriesPrimaryImageTag:seriesStudio:seriesThumbImageTag:seriesTimerID:serverID:shutterSpeed:software:songCount:sortName:sourceType:specialFeatureCount:startDate:status:studios:isSupportsSync:taglines:tags:timerID:trailerCount:type:userData:video3DFormat:videoType:width:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airDays","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airTime","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsAfterSeasonNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsBeforeEpisodeNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsBeforeSeasonNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/album","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumArtist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumArtists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumPrimaryImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/altitude","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/aperture","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artistCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artistItems","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/aspectRatio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/audio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/backdropImageTags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cameraMake","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cameraModel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/canDelete","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/canDownload","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelPrimaryImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/chapters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/childCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/collectionType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/communityRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/completionPercentage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/criticRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cumulativeRunTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/customRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/dateCreated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/dateLastMediaAdded","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/displayOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/displayPreferencesID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/enableMediaSourceDisplay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/endDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/episodeCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/episodeTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/etag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/exposureTime","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/externalURLs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/extraType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/focalLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/forcedSortName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/genreItems","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/hasSubtitles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/id-685go","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageBlurHashes-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageOrientation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageTags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/indexNumberEnd","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isFolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isHD","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isLive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isPlaceHolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isPremiere","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isRepeat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSupportsSync","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isoSpeedRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/latitude","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/localTrailerCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/locationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/lockData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/lockedFields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/longitude","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaSourceCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaSources","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaStreams","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/movieCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/musicVideoCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/number","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/officialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/overview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentArtImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentArtItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentBackdropImageTags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentBackdropItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentLogoImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentLogoItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentPrimaryImageItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentPrimaryImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentThumbImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentThumbItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/partCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/people","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/playAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/playlistItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/preferredMetadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/preferredMetadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/primaryImageAspectRatio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/productionLocations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/productionYear","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/programCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/programID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/recursiveItemCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/remoteTrailers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/runTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/screenshotImageTags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seasonID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seasonName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesPrimaryImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesStudio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesThumbImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesTimerID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/serverID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/shutterSpeed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/software","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/songCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/sortName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/sourceType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/specialFeatureCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/startDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/status","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/studios","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/taglines","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/tags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/timerID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/trailerCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/userData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/video3DFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/videoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/width"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/people":{"role":"symbol","title":"people","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"people"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemPerson","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the people."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/people","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/people"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/childCount":{"role":"symbol","title":"childCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"childCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the child count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/childCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/childcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/sortName":{"role":"symbol","title":"sortName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the sort."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/sortName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/sortname"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/artistCount":{"role":"symbol","title":"artistCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artistCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/artistcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/extraType":{"role":"symbol","title":"extraType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/extraType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/extratype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentPrimaryImageItemID":{"role":"symbol","title":"parentPrimaryImageItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent primary image item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentPrimaryImageItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentprimaryimageitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isLive":{"role":"symbol","title":"isLive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is live."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isLive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/islive"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/runTimeTicks":{"role":"symbol","title":"runTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the run time ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/runTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/runtimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/mediaSourceCount":{"role":"symbol","title":"mediaSourceCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaSourceCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/mediasourcecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesID":{"role":"symbol","title":"seriesID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isoSpeedRating":{"role":"symbol","title":"isoSpeedRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoSpeedRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isoSpeedRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isospeedrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/remoteTrailers":{"role":"symbol","title":"remoteTrailers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the trailer urls."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/remoteTrailers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/remotetrailers"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/taglines":{"role":"symbol","title":"taglines","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"taglines"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the taglines."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/taglines","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/taglines"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/aperture":{"role":"symbol","title":"aperture","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aperture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/aperture","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/aperture"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/exposureTime":{"role":"symbol","title":"exposureTime","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exposureTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/exposureTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/exposuretime"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/lockedFields":{"role":"symbol","title":"lockedFields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockedFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataField","preciseIdentifier":"s:11JellyfinAPI13MetadataFieldO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the locked fields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/lockedFields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/lockedfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/productionLocations":{"role":"symbol","title":"productionLocations","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/productionLocations","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/productionlocations"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/airsBeforeSeasonNumber":{"role":"symbol","title":"airsBeforeSeasonNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsBeforeSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsBeforeSeasonNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/airsbeforeseasonnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/channelType":{"role":"symbol","title":"channelType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ChannelType","preciseIdentifier":"s:11JellyfinAPI11ChannelTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the channel."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/communityRating":{"role":"symbol","title":"communityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the community rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/communityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/communityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/altitude":{"role":"symbol","title":"altitude","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"altitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/altitude","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/altitude"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent index number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/init(airDays:airTime:airsAfterSeasonNumber:airsBeforeEpisodeNumber:airsBeforeSeasonNumber:album:albumArtist:albumArtists:albumCount:albumID:albumPrimaryImageTag:altitude:aperture:artistCount:artistItems:artists:aspectRatio:audio:backdropImageTags:cameraMake:cameraModel:canDelete:canDownload:channelID:channelName:channelNumber:channelPrimaryImageTag:channelType:chapters:childCount:collectionType:communityRating:completionPercentage:container:criticRating:cumulativeRunTimeTicks:customRating:dateCreated:dateLastMediaAdded:displayOrder:displayPreferencesID:enableMediaSourceDisplay:endDate:episodeCount:episodeTitle:etag:exposureTime:externalURLs:extraType:focalLength:forcedSortName:genreItems:genres:hasSubtitles:height:id:imageBlurHashes:imageOrientation:imageTags:indexNumber:indexNumberEnd:isFolder:isHD:isKids:isLive:isMovie:isNews:isPlaceHolder:isPremiere:isRepeat:isSeries:isSports:isoSpeedRating:isoType:latitude:localTrailerCount:locationType:lockData:lockedFields:longitude:mediaSourceCount:mediaSources:mediaStreams:mediaType:movieCount:musicVideoCount:name:number:officialRating:originalTitle:overview:parentArtImageTag:parentArtItemID:parentBackdropImageTags:parentBackdropItemID:parentID:parentIndexNumber:parentLogoImageTag:parentLogoItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:partCount:path:people:playAccess:playlistItemID:preferredMetadataCountryCode:preferredMetadataLanguage:premiereDate:primaryImageAspectRatio:productionLocations:productionYear:programCount:programID:providerIDs:recursiveItemCount:remoteTrailers:runTimeTicks:screenshotImageTags:seasonID:seasonName:seriesCount:seriesID:seriesName:seriesPrimaryImageTag:seriesStudio:seriesThumbImageTag:seriesTimerID:serverID:shutterSpeed:software:songCount:sortName:sourceType:specialFeatureCount:startDate:status:studios:isSupportsSync:taglines:tags:timerID:trailerCount:type:userData:video3DFormat:videoType:width:)":{"role":"symbol","title":"init(airDays:airTime:airsAfterSeasonNumber:airsBeforeEpisodeNumber:airsBeforeSeasonNumber:album:albumArtist:albumArtists:albumCount:albumID:albumPrimaryImageTag:altitude:aperture:artistCount:artistItems:artists:aspectRatio:audio:backdropImageTags:cameraMake:cameraModel:canDelete:canDownload:channelID:channelName:channelNumber:channelPrimaryImageTag:channelType:chapters:childCount:collectionType:communityRating:completionPercentage:container:criticRating:cumulativeRunTimeTicks:customRating:dateCreated:dateLastMediaAdded:displayOrder:displayPreferencesID:enableMediaSourceDisplay:endDate:episodeCount:episodeTitle:etag:exposureTime:externalURLs:extraType:focalLength:forcedSortName:genreItems:genres:hasSubtitles:height:id:imageBlurHashes:imageOrientation:imageTags:indexNumber:indexNumberEnd:isFolder:isHD:isKids:isLive:isMovie:isNews:isPlaceHolder:isPremiere:isRepeat:isSeries:isSports:isoSpeedRating:isoType:latitude:localTrailerCount:locationType:lockData:lockedFields:longitude:mediaSourceCount:mediaSources:mediaStreams:mediaType:movieCount:musicVideoCount:name:number:officialRating:originalTitle:overview:parentArtImageTag:parentArtItemID:parentBackdropImageTags:parentBackdropItemID:parentID:parentIndexNumber:parentLogoImageTag:parentLogoItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:partCount:path:people:playAccess:playlistItemID:preferredMetadataCountryCode:preferredMetadataLanguage:premiereDate:primaryImageAspectRatio:productionLocations:productionYear:programCount:programID:providerIDs:recursiveItemCount:remoteTrailers:runTimeTicks:screenshotImageTags:seasonID:seasonName:seriesCount:seriesID:seriesName:seriesPrimaryImageTag:seriesStudio:seriesThumbImageTag:seriesTimerID:serverID:shutterSpeed:software:songCount:sortName:sourceType:specialFeatureCount:startDate:status:studios:isSupportsSync:taglines:tags:timerID:trailerCount:type:userData:video3DFormat:videoType:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"airDays"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"airTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"airsAfterSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"airsBeforeEpisodeNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"airsBeforeSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"altitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"aperture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artistItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProgramAudio","preciseIdentifier":"s:11JellyfinAPI12ProgramAudioO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"cameraMake"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cameraModel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canDelete"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canDownload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ChannelType","preciseIdentifier":"s:11JellyfinAPI11ChannelTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"chapters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChapterInfo","preciseIdentifier":"s:11JellyfinAPI11ChapterInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"childCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"criticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cumulativeRunTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"customRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastMediaAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"displayOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMediaSourceDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"etag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exposureTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalURLs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalURL","preciseIdentifier":"s:11JellyfinAPI11ExternalURLV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"extraType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"focalLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"forcedSortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genreItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageOrientation","preciseIdentifier":"s:11JellyfinAPI16ImageOrientationO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPremiere"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRepeat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isoSpeedRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localTrailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lockData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lockedFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataField","preciseIdentifier":"s:11JellyfinAPI13MetadataFieldO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"number"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"officialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentArtImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentArtItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentLogoImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentLogoItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"partCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"people"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemPerson","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayAccess","preciseIdentifier":"s:11JellyfinAPI10PlayAccessO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredMetadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productionLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"recursiveItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"screenshotImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seasonName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"shutterSpeed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"software"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sourceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"specialFeatureCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"taglines"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserItemDataDto","preciseIdentifier":"s:11JellyfinAPI15UserItemDataDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/init(airDays:airTime:airsAfterSeasonNumber:airsBeforeEpisodeNumber:airsBeforeSeasonNumber:album:albumArtist:albumArtists:albumCount:albumID:albumPrimaryImageTag:altitude:aperture:artistCount:artistItems:artists:aspectRatio:audio:backdropImageTags:cameraMake:cameraModel:canDelete:canDownload:channelID:channelName:channelNumber:channelPrimaryImageTag:channelType:chapters:childCount:collectionType:communityRating:completionPercentage:container:criticRating:cumulativeRunTimeTicks:customRating:dateCreated:dateLastMediaAdded:displayOrder:displayPreferencesID:enableMediaSourceDisplay:endDate:episodeCount:episodeTitle:etag:exposureTime:externalURLs:extraType:focalLength:forcedSortName:genreItems:genres:hasSubtitles:height:id:imageBlurHashes:imageOrientation:imageTags:indexNumber:indexNumberEnd:isFolder:isHD:isKids:isLive:isMovie:isNews:isPlaceHolder:isPremiere:isRepeat:isSeries:isSports:isoSpeedRating:isoType:latitude:localTrailerCount:locationType:lockData:lockedFields:longitude:mediaSourceCount:mediaSources:mediaStreams:mediaType:movieCount:musicVideoCount:name:number:officialRating:originalTitle:overview:parentArtImageTag:parentArtItemID:parentBackdropImageTags:parentBackdropItemID:parentID:parentIndexNumber:parentLogoImageTag:parentLogoItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:partCount:path:people:playAccess:playlistItemID:preferredMetadataCountryCode:preferredMetadataLanguage:premiereDate:primaryImageAspectRatio:productionLocations:productionYear:programCount:programID:providerIDs:recursiveItemCount:remoteTrailers:runTimeTicks:screenshotImageTags:seasonID:seasonName:seriesCount:seriesID:seriesName:seriesPrimaryImageTag:seriesStudio:seriesThumbImageTag:seriesTimerID:serverID:shutterSpeed:software:songCount:sortName:sourceType:specialFeatureCount:startDate:status:studios:isSupportsSync:taglines:tags:timerID:trailerCount:type:userData:video3DFormat:videoType:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/init(airdays:airtime:airsafterseasonnumber:airsbeforeepisodenumber:airsbeforeseasonnumber:album:albumartist:albumartists:albumcount:albumid:albumprimaryimagetag:altitude:aperture:artistcount:artistitems:artists:aspectratio:audio:backdropima-7mi7n"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesName":{"role":"symbol","title":"seriesName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriesname"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesStudio":{"role":"symbol","title":"seriesStudio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series studio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesStudio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriesstudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/locationType":{"role":"symbol","title":"locationType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the location."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/locationType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/imageTags":{"role":"symbol","title":"imageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/trailerCount":{"role":"symbol","title":"trailerCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the trailer count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/trailerCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/trailercount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/externalURLs":{"role":"symbol","title":"externalURLs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalURLs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalURL","preciseIdentifier":"s:11JellyfinAPI11ExternalURLV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the external urls."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/externalURLs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/externalurls"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/productionYear":{"role":"symbol","title":"productionYear","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the production year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/productionYear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/productionyear"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/video3DFormat":{"role":"symbol","title":"video3DFormat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the video3 D format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/video3DFormat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/video3dformat"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/backdropImageTags":{"role":"symbol","title":"backdropImageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the backdrop image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/backdropImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/backdropimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/customRating":{"role":"symbol","title":"customRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the custom rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/customRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/customrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seasonName":{"role":"symbol","title":"seasonName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the season."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seasonName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seasonname"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/canDownload":{"role":"symbol","title":"canDownload","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDownload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/canDownload","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/candownload"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesThumbImageTag":{"role":"symbol","title":"seriesThumbImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series thumb image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesThumbImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriesthumbimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/channelName":{"role":"symbol","title":"channelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/channelname"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/preferredMetadataLanguage":{"role":"symbol","title":"preferredMetadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/preferredMetadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/preferredmetadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/shutterSpeed":{"role":"symbol","title":"shutterSpeed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shutterSpeed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/shutterSpeed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/shutterspeed"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/userData":{"role":"symbol","title":"userData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserItemDataDto","preciseIdentifier":"s:11JellyfinAPI15UserItemDataDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user data for this item based on the user it’s being requested for."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/userData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/userdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/programID":{"role":"symbol","title":"programID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/programID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/programid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/software":{"role":"symbol","title":"software","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"software"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/software","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/software"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/programCount":{"role":"symbol","title":"programCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/programCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/programcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/channelNumber":{"role":"symbol","title":"channelNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/channelnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentArtItemID":{"role":"symbol","title":"parentArtItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentArtItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentArtItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentartitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/sourceType":{"role":"symbol","title":"sourceType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/sourceType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/sourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentThumbImageTag":{"role":"symbol","title":"parentThumbImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent thumb image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentThumbImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentthumbimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/albumID":{"role":"symbol","title":"albumID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/albumid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/preferredMetadataCountryCode":{"role":"symbol","title":"preferredMetadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/preferredMetadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/preferredmetadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/album":{"role":"symbol","title":"album","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/album","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/album"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isRepeat":{"role":"symbol","title":"isRepeat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRepeat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is repeat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isRepeat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isrepeat"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/indexNumberEnd":{"role":"symbol","title":"indexNumberEnd","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index number end."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/indexNumberEnd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/indexnumberend"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/albumCount":{"role":"symbol","title":"albumCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/albumcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/cameraModel":{"role":"symbol","title":"cameraModel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cameraModel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cameraModel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/cameramodel"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/movieCount":{"role":"symbol","title":"movieCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the movie count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/movieCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/moviecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the genres."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/imageBlurHashes-swift.property":{"role":"symbol","title":"imageBlurHashes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageBlurHashes-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the artists."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/airTime":{"role":"symbol","title":"airTime","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the air time."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/airtime"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/musicVideoCount":{"role":"symbol","title":"musicVideoCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the music video count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/musicVideoCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/musicvideocount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/enableMediaSourceDisplay":{"role":"symbol","title":"enableMediaSourceDisplay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaSourceDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/enableMediaSourceDisplay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/enablemediasourcedisplay"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/screenshotImageTags":{"role":"symbol","title":"screenshotImageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshotImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the screenshot image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/screenshotImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/screenshotimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the overview."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/dateLastMediaAdded":{"role":"symbol","title":"dateLastMediaAdded","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastMediaAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/dateLastMediaAdded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/datelastmediaadded"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/partCount":{"role":"symbol","title":"partCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"partCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the part count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/partCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/partcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesCount":{"role":"symbol","title":"seriesCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriescount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isPremiere":{"role":"symbol","title":"isPremiere","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPremiere"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is premiere."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isPremiere","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/ispremiere"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/artistItems":{"role":"symbol","title":"artistItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the artist items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artistItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/artistitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/albumArtists":{"role":"symbol","title":"albumArtists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the album artists."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumArtists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/albumartists"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/recursiveItemCount":{"role":"symbol","title":"recursiveItemCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recursiveItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the recursive item count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/recursiveItemCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/recursiveitemcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/chapters":{"role":"symbol","title":"chapters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChapterInfo","preciseIdentifier":"s:11JellyfinAPI11ChapterInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the chapters."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/chapters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/chapters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/id-685go":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/id-685go","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/id-685go"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/specialFeatureCount":{"role":"symbol","title":"specialFeatureCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialFeatureCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the special feature count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/specialFeatureCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/specialfeaturecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isoType":{"role":"symbol","title":"isoType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the iso."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isoType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/audio":{"role":"symbol","title":"audio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProgramAudio","preciseIdentifier":"s:11JellyfinAPI12ProgramAudioO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the audio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/audio"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/videoType":{"role":"symbol","title":"videoType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the video."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/videoType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/videotype"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/mediaStreams":{"role":"symbol","title":"mediaStreams","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the media streams."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaStreams","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/mediastreams"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/hasSubtitles":{"role":"symbol","title":"hasSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/hasSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/hassubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/latitude":{"role":"symbol","title":"latitude","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/latitude","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/latitude"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isFolder":{"role":"symbol","title":"isFolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is folder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/channelPrimaryImageTag":{"role":"symbol","title":"channelPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/channelprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/episodeTitle":{"role":"symbol","title":"episodeTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the episode title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/episodeTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/episodetitle"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/albumPrimaryImageTag":{"role":"symbol","title":"albumPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/albumprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is sports."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/startDate":{"role":"symbol","title":"startDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start date of the recording, in UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/startDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/startdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is news."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/songCount":{"role":"symbol","title":"songCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the song count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/songCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/songcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series timer identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/albumArtist":{"role":"symbol","title":"albumArtist","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album artist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/albumartist"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/timerID":{"role":"symbol","title":"timerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the timer identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/timerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/timerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/airsAfterSeasonNumber":{"role":"symbol","title":"airsAfterSeasonNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsAfterSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsAfterSeasonNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/airsafterseasonnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentThumbItemID":{"role":"symbol","title":"parentThumbItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent thumb item id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentThumbItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentthumbitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/airDays":{"role":"symbol","title":"airDays","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airDays"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the air days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airDays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/airdays"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentBackdropImageTags":{"role":"symbol","title":"parentBackdropImageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the parent backdrop image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentBackdropImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentbackdropimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/cameraMake":{"role":"symbol","title":"cameraMake","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cameraMake"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cameraMake","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/cameramake"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/displayOrder":{"role":"symbol","title":"displayOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/displayOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/displayorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/longitude":{"role":"symbol","title":"longitude","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/longitude","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/longitude"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/cumulativeRunTimeTicks":{"role":"symbol","title":"cumulativeRunTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cumulativeRunTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the cumulative run time ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cumulativeRunTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/cumulativeruntimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/focalLength":{"role":"symbol","title":"focalLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"focalLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/focalLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/focallength"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isSupportsSync":{"role":"symbol","title":"isSupportsSync","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports synchronize]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSupportsSync","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/issupportssync"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/airsBeforeEpisodeNumber":{"role":"symbol","title":"airsBeforeEpisodeNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsBeforeEpisodeNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsBeforeEpisodeNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/airsbeforeepisodenumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/dateCreated":{"role":"symbol","title":"dateCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/datecreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/completionPercentage":{"role":"symbol","title":"completionPercentage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the completion percentage."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/completionPercentage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/completionpercentage"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isPlaceHolder":{"role":"symbol","title":"isPlaceHolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is place holder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isPlaceHolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isplaceholder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/lockData":{"role":"symbol","title":"lockData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [enable internet providers]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/lockData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/lockdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the studios."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/primaryImageAspectRatio":{"role":"symbol","title":"primaryImageAspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image aspect ratio, after image enhancements."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/primaryImageAspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/primaryimageaspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/forcedSortName":{"role":"symbol","title":"forcedSortName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"forcedSortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/forcedSortName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/forcedsortname"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/etag":{"role":"symbol","title":"etag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"etag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the etag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/etag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/etag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/criticRating":{"role":"symbol","title":"criticRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"criticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the critic rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/criticRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/criticrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentLogoImageTag":{"role":"symbol","title":"parentLogoImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentLogoImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent logo image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentLogoImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentlogoimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is kids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentLogoItemID":{"role":"symbol","title":"parentLogoItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentLogoItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentLogoItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentlogoitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesPrimaryImageTag":{"role":"symbol","title":"seriesPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriesprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seasonID":{"role":"symbol","title":"seasonID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the season identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seasonID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seasonid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/episodeCount":{"role":"symbol","title":"episodeCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the episode count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/episodeCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/episodecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentArtImageTag":{"role":"symbol","title":"parentArtImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentArtImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent art image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentArtImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentartimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/mediaSources":{"role":"symbol","title":"mediaSources","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the media versions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaSources","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/mediasources"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is movie."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/playAccess":{"role":"symbol","title":"playAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayAccess","preciseIdentifier":"s:11JellyfinAPI10PlayAccessO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play access."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/playAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/number":{"role":"symbol","title":"number","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"number"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/number","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/number"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/canDelete":{"role":"symbol","title":"canDelete","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDelete"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/canDelete","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/candelete"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/mediaType":{"role":"symbol","title":"mediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the media."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/mediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentPrimaryImageTag":{"role":"symbol","title":"parentPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/endDate":{"role":"symbol","title":"endDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/endDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/enddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isHD":{"role":"symbol","title":"isHD","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is HD."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isHD","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/localTrailerCount":{"role":"symbol","title":"localTrailerCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localTrailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the local trailer count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/localTrailerCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/localtrailercount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/genreItems":{"role":"symbol","title":"genreItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/genreItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/genreitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/imageOrientation":{"role":"symbol","title":"imageOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageOrientation","preciseIdentifier":"s:11JellyfinAPI16ImageOrientationO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageOrientation","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/displayPreferencesID":{"role":"symbol","title":"displayPreferencesID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display preferences id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/displayPreferencesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/displaypreferencesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/officialRating":{"role":"symbol","title":"officialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the official rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/officialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/officialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the premiere date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/aspectRatio":{"role":"symbol","title":"aspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the aspect ratio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/aspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/aspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/collectionType":{"role":"symbol","title":"collectionType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the collection."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/collectionType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/collectiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentBackdropItemID":{"role":"symbol","title":"parentBackdropItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentBackdropItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentbackdropitemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airdays.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airdays.json new file mode 100644 index 000000000..c8d8cf689 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airdays.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airDays"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO","text":"DayOfWeek"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/airdays"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airDays","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the air days."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airDays"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?"}],"title":"airDays","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV7airDaysSayAA9DayOfWeekOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/airDays":{"role":"symbol","title":"airDays","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airDays"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the air days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airDays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/airdays"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airsafterseasonnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airsafterseasonnumber.json new file mode 100644 index 000000000..d6973957c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airsafterseasonnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsAfterSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/airsafterseasonnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsAfterSeasonNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsAfterSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"airsAfterSeasonNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV21airsAfterSeasonNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/airsAfterSeasonNumber":{"role":"symbol","title":"airsAfterSeasonNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsAfterSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsAfterSeasonNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/airsafterseasonnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airsbeforeepisodenumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airsbeforeepisodenumber.json new file mode 100644 index 000000000..d7dc07723 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airsbeforeepisodenumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsBeforeEpisodeNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/airsbeforeepisodenumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsBeforeEpisodeNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsBeforeEpisodeNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"airsBeforeEpisodeNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV23airsBeforeEpisodeNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/airsBeforeEpisodeNumber":{"role":"symbol","title":"airsBeforeEpisodeNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsBeforeEpisodeNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsBeforeEpisodeNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/airsbeforeepisodenumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airsbeforeseasonnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airsbeforeseasonnumber.json new file mode 100644 index 000000000..e6991b669 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airsbeforeseasonnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsBeforeSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/airsbeforeseasonnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsBeforeSeasonNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsBeforeSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"airsBeforeSeasonNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV22airsBeforeSeasonNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/airsBeforeSeasonNumber":{"role":"symbol","title":"airsBeforeSeasonNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airsBeforeSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airsBeforeSeasonNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/airsbeforeseasonnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airtime.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airtime.json new file mode 100644 index 000000000..0158ea935 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/airtime.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/airtime"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airTime","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the air time."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"airTime","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV7airTimeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/airTime":{"role":"symbol","title":"airTime","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"airTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the air time."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/airTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/airtime"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/album.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/album.json new file mode 100644 index 000000000..c43ce417e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/album.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/album"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/album","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the album."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"album","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV5albumSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/album":{"role":"symbol","title":"album","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/album","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/album"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumartist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumartist.json new file mode 100644 index 000000000..c14f21dfb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumartist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/albumartist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumArtist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the album artist."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"albumArtist","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11albumArtistSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/albumArtist":{"role":"symbol","title":"albumArtist","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album artist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/albumartist"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumartists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumartists.json new file mode 100644 index 000000000..d5f5e9c8f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumartists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV","text":"NameGuidPair"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/albumartists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumArtists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the album artists."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"title":"albumArtists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12albumArtistsSayAA12NameGuidPairVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/albumArtists":{"role":"symbol","title":"albumArtists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the album artists."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumArtists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/albumartists"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumcount.json new file mode 100644 index 000000000..15f18b1d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/albumcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the album count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"albumCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV10albumCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/albumCount":{"role":"symbol","title":"albumCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/albumcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumid.json new file mode 100644 index 000000000..36313e9c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/albumid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the album id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"albumID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV7albumID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/albumID":{"role":"symbol","title":"albumID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/albumid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumprimaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumprimaryimagetag.json new file mode 100644 index 000000000..11fe5ff7e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/albumprimaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/albumprimaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumPrimaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the album image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"albumPrimaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV20albumPrimaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/albumPrimaryImageTag":{"role":"symbol","title":"albumPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/albumPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/albumprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/altitude.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/altitude.json new file mode 100644 index 000000000..528b75f62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/altitude.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"altitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/altitude"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/altitude","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"altitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"altitude","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8altitudeSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/altitude":{"role":"symbol","title":"altitude","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"altitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/altitude","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/altitude"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/aperture.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/aperture.json new file mode 100644 index 000000000..04dd45ef3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/aperture.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aperture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/aperture"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/aperture","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aperture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"aperture","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8apertureSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/aperture":{"role":"symbol","title":"aperture","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aperture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/aperture","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/aperture"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/artistcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/artistcount.json new file mode 100644 index 000000000..304cd626b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/artistcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/artistcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artistCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"artistCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11artistCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/artistCount":{"role":"symbol","title":"artistCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artistCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/artistcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/artistitems.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/artistitems.json new file mode 100644 index 000000000..a3a7f4338 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/artistitems.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV","text":"NameGuidPair"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/artistitems"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artistItems","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the artist items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"title":"artistItems","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11artistItemsSayAA12NameGuidPairVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/artistItems":{"role":"symbol","title":"artistItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the artist items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artistItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/artistitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/artists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/artists.json new file mode 100644 index 000000000..e48a16422 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/artists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/artists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the artists."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"artists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV7artistsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the artists."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/aspectratio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/aspectratio.json new file mode 100644 index 000000000..055cc131e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/aspectratio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/aspectratio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/aspectRatio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the aspect ratio."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"aspectRatio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11aspectRatioSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/aspectRatio":{"role":"symbol","title":"aspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the aspect ratio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/aspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/aspectratio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/audio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/audio.json new file mode 100644 index 000000000..feb2dfdf0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/audio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","preciseIdentifier":"s:11JellyfinAPI12ProgramAudioO","text":"ProgramAudio"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/audio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/audio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the audio."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProgramAudio","preciseIdentifier":"s:11JellyfinAPI12ProgramAudioO"},{"kind":"text","text":"?"}],"title":"audio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV5audioAA12ProgramAudioOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/audio":{"role":"symbol","title":"audio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProgramAudio","preciseIdentifier":"s:11JellyfinAPI12ProgramAudioO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the audio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/audio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/backdropimagetags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/backdropimagetags.json new file mode 100644 index 000000000..6ab0cebfd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/backdropimagetags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/backdropimagetags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/backdropImageTags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the backdrop image tags."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"backdropImageTags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV17backdropImageTagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/backdropImageTags":{"role":"symbol","title":"backdropImageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the backdrop image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/backdropImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/backdropimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/cameramake.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/cameramake.json new file mode 100644 index 000000000..1975d8f1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/cameramake.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cameraMake"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/cameramake"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cameraMake","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cameraMake"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"cameraMake","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV10cameraMakeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/cameraMake":{"role":"symbol","title":"cameraMake","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cameraMake"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cameraMake","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/cameramake"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/cameramodel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/cameramodel.json new file mode 100644 index 000000000..1464e48f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/cameramodel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cameraModel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/cameramodel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cameraModel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cameraModel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"cameraModel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11cameraModelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/cameraModel":{"role":"symbol","title":"cameraModel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cameraModel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cameraModel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/cameramodel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/candelete.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/candelete.json new file mode 100644 index 000000000..d7f8dcff2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/candelete.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDelete"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/candelete"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/canDelete","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDelete"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canDelete","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9canDeleteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/canDelete":{"role":"symbol","title":"canDelete","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDelete"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/canDelete","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/candelete"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/candownload.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/candownload.json new file mode 100644 index 000000000..f2a366a1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/candownload.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDownload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/candownload"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/canDownload","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDownload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canDownload","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11canDownloadSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/canDownload":{"role":"symbol","title":"canDownload","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDownload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/canDownload","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/candownload"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelid.json new file mode 100644 index 000000000..cbd0ae7e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/channelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the channel identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"channelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9channelID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelname.json new file mode 100644 index 000000000..740199e5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/channelname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11channelNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/channelName":{"role":"symbol","title":"channelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/channelname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelnumber.json new file mode 100644 index 000000000..7e83b81bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/channelnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV13channelNumberSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/channelNumber":{"role":"symbol","title":"channelNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/channelnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelprimaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelprimaryimagetag.json new file mode 100644 index 000000000..cffaabcd6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channelprimaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/channelprimaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelPrimaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the channel primary image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelPrimaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV22channelPrimaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/channelPrimaryImageTag":{"role":"symbol","title":"channelPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/channelprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channeltype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channeltype.json new file mode 100644 index 000000000..af449e1f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/channeltype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","preciseIdentifier":"s:11JellyfinAPI11ChannelTypeO","text":"ChannelType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/channeltype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the channel."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ChannelType","preciseIdentifier":"s:11JellyfinAPI11ChannelTypeO"},{"kind":"text","text":"?"}],"title":"channelType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11channelTypeAA07ChannelG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/channelType":{"role":"symbol","title":"channelType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ChannelType","preciseIdentifier":"s:11JellyfinAPI11ChannelTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the channel."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/channelType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/chapters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/chapters.json new file mode 100644 index 000000000..b859af60b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/chapters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","preciseIdentifier":"s:11JellyfinAPI11ChapterInfoV","text":"ChapterInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/chapters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/chapters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the chapters."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChapterInfo","preciseIdentifier":"s:11JellyfinAPI11ChapterInfoV"},{"kind":"text","text":"]?"}],"title":"chapters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8chaptersSayAA11ChapterInfoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/chapters":{"role":"symbol","title":"chapters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChapterInfo","preciseIdentifier":"s:11JellyfinAPI11ChapterInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the chapters."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/chapters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/chapters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/childcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/childcount.json new file mode 100644 index 000000000..3603eea42 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/childcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"childCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/childcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/childCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the child count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"childCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"childCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV10childCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/childCount":{"role":"symbol","title":"childCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"childCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the child count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/childCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/childcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/collectiontype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/collectiontype.json new file mode 100644 index 000000000..55e988cdd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/collectiontype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/collectiontype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/collectionType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the collection."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"collectionType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV14collectionTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/collectionType":{"role":"symbol","title":"collectionType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the collection."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/collectionType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/collectiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/communityrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/communityrating.json new file mode 100644 index 000000000..d4cbe456a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/communityrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/communityrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/communityRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the community rating."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"communityRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15communityRatingSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/communityRating":{"role":"symbol","title":"communityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the community rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/communityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/communityrating"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/completionpercentage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/completionpercentage.json new file mode 100644 index 000000000..184ebe4f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/completionpercentage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/completionpercentage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/completionPercentage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the completion percentage."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"completionPercentage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV20completionPercentageSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/completionPercentage":{"role":"symbol","title":"completionPercentage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the completion percentage."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/completionPercentage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/completionpercentage"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/container.json new file mode 100644 index 000000000..f5622a99e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/criticrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/criticrating.json new file mode 100644 index 000000000..2f5ca86f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/criticrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"criticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/criticrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/criticRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the critic rating."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"criticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"criticRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12criticRatingSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/criticRating":{"role":"symbol","title":"criticRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"criticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the critic rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/criticRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/criticrating"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/cumulativeruntimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/cumulativeruntimeticks.json new file mode 100644 index 000000000..105931721 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/cumulativeruntimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cumulativeRunTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/cumulativeruntimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cumulativeRunTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the cumulative run time ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cumulativeRunTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"cumulativeRunTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV22cumulativeRunTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/cumulativeRunTimeTicks":{"role":"symbol","title":"cumulativeRunTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cumulativeRunTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the cumulative run time ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/cumulativeRunTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/cumulativeruntimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/customrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/customrating.json new file mode 100644 index 000000000..35e1d67d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/customrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/customrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/customRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the custom rating."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"customRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12customRatingSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/customRating":{"role":"symbol","title":"customRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the custom rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/customRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/customrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/datecreated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/datecreated.json new file mode 100644 index 000000000..2e0485846 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/datecreated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/datecreated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/dateCreated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the date created."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateCreated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11dateCreated10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/dateCreated":{"role":"symbol","title":"dateCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/datecreated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/datelastmediaadded.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/datelastmediaadded.json new file mode 100644 index 000000000..fb191fcca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/datelastmediaadded.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastMediaAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/datelastmediaadded"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/dateLastMediaAdded","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastMediaAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateLastMediaAdded","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV18dateLastMediaAdded10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/dateLastMediaAdded":{"role":"symbol","title":"dateLastMediaAdded","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastMediaAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/dateLastMediaAdded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/datelastmediaadded"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/displayorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/displayorder.json new file mode 100644 index 000000000..2a574b1ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/displayorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/displayorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/displayOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the display order."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"displayOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12displayOrderSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/displayOrder":{"role":"symbol","title":"displayOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/displayOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/displayorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/displaypreferencesid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/displaypreferencesid.json new file mode 100644 index 000000000..ae7354c4d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/displaypreferencesid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/displaypreferencesid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/displayPreferencesID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the display preferences id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"displayPreferencesID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV20displayPreferencesIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/displayPreferencesID":{"role":"symbol","title":"displayPreferencesID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display preferences id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/displayPreferencesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/displaypreferencesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/enablemediasourcedisplay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/enablemediasourcedisplay.json new file mode 100644 index 000000000..3e8339f57 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/enablemediasourcedisplay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaSourceDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/enablemediasourcedisplay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/enableMediaSourceDisplay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaSourceDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMediaSourceDisplay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV24enableMediaSourceDisplaySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/enableMediaSourceDisplay":{"role":"symbol","title":"enableMediaSourceDisplay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaSourceDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/enableMediaSourceDisplay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/enablemediasourcedisplay"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/enddate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/enddate.json new file mode 100644 index 000000000..f80fb2c62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/enddate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/enddate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/endDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the end date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"endDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV7endDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/endDate":{"role":"symbol","title":"endDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/endDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/enddate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/episodecount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/episodecount.json new file mode 100644 index 000000000..ae9b94340 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/episodecount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/episodecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/episodeCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the episode count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"episodeCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12episodeCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/episodeCount":{"role":"symbol","title":"episodeCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the episode count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/episodeCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/episodecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/episodetitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/episodetitle.json new file mode 100644 index 000000000..89c88c843 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/episodetitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/episodetitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/episodeTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the episode title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"episodeTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12episodeTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/episodeTitle":{"role":"symbol","title":"episodeTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the episode title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/episodeTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/episodetitle"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/etag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/etag.json new file mode 100644 index 000000000..72c48c506 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/etag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"etag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/etag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/etag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the etag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"etag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"etag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV4etagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/etag":{"role":"symbol","title":"etag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"etag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the etag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/etag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/etag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/exposuretime.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/exposuretime.json new file mode 100644 index 000000000..d3042c5fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/exposuretime.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exposureTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/exposuretime"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/exposureTime","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exposureTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"exposureTime","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12exposureTimeSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/exposureTime":{"role":"symbol","title":"exposureTime","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exposureTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/exposureTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/exposuretime"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/externalurls.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/externalurls.json new file mode 100644 index 000000000..5a3e26724 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/externalurls.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalURLs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","preciseIdentifier":"s:11JellyfinAPI11ExternalURLV","text":"ExternalURL"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/externalurls"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/externalURLs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the external urls."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalURLs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalURL","preciseIdentifier":"s:11JellyfinAPI11ExternalURLV"},{"kind":"text","text":"]?"}],"title":"externalURLs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12externalURLsSayAA11ExternalURLVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/externalURLs":{"role":"symbol","title":"externalURLs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalURLs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalURL","preciseIdentifier":"s:11JellyfinAPI11ExternalURLV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the external urls."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/externalURLs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/externalurls"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL":{"role":"symbol","title":"ExternalURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalURL"}],"url":"\/documentation\/jellyfinapi\/externalurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/extratype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/extratype.json new file mode 100644 index 000000000..fc7937beb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/extratype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/extratype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/extraType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"extraType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9extraTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/extraType":{"role":"symbol","title":"extraType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/extraType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/extratype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/focallength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/focallength.json new file mode 100644 index 000000000..e3c0c4274 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/focallength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"focalLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/focallength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/focalLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"focalLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"focalLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11focalLengthSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/focalLength":{"role":"symbol","title":"focalLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"focalLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/focalLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/focallength"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/forcedsortname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/forcedsortname.json new file mode 100644 index 000000000..fce52b365 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/forcedsortname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"forcedSortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/forcedsortname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/forcedSortName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"forcedSortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"forcedSortName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV14forcedSortNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/forcedSortName":{"role":"symbol","title":"forcedSortName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"forcedSortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/forcedSortName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/forcedsortname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/genreitems.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/genreitems.json new file mode 100644 index 000000000..f4ce6a7b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/genreitems.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV","text":"NameGuidPair"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/genreitems"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/genreItems","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"title":"genreItems","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV10genreItemsSayAA12NameGuidPairVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/genreItems":{"role":"symbol","title":"genreItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/genreItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/genreitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/genres.json new file mode 100644 index 000000000..5b67d3865 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the genres."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"genres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV6genresSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the genres."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/hassubtitles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/hassubtitles.json new file mode 100644 index 000000000..9dbda7649 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/hassubtitles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/hassubtitles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/hasSubtitles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasSubtitles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12hasSubtitlesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/hasSubtitles":{"role":"symbol","title":"hasSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/hasSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/hassubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/height.json new file mode 100644 index 000000000..39d022bda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/id-685go.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/id-685go.json new file mode 100644 index 000000000..368633918 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/id-685go.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/id-685go"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/id-685go","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/id-685go":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/id-685go","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/id-685go"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/id-81yrv.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/id-81yrv.json new file mode 100644 index 000000000..59970ca3c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/id-81yrv.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/id-81yrv"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/id-81yrv","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI11BaseItemDtoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/id-81yrv":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/id-81yrv","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/id-81yrv"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/identifiable-implementations.json new file mode 100644 index 000000000..56389d5f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/id-81yrv"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/id-81yrv":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/id-81yrv","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/id-81yrv"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.property.json new file mode 100644 index 000000000..06514d6a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV","text":"ImageBlurHashes"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Maps image type to dictionary mapping image tag to blurhash value."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageBlurHashes-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV"},{"kind":"text","text":"?"}],"title":"imageBlurHashes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15imageBlurHashesAC05ImagegH0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/imageBlurHashes-swift.property":{"role":"symbol","title":"imageBlurHashes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageBlurHashes-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct.json new file mode 100644 index 000000000..0c13c480e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Maps image type to dictionary mapping image tag to blurhash value."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"title":"BaseItemDto.ImageBlurHashes","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/art","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/backdrop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/banner","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/box","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/boxRear","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/chapter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/disc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/logo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/menu","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/primary","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/screenshot","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/thumb"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/art":{"role":"symbol","title":"art","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/art","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/art"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/screenshot":{"role":"symbol","title":"screenshot","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/screenshot","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/screenshot"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/chapter":{"role":"symbol","title":"chapter","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/chapter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/chapter"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/box":{"role":"symbol","title":"box","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/box","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/box"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/menu":{"role":"symbol","title":"menu","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/menu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/menu"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/primary":{"role":"symbol","title":"primary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/primary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/primary"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/thumb":{"role":"symbol","title":"thumb","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/thumb","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/thumb"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/disc":{"role":"symbol","title":"disc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/disc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/disc"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/boxRear":{"role":"symbol","title":"boxRear","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/boxRear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/boxrear"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/logo":{"role":"symbol","title":"logo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/logo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/logo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/profile"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)":{"role":"symbol","title":"init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/banner":{"role":"symbol","title":"banner","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/banner","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/banner"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/backdrop":{"role":"symbol","title":"backdrop","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/backdrop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/backdrop"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/art.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/art.json new file mode 100644 index 000000000..dcf5e099b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/art.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/art"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/art","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"art","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV3artSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/art":{"role":"symbol","title":"art","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/art","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/art"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/backdrop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/backdrop.json new file mode 100644 index 000000000..466f97acb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/backdrop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/backdrop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/backdrop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"backdrop","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV8backdropSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/backdrop":{"role":"symbol","title":"backdrop","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/backdrop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/backdrop"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/banner.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/banner.json new file mode 100644 index 000000000..ee3a5a69d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/banner.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/banner"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/banner","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"banner","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV6bannerSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/banner":{"role":"symbol","title":"banner","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/banner","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/banner"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/box.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/box.json new file mode 100644 index 000000000..5bbefdb8d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/box.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/box"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/box","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"box","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV3boxSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/box":{"role":"symbol","title":"box","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/box","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/box"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/boxrear.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/boxrear.json new file mode 100644 index 000000000..3b28b2caa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/boxrear.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/boxrear"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/boxRear","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"boxRear","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV7boxRearSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/boxRear":{"role":"symbol","title":"boxRear","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/boxRear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/boxrear"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/chapter.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/chapter.json new file mode 100644 index 000000000..fbde038fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/chapter.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/chapter"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/chapter","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"chapter","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV7chapterSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/chapter":{"role":"symbol","title":"chapter","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/chapter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/chapter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/disc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/disc.json new file mode 100644 index 000000000..08686328d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/disc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/disc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/disc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"disc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV4discSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/disc":{"role":"symbol","title":"disc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/disc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/disc"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:).json new file mode 100644 index 000000000..cb39289b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"title":"init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV3art8backdrop6banner3box0L4Rear7chapter4disc4logo4menu7primary7profile10screenshot5thumbAESDyS2SGSg_A12Ttcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)":{"role":"symbol","title":"init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/init(from:).json new file mode 100644 index 000000000..8364202fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV4fromAEs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/logo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/logo.json new file mode 100644 index 000000000..81918052f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/logo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/logo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/logo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"logo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV4logoSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/logo":{"role":"symbol","title":"logo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/logo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/logo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/menu.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/menu.json new file mode 100644 index 000000000..8410bb00b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/menu.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/menu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/menu","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"menu","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV4menuSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/menu":{"role":"symbol","title":"menu","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/menu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/menu"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/primary.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/primary.json new file mode 100644 index 000000000..d2f6a4ec3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/primary.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/primary"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/primary","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"primary","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV7primarySDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/primary":{"role":"symbol","title":"primary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/primary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/primary"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/profile.json new file mode 100644 index 000000000..45616510b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV7profileSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/screenshot.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/screenshot.json new file mode 100644 index 000000000..bf2f906c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/screenshot.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/screenshot"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/screenshot","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"screenshot","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV10screenshotSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/screenshot":{"role":"symbol","title":"screenshot","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/screenshot","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/screenshot"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/thumb.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/thumb.json new file mode 100644 index 000000000..12579f447 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageblurhashes-swift.struct/thumb.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/thumb"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/thumb","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"thumb","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV5thumbSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct/thumb":{"role":"symbol","title":"thumb","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct\/thumb","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct\/thumb"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageorientation.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageorientation.json new file mode 100644 index 000000000..e9032ed35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imageorientation.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","preciseIdentifier":"s:11JellyfinAPI16ImageOrientationO","text":"ImageOrientation"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imageorientation"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageOrientation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageOrientation","preciseIdentifier":"s:11JellyfinAPI16ImageOrientationO"},{"kind":"text","text":"?"}],"title":"imageOrientation","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV16imageOrientationAA05ImageG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/imageOrientation":{"role":"symbol","title":"imageOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageOrientation","preciseIdentifier":"s:11JellyfinAPI16ImageOrientationO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageOrientation","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imagetags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imagetags.json new file mode 100644 index 000000000..016c8ff5a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/imagetags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/imagetags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageTags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the image tags."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"imageTags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9imageTagsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/imageTags":{"role":"symbol","title":"imageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/imageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/imagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/indexnumber.json new file mode 100644 index 000000000..a4e03cb99 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index number."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/indexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/indexnumberend.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/indexnumberend.json new file mode 100644 index 000000000..d2471e955 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/indexnumberend.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/indexnumberend"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/indexNumberEnd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index number end."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumberEnd","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV14indexNumberEnds5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/indexNumberEnd":{"role":"symbol","title":"indexNumberEnd","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index number end."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/indexNumberEnd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/indexnumberend"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/init(airdays:airtime:airsafterseasonnumber:airsbeforeepisodenumber:airsbeforeseasonnumber:album:albumartist:albumartists:albumcount:albumid:albumprimaryimagetag:altitude:aperture:artistcount:artistitems:artists:aspectratio:audio:backdropima-7mi7n.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/init(airdays:airtime:airsafterseasonnumber:airsbeforeepisodenumber:airsbeforeseasonnumber:album:albumartist:albumartists:albumcount:albumid:albumprimaryimagetag:altitude:aperture:artistcount:artistitems:artists:aspectratio:audio:backdropima-7mi7n.json new file mode 100644 index 000000000..b5b2fff90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/init(airdays:airtime:airsafterseasonnumber:airsbeforeepisodenumber:airsbeforeseasonnumber:album:albumartist:albumartists:albumcount:albumid:albumprimaryimagetag:altitude:aperture:artistcount:artistitems:artists:aspectratio:audio:backdropima-7mi7n.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"airDays"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO","text":"DayOfWeek"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"airTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"airsAfterSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"airsBeforeEpisodeNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"airsBeforeSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV","text":"NameGuidPair"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"albumPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"altitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"aperture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"artistItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV","text":"NameGuidPair"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","preciseIdentifier":"s:11JellyfinAPI12ProgramAudioO","text":"ProgramAudio"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"cameraMake"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cameraModel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canDelete"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canDownload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","preciseIdentifier":"s:11JellyfinAPI11ChannelTypeO","text":"ChannelType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"chapters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","preciseIdentifier":"s:11JellyfinAPI11ChapterInfoV","text":"ChapterInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"childCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"criticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cumulativeRunTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"customRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateLastMediaAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"displayOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMediaSourceDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"episodeTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"etag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"exposureTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"externalURLs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","preciseIdentifier":"s:11JellyfinAPI11ExternalURLV","text":"ExternalURL"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"extraType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"focalLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"forcedSortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"genreItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV","text":"NameGuidPair"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV","text":"ImageBlurHashes"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","preciseIdentifier":"s:11JellyfinAPI16ImageOrientationO","text":"ImageOrientation"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isLive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPremiere"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRepeat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isoSpeedRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO","text":"IsoType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"localTrailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"locationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lockData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lockedFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","preciseIdentifier":"s:11JellyfinAPI13MetadataFieldO","text":"MetadataField"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV","text":"MediaSourceInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV","text":"MediaStream"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"number"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"officialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentArtImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentArtItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentLogoImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentLogoItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"partCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"people"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV","text":"BaseItemPerson"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"playAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","preciseIdentifier":"s:11JellyfinAPI10PlayAccessO","text":"PlayAccess"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"preferredMetadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"productionLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"recursiveItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV","text":"MediaURL"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"screenshotImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seasonName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesStudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"shutterSpeed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"software"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sourceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"specialFeatureCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV","text":"NameGuidPair"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"taglines"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","preciseIdentifier":"s:11JellyfinAPI15UserItemDataDtoV","text":"UserItemDataDto"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO","text":"Video3DFormat"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO","text":"VideoType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/init(airdays:airtime:airsafterseasonnumber:airsbeforeepisodenumber:airsbeforeseasonnumber:album:albumartist:albumartists:albumcount:albumid:albumprimaryimagetag:altitude:aperture:artistcount:artistitems:artists:aspectratio:audio:backdropima-7mi7n"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/init(airDays:airTime:airsAfterSeasonNumber:airsBeforeEpisodeNumber:airsBeforeSeasonNumber:album:albumArtist:albumArtists:albumCount:albumID:albumPrimaryImageTag:altitude:aperture:artistCount:artistItems:artists:aspectRatio:audio:backdropImageTags:cameraMake:cameraModel:canDelete:canDownload:channelID:channelName:channelNumber:channelPrimaryImageTag:channelType:chapters:childCount:collectionType:communityRating:completionPercentage:container:criticRating:cumulativeRunTimeTicks:customRating:dateCreated:dateLastMediaAdded:displayOrder:displayPreferencesID:enableMediaSourceDisplay:endDate:episodeCount:episodeTitle:etag:exposureTime:externalURLs:extraType:focalLength:forcedSortName:genreItems:genres:hasSubtitles:height:id:imageBlurHashes:imageOrientation:imageTags:indexNumber:indexNumberEnd:isFolder:isHD:isKids:isLive:isMovie:isNews:isPlaceHolder:isPremiere:isRepeat:isSeries:isSports:isoSpeedRating:isoType:latitude:localTrailerCount:locationType:lockData:lockedFields:longitude:mediaSourceCount:mediaSources:mediaStreams:mediaType:movieCount:musicVideoCount:name:number:officialRating:originalTitle:overview:parentArtImageTag:parentArtItemID:parentBackdropImageTags:parentBackdropItemID:parentID:parentIndexNumber:parentLogoImageTag:parentLogoItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:partCount:path:people:playAccess:playlistItemID:preferredMetadataCountryCode:preferredMetadataLanguage:premiereDate:primaryImageAspectRatio:productionLocations:productionYear:programCount:programID:providerIDs:recursiveItemCount:remoteTrailers:runTimeTicks:screenshotImageTags:seasonID:seasonName:seriesCount:seriesID:seriesName:seriesPrimaryImageTag:seriesStudio:seriesThumbImageTag:seriesTimerID:serverID:shutterSpeed:software:songCount:sortName:sourceType:specialFeatureCount:startDate:status:studios:isSupportsSync:taglines:tags:timerID:trailerCount:type:userData:video3DFormat:videoType:width:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"airDays"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"airTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"airsAfterSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"airsBeforeEpisodeNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"airsBeforeSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"altitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"aperture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artistItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProgramAudio","preciseIdentifier":"s:11JellyfinAPI12ProgramAudioO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"cameraMake"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cameraModel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canDelete"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canDownload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ChannelType","preciseIdentifier":"s:11JellyfinAPI11ChannelTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"chapters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChapterInfo","preciseIdentifier":"s:11JellyfinAPI11ChapterInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"childCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"criticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cumulativeRunTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"customRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastMediaAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"displayOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMediaSourceDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"etag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exposureTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalURLs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalURL","preciseIdentifier":"s:11JellyfinAPI11ExternalURLV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"extraType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"focalLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"forcedSortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genreItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageOrientation","preciseIdentifier":"s:11JellyfinAPI16ImageOrientationO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPremiere"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRepeat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isoSpeedRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localTrailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lockData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lockedFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataField","preciseIdentifier":"s:11JellyfinAPI13MetadataFieldO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"number"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"officialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentArtImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentArtItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentLogoImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentLogoItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"partCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"people"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemPerson","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayAccess","preciseIdentifier":"s:11JellyfinAPI10PlayAccessO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredMetadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productionLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"recursiveItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"screenshotImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seasonName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"shutterSpeed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"software"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sourceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"specialFeatureCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"taglines"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserItemDataDto","preciseIdentifier":"s:11JellyfinAPI15UserItemDataDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(airDays:airTime:airsAfterSeasonNumber:airsBeforeEpisodeNumber:airsBeforeSeasonNumber:album:albumArtist:albumArtists:albumCount:albumID:albumPrimaryImageTag:altitude:aperture:artistCount:artistItems:artists:aspectRatio:audio:backdropImageTags:cameraMake:cameraModel:canDelete:canDownload:channelID:channelName:channelNumber:channelPrimaryImageTag:channelType:chapters:childCount:collectionType:communityRating:completionPercentage:container:criticRating:cumulativeRunTimeTicks:customRating:dateCreated:dateLastMediaAdded:displayOrder:displayPreferencesID:enableMediaSourceDisplay:endDate:episodeCount:episodeTitle:etag:exposureTime:externalURLs:extraType:focalLength:forcedSortName:genreItems:genres:hasSubtitles:height:id:imageBlurHashes:imageOrientation:imageTags:indexNumber:indexNumberEnd:isFolder:isHD:isKids:isLive:isMovie:isNews:isPlaceHolder:isPremiere:isRepeat:isSeries:isSports:isoSpeedRating:isoType:latitude:localTrailerCount:locationType:lockData:lockedFields:longitude:mediaSourceCount:mediaSources:mediaStreams:mediaType:movieCount:musicVideoCount:name:number:officialRating:originalTitle:overview:parentArtImageTag:parentArtItemID:parentBackdropImageTags:parentBackdropItemID:parentID:parentIndexNumber:parentLogoImageTag:parentLogoItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:partCount:path:people:playAccess:playlistItemID:preferredMetadataCountryCode:preferredMetadataLanguage:premiereDate:primaryImageAspectRatio:productionLocations:productionYear:programCount:programID:providerIDs:recursiveItemCount:remoteTrailers:runTimeTicks:screenshotImageTags:seasonID:seasonName:seriesCount:seriesID:seriesName:seriesPrimaryImageTag:seriesStudio:seriesThumbImageTag:seriesTimerID:serverID:shutterSpeed:software:songCount:sortName:sourceType:specialFeatureCount:startDate:status:studios:isSupportsSync:taglines:tags:timerID:trailerCount:type:userData:video3DFormat:videoType:width:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11BaseItemDtoV7airDays0F4Time21airsAfterSeasonNumber0i13BeforeEpisodeL00imkL05album0O6Artist0O7Artists0O5Count0O2ID0O15PrimaryImageTag8altitude8aperture06artistR00Y5Items7artists11aspectRatio5audio08backdropU4Tags10cameraMake11cameraModel9canDelete11canDownload07channelS011channelName07channelL007channeltuV011channelType8chapters05childR014collectionType15communityRating20completionPercentage9container12criticRating013cumulativeRunH5Ticks12customRating11dateCreated18dateLastMediaAdded12displayOrder018displayPreferencesS024enableMediaSourceDisplay7endDate07episodeR012episodeTitle4etag08exposureH012externalURLs9extraType11focalLength14forcedSortName05genreZ06genres12hasSubtitles6height2id15imageBlurHashes16imageOrientation9imageTags05indexL005indexL3End8isFolder4isHD6isKids6isLive7isMovie6isNews13isPlaceHolder10isPremiere8isRepeat8isSeries8isSports14isoSpeedRating7isoType8latitude012localTrailerR012locationType8lockData12lockedFields9longitude011mediaSourceR012mediaSources12mediaStreams9mediaType05movieR0010musicVideoR04name6number14officialRating13originalTitle8overview09parentArtuV009parentArtdS0014parentBackdropU4Tags014parentBackdropdS006parentS0011parentIndexL0010parentLogouV0010parentLogodS006parenttudS006parenttuV0011parentThumbuV0011parentThumbdS004partR04path6people10playAccess08playlistdS028preferredMetadataCountryCode25preferredMetadataLanguage12premiereDate07primaryU11AspectRatio19productionLocations14productionYear07programR007programS011providerIDs09recursivedR014remoteTrailers03runH5Ticks010screenshotU4Tags06seasonS010seasonName06seriesR006seriesS010seriesName06seriestuV012seriesStudio011seriesThumbuV0011seriesTimerS006serverS012shutterSpeed8software04songR08sortName10sourceType014specialFeatureR09startDate6status7studios14isSupportsSync8taglines4tags05timerS007trailerR04type8userData13video3DFormat9videoType5widthACSayAA9DayOfWeekOGSg_SSSgs5Int32VSgA133_A133_A130_A130_SayAA12NameGuidPairVGSgA133_10Foundation4UUIDVSgA130_SdSgA142_A133_A137_SaySSGSgA130_AA12ProgramAudioOSgA144_A130_A130_SbSgA148_A141_A130_A130_A130_AA11ChannelTypeOSgSayAA11ChapterInfoVGSgA133_A130_SfSgA142_A130_A156_s5Int64VSgA130_A138_4DateVSgA162_A130_A130_A148_A162_A133_A130_A130_A142_SayAA11ExternalURLVGSgA130_A142_A130_A137_A144_A148_A133_A141_AC0U10BlurHashesVSgAA0U11OrientationOSgSDyS2SGSgA133_A133_A148_A148_A148_A148_A148_A148_A148_A148_A148_A148_A148_A133_AA7IsoTypeOSgA142_A133_AA12LocationTypeOSgA148_SayAA13MetadataFieldOGSgA142_A133_SayAA15MediaSourceInfoVGSgSayAA11MediaStreamVGSgA130_A133_A133_A130_A130_A130_A130_A130_A130_A141_A144_A141_A141_A133_A130_A141_A130_A130_A130_A141_A133_A130_SayAA0cD6PersonVGSgAA10PlayAccessOSgA130_A130_A130_A162_A142_A144_A133_A133_A130_A174_A133_SayAA8MediaURLVGSgA159_A144_A141_A130_A133_A141_A130_A130_A130_A130_A130_A130_A142_A130_A133_A130_A130_A133_A162_A130_A137_A148_A144_A144_A130_A133_AA0cD4KindOSgAA04Userd4DataE0VSgAA13Video3DFormatOSgAA9VideoTypeOSgA133_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL":{"role":"symbol","title":"MediaURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaURL"}],"url":"\/documentation\/jellyfinapi\/mediaurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/init(airDays:airTime:airsAfterSeasonNumber:airsBeforeEpisodeNumber:airsBeforeSeasonNumber:album:albumArtist:albumArtists:albumCount:albumID:albumPrimaryImageTag:altitude:aperture:artistCount:artistItems:artists:aspectRatio:audio:backdropImageTags:cameraMake:cameraModel:canDelete:canDownload:channelID:channelName:channelNumber:channelPrimaryImageTag:channelType:chapters:childCount:collectionType:communityRating:completionPercentage:container:criticRating:cumulativeRunTimeTicks:customRating:dateCreated:dateLastMediaAdded:displayOrder:displayPreferencesID:enableMediaSourceDisplay:endDate:episodeCount:episodeTitle:etag:exposureTime:externalURLs:extraType:focalLength:forcedSortName:genreItems:genres:hasSubtitles:height:id:imageBlurHashes:imageOrientation:imageTags:indexNumber:indexNumberEnd:isFolder:isHD:isKids:isLive:isMovie:isNews:isPlaceHolder:isPremiere:isRepeat:isSeries:isSports:isoSpeedRating:isoType:latitude:localTrailerCount:locationType:lockData:lockedFields:longitude:mediaSourceCount:mediaSources:mediaStreams:mediaType:movieCount:musicVideoCount:name:number:officialRating:originalTitle:overview:parentArtImageTag:parentArtItemID:parentBackdropImageTags:parentBackdropItemID:parentID:parentIndexNumber:parentLogoImageTag:parentLogoItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:partCount:path:people:playAccess:playlistItemID:preferredMetadataCountryCode:preferredMetadataLanguage:premiereDate:primaryImageAspectRatio:productionLocations:productionYear:programCount:programID:providerIDs:recursiveItemCount:remoteTrailers:runTimeTicks:screenshotImageTags:seasonID:seasonName:seriesCount:seriesID:seriesName:seriesPrimaryImageTag:seriesStudio:seriesThumbImageTag:seriesTimerID:serverID:shutterSpeed:software:songCount:sortName:sourceType:specialFeatureCount:startDate:status:studios:isSupportsSync:taglines:tags:timerID:trailerCount:type:userData:video3DFormat:videoType:width:)":{"role":"symbol","title":"init(airDays:airTime:airsAfterSeasonNumber:airsBeforeEpisodeNumber:airsBeforeSeasonNumber:album:albumArtist:albumArtists:albumCount:albumID:albumPrimaryImageTag:altitude:aperture:artistCount:artistItems:artists:aspectRatio:audio:backdropImageTags:cameraMake:cameraModel:canDelete:canDownload:channelID:channelName:channelNumber:channelPrimaryImageTag:channelType:chapters:childCount:collectionType:communityRating:completionPercentage:container:criticRating:cumulativeRunTimeTicks:customRating:dateCreated:dateLastMediaAdded:displayOrder:displayPreferencesID:enableMediaSourceDisplay:endDate:episodeCount:episodeTitle:etag:exposureTime:externalURLs:extraType:focalLength:forcedSortName:genreItems:genres:hasSubtitles:height:id:imageBlurHashes:imageOrientation:imageTags:indexNumber:indexNumberEnd:isFolder:isHD:isKids:isLive:isMovie:isNews:isPlaceHolder:isPremiere:isRepeat:isSeries:isSports:isoSpeedRating:isoType:latitude:localTrailerCount:locationType:lockData:lockedFields:longitude:mediaSourceCount:mediaSources:mediaStreams:mediaType:movieCount:musicVideoCount:name:number:officialRating:originalTitle:overview:parentArtImageTag:parentArtItemID:parentBackdropImageTags:parentBackdropItemID:parentID:parentIndexNumber:parentLogoImageTag:parentLogoItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:partCount:path:people:playAccess:playlistItemID:preferredMetadataCountryCode:preferredMetadataLanguage:premiereDate:primaryImageAspectRatio:productionLocations:productionYear:programCount:programID:providerIDs:recursiveItemCount:remoteTrailers:runTimeTicks:screenshotImageTags:seasonID:seasonName:seriesCount:seriesID:seriesName:seriesPrimaryImageTag:seriesStudio:seriesThumbImageTag:seriesTimerID:serverID:shutterSpeed:software:songCount:sortName:sourceType:specialFeatureCount:startDate:status:studios:isSupportsSync:taglines:tags:timerID:trailerCount:type:userData:video3DFormat:videoType:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"airDays"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"airTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"airsAfterSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"airsBeforeEpisodeNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"airsBeforeSeasonNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"altitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"aperture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artistItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProgramAudio","preciseIdentifier":"s:11JellyfinAPI12ProgramAudioO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"cameraMake"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cameraModel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canDelete"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canDownload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ChannelType","preciseIdentifier":"s:11JellyfinAPI11ChannelTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"chapters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChapterInfo","preciseIdentifier":"s:11JellyfinAPI11ChapterInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"childCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"criticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cumulativeRunTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"customRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastMediaAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"displayOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMediaSourceDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"etag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exposureTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalURLs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalURL","preciseIdentifier":"s:11JellyfinAPI11ExternalURLV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"extraType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"focalLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"forcedSortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genreItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV15ImageBlurHashesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageOrientation","preciseIdentifier":"s:11JellyfinAPI16ImageOrientationO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPremiere"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRepeat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isoSpeedRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localTrailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lockData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lockedFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataField","preciseIdentifier":"s:11JellyfinAPI13MetadataFieldO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"number"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"officialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentArtImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentArtItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentLogoImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentLogoItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"partCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"people"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemPerson","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayAccess","preciseIdentifier":"s:11JellyfinAPI10PlayAccessO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredMetadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productionLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"recursiveItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"screenshotImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seasonName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"shutterSpeed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"software"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sourceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"specialFeatureCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"taglines"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserItemDataDto","preciseIdentifier":"s:11JellyfinAPI15UserItemDataDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/init(airDays:airTime:airsAfterSeasonNumber:airsBeforeEpisodeNumber:airsBeforeSeasonNumber:album:albumArtist:albumArtists:albumCount:albumID:albumPrimaryImageTag:altitude:aperture:artistCount:artistItems:artists:aspectRatio:audio:backdropImageTags:cameraMake:cameraModel:canDelete:canDownload:channelID:channelName:channelNumber:channelPrimaryImageTag:channelType:chapters:childCount:collectionType:communityRating:completionPercentage:container:criticRating:cumulativeRunTimeTicks:customRating:dateCreated:dateLastMediaAdded:displayOrder:displayPreferencesID:enableMediaSourceDisplay:endDate:episodeCount:episodeTitle:etag:exposureTime:externalURLs:extraType:focalLength:forcedSortName:genreItems:genres:hasSubtitles:height:id:imageBlurHashes:imageOrientation:imageTags:indexNumber:indexNumberEnd:isFolder:isHD:isKids:isLive:isMovie:isNews:isPlaceHolder:isPremiere:isRepeat:isSeries:isSports:isoSpeedRating:isoType:latitude:localTrailerCount:locationType:lockData:lockedFields:longitude:mediaSourceCount:mediaSources:mediaStreams:mediaType:movieCount:musicVideoCount:name:number:officialRating:originalTitle:overview:parentArtImageTag:parentArtItemID:parentBackdropImageTags:parentBackdropItemID:parentID:parentIndexNumber:parentLogoImageTag:parentLogoItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:partCount:path:people:playAccess:playlistItemID:preferredMetadataCountryCode:preferredMetadataLanguage:premiereDate:primaryImageAspectRatio:productionLocations:productionYear:programCount:programID:providerIDs:recursiveItemCount:remoteTrailers:runTimeTicks:screenshotImageTags:seasonID:seasonName:seriesCount:seriesID:seriesName:seriesPrimaryImageTag:seriesStudio:seriesThumbImageTag:seriesTimerID:serverID:shutterSpeed:software:songCount:sortName:sourceType:specialFeatureCount:startDate:status:studios:isSupportsSync:taglines:tags:timerID:trailerCount:type:userData:video3DFormat:videoType:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/init(airdays:airtime:airsafterseasonnumber:airsbeforeepisodenumber:airsbeforeseasonnumber:album:albumartist:albumartists:albumcount:albumid:albumprimaryimagetag:altitude:aperture:artistcount:artistitems:artists:aspectratio:audio:backdropima-7mi7n"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemDto.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the blurhashes for the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemdto\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL":{"role":"symbol","title":"ExternalURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalURL"}],"url":"\/documentation\/jellyfinapi\/externalurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/init(from:).json new file mode 100644 index 000000000..1b58c9458 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11BaseItemDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isfolder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isfolder.json new file mode 100644 index 000000000..8d3aa94db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isfolder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/isfolder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isFolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is folder."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFolder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8isFolderSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isFolder":{"role":"symbol","title":"isFolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is folder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isfolder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/ishd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/ishd.json new file mode 100644 index 000000000..491190f0c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/ishd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/ishd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isHD","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is HD."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isHD","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV4isHDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isHD":{"role":"symbol","title":"isHD","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is HD."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isHD","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/iskids.json new file mode 100644 index 000000000..32d86ce96 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is kids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is kids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/islive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/islive.json new file mode 100644 index 000000000..1163b9066 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/islive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/islive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isLive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is live."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isLive","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV6isLiveSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isLive":{"role":"symbol","title":"isLive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is live."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isLive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/islive"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/ismovie.json new file mode 100644 index 000000000..11cd7f6dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is movie."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is movie."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/ismovie"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isnews.json new file mode 100644 index 000000000..bdd90891a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is news."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is news."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isnews"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isospeedrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isospeedrating.json new file mode 100644 index 000000000..42020456e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isospeedrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoSpeedRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/isospeedrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isoSpeedRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoSpeedRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"isoSpeedRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV14isoSpeedRatings5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isoSpeedRating":{"role":"symbol","title":"isoSpeedRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoSpeedRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isoSpeedRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isospeedrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isotype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isotype.json new file mode 100644 index 000000000..72d2e513e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isotype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO","text":"IsoType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/isotype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isoType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the iso."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?"}],"title":"isoType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV7isoTypeAA03IsoG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isoType":{"role":"symbol","title":"isoType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the iso."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isoType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isplaceholder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isplaceholder.json new file mode 100644 index 000000000..1e960f781 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isplaceholder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/isplaceholder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isPlaceHolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is place holder."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlaceHolder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV13isPlaceHolderSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isPlaceHolder":{"role":"symbol","title":"isPlaceHolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is place holder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isPlaceHolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isplaceholder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/ispremiere.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/ispremiere.json new file mode 100644 index 000000000..3e9b75af7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/ispremiere.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPremiere"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/ispremiere"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isPremiere","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is premiere."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPremiere"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPremiere","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV10isPremiereSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isPremiere":{"role":"symbol","title":"isPremiere","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPremiere"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is premiere."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isPremiere","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/ispremiere"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isrepeat.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isrepeat.json new file mode 100644 index 000000000..ed35c7459 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isrepeat.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRepeat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/isrepeat"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isRepeat","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is repeat."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRepeat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRepeat","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8isRepeatSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isRepeat":{"role":"symbol","title":"isRepeat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRepeat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is repeat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isRepeat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isrepeat"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isseries.json new file mode 100644 index 000000000..04dcc5ffb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is series."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/issports.json new file mode 100644 index 000000000..0ccb5bbd6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is sports."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is sports."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/issupportssync.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/issupportssync.json new file mode 100644 index 000000000..e53f30564 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/issupportssync.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/issupportssync"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSupportsSync","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports synchronize]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsSync","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV14isSupportsSyncSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/isSupportsSync":{"role":"symbol","title":"isSupportsSync","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports synchronize]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/isSupportsSync","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/issupportssync"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/latitude.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/latitude.json new file mode 100644 index 000000000..c8d44bd12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/latitude.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/latitude"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/latitude","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"latitude","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8latitudeSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/latitude":{"role":"symbol","title":"latitude","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/latitude","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/latitude"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/localtrailercount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/localtrailercount.json new file mode 100644 index 000000000..f1ddf632a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/localtrailercount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localTrailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/localtrailercount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/localTrailerCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the local trailer count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localTrailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"localTrailerCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV17localTrailerCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/localTrailerCount":{"role":"symbol","title":"localTrailerCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localTrailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the local trailer count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/localTrailerCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/localtrailercount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/locationtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/locationtype.json new file mode 100644 index 000000000..d055fb51c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/locationtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/locationtype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/locationType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the location."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"?"}],"title":"locationType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12locationTypeAA08LocationG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/locationType":{"role":"symbol","title":"locationType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the location."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/locationType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/lockdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/lockdata.json new file mode 100644 index 000000000..f09674ba6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/lockdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/lockdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/lockData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [enable internet providers]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"lockData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8lockDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/lockData":{"role":"symbol","title":"lockData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [enable internet providers]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/lockData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/lockdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/lockedfields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/lockedfields.json new file mode 100644 index 000000000..79fd0bdb1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/lockedfields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockedFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","preciseIdentifier":"s:11JellyfinAPI13MetadataFieldO","text":"MetadataField"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/lockedfields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/lockedFields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the locked fields."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockedFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataField","preciseIdentifier":"s:11JellyfinAPI13MetadataFieldO"},{"kind":"text","text":"]?"}],"title":"lockedFields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12lockedFieldsSayAA13MetadataFieldOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/lockedFields":{"role":"symbol","title":"lockedFields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockedFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataField","preciseIdentifier":"s:11JellyfinAPI13MetadataFieldO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the locked fields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/lockedFields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/lockedfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/longitude.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/longitude.json new file mode 100644 index 000000000..4c891aef6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/longitude.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/longitude"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/longitude","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"longitude","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9longitudeSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/longitude":{"role":"symbol","title":"longitude","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/longitude","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/longitude"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediasourcecount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediasourcecount.json new file mode 100644 index 000000000..c9d69a05d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediasourcecount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/mediasourcecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaSourceCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"mediaSourceCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV16mediaSourceCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/mediaSourceCount":{"role":"symbol","title":"mediaSourceCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaSourceCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/mediasourcecount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediasources.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediasources.json new file mode 100644 index 000000000..5ede384ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediasources.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV","text":"MediaSourceInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/mediasources"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaSources","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the media versions."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?"}],"title":"mediaSources","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12mediaSourcesSayAA15MediaSourceInfoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/mediaSources":{"role":"symbol","title":"mediaSources","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the media versions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaSources","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/mediasources"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediastreams.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediastreams.json new file mode 100644 index 000000000..0e8bebba8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediastreams.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV","text":"MediaStream"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/mediastreams"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaStreams","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the media streams."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?"}],"title":"mediaStreams","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12mediaStreamsSayAA11MediaStreamVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/mediaStreams":{"role":"symbol","title":"mediaStreams","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the media streams."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaStreams","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/mediastreams"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediatype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediatype.json new file mode 100644 index 000000000..4d25db909 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/mediatype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/mediatype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the media."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9mediaTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/mediaType":{"role":"symbol","title":"mediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the media."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/mediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/mediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/moviecount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/moviecount.json new file mode 100644 index 000000000..712269f33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/moviecount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/moviecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/movieCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the movie count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"movieCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV10movieCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/movieCount":{"role":"symbol","title":"movieCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the movie count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/movieCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/moviecount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/musicvideocount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/musicvideocount.json new file mode 100644 index 000000000..864f5dbef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/musicvideocount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/musicvideocount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/musicVideoCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the music video count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"musicVideoCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV15musicVideoCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/musicVideoCount":{"role":"symbol","title":"musicVideoCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the music video count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/musicVideoCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/musicvideocount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/name.json new file mode 100644 index 000000000..df2e51ca0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/number.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/number.json new file mode 100644 index 000000000..28e73f36f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/number.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"number"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/number"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/number","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the number."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"number"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"number","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV6numberSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/number":{"role":"symbol","title":"number","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"number"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/number","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/number"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/officialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/officialrating.json new file mode 100644 index 000000000..f22d3103f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/officialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/officialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/officialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the official rating."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"officialRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV14officialRatingSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/officialRating":{"role":"symbol","title":"officialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the official rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/officialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/officialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/originaltitle.json new file mode 100644 index 000000000..77a10e5b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/overview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/overview.json new file mode 100644 index 000000000..10287d71b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/overview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/overview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/overview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the overview."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"overview","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8overviewSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the overview."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentartimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentartimagetag.json new file mode 100644 index 000000000..4b5fd0702 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentartimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentArtImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentartimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentArtImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent art image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentArtImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentArtImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV17parentArtImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentArtImageTag":{"role":"symbol","title":"parentArtImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentArtImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent art image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentArtImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentartimagetag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentartitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentartitemid.json new file mode 100644 index 000000000..841e3779e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentartitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentArtItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentartitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentArtItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentArtItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentArtItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV09parentArtD2ID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentArtItemID":{"role":"symbol","title":"parentArtItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentArtItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentArtItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentartitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentbackdropimagetags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentbackdropimagetags.json new file mode 100644 index 000000000..82db1c2b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentbackdropimagetags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentbackdropimagetags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentBackdropImageTags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent backdrop image tags."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"parentBackdropImageTags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV23parentBackdropImageTagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentBackdropImageTags":{"role":"symbol","title":"parentBackdropImageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the parent backdrop image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentBackdropImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentbackdropimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentbackdropitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentbackdropitemid.json new file mode 100644 index 000000000..23a79e204 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentbackdropitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentbackdropitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentBackdropItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentBackdropItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV014parentBackdropD2ID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentBackdropItemID":{"role":"symbol","title":"parentBackdropItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentBackdropItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentbackdropitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentid.json new file mode 100644 index 000000000..e57f69009 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentindexnumber.json new file mode 100644 index 000000000..73ff5e57c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent index number."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent index number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentindexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentlogoimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentlogoimagetag.json new file mode 100644 index 000000000..0df7cb711 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentlogoimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentLogoImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentlogoimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentLogoImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent logo image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentLogoImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentLogoImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV18parentLogoImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentLogoImageTag":{"role":"symbol","title":"parentLogoImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentLogoImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent logo image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentLogoImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentlogoimagetag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentlogoitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentlogoitemid.json new file mode 100644 index 000000000..ae42c43b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentlogoitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentLogoItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentlogoitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentLogoItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentLogoItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentLogoItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV010parentLogoD2ID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentLogoItemID":{"role":"symbol","title":"parentLogoItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentLogoItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentLogoItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentlogoitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentprimaryimageitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentprimaryimageitemid.json new file mode 100644 index 000000000..2462435a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentprimaryimageitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentprimaryimageitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentPrimaryImageItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent primary image item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentPrimaryImageItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV018parentPrimaryImageD2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentPrimaryImageItemID":{"role":"symbol","title":"parentPrimaryImageItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent primary image item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentPrimaryImageItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentprimaryimageitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentprimaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentprimaryimagetag.json new file mode 100644 index 000000000..4cd848d4b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentprimaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentprimaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentPrimaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent primary image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentPrimaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV21parentPrimaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentPrimaryImageTag":{"role":"symbol","title":"parentPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentthumbimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentthumbimagetag.json new file mode 100644 index 000000000..85c51ebe3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentthumbimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentthumbimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentThumbImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent thumb image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentThumbImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV19parentThumbImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentThumbImageTag":{"role":"symbol","title":"parentThumbImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent thumb image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentThumbImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentthumbimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentthumbitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentthumbitemid.json new file mode 100644 index 000000000..94947292e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/parentthumbitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/parentthumbitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentThumbItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent thumb item id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentThumbItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV011parentThumbD2ID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/parentThumbItemID":{"role":"symbol","title":"parentThumbItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent thumb item id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/parentThumbItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/parentthumbitemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/partcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/partcount.json new file mode 100644 index 000000000..3bc50f6e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/partcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"partCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/partcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/partCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the part count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"partCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"partCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9partCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/partCount":{"role":"symbol","title":"partCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"partCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the part count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/partCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/partcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/path.json new file mode 100644 index 000000000..0b37b6956 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/people.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/people.json new file mode 100644 index 000000000..184dfd2a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/people.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"people"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV","text":"BaseItemPerson"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/people"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/people","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the people."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"people"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemPerson","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV"},{"kind":"text","text":"]?"}],"title":"people","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV6peopleSayAA0cD6PersonVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/people":{"role":"symbol","title":"people","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"people"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemPerson","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the people."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/people","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/people"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/playaccess.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/playaccess.json new file mode 100644 index 000000000..5cc8f83c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/playaccess.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","preciseIdentifier":"s:11JellyfinAPI10PlayAccessO","text":"PlayAccess"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/playaccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/playAccess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play access."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayAccess","preciseIdentifier":"s:11JellyfinAPI10PlayAccessO"},{"kind":"text","text":"?"}],"title":"playAccess","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV10playAccessAA04PlayG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/playAccess":{"role":"symbol","title":"playAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayAccess","preciseIdentifier":"s:11JellyfinAPI10PlayAccessO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play access."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/playAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/playlistitemid.json new file mode 100644 index 000000000..bcc91bb25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playlist item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV08playlistD2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/preferredmetadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/preferredmetadatacountrycode.json new file mode 100644 index 000000000..87f817066 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/preferredmetadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/preferredmetadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/preferredMetadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"preferredMetadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV28preferredMetadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/preferredMetadataCountryCode":{"role":"symbol","title":"preferredMetadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/preferredMetadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/preferredmetadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/preferredmetadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/preferredmetadatalanguage.json new file mode 100644 index 000000000..c6e2affe8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/preferredmetadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/preferredmetadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/preferredMetadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"preferredMetadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV25preferredMetadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/preferredMetadataLanguage":{"role":"symbol","title":"preferredMetadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/preferredMetadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/preferredmetadatalanguage"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/premieredate.json new file mode 100644 index 000000000..e5c20a1d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the premiere date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12premiereDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the premiere date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/premieredate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/primaryimageaspectratio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/primaryimageaspectratio.json new file mode 100644 index 000000000..0c89dd7ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/primaryimageaspectratio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/primaryimageaspectratio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/primaryImageAspectRatio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the primary image aspect ratio, after image enhancements."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"primaryImageAspectRatio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV23primaryImageAspectRatioSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/primaryImageAspectRatio":{"role":"symbol","title":"primaryImageAspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image aspect ratio, after image enhancements."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/primaryImageAspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/primaryimageaspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/productionlocations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/productionlocations.json new file mode 100644 index 000000000..85e46a31c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/productionlocations.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/productionlocations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/productionLocations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"productionLocations","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV19productionLocationsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/productionLocations":{"role":"symbol","title":"productionLocations","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/productionLocations","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/productionlocations"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/productionyear.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/productionyear.json new file mode 100644 index 000000000..ad5c5aa70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/productionyear.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/productionyear"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/productionYear","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the production year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"productionYear","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV14productionYears5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/productionYear":{"role":"symbol","title":"productionYear","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the production year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/productionYear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/productionyear"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/programcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/programcount.json new file mode 100644 index 000000000..9f5c198ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/programcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/programcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/programCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"programCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12programCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/programCount":{"role":"symbol","title":"programCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/programCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/programcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/programid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/programid.json new file mode 100644 index 000000000..e305ee822 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/programid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/programid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/programID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the program identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"programID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9programIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/programID":{"role":"symbol","title":"programID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/programID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/programid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/providerids.json new file mode 100644 index 000000000..8700bbed1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/recursiveitemcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/recursiveitemcount.json new file mode 100644 index 000000000..8fac0a3b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/recursiveitemcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recursiveItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/recursiveitemcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/recursiveItemCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the recursive item count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recursiveItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"recursiveItemCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV09recursiveD5Counts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/recursiveItemCount":{"role":"symbol","title":"recursiveItemCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recursiveItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the recursive item count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/recursiveItemCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/recursiveitemcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/remotetrailers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/remotetrailers.json new file mode 100644 index 000000000..f22798b87 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/remotetrailers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV","text":"MediaURL"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/remotetrailers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/remoteTrailers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the trailer urls."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?"}],"title":"remoteTrailers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV14remoteTrailersSayAA8MediaURLVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL":{"role":"symbol","title":"MediaURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaURL"}],"url":"\/documentation\/jellyfinapi\/mediaurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/remoteTrailers":{"role":"symbol","title":"remoteTrailers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaURL","preciseIdentifier":"s:11JellyfinAPI8MediaURLV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the trailer urls."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/remoteTrailers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/remotetrailers"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/runtimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/runtimeticks.json new file mode 100644 index 000000000..5f23538bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/runtimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/runtimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/runTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the run time ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"runTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12runTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/runTimeTicks":{"role":"symbol","title":"runTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the run time ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/runTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/runtimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/screenshotimagetags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/screenshotimagetags.json new file mode 100644 index 000000000..fd649a6a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/screenshotimagetags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshotImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/screenshotimagetags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/screenshotImageTags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the screenshot image tags."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshotImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"screenshotImageTags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV19screenshotImageTagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/screenshotImageTags":{"role":"symbol","title":"screenshotImageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshotImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the screenshot image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/screenshotImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/screenshotimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seasonid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seasonid.json new file mode 100644 index 000000000..1bd8caa3f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seasonid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/seasonid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seasonID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the season identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"seasonID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8seasonID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seasonID":{"role":"symbol","title":"seasonID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the season identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seasonID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seasonid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seasonname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seasonname.json new file mode 100644 index 000000000..fec4bb835 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seasonname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/seasonname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seasonName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the season."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seasonName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV10seasonNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seasonName":{"role":"symbol","title":"seasonName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the season."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seasonName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seasonname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriescount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriescount.json new file mode 100644 index 000000000..47e078dd9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriescount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/seriescount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the series count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"seriesCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV11seriesCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesCount":{"role":"symbol","title":"seriesCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriescount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesid.json new file mode 100644 index 000000000..c803cb90e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/seriesid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the series id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"seriesID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8seriesID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesID":{"role":"symbol","title":"seriesID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriesid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesname.json new file mode 100644 index 000000000..262a03514 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/seriesname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the series."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV10seriesNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesName":{"role":"symbol","title":"seriesName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriesname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesprimaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesprimaryimagetag.json new file mode 100644 index 000000000..8ecc5bf67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesprimaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/seriesprimaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesPrimaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the series primary image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesPrimaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV21seriesPrimaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesPrimaryImageTag":{"role":"symbol","title":"seriesPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriesprimaryimagetag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesstudio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesstudio.json new file mode 100644 index 000000000..3490d3244 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesstudio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/seriesstudio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesStudio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the series studio."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesStudio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12seriesStudioSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesStudio":{"role":"symbol","title":"seriesStudio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series studio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesStudio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriesstudio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesthumbimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesthumbimagetag.json new file mode 100644 index 000000000..7ee256005 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriesthumbimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/seriesthumbimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesThumbImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the series thumb image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesThumbImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV19seriesThumbImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesThumbImageTag":{"role":"symbol","title":"seriesThumbImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series thumb image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesThumbImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriesthumbimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriestimerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriestimerid.json new file mode 100644 index 000000000..6f58df05c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/seriestimerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/seriestimerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesTimerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the series timer identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesTimerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV13seriesTimerIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series timer identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/serverid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/serverid.json new file mode 100644 index 000000000..55f4f7e60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/serverid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/serverid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/serverID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serverID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8serverIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/shutterspeed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/shutterspeed.json new file mode 100644 index 000000000..2d5f7cd44 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/shutterspeed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shutterSpeed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/shutterspeed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/shutterSpeed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shutterSpeed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"shutterSpeed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12shutterSpeedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/shutterSpeed":{"role":"symbol","title":"shutterSpeed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shutterSpeed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/shutterSpeed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/shutterspeed"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/software.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/software.json new file mode 100644 index 000000000..749e057a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/software.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"software"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/software"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/software","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"software"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"software","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8softwareSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/software":{"role":"symbol","title":"software","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"software"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/software","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/software"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/songcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/songcount.json new file mode 100644 index 000000000..b0e7f4eb3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/songcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/songcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/songCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the song count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"songCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9songCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/songCount":{"role":"symbol","title":"songCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the song count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/songCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/songcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/sortname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/sortname.json new file mode 100644 index 000000000..dbb0d841a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/sortname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/sortname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/sortName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the sort."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sortName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8sortNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/sortName":{"role":"symbol","title":"sortName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the sort."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/sortName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/sortname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/sourcetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/sourcetype.json new file mode 100644 index 000000000..2030ee3ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/sourcetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/sourcetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/sourceType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the source."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sourceType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV10sourceTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/sourceType":{"role":"symbol","title":"sourceType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/sourceType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/sourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/specialfeaturecount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/specialfeaturecount.json new file mode 100644 index 000000000..f7a6f78ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/specialfeaturecount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialFeatureCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/specialfeaturecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/specialFeatureCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the special feature count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialFeatureCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"specialFeatureCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV19specialFeatureCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/specialFeatureCount":{"role":"symbol","title":"specialFeatureCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialFeatureCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the special feature count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/specialFeatureCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/specialfeaturecount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/startdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/startdate.json new file mode 100644 index 000000000..15c32a714 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/startdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/startdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/startDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start date of the recording, in UTC."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"startDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9startDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/startDate":{"role":"symbol","title":"startDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start date of the recording, in UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/startDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/startdate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/status.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/status.json new file mode 100644 index 000000000..a8d258bc9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/status.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/status"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/status","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the status."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"status","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV6statusSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/studios.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/studios.json new file mode 100644 index 000000000..9d00719a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/studios.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV","text":"NameGuidPair"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/studios"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/studios","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the studios."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"title":"studios","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV7studiosSayAA12NameGuidPairVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the studios."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/taglines.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/taglines.json new file mode 100644 index 000000000..96da361fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/taglines.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"taglines"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/taglines"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/taglines","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the taglines."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"taglines"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"taglines","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8taglinesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/taglines":{"role":"symbol","title":"taglines","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"taglines"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the taglines."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/taglines","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/taglines"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/tags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/tags.json new file mode 100644 index 000000000..27f747b93 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/tags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/tags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/tags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the tags."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"tags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV4tagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/tags"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/timerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/timerid.json new file mode 100644 index 000000000..18041c15b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/timerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/timerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/timerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the timer identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"timerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV7timerIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/timerID":{"role":"symbol","title":"timerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the timer identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/timerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/timerid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/trailercount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/trailercount.json new file mode 100644 index 000000000..78a68a063 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/trailercount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/trailercount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/trailerCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the trailer count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"trailerCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV12trailerCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/trailerCount":{"role":"symbol","title":"trailerCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the trailer count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/trailerCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/trailercount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/type.json new file mode 100644 index 000000000..e3eaf85dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV4typeAA0cD4KindOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/userdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/userdata.json new file mode 100644 index 000000000..d9dc85751 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/userdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","preciseIdentifier":"s:11JellyfinAPI15UserItemDataDtoV","text":"UserItemDataDto"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/userdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/userData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the user data for this item based on the user it’s being requested for."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserItemDataDto","preciseIdentifier":"s:11JellyfinAPI15UserItemDataDtoV"},{"kind":"text","text":"?"}],"title":"userData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV8userDataAA04UserdgE0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/userData":{"role":"symbol","title":"userData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserItemDataDto","preciseIdentifier":"s:11JellyfinAPI15UserItemDataDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user data for this item based on the user it’s being requested for."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/userData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/userdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/video3dformat.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/video3dformat.json new file mode 100644 index 000000000..56e277ef9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/video3dformat.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO","text":"Video3DFormat"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/video3dformat"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/video3DFormat","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the video3 D format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?"}],"title":"video3DFormat","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV13video3DFormatAA06Video3G0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/video3DFormat":{"role":"symbol","title":"video3DFormat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the video3 D format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/video3DFormat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/video3dformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/videotype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/videotype.json new file mode 100644 index 000000000..20fc041d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/videotype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO","text":"VideoType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/videotype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/videoType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the video."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?"}],"title":"videoType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV9videoTypeAA05VideoG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/videoType":{"role":"symbol","title":"videoType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the video."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/videoType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/videotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/width.json new file mode 100644 index 000000000..df3eab8dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdto/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdto\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11BaseItemDtoV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdto\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult.json new file mode 100644 index 000000000..bf747e79a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdtoqueryresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"title":"BaseItemDtoQueryResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI22BaseItemDtoQueryResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/init(items:startIndex:totalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/items","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/totalRecordCount"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/startindex"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/items"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/totalrecordcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/init(from:).json new file mode 100644 index 000000000..b8c188cc9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22BaseItemDtoQueryResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/init(items:startindex:totalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/init(items:startindex:totalrecordcount:).json new file mode 100644 index 000000000..b801193a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/init(items:startindex:totalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/init(items:startindex:totalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/init(items:startIndex:totalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(items:startIndex:totalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22BaseItemDtoQueryResultV5items10startIndex16totalRecordCountACSayAA0cdE0VGSg_s5Int32VSgAMtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/items.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/items.json new file mode 100644 index 000000000..49065c5ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/items.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/items"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/items","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"title":"items","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22BaseItemDtoQueryResultV5itemsSayAA0cdE0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/items"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/startindex.json new file mode 100644 index 000000000..4e5ea6f59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22BaseItemDtoQueryResultV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/totalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/totalrecordcount.json new file mode 100644 index 000000000..82f83d0ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemdtoqueryresult/totalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/totalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/totalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"totalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22BaseItemDtoQueryResultV16totalRecordCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult\/totalrecordcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind.json new file mode 100644 index 000000000..e9be0508d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The base item kind."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"title":"BaseItemKind","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI12BaseItemKindO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/aggregateFolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/audio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/audioBook","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/basePluginFolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/book","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/boxSet","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/channel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/channelFolderItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/collectionFolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/episode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/folder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/genre","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/liveTvChannel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/liveTvProgram","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/manualPlaylistsFolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/movie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicAlbum","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicArtist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicGenre","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicVideo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/person","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/photo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/photoAlbum","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/playlist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/playlistsFolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/program","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/recording","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/season","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/series","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/studio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/trailer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/tvChannel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/tvProgram","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/userRootFolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/userView","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/video","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/year"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/liveTvChannel":{"role":"symbol","title":"BaseItemKind.liveTvChannel","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvChannel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/liveTvChannel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/livetvchannel"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/liveTvProgram":{"role":"symbol","title":"BaseItemKind.liveTvProgram","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvProgram"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/liveTvProgram","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/livetvprogram"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/trailer":{"role":"symbol","title":"BaseItemKind.trailer","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/trailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/trailer"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/userRootFolder":{"role":"symbol","title":"BaseItemKind.userRootFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userRootFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/userRootFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/userrootfolder"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/year":{"role":"symbol","title":"BaseItemKind.year","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/musicGenre":{"role":"symbol","title":"BaseItemKind.musicGenre","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicGenre"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicGenre","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/musicgenre"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/tvProgram":{"role":"symbol","title":"BaseItemKind.tvProgram","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvProgram"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/tvProgram","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/tvprogram"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/photo":{"role":"symbol","title":"BaseItemKind.photo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/photo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/photo"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/audio":{"role":"symbol","title":"BaseItemKind.audio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/audio"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/channelFolderItem":{"role":"symbol","title":"BaseItemKind.channelFolderItem","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelFolderItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/channelFolderItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/channelfolderitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/person":{"role":"symbol","title":"BaseItemKind.person","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/person"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/season":{"role":"symbol","title":"BaseItemKind.season","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/season","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/season"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/musicArtist":{"role":"symbol","title":"BaseItemKind.musicArtist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicArtist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/musicartist"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/audioBook":{"role":"symbol","title":"BaseItemKind.audioBook","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBook"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/audioBook","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/audiobook"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/genre":{"role":"symbol","title":"BaseItemKind.genre","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genre"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/genre","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/genre"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/userView":{"role":"symbol","title":"BaseItemKind.userView","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userView"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/userView","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/userview"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/collectionFolder":{"role":"symbol","title":"BaseItemKind.collectionFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/collectionFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/collectionfolder"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/aggregateFolder":{"role":"symbol","title":"BaseItemKind.aggregateFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"aggregateFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/aggregateFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/aggregatefolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/boxSet":{"role":"symbol","title":"BaseItemKind.boxSet","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSet"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/boxSet","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/boxset"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/basePluginFolder":{"role":"symbol","title":"BaseItemKind.basePluginFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"basePluginFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/basePluginFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/basepluginfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/studio":{"role":"symbol","title":"BaseItemKind.studio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/studio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/studio"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/video":{"role":"symbol","title":"BaseItemKind.video","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/video","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/video"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/recording":{"role":"symbol","title":"BaseItemKind.recording","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recording"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/recording","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/recording"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/musicAlbum":{"role":"symbol","title":"BaseItemKind.musicAlbum","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicAlbum"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicAlbum","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/musicalbum"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/playlist":{"role":"symbol","title":"BaseItemKind.playlist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/playlist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/playlist"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/musicVideo":{"role":"symbol","title":"BaseItemKind.musicVideo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicVideo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/musicvideo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/program":{"role":"symbol","title":"BaseItemKind.program","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"program"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/program","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/program"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/tvChannel":{"role":"symbol","title":"BaseItemKind.tvChannel","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvChannel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/tvChannel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/tvchannel"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/channel":{"role":"symbol","title":"BaseItemKind.channel","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/channel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/channel"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/book":{"role":"symbol","title":"BaseItemKind.book","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"book"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/book","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/book"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/series":{"role":"symbol","title":"BaseItemKind.series","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/series","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/series"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/manualPlaylistsFolder":{"role":"symbol","title":"BaseItemKind.manualPlaylistsFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"manualPlaylistsFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/manualPlaylistsFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/manualplaylistsfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/photoAlbum":{"role":"symbol","title":"BaseItemKind.photoAlbum","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photoAlbum"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/photoAlbum","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/photoalbum"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/episode":{"role":"symbol","title":"BaseItemKind.episode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/episode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/episode"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/playlistsFolder":{"role":"symbol","title":"BaseItemKind.playlistsFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistsFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/playlistsFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/playlistsfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/movie":{"role":"symbol","title":"BaseItemKind.movie","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/movie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/movie"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/folder":{"role":"symbol","title":"BaseItemKind.folder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"folder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/folder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/folder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/!=(_:_:).json new file mode 100644 index 000000000..20609a441 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI12BaseItemKindO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/aggregatefolder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/aggregatefolder.json new file mode 100644 index 000000000..657daefde --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/aggregatefolder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"aggregateFolder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/aggregatefolder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/aggregateFolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"aggregateFolder"}],"title":"BaseItemKind.aggregateFolder","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO15aggregateFolderyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/aggregateFolder":{"role":"symbol","title":"BaseItemKind.aggregateFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"aggregateFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/aggregateFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/aggregatefolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/audio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/audio.json new file mode 100644 index 000000000..67cdba7f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/audio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/audio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/audio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"title":"BaseItemKind.audio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO5audioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/audio":{"role":"symbol","title":"BaseItemKind.audio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/audio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/audiobook.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/audiobook.json new file mode 100644 index 000000000..af9d5b820 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/audiobook.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBook"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/audiobook"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/audioBook","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBook"}],"title":"BaseItemKind.audioBook","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO9audioBookyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/audioBook":{"role":"symbol","title":"BaseItemKind.audioBook","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBook"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/audioBook","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/audiobook"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/basepluginfolder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/basepluginfolder.json new file mode 100644 index 000000000..c1a128e63 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/basepluginfolder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"basePluginFolder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/basepluginfolder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/basePluginFolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"basePluginFolder"}],"title":"BaseItemKind.basePluginFolder","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO16basePluginFolderyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/basePluginFolder":{"role":"symbol","title":"BaseItemKind.basePluginFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"basePluginFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/basePluginFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/basepluginfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/book.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/book.json new file mode 100644 index 000000000..35d1793bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/book.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"book"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/book"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/book","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"book"}],"title":"BaseItemKind.book","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO4bookyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/book":{"role":"symbol","title":"BaseItemKind.book","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"book"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/book","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/book"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/boxset.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/boxset.json new file mode 100644 index 000000000..f8838a124 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/boxset.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSet"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/boxset"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/boxSet","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSet"}],"title":"BaseItemKind.boxSet","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO6boxSetyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/boxSet":{"role":"symbol","title":"BaseItemKind.boxSet","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSet"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/boxSet","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/boxset"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/channel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/channel.json new file mode 100644 index 000000000..4c71e618f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/channel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channel"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/channel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/channel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channel"}],"title":"BaseItemKind.channel","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO7channelyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/channel":{"role":"symbol","title":"BaseItemKind.channel","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/channel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/channel"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/channelfolderitem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/channelfolderitem.json new file mode 100644 index 000000000..b4307878e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/channelfolderitem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelFolderItem"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/channelfolderitem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/channelFolderItem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelFolderItem"}],"title":"BaseItemKind.channelFolderItem","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO013channelFolderD0yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/channelFolderItem":{"role":"symbol","title":"BaseItemKind.channelFolderItem","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelFolderItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/channelFolderItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/channelfolderitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/collectionfolder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/collectionfolder.json new file mode 100644 index 000000000..3bf1b1539 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/collectionfolder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionFolder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/collectionfolder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/collectionFolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionFolder"}],"title":"BaseItemKind.collectionFolder","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO16collectionFolderyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/collectionFolder":{"role":"symbol","title":"BaseItemKind.collectionFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/collectionFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/collectionfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/encode(to:).json new file mode 100644 index 000000000..2c4c4e5a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI12BaseItemKindO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/episode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/episode.json new file mode 100644 index 000000000..d81c4e007 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/episode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/episode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/episode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"title":"BaseItemKind.episode","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO7episodeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/episode":{"role":"symbol","title":"BaseItemKind.episode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/episode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/episode"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/equatable-implementations.json new file mode 100644 index 000000000..aac745b3f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/folder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/folder.json new file mode 100644 index 000000000..c38871b92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/folder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"folder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/folder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/folder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"folder"}],"title":"BaseItemKind.folder","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO6folderyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/folder":{"role":"symbol","title":"BaseItemKind.folder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"folder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/folder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/folder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/genre.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/genre.json new file mode 100644 index 000000000..54b37906c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/genre.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genre"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/genre"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/genre","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genre"}],"title":"BaseItemKind.genre","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO5genreyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/genre":{"role":"symbol","title":"BaseItemKind.genre","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genre"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/genre","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/genre"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/hash(into:).json new file mode 100644 index 000000000..b4448c5a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI12BaseItemKindO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/hashvalue.json new file mode 100644 index 000000000..182ac2be3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI12BaseItemKindO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/init(from:).json new file mode 100644 index 000000000..104839687 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI12BaseItemKindO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/init(rawvalue:).json new file mode 100644 index 000000000..2a23efc6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12BaseItemKindO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/livetvchannel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/livetvchannel.json new file mode 100644 index 000000000..dc7c135ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/livetvchannel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvChannel"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/livetvchannel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/liveTvChannel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvChannel"}],"title":"BaseItemKind.liveTvChannel","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO13liveTvChannelyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/liveTvChannel":{"role":"symbol","title":"BaseItemKind.liveTvChannel","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvChannel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/liveTvChannel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/livetvchannel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/livetvprogram.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/livetvprogram.json new file mode 100644 index 000000000..d4250dcda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/livetvprogram.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvProgram"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/livetvprogram"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/liveTvProgram","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvProgram"}],"title":"BaseItemKind.liveTvProgram","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO13liveTvProgramyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/liveTvProgram":{"role":"symbol","title":"BaseItemKind.liveTvProgram","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvProgram"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/liveTvProgram","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/livetvprogram"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/manualplaylistsfolder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/manualplaylistsfolder.json new file mode 100644 index 000000000..bfaf8b51d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/manualplaylistsfolder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"manualPlaylistsFolder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/manualplaylistsfolder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/manualPlaylistsFolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"manualPlaylistsFolder"}],"title":"BaseItemKind.manualPlaylistsFolder","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO21manualPlaylistsFolderyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/manualPlaylistsFolder":{"role":"symbol","title":"BaseItemKind.manualPlaylistsFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"manualPlaylistsFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/manualPlaylistsFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/manualplaylistsfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/movie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/movie.json new file mode 100644 index 000000000..b88938165 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/movie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/movie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/movie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"title":"BaseItemKind.movie","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO5movieyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/movie":{"role":"symbol","title":"BaseItemKind.movie","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/movie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/movie"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicalbum.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicalbum.json new file mode 100644 index 000000000..bf1676c4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicalbum.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicAlbum"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/musicalbum"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicAlbum","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicAlbum"}],"title":"BaseItemKind.musicAlbum","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO10musicAlbumyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/musicAlbum":{"role":"symbol","title":"BaseItemKind.musicAlbum","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicAlbum"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicAlbum","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/musicalbum"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicartist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicartist.json new file mode 100644 index 000000000..e78fd4189 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicartist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicArtist"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/musicartist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicArtist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicArtist"}],"title":"BaseItemKind.musicArtist","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO11musicArtistyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/musicArtist":{"role":"symbol","title":"BaseItemKind.musicArtist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicArtist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/musicartist"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicgenre.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicgenre.json new file mode 100644 index 000000000..3cc4a29ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicgenre.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicGenre"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/musicgenre"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicGenre","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicGenre"}],"title":"BaseItemKind.musicGenre","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO10musicGenreyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/musicGenre":{"role":"symbol","title":"BaseItemKind.musicGenre","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicGenre"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicGenre","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/musicgenre"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicvideo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicvideo.json new file mode 100644 index 000000000..2b8a78273 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/musicvideo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/musicvideo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicVideo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideo"}],"title":"BaseItemKind.musicVideo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO10musicVideoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/musicVideo":{"role":"symbol","title":"BaseItemKind.musicVideo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/musicVideo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/musicvideo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/person.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/person.json new file mode 100644 index 000000000..5c318060f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/person.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/person"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/person","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"}],"title":"BaseItemKind.person","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO6personyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/person":{"role":"symbol","title":"BaseItemKind.person","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/person"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/photo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/photo.json new file mode 100644 index 000000000..240ad1ec8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/photo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/photo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/photo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"title":"BaseItemKind.photo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO5photoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/photo":{"role":"symbol","title":"BaseItemKind.photo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/photo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/photo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/photoalbum.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/photoalbum.json new file mode 100644 index 000000000..b7c19cc9c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/photoalbum.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photoAlbum"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/photoalbum"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/photoAlbum","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photoAlbum"}],"title":"BaseItemKind.photoAlbum","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO10photoAlbumyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/photoAlbum":{"role":"symbol","title":"BaseItemKind.photoAlbum","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photoAlbum"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/photoAlbum","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/photoalbum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/playlist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/playlist.json new file mode 100644 index 000000000..cda65972e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/playlist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlist"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/playlist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/playlist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlist"}],"title":"BaseItemKind.playlist","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO8playlistyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/playlist":{"role":"symbol","title":"BaseItemKind.playlist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/playlist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/playlist"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/playlistsfolder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/playlistsfolder.json new file mode 100644 index 000000000..46b1a665c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/playlistsfolder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistsFolder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/playlistsfolder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/playlistsFolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistsFolder"}],"title":"BaseItemKind.playlistsFolder","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO15playlistsFolderyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/playlistsFolder":{"role":"symbol","title":"BaseItemKind.playlistsFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistsFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/playlistsFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/playlistsfolder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/program.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/program.json new file mode 100644 index 000000000..9215c4ed9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/program.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"program"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/program"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/program","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"program"}],"title":"BaseItemKind.program","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO7programyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/program":{"role":"symbol","title":"BaseItemKind.program","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"program"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/program","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/program"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/rawrepresentable-implementations.json new file mode 100644 index 000000000..df35abdde --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/recording.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/recording.json new file mode 100644 index 000000000..fa85c18ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/recording.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recording"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/recording"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/recording","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recording"}],"title":"BaseItemKind.recording","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO9recordingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/recording":{"role":"symbol","title":"BaseItemKind.recording","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recording"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/recording","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/recording"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/season.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/season.json new file mode 100644 index 000000000..94f062626 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/season.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/season"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/season","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"}],"title":"BaseItemKind.season","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO6seasonyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/season":{"role":"symbol","title":"BaseItemKind.season","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/season","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/season"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/series.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/series.json new file mode 100644 index 000000000..e6e575dfa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/series.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/series"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/series","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"title":"BaseItemKind.series","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO6seriesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/series":{"role":"symbol","title":"BaseItemKind.series","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/series","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/series"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/studio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/studio.json new file mode 100644 index 000000000..0c9156c1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/studio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/studio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/studio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studio"}],"title":"BaseItemKind.studio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO6studioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/studio":{"role":"symbol","title":"BaseItemKind.studio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/studio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/studio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/trailer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/trailer.json new file mode 100644 index 000000000..54420e733 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/trailer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/trailer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/trailer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"title":"BaseItemKind.trailer","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO7traileryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/trailer":{"role":"symbol","title":"BaseItemKind.trailer","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/trailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/trailer"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/tvchannel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/tvchannel.json new file mode 100644 index 000000000..3d42c60af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/tvchannel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvChannel"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/tvchannel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/tvChannel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvChannel"}],"title":"BaseItemKind.tvChannel","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO9tvChannelyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/tvChannel":{"role":"symbol","title":"BaseItemKind.tvChannel","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvChannel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/tvChannel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/tvchannel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/tvprogram.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/tvprogram.json new file mode 100644 index 000000000..5c1e27d8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/tvprogram.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvProgram"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/tvprogram"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/tvProgram","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvProgram"}],"title":"BaseItemKind.tvProgram","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO9tvProgramyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/tvProgram":{"role":"symbol","title":"BaseItemKind.tvProgram","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvProgram"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/tvProgram","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/tvprogram"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/userrootfolder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/userrootfolder.json new file mode 100644 index 000000000..cf10270f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/userrootfolder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userRootFolder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/userrootfolder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/userRootFolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userRootFolder"}],"title":"BaseItemKind.userRootFolder","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO14userRootFolderyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/userRootFolder":{"role":"symbol","title":"BaseItemKind.userRootFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userRootFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/userRootFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/userrootfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/userview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/userview.json new file mode 100644 index 000000000..6d5359e6a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/userview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userView"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/userview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/userView","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userView"}],"title":"BaseItemKind.userView","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO8userViewyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/userView":{"role":"symbol","title":"BaseItemKind.userView","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userView"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/userView","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/userview"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/video.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/video.json new file mode 100644 index 000000000..04c7bca82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/video.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/video"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/video","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"title":"BaseItemKind.video","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO5videoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/video":{"role":"symbol","title":"BaseItemKind.video","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/video","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/video"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/year.json new file mode 100644 index 000000000..f6bff4ced --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemkind/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemkind\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"}],"title":"BaseItemKind.year","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12BaseItemKindO4yearyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind/year":{"role":"symbol","title":"BaseItemKind.year","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemkind\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson.json new file mode 100644 index 000000000..f0240a290 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"title":"BaseItemPerson","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14BaseItemPersonV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Structures","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/init(id:imageBlurHashes:name:primaryImageTag:role:type:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/id-1dwh5","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/imageBlurHashes-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/primaryImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/role","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/type"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/role":{"role":"symbol","title":"role","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"role"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the role."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/role","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/role"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/imageBlurHashes-swift.property":{"role":"symbol","title":"imageBlurHashes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/imageBlurHashes-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/primaryImageTag":{"role":"symbol","title":"primaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/primaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/primaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/init(id:imageBlurHashes:name:primaryImageTag:role:type:)":{"role":"symbol","title":"init(id:imageBlurHashes:name:primaryImageTag:role:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"role"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/init(id:imageBlurHashes:name:primaryImageTag:role:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/init(id:imageblurhashes:name:primaryimagetag:role:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/type"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/id-1dwh5":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/id-1dwh5","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/id-1dwh5"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/id-1dwh5.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/id-1dwh5.json new file mode 100644 index 000000000..ca5d119e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/id-1dwh5.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/id-1dwh5"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/id-1dwh5","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/id-1dwh5":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/id-1dwh5","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/id-1dwh5"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/id-2sfox.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/id-2sfox.json new file mode 100644 index 000000000..5a2750d05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/id-2sfox.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/id-2sfox"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/id-2sfox","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI14BaseItemPersonV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/id-2sfox":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/id-2sfox","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/id-2sfox"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/identifiable-implementations.json new file mode 100644 index 000000000..11d6403cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/id-2sfox"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/id-2sfox":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/id-2sfox","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/id-2sfox"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.property.json new file mode 100644 index 000000000..fd58c5060 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV","text":"ImageBlurHashes"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/imageBlurHashes-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV"},{"kind":"text","text":"?"}],"title":"imageBlurHashes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15imageBlurHashesAC05ImagegH0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/imageBlurHashes-swift.property":{"role":"symbol","title":"imageBlurHashes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/imageBlurHashes-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct.json new file mode 100644 index 000000000..86a4719e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"title":"BaseItemPerson.ImageBlurHashes","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/art","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/backdrop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/banner","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/box","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/boxRear","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/chapter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/disc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/logo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/menu","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/primary","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/screenshot","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/thumb"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/art":{"role":"symbol","title":"art","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/art","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/art"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/backdrop":{"role":"symbol","title":"backdrop","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/backdrop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/backdrop"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/box":{"role":"symbol","title":"box","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/box","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/box"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/banner":{"role":"symbol","title":"banner","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/banner","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/banner"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/screenshot":{"role":"symbol","title":"screenshot","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/screenshot","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/screenshot"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)":{"role":"symbol","title":"init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/menu":{"role":"symbol","title":"menu","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/menu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/menu"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/disc":{"role":"symbol","title":"disc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/disc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/disc"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/logo":{"role":"symbol","title":"logo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/logo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/logo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/primary":{"role":"symbol","title":"primary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/primary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/primary"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/chapter":{"role":"symbol","title":"chapter","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/chapter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/chapter"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/boxRear":{"role":"symbol","title":"boxRear","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/boxRear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/boxrear"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/thumb":{"role":"symbol","title":"thumb","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/thumb","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/thumb"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/art.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/art.json new file mode 100644 index 000000000..1d4c27521 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/art.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/art"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/art","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"art","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV3artSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/art":{"role":"symbol","title":"art","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/art","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/art"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/backdrop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/backdrop.json new file mode 100644 index 000000000..5f7b26c8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/backdrop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/backdrop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/backdrop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"backdrop","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV8backdropSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/backdrop":{"role":"symbol","title":"backdrop","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/backdrop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/backdrop"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/banner.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/banner.json new file mode 100644 index 000000000..de9b6dc4a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/banner.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/banner"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/banner","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"banner","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV6bannerSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/banner":{"role":"symbol","title":"banner","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/banner","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/banner"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/box.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/box.json new file mode 100644 index 000000000..07768b668 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/box.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/box"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/box","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"box","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV3boxSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/box":{"role":"symbol","title":"box","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/box","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/box"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/boxrear.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/boxrear.json new file mode 100644 index 000000000..cd3127caa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/boxrear.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/boxrear"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/boxRear","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"boxRear","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV7boxRearSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/boxRear":{"role":"symbol","title":"boxRear","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/boxRear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/boxrear"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/chapter.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/chapter.json new file mode 100644 index 000000000..1275b1979 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/chapter.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/chapter"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/chapter","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"chapter","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV7chapterSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/chapter":{"role":"symbol","title":"chapter","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/chapter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/chapter"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/disc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/disc.json new file mode 100644 index 000000000..d7d7b69d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/disc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/disc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/disc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"disc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV4discSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/disc":{"role":"symbol","title":"disc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/disc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/disc"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:).json new file mode 100644 index 000000000..751c3e298 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"title":"init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV3art8backdrop6banner3box0L4Rear7chapter4disc4logo4menu7primary7profile10screenshot5thumbAESDyS2SGSg_A12Ttcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)":{"role":"symbol","title":"init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"art"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"backdrop"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"banner"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"box"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"boxRear"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"chapter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disc"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/init(art:backdrop:banner:box:boxRear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/init(art:backdrop:banner:box:boxrear:chapter:disc:logo:menu:primary:profile:screenshot:thumb:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/init(from:).json new file mode 100644 index 000000000..58295cef5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV4fromAEs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/logo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/logo.json new file mode 100644 index 000000000..89caeb49c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/logo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/logo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/logo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"logo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV4logoSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/logo":{"role":"symbol","title":"logo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/logo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/logo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/menu.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/menu.json new file mode 100644 index 000000000..37b56f582 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/menu.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/menu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/menu","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"menu","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV4menuSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/menu":{"role":"symbol","title":"menu","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/menu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/menu"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/primary.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/primary.json new file mode 100644 index 000000000..63394f8ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/primary.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/primary"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/primary","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"primary","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV7primarySDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/primary":{"role":"symbol","title":"primary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/primary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/primary"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/profile.json new file mode 100644 index 000000000..5f507e331 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV7profileSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/screenshot.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/screenshot.json new file mode 100644 index 000000000..b35b0c731 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/screenshot.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/screenshot"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/screenshot","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"screenshot","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV10screenshotSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/screenshot":{"role":"symbol","title":"screenshot","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/screenshot","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/screenshot"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/thumb.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/thumb.json new file mode 100644 index 000000000..6ce273eab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/imageblurhashes-swift.struct/thumb.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/thumb"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/thumb","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"thumb","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV5thumbSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct/thumb":{"role":"symbol","title":"thumb","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct\/thumb","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct\/thumb"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/init(from:).json new file mode 100644 index 000000000..67258586d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14BaseItemPersonV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/init(id:imageblurhashes:name:primaryimagetag:role:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/init(id:imageblurhashes:name:primaryimagetag:role:type:).json new file mode 100644 index 000000000..21736ac77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/init(id:imageblurhashes:name:primaryimagetag:role:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV","text":"ImageBlurHashes"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"role"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/init(id:imageblurhashes:name:primaryimagetag:role:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/init(id:imageBlurHashes:name:primaryImageTag:role:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"role"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(id:imageBlurHashes:name:primaryImageTag:role:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14BaseItemPersonV2id15imageBlurHashes4name15primaryImageTag4role4typeAC10Foundation4UUIDVSg_AC0lhI0VSgSSSgA3Qtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/ImageBlurHashes-swift.struct":{"role":"symbol","title":"BaseItemPerson.ImageBlurHashes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageBlurHashes"}],"abstract":[{"type":"text","text":"Gets or sets the primary image blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/ImageBlurHashes-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageBlurHashes"}],"url":"\/documentation\/jellyfinapi\/baseitemperson\/imageblurhashes-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/init(id:imageBlurHashes:name:primaryImageTag:role:type:)":{"role":"symbol","title":"init(id:imageBlurHashes:name:primaryImageTag:role:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageBlurHashes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageBlurHashes","preciseIdentifier":"s:11JellyfinAPI14BaseItemPersonV15ImageBlurHashesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"role"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/init(id:imageBlurHashes:name:primaryImageTag:role:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/init(id:imageblurhashes:name:primaryimagetag:role:type:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/name.json new file mode 100644 index 000000000..e0a05e002 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/primaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/primaryimagetag.json new file mode 100644 index 000000000..3e249e1ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/primaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/primaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/primaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the primary image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"primaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV15primaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/primaryImageTag":{"role":"symbol","title":"primaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/primaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/primaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/role.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/role.json new file mode 100644 index 000000000..c66ab98b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/role.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"role"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/role"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/role","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the role."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"role"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"role","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV4roleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/role":{"role":"symbol","title":"role","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"role"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the role."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/role","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/role"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/type.json new file mode 100644 index 000000000..0c84b1a6f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/baseitemperson/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/baseitemperson\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14BaseItemPersonV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson":{"role":"symbol","title":"BaseItemPerson","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemPerson"}],"abstract":[{"type":"text","text":"This is used by the api to get information about a Person within a BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemPerson"}],"url":"\/documentation\/jellyfinapi\/baseitemperson"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemPerson/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemPerson\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/baseitemperson\/type"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo.json new file mode 100644 index 000000000..3cb0521b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"title":"BookInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI8BookInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BookInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:seriesName:year:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/isAutomated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/metadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/seriesName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/year"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/seriesName":{"role":"symbol","title":"seriesName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/seriesName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/seriesname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:seriesName:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:seriesName:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:seriesName:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:seriesname:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/metadatacountrycode"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/indexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/indexnumber.json new file mode 100644 index 000000000..f4653a0de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/indexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/init(from:).json new file mode 100644 index 000000000..19a8eabb3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8BookInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:seriesname:year:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:seriesname:year:).json new file mode 100644 index 000000000..29c17e84b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:seriesname:year:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:seriesname:year:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:seriesName:year:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:seriesName:year:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8BookInfoV11indexNumber11isAutomated19metadataCountryCode0I8Language4name13originalTitle011parentIndexF04path12premiereDate11providerIDs10seriesName4yearACs5Int32VSg_SbSgSSSgA3trT10Foundation0T0VSgSDyS2SGSgAtRtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:seriesName:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:seriesName:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:seriesName:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:seriesname:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/isautomated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/isautomated.json new file mode 100644 index 000000000..dcb87fab6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/isautomated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/isautomated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/isAutomated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV11isAutomatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/metadatacountrycode.json new file mode 100644 index 000000000..839e007d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/metadatacountrycode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/metadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/metadatalanguage.json new file mode 100644 index 000000000..2913751a4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/metadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/metadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/metadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV16metadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/name.json new file mode 100644 index 000000000..56cb2ae15 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/originaltitle.json new file mode 100644 index 000000000..14c63faf1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the original title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/originaltitle"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/parentindexnumber.json new file mode 100644 index 000000000..6bea3be30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/parentindexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/path.json new file mode 100644 index 000000000..e5dedf922 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/premieredate.json new file mode 100644 index 000000000..65112c11b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV12premiereDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/providerids.json new file mode 100644 index 000000000..bb9133ccc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/seriesname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/seriesname.json new file mode 100644 index 000000000..f1e39ca7d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/seriesname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/seriesname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/seriesName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV10seriesNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/seriesName":{"role":"symbol","title":"seriesName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/seriesName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/seriesname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/year.json new file mode 100644 index 000000000..ceb45d024 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinfo/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinfo\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"year","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8BookInfoV4years5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery.json new file mode 100644 index 000000000..3fea2a863 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinforemotesearchquery"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"title":"BookInfoRemoteSearchQuery","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/isIncludeDisabledProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/searchInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/searchProviderName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BookInfo","preciseIdentifier":"s:11JellyfinAPI8BookInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery":{"role":"symbol","title":"BookInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BookInfo","preciseIdentifier":"s:11JellyfinAPI8BookInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/init(from:).json new file mode 100644 index 000000000..c1e7799dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinforemotesearchquery\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery":{"role":"symbol","title":"BookInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json new file mode 100644 index 000000000..6b80d1a7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","preciseIdentifier":"s:11JellyfinAPI8BookInfoV","text":"BookInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BookInfo","preciseIdentifier":"s:11JellyfinAPI8BookInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV26isIncludeDisabledProviders6itemID06searchD00N12ProviderNameACSbSg_10Foundation4UUIDVSgAA0cD0VSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BookInfo","preciseIdentifier":"s:11JellyfinAPI8BookInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery":{"role":"symbol","title":"BookInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/isincludedisabledproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/isincludedisabledproviders.json new file mode 100644 index 000000000..9225e0cc2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/isincludedisabledproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinforemotesearchquery\/isincludedisabledproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/isIncludeDisabledProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeDisabledProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV26isIncludeDisabledProvidersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery":{"role":"symbol","title":"BookInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/itemid.json new file mode 100644 index 000000000..db73546cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinforemotesearchquery\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery":{"role":"symbol","title":"BookInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/searchinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/searchinfo.json new file mode 100644 index 000000000..3a9039b7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/searchinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","preciseIdentifier":"s:11JellyfinAPI8BookInfoV","text":"BookInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinforemotesearchquery\/searchinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/searchInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BookInfo","preciseIdentifier":"s:11JellyfinAPI8BookInfoV"},{"kind":"text","text":"?"}],"title":"searchInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV06searchD0AA0cD0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfo":{"role":"symbol","title":"BookInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfo"}],"url":"\/documentation\/jellyfinapi\/bookinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BookInfo","preciseIdentifier":"s:11JellyfinAPI8BookInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery":{"role":"symbol","title":"BookInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/searchprovidername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/searchprovidername.json new file mode 100644 index 000000000..a42885be5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bookinforemotesearchquery/searchprovidername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bookinforemotesearchquery\/searchprovidername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/searchProviderName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchProviderName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV18searchProviderNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery":{"role":"symbol","title":"BookInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery\/searchprovidername"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo.json new file mode 100644 index 000000000..09dc0e157 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"title":"BoxSetInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10BoxSetInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/isAutomated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/metadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/year"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/providerids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/indexnumber.json new file mode 100644 index 000000000..c3f9fd5c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/init(from:).json new file mode 100644 index 000000000..c852c60f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10BoxSetInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json new file mode 100644 index 000000000..0af394852 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10BoxSetInfoV11indexNumber11isAutomated19metadataCountryCode0J8Language4name13originalTitle011parentIndexG04path12premiereDate11providerIDs4yearACs5Int32VSg_SbSgSSSgA3sqS10Foundation0U0VSgSDyS2SGSgAQtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/isautomated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/isautomated.json new file mode 100644 index 000000000..aaebad824 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/isautomated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/isautomated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/isAutomated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV11isAutomatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/isautomated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/metadatacountrycode.json new file mode 100644 index 000000000..d9db29911 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/metadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/metadatalanguage.json new file mode 100644 index 000000000..6ab98ec4a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/metadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/metadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/metadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV16metadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/name.json new file mode 100644 index 000000000..e5d4db372 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/originaltitle.json new file mode 100644 index 000000000..29612508e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the original title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/parentindexnumber.json new file mode 100644 index 000000000..f7a178c92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/path.json new file mode 100644 index 000000000..ea841b7c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/premieredate.json new file mode 100644 index 000000000..a6a35696d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV12premiereDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/providerids.json new file mode 100644 index 000000000..1ba25383f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/year.json new file mode 100644 index 000000000..b9efe0f53 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinfo/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinfo\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"year","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10BoxSetInfoV4years5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery.json new file mode 100644 index 000000000..d1dd6f09e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinforemotesearchquery"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"title":"BoxSetInfoRemoteSearchQuery","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/isIncludeDisabledProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/searchInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/searchProviderName"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BoxSetInfo","preciseIdentifier":"s:11JellyfinAPI10BoxSetInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery":{"role":"symbol","title":"BoxSetInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BoxSetInfo","preciseIdentifier":"s:11JellyfinAPI10BoxSetInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/searchprovidername"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/init(from:).json new file mode 100644 index 000000000..fca474fed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery":{"role":"symbol","title":"BoxSetInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json new file mode 100644 index 000000000..6acd8903b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","preciseIdentifier":"s:11JellyfinAPI10BoxSetInfoV","text":"BoxSetInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BoxSetInfo","preciseIdentifier":"s:11JellyfinAPI10BoxSetInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV26isIncludeDisabledProviders6itemID06searchE00O12ProviderNameACSbSg_10Foundation4UUIDVSgAA0cdE0VSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BoxSetInfo","preciseIdentifier":"s:11JellyfinAPI10BoxSetInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery":{"role":"symbol","title":"BoxSetInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/isincludedisabledproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/isincludedisabledproviders.json new file mode 100644 index 000000000..49540b883 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/isincludedisabledproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/isincludedisabledproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/isIncludeDisabledProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeDisabledProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV26isIncludeDisabledProvidersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery":{"role":"symbol","title":"BoxSetInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/itemid.json new file mode 100644 index 000000000..6536f8bb6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery":{"role":"symbol","title":"BoxSetInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/searchinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/searchinfo.json new file mode 100644 index 000000000..c1d862f2f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/searchinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","preciseIdentifier":"s:11JellyfinAPI10BoxSetInfoV","text":"BoxSetInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/searchinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/searchInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BoxSetInfo","preciseIdentifier":"s:11JellyfinAPI10BoxSetInfoV"},{"kind":"text","text":"?"}],"title":"searchInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV06searchE0AA0cdE0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BoxSetInfo","preciseIdentifier":"s:11JellyfinAPI10BoxSetInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfo":{"role":"symbol","title":"BoxSetInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfo"}],"url":"\/documentation\/jellyfinapi\/boxsetinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery":{"role":"symbol","title":"BoxSetInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/searchprovidername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/searchprovidername.json new file mode 100644 index 000000000..b468064e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/boxsetinforemotesearchquery/searchprovidername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/searchprovidername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/searchProviderName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchProviderName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV18searchProviderNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery":{"role":"symbol","title":"BoxSetInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions.json new file mode 100644 index 000000000..9eb561133 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BrandingOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/brandingoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The branding options."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BrandingOptions"}],"title":"BrandingOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15BrandingOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BrandingOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/init(customCss:loginDisclaimer:isSplashscreenEnabled:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/customCss","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/isSplashscreenEnabled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/loginDisclaimer"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions":{"role":"symbol","title":"BrandingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BrandingOptions"}],"abstract":[{"type":"text","text":"The branding options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BrandingOptions"}],"url":"\/documentation\/jellyfinapi\/brandingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions/isSplashscreenEnabled":{"role":"symbol","title":"isSplashscreenEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSplashscreenEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable the splashscreen."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/isSplashscreenEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/brandingoptions\/issplashscreenenabled"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions/init(customCss:loginDisclaimer:isSplashscreenEnabled:)":{"role":"symbol","title":"init(customCss:loginDisclaimer:isSplashscreenEnabled:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"loginDisclaimer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSplashscreenEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/init(customCss:loginDisclaimer:isSplashscreenEnabled:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/brandingoptions\/init(customcss:logindisclaimer:issplashscreenenabled:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/brandingoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions/loginDisclaimer":{"role":"symbol","title":"loginDisclaimer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loginDisclaimer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the login disclaimer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/loginDisclaimer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/brandingoptions\/logindisclaimer"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions/customCss":{"role":"symbol","title":"customCss","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the custom CSS."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/customCss","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/brandingoptions\/customcss"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/customcss.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/customcss.json new file mode 100644 index 000000000..c3884c5bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/customcss.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/brandingoptions\/customcss"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/customCss","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the custom CSS."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"customCss","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15BrandingOptionsV9customCssSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions/customCss":{"role":"symbol","title":"customCss","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the custom CSS."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/customCss","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/brandingoptions\/customcss"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions":{"role":"symbol","title":"BrandingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BrandingOptions"}],"abstract":[{"type":"text","text":"The branding options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BrandingOptions"}],"url":"\/documentation\/jellyfinapi\/brandingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/init(customcss:logindisclaimer:issplashscreenenabled:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/init(customcss:logindisclaimer:issplashscreenenabled:).json new file mode 100644 index 000000000..fbd2c03af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/init(customcss:logindisclaimer:issplashscreenenabled:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"loginDisclaimer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSplashscreenEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/brandingoptions\/init(customcss:logindisclaimer:issplashscreenenabled:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/init(customCss:loginDisclaimer:isSplashscreenEnabled:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"loginDisclaimer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSplashscreenEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(customCss:loginDisclaimer:isSplashscreenEnabled:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15BrandingOptionsV9customCss15loginDisclaimer21isSplashscreenEnabledACSSSg_AGSbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions":{"role":"symbol","title":"BrandingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BrandingOptions"}],"abstract":[{"type":"text","text":"The branding options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BrandingOptions"}],"url":"\/documentation\/jellyfinapi\/brandingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions/init(customCss:loginDisclaimer:isSplashscreenEnabled:)":{"role":"symbol","title":"init(customCss:loginDisclaimer:isSplashscreenEnabled:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"loginDisclaimer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSplashscreenEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/init(customCss:loginDisclaimer:isSplashscreenEnabled:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/brandingoptions\/init(customcss:logindisclaimer:issplashscreenenabled:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/init(from:).json new file mode 100644 index 000000000..2932094b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/brandingoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15BrandingOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions":{"role":"symbol","title":"BrandingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BrandingOptions"}],"abstract":[{"type":"text","text":"The branding options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BrandingOptions"}],"url":"\/documentation\/jellyfinapi\/brandingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/brandingoptions\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/issplashscreenenabled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/issplashscreenenabled.json new file mode 100644 index 000000000..cd83fc4e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/issplashscreenenabled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSplashscreenEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/brandingoptions\/issplashscreenenabled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/isSplashscreenEnabled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable the splashscreen."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSplashscreenEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSplashscreenEnabled","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15BrandingOptionsV21isSplashscreenEnabledSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions":{"role":"symbol","title":"BrandingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BrandingOptions"}],"abstract":[{"type":"text","text":"The branding options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BrandingOptions"}],"url":"\/documentation\/jellyfinapi\/brandingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions/isSplashscreenEnabled":{"role":"symbol","title":"isSplashscreenEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSplashscreenEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable the splashscreen."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/isSplashscreenEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/brandingoptions\/issplashscreenenabled"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/logindisclaimer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/logindisclaimer.json new file mode 100644 index 000000000..409c9185c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/brandingoptions/logindisclaimer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loginDisclaimer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/brandingoptions\/logindisclaimer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/loginDisclaimer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the login disclaimer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loginDisclaimer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"loginDisclaimer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15BrandingOptionsV15loginDisclaimerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions":{"role":"symbol","title":"BrandingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BrandingOptions"}],"abstract":[{"type":"text","text":"The branding options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BrandingOptions"}],"url":"\/documentation\/jellyfinapi\/brandingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions/loginDisclaimer":{"role":"symbol","title":"loginDisclaimer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loginDisclaimer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the login disclaimer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions\/loginDisclaimer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/brandingoptions\/logindisclaimer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto.json new file mode 100644 index 000000000..e61fdb190 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bufferrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class BufferRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"title":"BufferRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16BufferRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"BufferRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/init(isPlaying:playlistItemID:positionTicks:when:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/isPlaying","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/playlistItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/positionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/when"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto":{"role":"symbol","title":"BufferRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"abstract":[{"type":"text","text":"Class BufferRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BufferRequestDto"}],"url":"\/documentation\/jellyfinapi\/bufferrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/isPlaying":{"role":"symbol","title":"isPlaying","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the client playback is unpaused."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/isPlaying","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/isplaying"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist item identifier of the playing item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/when":{"role":"symbol","title":"when","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets when the request has been made by the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/when","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/when"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/init(isPlaying:playlistItemID:positionTicks:when:)":{"role":"symbol","title":"init(isPlaying:playlistItemID:positionTicks:when:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/init(isPlaying:playlistItemID:positionTicks:when:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/init(isplaying:playlistitemid:positionticks:when:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/init(from:).json new file mode 100644 index 000000000..10ec20a8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bufferrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16BufferRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto":{"role":"symbol","title":"BufferRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"abstract":[{"type":"text","text":"Class BufferRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BufferRequestDto"}],"url":"\/documentation\/jellyfinapi\/bufferrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/init(isplaying:playlistitemid:positionticks:when:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/init(isplaying:playlistitemid:positionticks:when:).json new file mode 100644 index 000000000..89977cbb5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/init(isplaying:playlistitemid:positionticks:when:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bufferrequestdto\/init(isplaying:playlistitemid:positionticks:when:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/init(isPlaying:playlistItemID:positionTicks:when:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"title":"init(isPlaying:playlistItemID:positionTicks:when:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16BufferRequestDtoV9isPlaying14playlistItemID13positionTicks4whenACSbSg_10Foundation4UUIDVSgs5Int64VSgAI4DateVSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/init(isPlaying:playlistItemID:positionTicks:when:)":{"role":"symbol","title":"init(isPlaying:playlistItemID:positionTicks:when:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/init(isPlaying:playlistItemID:positionTicks:when:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/init(isplaying:playlistitemid:positionticks:when:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto":{"role":"symbol","title":"BufferRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"abstract":[{"type":"text","text":"Class BufferRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BufferRequestDto"}],"url":"\/documentation\/jellyfinapi\/bufferrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/isplaying.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/isplaying.json new file mode 100644 index 000000000..8d53853e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/isplaying.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bufferrequestdto\/isplaying"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/isPlaying","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the client playback is unpaused."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlaying","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16BufferRequestDtoV9isPlayingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/isPlaying":{"role":"symbol","title":"isPlaying","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the client playback is unpaused."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/isPlaying","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/isplaying"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto":{"role":"symbol","title":"BufferRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"abstract":[{"type":"text","text":"Class BufferRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BufferRequestDto"}],"url":"\/documentation\/jellyfinapi\/bufferrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/playlistitemid.json new file mode 100644 index 000000000..1f5ffd2b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bufferrequestdto\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playlist item identifier of the playing item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16BufferRequestDtoV14playlistItemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist item identifier of the playing item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto":{"role":"symbol","title":"BufferRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"abstract":[{"type":"text","text":"Class BufferRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BufferRequestDto"}],"url":"\/documentation\/jellyfinapi\/bufferrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/positionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/positionticks.json new file mode 100644 index 000000000..269636436 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/positionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bufferrequestdto\/positionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/positionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"positionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16BufferRequestDtoV13positionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto":{"role":"symbol","title":"BufferRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"abstract":[{"type":"text","text":"Class BufferRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BufferRequestDto"}],"url":"\/documentation\/jellyfinapi\/bufferrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/when.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/when.json new file mode 100644 index 000000000..2c18558a4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/bufferrequestdto/when.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/bufferrequestdto\/when"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/when","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets when the request has been made by the client."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"when","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16BufferRequestDtoV4when10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto":{"role":"symbol","title":"BufferRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"abstract":[{"type":"text","text":"Class BufferRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BufferRequestDto"}],"url":"\/documentation\/jellyfinapi\/bufferrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto/when":{"role":"symbol","title":"when","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets when the request has been made by the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto\/when","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/bufferrequestdto\/when"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures.json new file mode 100644 index 000000000..58826a2e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"title":"ChannelFeatures","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15ChannelFeaturesV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/init(autoRefreshLevels:canFilter:canSearch:contentTypes:defaultSortFields:id:maxPageSize:mediaTypes:name:isSupportsContentDownloading:isSupportsLatestMedia:isSupportsSortOrderToggle:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/autoRefreshLevels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/canFilter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/canSearch","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/contentTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/defaultSortFields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/id-357lt","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsContentDownloading","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsLatestMedia","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsSortOrderToggle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/maxPageSize","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/mediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/name"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/isSupportsSortOrderToggle":{"role":"symbol","title":"isSupportsSortOrderToggle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSortOrderToggle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether a sort ascending\/descending toggle is supported."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsSortOrderToggle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/issupportssortordertoggle"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/defaultSortFields":{"role":"symbol","title":"defaultSortFields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSortFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelItemSortField","preciseIdentifier":"s:11JellyfinAPI20ChannelItemSortFieldO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the default sort orders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/defaultSortFields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/defaultsortfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/isSupportsLatestMedia":{"role":"symbol","title":"isSupportsLatestMedia","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLatestMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports latest media]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsLatestMedia","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/issupportslatestmedia"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/init(autoRefreshLevels:canFilter:canSearch:contentTypes:defaultSortFields:id:maxPageSize:mediaTypes:name:isSupportsContentDownloading:isSupportsLatestMedia:isSupportsSortOrderToggle:)":{"role":"symbol","title":"init(autoRefreshLevels:canFilter:canSearch:contentTypes:defaultSortFields:id:maxPageSize:mediaTypes:name:isSupportsContentDownloading:isSupportsLatestMedia:isSupportsSortOrderToggle:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"autoRefreshLevels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSearch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaContentType","preciseIdentifier":"s:11JellyfinAPI23ChannelMediaContentTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"defaultSortFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelItemSortField","preciseIdentifier":"s:11JellyfinAPI20ChannelItemSortFieldO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPageSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaType","preciseIdentifier":"s:11JellyfinAPI16ChannelMediaTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsLatestMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSortOrderToggle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/init(autoRefreshLevels:canFilter:canSearch:contentTypes:defaultSortFields:id:maxPageSize:mediaTypes:name:isSupportsContentDownloading:isSupportsLatestMedia:isSupportsSortOrderToggle:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/init(autorefreshlevels:canfilter:cansearch:contenttypes:defaultsortfields:id:maxpagesize:mediatypes:name:issupportscontentdownloading:issupportslatestmedia:issupportssortordertoggle:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/contentTypes":{"role":"symbol","title":"contentTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaContentType","preciseIdentifier":"s:11JellyfinAPI23ChannelMediaContentTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the content types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/contentTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/contenttypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/id-357lt":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/id-357lt","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/id-357lt"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/maxPageSize":{"role":"symbol","title":"maxPageSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPageSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum number of records the channel allows retrieving at a time."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/maxPageSize","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/maxpagesize"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaType","preciseIdentifier":"s:11JellyfinAPI16ChannelMediaTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the media types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/identifiable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/autoRefreshLevels":{"role":"symbol","title":"autoRefreshLevels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"autoRefreshLevels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the automatic refresh levels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/autoRefreshLevels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/autorefreshlevels"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/isSupportsContentDownloading":{"role":"symbol","title":"isSupportsContentDownloading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports content downloading]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsContentDownloading","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/issupportscontentdownloading"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/canFilter":{"role":"symbol","title":"canFilter","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can filter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/canFilter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/canfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/canSearch":{"role":"symbol","title":"canSearch","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSearch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/canSearch","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/cansearch"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/autorefreshlevels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/autorefreshlevels.json new file mode 100644 index 000000000..6ba01f07f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/autorefreshlevels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"autoRefreshLevels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/autorefreshlevels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/autoRefreshLevels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the automatic refresh levels."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"autoRefreshLevels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"autoRefreshLevels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV17autoRefreshLevelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/autoRefreshLevels":{"role":"symbol","title":"autoRefreshLevels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"autoRefreshLevels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the automatic refresh levels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/autoRefreshLevels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/autorefreshlevels"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/canfilter.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/canfilter.json new file mode 100644 index 000000000..1087fa492 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/canfilter.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/canfilter"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/canFilter","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can filter."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canFilter","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV9canFilterSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/canFilter":{"role":"symbol","title":"canFilter","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can filter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/canFilter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/canfilter"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/cansearch.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/cansearch.json new file mode 100644 index 000000000..99f39e329 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/cansearch.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSearch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/cansearch"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/canSearch","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can search."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSearch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canSearch","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV9canSearchSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/canSearch":{"role":"symbol","title":"canSearch","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSearch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/canSearch","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/cansearch"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/contenttypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/contenttypes.json new file mode 100644 index 000000000..7776f235d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/contenttypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","preciseIdentifier":"s:11JellyfinAPI23ChannelMediaContentTypeO","text":"ChannelMediaContentType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/contenttypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/contentTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the content types."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaContentType","preciseIdentifier":"s:11JellyfinAPI23ChannelMediaContentTypeO"},{"kind":"text","text":"]?"}],"title":"contentTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV12contentTypesSayAA0C16MediaContentTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/contentTypes":{"role":"symbol","title":"contentTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaContentType","preciseIdentifier":"s:11JellyfinAPI23ChannelMediaContentTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the content types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/contentTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/contenttypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/defaultsortfields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/defaultsortfields.json new file mode 100644 index 000000000..7a8c6396f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/defaultsortfields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSortFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","preciseIdentifier":"s:11JellyfinAPI20ChannelItemSortFieldO","text":"ChannelItemSortField"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/defaultsortfields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/defaultSortFields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the default sort orders."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSortFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelItemSortField","preciseIdentifier":"s:11JellyfinAPI20ChannelItemSortFieldO"},{"kind":"text","text":"]?"}],"title":"defaultSortFields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV17defaultSortFieldsSayAA0c4ItemF5FieldOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/defaultSortFields":{"role":"symbol","title":"defaultSortFields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSortFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelItemSortField","preciseIdentifier":"s:11JellyfinAPI20ChannelItemSortFieldO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the default sort orders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/defaultSortFields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/defaultsortfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/id-357lt.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/id-357lt.json new file mode 100644 index 000000000..00d57a17e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/id-357lt.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/id-357lt"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/id-357lt","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/id-357lt":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/id-357lt","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/id-357lt"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/id-8u18q.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/id-8u18q.json new file mode 100644 index 000000000..3fb4adec9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/id-8u18q.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/id-8u18q"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/id-8u18q","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI15ChannelFeaturesV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/id-8u18q":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/id-8u18q","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/id-8u18q"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/identifiable-implementations.json new file mode 100644 index 000000000..f0e60d455 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/id-8u18q"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/id-8u18q":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/id-8u18q","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/id-8u18q"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/init(autorefreshlevels:canfilter:cansearch:contenttypes:defaultsortfields:id:maxpagesize:mediatypes:name:issupportscontentdownloading:issupportslatestmedia:issupportssortordertoggle:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/init(autorefreshlevels:canfilter:cansearch:contenttypes:defaultsortfields:id:maxpagesize:mediatypes:name:issupportscontentdownloading:issupportslatestmedia:issupportssortordertoggle:).json new file mode 100644 index 000000000..b5a8ead59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/init(autorefreshlevels:canfilter:cansearch:contenttypes:defaultsortfields:id:maxpagesize:mediatypes:name:issupportscontentdownloading:issupportslatestmedia:issupportssortordertoggle:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"autoRefreshLevels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canSearch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","preciseIdentifier":"s:11JellyfinAPI23ChannelMediaContentTypeO","text":"ChannelMediaContentType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"defaultSortFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","preciseIdentifier":"s:11JellyfinAPI20ChannelItemSortFieldO","text":"ChannelItemSortField"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxPageSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","preciseIdentifier":"s:11JellyfinAPI16ChannelMediaTypeO","text":"ChannelMediaType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsLatestMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsSortOrderToggle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/init(autorefreshlevels:canfilter:cansearch:contenttypes:defaultsortfields:id:maxpagesize:mediatypes:name:issupportscontentdownloading:issupportslatestmedia:issupportssortordertoggle:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/init(autoRefreshLevels:canFilter:canSearch:contentTypes:defaultSortFields:id:maxPageSize:mediaTypes:name:isSupportsContentDownloading:isSupportsLatestMedia:isSupportsSortOrderToggle:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"autoRefreshLevels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSearch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaContentType","preciseIdentifier":"s:11JellyfinAPI23ChannelMediaContentTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"defaultSortFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelItemSortField","preciseIdentifier":"s:11JellyfinAPI20ChannelItemSortFieldO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPageSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaType","preciseIdentifier":"s:11JellyfinAPI16ChannelMediaTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsLatestMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSortOrderToggle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(autoRefreshLevels:canFilter:canSearch:contentTypes:defaultSortFields:id:maxPageSize:mediaTypes:name:isSupportsContentDownloading:isSupportsLatestMedia:isSupportsSortOrderToggle:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ChannelFeaturesV17autoRefreshLevels9canFilter0H6Search12contentTypes17defaultSortFields2id11maxPageSize05mediaL04name28isSupportsContentDownloading0vW11LatestMedia0vwN11OrderToggleACs5Int32VSg_SbSgASSayAA0c5MediaX4TypeOGSgSayAA0c4ItemN5FieldOGSg10Foundation4UUIDVSgARSayAA0C9MediaTypeOGSgSSSgA3Stcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/init(autoRefreshLevels:canFilter:canSearch:contentTypes:defaultSortFields:id:maxPageSize:mediaTypes:name:isSupportsContentDownloading:isSupportsLatestMedia:isSupportsSortOrderToggle:)":{"role":"symbol","title":"init(autoRefreshLevels:canFilter:canSearch:contentTypes:defaultSortFields:id:maxPageSize:mediaTypes:name:isSupportsContentDownloading:isSupportsLatestMedia:isSupportsSortOrderToggle:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"autoRefreshLevels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSearch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaContentType","preciseIdentifier":"s:11JellyfinAPI23ChannelMediaContentTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"defaultSortFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelItemSortField","preciseIdentifier":"s:11JellyfinAPI20ChannelItemSortFieldO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPageSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaType","preciseIdentifier":"s:11JellyfinAPI16ChannelMediaTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsLatestMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSortOrderToggle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/init(autoRefreshLevels:canFilter:canSearch:contentTypes:defaultSortFields:id:maxPageSize:mediaTypes:name:isSupportsContentDownloading:isSupportsLatestMedia:isSupportsSortOrderToggle:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/init(autorefreshlevels:canfilter:cansearch:contenttypes:defaultsortfields:id:maxpagesize:mediatypes:name:issupportscontentdownloading:issupportslatestmedia:issupportssortordertoggle:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/init(from:).json new file mode 100644 index 000000000..cc4605c02 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ChannelFeaturesV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/issupportscontentdownloading.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/issupportscontentdownloading.json new file mode 100644 index 000000000..d1f99c170 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/issupportscontentdownloading.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/issupportscontentdownloading"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsContentDownloading","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports content downloading]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsContentDownloading","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV28isSupportsContentDownloadingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/isSupportsContentDownloading":{"role":"symbol","title":"isSupportsContentDownloading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports content downloading]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsContentDownloading","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/issupportscontentdownloading"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/issupportslatestmedia.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/issupportslatestmedia.json new file mode 100644 index 000000000..443b8f16f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/issupportslatestmedia.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLatestMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/issupportslatestmedia"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsLatestMedia","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports latest media]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLatestMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsLatestMedia","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV21isSupportsLatestMediaSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/isSupportsLatestMedia":{"role":"symbol","title":"isSupportsLatestMedia","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLatestMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports latest media]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsLatestMedia","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/issupportslatestmedia"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/issupportssortordertoggle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/issupportssortordertoggle.json new file mode 100644 index 000000000..5a5ad4ed3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/issupportssortordertoggle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSortOrderToggle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/issupportssortordertoggle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsSortOrderToggle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether a sort ascending\/descending toggle is supported."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSortOrderToggle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsSortOrderToggle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV25isSupportsSortOrderToggleSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/isSupportsSortOrderToggle":{"role":"symbol","title":"isSupportsSortOrderToggle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSortOrderToggle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether a sort ascending\/descending toggle is supported."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/isSupportsSortOrderToggle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/issupportssortordertoggle"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/maxpagesize.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/maxpagesize.json new file mode 100644 index 000000000..935ac490d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/maxpagesize.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPageSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/maxpagesize"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/maxPageSize","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum number of records the channel allows retrieving at a time."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPageSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxPageSize","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV11maxPageSizes5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/maxPageSize":{"role":"symbol","title":"maxPageSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPageSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum number of records the channel allows retrieving at a time."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/maxPageSize","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/maxpagesize"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/mediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/mediatypes.json new file mode 100644 index 000000000..7f3f55eb7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/mediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","preciseIdentifier":"s:11JellyfinAPI16ChannelMediaTypeO","text":"ChannelMediaType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/mediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/mediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the media types."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaType","preciseIdentifier":"s:11JellyfinAPI16ChannelMediaTypeO"},{"kind":"text","text":"]?"}],"title":"mediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV10mediaTypesSayAA0C9MediaTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ChannelMediaType","preciseIdentifier":"s:11JellyfinAPI16ChannelMediaTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the media types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/name.json new file mode 100644 index 000000000..1fb8a648e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelfeatures/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelfeatures\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ChannelFeaturesV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelfeatures\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield.json new file mode 100644 index 000000000..b33aa4ba0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"title":"ChannelItemSortField","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI20ChannelItemSortFieldO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/communityPlayCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/communityRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/dateCreated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/playCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/runtime"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/dateCreated":{"role":"symbol","title":"ChannelItemSortField.dateCreated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/datecreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/name":{"role":"symbol","title":"ChannelItemSortField.name","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/equatable-implementations"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/communityPlayCount":{"role":"symbol","title":"ChannelItemSortField.communityPlayCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityPlayCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/communityPlayCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/communityplaycount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/playCount":{"role":"symbol","title":"ChannelItemSortField.playCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/playCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/playcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/runtime":{"role":"symbol","title":"ChannelItemSortField.runtime","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtime"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/runtime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/runtime"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/premiereDate":{"role":"symbol","title":"ChannelItemSortField.premiereDate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/communityRating":{"role":"symbol","title":"ChannelItemSortField.communityRating","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/communityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/communityrating"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/rawrepresentable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/!=(_:_:).json new file mode 100644 index 000000000..d52c864b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI20ChannelItemSortFieldO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/communityplaycount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/communityplaycount.json new file mode 100644 index 000000000..65c474f2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/communityplaycount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityPlayCount"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/communityplaycount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/communityPlayCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityPlayCount"}],"title":"ChannelItemSortField.communityPlayCount","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ChannelItemSortFieldO18communityPlayCountyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/communityPlayCount":{"role":"symbol","title":"ChannelItemSortField.communityPlayCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityPlayCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/communityPlayCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/communityplaycount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/communityrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/communityrating.json new file mode 100644 index 000000000..be84b9382 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/communityrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/communityrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/communityRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"}],"title":"ChannelItemSortField.communityRating","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ChannelItemSortFieldO15communityRatingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/communityRating":{"role":"symbol","title":"ChannelItemSortField.communityRating","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/communityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/communityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/datecreated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/datecreated.json new file mode 100644 index 000000000..a02685da1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/datecreated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/datecreated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/dateCreated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"}],"title":"ChannelItemSortField.dateCreated","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ChannelItemSortFieldO11dateCreatedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/dateCreated":{"role":"symbol","title":"ChannelItemSortField.dateCreated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/datecreated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/encode(to:).json new file mode 100644 index 000000000..6ce746f32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI20ChannelItemSortFieldO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/equatable-implementations.json new file mode 100644 index 000000000..828f5b813 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/hash(into:).json new file mode 100644 index 000000000..b427bdbc8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI20ChannelItemSortFieldO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/hashvalue.json new file mode 100644 index 000000000..92d798941 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI20ChannelItemSortFieldO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/init(from:).json new file mode 100644 index 000000000..14edba991 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI20ChannelItemSortFieldO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/init(rawvalue:).json new file mode 100644 index 000000000..bc64298c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20ChannelItemSortFieldO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/name.json new file mode 100644 index 000000000..8af0d5621 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"}],"title":"ChannelItemSortField.name","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ChannelItemSortFieldO4nameyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/name":{"role":"symbol","title":"ChannelItemSortField.name","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/playcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/playcount.json new file mode 100644 index 000000000..2cb5e89bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/playcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCount"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/playcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/playCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCount"}],"title":"ChannelItemSortField.playCount","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ChannelItemSortFieldO9playCountyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/playCount":{"role":"symbol","title":"ChannelItemSortField.playCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/playCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/playcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/premieredate.json new file mode 100644 index 000000000..8d8230685 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"}],"title":"ChannelItemSortField.premiereDate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ChannelItemSortFieldO12premiereDateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/premiereDate":{"role":"symbol","title":"ChannelItemSortField.premiereDate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/premieredate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/rawrepresentable-implementations.json new file mode 100644 index 000000000..ce6794773 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/runtime.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/runtime.json new file mode 100644 index 000000000..83815ce58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelitemsortfield/runtime.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtime"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelitemsortfield\/runtime"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/runtime","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtime"}],"title":"ChannelItemSortField.runtime","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ChannelItemSortFieldO7runtimeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField":{"role":"symbol","title":"ChannelItemSortField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelItemSortField"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelItemSortField"}],"url":"\/documentation\/jellyfinapi\/channelitemsortfield"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelItemSortField/runtime":{"role":"symbol","title":"ChannelItemSortField.runtime","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtime"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelItemSortField\/runtime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelitemsortfield\/runtime"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto.json new file mode 100644 index 000000000..8b76bea72 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmappingoptionsdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Channel mapping options dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"title":"ChannelMappingOptionsDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI24ChannelMappingOptionsDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ChannelMappingOptionsDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/init(mappings:providerChannels:providerName:tunerChannels:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/mappings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/providerChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/providerName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/tunerChannels"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto":{"role":"symbol","title":"ChannelMappingOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"abstract":[{"type":"text","text":"Channel mapping options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/init(mappings:providerChannels:providerName:tunerChannels:)":{"role":"symbol","title":"init(mappings:providerChannels:providerName:tunerChannels:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"providerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tunerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerChannelMapping","preciseIdentifier":"s:11JellyfinAPI19TunerChannelMappingV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/init(mappings:providerChannels:providerName:tunerChannels:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/init(mappings:providerchannels:providername:tunerchannels:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/mappings":{"role":"symbol","title":"mappings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets list of mappings."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/mappings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/mappings"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/providerName":{"role":"symbol","title":"providerName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets provider name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/providerName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/providername"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/tunerChannels":{"role":"symbol","title":"tunerChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerChannelMapping","preciseIdentifier":"s:11JellyfinAPI19TunerChannelMappingV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets list of tuner channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/tunerChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/tunerchannels"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/providerChannels":{"role":"symbol","title":"providerChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets list of provider channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/providerChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/providerchannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/init(from:).json new file mode 100644 index 000000000..6e00dc155 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmappingoptionsdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI24ChannelMappingOptionsDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto":{"role":"symbol","title":"ChannelMappingOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"abstract":[{"type":"text","text":"Channel mapping options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/init(mappings:providerchannels:providername:tunerchannels:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/init(mappings:providerchannels:providername:tunerchannels:).json new file mode 100644 index 000000000..97ae05c5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/init(mappings:providerchannels:providername:tunerchannels:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV","text":"NameValuePair"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"providerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV","text":"NameIDPair"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tunerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","preciseIdentifier":"s:11JellyfinAPI19TunerChannelMappingV","text":"TunerChannelMapping"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmappingoptionsdto\/init(mappings:providerchannels:providername:tunerchannels:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/init(mappings:providerChannels:providerName:tunerChannels:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"providerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tunerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerChannelMapping","preciseIdentifier":"s:11JellyfinAPI19TunerChannelMappingV"},{"kind":"text","text":"]?)"}],"title":"init(mappings:providerChannels:providerName:tunerChannels:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI24ChannelMappingOptionsDtoV8mappings16providerChannels0H4Name05tunerI0ACSayAA0J9ValuePairVGSg_SayAA0J6IDPairVGSgSSSgSayAA05TunercD0VGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/init(mappings:providerChannels:providerName:tunerChannels:)":{"role":"symbol","title":"init(mappings:providerChannels:providerName:tunerChannels:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"providerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tunerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerChannelMapping","preciseIdentifier":"s:11JellyfinAPI19TunerChannelMappingV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/init(mappings:providerChannels:providerName:tunerChannels:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/init(mappings:providerchannels:providername:tunerchannels:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto":{"role":"symbol","title":"ChannelMappingOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"abstract":[{"type":"text","text":"Channel mapping options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/mappings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/mappings.json new file mode 100644 index 000000000..a0d616e4f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/mappings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV","text":"NameValuePair"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmappingoptionsdto\/mappings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/mappings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets list of mappings."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"title":"mappings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI24ChannelMappingOptionsDtoV8mappingsSayAA13NameValuePairVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/mappings":{"role":"symbol","title":"mappings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets list of mappings."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/mappings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/mappings"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto":{"role":"symbol","title":"ChannelMappingOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"abstract":[{"type":"text","text":"Channel mapping options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/providerchannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/providerchannels.json new file mode 100644 index 000000000..0ee56a182 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/providerchannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV","text":"NameIDPair"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmappingoptionsdto\/providerchannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/providerChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets list of provider channels."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]?"}],"title":"providerChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI24ChannelMappingOptionsDtoV16providerChannelsSayAA10NameIDPairVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto":{"role":"symbol","title":"ChannelMappingOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"abstract":[{"type":"text","text":"Channel mapping options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/providerChannels":{"role":"symbol","title":"providerChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets list of provider channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/providerChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/providerchannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/providername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/providername.json new file mode 100644 index 000000000..08c598e2d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/providername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmappingoptionsdto\/providername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/providerName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets provider name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"providerName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI24ChannelMappingOptionsDtoV12providerNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/providerName":{"role":"symbol","title":"providerName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets provider name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/providerName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/providername"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto":{"role":"symbol","title":"ChannelMappingOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"abstract":[{"type":"text","text":"Channel mapping options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/tunerchannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/tunerchannels.json new file mode 100644 index 000000000..743649359 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmappingoptionsdto/tunerchannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","preciseIdentifier":"s:11JellyfinAPI19TunerChannelMappingV","text":"TunerChannelMapping"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmappingoptionsdto\/tunerchannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/tunerChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets list of tuner channels."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerChannelMapping","preciseIdentifier":"s:11JellyfinAPI19TunerChannelMappingV"},{"kind":"text","text":"]?"}],"title":"tunerChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI24ChannelMappingOptionsDtoV13tunerChannelsSayAA05TunercD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto":{"role":"symbol","title":"ChannelMappingOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"abstract":[{"type":"text","text":"Channel mapping options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto/tunerChannels":{"role":"symbol","title":"tunerChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerChannelMapping","preciseIdentifier":"s:11JellyfinAPI19TunerChannelMappingV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets list of tuner channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto\/tunerChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto\/tunerchannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype.json new file mode 100644 index 000000000..a2d0ad073 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"title":"ChannelMediaContentType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI23ChannelMediaContentTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/clip","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/episode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/movie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/movieExtra","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/podcast","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/song","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/trailer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/tvExtra"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/podcast":{"role":"symbol","title":"ChannelMediaContentType.podcast","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"podcast"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/podcast","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/podcast"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/movie":{"role":"symbol","title":"ChannelMediaContentType.movie","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/movie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/movie"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/trailer":{"role":"symbol","title":"ChannelMediaContentType.trailer","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/trailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/trailer"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/tvExtra":{"role":"symbol","title":"ChannelMediaContentType.tvExtra","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvExtra"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/tvExtra","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/tvextra"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/episode":{"role":"symbol","title":"ChannelMediaContentType.episode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/episode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/episode"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/song":{"role":"symbol","title":"ChannelMediaContentType.song","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"song"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/song","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/song"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/clip":{"role":"symbol","title":"ChannelMediaContentType.clip","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"clip"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/clip","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/clip"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/movieExtra":{"role":"symbol","title":"ChannelMediaContentType.movieExtra","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieExtra"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/movieExtra","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/movieextra"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/!=(_:_:).json new file mode 100644 index 000000000..d8079dbf6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI23ChannelMediaContentTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/clip.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/clip.json new file mode 100644 index 000000000..17c675470 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/clip.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"clip"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/clip"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/clip","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"clip"}],"title":"ChannelMediaContentType.clip","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23ChannelMediaContentTypeO4clipyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/clip":{"role":"symbol","title":"ChannelMediaContentType.clip","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"clip"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/clip","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/clip"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/encode(to:).json new file mode 100644 index 000000000..03b14a9ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI23ChannelMediaContentTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/episode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/episode.json new file mode 100644 index 000000000..52797855b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/episode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/episode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/episode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"title":"ChannelMediaContentType.episode","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23ChannelMediaContentTypeO7episodeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/episode":{"role":"symbol","title":"ChannelMediaContentType.episode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/episode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/episode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/equatable-implementations.json new file mode 100644 index 000000000..fe024db8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/hash(into:).json new file mode 100644 index 000000000..749d8b544 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI23ChannelMediaContentTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/hashvalue.json new file mode 100644 index 000000000..01f298eaf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI23ChannelMediaContentTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/init(from:).json new file mode 100644 index 000000000..a05cc22f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI23ChannelMediaContentTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/init(rawvalue:).json new file mode 100644 index 000000000..70910ee9b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23ChannelMediaContentTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/movie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/movie.json new file mode 100644 index 000000000..2e69e207c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/movie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/movie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/movie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"title":"ChannelMediaContentType.movie","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23ChannelMediaContentTypeO5movieyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/movie":{"role":"symbol","title":"ChannelMediaContentType.movie","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/movie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/movie"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/movieextra.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/movieextra.json new file mode 100644 index 000000000..cced524d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/movieextra.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieExtra"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/movieextra"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/movieExtra","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieExtra"}],"title":"ChannelMediaContentType.movieExtra","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23ChannelMediaContentTypeO10movieExtrayA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/movieExtra":{"role":"symbol","title":"ChannelMediaContentType.movieExtra","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieExtra"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/movieExtra","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/movieextra"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/podcast.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/podcast.json new file mode 100644 index 000000000..e0325d2e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/podcast.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"podcast"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/podcast"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/podcast","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"podcast"}],"title":"ChannelMediaContentType.podcast","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23ChannelMediaContentTypeO7podcastyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/podcast":{"role":"symbol","title":"ChannelMediaContentType.podcast","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"podcast"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/podcast","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/podcast"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/rawrepresentable-implementations.json new file mode 100644 index 000000000..9754e99ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/song.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/song.json new file mode 100644 index 000000000..5d1f55801 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/song.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"song"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/song"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/song","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"song"}],"title":"ChannelMediaContentType.song","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23ChannelMediaContentTypeO4songyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/song":{"role":"symbol","title":"ChannelMediaContentType.song","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"song"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/song","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/song"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/trailer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/trailer.json new file mode 100644 index 000000000..a45248573 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/trailer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/trailer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/trailer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"title":"ChannelMediaContentType.trailer","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23ChannelMediaContentTypeO7traileryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/trailer":{"role":"symbol","title":"ChannelMediaContentType.trailer","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/trailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/trailer"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/tvextra.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/tvextra.json new file mode 100644 index 000000000..9465b2d38 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediacontenttype/tvextra.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvExtra"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediacontenttype\/tvextra"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/tvExtra","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvExtra"}],"title":"ChannelMediaContentType.tvExtra","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23ChannelMediaContentTypeO7tvExtrayA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType":{"role":"symbol","title":"ChannelMediaContentType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaContentType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaContentType"}],"url":"\/documentation\/jellyfinapi\/channelmediacontenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaContentType/tvExtra":{"role":"symbol","title":"ChannelMediaContentType.tvExtra","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvExtra"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaContentType\/tvExtra","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediacontenttype\/tvextra"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype.json new file mode 100644 index 000000000..0f4a6aefd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"title":"ChannelMediaType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI16ChannelMediaTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/audio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/photo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/video"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/video":{"role":"symbol","title":"ChannelMediaType.video","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/video","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/video"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/audio":{"role":"symbol","title":"ChannelMediaType.audio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/audio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/photo":{"role":"symbol","title":"ChannelMediaType.photo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/photo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/photo"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/!=(_:_:).json new file mode 100644 index 000000000..67f03cb4e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI16ChannelMediaTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/audio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/audio.json new file mode 100644 index 000000000..632d20597 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/audio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/audio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/audio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"title":"ChannelMediaType.audio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ChannelMediaTypeO5audioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/audio":{"role":"symbol","title":"ChannelMediaType.audio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/audio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/encode(to:).json new file mode 100644 index 000000000..f75cfe944 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI16ChannelMediaTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/equatable-implementations.json new file mode 100644 index 000000000..cf00e9946 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/hash(into:).json new file mode 100644 index 000000000..c19ee7642 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI16ChannelMediaTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/hashvalue.json new file mode 100644 index 000000000..0b9be4168 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI16ChannelMediaTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/init(from:).json new file mode 100644 index 000000000..5e5ae57c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI16ChannelMediaTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/init(rawvalue:).json new file mode 100644 index 000000000..961d66c2c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ChannelMediaTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/photo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/photo.json new file mode 100644 index 000000000..20561307b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/photo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/photo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/photo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"title":"ChannelMediaType.photo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ChannelMediaTypeO5photoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/photo":{"role":"symbol","title":"ChannelMediaType.photo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/photo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/photo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/rawrepresentable-implementations.json new file mode 100644 index 000000000..03a17c74f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/video.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/video.json new file mode 100644 index 000000000..7911aaa87 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channelmediatype/video.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channelmediatype\/video"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/video","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"title":"ChannelMediaType.video","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ChannelMediaTypeO5videoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType/video":{"role":"symbol","title":"ChannelMediaType.video","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType\/video","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channelmediatype\/video"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMediaType":{"role":"symbol","title":"ChannelMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMediaType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMediaType"}],"url":"\/documentation\/jellyfinapi\/channelmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype.json new file mode 100644 index 000000000..896b688b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum ChannelType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"title":"ChannelType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI11ChannelTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ChannelType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/radio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/tv"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/radio":{"role":"symbol","title":"ChannelType.radio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"radio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/radio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/radio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/rawrepresentable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/equatable-implementations"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/tv":{"role":"symbol","title":"ChannelType.tv","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tv"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/tv","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/tv"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/!=(_:_:).json new file mode 100644 index 000000000..7687457cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI11ChannelTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/encode(to:).json new file mode 100644 index 000000000..2230e1528 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI11ChannelTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/equatable-implementations.json new file mode 100644 index 000000000..e95eea158 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/hash(into:).json new file mode 100644 index 000000000..b27c14716 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI11ChannelTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/hashvalue.json new file mode 100644 index 000000000..681c30ba6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI11ChannelTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/init(from:).json new file mode 100644 index 000000000..c8968768e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI11ChannelTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/init(rawvalue:).json new file mode 100644 index 000000000..d5bc846a4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11ChannelTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/radio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/radio.json new file mode 100644 index 000000000..9c4c996b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/radio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"radio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype\/radio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/radio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"radio"}],"title":"ChannelType.radio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11ChannelTypeO5radioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/radio":{"role":"symbol","title":"ChannelType.radio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"radio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/radio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/radio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/rawrepresentable-implementations.json new file mode 100644 index 000000000..0a0492984 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/tv.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/tv.json new file mode 100644 index 000000000..76b8d2b9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/channeltype/tv.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tv"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/channeltype\/tv"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/tv","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tv"}],"title":"ChannelType.tv","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11ChannelTypeO2tvyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType/tv":{"role":"symbol","title":"ChannelType.tv","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tv"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType\/tv","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/channeltype\/tv"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo.json new file mode 100644 index 000000000..3b423c86f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/chapterinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class ChapterInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"title":"ChapterInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11ChapterInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/init(imageDateModified:imagePath:imageTag:name:startPositionTicks:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imageDateModified","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imagePath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/startPositionTicks"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/imageTag":{"role":"symbol","title":"imageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/imagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/init(imageDateModified:imagePath:imageTag:name:startPositionTicks:)":{"role":"symbol","title":"init(imageDateModified:imagePath:imageTag:name:startPositionTicks:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"imageDateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imagePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/init(imageDateModified:imagePath:imageTag:name:startPositionTicks:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/init(imagedatemodified:imagepath:imagetag:name:startpositionticks:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/startpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/imageDateModified":{"role":"symbol","title":"imageDateModified","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageDateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imageDateModified","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/imagedatemodified"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/imagePath":{"role":"symbol","title":"imagePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imagePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the image path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imagePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/imagepath"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/imagedatemodified.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/imagedatemodified.json new file mode 100644 index 000000000..cb5d08a8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/imagedatemodified.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageDateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/chapterinfo\/imagedatemodified"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imageDateModified","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageDateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"imageDateModified","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11ChapterInfoV17imageDateModified10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/imageDateModified":{"role":"symbol","title":"imageDateModified","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageDateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imageDateModified","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/imagedatemodified"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/imagepath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/imagepath.json new file mode 100644 index 000000000..bd79ea04a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/imagepath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imagePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/chapterinfo\/imagepath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imagePath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the image path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imagePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"imagePath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11ChapterInfoV9imagePathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/imagePath":{"role":"symbol","title":"imagePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imagePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the image path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imagePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/imagepath"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/imagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/imagetag.json new file mode 100644 index 000000000..10bd8ce3a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/imagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/chapterinfo\/imagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"imageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11ChapterInfoV8imageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/imageTag":{"role":"symbol","title":"imageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/imageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/imagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/init(from:).json new file mode 100644 index 000000000..87d5e8ffd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/chapterinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11ChapterInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/init(imagedatemodified:imagepath:imagetag:name:startpositionticks:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/init(imagedatemodified:imagepath:imagetag:name:startpositionticks:).json new file mode 100644 index 000000000..3e3e65a26 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/init(imagedatemodified:imagepath:imagetag:name:startpositionticks:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"imageDateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imagePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/chapterinfo\/init(imagedatemodified:imagepath:imagetag:name:startpositionticks:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/init(imageDateModified:imagePath:imageTag:name:startPositionTicks:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"imageDateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imagePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"title":"init(imageDateModified:imagePath:imageTag:name:startPositionTicks:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11ChapterInfoV17imageDateModified0E4Path0E3Tag4name18startPositionTicksAC10Foundation0F0VSg_SSSgA2Ms5Int64VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/init(imageDateModified:imagePath:imageTag:name:startPositionTicks:)":{"role":"symbol","title":"init(imageDateModified:imagePath:imageTag:name:startPositionTicks:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"imageDateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imagePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/init(imageDateModified:imagePath:imageTag:name:startPositionTicks:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/init(imagedatemodified:imagepath:imagetag:name:startpositionticks:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/name.json new file mode 100644 index 000000000..ca2fd196a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/chapterinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11ChapterInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/startpositionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/startpositionticks.json new file mode 100644 index 000000000..9c589b011 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/chapterinfo/startpositionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/chapterinfo\/startpositionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/startPositionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startPositionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11ChapterInfoV18startPositionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/chapterinfo\/startpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChapterInfo":{"role":"symbol","title":"ChapterInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChapterInfo"}],"abstract":[{"type":"text","text":"Class ChapterInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChapterInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChapterInfo"}],"url":"\/documentation\/jellyfinapi\/chapterinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities.json new file mode 100644 index 000000000..93fda39ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"title":"ClientCapabilities","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18ClientCapabilitiesV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/appStoreURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/deviceProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/iconURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsContentUploading","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsMediaControl","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsPersistentIdentifier","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsSync","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/messageCallbackURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/playableMediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/supportedCommands"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/deviceProfile":{"role":"symbol","title":"deviceProfile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/deviceProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/messageCallbackURL":{"role":"symbol","title":"messageCallbackURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/messageCallbackURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/messagecallbackurl"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)":{"role":"symbol","title":"init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/playableMediaTypes":{"role":"symbol","title":"playableMediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/playableMediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/playablemediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/iconURL":{"role":"symbol","title":"iconURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/iconURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/iconurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/appStoreURL":{"role":"symbol","title":"appStoreURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/appStoreURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/appstoreurl"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/isSupportsMediaControl":{"role":"symbol","title":"isSupportsMediaControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsMediaControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/issupportsmediacontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/isSupportsContentUploading":{"role":"symbol","title":"isSupportsContentUploading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsContentUploading","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/issupportscontentuploading"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/isSupportsSync":{"role":"symbol","title":"isSupportsSync","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsSync","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/issupportssync"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/supportedCommands":{"role":"symbol","title":"supportedCommands","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/supportedCommands","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/supportedcommands"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/isSupportsPersistentIdentifier":{"role":"symbol","title":"isSupportsPersistentIdentifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsPersistentIdentifier","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/issupportspersistentidentifier"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/appstoreurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/appstoreurl.json new file mode 100644 index 000000000..a725ede05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/appstoreurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/appstoreurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/appStoreURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"appStoreURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18ClientCapabilitiesV11appStoreURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/appStoreURL":{"role":"symbol","title":"appStoreURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/appStoreURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/appstoreurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/deviceprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/deviceprofile.json new file mode 100644 index 000000000..c7d12a2ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/deviceprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV","text":"DeviceProfile"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Specifically, it defines the supported "},{"type":"text","text":"containers"},{"type":"text","text":" and"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"codecs"},{"type":"text","text":" (video and\/or audio, including codec profiles and levels)"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"the device is able to direct play (without transcoding or remuxing),"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"as well as which "},{"type":"text","text":"containers\/codecs to transcode to"},{"type":"text","text":" in case it isn’t."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/deviceprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/deviceProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"title":"deviceProfile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18ClientCapabilitiesV13deviceProfileAA06DeviceF0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/deviceProfile":{"role":"symbol","title":"deviceProfile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/deviceProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/iconurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/iconurl.json new file mode 100644 index 000000000..0ad0573bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/iconurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/iconurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/iconURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"iconURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18ClientCapabilitiesV7iconURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/iconURL":{"role":"symbol","title":"iconURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/iconURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/iconurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:).json new file mode 100644 index 000000000..4a74ccac9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV","text":"DeviceProfile"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO","text":"GeneralCommandType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18ClientCapabilitiesV11appStoreURL13deviceProfile04iconG0015messageCallbackG018playableMediaTypes17supportedCommands26isSupportsContentUploading0rsN7Control0rS20PersistentIdentifier0rS4SyncACSSSg_AA06DeviceI0VSgA2NSaySSGSgSayAA18GeneralCommandTypeOGSgSbSgA3Xtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)":{"role":"symbol","title":"init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/init(from:).json new file mode 100644 index 000000000..1c30018e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18ClientCapabilitiesV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportscontentuploading.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportscontentuploading.json new file mode 100644 index 000000000..6ba61fa16 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportscontentuploading.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/issupportscontentuploading"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsContentUploading","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsContentUploading","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18ClientCapabilitiesV26isSupportsContentUploadingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/isSupportsContentUploading":{"role":"symbol","title":"isSupportsContentUploading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsContentUploading","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/issupportscontentuploading"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportsmediacontrol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportsmediacontrol.json new file mode 100644 index 000000000..8716cabeb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportsmediacontrol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/issupportsmediacontrol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsMediaControl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsMediaControl","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18ClientCapabilitiesV22isSupportsMediaControlSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/isSupportsMediaControl":{"role":"symbol","title":"isSupportsMediaControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsMediaControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/issupportsmediacontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportspersistentidentifier.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportspersistentidentifier.json new file mode 100644 index 000000000..94afcb866 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportspersistentidentifier.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/issupportspersistentidentifier"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsPersistentIdentifier","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsPersistentIdentifier","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18ClientCapabilitiesV30isSupportsPersistentIdentifierSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/isSupportsPersistentIdentifier":{"role":"symbol","title":"isSupportsPersistentIdentifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsPersistentIdentifier","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/issupportspersistentidentifier"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportssync.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportssync.json new file mode 100644 index 000000000..5df23e94b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/issupportssync.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/issupportssync"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsSync","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsSync","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18ClientCapabilitiesV14isSupportsSyncSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/isSupportsSync":{"role":"symbol","title":"isSupportsSync","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/isSupportsSync","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/issupportssync"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/messagecallbackurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/messagecallbackurl.json new file mode 100644 index 000000000..11b0d891f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/messagecallbackurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/messagecallbackurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/messageCallbackURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"messageCallbackURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18ClientCapabilitiesV18messageCallbackURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/messageCallbackURL":{"role":"symbol","title":"messageCallbackURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/messageCallbackURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/messagecallbackurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/playablemediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/playablemediatypes.json new file mode 100644 index 000000000..aa223c3e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/playablemediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/playablemediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/playableMediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"playableMediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18ClientCapabilitiesV18playableMediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/playableMediaTypes":{"role":"symbol","title":"playableMediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/playableMediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/playablemediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/supportedcommands.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/supportedcommands.json new file mode 100644 index 000000000..7a2d98b1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilities/supportedcommands.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO","text":"GeneralCommandType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilities\/supportedcommands"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/supportedCommands","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"title":"supportedCommands","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18ClientCapabilitiesV17supportedCommandsSayAA18GeneralCommandTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities/supportedCommands":{"role":"symbol","title":"supportedCommands","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities\/supportedCommands","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilities\/supportedcommands"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto.json new file mode 100644 index 000000000..e084b239b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Client capabilities dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"title":"ClientCapabilitiesDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/appStoreURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/deviceProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/iconURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsContentUploading","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsMediaControl","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsPersistentIdentifier","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsSync","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/messageCallbackURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/playableMediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/supportedCommands"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/isSupportsContentUploading":{"role":"symbol","title":"isSupportsContentUploading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports content uploading."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsContentUploading","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportscontentuploading"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/isSupportsSync":{"role":"symbol","title":"isSupportsSync","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports sync."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsSync","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportssync"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/deviceProfile":{"role":"symbol","title":"deviceProfile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/deviceProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/supportedCommands":{"role":"symbol","title":"supportedCommands","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the list of supported commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/supportedCommands","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/supportedcommands"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)":{"role":"symbol","title":"init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/appStoreURL":{"role":"symbol","title":"appStoreURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the app store url."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/appStoreURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/appstoreurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/iconURL":{"role":"symbol","title":"iconURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the icon url."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/iconURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/iconurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/isSupportsPersistentIdentifier":{"role":"symbol","title":"isSupportsPersistentIdentifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports a persistent identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsPersistentIdentifier","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportspersistentidentifier"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/playableMediaTypes":{"role":"symbol","title":"playableMediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the list of playable media types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/playableMediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/playablemediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/messageCallbackURL":{"role":"symbol","title":"messageCallbackURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the message callback url."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/messageCallbackURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/messagecallbackurl"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/isSupportsMediaControl":{"role":"symbol","title":"isSupportsMediaControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports media control."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsMediaControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportsmediacontrol"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/appstoreurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/appstoreurl.json new file mode 100644 index 000000000..c9dce5242 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/appstoreurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/appstoreurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/appStoreURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the app store url."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"appStoreURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV11appStoreURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/appStoreURL":{"role":"symbol","title":"appStoreURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the app store url."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/appStoreURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/appstoreurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/deviceprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/deviceprofile.json new file mode 100644 index 000000000..2d22cae5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/deviceprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV","text":"DeviceProfile"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Specifically, it defines the supported "},{"type":"text","text":"containers"},{"type":"text","text":" and"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"codecs"},{"type":"text","text":" (video and\/or audio, including codec profiles and levels)"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"the device is able to direct play (without transcoding or remuxing),"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"as well as which "},{"type":"text","text":"containers\/codecs to transcode to"},{"type":"text","text":" in case it isn’t."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/deviceprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/deviceProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"title":"deviceProfile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV13deviceProfileAA06DeviceG0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/deviceProfile":{"role":"symbol","title":"deviceProfile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/deviceProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/iconurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/iconurl.json new file mode 100644 index 000000000..29360e573 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/iconurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/iconurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/iconURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the icon url."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"iconURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV7iconURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/iconURL":{"role":"symbol","title":"iconURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the icon url."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/iconURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/iconurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:).json new file mode 100644 index 000000000..3adbbda60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV","text":"DeviceProfile"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO","text":"GeneralCommandType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV11appStoreURL13deviceProfile04iconH0015messageCallbackH018playableMediaTypes17supportedCommands26isSupportsContentUploading0stO7Control0sT20PersistentIdentifier0sT4SyncACSSSg_AA06DeviceJ0VSgA2NSaySSGSgSayAA18GeneralCommandTypeOGSgSbSgA3Xtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)":{"role":"symbol","title":"init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appStoreURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/init(appStoreURL:deviceProfile:iconURL:messageCallbackURL:playableMediaTypes:supportedCommands:isSupportsContentUploading:isSupportsMediaControl:isSupportsPersistentIdentifier:isSupportsSync:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/init(appstoreurl:deviceprofile:iconurl:messagecallbackurl:playablemediatypes:supportedcommands:issupportscontentuploading:issupportsmediacontrol:issupportspersistentidentifier:issupportssync:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/init(from:).json new file mode 100644 index 000000000..50d7b0df1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportscontentuploading.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportscontentuploading.json new file mode 100644 index 000000000..010d47ec6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportscontentuploading.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportscontentuploading"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsContentUploading","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports content uploading."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsContentUploading","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV26isSupportsContentUploadingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/isSupportsContentUploading":{"role":"symbol","title":"isSupportsContentUploading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsContentUploading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports content uploading."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsContentUploading","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportscontentuploading"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportsmediacontrol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportsmediacontrol.json new file mode 100644 index 000000000..e81f13c03 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportsmediacontrol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportsmediacontrol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsMediaControl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports media control."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsMediaControl","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV22isSupportsMediaControlSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/isSupportsMediaControl":{"role":"symbol","title":"isSupportsMediaControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports media control."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsMediaControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportsmediacontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportspersistentidentifier.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportspersistentidentifier.json new file mode 100644 index 000000000..c95dc958b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportspersistentidentifier.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportspersistentidentifier"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsPersistentIdentifier","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports a persistent identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsPersistentIdentifier","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV30isSupportsPersistentIdentifierSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/isSupportsPersistentIdentifier":{"role":"symbol","title":"isSupportsPersistentIdentifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports a persistent identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsPersistentIdentifier","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportspersistentidentifier"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportssync.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportssync.json new file mode 100644 index 000000000..ec3085354 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/issupportssync.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportssync"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsSync","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports sync."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsSync","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV14isSupportsSyncSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/isSupportsSync":{"role":"symbol","title":"isSupportsSync","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether session supports sync."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/isSupportsSync","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/issupportssync"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/messagecallbackurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/messagecallbackurl.json new file mode 100644 index 000000000..51d3d52a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/messagecallbackurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/messagecallbackurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/messageCallbackURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the message callback url."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"messageCallbackURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV18messageCallbackURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/messageCallbackURL":{"role":"symbol","title":"messageCallbackURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"messageCallbackURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the message callback url."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/messageCallbackURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/messagecallbackurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/playablemediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/playablemediatypes.json new file mode 100644 index 000000000..1e80c51bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/playablemediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/playablemediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/playableMediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the list of playable media types."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"playableMediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV18playableMediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/playableMediaTypes":{"role":"symbol","title":"playableMediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the list of playable media types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/playableMediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/playablemediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/supportedcommands.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/supportedcommands.json new file mode 100644 index 000000000..29cadc8ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientcapabilitiesdto/supportedcommands.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO","text":"GeneralCommandType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientcapabilitiesdto\/supportedcommands"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/supportedCommands","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the list of supported commands."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"title":"supportedCommands","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ClientCapabilitiesDtoV17supportedCommandsSayAA18GeneralCommandTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto/supportedCommands":{"role":"symbol","title":"supportedCommands","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the list of supported commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto\/supportedCommands","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto\/supportedcommands"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto.json new file mode 100644 index 000000000..3f7720ce7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientlogdocumentresponsedto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Client log document response dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"title":"ClientLogDocumentResponseDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI28ClientLogDocumentResponseDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ClientLogDocumentResponseDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/init(fileName:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/fileName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto/fileName":{"role":"symbol","title":"fileName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the resulting filename."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/fileName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto\/filename"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto/init(fileName:)":{"role":"symbol","title":"init(fileName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/init(fileName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto\/init(filename:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto":{"role":"symbol","title":"ClientLogDocumentResponseDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"abstract":[{"type":"text","text":"Client log document response dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto/filename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto/filename.json new file mode 100644 index 000000000..63931617f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto/filename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientlogdocumentresponsedto\/filename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/fileName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the resulting filename."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"fileName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI28ClientLogDocumentResponseDtoV8fileNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto":{"role":"symbol","title":"ClientLogDocumentResponseDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"abstract":[{"type":"text","text":"Client log document response dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto/fileName":{"role":"symbol","title":"fileName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the resulting filename."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/fileName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto\/filename"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto/init(filename:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto/init(filename:).json new file mode 100644 index 000000000..36f60843d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto/init(filename:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientlogdocumentresponsedto\/init(filename:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/init(fileName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(fileName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI28ClientLogDocumentResponseDtoV8fileNameACSSSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto":{"role":"symbol","title":"ClientLogDocumentResponseDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"abstract":[{"type":"text","text":"Client log document response dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto/init(fileName:)":{"role":"symbol","title":"init(fileName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/init(fileName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto\/init(filename:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto/init(from:).json new file mode 100644 index 000000000..7fdef3348 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/clientlogdocumentresponsedto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/clientlogdocumentresponsedto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI28ClientLogDocumentResponseDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto":{"role":"symbol","title":"ClientLogDocumentResponseDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"abstract":[{"type":"text","text":"Client log document response dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile.json new file mode 100644 index 000000000..b8bd000fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codecprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"title":"CodecProfile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI12CodecProfileV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/init(applyConditions:codec:conditions:container:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/applyConditions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/codec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/conditions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/type"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CodecType","preciseIdentifier":"s:11JellyfinAPI9CodecTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/applyConditions":{"role":"symbol","title":"applyConditions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"applyConditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/applyConditions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/applyconditions"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/conditions":{"role":"symbol","title":"conditions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/conditions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/conditions"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/container"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/init(applyConditions:codec:conditions:container:type:)":{"role":"symbol","title":"init(applyConditions:codec:conditions:container:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"applyConditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CodecType","preciseIdentifier":"s:11JellyfinAPI9CodecTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/init(applyConditions:codec:conditions:container:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/init(applyconditions:codec:conditions:container:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/codec":{"role":"symbol","title":"codec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/codec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/codec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/applyconditions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/applyconditions.json new file mode 100644 index 000000000..4cda5cdcd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/applyconditions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"applyConditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV","text":"ProfileCondition"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codecprofile\/applyconditions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/applyConditions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"applyConditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"title":"applyConditions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12CodecProfileV15applyConditionsSayAA0D9ConditionVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/applyConditions":{"role":"symbol","title":"applyConditions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"applyConditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/applyConditions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/applyconditions"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/codec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/codec.json new file mode 100644 index 000000000..7f2a964e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/codec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codecprofile\/codec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/codec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"codec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12CodecProfileV5codecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/codec":{"role":"symbol","title":"codec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/codec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/codec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/conditions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/conditions.json new file mode 100644 index 000000000..f2a5b18ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/conditions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV","text":"ProfileCondition"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codecprofile\/conditions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/conditions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"title":"conditions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12CodecProfileV10conditionsSayAA0D9ConditionVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/conditions":{"role":"symbol","title":"conditions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/conditions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/conditions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/container.json new file mode 100644 index 000000000..b8d88a2b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codecprofile\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12CodecProfileV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/init(applyconditions:codec:conditions:container:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/init(applyconditions:codec:conditions:container:type:).json new file mode 100644 index 000000000..bce8e4843 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/init(applyconditions:codec:conditions:container:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"applyConditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV","text":"ProfileCondition"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV","text":"ProfileCondition"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","preciseIdentifier":"s:11JellyfinAPI9CodecTypeO","text":"CodecType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codecprofile\/init(applyconditions:codec:conditions:container:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/init(applyConditions:codec:conditions:container:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"applyConditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CodecType","preciseIdentifier":"s:11JellyfinAPI9CodecTypeO"},{"kind":"text","text":"?)"}],"title":"init(applyConditions:codec:conditions:container:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12CodecProfileV15applyConditions5codec10conditions9container4typeACSayAA0D9ConditionVGSg_SSSgAlmA0C4TypeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/init(applyConditions:codec:conditions:container:type:)":{"role":"symbol","title":"init(applyConditions:codec:conditions:container:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"applyConditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CodecType","preciseIdentifier":"s:11JellyfinAPI9CodecTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/init(applyConditions:codec:conditions:container:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/init(applyconditions:codec:conditions:container:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/init(from:).json new file mode 100644 index 000000000..7dff2d324 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codecprofile\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12CodecProfileV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/type.json new file mode 100644 index 000000000..cccacf831 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codecprofile/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","preciseIdentifier":"s:11JellyfinAPI9CodecTypeO","text":"CodecType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codecprofile\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CodecType","preciseIdentifier":"s:11JellyfinAPI9CodecTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12CodecProfileV4typeAA0C4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CodecType","preciseIdentifier":"s:11JellyfinAPI9CodecTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codecprofile\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype.json new file mode 100644 index 000000000..06c9b1779 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"title":"CodecType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI9CodecTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"CodecType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/audio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/video","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/videoAudio"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/audio":{"role":"symbol","title":"CodecType.audio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/audio"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/videoAudio":{"role":"symbol","title":"CodecType.videoAudio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/videoAudio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/videoaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/video":{"role":"symbol","title":"CodecType.video","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/video","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/video"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/!=(_:_:).json new file mode 100644 index 000000000..e36ef793b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI9CodecTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/audio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/audio.json new file mode 100644 index 000000000..3a260b554 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/audio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/audio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/audio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"title":"CodecType.audio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9CodecTypeO5audioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/audio":{"role":"symbol","title":"CodecType.audio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/audio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/encode(to:).json new file mode 100644 index 000000000..bcf4dc8fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI9CodecTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/equatable-implementations.json new file mode 100644 index 000000000..34d2fe2a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/hash(into:).json new file mode 100644 index 000000000..4d964c935 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI9CodecTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/hashvalue.json new file mode 100644 index 000000000..6ead78303 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI9CodecTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/init(from:).json new file mode 100644 index 000000000..1c830da49 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI9CodecTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/init(rawvalue:).json new file mode 100644 index 000000000..f4b544fb1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9CodecTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/rawrepresentable-implementations.json new file mode 100644 index 000000000..ed12c706b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/video.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/video.json new file mode 100644 index 000000000..186e17e54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/video.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/video"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/video","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"title":"CodecType.video","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9CodecTypeO5videoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/video":{"role":"symbol","title":"CodecType.video","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/video","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/video"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/videoaudio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/videoaudio.json new file mode 100644 index 000000000..1ecaae330 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/codectype/videoaudio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoAudio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/codectype\/videoaudio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/videoAudio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoAudio"}],"title":"CodecType.videoAudio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9CodecTypeO10videoAudioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType/videoAudio":{"role":"symbol","title":"CodecType.videoAudio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType\/videoAudio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/codectype\/videoaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecType":{"role":"symbol","title":"CodecType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecType"}],"url":"\/documentation\/jellyfinapi\/codectype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult.json new file mode 100644 index 000000000..97d5f2460 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionCreationResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectioncreationresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionCreationResult"}],"title":"CollectionCreationResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI24CollectionCreationResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"CollectionCreationResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/init(id:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/id-6jcmo"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/collectioncreationresult\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult/id-6jcmo":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/id-6jcmo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectioncreationresult\/id-6jcmo"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult/init(id:)":{"role":"symbol","title":"init(id:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/init(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectioncreationresult\/init(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectioncreationresult\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult":{"role":"symbol","title":"CollectionCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionCreationResult"}],"url":"\/documentation\/jellyfinapi\/collectioncreationresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/id-6jcmo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/id-6jcmo.json new file mode 100644 index 000000000..946994c8d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/id-6jcmo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectioncreationresult\/id-6jcmo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/id-6jcmo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI24CollectionCreationResultV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult":{"role":"symbol","title":"CollectionCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionCreationResult"}],"url":"\/documentation\/jellyfinapi\/collectioncreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult/id-6jcmo":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/id-6jcmo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectioncreationresult\/id-6jcmo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/id-t4pi.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/id-t4pi.json new file mode 100644 index 000000000..0f6c431f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/id-t4pi.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectioncreationresult\/id-t4pi"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/id-t4pi","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI24CollectionCreationResultV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/collectioncreationresult\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult":{"role":"symbol","title":"CollectionCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionCreationResult"}],"url":"\/documentation\/jellyfinapi\/collectioncreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult/id-t4pi":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/id-t4pi","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectioncreationresult\/id-t4pi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/identifiable-implementations.json new file mode 100644 index 000000000..d7ae71a73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/collectioncreationresult\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/id-t4pi"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult":{"role":"symbol","title":"CollectionCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionCreationResult"}],"url":"\/documentation\/jellyfinapi\/collectioncreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult/id-t4pi":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/id-t4pi","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectioncreationresult\/id-t4pi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/init(from:).json new file mode 100644 index 000000000..604a1072f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectioncreationresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI24CollectionCreationResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult":{"role":"symbol","title":"CollectionCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionCreationResult"}],"url":"\/documentation\/jellyfinapi\/collectioncreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectioncreationresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/init(id:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/init(id:).json new file mode 100644 index 000000000..ff211d77d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectioncreationresult/init(id:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectioncreationresult\/init(id:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/init(id:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(id:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI24CollectionCreationResultV2idAC10Foundation4UUIDVSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult":{"role":"symbol","title":"CollectionCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionCreationResult"}],"url":"\/documentation\/jellyfinapi\/collectioncreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult/init(id:)":{"role":"symbol","title":"init(id:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult\/init(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectioncreationresult\/init(id:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions.json new file mode 100644 index 000000000..c7108f3f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"title":"CollectionTypeOptions","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI21CollectionTypeOptionsO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/books","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/boxSets","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/homeVideos","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/mixed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/movies","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/music","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/musicVideos","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/tvShows"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/tvShows":{"role":"symbol","title":"CollectionTypeOptions.tvShows","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvShows"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/tvShows","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/tvshows"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/books":{"role":"symbol","title":"CollectionTypeOptions.books","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"books"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/books","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/books"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/music":{"role":"symbol","title":"CollectionTypeOptions.music","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"music"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/music","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/music"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/boxSets":{"role":"symbol","title":"CollectionTypeOptions.boxSets","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSets"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/boxSets","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/boxsets"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/mixed":{"role":"symbol","title":"CollectionTypeOptions.mixed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mixed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/mixed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/mixed"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/movies":{"role":"symbol","title":"CollectionTypeOptions.movies","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movies"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/movies","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/movies"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/musicVideos":{"role":"symbol","title":"CollectionTypeOptions.musicVideos","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideos"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/musicVideos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/musicvideos"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/rawrepresentable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/homeVideos":{"role":"symbol","title":"CollectionTypeOptions.homeVideos","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"homeVideos"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/homeVideos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/homevideos"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/!=(_:_:).json new file mode 100644 index 000000000..5efdb0ff6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI21CollectionTypeOptionsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/books.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/books.json new file mode 100644 index 000000000..7f8c11e8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/books.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"books"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/books"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/books","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"books"}],"title":"CollectionTypeOptions.books","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21CollectionTypeOptionsO5booksyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/books":{"role":"symbol","title":"CollectionTypeOptions.books","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"books"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/books","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/books"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/boxsets.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/boxsets.json new file mode 100644 index 000000000..76d85021b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/boxsets.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSets"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/boxsets"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/boxSets","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSets"}],"title":"CollectionTypeOptions.boxSets","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21CollectionTypeOptionsO7boxSetsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/boxSets":{"role":"symbol","title":"CollectionTypeOptions.boxSets","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSets"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/boxSets","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/boxsets"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/encode(to:).json new file mode 100644 index 000000000..dbf084022 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI21CollectionTypeOptionsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/equatable-implementations.json new file mode 100644 index 000000000..c71f5af6c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/hash(into:).json new file mode 100644 index 000000000..418d46dfc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI21CollectionTypeOptionsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/hashvalue.json new file mode 100644 index 000000000..e9e702f90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI21CollectionTypeOptionsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/homevideos.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/homevideos.json new file mode 100644 index 000000000..465773cea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/homevideos.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"homeVideos"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/homevideos"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/homeVideos","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"homeVideos"}],"title":"CollectionTypeOptions.homeVideos","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21CollectionTypeOptionsO10homeVideosyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/homeVideos":{"role":"symbol","title":"CollectionTypeOptions.homeVideos","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"homeVideos"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/homeVideos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/homevideos"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/init(from:).json new file mode 100644 index 000000000..043841e8d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI21CollectionTypeOptionsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/init(rawvalue:).json new file mode 100644 index 000000000..9ce9d2ba3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21CollectionTypeOptionsO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/mixed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/mixed.json new file mode 100644 index 000000000..c8a8c9f18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/mixed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mixed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/mixed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/mixed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mixed"}],"title":"CollectionTypeOptions.mixed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21CollectionTypeOptionsO5mixedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/mixed":{"role":"symbol","title":"CollectionTypeOptions.mixed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mixed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/mixed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/mixed"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/movies.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/movies.json new file mode 100644 index 000000000..51dda971e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/movies.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movies"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/movies"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/movies","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movies"}],"title":"CollectionTypeOptions.movies","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21CollectionTypeOptionsO6moviesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/movies":{"role":"symbol","title":"CollectionTypeOptions.movies","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movies"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/movies","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/movies"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/music.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/music.json new file mode 100644 index 000000000..b31022f90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/music.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"music"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/music"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/music","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"music"}],"title":"CollectionTypeOptions.music","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21CollectionTypeOptionsO5musicyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/music":{"role":"symbol","title":"CollectionTypeOptions.music","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"music"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/music","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/music"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/musicvideos.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/musicvideos.json new file mode 100644 index 000000000..aa806ca00 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/musicvideos.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideos"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/musicvideos"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/musicVideos","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideos"}],"title":"CollectionTypeOptions.musicVideos","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21CollectionTypeOptionsO11musicVideosyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/musicVideos":{"role":"symbol","title":"CollectionTypeOptions.musicVideos","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideos"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/musicVideos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/musicvideos"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/rawrepresentable-implementations.json new file mode 100644 index 000000000..1e60d4f1e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/tvshows.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/tvshows.json new file mode 100644 index 000000000..8b1d7459c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/collectiontypeoptions/tvshows.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvShows"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/collectiontypeoptions\/tvshows"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/tvShows","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvShows"}],"title":"CollectionTypeOptions.tvShows","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21CollectionTypeOptionsO7tvShowsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions/tvShows":{"role":"symbol","title":"CollectionTypeOptions.tvShows","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tvShows"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions\/tvShows","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/collectiontypeoptions\/tvshows"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes.json new file mode 100644 index 000000000..331fbd457 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"title":"ConfigImageTypes","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16ConfigImageTypesV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/init(backdropSizes:baseURL:logoSizes:posterSizes:profileSizes:secureBaseURL:stillSizes:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/backdropSizes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/baseURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/logoSizes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/posterSizes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/profileSizes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/secureBaseURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/stillSizes"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/posterSizes":{"role":"symbol","title":"posterSizes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"posterSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/posterSizes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/postersizes"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/init(backdropSizes:baseURL:logoSizes:posterSizes:profileSizes:secureBaseURL:stillSizes:)":{"role":"symbol","title":"init(backdropSizes:baseURL:logoSizes:posterSizes:profileSizes:secureBaseURL:stillSizes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"backdropSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"logoSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"posterSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"profileSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"secureBaseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"stillSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/init(backdropSizes:baseURL:logoSizes:posterSizes:profileSizes:secureBaseURL:stillSizes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/init(backdropsizes:baseurl:logosizes:postersizes:profilesizes:securebaseurl:stillsizes:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/backdropSizes":{"role":"symbol","title":"backdropSizes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/backdropSizes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/backdropsizes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/profileSizes":{"role":"symbol","title":"profileSizes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profileSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/profileSizes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/profilesizes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/stillSizes":{"role":"symbol","title":"stillSizes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"stillSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/stillSizes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/stillsizes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/baseURL":{"role":"symbol","title":"baseURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/baseURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/baseurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/logoSizes":{"role":"symbol","title":"logoSizes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logoSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/logoSizes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/logosizes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/secureBaseURL":{"role":"symbol","title":"secureBaseURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secureBaseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/secureBaseURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/securebaseurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/backdropsizes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/backdropsizes.json new file mode 100644 index 000000000..965046b16 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/backdropsizes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configimagetypes\/backdropsizes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/backdropSizes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"backdropSizes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ConfigImageTypesV13backdropSizesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/backdropSizes":{"role":"symbol","title":"backdropSizes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/backdropSizes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/backdropsizes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/baseurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/baseurl.json new file mode 100644 index 000000000..c03cd7ae9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/baseurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configimagetypes\/baseurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/baseURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"baseURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ConfigImageTypesV7baseURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/baseURL":{"role":"symbol","title":"baseURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/baseURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/baseurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/init(backdropsizes:baseurl:logosizes:postersizes:profilesizes:securebaseurl:stillsizes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/init(backdropsizes:baseurl:logosizes:postersizes:profilesizes:securebaseurl:stillsizes:).json new file mode 100644 index 000000000..b2ed1ffdf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/init(backdropsizes:baseurl:logosizes:postersizes:profilesizes:securebaseurl:stillsizes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"backdropSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"logoSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"posterSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"profileSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"secureBaseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"stillSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configimagetypes\/init(backdropsizes:baseurl:logosizes:postersizes:profilesizes:securebaseurl:stillsizes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/init(backdropSizes:baseURL:logoSizes:posterSizes:profileSizes:secureBaseURL:stillSizes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"backdropSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"logoSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"posterSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"profileSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"secureBaseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"stillSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"title":"init(backdropSizes:baseURL:logoSizes:posterSizes:profileSizes:secureBaseURL:stillSizes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ConfigImageTypesV13backdropSizes7baseURL04logoG006posterG007profileG0010secureBaseI005stillG0ACSaySSGSg_SSSgA3lmLtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/init(backdropSizes:baseURL:logoSizes:posterSizes:profileSizes:secureBaseURL:stillSizes:)":{"role":"symbol","title":"init(backdropSizes:baseURL:logoSizes:posterSizes:profileSizes:secureBaseURL:stillSizes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"backdropSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"logoSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"posterSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"profileSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"secureBaseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"stillSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/init(backdropSizes:baseURL:logoSizes:posterSizes:profileSizes:secureBaseURL:stillSizes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/init(backdropsizes:baseurl:logosizes:postersizes:profilesizes:securebaseurl:stillsizes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/init(from:).json new file mode 100644 index 000000000..401431107 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configimagetypes\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ConfigImageTypesV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/logosizes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/logosizes.json new file mode 100644 index 000000000..89d58a495 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/logosizes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logoSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configimagetypes\/logosizes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/logoSizes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logoSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"logoSizes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ConfigImageTypesV9logoSizesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/logoSizes":{"role":"symbol","title":"logoSizes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logoSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/logoSizes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/logosizes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/postersizes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/postersizes.json new file mode 100644 index 000000000..e19fbc6ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/postersizes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"posterSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configimagetypes\/postersizes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/posterSizes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"posterSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"posterSizes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ConfigImageTypesV11posterSizesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/posterSizes":{"role":"symbol","title":"posterSizes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"posterSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/posterSizes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/postersizes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/profilesizes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/profilesizes.json new file mode 100644 index 000000000..9533590da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/profilesizes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profileSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configimagetypes\/profilesizes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/profileSizes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profileSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"profileSizes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ConfigImageTypesV12profileSizesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/profileSizes":{"role":"symbol","title":"profileSizes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profileSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/profileSizes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/profilesizes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/securebaseurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/securebaseurl.json new file mode 100644 index 000000000..ca09c6974 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/securebaseurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secureBaseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configimagetypes\/securebaseurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/secureBaseURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secureBaseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"secureBaseURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ConfigImageTypesV13secureBaseURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/secureBaseURL":{"role":"symbol","title":"secureBaseURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secureBaseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/secureBaseURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/securebaseurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/stillsizes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/stillsizes.json new file mode 100644 index 000000000..1c8d517d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configimagetypes/stillsizes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"stillSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configimagetypes\/stillsizes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/stillSizes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"stillSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"stillSizes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ConfigImageTypesV10stillSizesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes/stillSizes":{"role":"symbol","title":"stillSizes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"stillSizes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes\/stillSizes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configimagetypes\/stillsizes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo.json new file mode 100644 index 000000000..a54b36255 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configurationpageinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The configuration page info."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"title":"ConfigurationPageInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI21ConfigurationPageInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/init(displayName:enableInMainMenu:menuIcon:menuSection:name:pluginID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/displayName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/enableInMainMenu","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/menuIcon","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/menuSection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/pluginID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/menuSection":{"role":"symbol","title":"menuSection","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuSection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the menu section."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/menuSection","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/menusection"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/enableInMainMenu":{"role":"symbol","title":"enableInMainMenu","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the configurations page is enabled in the main menu."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/enableInMainMenu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/enableinmainmenu"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/init(displayName:enableInMainMenu:menuIcon:menuSection:name:pluginID:)":{"role":"symbol","title":"init(displayName:enableInMainMenu:menuIcon:menuSection:name:pluginID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"menuIcon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"menuSection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/init(displayName:enableInMainMenu:menuIcon:menuSection:name:pluginID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/init(displayname:enableinmainmenu:menuicon:menusection:name:pluginid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/pluginID":{"role":"symbol","title":"pluginID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the plugin id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/pluginID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/pluginid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/displayName":{"role":"symbol","title":"displayName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/displayName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/displayname"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/menuIcon":{"role":"symbol","title":"menuIcon","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuIcon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the menu icon."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/menuIcon","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/menuicon"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/displayname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/displayname.json new file mode 100644 index 000000000..2371a611d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/displayname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configurationpageinfo\/displayname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/displayName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the display name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"displayName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ConfigurationPageInfoV11displayNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/displayName":{"role":"symbol","title":"displayName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/displayName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/displayname"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/enableinmainmenu.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/enableinmainmenu.json new file mode 100644 index 000000000..e181cd0c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/enableinmainmenu.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configurationpageinfo\/enableinmainmenu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/enableInMainMenu","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the configurations page is enabled in the main menu."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableInMainMenu","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ConfigurationPageInfoV16enableInMainMenuSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/enableInMainMenu":{"role":"symbol","title":"enableInMainMenu","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the configurations page is enabled in the main menu."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/enableInMainMenu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/enableinmainmenu"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/init(displayname:enableinmainmenu:menuicon:menusection:name:pluginid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/init(displayname:enableinmainmenu:menuicon:menusection:name:pluginid:).json new file mode 100644 index 000000000..e1bfbb2e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/init(displayname:enableinmainmenu:menuicon:menusection:name:pluginid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"menuIcon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"menuSection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configurationpageinfo\/init(displayname:enableinmainmenu:menuicon:menusection:name:pluginid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/init(displayName:enableInMainMenu:menuIcon:menuSection:name:pluginID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"menuIcon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"menuSection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(displayName:enableInMainMenu:menuIcon:menuSection:name:pluginID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21ConfigurationPageInfoV11displayName16enableInMainMenu8menuIcon0L7Section4name8pluginIDACSSSg_SbSgA3J10Foundation4UUIDVSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/init(displayName:enableInMainMenu:menuIcon:menuSection:name:pluginID:)":{"role":"symbol","title":"init(displayName:enableInMainMenu:menuIcon:menuSection:name:pluginID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"menuIcon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"menuSection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/init(displayName:enableInMainMenu:menuIcon:menuSection:name:pluginID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/init(displayname:enableinmainmenu:menuicon:menusection:name:pluginid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/init(from:).json new file mode 100644 index 000000000..6c46c1880 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configurationpageinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21ConfigurationPageInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/menuicon.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/menuicon.json new file mode 100644 index 000000000..35fff3e92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/menuicon.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuIcon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configurationpageinfo\/menuicon"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/menuIcon","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the menu icon."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuIcon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"menuIcon","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ConfigurationPageInfoV8menuIconSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/menuIcon":{"role":"symbol","title":"menuIcon","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuIcon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the menu icon."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/menuIcon","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/menuicon"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/menusection.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/menusection.json new file mode 100644 index 000000000..23b573fb1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/menusection.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuSection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configurationpageinfo\/menusection"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/menuSection","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the menu section."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuSection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"menuSection","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ConfigurationPageInfoV11menuSectionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/menuSection":{"role":"symbol","title":"menuSection","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuSection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the menu section."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/menuSection","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/menusection"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/name.json new file mode 100644 index 000000000..a91e32a14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configurationpageinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ConfigurationPageInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/pluginid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/pluginid.json new file mode 100644 index 000000000..ffe70908c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/configurationpageinfo/pluginid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/configurationpageinfo\/pluginid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/pluginID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the plugin id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"pluginID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21ConfigurationPageInfoV8pluginID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo/pluginID":{"role":"symbol","title":"pluginID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the plugin id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo\/pluginID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/configurationpageinfo\/pluginid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile.json new file mode 100644 index 000000000..d386855ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/containerprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"title":"ContainerProfile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16ContainerProfileV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ContainerProfile"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/init(conditions:container:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/conditions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/type"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile/conditions":{"role":"symbol","title":"conditions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/conditions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/containerprofile\/conditions"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile/init(conditions:container:type:)":{"role":"symbol","title":"init(conditions:container:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/init(conditions:container:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/containerprofile\/init(conditions:container:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/containerprofile\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/containerprofile\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile":{"role":"symbol","title":"ContainerProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ContainerProfile"}],"url":"\/documentation\/jellyfinapi\/containerprofile"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/containerprofile\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/conditions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/conditions.json new file mode 100644 index 000000000..d7afb3b07 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/conditions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV","text":"ProfileCondition"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/containerprofile\/conditions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/conditions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"title":"conditions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ContainerProfileV10conditionsSayAA0D9ConditionVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile":{"role":"symbol","title":"ContainerProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ContainerProfile"}],"url":"\/documentation\/jellyfinapi\/containerprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile/conditions":{"role":"symbol","title":"conditions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/conditions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/containerprofile\/conditions"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/container.json new file mode 100644 index 000000000..dd2c632b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/containerprofile\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ContainerProfileV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile":{"role":"symbol","title":"ContainerProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ContainerProfile"}],"url":"\/documentation\/jellyfinapi\/containerprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/containerprofile\/container"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/init(conditions:container:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/init(conditions:container:type:).json new file mode 100644 index 000000000..e645016d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/init(conditions:container:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV","text":"ProfileCondition"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO","text":"DlnaProfileType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/containerprofile\/init(conditions:container:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/init(conditions:container:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?)"}],"title":"init(conditions:container:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ContainerProfileV10conditions9container4typeACSayAA0D9ConditionVGSg_SSSgAA04DlnaD4TypeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile":{"role":"symbol","title":"ContainerProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ContainerProfile"}],"url":"\/documentation\/jellyfinapi\/containerprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile/init(conditions:container:type:)":{"role":"symbol","title":"init(conditions:container:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/init(conditions:container:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/containerprofile\/init(conditions:container:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/init(from:).json new file mode 100644 index 000000000..e6f0ad101 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/containerprofile\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ContainerProfileV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/containerprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile":{"role":"symbol","title":"ContainerProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ContainerProfile"}],"url":"\/documentation\/jellyfinapi\/containerprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/type.json new file mode 100644 index 000000000..5900dea3d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/containerprofile/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO","text":"DlnaProfileType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/containerprofile\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ContainerProfileV4typeAA04DlnaD4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile":{"role":"symbol","title":"ContainerProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ContainerProfile"}],"url":"\/documentation\/jellyfinapi\/containerprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/containerprofile\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse.json new file mode 100644 index 000000000..9cd74a40d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ControlResponse"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/controlresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ControlResponse"}],"title":"ControlResponse","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15ControlResponseV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ControlResponse"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/init(headers:isSuccessful:xml:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/headers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/isSuccessful","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/xml"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse/init(headers:isSuccessful:xml:)":{"role":"symbol","title":"init(headers:isSuccessful:xml:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSuccessful"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"xml"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/init(headers:isSuccessful:xml:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/controlresponse\/init(headers:issuccessful:xml:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse":{"role":"symbol","title":"ControlResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ControlResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ControlResponse"}],"url":"\/documentation\/jellyfinapi\/controlresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse/isSuccessful":{"role":"symbol","title":"isSuccessful","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSuccessful"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/isSuccessful","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/controlresponse\/issuccessful"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/controlresponse\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse/headers":{"role":"symbol","title":"headers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/headers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/controlresponse\/headers"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse/xml":{"role":"symbol","title":"xml","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"xml"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/xml","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/controlresponse\/xml"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/headers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/headers.json new file mode 100644 index 000000000..56ed7e0e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/headers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/controlresponse\/headers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/headers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"headers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ControlResponseV7headersSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse":{"role":"symbol","title":"ControlResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ControlResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ControlResponse"}],"url":"\/documentation\/jellyfinapi\/controlresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse/headers":{"role":"symbol","title":"headers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/headers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/controlresponse\/headers"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/init(from:).json new file mode 100644 index 000000000..3ab9880f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/controlresponse\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ControlResponseV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse":{"role":"symbol","title":"ControlResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ControlResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ControlResponse"}],"url":"\/documentation\/jellyfinapi\/controlresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/controlresponse\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/init(headers:issuccessful:xml:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/init(headers:issuccessful:xml:).json new file mode 100644 index 000000000..4c794386a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/init(headers:issuccessful:xml:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isSuccessful"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"xml"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/controlresponse\/init(headers:issuccessful:xml:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/init(headers:isSuccessful:xml:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSuccessful"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"xml"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(headers:isSuccessful:xml:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ControlResponseV7headers12isSuccessful3xmlACSDyS2SGSg_SbSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse":{"role":"symbol","title":"ControlResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ControlResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ControlResponse"}],"url":"\/documentation\/jellyfinapi\/controlresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse/init(headers:isSuccessful:xml:)":{"role":"symbol","title":"init(headers:isSuccessful:xml:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSuccessful"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"xml"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/init(headers:isSuccessful:xml:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/controlresponse\/init(headers:issuccessful:xml:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/issuccessful.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/issuccessful.json new file mode 100644 index 000000000..d979476c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/issuccessful.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSuccessful"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/controlresponse\/issuccessful"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/isSuccessful","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSuccessful"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSuccessful","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ControlResponseV12isSuccessfulSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse/isSuccessful":{"role":"symbol","title":"isSuccessful","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSuccessful"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/isSuccessful","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/controlresponse\/issuccessful"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse":{"role":"symbol","title":"ControlResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ControlResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ControlResponse"}],"url":"\/documentation\/jellyfinapi\/controlresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/xml.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/xml.json new file mode 100644 index 000000000..af9901e39 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/controlresponse/xml.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"xml"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/controlresponse\/xml"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/xml","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"xml"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"xml","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ControlResponseV3xmlSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse/xml":{"role":"symbol","title":"xml","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"xml"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse\/xml","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/controlresponse\/xml"},"doc://JellyfinAPI/documentation/JellyfinAPI/ControlResponse":{"role":"symbol","title":"ControlResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ControlResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ControlResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ControlResponse"}],"url":"\/documentation\/jellyfinapi\/controlresponse"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo.json new file mode 100644 index 000000000..886ced135 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/countryinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class CountryInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"title":"CountryInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11CountryInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/init(displayName:name:threeLetterISORegionName:twoLetterISORegionName:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/displayName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/threeLetterISORegionName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/twoLetterISORegionName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/displayName":{"role":"symbol","title":"displayName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/displayName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/displayname"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/init(displayName:name:threeLetterISORegionName:twoLetterISORegionName:)":{"role":"symbol","title":"init(displayName:name:threeLetterISORegionName:twoLetterISORegionName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"twoLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/init(displayName:name:threeLetterISORegionName:twoLetterISORegionName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/init(displayname:name:threeletterisoregionname:twoletterisoregionname:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/threeLetterISORegionName":{"role":"symbol","title":"threeLetterISORegionName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the three letter ISO region."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/threeLetterISORegionName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/threeletterisoregionname"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/twoLetterISORegionName":{"role":"symbol","title":"twoLetterISORegionName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"twoLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the two letter ISO region."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/twoLetterISORegionName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/twoletterisoregionname"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/displayname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/displayname.json new file mode 100644 index 000000000..412a6bd4b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/displayname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/countryinfo\/displayname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/displayName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the display name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"displayName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11CountryInfoV11displayNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/displayName":{"role":"symbol","title":"displayName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/displayName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/displayname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/init(displayname:name:threeletterisoregionname:twoletterisoregionname:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/init(displayname:name:threeletterisoregionname:twoletterisoregionname:).json new file mode 100644 index 000000000..6e4849383 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/init(displayname:name:threeletterisoregionname:twoletterisoregionname:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"threeLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"twoLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/countryinfo\/init(displayname:name:threeletterisoregionname:twoletterisoregionname:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/init(displayName:name:threeLetterISORegionName:twoLetterISORegionName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"twoLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(displayName:name:threeLetterISORegionName:twoLetterISORegionName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11CountryInfoV11displayName4name020threeLetterISORegionF003twoijF0ACSSSg_A3Htcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/init(displayName:name:threeLetterISORegionName:twoLetterISORegionName:)":{"role":"symbol","title":"init(displayName:name:threeLetterISORegionName:twoLetterISORegionName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"twoLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/init(displayName:name:threeLetterISORegionName:twoLetterISORegionName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/init(displayname:name:threeletterisoregionname:twoletterisoregionname:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/init(from:).json new file mode 100644 index 000000000..f7d270576 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/countryinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11CountryInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/name.json new file mode 100644 index 000000000..dafc64a68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/countryinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11CountryInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/threeletterisoregionname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/threeletterisoregionname.json new file mode 100644 index 000000000..7a6e046c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/threeletterisoregionname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/countryinfo\/threeletterisoregionname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/threeLetterISORegionName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the three letter ISO region."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"threeLetterISORegionName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11CountryInfoV24threeLetterISORegionNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/threeLetterISORegionName":{"role":"symbol","title":"threeLetterISORegionName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the three letter ISO region."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/threeLetterISORegionName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/threeletterisoregionname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/twoletterisoregionname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/twoletterisoregionname.json new file mode 100644 index 000000000..77ba9e314 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/countryinfo/twoletterisoregionname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"twoLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/countryinfo\/twoletterisoregionname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/twoLetterISORegionName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the two letter ISO region."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"twoLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"twoLetterISORegionName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11CountryInfoV22twoLetterISORegionNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo/twoLetterISORegionName":{"role":"symbol","title":"twoLetterISORegionName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"twoLetterISORegionName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the two letter ISO region."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo\/twoLetterISORegionName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/countryinfo\/twoletterisoregionname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto.json new file mode 100644 index 000000000..2bf4229e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createplaylistdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Create new playlist dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"title":"CreatePlaylistDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17CreatePlaylistDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/init(ids:mediaType:name:userID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/ids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/mediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/init(ids:mediaType:name:userID:)":{"role":"symbol","title":"init(ids:mediaType:name:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/init(ids:mediaType:name:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/init(ids:mediatype:name:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/userid"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets item ids to add to the playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/ids"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/mediaType":{"role":"symbol","title":"mediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the media type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/mediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/mediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the new playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto":{"role":"symbol","title":"CreatePlaylistDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"abstract":[{"type":"text","text":"Create new playlist dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistDto"}],"url":"\/documentation\/jellyfinapi\/createplaylistdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/ids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/ids.json new file mode 100644 index 000000000..192f3f1bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/ids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createplaylistdto\/ids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/ids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets item ids to add to the playlist."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"ids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17CreatePlaylistDtoV3idsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto":{"role":"symbol","title":"CreatePlaylistDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"abstract":[{"type":"text","text":"Create new playlist dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistDto"}],"url":"\/documentation\/jellyfinapi\/createplaylistdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets item ids to add to the playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/ids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/init(from:).json new file mode 100644 index 000000000..97fc73c1e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createplaylistdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17CreatePlaylistDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto":{"role":"symbol","title":"CreatePlaylistDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"abstract":[{"type":"text","text":"Create new playlist dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistDto"}],"url":"\/documentation\/jellyfinapi\/createplaylistdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/init(ids:mediatype:name:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/init(ids:mediatype:name:userid:).json new file mode 100644 index 000000000..e36a11259 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/init(ids:mediatype:name:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createplaylistdto\/init(ids:mediatype:name:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/init(ids:mediaType:name:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(ids:mediaType:name:userID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17CreatePlaylistDtoV3ids9mediaType4name6userIDACSay10Foundation4UUIDVGSg_SSSgAmJSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/init(ids:mediaType:name:userID:)":{"role":"symbol","title":"init(ids:mediaType:name:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/init(ids:mediaType:name:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/init(ids:mediatype:name:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto":{"role":"symbol","title":"CreatePlaylistDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"abstract":[{"type":"text","text":"Create new playlist dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistDto"}],"url":"\/documentation\/jellyfinapi\/createplaylistdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/mediatype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/mediatype.json new file mode 100644 index 000000000..10c76b369 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/mediatype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createplaylistdto\/mediatype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/mediaType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the media type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17CreatePlaylistDtoV9mediaTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto":{"role":"symbol","title":"CreatePlaylistDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"abstract":[{"type":"text","text":"Create new playlist dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistDto"}],"url":"\/documentation\/jellyfinapi\/createplaylistdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/mediaType":{"role":"symbol","title":"mediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the media type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/mediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/mediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/name.json new file mode 100644 index 000000000..49494fab5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createplaylistdto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the new playlist."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17CreatePlaylistDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the new playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto":{"role":"symbol","title":"CreatePlaylistDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"abstract":[{"type":"text","text":"Create new playlist dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistDto"}],"url":"\/documentation\/jellyfinapi\/createplaylistdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/userid.json new file mode 100644 index 000000000..1787814cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createplaylistdto/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createplaylistdto\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the user id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17CreatePlaylistDtoV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto":{"role":"symbol","title":"CreatePlaylistDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"abstract":[{"type":"text","text":"Create new playlist dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistDto"}],"url":"\/documentation\/jellyfinapi\/createplaylistdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createplaylistdto\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname.json new file mode 100644 index 000000000..db14e3271 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateUserByName"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createuserbyname"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The create user by name request body."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateUserByName"}],"title":"CreateUserByName","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16CreateUserByNameV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"CreateUserByName"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/init(name:password:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/password"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName/init(name:password:)":{"role":"symbol","title":"init(name:password:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/init(name:password:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createuserbyname\/init(name:password:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName":{"role":"symbol","title":"CreateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateUserByName"}],"abstract":[{"type":"text","text":"The create user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateUserByName"}],"url":"\/documentation\/jellyfinapi\/createuserbyname"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createuserbyname\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName/password":{"role":"symbol","title":"password","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/password","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createuserbyname\/password"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the username."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createuserbyname\/name"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/init(from:).json new file mode 100644 index 000000000..7527c26f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createuserbyname\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16CreateUserByNameV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createuserbyname\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName":{"role":"symbol","title":"CreateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateUserByName"}],"abstract":[{"type":"text","text":"The create user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateUserByName"}],"url":"\/documentation\/jellyfinapi\/createuserbyname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/init(name:password:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/init(name:password:).json new file mode 100644 index 000000000..0a2fc4e6e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/init(name:password:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createuserbyname\/init(name:password:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/init(name:password:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(name:password:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16CreateUserByNameV4name8passwordACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName/init(name:password:)":{"role":"symbol","title":"init(name:password:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/init(name:password:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createuserbyname\/init(name:password:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName":{"role":"symbol","title":"CreateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateUserByName"}],"abstract":[{"type":"text","text":"The create user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateUserByName"}],"url":"\/documentation\/jellyfinapi\/createuserbyname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/name.json new file mode 100644 index 000000000..61e32a53e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createuserbyname\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the username."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16CreateUserByNameV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName":{"role":"symbol","title":"CreateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateUserByName"}],"abstract":[{"type":"text","text":"The create user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateUserByName"}],"url":"\/documentation\/jellyfinapi\/createuserbyname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the username."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createuserbyname\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/password.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/password.json new file mode 100644 index 000000000..a633a4914 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/createuserbyname/password.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/createuserbyname\/password"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/password","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"password","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16CreateUserByNameV8passwordSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName":{"role":"symbol","title":"CreateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateUserByName"}],"abstract":[{"type":"text","text":"The create user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateUserByName"}],"url":"\/documentation\/jellyfinapi\/createuserbyname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName/password":{"role":"symbol","title":"password","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName\/password","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/createuserbyname\/password"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto.json new file mode 100644 index 000000000..112034eae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/culturedto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class CultureDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"title":"CultureDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10CultureDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"CultureDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/init(displayName:name:threeLetterISOLanguageName:threeLetterISOLanguageNames:twoLetterISOLanguageName:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/displayName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/threeLetterISOLanguageName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/threeLetterISOLanguageNames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/twoLetterISOLanguageName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/displayName":{"role":"symbol","title":"displayName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the display name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/displayName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/displayname"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/threeLetterISOLanguageName":{"role":"symbol","title":"threeLetterISOLanguageName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name of the three letter ISO language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/threeLetterISOLanguageName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/threeletterisolanguagename"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/init(displayName:name:threeLetterISOLanguageName:threeLetterISOLanguageNames:twoLetterISOLanguageName:)":{"role":"symbol","title":"init(displayName:name:threeLetterISOLanguageName:threeLetterISOLanguageNames:twoLetterISOLanguageName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISOLanguageNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"twoLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/init(displayName:name:threeLetterISOLanguageName:threeLetterISOLanguageNames:twoLetterISOLanguageName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/init(displayname:name:threeletterisolanguagename:threeletterisolanguagenames:twoletterisolanguagename:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/threeLetterISOLanguageNames":{"role":"symbol","title":"threeLetterISOLanguageNames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/threeLetterISOLanguageNames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/threeletterisolanguagenames"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/twoLetterISOLanguageName":{"role":"symbol","title":"twoLetterISOLanguageName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"twoLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name of the two letter ISO language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/twoLetterISOLanguageName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/twoletterisolanguagename"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/displayname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/displayname.json new file mode 100644 index 000000000..785cbd7d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/displayname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/culturedto\/displayname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/displayName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the display name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"displayName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10CultureDtoV11displayNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/displayName":{"role":"symbol","title":"displayName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the display name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/displayName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/displayname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/init(displayname:name:threeletterisolanguagename:threeletterisolanguagenames:twoletterisolanguagename:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/init(displayname:name:threeletterisolanguagename:threeletterisolanguagenames:twoletterisolanguagename:).json new file mode 100644 index 000000000..11ea33354 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/init(displayname:name:threeletterisolanguagename:threeletterisolanguagenames:twoletterisolanguagename:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"threeLetterISOLanguageNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"twoLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/culturedto\/init(displayname:name:threeletterisolanguagename:threeletterisolanguagenames:twoletterisolanguagename:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/init(displayName:name:threeLetterISOLanguageName:threeLetterISOLanguageNames:twoLetterISOLanguageName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISOLanguageNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"twoLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(displayName:name:threeLetterISOLanguageName:threeLetterISOLanguageNames:twoLetterISOLanguageName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10CultureDtoV11displayName4name022threeLetterISOLanguageF00hiJ5Names03twoijF0ACSSSg_A2ISaySSGSgAItcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/init(displayName:name:threeLetterISOLanguageName:threeLetterISOLanguageNames:twoLetterISOLanguageName:)":{"role":"symbol","title":"init(displayName:name:threeLetterISOLanguageName:threeLetterISOLanguageNames:twoLetterISOLanguageName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISOLanguageNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"twoLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/init(displayName:name:threeLetterISOLanguageName:threeLetterISOLanguageNames:twoLetterISOLanguageName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/init(displayname:name:threeletterisolanguagename:threeletterisolanguagenames:twoletterisolanguagename:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/init(from:).json new file mode 100644 index 000000000..d9d59df13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/culturedto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10CultureDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/name.json new file mode 100644 index 000000000..1418989c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/culturedto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10CultureDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/threeletterisolanguagename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/threeletterisolanguagename.json new file mode 100644 index 000000000..f6f7cfe1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/threeletterisolanguagename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/culturedto\/threeletterisolanguagename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/threeLetterISOLanguageName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the name of the three letter ISO language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"threeLetterISOLanguageName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10CultureDtoV26threeLetterISOLanguageNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/threeLetterISOLanguageName":{"role":"symbol","title":"threeLetterISOLanguageName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name of the three letter ISO language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/threeLetterISOLanguageName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/threeletterisolanguagename"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/threeletterisolanguagenames.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/threeletterisolanguagenames.json new file mode 100644 index 000000000..cde4e747a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/threeletterisolanguagenames.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/culturedto\/threeletterisolanguagenames"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/threeLetterISOLanguageNames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"threeLetterISOLanguageNames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10CultureDtoV27threeLetterISOLanguageNamesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/threeLetterISOLanguageNames":{"role":"symbol","title":"threeLetterISOLanguageNames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/threeLetterISOLanguageNames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/threeletterisolanguagenames"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/twoletterisolanguagename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/twoletterisolanguagename.json new file mode 100644 index 000000000..aacbe1edf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/culturedto/twoletterisolanguagename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"twoLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/culturedto\/twoletterisolanguagename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/twoLetterISOLanguageName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the name of the two letter ISO language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"twoLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"twoLetterISOLanguageName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10CultureDtoV24twoLetterISOLanguageNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto/twoLetterISOLanguageName":{"role":"symbol","title":"twoLetterISOLanguageName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"twoLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name of the two letter ISO language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto\/twoLetterISOLanguageName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/culturedto\/twoletterisolanguagename"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek.json new file mode 100644 index 000000000..cd125a1ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"title":"DayOfWeek","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI9DayOfWeekO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/friday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/monday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/saturday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/sunday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/thursday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/tuesday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/wednesday"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/thursday":{"role":"symbol","title":"DayOfWeek.thursday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thursday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/thursday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/thursday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/tuesday":{"role":"symbol","title":"DayOfWeek.tuesday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuesday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/tuesday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/tuesday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/monday":{"role":"symbol","title":"DayOfWeek.monday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"monday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/monday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/monday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/saturday":{"role":"symbol","title":"DayOfWeek.saturday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"saturday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/saturday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/saturday"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/sunday":{"role":"symbol","title":"DayOfWeek.sunday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sunday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/sunday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/sunday"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/wednesday":{"role":"symbol","title":"DayOfWeek.wednesday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wednesday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/wednesday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/wednesday"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/friday":{"role":"symbol","title":"DayOfWeek.friday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"friday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/friday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/friday"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/!=(_:_:).json new file mode 100644 index 000000000..b2d5ac3ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI9DayOfWeekO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/encode(to:).json new file mode 100644 index 000000000..f295e0d54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI9DayOfWeekO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/equatable-implementations.json new file mode 100644 index 000000000..a9f72d5d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/friday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/friday.json new file mode 100644 index 000000000..f7fd0cb33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/friday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"friday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/friday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/friday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"friday"}],"title":"DayOfWeek.friday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9DayOfWeekO6fridayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/friday":{"role":"symbol","title":"DayOfWeek.friday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"friday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/friday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/friday"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/hash(into:).json new file mode 100644 index 000000000..1a29beedf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI9DayOfWeekO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/hashvalue.json new file mode 100644 index 000000000..fb9f998b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI9DayOfWeekO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/init(from:).json new file mode 100644 index 000000000..d76277a69 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI9DayOfWeekO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/init(rawvalue:).json new file mode 100644 index 000000000..351c750fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9DayOfWeekO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/monday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/monday.json new file mode 100644 index 000000000..04afcb906 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/monday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"monday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/monday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/monday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"monday"}],"title":"DayOfWeek.monday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9DayOfWeekO6mondayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/monday":{"role":"symbol","title":"DayOfWeek.monday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"monday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/monday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/monday"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/rawrepresentable-implementations.json new file mode 100644 index 000000000..8e2caafbb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/saturday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/saturday.json new file mode 100644 index 000000000..ac4039961 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/saturday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"saturday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/saturday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/saturday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"saturday"}],"title":"DayOfWeek.saturday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9DayOfWeekO8saturdayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/saturday":{"role":"symbol","title":"DayOfWeek.saturday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"saturday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/saturday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/saturday"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/sunday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/sunday.json new file mode 100644 index 000000000..684c2b366 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/sunday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sunday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/sunday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/sunday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sunday"}],"title":"DayOfWeek.sunday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9DayOfWeekO6sundayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/sunday":{"role":"symbol","title":"DayOfWeek.sunday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sunday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/sunday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/sunday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/thursday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/thursday.json new file mode 100644 index 000000000..fb5f676bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/thursday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thursday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/thursday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/thursday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thursday"}],"title":"DayOfWeek.thursday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9DayOfWeekO8thursdayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/thursday":{"role":"symbol","title":"DayOfWeek.thursday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thursday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/thursday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/thursday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/tuesday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/tuesday.json new file mode 100644 index 000000000..188b85c5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/tuesday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuesday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/tuesday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/tuesday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuesday"}],"title":"DayOfWeek.tuesday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9DayOfWeekO7tuesdayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/tuesday":{"role":"symbol","title":"DayOfWeek.tuesday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuesday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/tuesday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/tuesday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/wednesday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/wednesday.json new file mode 100644 index 000000000..e86d0cc07 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dayofweek/wednesday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wednesday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dayofweek\/wednesday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/wednesday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wednesday"}],"title":"DayOfWeek.wednesday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9DayOfWeekO9wednesdayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek/wednesday":{"role":"symbol","title":"DayOfWeek.wednesday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wednesday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek\/wednesday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dayofweek\/wednesday"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern.json new file mode 100644 index 000000000..71a40542d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"title":"DayPattern","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI10DayPatternO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DayPattern"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/daily","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/weekdays","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/weekends"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/weekdays":{"role":"symbol","title":"DayPattern.weekdays","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekdays"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/weekdays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/weekdays"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/equatable-implementations"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/weekends":{"role":"symbol","title":"DayPattern.weekends","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekends"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/weekends","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/weekends"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/init(rawvalue:)"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/daily":{"role":"symbol","title":"DayPattern.daily","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"daily"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/daily","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/daily"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/!=(_:_:).json new file mode 100644 index 000000000..a2c3963a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI10DayPatternO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/daily.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/daily.json new file mode 100644 index 000000000..15bec4253 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/daily.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"daily"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/daily"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/daily","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"daily"}],"title":"DayPattern.daily","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10DayPatternO5dailyyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/daily":{"role":"symbol","title":"DayPattern.daily","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"daily"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/daily","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/daily"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/encode(to:).json new file mode 100644 index 000000000..fec3cfff7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI10DayPatternO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/equatable-implementations.json new file mode 100644 index 000000000..ab9ade669 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/hash(into:).json new file mode 100644 index 000000000..c4593b725 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI10DayPatternO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/hashvalue.json new file mode 100644 index 000000000..67ea14622 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI10DayPatternO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/init(from:).json new file mode 100644 index 000000000..5d72e56e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI10DayPatternO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/init(rawvalue:).json new file mode 100644 index 000000000..9226261c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10DayPatternO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/rawrepresentable-implementations.json new file mode 100644 index 000000000..7c4078d74 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/weekdays.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/weekdays.json new file mode 100644 index 000000000..1e06cc874 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/weekdays.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekdays"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/weekdays"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/weekdays","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekdays"}],"title":"DayPattern.weekdays","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10DayPatternO8weekdaysyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/weekdays":{"role":"symbol","title":"DayPattern.weekdays","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekdays"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/weekdays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/weekdays"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/weekends.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/weekends.json new file mode 100644 index 000000000..5507fb073 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/daypattern/weekends.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekends"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/daypattern\/weekends"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/weekends","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekends"}],"title":"DayPattern.weekends","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10DayPatternO8weekendsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern/weekends":{"role":"symbol","title":"DayPattern.weekends","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekends"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern\/weekends","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/daypattern\/weekends"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto.json new file mode 100644 index 000000000..30a7998a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Default directory browser info."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"title":"DefaultDirectoryBrowserInfoDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI30DefaultDirectoryBrowserInfoDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/init(path:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/path"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto\/path"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto":{"role":"symbol","title":"DefaultDirectoryBrowserInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"abstract":[{"type":"text","text":"Default directory browser info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto/init(path:)":{"role":"symbol","title":"init(path:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/init(path:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto\/init(path:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto/init(from:).json new file mode 100644 index 000000000..422e24b2e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI30DefaultDirectoryBrowserInfoDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto":{"role":"symbol","title":"DefaultDirectoryBrowserInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"abstract":[{"type":"text","text":"Default directory browser info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto/init(path:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto/init(path:).json new file mode 100644 index 000000000..ab63fa903 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto/init(path:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto\/init(path:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/init(path:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(path:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI30DefaultDirectoryBrowserInfoDtoV4pathACSSSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto/init(path:)":{"role":"symbol","title":"init(path:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/init(path:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto\/init(path:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto":{"role":"symbol","title":"DefaultDirectoryBrowserInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"abstract":[{"type":"text","text":"Default directory browser info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto/path.json new file mode 100644 index 000000000..d99e59a6c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/defaultdirectorybrowserinfodto/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI30DefaultDirectoryBrowserInfoDtoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto":{"role":"symbol","title":"DefaultDirectoryBrowserInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"abstract":[{"type":"text","text":"Default directory browser info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification.json new file mode 100644 index 000000000..658311af8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"title":"DeviceIdentification","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20DeviceIdentificationV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/init(friendlyName:headers:manufacturer:manufacturerURL:modelDescription:modelName:modelNumber:modelURL:serialNumber:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/friendlyName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/headers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/manufacturer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/manufacturerURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelDescription","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/serialNumber"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/manufacturerURL":{"role":"symbol","title":"manufacturerURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the manufacturer URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/manufacturerURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/manufacturerurl"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/headers":{"role":"symbol","title":"headers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"HTTPHeaderInfo","preciseIdentifier":"s:11JellyfinAPI14HTTPHeaderInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the headers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/headers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/headers"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/modelURL":{"role":"symbol","title":"modelURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/modelurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/manufacturer":{"role":"symbol","title":"manufacturer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the manufacturer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/manufacturer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/manufacturer"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/serialNumber":{"role":"symbol","title":"serialNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the serial number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/serialNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/serialnumber"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/modelNumber":{"role":"symbol","title":"modelNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/modelnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/friendlyName":{"role":"symbol","title":"friendlyName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the friendly."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/friendlyName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/friendlyname"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/init(friendlyName:headers:manufacturer:manufacturerURL:modelDescription:modelName:modelNumber:modelURL:serialNumber:)":{"role":"symbol","title":"init(friendlyName:headers:manufacturer:manufacturerURL:modelDescription:modelName:modelNumber:modelURL:serialNumber:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"HTTPHeaderInfo","preciseIdentifier":"s:11JellyfinAPI14HTTPHeaderInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/init(friendlyName:headers:manufacturer:manufacturerURL:modelDescription:modelName:modelNumber:modelURL:serialNumber:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/init(friendlyname:headers:manufacturer:manufacturerurl:modeldescription:modelname:modelnumber:modelurl:serialnumber:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/modelDescription":{"role":"symbol","title":"modelDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model description."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelDescription","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/modeldescription"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/modelName":{"role":"symbol","title":"modelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/modelname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/friendlyname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/friendlyname.json new file mode 100644 index 000000000..8069a29c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/friendlyname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/friendlyname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/friendlyName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the friendly."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"friendlyName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20DeviceIdentificationV12friendlyNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/friendlyName":{"role":"symbol","title":"friendlyName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the friendly."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/friendlyName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/friendlyname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/headers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/headers.json new file mode 100644 index 000000000..2f6fd69bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/headers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","preciseIdentifier":"s:11JellyfinAPI14HTTPHeaderInfoV","text":"HTTPHeaderInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/headers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/headers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the headers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"HTTPHeaderInfo","preciseIdentifier":"s:11JellyfinAPI14HTTPHeaderInfoV"},{"kind":"text","text":"]?"}],"title":"headers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20DeviceIdentificationV7headersSayAA14HTTPHeaderInfoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/headers":{"role":"symbol","title":"headers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"HTTPHeaderInfo","preciseIdentifier":"s:11JellyfinAPI14HTTPHeaderInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the headers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/headers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/headers"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo":{"role":"symbol","title":"HTTPHeaderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPHeaderInfo"}],"url":"\/documentation\/jellyfinapi\/httpheaderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/init(friendlyname:headers:manufacturer:manufacturerurl:modeldescription:modelname:modelnumber:modelurl:serialnumber:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/init(friendlyname:headers:manufacturer:manufacturerurl:modeldescription:modelname:modelnumber:modelurl:serialnumber:).json new file mode 100644 index 000000000..733fca108 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/init(friendlyname:headers:manufacturer:manufacturerurl:modeldescription:modelname:modelnumber:modelurl:serialnumber:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","preciseIdentifier":"s:11JellyfinAPI14HTTPHeaderInfoV","text":"HTTPHeaderInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/init(friendlyname:headers:manufacturer:manufacturerurl:modeldescription:modelname:modelnumber:modelurl:serialnumber:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/init(friendlyName:headers:manufacturer:manufacturerURL:modelDescription:modelName:modelNumber:modelURL:serialNumber:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"HTTPHeaderInfo","preciseIdentifier":"s:11JellyfinAPI14HTTPHeaderInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(friendlyName:headers:manufacturer:manufacturerURL:modelDescription:modelName:modelNumber:modelURL:serialNumber:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20DeviceIdentificationV12friendlyName7headers12manufacturer0H3URL16modelDescription0jF00J6Number0jI006serialL0ACSSSg_SayAA14HTTPHeaderInfoVGSgA7Mtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/init(friendlyName:headers:manufacturer:manufacturerURL:modelDescription:modelName:modelNumber:modelURL:serialNumber:)":{"role":"symbol","title":"init(friendlyName:headers:manufacturer:manufacturerURL:modelDescription:modelName:modelNumber:modelURL:serialNumber:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"headers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"HTTPHeaderInfo","preciseIdentifier":"s:11JellyfinAPI14HTTPHeaderInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/init(friendlyName:headers:manufacturer:manufacturerURL:modelDescription:modelName:modelNumber:modelURL:serialNumber:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/init(friendlyname:headers:manufacturer:manufacturerurl:modeldescription:modelname:modelnumber:modelurl:serialnumber:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo":{"role":"symbol","title":"HTTPHeaderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPHeaderInfo"}],"url":"\/documentation\/jellyfinapi\/httpheaderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/init(from:).json new file mode 100644 index 000000000..d91219dc9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20DeviceIdentificationV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/manufacturer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/manufacturer.json new file mode 100644 index 000000000..cc6ae7492 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/manufacturer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/manufacturer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/manufacturer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the manufacturer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"manufacturer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20DeviceIdentificationV12manufacturerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/manufacturer":{"role":"symbol","title":"manufacturer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the manufacturer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/manufacturer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/manufacturer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/manufacturerurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/manufacturerurl.json new file mode 100644 index 000000000..77b9f17b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/manufacturerurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/manufacturerurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/manufacturerURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the manufacturer URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"manufacturerURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20DeviceIdentificationV15manufacturerURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/manufacturerURL":{"role":"symbol","title":"manufacturerURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the manufacturer URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/manufacturerURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/manufacturerurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modeldescription.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modeldescription.json new file mode 100644 index 000000000..df22ecb09 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modeldescription.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/modeldescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the model description."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"modelDescription","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20DeviceIdentificationV16modelDescriptionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/modelDescription":{"role":"symbol","title":"modelDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model description."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelDescription","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/modeldescription"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modelname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modelname.json new file mode 100644 index 000000000..8329212aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modelname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/modelname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the model."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"modelName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20DeviceIdentificationV9modelNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/modelName":{"role":"symbol","title":"modelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/modelname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modelnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modelnumber.json new file mode 100644 index 000000000..2c50661b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modelnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/modelnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the model number."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"modelNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20DeviceIdentificationV11modelNumberSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/modelNumber":{"role":"symbol","title":"modelNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/modelnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modelurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modelurl.json new file mode 100644 index 000000000..2da9fb9c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/modelurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/modelurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the model URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"modelURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20DeviceIdentificationV8modelURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/modelURL":{"role":"symbol","title":"modelURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/modelURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/modelurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/serialnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/serialnumber.json new file mode 100644 index 000000000..b0c7dbdde --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceidentification/serialnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceidentification\/serialnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/serialNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the serial number."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serialNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20DeviceIdentificationV12serialNumberSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification/serialNumber":{"role":"symbol","title":"serialNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the serial number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification\/serialNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceidentification\/serialnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo.json new file mode 100644 index 000000000..3f74a2b1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"title":"DeviceInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10DeviceInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/init(accessToken:appName:appVersion:capabilities:dateLastActivity:iconURL:id:lastUserID:lastUserName:name:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/accessToken","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/appName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/appVersion","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/capabilities","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/dateLastActivity","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/iconURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/id-90tng","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/lastUserID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/lastUserName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/name"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/lastUserID":{"role":"symbol","title":"lastUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/lastUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/lastuserid"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/lastUserName":{"role":"symbol","title":"lastUserName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUserName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last name of the user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/lastUserName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/lastusername"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/accessToken":{"role":"symbol","title":"accessToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the access token."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/accessToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/accesstoken"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/appName":{"role":"symbol","title":"appName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the application."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/appName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/appname"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/init(accessToken:appName:appVersion:capabilities:dateLastActivity:iconURL:id:lastUserID:lastUserName:name:)":{"role":"symbol","title":"init(accessToken:appName:appVersion:capabilities:dateLastActivity:iconURL:id:lastUserID:lastUserName:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastUserName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/init(accessToken:appName:appVersion:capabilities:dateLastActivity:iconURL:id:lastUserID:lastUserName:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/init(accesstoken:appname:appversion:capabilities:datelastactivity:iconurl:id:lastuserid:lastusername:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/iconURL":{"role":"symbol","title":"iconURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/iconURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/iconurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/id-90tng":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/id-90tng","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/id-90tng"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/dateLastActivity":{"role":"symbol","title":"dateLastActivity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date last modified."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/dateLastActivity","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/datelastactivity"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/appVersion":{"role":"symbol","title":"appVersion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the application version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/appVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/appversion"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/capabilities":{"role":"symbol","title":"capabilities","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the capabilities."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/capabilities","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/capabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/identifiable-implementations"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/accesstoken.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/accesstoken.json new file mode 100644 index 000000000..7f588c0ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/accesstoken.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/accesstoken"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/accessToken","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the access token."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"accessToken","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10DeviceInfoV11accessTokenSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/accessToken":{"role":"symbol","title":"accessToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the access token."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/accessToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/accesstoken"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/appname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/appname.json new file mode 100644 index 000000000..1d035e5cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/appname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/appname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/appName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the application."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"appName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10DeviceInfoV7appNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/appName":{"role":"symbol","title":"appName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the application."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/appName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/appname"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/appversion.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/appversion.json new file mode 100644 index 000000000..37ffee983 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/appversion.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/appversion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/appVersion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the application version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"appVersion","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10DeviceInfoV10appVersionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/appVersion":{"role":"symbol","title":"appVersion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the application version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/appVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/appversion"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/capabilities.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/capabilities.json new file mode 100644 index 000000000..a3fd71a40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/capabilities.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV","text":"ClientCapabilities"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/capabilities"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/capabilities","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the capabilities."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?"}],"title":"capabilities","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10DeviceInfoV12capabilitiesAA18ClientCapabilitiesVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/capabilities":{"role":"symbol","title":"capabilities","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the capabilities."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/capabilities","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/capabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/datelastactivity.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/datelastactivity.json new file mode 100644 index 000000000..003c0fc12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/datelastactivity.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/datelastactivity"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/dateLastActivity","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the date last modified."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateLastActivity","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10DeviceInfoV16dateLastActivity10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/dateLastActivity":{"role":"symbol","title":"dateLastActivity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date last modified."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/dateLastActivity","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/datelastactivity"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/iconurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/iconurl.json new file mode 100644 index 000000000..1f45ec5c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/iconurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/iconurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/iconURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"iconURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10DeviceInfoV7iconURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/iconURL":{"role":"symbol","title":"iconURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/iconURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/iconurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/id-90tng.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/id-90tng.json new file mode 100644 index 000000000..9cdd869d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/id-90tng.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/id-90tng"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/id-90tng","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10DeviceInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/id-90tng":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/id-90tng","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/id-90tng"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/id-9cazr.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/id-9cazr.json new file mode 100644 index 000000000..0a28c37eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/id-9cazr.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/id-9cazr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/id-9cazr","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI10DeviceInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/id-9cazr":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/id-9cazr","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/id-9cazr"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/identifiable-implementations.json new file mode 100644 index 000000000..4601d807d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/id-9cazr"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/id-9cazr":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/id-9cazr","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/id-9cazr"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/init(accesstoken:appname:appversion:capabilities:datelastactivity:iconurl:id:lastuserid:lastusername:name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/init(accesstoken:appname:appversion:capabilities:datelastactivity:iconurl:id:lastuserid:lastusername:name:).json new file mode 100644 index 000000000..af9ddd4d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/init(accesstoken:appname:appversion:capabilities:datelastactivity:iconurl:id:lastuserid:lastusername:name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV","text":"ClientCapabilities"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lastUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lastUserName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/init(accesstoken:appname:appversion:capabilities:datelastactivity:iconurl:id:lastuserid:lastusername:name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/init(accessToken:appName:appVersion:capabilities:dateLastActivity:iconURL:id:lastUserID:lastUserName:name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastUserName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(accessToken:appName:appVersion:capabilities:dateLastActivity:iconURL:id:lastUserID:lastUserName:name:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10DeviceInfoV11accessToken7appName0G7Version12capabilities16dateLastActivity7iconURL2id10lastUserID0qrH04nameACSSSg_A2nA18ClientCapabilitiesVSg10Foundation4DateVSgA2nR4UUIDVSgA2Ntcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/init(accessToken:appName:appVersion:capabilities:dateLastActivity:iconURL:id:lastUserID:lastUserName:name:)":{"role":"symbol","title":"init(accessToken:appName:appVersion:capabilities:dateLastActivity:iconURL:id:lastUserID:lastUserName:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateLastActivity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"iconURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastUserName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/init(accessToken:appName:appVersion:capabilities:dateLastActivity:iconURL:id:lastUserID:lastUserName:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/init(accesstoken:appname:appversion:capabilities:datelastactivity:iconurl:id:lastuserid:lastusername:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/init(from:).json new file mode 100644 index 000000000..3c032ba12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10DeviceInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/lastuserid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/lastuserid.json new file mode 100644 index 000000000..7eb7b9165 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/lastuserid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/lastuserid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/lastUserID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the last user identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"lastUserID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10DeviceInfoV10lastUserID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/lastUserID":{"role":"symbol","title":"lastUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/lastUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/lastuserid"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/lastusername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/lastusername.json new file mode 100644 index 000000000..fc0bf8e36 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/lastusername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUserName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/lastusername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/lastUserName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the last name of the user."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUserName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"lastUserName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10DeviceInfoV12lastUserNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/lastUserName":{"role":"symbol","title":"lastUserName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUserName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last name of the user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/lastUserName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/lastusername"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/name.json new file mode 100644 index 000000000..94aa58b12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10DeviceInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult.json new file mode 100644 index 000000000..a3d87df3c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfoQueryResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfoqueryresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfoQueryResult"}],"title":"DeviceInfoQueryResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI21DeviceInfoQueryResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DeviceInfoQueryResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/init(items:startIndex:totalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/items","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/totalRecordCount"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DeviceInfo","preciseIdentifier":"s:11JellyfinAPI10DeviceInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DeviceInfo","preciseIdentifier":"s:11JellyfinAPI10DeviceInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult\/items"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult":{"role":"symbol","title":"DeviceInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/init(from:).json new file mode 100644 index 000000000..cea8b2ce5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfoqueryresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21DeviceInfoQueryResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult":{"role":"symbol","title":"DeviceInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/init(items:startindex:totalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/init(items:startindex:totalrecordcount:).json new file mode 100644 index 000000000..c18f63b11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/init(items:startindex:totalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","preciseIdentifier":"s:11JellyfinAPI10DeviceInfoV","text":"DeviceInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfoqueryresult\/init(items:startindex:totalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/init(items:startIndex:totalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DeviceInfo","preciseIdentifier":"s:11JellyfinAPI10DeviceInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(items:startIndex:totalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21DeviceInfoQueryResultV5items10startIndex16totalRecordCountACSayAA0cD0VGSg_s5Int32VSgAMtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DeviceInfo","preciseIdentifier":"s:11JellyfinAPI10DeviceInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult":{"role":"symbol","title":"DeviceInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/items.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/items.json new file mode 100644 index 000000000..39cad969c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/items.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","preciseIdentifier":"s:11JellyfinAPI10DeviceInfoV","text":"DeviceInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfoqueryresult\/items"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/items","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DeviceInfo","preciseIdentifier":"s:11JellyfinAPI10DeviceInfoV"},{"kind":"text","text":"]?"}],"title":"items","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DeviceInfoQueryResultV5itemsSayAA0cD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DeviceInfo","preciseIdentifier":"s:11JellyfinAPI10DeviceInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult\/items"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult":{"role":"symbol","title":"DeviceInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/startindex.json new file mode 100644 index 000000000..fcf0775bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfoqueryresult\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DeviceInfoQueryResultV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult":{"role":"symbol","title":"DeviceInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/totalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/totalrecordcount.json new file mode 100644 index 000000000..8d875972a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceinfoqueryresult/totalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceinfoqueryresult\/totalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/totalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"totalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DeviceInfoQueryResultV16totalRecordCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult":{"role":"symbol","title":"DeviceInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions.json new file mode 100644 index 000000000..93038b995 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"title":"DeviceOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI13DeviceOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/init(customName:deviceID:id:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/customName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/id-1qyzi"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions":{"role":"symbol","title":"DeviceOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}],"url":"\/documentation\/jellyfinapi\/deviceoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/customName":{"role":"symbol","title":"customName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the custom name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/customName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/customname"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/id-1qyzi":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/id-1qyzi","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/id-1qyzi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/init(customName:deviceID:id:)":{"role":"symbol","title":"init(customName:deviceID:id:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/init(customName:deviceID:id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/init(customname:deviceid:id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the device id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/customname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/customname.json new file mode 100644 index 000000000..a079a0393 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/customname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptions\/customname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/customName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the custom name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"customName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceOptionsV10customNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/customName":{"role":"symbol","title":"customName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the custom name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/customName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/customname"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions":{"role":"symbol","title":"DeviceOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}],"url":"\/documentation\/jellyfinapi\/deviceoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/deviceid.json new file mode 100644 index 000000000..e0af25dcc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptions\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the device id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceOptionsV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the device id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions":{"role":"symbol","title":"DeviceOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}],"url":"\/documentation\/jellyfinapi\/deviceoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/id-1qyzi.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/id-1qyzi.json new file mode 100644 index 000000000..ce3edfbb0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/id-1qyzi.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptions\/id-1qyzi"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/id-1qyzi","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceOptionsV2ids5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/id-1qyzi":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/id-1qyzi","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/id-1qyzi"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions":{"role":"symbol","title":"DeviceOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}],"url":"\/documentation\/jellyfinapi\/deviceoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/id-4mkzz.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/id-4mkzz.json new file mode 100644 index 000000000..f6f686306 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/id-4mkzz.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptions\/id-4mkzz"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/id-4mkzz","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI13DeviceOptionsV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/id-4mkzz":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/id-4mkzz","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/id-4mkzz"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions":{"role":"symbol","title":"DeviceOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}],"url":"\/documentation\/jellyfinapi\/deviceoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/identifiable-implementations.json new file mode 100644 index 000000000..f302490c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptions\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/id-4mkzz"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/id-4mkzz":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/id-4mkzz","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/id-4mkzz"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions":{"role":"symbol","title":"DeviceOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}],"url":"\/documentation\/jellyfinapi\/deviceoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/init(customname:deviceid:id:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/init(customname:deviceid:id:).json new file mode 100644 index 000000000..38da42f1b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/init(customname:deviceid:id:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptions\/init(customname:deviceid:id:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/init(customName:deviceID:id:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(customName:deviceID:id:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13DeviceOptionsV10customName8deviceID2idACSSSg_AGs5Int32VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions":{"role":"symbol","title":"DeviceOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}],"url":"\/documentation\/jellyfinapi\/deviceoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/init(customName:deviceID:id:)":{"role":"symbol","title":"init(customName:deviceID:id:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/init(customName:deviceID:id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/init(customname:deviceid:id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/init(from:).json new file mode 100644 index 000000000..81be92f8f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13DeviceOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions":{"role":"symbol","title":"DeviceOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}],"url":"\/documentation\/jellyfinapi\/deviceoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto.json new file mode 100644 index 000000000..4c4733fb2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptionsdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"title":"DeviceOptionsDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16DeviceOptionsDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/init(customName:deviceID:id:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/customName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/id-4qcd1"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the device id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/id-4qcd1":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/id-4qcd1","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/id-4qcd1"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto":{"role":"symbol","title":"DeviceOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}],"url":"\/documentation\/jellyfinapi\/deviceoptionsdto"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/init(customName:deviceID:id:)":{"role":"symbol","title":"init(customName:deviceID:id:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/init(customName:deviceID:id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/init(customname:deviceid:id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/customName":{"role":"symbol","title":"customName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the custom name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/customName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/customname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/customname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/customname.json new file mode 100644 index 000000000..df8e5d16d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/customname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptionsdto\/customname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/customName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the custom name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"customName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16DeviceOptionsDtoV10customNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/customName":{"role":"symbol","title":"customName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the custom name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/customName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/customname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto":{"role":"symbol","title":"DeviceOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}],"url":"\/documentation\/jellyfinapi\/deviceoptionsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/deviceid.json new file mode 100644 index 000000000..9fd71e221 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptionsdto\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the device id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16DeviceOptionsDtoV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto":{"role":"symbol","title":"DeviceOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}],"url":"\/documentation\/jellyfinapi\/deviceoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the device id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/deviceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/id-4qcd1.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/id-4qcd1.json new file mode 100644 index 000000000..0898ee3a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/id-4qcd1.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptionsdto\/id-4qcd1"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/id-4qcd1","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16DeviceOptionsDtoV2ids5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto":{"role":"symbol","title":"DeviceOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}],"url":"\/documentation\/jellyfinapi\/deviceoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/id-4qcd1":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/id-4qcd1","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/id-4qcd1"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/id-76qwq.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/id-76qwq.json new file mode 100644 index 000000000..e51b909cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/id-76qwq.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptionsdto\/id-76qwq"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/id-76qwq","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI16DeviceOptionsDtoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/id-76qwq":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/id-76qwq","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/id-76qwq"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto":{"role":"symbol","title":"DeviceOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}],"url":"\/documentation\/jellyfinapi\/deviceoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/identifiable-implementations.json new file mode 100644 index 000000000..36bd38b35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptionsdto\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/id-76qwq"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto":{"role":"symbol","title":"DeviceOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}],"url":"\/documentation\/jellyfinapi\/deviceoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/id-76qwq":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/id-76qwq","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/id-76qwq"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/init(customname:deviceid:id:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/init(customname:deviceid:id:).json new file mode 100644 index 000000000..74f569ab4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/init(customname:deviceid:id:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptionsdto\/init(customname:deviceid:id:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/init(customName:deviceID:id:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(customName:deviceID:id:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16DeviceOptionsDtoV10customName8deviceID2idACSSSg_AGs5Int32VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto":{"role":"symbol","title":"DeviceOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}],"url":"\/documentation\/jellyfinapi\/deviceoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/init(customName:deviceID:id:)":{"role":"symbol","title":"init(customName:deviceID:id:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"customName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/init(customName:deviceID:id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/init(customname:deviceid:id:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/init(from:).json new file mode 100644 index 000000000..fe1bbe2fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceoptionsdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceoptionsdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16DeviceOptionsDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceoptionsdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto":{"role":"symbol","title":"DeviceOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}],"url":"\/documentation\/jellyfinapi\/deviceoptionsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile.json new file mode 100644 index 000000000..87230058e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Specifically, it defines the supported "},{"type":"text","text":"containers"},{"type":"text","text":" and"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"codecs"},{"type":"text","text":" (video and\/or audio, including codec profiles and levels)"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"the device is able to direct play (without transcoding or remuxing),"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"as well as which "},{"type":"text","text":"containers\/codecs to transcode to"},{"type":"text","text":" in case it isn’t."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"title":"DeviceProfile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI13DeviceProfileV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/init(albumArtPn:codecProfiles:containerProfiles:directPlayProfiles:enableAlbumArtInDidl:enableMSMediaReceiverRegistrar:enableSingleAlbumArtLimit:enableSingleSubtitleLimit:friendlyName:id:identification:isIgnoreTranscodeByteRangeRequests:manufacturer:manufacturerURL:maxAlbumArtHeight:maxAlbumArtWidth:maxIconHeight:maxIconWidth:maxStaticBitrate:maxStaticMusicBitrate:maxStreamingBitrate:modelDescription:modelName:modelNumber:modelURL:musicStreamingTranscodingBitrate:name:protocolInfo:requiresPlainFolders:requiresPlainVideoItems:responseProfiles:serialNumber:sonyAggregationFlags:subtitleProfiles:supportedMediaTypes:timelineOffsetSeconds:transcodingProfiles:userID:xmlRootAttributes:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/albumArtPn","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/codecProfiles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/containerProfiles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/directPlayProfiles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableAlbumArtInDidl","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableMSMediaReceiverRegistrar","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableSingleAlbumArtLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableSingleSubtitleLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/friendlyName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/id-wujg","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/identification","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/isIgnoreTranscodeByteRangeRequests","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/manufacturer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/manufacturerURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxAlbumArtHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxAlbumArtWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxIconHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxIconWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStaticBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStaticMusicBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelDescription","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/musicStreamingTranscodingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/protocolInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/requiresPlainFolders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/requiresPlainVideoItems","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/responseProfiles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/serialNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/sonyAggregationFlags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/subtitleProfiles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/supportedMediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/timelineOffsetSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/transcodingProfiles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/userID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/xmlRootAttributes"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/albumArtPn":{"role":"symbol","title":"albumArtPn","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the AlbumArtPn."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/albumArtPn","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/albumartpn"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxAlbumArtWidth":{"role":"symbol","title":"maxAlbumArtWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAlbumArtWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the MaxAlbumArtWidth."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxAlbumArtWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxalbumartwidth"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/friendlyName":{"role":"symbol","title":"friendlyName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the friendly name of the device profile, which can be shown to users."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/friendlyName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/friendlyname"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/directPlayProfiles":{"role":"symbol","title":"directPlayProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DirectPlayProfile","preciseIdentifier":"s:11JellyfinAPI17DirectPlayProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the direct play profiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/directPlayProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/directplayprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/isIgnoreTranscodeByteRangeRequests":{"role":"symbol","title":"isIgnoreTranscodeByteRangeRequests","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreTranscodeByteRangeRequests"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/isIgnoreTranscodeByteRangeRequests","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/isignoretranscodebyterangerequests"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/requiresPlainFolders":{"role":"symbol","title":"requiresPlainFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresPlainFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether RequiresPlainFolders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/requiresPlainFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/requiresplainfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/enableSingleAlbumArtLimit":{"role":"symbol","title":"enableSingleAlbumArtLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSingleAlbumArtLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableSingleAlbumArtLimit."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableSingleAlbumArtLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/enablesinglealbumartlimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/enableAlbumArtInDidl":{"role":"symbol","title":"enableAlbumArtInDidl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAlbumArtInDidl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableAlbumArtInDidl."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableAlbumArtInDidl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/enablealbumartindidl"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/codecProfiles":{"role":"symbol","title":"codecProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CodecProfile","preciseIdentifier":"s:11JellyfinAPI12CodecProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the codec profiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/codecProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/codecprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the UserId."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/containerProfiles":{"role":"symbol","title":"containerProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ContainerProfile","preciseIdentifier":"s:11JellyfinAPI16ContainerProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the container profiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/containerProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/containerprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/manufacturer":{"role":"symbol","title":"manufacturer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the manufacturer of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/manufacturer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/manufacturer"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/modelURL":{"role":"symbol","title":"modelURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ModelUrl."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/modelurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxStaticMusicBitrate":{"role":"symbol","title":"maxStaticMusicBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStaticMusicBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStaticMusicBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxstaticmusicbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxIconHeight":{"role":"symbol","title":"maxIconHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxIconHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed height of embedded icons."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxIconHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxiconheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/responseProfiles":{"role":"symbol","title":"responseProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"responseProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ResponseProfile","preciseIdentifier":"s:11JellyfinAPI15ResponseProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the ResponseProfiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/responseProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/responseprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/supportedMediaTypes":{"role":"symbol","title":"supportedMediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedMediaTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the SupportedMediaTypes."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/supportedMediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/supportedmediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/requiresPlainVideoItems":{"role":"symbol","title":"requiresPlainVideoItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresPlainVideoItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether RequiresPlainVideoItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/requiresPlainVideoItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/requiresplainvideoitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxStaticBitrate":{"role":"symbol","title":"maxStaticBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStaticBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStaticBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxstaticbitrate"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/identification":{"role":"symbol","title":"identification","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identification"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceIdentification","preciseIdentifier":"s:11JellyfinAPI20DeviceIdentificationV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Identification."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/identification","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/identification"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/modelName":{"role":"symbol","title":"modelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model name of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/modelname"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/id-wujg":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/id-wujg","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/id-wujg"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/timelineOffsetSeconds":{"role":"symbol","title":"timelineOffsetSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timelineOffsetSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the TimelineOffsetSeconds."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/timelineOffsetSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/timelineoffsetseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/enableSingleSubtitleLimit":{"role":"symbol","title":"enableSingleSubtitleLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSingleSubtitleLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableSingleSubtitleLimit."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableSingleSubtitleLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/enablesinglesubtitlelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/musicStreamingTranscodingBitrate":{"role":"symbol","title":"musicStreamingTranscodingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicStreamingTranscodingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for transcoded music streams."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/musicStreamingTranscodingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/musicstreamingtranscodingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/manufacturerURL":{"role":"symbol","title":"manufacturerURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets an url for the manufacturer of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/manufacturerURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/manufacturerurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/serialNumber":{"role":"symbol","title":"serialNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the serial number of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/serialNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/serialnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/sonyAggregationFlags":{"role":"symbol","title":"sonyAggregationFlags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sonyAggregationFlags"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/sonyAggregationFlags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/sonyaggregationflags"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of this device profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/init(albumArtPn:codecProfiles:containerProfiles:directPlayProfiles:enableAlbumArtInDidl:enableMSMediaReceiverRegistrar:enableSingleAlbumArtLimit:enableSingleSubtitleLimit:friendlyName:id:identification:isIgnoreTranscodeByteRangeRequests:manufacturer:manufacturerURL:maxAlbumArtHeight:maxAlbumArtWidth:maxIconHeight:maxIconWidth:maxStaticBitrate:maxStaticMusicBitrate:maxStreamingBitrate:modelDescription:modelName:modelNumber:modelURL:musicStreamingTranscodingBitrate:name:protocolInfo:requiresPlainFolders:requiresPlainVideoItems:responseProfiles:serialNumber:sonyAggregationFlags:subtitleProfiles:supportedMediaTypes:timelineOffsetSeconds:transcodingProfiles:userID:xmlRootAttributes:)":{"role":"symbol","title":"init(albumArtPn:codecProfiles:containerProfiles:directPlayProfiles:enableAlbumArtInDidl:enableMSMediaReceiverRegistrar:enableSingleAlbumArtLimit:enableSingleSubtitleLimit:friendlyName:id:identification:isIgnoreTranscodeByteRangeRequests:manufacturer:manufacturerURL:maxAlbumArtHeight:maxAlbumArtWidth:maxIconHeight:maxIconWidth:maxStaticBitrate:maxStaticMusicBitrate:maxStreamingBitrate:modelDescription:modelName:modelNumber:modelURL:musicStreamingTranscodingBitrate:name:protocolInfo:requiresPlainFolders:requiresPlainVideoItems:responseProfiles:serialNumber:sonyAggregationFlags:subtitleProfiles:supportedMediaTypes:timelineOffsetSeconds:transcodingProfiles:userID:xmlRootAttributes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CodecProfile","preciseIdentifier":"s:11JellyfinAPI12CodecProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"containerProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ContainerProfile","preciseIdentifier":"s:11JellyfinAPI16ContainerProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"directPlayProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DirectPlayProfile","preciseIdentifier":"s:11JellyfinAPI17DirectPlayProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableAlbumArtInDidl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMSMediaReceiverRegistrar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSingleAlbumArtLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSingleSubtitleLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"identification"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceIdentification","preciseIdentifier":"s:11JellyfinAPI20DeviceIdentificationV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreTranscodeByteRangeRequests"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAlbumArtHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAlbumArtWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxIconHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxIconWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStaticBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStaticMusicBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"musicStreamingTranscodingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"protocolInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresPlainFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresPlainVideoItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"responseProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ResponseProfile","preciseIdentifier":"s:11JellyfinAPI15ResponseProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sonyAggregationFlags"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SubtitleProfile","preciseIdentifier":"s:11JellyfinAPI15SubtitleProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedMediaTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timelineOffsetSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TranscodingProfile","preciseIdentifier":"s:11JellyfinAPI18TranscodingProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"xmlRootAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"XmlAttribute","preciseIdentifier":"s:11JellyfinAPI12XmlAttributeV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/init(albumArtPn:codecProfiles:containerProfiles:directPlayProfiles:enableAlbumArtInDidl:enableMSMediaReceiverRegistrar:enableSingleAlbumArtLimit:enableSingleSubtitleLimit:friendlyName:id:identification:isIgnoreTranscodeByteRangeRequests:manufacturer:manufacturerURL:maxAlbumArtHeight:maxAlbumArtWidth:maxIconHeight:maxIconWidth:maxStaticBitrate:maxStaticMusicBitrate:maxStreamingBitrate:modelDescription:modelName:modelNumber:modelURL:musicStreamingTranscodingBitrate:name:protocolInfo:requiresPlainFolders:requiresPlainVideoItems:responseProfiles:serialNumber:sonyAggregationFlags:subtitleProfiles:supportedMediaTypes:timelineOffsetSeconds:transcodingProfiles:userID:xmlRootAttributes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/init(albumartpn:codecprofiles:containerprofiles:directplayprofiles:enablealbumartindidl:enablemsmediareceiverregistrar:enablesinglealbumartlimit:enablesinglesubtitlelimit:friendlyname:id:identification:isignoretranscodebyterangerequests:man-zoft"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/subtitleProfiles":{"role":"symbol","title":"subtitleProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SubtitleProfile","preciseIdentifier":"s:11JellyfinAPI15SubtitleProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle profiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/subtitleProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/subtitleprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/transcodingProfiles":{"role":"symbol","title":"transcodingProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TranscodingProfile","preciseIdentifier":"s:11JellyfinAPI18TranscodingProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the transcoding profiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/transcodingProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/transcodingprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/enableMSMediaReceiverRegistrar":{"role":"symbol","title":"enableMSMediaReceiverRegistrar","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMSMediaReceiverRegistrar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableMSMediaReceiverRegistrar","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/enablemsmediareceiverregistrar"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxAlbumArtHeight":{"role":"symbol","title":"maxAlbumArtHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAlbumArtHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the MaxAlbumArtHeight."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxAlbumArtHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxalbumartheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/modelDescription":{"role":"symbol","title":"modelDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model description of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelDescription","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/modeldescription"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for all streamed content."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxIconWidth":{"role":"symbol","title":"maxIconWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxIconWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed width of embedded icons."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxIconWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxiconwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/modelNumber":{"role":"symbol","title":"modelNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model number of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/modelnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/protocolInfo":{"role":"symbol","title":"protocolInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"protocolInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ProtocolInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/protocolInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/protocolinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/xmlRootAttributes":{"role":"symbol","title":"xmlRootAttributes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"xmlRootAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"XmlAttribute","preciseIdentifier":"s:11JellyfinAPI12XmlAttributeV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the XmlRootAttributes."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/xmlRootAttributes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/xmlrootattributes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/albumartpn.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/albumartpn.json new file mode 100644 index 000000000..ab40f20c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/albumartpn.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/albumartpn"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/albumArtPn","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the AlbumArtPn."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"albumArtPn","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV10albumArtPnSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/albumArtPn":{"role":"symbol","title":"albumArtPn","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the AlbumArtPn."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/albumArtPn","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/albumartpn"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/codecprofiles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/codecprofiles.json new file mode 100644 index 000000000..db7a74dcf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/codecprofiles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","preciseIdentifier":"s:11JellyfinAPI12CodecProfileV","text":"CodecProfile"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/codecprofiles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/codecProfiles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the codec profiles."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CodecProfile","preciseIdentifier":"s:11JellyfinAPI12CodecProfileV"},{"kind":"text","text":"]?"}],"title":"codecProfiles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV13codecProfilesSayAA05CodecD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/codecProfiles":{"role":"symbol","title":"codecProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CodecProfile","preciseIdentifier":"s:11JellyfinAPI12CodecProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the codec profiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/codecProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/codecprofiles"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/containerprofiles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/containerprofiles.json new file mode 100644 index 000000000..3418df002 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/containerprofiles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","preciseIdentifier":"s:11JellyfinAPI16ContainerProfileV","text":"ContainerProfile"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/containerprofiles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/containerProfiles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the container profiles."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ContainerProfile","preciseIdentifier":"s:11JellyfinAPI16ContainerProfileV"},{"kind":"text","text":"]?"}],"title":"containerProfiles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV17containerProfilesSayAA09ContainerD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/containerProfiles":{"role":"symbol","title":"containerProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ContainerProfile","preciseIdentifier":"s:11JellyfinAPI16ContainerProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the container profiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/containerProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/containerprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile":{"role":"symbol","title":"ContainerProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ContainerProfile"}],"url":"\/documentation\/jellyfinapi\/containerprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/directplayprofiles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/directplayprofiles.json new file mode 100644 index 000000000..a2d3eed18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/directplayprofiles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","preciseIdentifier":"s:11JellyfinAPI17DirectPlayProfileV","text":"DirectPlayProfile"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/directplayprofiles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/directPlayProfiles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the direct play profiles."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DirectPlayProfile","preciseIdentifier":"s:11JellyfinAPI17DirectPlayProfileV"},{"kind":"text","text":"]?"}],"title":"directPlayProfiles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV18directPlayProfilesSayAA06DirectfD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/directPlayProfiles":{"role":"symbol","title":"directPlayProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DirectPlayProfile","preciseIdentifier":"s:11JellyfinAPI17DirectPlayProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the direct play profiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/directPlayProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/directplayprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile":{"role":"symbol","title":"DirectPlayProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}],"url":"\/documentation\/jellyfinapi\/directplayprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablealbumartindidl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablealbumartindidl.json new file mode 100644 index 000000000..268efd0db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablealbumartindidl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAlbumArtInDidl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/enablealbumartindidl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableAlbumArtInDidl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableAlbumArtInDidl."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAlbumArtInDidl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"enableAlbumArtInDidl","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV20enableAlbumArtInDidlSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/enableAlbumArtInDidl":{"role":"symbol","title":"enableAlbumArtInDidl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAlbumArtInDidl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableAlbumArtInDidl."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableAlbumArtInDidl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/enablealbumartindidl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablemsmediareceiverregistrar.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablemsmediareceiverregistrar.json new file mode 100644 index 000000000..39ed98c0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablemsmediareceiverregistrar.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMSMediaReceiverRegistrar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/enablemsmediareceiverregistrar"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableMSMediaReceiverRegistrar","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMSMediaReceiverRegistrar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"enableMSMediaReceiverRegistrar","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV30enableMSMediaReceiverRegistrarSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/enableMSMediaReceiverRegistrar":{"role":"symbol","title":"enableMSMediaReceiverRegistrar","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMSMediaReceiverRegistrar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableMSMediaReceiverRegistrar","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/enablemsmediareceiverregistrar"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablesinglealbumartlimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablesinglealbumartlimit.json new file mode 100644 index 000000000..398ffbb9b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablesinglealbumartlimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSingleAlbumArtLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/enablesinglealbumartlimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableSingleAlbumArtLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableSingleAlbumArtLimit."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSingleAlbumArtLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"enableSingleAlbumArtLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV25enableSingleAlbumArtLimitSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/enableSingleAlbumArtLimit":{"role":"symbol","title":"enableSingleAlbumArtLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSingleAlbumArtLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableSingleAlbumArtLimit."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableSingleAlbumArtLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/enablesinglealbumartlimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablesinglesubtitlelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablesinglesubtitlelimit.json new file mode 100644 index 000000000..c6f681d31 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/enablesinglesubtitlelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSingleSubtitleLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/enablesinglesubtitlelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableSingleSubtitleLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableSingleSubtitleLimit."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSingleSubtitleLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"enableSingleSubtitleLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV25enableSingleSubtitleLimitSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/enableSingleSubtitleLimit":{"role":"symbol","title":"enableSingleSubtitleLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSingleSubtitleLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether EnableSingleSubtitleLimit."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/enableSingleSubtitleLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/enablesinglesubtitlelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/friendlyname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/friendlyname.json new file mode 100644 index 000000000..4170898bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/friendlyname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/friendlyname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/friendlyName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the friendly name of the device profile, which can be shown to users."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"friendlyName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV12friendlyNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/friendlyName":{"role":"symbol","title":"friendlyName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the friendly name of the device profile, which can be shown to users."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/friendlyName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/friendlyname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/id-27l96.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/id-27l96.json new file mode 100644 index 000000000..d17b3a2d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/id-27l96.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/id-27l96"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/id-27l96","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI13DeviceProfileV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/id-27l96":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/id-27l96","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/id-27l96"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/id-wujg.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/id-wujg.json new file mode 100644 index 000000000..7289de489 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/id-wujg.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/id-wujg"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/id-wujg","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/id-wujg":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/id-wujg","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/id-wujg"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/identifiable-implementations.json new file mode 100644 index 000000000..9a8bb99f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/id-27l96"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/id-27l96":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/id-27l96","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/id-27l96"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/identification.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/identification.json new file mode 100644 index 000000000..74f6ec5a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/identification.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identification"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","preciseIdentifier":"s:11JellyfinAPI20DeviceIdentificationV","text":"DeviceIdentification"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/identification"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/identification","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Identification."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identification"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceIdentification","preciseIdentifier":"s:11JellyfinAPI20DeviceIdentificationV"},{"kind":"text","text":"?"}],"title":"identification","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV14identificationAA0C14IdentificationVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/identification":{"role":"symbol","title":"identification","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identification"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceIdentification","preciseIdentifier":"s:11JellyfinAPI20DeviceIdentificationV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Identification."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/identification","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/identification"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/init(albumartpn:codecprofiles:containerprofiles:directplayprofiles:enablealbumartindidl:enablemsmediareceiverregistrar:enablesinglealbumartlimit:enablesinglesubtitlelimit:friendlyname:id:identification:isignoretranscodebyterangerequests:man-zoft.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/init(albumartpn:codecprofiles:containerprofiles:directplayprofiles:enablealbumartindidl:enablemsmediareceiverregistrar:enablesinglealbumartlimit:enablesinglesubtitlelimit:friendlyname:id:identification:isignoretranscodebyterangerequests:man-zoft.json new file mode 100644 index 000000000..bd63da0d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/init(albumartpn:codecprofiles:containerprofiles:directplayprofiles:enablealbumartindidl:enablemsmediareceiverregistrar:enablesinglealbumartlimit:enablesinglesubtitlelimit:friendlyname:id:identification:isignoretranscodebyterangerequests:man-zoft.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"codecProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","preciseIdentifier":"s:11JellyfinAPI12CodecProfileV","text":"CodecProfile"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"containerProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","preciseIdentifier":"s:11JellyfinAPI16ContainerProfileV","text":"ContainerProfile"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"directPlayProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","preciseIdentifier":"s:11JellyfinAPI17DirectPlayProfileV","text":"DirectPlayProfile"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableAlbumArtInDidl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMSMediaReceiverRegistrar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableSingleAlbumArtLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableSingleSubtitleLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"identification"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","preciseIdentifier":"s:11JellyfinAPI20DeviceIdentificationV","text":"DeviceIdentification"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIgnoreTranscodeByteRangeRequests"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAlbumArtHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAlbumArtWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxIconHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxIconWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStaticBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStaticMusicBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"musicStreamingTranscodingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"protocolInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requiresPlainFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requiresPlainVideoItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"responseProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","preciseIdentifier":"s:11JellyfinAPI15ResponseProfileV","text":"ResponseProfile"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sonyAggregationFlags"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","preciseIdentifier":"s:11JellyfinAPI15SubtitleProfileV","text":"SubtitleProfile"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"supportedMediaTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"timelineOffsetSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","preciseIdentifier":"s:11JellyfinAPI18TranscodingProfileV","text":"TranscodingProfile"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"xmlRootAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","preciseIdentifier":"s:11JellyfinAPI12XmlAttributeV","text":"XmlAttribute"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/init(albumartpn:codecprofiles:containerprofiles:directplayprofiles:enablealbumartindidl:enablemsmediareceiverregistrar:enablesinglealbumartlimit:enablesinglesubtitlelimit:friendlyname:id:identification:isignoretranscodebyterangerequests:man-zoft"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/init(albumArtPn:codecProfiles:containerProfiles:directPlayProfiles:enableAlbumArtInDidl:enableMSMediaReceiverRegistrar:enableSingleAlbumArtLimit:enableSingleSubtitleLimit:friendlyName:id:identification:isIgnoreTranscodeByteRangeRequests:manufacturer:manufacturerURL:maxAlbumArtHeight:maxAlbumArtWidth:maxIconHeight:maxIconWidth:maxStaticBitrate:maxStaticMusicBitrate:maxStreamingBitrate:modelDescription:modelName:modelNumber:modelURL:musicStreamingTranscodingBitrate:name:protocolInfo:requiresPlainFolders:requiresPlainVideoItems:responseProfiles:serialNumber:sonyAggregationFlags:subtitleProfiles:supportedMediaTypes:timelineOffsetSeconds:transcodingProfiles:userID:xmlRootAttributes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CodecProfile","preciseIdentifier":"s:11JellyfinAPI12CodecProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"containerProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ContainerProfile","preciseIdentifier":"s:11JellyfinAPI16ContainerProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"directPlayProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DirectPlayProfile","preciseIdentifier":"s:11JellyfinAPI17DirectPlayProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableAlbumArtInDidl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMSMediaReceiverRegistrar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSingleAlbumArtLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSingleSubtitleLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"identification"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceIdentification","preciseIdentifier":"s:11JellyfinAPI20DeviceIdentificationV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreTranscodeByteRangeRequests"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAlbumArtHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAlbumArtWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxIconHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxIconWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStaticBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStaticMusicBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"musicStreamingTranscodingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"protocolInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresPlainFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresPlainVideoItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"responseProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ResponseProfile","preciseIdentifier":"s:11JellyfinAPI15ResponseProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sonyAggregationFlags"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SubtitleProfile","preciseIdentifier":"s:11JellyfinAPI15SubtitleProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedMediaTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timelineOffsetSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TranscodingProfile","preciseIdentifier":"s:11JellyfinAPI18TranscodingProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"xmlRootAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"XmlAttribute","preciseIdentifier":"s:11JellyfinAPI12XmlAttributeV"},{"kind":"text","text":"]?)"}],"title":"init(albumArtPn:codecProfiles:containerProfiles:directPlayProfiles:enableAlbumArtInDidl:enableMSMediaReceiverRegistrar:enableSingleAlbumArtLimit:enableSingleSubtitleLimit:friendlyName:id:identification:isIgnoreTranscodeByteRangeRequests:manufacturer:manufacturerURL:maxAlbumArtHeight:maxAlbumArtWidth:maxIconHeight:maxIconWidth:maxStaticBitrate:maxStaticMusicBitrate:maxStreamingBitrate:modelDescription:modelName:modelNumber:modelURL:musicStreamingTranscodingBitrate:name:protocolInfo:requiresPlainFolders:requiresPlainVideoItems:responseProfiles:serialNumber:sonyAggregationFlags:subtitleProfiles:supportedMediaTypes:timelineOffsetSeconds:transcodingProfiles:userID:xmlRootAttributes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13DeviceProfileV10albumArtPn13codecProfiles09containerI0010directPlayI0011enableAlbumF6InDidl0M24MSMediaReceiverRegistrar0m6SinglenF5Limit0mt8SubtitleU012friendlyName2id14identification34isIgnoreTranscodeByteRangeRequests12manufacturer15manufacturerURL03maxnF6Height03maxnF5Width13maxIconHeight12maxIconWidth16maxStaticBitrate21maxStaticMusicBitrate19maxStreamingBitrate16modelDescription05modelX011modelNumber8modelURL32musicStreamingTranscodingBitrate4name12protocolInfo20requiresPlainFolders23requiresPlainVideoItems08responseI012serialNumber20sonyAggregationFlags08subtitleI019supportedMediaTypes21timelineOffsetSeconds011transcodingI06userID17xmlRootAttributesACSSSg_SayAA05CodecD0VGSgSayAA09ContainerD0VGSgSayAA06DirectlD0VGSgSbSgA28_A28_A28_A15_A15_AA0C14IdentificationVSgA28_A15_A15_s5Int32VSgA34_A34_A34_A34_A34_A34_A15_A15_A15_A15_A34_A15_A15_A28_A28_SayAA08ResponseD0VGSgA15_A15_SayAA0vD0VGSgA15_A34_SayAA011TranscodingD0VGSgA15_SayAA12XmlAttributeVGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceIdentification":{"role":"symbol","title":"DeviceIdentification","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceIdentification"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceIdentification","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceIdentification"}],"url":"\/documentation\/jellyfinapi\/deviceidentification"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ContainerProfile":{"role":"symbol","title":"ContainerProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ContainerProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ContainerProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ContainerProfile"}],"url":"\/documentation\/jellyfinapi\/containerprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute":{"role":"symbol","title":"XmlAttribute","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XmlAttribute"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Dlna.XmlAttribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XmlAttribute"}],"url":"\/documentation\/jellyfinapi\/xmlattribute"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile":{"role":"symbol","title":"DirectPlayProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}],"url":"\/documentation\/jellyfinapi\/directplayprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/CodecProfile":{"role":"symbol","title":"CodecProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CodecProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CodecProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CodecProfile"}],"url":"\/documentation\/jellyfinapi\/codecprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/init(albumArtPn:codecProfiles:containerProfiles:directPlayProfiles:enableAlbumArtInDidl:enableMSMediaReceiverRegistrar:enableSingleAlbumArtLimit:enableSingleSubtitleLimit:friendlyName:id:identification:isIgnoreTranscodeByteRangeRequests:manufacturer:manufacturerURL:maxAlbumArtHeight:maxAlbumArtWidth:maxIconHeight:maxIconWidth:maxStaticBitrate:maxStaticMusicBitrate:maxStreamingBitrate:modelDescription:modelName:modelNumber:modelURL:musicStreamingTranscodingBitrate:name:protocolInfo:requiresPlainFolders:requiresPlainVideoItems:responseProfiles:serialNumber:sonyAggregationFlags:subtitleProfiles:supportedMediaTypes:timelineOffsetSeconds:transcodingProfiles:userID:xmlRootAttributes:)":{"role":"symbol","title":"init(albumArtPn:codecProfiles:containerProfiles:directPlayProfiles:enableAlbumArtInDidl:enableMSMediaReceiverRegistrar:enableSingleAlbumArtLimit:enableSingleSubtitleLimit:friendlyName:id:identification:isIgnoreTranscodeByteRangeRequests:manufacturer:manufacturerURL:maxAlbumArtHeight:maxAlbumArtWidth:maxIconHeight:maxIconWidth:maxStaticBitrate:maxStaticMusicBitrate:maxStreamingBitrate:modelDescription:modelName:modelNumber:modelURL:musicStreamingTranscodingBitrate:name:protocolInfo:requiresPlainFolders:requiresPlainVideoItems:responseProfiles:serialNumber:sonyAggregationFlags:subtitleProfiles:supportedMediaTypes:timelineOffsetSeconds:transcodingProfiles:userID:xmlRootAttributes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CodecProfile","preciseIdentifier":"s:11JellyfinAPI12CodecProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"containerProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ContainerProfile","preciseIdentifier":"s:11JellyfinAPI16ContainerProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"directPlayProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DirectPlayProfile","preciseIdentifier":"s:11JellyfinAPI17DirectPlayProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableAlbumArtInDidl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMSMediaReceiverRegistrar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSingleAlbumArtLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSingleSubtitleLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"identification"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceIdentification","preciseIdentifier":"s:11JellyfinAPI20DeviceIdentificationV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreTranscodeByteRangeRequests"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAlbumArtHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAlbumArtWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxIconHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxIconWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStaticBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStaticMusicBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"musicStreamingTranscodingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"protocolInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresPlainFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresPlainVideoItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"responseProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ResponseProfile","preciseIdentifier":"s:11JellyfinAPI15ResponseProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sonyAggregationFlags"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SubtitleProfile","preciseIdentifier":"s:11JellyfinAPI15SubtitleProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedMediaTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timelineOffsetSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TranscodingProfile","preciseIdentifier":"s:11JellyfinAPI18TranscodingProfileV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"xmlRootAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"XmlAttribute","preciseIdentifier":"s:11JellyfinAPI12XmlAttributeV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/init(albumArtPn:codecProfiles:containerProfiles:directPlayProfiles:enableAlbumArtInDidl:enableMSMediaReceiverRegistrar:enableSingleAlbumArtLimit:enableSingleSubtitleLimit:friendlyName:id:identification:isIgnoreTranscodeByteRangeRequests:manufacturer:manufacturerURL:maxAlbumArtHeight:maxAlbumArtWidth:maxIconHeight:maxIconWidth:maxStaticBitrate:maxStaticMusicBitrate:maxStreamingBitrate:modelDescription:modelName:modelNumber:modelURL:musicStreamingTranscodingBitrate:name:protocolInfo:requiresPlainFolders:requiresPlainVideoItems:responseProfiles:serialNumber:sonyAggregationFlags:subtitleProfiles:supportedMediaTypes:timelineOffsetSeconds:transcodingProfiles:userID:xmlRootAttributes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/init(albumartpn:codecprofiles:containerprofiles:directplayprofiles:enablealbumartindidl:enablemsmediareceiverregistrar:enablesinglealbumartlimit:enablesinglesubtitlelimit:friendlyname:id:identification:isignoretranscodebyterangerequests:man-zoft"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/init(from:).json new file mode 100644 index 000000000..48b8756ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13DeviceProfileV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/isignoretranscodebyterangerequests.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/isignoretranscodebyterangerequests.json new file mode 100644 index 000000000..f147174e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/isignoretranscodebyterangerequests.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreTranscodeByteRangeRequests"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/isignoretranscodebyterangerequests"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/isIgnoreTranscodeByteRangeRequests","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreTranscodeByteRangeRequests"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isIgnoreTranscodeByteRangeRequests","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV34isIgnoreTranscodeByteRangeRequestsSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/isIgnoreTranscodeByteRangeRequests":{"role":"symbol","title":"isIgnoreTranscodeByteRangeRequests","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreTranscodeByteRangeRequests"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/isIgnoreTranscodeByteRangeRequests","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/isignoretranscodebyterangerequests"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/manufacturer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/manufacturer.json new file mode 100644 index 000000000..dda6d2699 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/manufacturer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/manufacturer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/manufacturer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the manufacturer of the device which this profile represents."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"manufacturer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV12manufacturerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/manufacturer":{"role":"symbol","title":"manufacturer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the manufacturer of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/manufacturer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/manufacturer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/manufacturerurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/manufacturerurl.json new file mode 100644 index 000000000..a685cce06 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/manufacturerurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/manufacturerurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/manufacturerURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets an url for the manufacturer of the device which this profile represents."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"manufacturerURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV15manufacturerURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/manufacturerURL":{"role":"symbol","title":"manufacturerURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"manufacturerURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets an url for the manufacturer of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/manufacturerURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/manufacturerurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxalbumartheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxalbumartheight.json new file mode 100644 index 000000000..a7c44b223 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxalbumartheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAlbumArtHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/maxalbumartheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxAlbumArtHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the MaxAlbumArtHeight."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAlbumArtHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAlbumArtHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV17maxAlbumArtHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxAlbumArtHeight":{"role":"symbol","title":"maxAlbumArtHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAlbumArtHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the MaxAlbumArtHeight."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxAlbumArtHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxalbumartheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxalbumartwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxalbumartwidth.json new file mode 100644 index 000000000..81893cb26 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxalbumartwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAlbumArtWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/maxalbumartwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxAlbumArtWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the MaxAlbumArtWidth."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAlbumArtWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAlbumArtWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV16maxAlbumArtWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxAlbumArtWidth":{"role":"symbol","title":"maxAlbumArtWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAlbumArtWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the MaxAlbumArtWidth."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxAlbumArtWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxalbumartwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxiconheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxiconheight.json new file mode 100644 index 000000000..85b09f1bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxiconheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxIconHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/maxiconheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxIconHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum allowed height of embedded icons."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxIconHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxIconHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV13maxIconHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxIconHeight":{"role":"symbol","title":"maxIconHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxIconHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed height of embedded icons."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxIconHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxiconheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxiconwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxiconwidth.json new file mode 100644 index 000000000..55b98fca5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxiconwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxIconWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/maxiconwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxIconWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum allowed width of embedded icons."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxIconWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxIconWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV12maxIconWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxIconWidth":{"role":"symbol","title":"maxIconWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxIconWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed width of embedded icons."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxIconWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxiconwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxstaticbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxstaticbitrate.json new file mode 100644 index 000000000..c0d2c02cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxstaticbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStaticBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/maxstaticbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStaticBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStaticBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStaticBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV16maxStaticBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxStaticBitrate":{"role":"symbol","title":"maxStaticBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStaticBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStaticBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxstaticbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxstaticmusicbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxstaticmusicbitrate.json new file mode 100644 index 000000000..8675bc63b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxstaticmusicbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStaticMusicBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/maxstaticmusicbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStaticMusicBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStaticMusicBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStaticMusicBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV21maxStaticMusicBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxStaticMusicBitrate":{"role":"symbol","title":"maxStaticMusicBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStaticMusicBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStaticMusicBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxstaticmusicbitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxstreamingbitrate.json new file mode 100644 index 000000000..76b7146f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for all streamed content."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for all streamed content."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/maxstreamingbitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modeldescription.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modeldescription.json new file mode 100644 index 000000000..d18658bcf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modeldescription.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/modeldescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the model description of the device which this profile represents."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"modelDescription","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV16modelDescriptionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/modelDescription":{"role":"symbol","title":"modelDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model description of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelDescription","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/modeldescription"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modelname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modelname.json new file mode 100644 index 000000000..d1fd72ba6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modelname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/modelname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the model name of the device which this profile represents."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"modelName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV9modelNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/modelName":{"role":"symbol","title":"modelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model name of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/modelname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modelnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modelnumber.json new file mode 100644 index 000000000..66e22e360 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modelnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/modelnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the model number of the device which this profile represents."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"modelNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV11modelNumberSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/modelNumber":{"role":"symbol","title":"modelNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the model number of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/modelnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modelurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modelurl.json new file mode 100644 index 000000000..7b9b9b25f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/modelurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/modelurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the ModelUrl."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"modelURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV8modelURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/modelURL":{"role":"symbol","title":"modelURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"modelURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ModelUrl."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/modelURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/modelurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/musicstreamingtranscodingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/musicstreamingtranscodingbitrate.json new file mode 100644 index 000000000..3c8faa77f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/musicstreamingtranscodingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicStreamingTranscodingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/musicstreamingtranscodingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/musicStreamingTranscodingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for transcoded music streams."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicStreamingTranscodingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"musicStreamingTranscodingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV32musicStreamingTranscodingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/musicStreamingTranscodingBitrate":{"role":"symbol","title":"musicStreamingTranscodingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicStreamingTranscodingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum allowed bitrate for transcoded music streams."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/musicStreamingTranscodingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/musicstreamingtranscodingbitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/name.json new file mode 100644 index 000000000..20ca3250f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of this device profile."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of this device profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/protocolinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/protocolinfo.json new file mode 100644 index 000000000..5a697e57f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/protocolinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"protocolInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/protocolinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/protocolInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the ProtocolInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"protocolInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"protocolInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV12protocolInfoSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/protocolInfo":{"role":"symbol","title":"protocolInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"protocolInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ProtocolInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/protocolInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/protocolinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/requiresplainfolders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/requiresplainfolders.json new file mode 100644 index 000000000..b10e1ad01 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/requiresplainfolders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresPlainFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/requiresplainfolders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/requiresPlainFolders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether RequiresPlainFolders."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresPlainFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"requiresPlainFolders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV20requiresPlainFoldersSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/requiresPlainFolders":{"role":"symbol","title":"requiresPlainFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresPlainFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether RequiresPlainFolders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/requiresPlainFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/requiresplainfolders"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/requiresplainvideoitems.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/requiresplainvideoitems.json new file mode 100644 index 000000000..cbc0b2e69 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/requiresplainvideoitems.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresPlainVideoItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/requiresplainvideoitems"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/requiresPlainVideoItems","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether RequiresPlainVideoItems."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresPlainVideoItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"requiresPlainVideoItems","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV23requiresPlainVideoItemsSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/requiresPlainVideoItems":{"role":"symbol","title":"requiresPlainVideoItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresPlainVideoItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether RequiresPlainVideoItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/requiresPlainVideoItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/requiresplainvideoitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/responseprofiles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/responseprofiles.json new file mode 100644 index 000000000..a4157dcff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/responseprofiles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"responseProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","preciseIdentifier":"s:11JellyfinAPI15ResponseProfileV","text":"ResponseProfile"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/responseprofiles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/responseProfiles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the ResponseProfiles."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"responseProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ResponseProfile","preciseIdentifier":"s:11JellyfinAPI15ResponseProfileV"},{"kind":"text","text":"]?"}],"title":"responseProfiles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV16responseProfilesSayAA08ResponseD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/responseProfiles":{"role":"symbol","title":"responseProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"responseProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ResponseProfile","preciseIdentifier":"s:11JellyfinAPI15ResponseProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the ResponseProfiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/responseProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/responseprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/serialnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/serialnumber.json new file mode 100644 index 000000000..4f9c05ad3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/serialnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/serialnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/serialNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the serial number of the device which this profile represents."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serialNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV12serialNumberSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/serialNumber":{"role":"symbol","title":"serialNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the serial number of the device which this profile represents."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/serialNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/serialnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/sonyaggregationflags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/sonyaggregationflags.json new file mode 100644 index 000000000..6794cb40d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/sonyaggregationflags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sonyAggregationFlags"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/sonyaggregationflags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/sonyAggregationFlags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sonyAggregationFlags"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sonyAggregationFlags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV20sonyAggregationFlagsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/sonyAggregationFlags":{"role":"symbol","title":"sonyAggregationFlags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sonyAggregationFlags"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/sonyAggregationFlags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/sonyaggregationflags"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/subtitleprofiles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/subtitleprofiles.json new file mode 100644 index 000000000..58f356988 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/subtitleprofiles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","preciseIdentifier":"s:11JellyfinAPI15SubtitleProfileV","text":"SubtitleProfile"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/subtitleprofiles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/subtitleProfiles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the subtitle profiles."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SubtitleProfile","preciseIdentifier":"s:11JellyfinAPI15SubtitleProfileV"},{"kind":"text","text":"]?"}],"title":"subtitleProfiles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV16subtitleProfilesSayAA08SubtitleD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/subtitleProfiles":{"role":"symbol","title":"subtitleProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SubtitleProfile","preciseIdentifier":"s:11JellyfinAPI15SubtitleProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle profiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/subtitleProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/subtitleprofiles"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/supportedmediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/supportedmediatypes.json new file mode 100644 index 000000000..1a2412d27 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/supportedmediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedMediaTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/supportedmediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/supportedMediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the SupportedMediaTypes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedMediaTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"supportedMediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV19supportedMediaTypesSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/supportedMediaTypes":{"role":"symbol","title":"supportedMediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedMediaTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the SupportedMediaTypes."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/supportedMediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/supportedmediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/timelineoffsetseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/timelineoffsetseconds.json new file mode 100644 index 000000000..e43d8f6c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/timelineoffsetseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timelineOffsetSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/timelineoffsetseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/timelineOffsetSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the TimelineOffsetSeconds."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timelineOffsetSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"timelineOffsetSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV21timelineOffsetSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/timelineOffsetSeconds":{"role":"symbol","title":"timelineOffsetSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timelineOffsetSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the TimelineOffsetSeconds."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/timelineOffsetSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/timelineoffsetseconds"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/transcodingprofiles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/transcodingprofiles.json new file mode 100644 index 000000000..603f0e536 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/transcodingprofiles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","preciseIdentifier":"s:11JellyfinAPI18TranscodingProfileV","text":"TranscodingProfile"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/transcodingprofiles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/transcodingProfiles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the transcoding profiles."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TranscodingProfile","preciseIdentifier":"s:11JellyfinAPI18TranscodingProfileV"},{"kind":"text","text":"]?"}],"title":"transcodingProfiles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV19transcodingProfilesSayAA011TranscodingD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/transcodingProfiles":{"role":"symbol","title":"transcodingProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProfiles"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TranscodingProfile","preciseIdentifier":"s:11JellyfinAPI18TranscodingProfileV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the transcoding profiles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/transcodingProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/transcodingprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/userid.json new file mode 100644 index 000000000..2baa71ac4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the UserId."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV6userIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the UserId."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/xmlrootattributes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/xmlrootattributes.json new file mode 100644 index 000000000..ce6080257 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofile/xmlrootattributes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"xmlRootAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","preciseIdentifier":"s:11JellyfinAPI12XmlAttributeV","text":"XmlAttribute"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofile\/xmlrootattributes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/xmlRootAttributes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the XmlRootAttributes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"xmlRootAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"XmlAttribute","preciseIdentifier":"s:11JellyfinAPI12XmlAttributeV"},{"kind":"text","text":"]?"}],"title":"xmlRootAttributes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13DeviceProfileV17xmlRootAttributesSayAA12XmlAttributeVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile/xmlRootAttributes":{"role":"symbol","title":"xmlRootAttributes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"xmlRootAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"XmlAttribute","preciseIdentifier":"s:11JellyfinAPI12XmlAttributeV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the XmlRootAttributes."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile\/xmlRootAttributes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofile\/xmlrootattributes"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute":{"role":"symbol","title":"XmlAttribute","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XmlAttribute"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Dlna.XmlAttribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XmlAttribute"}],"url":"\/documentation\/jellyfinapi\/xmlattribute"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo.json new file mode 100644 index 000000000..e9f52f471 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofileinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"title":"DeviceProfileInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17DeviceProfileInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/init(id:name:type:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/id-vk36","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/type"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/init(id:name:type:)":{"role":"symbol","title":"init(id:name:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfileType","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/init(id:name:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/init(id:name:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/name"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo":{"role":"symbol","title":"DeviceProfileInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}],"url":"\/documentation\/jellyfinapi\/deviceprofileinfo"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfileType","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/id-vk36":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/id-vk36","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/id-vk36"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/id-6jmv.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/id-6jmv.json new file mode 100644 index 000000000..5a0735d1b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/id-6jmv.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofileinfo\/id-6jmv"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/id-6jmv","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI17DeviceProfileInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo":{"role":"symbol","title":"DeviceProfileInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}],"url":"\/documentation\/jellyfinapi\/deviceprofileinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/id-6jmv":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/id-6jmv","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/id-6jmv"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/id-vk36.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/id-vk36.json new file mode 100644 index 000000000..6b985b9f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/id-vk36.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofileinfo\/id-vk36"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/id-vk36","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17DeviceProfileInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo":{"role":"symbol","title":"DeviceProfileInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}],"url":"\/documentation\/jellyfinapi\/deviceprofileinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/id-vk36":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/id-vk36","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/id-vk36"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/identifiable-implementations.json new file mode 100644 index 000000000..adc5ff2b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofileinfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/id-6jmv"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/id-6jmv":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/id-6jmv","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/id-6jmv"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo":{"role":"symbol","title":"DeviceProfileInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}],"url":"\/documentation\/jellyfinapi\/deviceprofileinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/init(from:).json new file mode 100644 index 000000000..48a06aa05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofileinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17DeviceProfileInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo":{"role":"symbol","title":"DeviceProfileInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}],"url":"\/documentation\/jellyfinapi\/deviceprofileinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/init(id:name:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/init(id:name:type:).json new file mode 100644 index 000000000..3e37cfeab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/init(id:name:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileTypeO","text":"DeviceProfileType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofileinfo\/init(id:name:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/init(id:name:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfileType","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileTypeO"},{"kind":"text","text":"?)"}],"title":"init(id:name:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17DeviceProfileInfoV2id4name4typeACSSSg_AgA0cD4TypeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo":{"role":"symbol","title":"DeviceProfileInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}],"url":"\/documentation\/jellyfinapi\/deviceprofileinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/init(id:name:type:)":{"role":"symbol","title":"init(id:name:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfileType","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/init(id:name:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/init(id:name:type:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/name.json new file mode 100644 index 000000000..b5db58b1b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofileinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17DeviceProfileInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo":{"role":"symbol","title":"DeviceProfileInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}],"url":"\/documentation\/jellyfinapi\/deviceprofileinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/type.json new file mode 100644 index 000000000..ef055ce9b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofileinfo/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileTypeO","text":"DeviceProfileType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofileinfo\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfileType","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17DeviceProfileInfoV4typeAA0cD4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfileType","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofileinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo":{"role":"symbol","title":"DeviceProfileInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}],"url":"\/documentation\/jellyfinapi\/deviceprofileinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype.json new file mode 100644 index 000000000..27d102bf9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"title":"DeviceProfileType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI17DeviceProfileTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/system","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/user"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/equatable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/system":{"role":"symbol","title":"DeviceProfileType.system","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"system"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/system","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/system"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/rawrepresentable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/user":{"role":"symbol","title":"DeviceProfileType.user","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"user"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/user","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/user"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/!=(_:_:).json new file mode 100644 index 000000000..48c292949 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI17DeviceProfileTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/encode(to:).json new file mode 100644 index 000000000..1550937f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI17DeviceProfileTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/equatable-implementations.json new file mode 100644 index 000000000..319050647 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/hash(into:).json new file mode 100644 index 000000000..c3cbb3667 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI17DeviceProfileTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/hashvalue.json new file mode 100644 index 000000000..193484f04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI17DeviceProfileTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/init(from:).json new file mode 100644 index 000000000..3ea967bd4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI17DeviceProfileTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/init(rawvalue:).json new file mode 100644 index 000000000..0af5aa9a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17DeviceProfileTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/rawrepresentable-implementations.json new file mode 100644 index 000000000..020b81c97 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/system.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/system.json new file mode 100644 index 000000000..6a833ba27 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/system.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"system"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype\/system"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/system","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"system"}],"title":"DeviceProfileType.system","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI17DeviceProfileTypeO6systemyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/system":{"role":"symbol","title":"DeviceProfileType.system","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"system"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/system","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/system"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/user.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/user.json new file mode 100644 index 000000000..180044cda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/deviceprofiletype/user.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"user"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/deviceprofiletype\/user"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/user","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"user"}],"title":"DeviceProfileType.user","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI17DeviceProfileTypeO4useryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType":{"role":"symbol","title":"DeviceProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileType"}],"url":"\/documentation\/jellyfinapi\/deviceprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileType/user":{"role":"symbol","title":"DeviceProfileType.user","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"user"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileType\/user","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/deviceprofiletype\/user"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile.json new file mode 100644 index 000000000..6116b155d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/directplayprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"title":"DirectPlayProfile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17DirectPlayProfileV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/init(audioCodec:container:type:videoCodec:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/videoCodec"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile":{"role":"symbol","title":"DirectPlayProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}],"url":"\/documentation\/jellyfinapi\/directplayprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/videocodec"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/init(audioCodec:container:type:videoCodec:)":{"role":"symbol","title":"init(audioCodec:container:type:videoCodec:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/init(audioCodec:container:type:videoCodec:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/init(audiocodec:container:type:videocodec:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/type"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/audiocodec.json new file mode 100644 index 000000000..c6da9ded9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/directplayprofile\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17DirectPlayProfileV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile":{"role":"symbol","title":"DirectPlayProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}],"url":"\/documentation\/jellyfinapi\/directplayprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/container.json new file mode 100644 index 000000000..c8aa2d1e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/directplayprofile\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17DirectPlayProfileV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile":{"role":"symbol","title":"DirectPlayProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}],"url":"\/documentation\/jellyfinapi\/directplayprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/container"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/init(audiocodec:container:type:videocodec:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/init(audiocodec:container:type:videocodec:).json new file mode 100644 index 000000000..2652c604d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/init(audiocodec:container:type:videocodec:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO","text":"DlnaProfileType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/directplayprofile\/init(audiocodec:container:type:videocodec:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/init(audioCodec:container:type:videoCodec:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(audioCodec:container:type:videoCodec:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17DirectPlayProfileV10audioCodec9container4type05videoG0ACSSSg_AhA04DlnaE4TypeOSgAHtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile":{"role":"symbol","title":"DirectPlayProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}],"url":"\/documentation\/jellyfinapi\/directplayprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/init(audioCodec:container:type:videoCodec:)":{"role":"symbol","title":"init(audioCodec:container:type:videoCodec:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/init(audioCodec:container:type:videoCodec:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/init(audiocodec:container:type:videocodec:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/init(from:).json new file mode 100644 index 000000000..ff9fb01d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/directplayprofile\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17DirectPlayProfileV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile":{"role":"symbol","title":"DirectPlayProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}],"url":"\/documentation\/jellyfinapi\/directplayprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/type.json new file mode 100644 index 000000000..cf67429a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO","text":"DlnaProfileType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/directplayprofile\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17DirectPlayProfileV4typeAA04DlnaE4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile":{"role":"symbol","title":"DirectPlayProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}],"url":"\/documentation\/jellyfinapi\/directplayprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/videocodec.json new file mode 100644 index 000000000..ecdf23bb3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/directplayprofile/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/directplayprofile\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17DirectPlayProfileV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/directplayprofile\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DirectPlayProfile":{"role":"symbol","title":"DirectPlayProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DirectPlayProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DirectPlayProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DirectPlayProfile"}],"url":"\/documentation\/jellyfinapi\/directplayprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto.json new file mode 100644 index 000000000..de036a70b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"title":"DisplayPreferencesDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/init(client:customPrefs:id:indexBy:primaryImageHeight:primaryImageWidth:isRememberIndexing:isRememberSorting:scrollDirection:isShowBackdrop:isShowSidebar:sortBy:sortOrder:viewType:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/client","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/customPrefs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/id-3e5j4","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/indexBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isRememberIndexing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isRememberSorting","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isShowBackdrop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isShowSidebar","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/primaryImageHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/primaryImageWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/scrollDirection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/viewType"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/indexBy":{"role":"symbol","title":"indexBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index by."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/indexBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/indexby"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/init(client:customPrefs:id:indexBy:primaryImageHeight:primaryImageWidth:isRememberIndexing:isRememberSorting:scrollDirection:isShowBackdrop:isShowSidebar:sortBy:sortOrder:viewType:)":{"role":"symbol","title":"init(client:customPrefs:id:indexBy:primaryImageHeight:primaryImageWidth:isRememberIndexing:isRememberSorting:scrollDirection:isShowBackdrop:isShowSidebar:sortBy:sortOrder:viewType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"customPrefs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberIndexing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"scrollDirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ScrollDirection","preciseIdentifier":"s:11JellyfinAPI15ScrollDirectionO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShowBackdrop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShowSidebar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"viewType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/init(client:customPrefs:id:indexBy:primaryImageHeight:primaryImageWidth:isRememberIndexing:isRememberSorting:scrollDirection:isShowBackdrop:isShowSidebar:sortBy:sortOrder:viewType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/init(client:customprefs:id:indexby:primaryimageheight:primaryimagewidth:isrememberindexing:isremembersorting:scrolldirection:isshowbackdrop:isshowsidebar:sortby:sortorder:viewtype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/isRememberIndexing":{"role":"symbol","title":"isRememberIndexing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberIndexing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [remember indexing]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isRememberIndexing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/isrememberindexing"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/client":{"role":"symbol","title":"client","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/client","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/client"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/primaryImageHeight":{"role":"symbol","title":"primaryImageHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the height of the primary image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/primaryImageHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/primaryimageheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/isShowBackdrop":{"role":"symbol","title":"isShowBackdrop","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShowBackdrop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to show backdrops on this item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isShowBackdrop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/isshowbackdrop"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/isRememberSorting":{"role":"symbol","title":"isRememberSorting","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [remember sorting]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isRememberSorting","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/isremembersorting"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/primaryImageWidth":{"role":"symbol","title":"primaryImageWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the width of the primary image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/primaryImageWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/primaryimagewidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/id-3e5j4":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/id-3e5j4","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/id-3e5j4"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/scrollDirection":{"role":"symbol","title":"scrollDirection","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollDirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ScrollDirection","preciseIdentifier":"s:11JellyfinAPI15ScrollDirectionO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the scroll direction."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/scrollDirection","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the sort by."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the sort order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/viewType":{"role":"symbol","title":"viewType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"viewType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the view."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/viewType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/viewtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/identifiable-implementations"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/customPrefs":{"role":"symbol","title":"customPrefs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customPrefs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the custom prefs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/customPrefs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/customprefs"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/isShowSidebar":{"role":"symbol","title":"isShowSidebar","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShowSidebar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [show sidebar]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isShowSidebar","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/isshowsidebar"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/client.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/client.json new file mode 100644 index 000000000..8af43e4c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/client.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/client"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/client","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the client."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"client","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV6clientSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/client":{"role":"symbol","title":"client","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/client","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/client"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/customprefs.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/customprefs.json new file mode 100644 index 000000000..4eae2bb41 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/customprefs.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customPrefs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/customprefs"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/customPrefs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the custom prefs."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customPrefs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"customPrefs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV11customPrefsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/customPrefs":{"role":"symbol","title":"customPrefs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"customPrefs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the custom prefs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/customPrefs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/customprefs"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/id-2bwgr.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/id-2bwgr.json new file mode 100644 index 000000000..1cf33afe3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/id-2bwgr.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/id-2bwgr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/id-2bwgr","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI21DisplayPreferencesDtoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/id-2bwgr":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/id-2bwgr","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/id-2bwgr"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/id-3e5j4.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/id-3e5j4.json new file mode 100644 index 000000000..348122e0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/id-3e5j4.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/id-3e5j4"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/id-3e5j4","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the user id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/id-3e5j4":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/id-3e5j4","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/id-3e5j4"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/identifiable-implementations.json new file mode 100644 index 000000000..f22861539 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/id-2bwgr"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/id-2bwgr":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/id-2bwgr","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/id-2bwgr"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/indexby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/indexby.json new file mode 100644 index 000000000..d5f76927d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/indexby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/indexby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/indexBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index by."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"indexBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV7indexBySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/indexBy":{"role":"symbol","title":"indexBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index by."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/indexBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/indexby"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/init(client:customprefs:id:indexby:primaryimageheight:primaryimagewidth:isrememberindexing:isremembersorting:scrolldirection:isshowbackdrop:isshowsidebar:sortby:sortorder:viewtype:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/init(client:customprefs:id:indexby:primaryimageheight:primaryimagewidth:isrememberindexing:isremembersorting:scrolldirection:isshowbackdrop:isshowsidebar:sortby:sortorder:viewtype:).json new file mode 100644 index 000000000..3493c7507 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/init(client:customprefs:id:indexby:primaryimageheight:primaryimagewidth:isrememberindexing:isremembersorting:scrolldirection:isshowbackdrop:isshowsidebar:sortby:sortorder:viewtype:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"customPrefs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"indexBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"primaryImageHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"primaryImageWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRememberIndexing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRememberSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"scrollDirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","preciseIdentifier":"s:11JellyfinAPI15ScrollDirectionO","text":"ScrollDirection"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isShowBackdrop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isShowSidebar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"viewType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/init(client:customprefs:id:indexby:primaryimageheight:primaryimagewidth:isrememberindexing:isremembersorting:scrolldirection:isshowbackdrop:isshowsidebar:sortby:sortorder:viewtype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/init(client:customPrefs:id:indexBy:primaryImageHeight:primaryImageWidth:isRememberIndexing:isRememberSorting:scrollDirection:isShowBackdrop:isShowSidebar:sortBy:sortOrder:viewType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"customPrefs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberIndexing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"scrollDirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ScrollDirection","preciseIdentifier":"s:11JellyfinAPI15ScrollDirectionO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShowBackdrop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShowSidebar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"viewType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(client:customPrefs:id:indexBy:primaryImageHeight:primaryImageWidth:isRememberIndexing:isRememberSorting:scrollDirection:isShowBackdrop:isShowSidebar:sortBy:sortOrder:viewType:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV6client11customPrefs2id7indexBy18primaryImageHeight0lM5Width18isRememberIndexing0pQ7Sorting15scrollDirection0P12ShowBackdrop0pV7Sidebar04sortK00Y5Order8viewTypeACSSSg_SDyS2SGSgA2Rs5Int32VSgAWSbSgAxA06ScrollU0OSgA2xrA04SortZ0OSgARtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/init(client:customPrefs:id:indexBy:primaryImageHeight:primaryImageWidth:isRememberIndexing:isRememberSorting:scrollDirection:isShowBackdrop:isShowSidebar:sortBy:sortOrder:viewType:)":{"role":"symbol","title":"init(client:customPrefs:id:indexBy:primaryImageHeight:primaryImageWidth:isRememberIndexing:isRememberSorting:scrollDirection:isShowBackdrop:isShowSidebar:sortBy:sortOrder:viewType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"customPrefs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberIndexing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"scrollDirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ScrollDirection","preciseIdentifier":"s:11JellyfinAPI15ScrollDirectionO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShowBackdrop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShowSidebar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"viewType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/init(client:customPrefs:id:indexBy:primaryImageHeight:primaryImageWidth:isRememberIndexing:isRememberSorting:scrollDirection:isShowBackdrop:isShowSidebar:sortBy:sortOrder:viewType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/init(client:customprefs:id:indexby:primaryimageheight:primaryimagewidth:isrememberindexing:isremembersorting:scrolldirection:isshowbackdrop:isshowsidebar:sortby:sortorder:viewtype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/init(from:).json new file mode 100644 index 000000000..814f8df76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isrememberindexing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isrememberindexing.json new file mode 100644 index 000000000..898c6f63d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isrememberindexing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberIndexing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/isrememberindexing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isRememberIndexing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [remember indexing]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberIndexing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRememberIndexing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV18isRememberIndexingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/isRememberIndexing":{"role":"symbol","title":"isRememberIndexing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberIndexing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [remember indexing]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isRememberIndexing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/isrememberindexing"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isremembersorting.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isremembersorting.json new file mode 100644 index 000000000..91c4a742a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isremembersorting.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/isremembersorting"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isRememberSorting","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [remember sorting]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRememberSorting","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV17isRememberSortingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/isRememberSorting":{"role":"symbol","title":"isRememberSorting","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [remember sorting]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isRememberSorting","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/isremembersorting"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isshowbackdrop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isshowbackdrop.json new file mode 100644 index 000000000..1e968da23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isshowbackdrop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShowBackdrop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/isshowbackdrop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isShowBackdrop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to show backdrops on this item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShowBackdrop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isShowBackdrop","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV14isShowBackdropSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/isShowBackdrop":{"role":"symbol","title":"isShowBackdrop","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShowBackdrop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to show backdrops on this item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isShowBackdrop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/isshowbackdrop"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isshowsidebar.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isshowsidebar.json new file mode 100644 index 000000000..42dea35f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/isshowsidebar.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShowSidebar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/isshowsidebar"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isShowSidebar","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [show sidebar]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShowSidebar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isShowSidebar","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV13isShowSidebarSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/isShowSidebar":{"role":"symbol","title":"isShowSidebar","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShowSidebar"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [show sidebar]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/isShowSidebar","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/isshowsidebar"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/primaryimageheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/primaryimageheight.json new file mode 100644 index 000000000..3698633bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/primaryimageheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/primaryimageheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/primaryImageHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the height of the primary image."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"primaryImageHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV18primaryImageHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/primaryImageHeight":{"role":"symbol","title":"primaryImageHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the height of the primary image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/primaryImageHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/primaryimageheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/primaryimagewidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/primaryimagewidth.json new file mode 100644 index 000000000..8320801ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/primaryimagewidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/primaryimagewidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/primaryImageWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the width of the primary image."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"primaryImageWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV17primaryImageWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/primaryImageWidth":{"role":"symbol","title":"primaryImageWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the width of the primary image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/primaryImageWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/primaryimagewidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/scrolldirection.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/scrolldirection.json new file mode 100644 index 000000000..33e7a7744 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/scrolldirection.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollDirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","preciseIdentifier":"s:11JellyfinAPI15ScrollDirectionO","text":"ScrollDirection"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/scrolldirection"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/scrollDirection","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the scroll direction."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollDirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ScrollDirection","preciseIdentifier":"s:11JellyfinAPI15ScrollDirectionO"},{"kind":"text","text":"?"}],"title":"scrollDirection","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV15scrollDirectionAA06ScrollG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/scrollDirection":{"role":"symbol","title":"scrollDirection","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollDirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ScrollDirection","preciseIdentifier":"s:11JellyfinAPI15ScrollDirectionO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the scroll direction."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/scrollDirection","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/scrolldirection"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/sortby.json new file mode 100644 index 000000000..7d647b42f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the sort by."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV6sortBySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the sort by."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/sortorder.json new file mode 100644 index 000000000..0ae30584c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the sort order."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV9sortOrderAA04SortG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the sort order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/viewtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/viewtype.json new file mode 100644 index 000000000..098fd2514 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/displaypreferencesdto/viewtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"viewType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/displaypreferencesdto\/viewtype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/viewType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the view."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"viewType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"viewType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21DisplayPreferencesDtoV8viewTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto/viewType":{"role":"symbol","title":"viewType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"viewType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the view."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto\/viewType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/displaypreferencesdto\/viewtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions.json new file mode 100644 index 000000000..09db1da18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"title":"DlnaOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11DlnaOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/init(aliveMessageIntervalSeconds:isAutoCreatePlayToProfiles:blastAliveMessageIntervalSeconds:isBlastAliveMessages:clientDiscoveryIntervalSeconds:defaultUserID:enableDebugLog:enablePlayTo:enablePlayToTracing:enableServer:isSendOnlyMatchedHost:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/aliveMessageIntervalSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/blastAliveMessageIntervalSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/clientDiscoveryIntervalSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/defaultUserID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enableDebugLog","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enablePlayTo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enablePlayToTracing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enableServer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isAutoCreatePlayToProfiles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isBlastAliveMessages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isSendOnlyMatchedHost"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/blastAliveMessageIntervalSeconds":{"role":"symbol","title":"blastAliveMessageIntervalSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blastAliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the frequency at which ssdp alive notifications are transmitted. MIGRATING - TO BE REMOVED ONCE WEB HAS BEEN ALTERED."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/blastAliveMessageIntervalSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/blastalivemessageintervalseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/clientDiscoveryIntervalSeconds":{"role":"symbol","title":"clientDiscoveryIntervalSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"clientDiscoveryIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ssdp client discovery interval time (in seconds)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/clientDiscoveryIntervalSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/clientdiscoveryintervalseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/enableServer":{"role":"symbol","title":"enableServer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableServer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna server subsystem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enableServer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/enableserver"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/enableDebugLog":{"role":"symbol","title":"enableDebugLog","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDebugLog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether detailed dlna server logs are sent to the console\/log."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enableDebugLog","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/enabledebuglog"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/defaultUserID":{"role":"symbol","title":"defaultUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the default user account that the dlna server uses."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/defaultUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/defaultuserid"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/init(aliveMessageIntervalSeconds:isAutoCreatePlayToProfiles:blastAliveMessageIntervalSeconds:isBlastAliveMessages:clientDiscoveryIntervalSeconds:defaultUserID:enableDebugLog:enablePlayTo:enablePlayToTracing:enableServer:isSendOnlyMatchedHost:)":{"role":"symbol","title":"init(aliveMessageIntervalSeconds:isAutoCreatePlayToProfiles:blastAliveMessageIntervalSeconds:isBlastAliveMessages:clientDiscoveryIntervalSeconds:defaultUserID:enableDebugLog:enablePlayTo:enablePlayToTracing:enableServer:isSendOnlyMatchedHost:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoCreatePlayToProfiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blastAliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBlastAliveMessages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"clientDiscoveryIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"defaultUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDebugLog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePlayTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePlayToTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableServer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSendOnlyMatchedHost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/init(aliveMessageIntervalSeconds:isAutoCreatePlayToProfiles:blastAliveMessageIntervalSeconds:isBlastAliveMessages:clientDiscoveryIntervalSeconds:defaultUserID:enableDebugLog:enablePlayTo:enablePlayToTracing:enableServer:isSendOnlyMatchedHost:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/init(alivemessageintervalseconds:isautocreateplaytoprofiles:blastalivemessageintervalseconds:isblastalivemessages:clientdiscoveryintervalseconds:defaultuserid:enabledebuglog:enableplayto:enableplaytotracing:enableserver:issendonlymatchedhos-2e1w6"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/aliveMessageIntervalSeconds":{"role":"symbol","title":"aliveMessageIntervalSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the frequency at which ssdp alive notifications are transmitted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/aliveMessageIntervalSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/alivemessageintervalseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/isAutoCreatePlayToProfiles":{"role":"symbol","title":"isAutoCreatePlayToProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoCreatePlayToProfiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether playTo device profiles should be created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isAutoCreatePlayToProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/isautocreateplaytoprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/isBlastAliveMessages":{"role":"symbol","title":"isBlastAliveMessages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBlastAliveMessages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to blast alive messages."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isBlastAliveMessages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/isblastalivemessages"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/isSendOnlyMatchedHost":{"role":"symbol","title":"isSendOnlyMatchedHost","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSendOnlyMatchedHost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to send only matched host."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isSendOnlyMatchedHost","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/issendonlymatchedhost"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/enablePlayTo":{"role":"symbol","title":"enablePlayTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlayTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna playTo subsystem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enablePlayTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/enableplayto"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/enablePlayToTracing":{"role":"symbol","title":"enablePlayToTracing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlayToTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether whether detailed playTo debug logs are sent to the console\/log."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enablePlayToTracing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/enableplaytotracing"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/alivemessageintervalseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/alivemessageintervalseconds.json new file mode 100644 index 000000000..3caeeff8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/alivemessageintervalseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/alivemessageintervalseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/aliveMessageIntervalSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the frequency at which ssdp alive notifications are transmitted."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"aliveMessageIntervalSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV27aliveMessageIntervalSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/aliveMessageIntervalSeconds":{"role":"symbol","title":"aliveMessageIntervalSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the frequency at which ssdp alive notifications are transmitted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/aliveMessageIntervalSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/alivemessageintervalseconds"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/blastalivemessageintervalseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/blastalivemessageintervalseconds.json new file mode 100644 index 000000000..62c23c754 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/blastalivemessageintervalseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blastAliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/blastalivemessageintervalseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/blastAliveMessageIntervalSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the frequency at which ssdp alive notifications are transmitted. MIGRATING - TO BE REMOVED ONCE WEB HAS BEEN ALTERED."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blastAliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blastAliveMessageIntervalSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV32blastAliveMessageIntervalSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/blastAliveMessageIntervalSeconds":{"role":"symbol","title":"blastAliveMessageIntervalSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blastAliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the frequency at which ssdp alive notifications are transmitted. MIGRATING - TO BE REMOVED ONCE WEB HAS BEEN ALTERED."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/blastAliveMessageIntervalSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/blastalivemessageintervalseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/clientdiscoveryintervalseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/clientdiscoveryintervalseconds.json new file mode 100644 index 000000000..8421e5861 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/clientdiscoveryintervalseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"clientDiscoveryIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This is the time after which the server will send a ssdp search request."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/clientdiscoveryintervalseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/clientDiscoveryIntervalSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the ssdp client discovery interval time (in seconds)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"clientDiscoveryIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"clientDiscoveryIntervalSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV30clientDiscoveryIntervalSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/clientDiscoveryIntervalSeconds":{"role":"symbol","title":"clientDiscoveryIntervalSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"clientDiscoveryIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ssdp client discovery interval time (in seconds)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/clientDiscoveryIntervalSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/clientdiscoveryintervalseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/defaultuserid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/defaultuserid.json new file mode 100644 index 000000000..3cea006dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/defaultuserid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/defaultuserid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/defaultUserID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the default user account that the dlna server uses."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"defaultUserID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV13defaultUserIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/defaultUserID":{"role":"symbol","title":"defaultUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the default user account that the dlna server uses."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/defaultUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/defaultuserid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enabledebuglog.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enabledebuglog.json new file mode 100644 index 000000000..dbb7bf7f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enabledebuglog.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDebugLog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the setting “Emby.Dlna”: “Debug” msut be set in logging.default.json for this property to work."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/enabledebuglog"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enableDebugLog","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether detailed dlna server logs are sent to the console\/log."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDebugLog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDebugLog","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV14enableDebugLogSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/enableDebugLog":{"role":"symbol","title":"enableDebugLog","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDebugLog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether detailed dlna server logs are sent to the console\/log."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enableDebugLog","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/enabledebuglog"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enableplayto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enableplayto.json new file mode 100644 index 000000000..1635a0779 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enableplayto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlayTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/enableplayto"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enablePlayTo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna playTo subsystem."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlayTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enablePlayTo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV12enablePlayToSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/enablePlayTo":{"role":"symbol","title":"enablePlayTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlayTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna playTo subsystem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enablePlayTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/enableplayto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enableplaytotracing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enableplaytotracing.json new file mode 100644 index 000000000..8d3fc5857 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enableplaytotracing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlayToTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the setting “Emby.Dlna.PlayTo”: “Debug” msut be set in logging.default.json for this property to work."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/enableplaytotracing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enablePlayToTracing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether whether detailed playTo debug logs are sent to the console\/log."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlayToTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enablePlayToTracing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV19enablePlayToTracingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/enablePlayToTracing":{"role":"symbol","title":"enablePlayToTracing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlayToTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether whether detailed playTo debug logs are sent to the console\/log."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enablePlayToTracing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/enableplaytotracing"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enableserver.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enableserver.json new file mode 100644 index 000000000..5f479cb07 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/enableserver.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableServer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/enableserver"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enableServer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna server subsystem."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableServer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableServer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV12enableServerSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/enableServer":{"role":"symbol","title":"enableServer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableServer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna server subsystem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/enableServer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/enableserver"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/init(alivemessageintervalseconds:isautocreateplaytoprofiles:blastalivemessageintervalseconds:isblastalivemessages:clientdiscoveryintervalseconds:defaultuserid:enabledebuglog:enableplayto:enableplaytotracing:enableserver:issendonlymatchedhos-2e1w6.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/init(alivemessageintervalseconds:isautocreateplaytoprofiles:blastalivemessageintervalseconds:isblastalivemessages:clientdiscoveryintervalseconds:defaultuserid:enabledebuglog:enableplayto:enableplaytotracing:enableserver:issendonlymatchedhos-2e1w6.json new file mode 100644 index 000000000..ba707e586 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/init(alivemessageintervalseconds:isautocreateplaytoprofiles:blastalivemessageintervalseconds:isblastalivemessages:clientdiscoveryintervalseconds:defaultuserid:enabledebuglog:enableplayto:enableplaytotracing:enableserver:issendonlymatchedhos-2e1w6.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutoCreatePlayToProfiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blastAliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBlastAliveMessages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"clientDiscoveryIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"defaultUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableDebugLog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enablePlayTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enablePlayToTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableServer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSendOnlyMatchedHost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/init(alivemessageintervalseconds:isautocreateplaytoprofiles:blastalivemessageintervalseconds:isblastalivemessages:clientdiscoveryintervalseconds:defaultuserid:enabledebuglog:enableplayto:enableplaytotracing:enableserver:issendonlymatchedhos-2e1w6"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/init(aliveMessageIntervalSeconds:isAutoCreatePlayToProfiles:blastAliveMessageIntervalSeconds:isBlastAliveMessages:clientDiscoveryIntervalSeconds:defaultUserID:enableDebugLog:enablePlayTo:enablePlayToTracing:enableServer:isSendOnlyMatchedHost:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoCreatePlayToProfiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blastAliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBlastAliveMessages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"clientDiscoveryIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"defaultUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDebugLog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePlayTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePlayToTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableServer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSendOnlyMatchedHost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(aliveMessageIntervalSeconds:isAutoCreatePlayToProfiles:blastAliveMessageIntervalSeconds:isBlastAliveMessages:clientDiscoveryIntervalSeconds:defaultUserID:enableDebugLog:enablePlayTo:enablePlayToTracing:enableServer:isSendOnlyMatchedHost:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11DlnaOptionsV27aliveMessageIntervalSeconds26isAutoCreatePlayToProfiles010blastAlivefgH00i5BlastP8Messages015clientDiscoverygH013defaultUserID14enableDebugLog0xlM00xlM7Tracing0X6Server0I19SendOnlyMatchedHostACs5Int32VSg_SbSgAqrQSSSgA5Rtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/init(aliveMessageIntervalSeconds:isAutoCreatePlayToProfiles:blastAliveMessageIntervalSeconds:isBlastAliveMessages:clientDiscoveryIntervalSeconds:defaultUserID:enableDebugLog:enablePlayTo:enablePlayToTracing:enableServer:isSendOnlyMatchedHost:)":{"role":"symbol","title":"init(aliveMessageIntervalSeconds:isAutoCreatePlayToProfiles:blastAliveMessageIntervalSeconds:isBlastAliveMessages:clientDiscoveryIntervalSeconds:defaultUserID:enableDebugLog:enablePlayTo:enablePlayToTracing:enableServer:isSendOnlyMatchedHost:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoCreatePlayToProfiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blastAliveMessageIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBlastAliveMessages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"clientDiscoveryIntervalSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"defaultUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDebugLog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePlayTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePlayToTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableServer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSendOnlyMatchedHost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/init(aliveMessageIntervalSeconds:isAutoCreatePlayToProfiles:blastAliveMessageIntervalSeconds:isBlastAliveMessages:clientDiscoveryIntervalSeconds:defaultUserID:enableDebugLog:enablePlayTo:enablePlayToTracing:enableServer:isSendOnlyMatchedHost:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/init(alivemessageintervalseconds:isautocreateplaytoprofiles:blastalivemessageintervalseconds:isblastalivemessages:clientdiscoveryintervalseconds:defaultuserid:enabledebuglog:enableplayto:enableplaytotracing:enableserver:issendonlymatchedhos-2e1w6"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/init(from:).json new file mode 100644 index 000000000..2bc7c3e54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11DlnaOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/isautocreateplaytoprofiles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/isautocreateplaytoprofiles.json new file mode 100644 index 000000000..4cdbac3e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/isautocreateplaytoprofiles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoCreatePlayToProfiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/isautocreateplaytoprofiles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isAutoCreatePlayToProfiles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether playTo device profiles should be created."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoCreatePlayToProfiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutoCreatePlayToProfiles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV26isAutoCreatePlayToProfilesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/isAutoCreatePlayToProfiles":{"role":"symbol","title":"isAutoCreatePlayToProfiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoCreatePlayToProfiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether playTo device profiles should be created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isAutoCreatePlayToProfiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/isautocreateplaytoprofiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/isblastalivemessages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/isblastalivemessages.json new file mode 100644 index 000000000..c605c3b5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/isblastalivemessages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBlastAliveMessages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/isblastalivemessages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isBlastAliveMessages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to blast alive messages."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBlastAliveMessages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBlastAliveMessages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV20isBlastAliveMessagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/isBlastAliveMessages":{"role":"symbol","title":"isBlastAliveMessages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBlastAliveMessages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to blast alive messages."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isBlastAliveMessages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/isblastalivemessages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/issendonlymatchedhost.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/issendonlymatchedhost.json new file mode 100644 index 000000000..bbc57db67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaoptions/issendonlymatchedhost.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSendOnlyMatchedHost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaoptions\/issendonlymatchedhost"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isSendOnlyMatchedHost","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to send only matched host."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSendOnlyMatchedHost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSendOnlyMatchedHost","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11DlnaOptionsV21isSendOnlyMatchedHostSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions/isSendOnlyMatchedHost":{"role":"symbol","title":"isSendOnlyMatchedHost","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSendOnlyMatchedHost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to send only matched host."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions\/isSendOnlyMatchedHost","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaoptions\/issendonlymatchedhost"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaOptions":{"role":"symbol","title":"DlnaOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaOptions"}],"abstract":[{"type":"text","text":"The DlnaOptions class contains the user definable parameters for the dlna subsystems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaOptions"}],"url":"\/documentation\/jellyfinapi\/dlnaoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype.json new file mode 100644 index 000000000..436d2fdbe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"title":"DlnaProfileType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15DlnaProfileTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/audio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/photo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/subtitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/video"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/photo":{"role":"symbol","title":"DlnaProfileType.photo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/photo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/photo"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/audio":{"role":"symbol","title":"DlnaProfileType.audio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/audio"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/subtitle":{"role":"symbol","title":"DlnaProfileType.subtitle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/subtitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/subtitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/video":{"role":"symbol","title":"DlnaProfileType.video","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/video","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/video"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/!=(_:_:).json new file mode 100644 index 000000000..b23b898f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15DlnaProfileTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/audio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/audio.json new file mode 100644 index 000000000..c19bbede4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/audio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/audio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/audio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"title":"DlnaProfileType.audio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15DlnaProfileTypeO5audioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/audio":{"role":"symbol","title":"DlnaProfileType.audio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/audio"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/encode(to:).json new file mode 100644 index 000000000..c5641f0f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15DlnaProfileTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/equatable-implementations.json new file mode 100644 index 000000000..d9b46e661 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/hash(into:).json new file mode 100644 index 000000000..5a2a728f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15DlnaProfileTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/hashvalue.json new file mode 100644 index 000000000..49dc9eaaa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15DlnaProfileTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/init(from:).json new file mode 100644 index 000000000..185b5138e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15DlnaProfileTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/init(rawvalue:).json new file mode 100644 index 000000000..fc42ef7f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15DlnaProfileTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/photo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/photo.json new file mode 100644 index 000000000..b1ea63c02 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/photo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/photo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/photo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"title":"DlnaProfileType.photo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15DlnaProfileTypeO5photoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/photo":{"role":"symbol","title":"DlnaProfileType.photo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"photo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/photo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/photo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/rawrepresentable-implementations.json new file mode 100644 index 000000000..6676d1842 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/subtitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/subtitle.json new file mode 100644 index 000000000..969993bdd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/subtitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitle"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/subtitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/subtitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitle"}],"title":"DlnaProfileType.subtitle","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15DlnaProfileTypeO8subtitleyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/subtitle":{"role":"symbol","title":"DlnaProfileType.subtitle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/subtitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/subtitle"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/video.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/video.json new file mode 100644 index 000000000..b02c53fe4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dlnaprofiletype/video.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dlnaprofiletype\/video"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/video","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"title":"DlnaProfileType.video","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15DlnaProfileTypeO5videoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType/video":{"role":"symbol","title":"DlnaProfileType.video","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType\/video","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dlnaprofiletype\/video"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek.json new file mode 100644 index 000000000..3c8490844 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"title":"DynamicDayOfWeek","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/everyday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/friday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/monday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/saturday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/sunday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/thursday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/tuesday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/wednesday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/weekday","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/weekend"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/thursday":{"role":"symbol","title":"DynamicDayOfWeek.thursday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thursday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/thursday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/thursday"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/rawrepresentable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/wednesday":{"role":"symbol","title":"DynamicDayOfWeek.wednesday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wednesday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/wednesday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/wednesday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/weekday":{"role":"symbol","title":"DynamicDayOfWeek.weekday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/weekday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/weekday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/everyday":{"role":"symbol","title":"DynamicDayOfWeek.everyday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"everyday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/everyday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/everyday"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/monday":{"role":"symbol","title":"DynamicDayOfWeek.monday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"monday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/monday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/monday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/saturday":{"role":"symbol","title":"DynamicDayOfWeek.saturday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"saturday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/saturday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/saturday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/equatable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/tuesday":{"role":"symbol","title":"DynamicDayOfWeek.tuesday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuesday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/tuesday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/tuesday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/weekend":{"role":"symbol","title":"DynamicDayOfWeek.weekend","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekend"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/weekend","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/weekend"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/friday":{"role":"symbol","title":"DynamicDayOfWeek.friday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"friday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/friday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/friday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/init(rawvalue:)"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/sunday":{"role":"symbol","title":"DynamicDayOfWeek.sunday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sunday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/sunday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/sunday"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/!=(_:_:).json new file mode 100644 index 000000000..e1cbc2ef8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI16DynamicDayOfWeekO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/encode(to:).json new file mode 100644 index 000000000..c3788cbf2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI16DynamicDayOfWeekO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/equatable-implementations.json new file mode 100644 index 000000000..d68b0c08b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/everyday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/everyday.json new file mode 100644 index 000000000..0f0c41c70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/everyday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"everyday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/everyday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/everyday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"everyday"}],"title":"DynamicDayOfWeek.everyday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO8everydayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/everyday":{"role":"symbol","title":"DynamicDayOfWeek.everyday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"everyday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/everyday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/everyday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/friday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/friday.json new file mode 100644 index 000000000..daad6fede --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/friday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"friday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/friday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/friday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"friday"}],"title":"DynamicDayOfWeek.friday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO6fridayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/friday":{"role":"symbol","title":"DynamicDayOfWeek.friday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"friday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/friday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/friday"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/hash(into:).json new file mode 100644 index 000000000..615d911e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI16DynamicDayOfWeekO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/hashvalue.json new file mode 100644 index 000000000..240628b2d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI16DynamicDayOfWeekO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/init(from:).json new file mode 100644 index 000000000..59b4cf10d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI16DynamicDayOfWeekO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/init(rawvalue:).json new file mode 100644 index 000000000..217c67789 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/monday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/monday.json new file mode 100644 index 000000000..628550e14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/monday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"monday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/monday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/monday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"monday"}],"title":"DynamicDayOfWeek.monday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO6mondayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/monday":{"role":"symbol","title":"DynamicDayOfWeek.monday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"monday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/monday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/monday"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/rawrepresentable-implementations.json new file mode 100644 index 000000000..42f531ffd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/saturday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/saturday.json new file mode 100644 index 000000000..8784208d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/saturday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"saturday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/saturday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/saturday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"saturday"}],"title":"DynamicDayOfWeek.saturday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO8saturdayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/saturday":{"role":"symbol","title":"DynamicDayOfWeek.saturday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"saturday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/saturday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/saturday"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/sunday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/sunday.json new file mode 100644 index 000000000..ad5f4e560 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/sunday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sunday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/sunday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/sunday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sunday"}],"title":"DynamicDayOfWeek.sunday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO6sundayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/sunday":{"role":"symbol","title":"DynamicDayOfWeek.sunday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sunday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/sunday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/sunday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/thursday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/thursday.json new file mode 100644 index 000000000..90219c2ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/thursday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thursday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/thursday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/thursday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thursday"}],"title":"DynamicDayOfWeek.thursday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO8thursdayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/thursday":{"role":"symbol","title":"DynamicDayOfWeek.thursday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thursday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/thursday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/thursday"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/tuesday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/tuesday.json new file mode 100644 index 000000000..cdbd50fed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/tuesday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuesday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/tuesday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/tuesday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuesday"}],"title":"DynamicDayOfWeek.tuesday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO7tuesdayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/tuesday":{"role":"symbol","title":"DynamicDayOfWeek.tuesday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuesday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/tuesday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/tuesday"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/wednesday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/wednesday.json new file mode 100644 index 000000000..d294cf3e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/wednesday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wednesday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/wednesday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/wednesday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wednesday"}],"title":"DynamicDayOfWeek.wednesday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO9wednesdayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/wednesday":{"role":"symbol","title":"DynamicDayOfWeek.wednesday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"wednesday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/wednesday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/wednesday"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/weekday.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/weekday.json new file mode 100644 index 000000000..9ecfa83a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/weekday.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekday"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/weekday"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/weekday","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekday"}],"title":"DynamicDayOfWeek.weekday","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO7weekdayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/weekday":{"role":"symbol","title":"DynamicDayOfWeek.weekday","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekday"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/weekday","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/weekday"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/weekend.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/weekend.json new file mode 100644 index 000000000..007e70f27 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/dynamicdayofweek/weekend.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekend"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/dynamicdayofweek\/weekend"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/weekend","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekend"}],"title":"DynamicDayOfWeek.weekend","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16DynamicDayOfWeekO7weekendyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek/weekend":{"role":"symbol","title":"DynamicDayOfWeek.weekend","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"weekend"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek\/weekend","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/dynamicdayofweek\/weekend"},"doc://JellyfinAPI/documentation/JellyfinAPI/DynamicDayOfWeek":{"role":"symbol","title":"DynamicDayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DynamicDayOfWeek"}],"abstract":[{"type":"text","text":"An enum that represents a day of the week, weekdays, weekends, or all days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DynamicDayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DynamicDayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dynamicdayofweek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions.json new file mode 100644 index 000000000..c312a843a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"title":"EmbeddedSubtitleOptions","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowAll","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowImage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowNone","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowText"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/allowImage":{"role":"symbol","title":"EmbeddedSubtitleOptions.allowImage","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowImage"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowImage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allowimage"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/allowNone":{"role":"symbol","title":"EmbeddedSubtitleOptions.allowNone","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowNone"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowNone","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allownone"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/allowAll":{"role":"symbol","title":"EmbeddedSubtitleOptions.allowAll","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAll"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowAll","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allowall"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/allowText":{"role":"symbol","title":"EmbeddedSubtitleOptions.allowText","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowText"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowText","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allowtext"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/rawrepresentable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/!=(_:_:).json new file mode 100644 index 000000000..354d960c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI23EmbeddedSubtitleOptionsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allowall.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allowall.json new file mode 100644 index 000000000..1fef633fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allowall.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAll"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allowall"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowAll","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAll"}],"title":"EmbeddedSubtitleOptions.allowAll","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO8allowAllyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/allowAll":{"role":"symbol","title":"EmbeddedSubtitleOptions.allowAll","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAll"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowAll","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allowall"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allowimage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allowimage.json new file mode 100644 index 000000000..39628ec95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allowimage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowImage"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allowimage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowImage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowImage"}],"title":"EmbeddedSubtitleOptions.allowImage","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO10allowImageyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/allowImage":{"role":"symbol","title":"EmbeddedSubtitleOptions.allowImage","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowImage"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowImage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allowimage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allownone.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allownone.json new file mode 100644 index 000000000..0c6d8cd4d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allownone.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowNone"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allownone"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowNone","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowNone"}],"title":"EmbeddedSubtitleOptions.allowNone","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO9allowNoneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/allowNone":{"role":"symbol","title":"EmbeddedSubtitleOptions.allowNone","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowNone"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowNone","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allownone"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allowtext.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allowtext.json new file mode 100644 index 000000000..0d445871b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/allowtext.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowText"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allowtext"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowText","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowText"}],"title":"EmbeddedSubtitleOptions.allowText","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO9allowTextyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/allowText":{"role":"symbol","title":"EmbeddedSubtitleOptions.allowText","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowText"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/allowText","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/allowtext"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/encode(to:).json new file mode 100644 index 000000000..8badbe379 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI23EmbeddedSubtitleOptionsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/equatable-implementations.json new file mode 100644 index 000000000..5c1b348eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/hash(into:).json new file mode 100644 index 000000000..c20712661 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI23EmbeddedSubtitleOptionsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/hashvalue.json new file mode 100644 index 000000000..5694c011f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI23EmbeddedSubtitleOptionsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/init(from:).json new file mode 100644 index 000000000..f40bbb9ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI23EmbeddedSubtitleOptionsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/init(rawvalue:).json new file mode 100644 index 000000000..ac01745dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/rawrepresentable-implementations.json new file mode 100644 index 000000000..a1637fd1c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/embeddedsubtitleoptions/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext.json new file mode 100644 index 000000000..4f7a4cc7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"title":"EncodingContext","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15EncodingContextO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/static","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/streaming"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/static":{"role":"symbol","title":"EncodingContext.static","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`static`"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/static","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/static"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/streaming":{"role":"symbol","title":"EncodingContext.streaming","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"streaming"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/streaming","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/streaming"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/!=(_:_:).json new file mode 100644 index 000000000..3da43eace --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15EncodingContextO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/encode(to:).json new file mode 100644 index 000000000..2e54bc276 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15EncodingContextO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/equatable-implementations.json new file mode 100644 index 000000000..376785aa7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/hash(into:).json new file mode 100644 index 000000000..48c310a54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15EncodingContextO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/hashvalue.json new file mode 100644 index 000000000..d388e23e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15EncodingContextO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/init(from:).json new file mode 100644 index 000000000..6844b793a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15EncodingContextO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/init(rawvalue:).json new file mode 100644 index 000000000..05e0131e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15EncodingContextO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/rawrepresentable-implementations.json new file mode 100644 index 000000000..86016e9ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/static.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/static.json new file mode 100644 index 000000000..02e57f17b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/static.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`static`"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext\/static"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/static","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`static`"}],"title":"EncodingContext.static","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15EncodingContextO6staticyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/static":{"role":"symbol","title":"EncodingContext.static","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`static`"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/static","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/static"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/streaming.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/streaming.json new file mode 100644 index 000000000..c7eba808a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingcontext/streaming.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"streaming"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingcontext\/streaming"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/streaming","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"streaming"}],"title":"EncodingContext.streaming","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15EncodingContextO9streamingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext/streaming":{"role":"symbol","title":"EncodingContext.streaming","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"streaming"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext\/streaming","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingcontext\/streaming"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions.json new file mode 100644 index 000000000..56226036f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"title":"EncodingOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15EncodingOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/init(allowHevcEncoding:allowOnDemandMetadataBasedKeyframeExtractionForExtensions:isDeinterlaceDoubleRate:deinterlaceMethod:downMixAudioBoost:enableDecodingColorDepth10Hevc:enableDecodingColorDepth10Vp9:enableEnhancedNvdecDecoder:enableFallbackFont:enableHardwareEncoding:enableIntelLowPowerH264HwEncoder:enableIntelLowPowerHevcHwEncoder:enableSubtitleExtraction:enableThrottling:enableTonemapping:enableVppTonemapping:encoderAppPath:encoderAppPathDisplay:encoderPreset:encodingThreadCount:fallbackFontPath:h264Crf:h265Crf:hardwareAccelerationType:hardwareDecodingCodecs:maxMuxingQueueSize:isPreferSystemNativeHwDecoder:throttleDelaySeconds:tonemappingAlgorithm:tonemappingDesat:tonemappingParam:tonemappingPeak:tonemappingRange:tonemappingThreshold:transcodingTempPath:vaapiDevice:vppTonemappingBrightness:vppTonemappingContrast:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/allowHevcEncoding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/allowOnDemandMetadataBasedKeyframeExtractionForExtensions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/deinterlaceMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/downMixAudioBoost","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableDecodingColorDepth10Hevc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableDecodingColorDepth10Vp9","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableEnhancedNvdecDecoder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableFallbackFont","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableHardwareEncoding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableIntelLowPowerH264HwEncoder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableIntelLowPowerHevcHwEncoder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableSubtitleExtraction","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableThrottling","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableTonemapping","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableVppTonemapping","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderAppPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderAppPathDisplay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderPreset","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encodingThreadCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/fallbackFontPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/h264Crf","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/h265Crf","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/hardwareAccelerationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/hardwareDecodingCodecs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/isDeinterlaceDoubleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/isPreferSystemNativeHwDecoder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/maxMuxingQueueSize","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/throttleDelaySeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingAlgorithm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingDesat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingParam","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingPeak","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingRange","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingThreshold","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/transcodingTempPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vaapiDevice","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vppTonemappingBrightness","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vppTonemappingContrast"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/fallbackFontPath":{"role":"symbol","title":"fallbackFontPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fallbackFontPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/fallbackFontPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/fallbackfontpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableDecodingColorDepth10Vp9":{"role":"symbol","title":"enableDecodingColorDepth10Vp9","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDecodingColorDepth10Vp9"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableDecodingColorDepth10Vp9","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enabledecodingcolordepth10vp9"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableTonemapping":{"role":"symbol","title":"enableTonemapping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableTonemapping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enabletonemapping"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableIntelLowPowerH264HwEncoder":{"role":"symbol","title":"enableIntelLowPowerH264HwEncoder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIntelLowPowerH264HwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableIntelLowPowerH264HwEncoder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enableintellowpowerh264hwencoder"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableEnhancedNvdecDecoder":{"role":"symbol","title":"enableEnhancedNvdecDecoder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEnhancedNvdecDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableEnhancedNvdecDecoder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enableenhancednvdecdecoder"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingAlgorithm":{"role":"symbol","title":"tonemappingAlgorithm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingAlgorithm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingAlgorithm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingalgorithm"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/vaapiDevice":{"role":"symbol","title":"vaapiDevice","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vaapiDevice"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vaapiDevice","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/vaapidevice"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/vppTonemappingContrast":{"role":"symbol","title":"vppTonemappingContrast","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vppTonemappingContrast"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vppTonemappingContrast","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/vpptonemappingcontrast"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/h264Crf":{"role":"symbol","title":"h264Crf","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"h264Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/h264Crf","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/h264crf"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/vppTonemappingBrightness":{"role":"symbol","title":"vppTonemappingBrightness","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vppTonemappingBrightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vppTonemappingBrightness","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/vpptonemappingbrightness"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableVppTonemapping":{"role":"symbol","title":"enableVppTonemapping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableVppTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableVppTonemapping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enablevpptonemapping"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/allowHevcEncoding":{"role":"symbol","title":"allowHevcEncoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowHevcEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/allowHevcEncoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/allowhevcencoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/deinterlaceMethod":{"role":"symbol","title":"deinterlaceMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deinterlaceMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/deinterlaceMethod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/deinterlacemethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/h265Crf":{"role":"symbol","title":"h265Crf","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"h265Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/h265Crf","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/h265crf"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableDecodingColorDepth10Hevc":{"role":"symbol","title":"enableDecodingColorDepth10Hevc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDecodingColorDepth10Hevc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableDecodingColorDepth10Hevc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enabledecodingcolordepth10hevc"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableFallbackFont":{"role":"symbol","title":"enableFallbackFont","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFallbackFont"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableFallbackFont","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enablefallbackfont"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingParam":{"role":"symbol","title":"tonemappingParam","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingParam","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingparam"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/transcodingTempPath":{"role":"symbol","title":"transcodingTempPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/transcodingTempPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/transcodingtemppath"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingThreshold":{"role":"symbol","title":"tonemappingThreshold","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingThreshold"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingThreshold","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingthreshold"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingPeak":{"role":"symbol","title":"tonemappingPeak","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingPeak"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingPeak","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingpeak"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/throttleDelaySeconds":{"role":"symbol","title":"throttleDelaySeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"throttleDelaySeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/throttleDelaySeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/throttledelayseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/encoderAppPathDisplay":{"role":"symbol","title":"encoderAppPathDisplay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderAppPathDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the current FFmpeg path being used by the system and displayed on the transcode page."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderAppPathDisplay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/encoderapppathdisplay"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/encodingThreadCount":{"role":"symbol","title":"encodingThreadCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encodingThreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encodingThreadCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/encodingthreadcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableSubtitleExtraction":{"role":"symbol","title":"enableSubtitleExtraction","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitleExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableSubtitleExtraction","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enablesubtitleextraction"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/downMixAudioBoost":{"role":"symbol","title":"downMixAudioBoost","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downMixAudioBoost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/downMixAudioBoost","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/downmixaudioboost"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableHardwareEncoding":{"role":"symbol","title":"enableHardwareEncoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableHardwareEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableHardwareEncoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enablehardwareencoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableThrottling":{"role":"symbol","title":"enableThrottling","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableThrottling"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableThrottling","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enablethrottling"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/isDeinterlaceDoubleRate":{"role":"symbol","title":"isDeinterlaceDoubleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeinterlaceDoubleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/isDeinterlaceDoubleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/isdeinterlacedoublerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingRange":{"role":"symbol","title":"tonemappingRange","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingRange","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingrange"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/maxMuxingQueueSize":{"role":"symbol","title":"maxMuxingQueueSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxMuxingQueueSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/maxMuxingQueueSize","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/maxmuxingqueuesize"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableIntelLowPowerHevcHwEncoder":{"role":"symbol","title":"enableIntelLowPowerHevcHwEncoder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIntelLowPowerHevcHwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableIntelLowPowerHevcHwEncoder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enableintellowpowerhevchwencoder"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/encoderAppPath":{"role":"symbol","title":"encoderAppPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderAppPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the FFmpeg path as set by the user via the UI."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderAppPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/encoderapppath"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/hardwareAccelerationType":{"role":"symbol","title":"hardwareAccelerationType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/hardwareAccelerationType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/hardwareaccelerationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/encoderPreset":{"role":"symbol","title":"encoderPreset","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderPreset","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/encoderpreset"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/hardwareDecodingCodecs":{"role":"symbol","title":"hardwareDecodingCodecs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareDecodingCodecs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/hardwareDecodingCodecs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/hardwaredecodingcodecs"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/allowOnDemandMetadataBasedKeyframeExtractionForExtensions":{"role":"symbol","title":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/allowOnDemandMetadataBasedKeyframeExtractionForExtensions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/allowondemandmetadatabasedkeyframeextractionforextensions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/init(allowHevcEncoding:allowOnDemandMetadataBasedKeyframeExtractionForExtensions:isDeinterlaceDoubleRate:deinterlaceMethod:downMixAudioBoost:enableDecodingColorDepth10Hevc:enableDecodingColorDepth10Vp9:enableEnhancedNvdecDecoder:enableFallbackFont:enableHardwareEncoding:enableIntelLowPowerH264HwEncoder:enableIntelLowPowerHevcHwEncoder:enableSubtitleExtraction:enableThrottling:enableTonemapping:enableVppTonemapping:encoderAppPath:encoderAppPathDisplay:encoderPreset:encodingThreadCount:fallbackFontPath:h264Crf:h265Crf:hardwareAccelerationType:hardwareDecodingCodecs:maxMuxingQueueSize:isPreferSystemNativeHwDecoder:throttleDelaySeconds:tonemappingAlgorithm:tonemappingDesat:tonemappingParam:tonemappingPeak:tonemappingRange:tonemappingThreshold:transcodingTempPath:vaapiDevice:vppTonemappingBrightness:vppTonemappingContrast:)":{"role":"symbol","title":"init(allowHevcEncoding:allowOnDemandMetadataBasedKeyframeExtractionForExtensions:isDeinterlaceDoubleRate:deinterlaceMethod:downMixAudioBoost:enableDecodingColorDepth10Hevc:enableDecodingColorDepth10Vp9:enableEnhancedNvdecDecoder:enableFallbackFont:enableHardwareEncoding:enableIntelLowPowerH264HwEncoder:enableIntelLowPowerHevcHwEncoder:enableSubtitleExtraction:enableThrottling:enableTonemapping:enableVppTonemapping:encoderAppPath:encoderAppPathDisplay:encoderPreset:encodingThreadCount:fallbackFontPath:h264Crf:h265Crf:hardwareAccelerationType:hardwareDecodingCodecs:maxMuxingQueueSize:isPreferSystemNativeHwDecoder:throttleDelaySeconds:tonemappingAlgorithm:tonemappingDesat:tonemappingParam:tonemappingPeak:tonemappingRange:tonemappingThreshold:transcodingTempPath:vaapiDevice:vppTonemappingBrightness:vppTonemappingContrast:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowHevcEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isDeinterlaceDoubleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deinterlaceMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"downMixAudioBoost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDecodingColorDepth10Hevc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDecodingColorDepth10Vp9"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableEnhancedNvdecDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableFallbackFont"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableHardwareEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIntelLowPowerH264HwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIntelLowPowerHevcHwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSubtitleExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableThrottling"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableVppTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderAppPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderAppPathDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encodingThreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fallbackFontPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"h264Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"h265Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hardwareDecodingCodecs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"maxMuxingQueueSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPreferSystemNativeHwDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"throttleDelaySeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingAlgorithm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingDesat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingPeak"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingThreshold"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"vaapiDevice"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"vppTonemappingBrightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"vppTonemappingContrast"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/init(allowHevcEncoding:allowOnDemandMetadataBasedKeyframeExtractionForExtensions:isDeinterlaceDoubleRate:deinterlaceMethod:downMixAudioBoost:enableDecodingColorDepth10Hevc:enableDecodingColorDepth10Vp9:enableEnhancedNvdecDecoder:enableFallbackFont:enableHardwareEncoding:enableIntelLowPowerH264HwEncoder:enableIntelLowPowerHevcHwEncoder:enableSubtitleExtraction:enableThrottling:enableTonemapping:enableVppTonemapping:encoderAppPath:encoderAppPathDisplay:encoderPreset:encodingThreadCount:fallbackFontPath:h264Crf:h265Crf:hardwareAccelerationType:hardwareDecodingCodecs:maxMuxingQueueSize:isPreferSystemNativeHwDecoder:throttleDelaySeconds:tonemappingAlgorithm:tonemappingDesat:tonemappingParam:tonemappingPeak:tonemappingRange:tonemappingThreshold:transcodingTempPath:vaapiDevice:vppTonemappingBrightness:vppTonemappingContrast:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/init(allowhevcencoding:allowondemandmetadatabasedkeyframeextractionforextensions:isdeinterlacedoublerate:deinterlacemethod:downmixaudioboost:enabledecodingcolordepth10hevc:enabledecodingcolordepth10vp9:enableenhancednvdecdecoder:enablefallb-5jx0x"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/isPreferSystemNativeHwDecoder":{"role":"symbol","title":"isPreferSystemNativeHwDecoder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPreferSystemNativeHwDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/isPreferSystemNativeHwDecoder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/isprefersystemnativehwdecoder"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingDesat":{"role":"symbol","title":"tonemappingDesat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingDesat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingDesat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingdesat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/allowhevcencoding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/allowhevcencoding.json new file mode 100644 index 000000000..19b63c9db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/allowhevcencoding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowHevcEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/allowhevcencoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/allowHevcEncoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowHevcEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowHevcEncoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV09allowHevcC0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/allowHevcEncoding":{"role":"symbol","title":"allowHevcEncoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowHevcEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/allowHevcEncoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/allowhevcencoding"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/allowondemandmetadatabasedkeyframeextractionforextensions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/allowondemandmetadatabasedkeyframeextractionforextensions.json new file mode 100644 index 000000000..7d7860916 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/allowondemandmetadatabasedkeyframeextractionforextensions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/allowondemandmetadatabasedkeyframeextractionforextensions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/allowOnDemandMetadataBasedKeyframeExtractionForExtensions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV57allowOnDemandMetadataBasedKeyframeExtractionForExtensionsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/allowOnDemandMetadataBasedKeyframeExtractionForExtensions":{"role":"symbol","title":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/allowOnDemandMetadataBasedKeyframeExtractionForExtensions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/allowondemandmetadatabasedkeyframeextractionforextensions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/deinterlacemethod.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/deinterlacemethod.json new file mode 100644 index 000000000..167c5e695 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/deinterlacemethod.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deinterlaceMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/deinterlacemethod"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/deinterlaceMethod","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deinterlaceMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deinterlaceMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV17deinterlaceMethodSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/deinterlaceMethod":{"role":"symbol","title":"deinterlaceMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deinterlaceMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/deinterlaceMethod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/deinterlacemethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/downmixaudioboost.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/downmixaudioboost.json new file mode 100644 index 000000000..39628980e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/downmixaudioboost.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downMixAudioBoost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/downmixaudioboost"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/downMixAudioBoost","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downMixAudioBoost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"downMixAudioBoost","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV17downMixAudioBoostSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/downMixAudioBoost":{"role":"symbol","title":"downMixAudioBoost","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downMixAudioBoost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/downMixAudioBoost","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/downmixaudioboost"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enabledecodingcolordepth10hevc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enabledecodingcolordepth10hevc.json new file mode 100644 index 000000000..9e39255f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enabledecodingcolordepth10hevc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDecodingColorDepth10Hevc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enabledecodingcolordepth10hevc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableDecodingColorDepth10Hevc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDecodingColorDepth10Hevc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDecodingColorDepth10Hevc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV30enableDecodingColorDepth10HevcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableDecodingColorDepth10Hevc":{"role":"symbol","title":"enableDecodingColorDepth10Hevc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDecodingColorDepth10Hevc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableDecodingColorDepth10Hevc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enabledecodingcolordepth10hevc"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enabledecodingcolordepth10vp9.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enabledecodingcolordepth10vp9.json new file mode 100644 index 000000000..3c706f6ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enabledecodingcolordepth10vp9.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDecodingColorDepth10Vp9"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enabledecodingcolordepth10vp9"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableDecodingColorDepth10Vp9","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDecodingColorDepth10Vp9"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDecodingColorDepth10Vp9","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV29enableDecodingColorDepth10Vp9SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableDecodingColorDepth10Vp9":{"role":"symbol","title":"enableDecodingColorDepth10Vp9","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDecodingColorDepth10Vp9"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableDecodingColorDepth10Vp9","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enabledecodingcolordepth10vp9"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enableenhancednvdecdecoder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enableenhancednvdecdecoder.json new file mode 100644 index 000000000..edf5ecece --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enableenhancednvdecdecoder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEnhancedNvdecDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enableenhancednvdecdecoder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableEnhancedNvdecDecoder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEnhancedNvdecDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableEnhancedNvdecDecoder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV26enableEnhancedNvdecDecoderSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableEnhancedNvdecDecoder":{"role":"symbol","title":"enableEnhancedNvdecDecoder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEnhancedNvdecDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableEnhancedNvdecDecoder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enableenhancednvdecdecoder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablefallbackfont.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablefallbackfont.json new file mode 100644 index 000000000..d81899c54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablefallbackfont.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFallbackFont"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enablefallbackfont"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableFallbackFont","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFallbackFont"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableFallbackFont","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV18enableFallbackFontSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableFallbackFont":{"role":"symbol","title":"enableFallbackFont","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFallbackFont"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableFallbackFont","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enablefallbackfont"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablehardwareencoding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablehardwareencoding.json new file mode 100644 index 000000000..9b2260b44 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablehardwareencoding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableHardwareEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enablehardwareencoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableHardwareEncoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableHardwareEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableHardwareEncoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV014enableHardwareC0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableHardwareEncoding":{"role":"symbol","title":"enableHardwareEncoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableHardwareEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableHardwareEncoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enablehardwareencoding"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enableintellowpowerh264hwencoder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enableintellowpowerh264hwencoder.json new file mode 100644 index 000000000..10b7436a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enableintellowpowerh264hwencoder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIntelLowPowerH264HwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enableintellowpowerh264hwencoder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableIntelLowPowerH264HwEncoder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIntelLowPowerH264HwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableIntelLowPowerH264HwEncoder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV32enableIntelLowPowerH264HwEncoderSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableIntelLowPowerH264HwEncoder":{"role":"symbol","title":"enableIntelLowPowerH264HwEncoder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIntelLowPowerH264HwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableIntelLowPowerH264HwEncoder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enableintellowpowerh264hwencoder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enableintellowpowerhevchwencoder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enableintellowpowerhevchwencoder.json new file mode 100644 index 000000000..9ca05ebe9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enableintellowpowerhevchwencoder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIntelLowPowerHevcHwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enableintellowpowerhevchwencoder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableIntelLowPowerHevcHwEncoder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIntelLowPowerHevcHwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableIntelLowPowerHevcHwEncoder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV32enableIntelLowPowerHevcHwEncoderSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableIntelLowPowerHevcHwEncoder":{"role":"symbol","title":"enableIntelLowPowerHevcHwEncoder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIntelLowPowerHevcHwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableIntelLowPowerHevcHwEncoder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enableintellowpowerhevchwencoder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablesubtitleextraction.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablesubtitleextraction.json new file mode 100644 index 000000000..256638601 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablesubtitleextraction.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitleExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enablesubtitleextraction"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableSubtitleExtraction","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitleExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableSubtitleExtraction","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV24enableSubtitleExtractionSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableSubtitleExtraction":{"role":"symbol","title":"enableSubtitleExtraction","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitleExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableSubtitleExtraction","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enablesubtitleextraction"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablethrottling.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablethrottling.json new file mode 100644 index 000000000..9023cf29b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablethrottling.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableThrottling"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enablethrottling"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableThrottling","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableThrottling"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableThrottling","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV16enableThrottlingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableThrottling":{"role":"symbol","title":"enableThrottling","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableThrottling"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableThrottling","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enablethrottling"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enabletonemapping.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enabletonemapping.json new file mode 100644 index 000000000..a0729858f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enabletonemapping.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enabletonemapping"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableTonemapping","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTonemapping","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV17enableTonemappingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableTonemapping":{"role":"symbol","title":"enableTonemapping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableTonemapping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enabletonemapping"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablevpptonemapping.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablevpptonemapping.json new file mode 100644 index 000000000..2ac807607 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/enablevpptonemapping.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableVppTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/enablevpptonemapping"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableVppTonemapping","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableVppTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableVppTonemapping","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV20enableVppTonemappingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/enableVppTonemapping":{"role":"symbol","title":"enableVppTonemapping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableVppTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/enableVppTonemapping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/enablevpptonemapping"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encoderapppath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encoderapppath.json new file mode 100644 index 000000000..76aef0181 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encoderapppath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderAppPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/encoderapppath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderAppPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the FFmpeg path as set by the user via the UI."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderAppPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"encoderAppPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV14encoderAppPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/encoderAppPath":{"role":"symbol","title":"encoderAppPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderAppPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the FFmpeg path as set by the user via the UI."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderAppPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/encoderapppath"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encoderapppathdisplay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encoderapppathdisplay.json new file mode 100644 index 000000000..dfe07fd5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encoderapppathdisplay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderAppPathDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/encoderapppathdisplay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderAppPathDisplay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the current FFmpeg path being used by the system and displayed on the transcode page."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderAppPathDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"encoderAppPathDisplay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV21encoderAppPathDisplaySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/encoderAppPathDisplay":{"role":"symbol","title":"encoderAppPathDisplay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderAppPathDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the current FFmpeg path being used by the system and displayed on the transcode page."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderAppPathDisplay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/encoderapppathdisplay"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encoderpreset.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encoderpreset.json new file mode 100644 index 000000000..8b772163a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encoderpreset.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/encoderpreset"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderPreset","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"encoderPreset","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV13encoderPresetSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/encoderPreset":{"role":"symbol","title":"encoderPreset","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encoderPreset","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/encoderpreset"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encodingthreadcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encodingthreadcount.json new file mode 100644 index 000000000..10d5322cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/encodingthreadcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encodingThreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/encodingthreadcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encodingThreadCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encodingThreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"encodingThreadCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV19encodingThreadCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/encodingThreadCount":{"role":"symbol","title":"encodingThreadCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encodingThreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/encodingThreadCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/encodingthreadcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/fallbackfontpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/fallbackfontpath.json new file mode 100644 index 000000000..841f00a2e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/fallbackfontpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fallbackFontPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/fallbackfontpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/fallbackFontPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fallbackFontPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"fallbackFontPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV16fallbackFontPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/fallbackFontPath":{"role":"symbol","title":"fallbackFontPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fallbackFontPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/fallbackFontPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/fallbackfontpath"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/h264crf.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/h264crf.json new file mode 100644 index 000000000..f183318b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/h264crf.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"h264Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/h264crf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/h264Crf","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"h264Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"h264Crf","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV7h264Crfs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/h264Crf":{"role":"symbol","title":"h264Crf","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"h264Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/h264Crf","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/h264crf"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/h265crf.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/h265crf.json new file mode 100644 index 000000000..399d82fe9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/h265crf.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"h265Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/h265crf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/h265Crf","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"h265Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"h265Crf","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV7h265Crfs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/h265Crf":{"role":"symbol","title":"h265Crf","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"h265Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/h265Crf","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/h265crf"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/hardwareaccelerationtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/hardwareaccelerationtype.json new file mode 100644 index 000000000..be380d0a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/hardwareaccelerationtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/hardwareaccelerationtype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/hardwareAccelerationType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"hardwareAccelerationType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV24hardwareAccelerationTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/hardwareAccelerationType":{"role":"symbol","title":"hardwareAccelerationType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/hardwareAccelerationType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/hardwareaccelerationtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/hardwaredecodingcodecs.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/hardwaredecodingcodecs.json new file mode 100644 index 000000000..ab40d386a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/hardwaredecodingcodecs.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareDecodingCodecs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/hardwaredecodingcodecs"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/hardwareDecodingCodecs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareDecodingCodecs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"hardwareDecodingCodecs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV22hardwareDecodingCodecsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/hardwareDecodingCodecs":{"role":"symbol","title":"hardwareDecodingCodecs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareDecodingCodecs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/hardwareDecodingCodecs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/hardwaredecodingcodecs"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/init(allowhevcencoding:allowondemandmetadatabasedkeyframeextractionforextensions:isdeinterlacedoublerate:deinterlacemethod:downmixaudioboost:enabledecodingcolordepth10hevc:enabledecodingcolordepth10vp9:enableenhancednvdecdecoder:enablefallb-5jx0x.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/init(allowhevcencoding:allowondemandmetadatabasedkeyframeextractionforextensions:isdeinterlacedoublerate:deinterlacemethod:downmixaudioboost:enabledecodingcolordepth10hevc:enabledecodingcolordepth10vp9:enableenhancednvdecdecoder:enablefallb-5jx0x.json new file mode 100644 index 000000000..dc365acc0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/init(allowhevcencoding:allowondemandmetadatabasedkeyframeextractionforextensions:isdeinterlacedoublerate:deinterlacemethod:downmixaudioboost:enabledecodingcolordepth10hevc:enabledecodingcolordepth10vp9:enableenhancednvdecdecoder:enablefallb-5jx0x.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowHevcEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isDeinterlaceDoubleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deinterlaceMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"downMixAudioBoost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableDecodingColorDepth10Hevc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableDecodingColorDepth10Vp9"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableEnhancedNvdecDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableFallbackFont"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableHardwareEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableIntelLowPowerH264HwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableIntelLowPowerHevcHwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableSubtitleExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableThrottling"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableVppTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"encoderAppPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"encoderAppPathDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"encoderPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"encodingThreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fallbackFontPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"h264Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"h265Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hardwareDecodingCodecs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"maxMuxingQueueSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPreferSystemNativeHwDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"throttleDelaySeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tonemappingAlgorithm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tonemappingDesat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tonemappingParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tonemappingPeak"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tonemappingRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tonemappingThreshold"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"vaapiDevice"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"vppTonemappingBrightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"vppTonemappingContrast"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/init(allowhevcencoding:allowondemandmetadatabasedkeyframeextractionforextensions:isdeinterlacedoublerate:deinterlacemethod:downmixaudioboost:enabledecodingcolordepth10hevc:enabledecodingcolordepth10vp9:enableenhancednvdecdecoder:enablefallb-5jx0x"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/init(allowHevcEncoding:allowOnDemandMetadataBasedKeyframeExtractionForExtensions:isDeinterlaceDoubleRate:deinterlaceMethod:downMixAudioBoost:enableDecodingColorDepth10Hevc:enableDecodingColorDepth10Vp9:enableEnhancedNvdecDecoder:enableFallbackFont:enableHardwareEncoding:enableIntelLowPowerH264HwEncoder:enableIntelLowPowerHevcHwEncoder:enableSubtitleExtraction:enableThrottling:enableTonemapping:enableVppTonemapping:encoderAppPath:encoderAppPathDisplay:encoderPreset:encodingThreadCount:fallbackFontPath:h264Crf:h265Crf:hardwareAccelerationType:hardwareDecodingCodecs:maxMuxingQueueSize:isPreferSystemNativeHwDecoder:throttleDelaySeconds:tonemappingAlgorithm:tonemappingDesat:tonemappingParam:tonemappingPeak:tonemappingRange:tonemappingThreshold:transcodingTempPath:vaapiDevice:vppTonemappingBrightness:vppTonemappingContrast:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowHevcEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isDeinterlaceDoubleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deinterlaceMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"downMixAudioBoost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDecodingColorDepth10Hevc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDecodingColorDepth10Vp9"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableEnhancedNvdecDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableFallbackFont"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableHardwareEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIntelLowPowerH264HwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIntelLowPowerHevcHwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSubtitleExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableThrottling"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableVppTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderAppPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderAppPathDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encodingThreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fallbackFontPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"h264Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"h265Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hardwareDecodingCodecs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"maxMuxingQueueSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPreferSystemNativeHwDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"throttleDelaySeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingAlgorithm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingDesat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingPeak"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingThreshold"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"vaapiDevice"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"vppTonemappingBrightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"vppTonemappingContrast"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?)"}],"title":"init(allowHevcEncoding:allowOnDemandMetadataBasedKeyframeExtractionForExtensions:isDeinterlaceDoubleRate:deinterlaceMethod:downMixAudioBoost:enableDecodingColorDepth10Hevc:enableDecodingColorDepth10Vp9:enableEnhancedNvdecDecoder:enableFallbackFont:enableHardwareEncoding:enableIntelLowPowerH264HwEncoder:enableIntelLowPowerHevcHwEncoder:enableSubtitleExtraction:enableThrottling:enableTonemapping:enableVppTonemapping:encoderAppPath:encoderAppPathDisplay:encoderPreset:encodingThreadCount:fallbackFontPath:h264Crf:h265Crf:hardwareAccelerationType:hardwareDecodingCodecs:maxMuxingQueueSize:isPreferSystemNativeHwDecoder:throttleDelaySeconds:tonemappingAlgorithm:tonemappingDesat:tonemappingParam:tonemappingPeak:tonemappingRange:tonemappingThreshold:transcodingTempPath:vaapiDevice:vppTonemappingBrightness:vppTonemappingContrast:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15EncodingOptionsV09allowHevcC00E52OnDemandMetadataBasedKeyframeExtractionForExtensions23isDeinterlaceDoubleRate17deinterlaceMethod17downMixAudioBoost026enableDecodingColorDepth10F00yZ15ColorDepth10Vp90Y20EnhancedNvdecDecoder0Y12FallbackFont0y8HardwareC00Y26IntelLowPowerH264HwEncoder0y13IntelLowPowerF9HwEncoder0y8SubtitleL00Y10Throttling0Y11Tonemapping0Y14VppTonemapping14encoderAppPath21encoderAppPathDisplay13encoderPreset19encodingThreadCount16fallbackFontPath7h264Crf7h265Crf24hardwareAccelerationType08hardwareZ6Codecs18maxMuxingQueueSize0O27PreferSystemNativeHwDecoder20throttleDelaySeconds20tonemappingAlgorithm16tonemappingDesat16tonemappingParam15tonemappingPeak16tonemappingRange20tonemappingThreshold19transcodingTempPath11vaapiDevice24vppTonemappingBrightness22vppTonemappingContrastACSbSg_SaySSGSgA14_SSSgSdSgA14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A17_A17_A17_s5Int32VSgA17_A21_A21_A17_A16_A21_A14_A21_A17_A18_A18_A18_A17_A18_A17_A17_A18_A18_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/init(allowHevcEncoding:allowOnDemandMetadataBasedKeyframeExtractionForExtensions:isDeinterlaceDoubleRate:deinterlaceMethod:downMixAudioBoost:enableDecodingColorDepth10Hevc:enableDecodingColorDepth10Vp9:enableEnhancedNvdecDecoder:enableFallbackFont:enableHardwareEncoding:enableIntelLowPowerH264HwEncoder:enableIntelLowPowerHevcHwEncoder:enableSubtitleExtraction:enableThrottling:enableTonemapping:enableVppTonemapping:encoderAppPath:encoderAppPathDisplay:encoderPreset:encodingThreadCount:fallbackFontPath:h264Crf:h265Crf:hardwareAccelerationType:hardwareDecodingCodecs:maxMuxingQueueSize:isPreferSystemNativeHwDecoder:throttleDelaySeconds:tonemappingAlgorithm:tonemappingDesat:tonemappingParam:tonemappingPeak:tonemappingRange:tonemappingThreshold:transcodingTempPath:vaapiDevice:vppTonemappingBrightness:vppTonemappingContrast:)":{"role":"symbol","title":"init(allowHevcEncoding:allowOnDemandMetadataBasedKeyframeExtractionForExtensions:isDeinterlaceDoubleRate:deinterlaceMethod:downMixAudioBoost:enableDecodingColorDepth10Hevc:enableDecodingColorDepth10Vp9:enableEnhancedNvdecDecoder:enableFallbackFont:enableHardwareEncoding:enableIntelLowPowerH264HwEncoder:enableIntelLowPowerHevcHwEncoder:enableSubtitleExtraction:enableThrottling:enableTonemapping:enableVppTonemapping:encoderAppPath:encoderAppPathDisplay:encoderPreset:encodingThreadCount:fallbackFontPath:h264Crf:h265Crf:hardwareAccelerationType:hardwareDecodingCodecs:maxMuxingQueueSize:isPreferSystemNativeHwDecoder:throttleDelaySeconds:tonemappingAlgorithm:tonemappingDesat:tonemappingParam:tonemappingPeak:tonemappingRange:tonemappingThreshold:transcodingTempPath:vaapiDevice:vppTonemappingBrightness:vppTonemappingContrast:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowHevcEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowOnDemandMetadataBasedKeyframeExtractionForExtensions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isDeinterlaceDoubleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deinterlaceMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"downMixAudioBoost"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDecodingColorDepth10Hevc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDecodingColorDepth10Vp9"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableEnhancedNvdecDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableFallbackFont"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableHardwareEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIntelLowPowerH264HwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIntelLowPowerHevcHwEncoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSubtitleExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableThrottling"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableVppTonemapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderAppPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderAppPathDisplay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encodingThreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fallbackFontPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"h264Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"h265Crf"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hardwareDecodingCodecs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"maxMuxingQueueSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPreferSystemNativeHwDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"throttleDelaySeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingAlgorithm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingDesat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingPeak"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tonemappingThreshold"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"vaapiDevice"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"vppTonemappingBrightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"vppTonemappingContrast"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/init(allowHevcEncoding:allowOnDemandMetadataBasedKeyframeExtractionForExtensions:isDeinterlaceDoubleRate:deinterlaceMethod:downMixAudioBoost:enableDecodingColorDepth10Hevc:enableDecodingColorDepth10Vp9:enableEnhancedNvdecDecoder:enableFallbackFont:enableHardwareEncoding:enableIntelLowPowerH264HwEncoder:enableIntelLowPowerHevcHwEncoder:enableSubtitleExtraction:enableThrottling:enableTonemapping:enableVppTonemapping:encoderAppPath:encoderAppPathDisplay:encoderPreset:encodingThreadCount:fallbackFontPath:h264Crf:h265Crf:hardwareAccelerationType:hardwareDecodingCodecs:maxMuxingQueueSize:isPreferSystemNativeHwDecoder:throttleDelaySeconds:tonemappingAlgorithm:tonemappingDesat:tonemappingParam:tonemappingPeak:tonemappingRange:tonemappingThreshold:transcodingTempPath:vaapiDevice:vppTonemappingBrightness:vppTonemappingContrast:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/init(allowhevcencoding:allowondemandmetadatabasedkeyframeextractionforextensions:isdeinterlacedoublerate:deinterlacemethod:downmixaudioboost:enabledecodingcolordepth10hevc:enabledecodingcolordepth10vp9:enableenhancednvdecdecoder:enablefallb-5jx0x"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/init(from:).json new file mode 100644 index 000000000..feb0b3f8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15EncodingOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/isdeinterlacedoublerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/isdeinterlacedoublerate.json new file mode 100644 index 000000000..91c516bad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/isdeinterlacedoublerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeinterlaceDoubleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/isdeinterlacedoublerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/isDeinterlaceDoubleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeinterlaceDoubleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeinterlaceDoubleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV23isDeinterlaceDoubleRateSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/isDeinterlaceDoubleRate":{"role":"symbol","title":"isDeinterlaceDoubleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeinterlaceDoubleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/isDeinterlaceDoubleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/isdeinterlacedoublerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/isprefersystemnativehwdecoder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/isprefersystemnativehwdecoder.json new file mode 100644 index 000000000..6542072ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/isprefersystemnativehwdecoder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPreferSystemNativeHwDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/isprefersystemnativehwdecoder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/isPreferSystemNativeHwDecoder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPreferSystemNativeHwDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPreferSystemNativeHwDecoder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV29isPreferSystemNativeHwDecoderSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/isPreferSystemNativeHwDecoder":{"role":"symbol","title":"isPreferSystemNativeHwDecoder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPreferSystemNativeHwDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/isPreferSystemNativeHwDecoder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/isprefersystemnativehwdecoder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/maxmuxingqueuesize.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/maxmuxingqueuesize.json new file mode 100644 index 000000000..badb4af84 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/maxmuxingqueuesize.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxMuxingQueueSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/maxmuxingqueuesize"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/maxMuxingQueueSize","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxMuxingQueueSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxMuxingQueueSize","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV18maxMuxingQueueSizes5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/maxMuxingQueueSize":{"role":"symbol","title":"maxMuxingQueueSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxMuxingQueueSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/maxMuxingQueueSize","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/maxmuxingqueuesize"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/throttledelayseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/throttledelayseconds.json new file mode 100644 index 000000000..40befb484 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/throttledelayseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"throttleDelaySeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/throttledelayseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/throttleDelaySeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"throttleDelaySeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"throttleDelaySeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV20throttleDelaySecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/throttleDelaySeconds":{"role":"symbol","title":"throttleDelaySeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"throttleDelaySeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/throttleDelaySeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/throttledelayseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingalgorithm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingalgorithm.json new file mode 100644 index 000000000..08082cee0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingalgorithm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingAlgorithm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/tonemappingalgorithm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingAlgorithm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingAlgorithm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tonemappingAlgorithm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV20tonemappingAlgorithmSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingAlgorithm":{"role":"symbol","title":"tonemappingAlgorithm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingAlgorithm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingAlgorithm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingalgorithm"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingdesat.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingdesat.json new file mode 100644 index 000000000..6346cd191 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingdesat.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingDesat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/tonemappingdesat"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingDesat","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingDesat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"tonemappingDesat","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV16tonemappingDesatSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingDesat":{"role":"symbol","title":"tonemappingDesat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingDesat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingDesat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingdesat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingparam.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingparam.json new file mode 100644 index 000000000..a9e14660a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingparam.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/tonemappingparam"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingParam","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"tonemappingParam","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV16tonemappingParamSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingParam":{"role":"symbol","title":"tonemappingParam","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingParam","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingparam"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingpeak.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingpeak.json new file mode 100644 index 000000000..7b9d435ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingpeak.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingPeak"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/tonemappingpeak"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingPeak","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingPeak"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"tonemappingPeak","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV15tonemappingPeakSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingPeak":{"role":"symbol","title":"tonemappingPeak","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingPeak"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingPeak","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingpeak"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingrange.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingrange.json new file mode 100644 index 000000000..b0bbd334a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingrange.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/tonemappingrange"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingRange","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tonemappingRange","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV16tonemappingRangeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingRange":{"role":"symbol","title":"tonemappingRange","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingRange","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingrange"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingthreshold.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingthreshold.json new file mode 100644 index 000000000..8e2bad4ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/tonemappingthreshold.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingThreshold"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/tonemappingthreshold"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingThreshold","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingThreshold"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"tonemappingThreshold","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV20tonemappingThresholdSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/tonemappingThreshold":{"role":"symbol","title":"tonemappingThreshold","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tonemappingThreshold"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/tonemappingThreshold","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/tonemappingthreshold"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/transcodingtemppath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/transcodingtemppath.json new file mode 100644 index 000000000..2542920a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/transcodingtemppath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/transcodingtemppath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/transcodingTempPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodingTempPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV19transcodingTempPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/transcodingTempPath":{"role":"symbol","title":"transcodingTempPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/transcodingTempPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/transcodingtemppath"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/vaapidevice.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/vaapidevice.json new file mode 100644 index 000000000..ee1090b0c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/vaapidevice.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vaapiDevice"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/vaapidevice"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vaapiDevice","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vaapiDevice"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"vaapiDevice","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV11vaapiDeviceSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/vaapiDevice":{"role":"symbol","title":"vaapiDevice","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vaapiDevice"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vaapiDevice","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/vaapidevice"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/vpptonemappingbrightness.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/vpptonemappingbrightness.json new file mode 100644 index 000000000..ecee5eb4d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/vpptonemappingbrightness.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vppTonemappingBrightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/vpptonemappingbrightness"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vppTonemappingBrightness","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vppTonemappingBrightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"vppTonemappingBrightness","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV24vppTonemappingBrightnessSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/vppTonemappingBrightness":{"role":"symbol","title":"vppTonemappingBrightness","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vppTonemappingBrightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vppTonemappingBrightness","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/vpptonemappingbrightness"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/vpptonemappingcontrast.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/vpptonemappingcontrast.json new file mode 100644 index 000000000..4f1138396 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/encodingoptions/vpptonemappingcontrast.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vppTonemappingContrast"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/encodingoptions\/vpptonemappingcontrast"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vppTonemappingContrast","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vppTonemappingContrast"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"vppTonemappingContrast","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15EncodingOptionsV22vppTonemappingContrastSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions":{"role":"symbol","title":"EncodingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingOptions"}],"url":"\/documentation\/jellyfinapi\/encodingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingOptions/vppTonemappingContrast":{"role":"symbol","title":"vppTonemappingContrast","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"vppTonemappingContrast"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingOptions\/vppTonemappingContrast","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/encodingoptions\/vpptonemappingcontrast"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo.json new file mode 100644 index 000000000..49bab9d24 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EndPointInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/endpointinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EndPointInfo"}],"title":"EndPointInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI12EndPointInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"EndPointInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/init(isInNetwork:isLocal:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/isInNetwork","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/isLocal"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo/isInNetwork":{"role":"symbol","title":"isInNetwork","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInNetwork"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/isInNetwork","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/endpointinfo\/isinnetwork"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo":{"role":"symbol","title":"EndPointInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EndPointInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EndPointInfo"}],"url":"\/documentation\/jellyfinapi\/endpointinfo"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo/init(isInNetwork:isLocal:)":{"role":"symbol","title":"init(isInNetwork:isLocal:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isInNetwork"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/init(isInNetwork:isLocal:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/endpointinfo\/init(isinnetwork:islocal:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/endpointinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo/isLocal":{"role":"symbol","title":"isLocal","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/isLocal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/endpointinfo\/islocal"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/init(from:).json new file mode 100644 index 000000000..f9f014c9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/endpointinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12EndPointInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo":{"role":"symbol","title":"EndPointInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EndPointInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EndPointInfo"}],"url":"\/documentation\/jellyfinapi\/endpointinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/endpointinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/init(isinnetwork:islocal:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/init(isinnetwork:islocal:).json new file mode 100644 index 000000000..d65e11e19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/init(isinnetwork:islocal:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isInNetwork"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isLocal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/endpointinfo\/init(isinnetwork:islocal:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/init(isInNetwork:isLocal:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isInNetwork"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(isInNetwork:isLocal:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12EndPointInfoV11isInNetwork0F5LocalACSbSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo/init(isInNetwork:isLocal:)":{"role":"symbol","title":"init(isInNetwork:isLocal:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isInNetwork"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/init(isInNetwork:isLocal:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/endpointinfo\/init(isinnetwork:islocal:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo":{"role":"symbol","title":"EndPointInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EndPointInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EndPointInfo"}],"url":"\/documentation\/jellyfinapi\/endpointinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/isinnetwork.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/isinnetwork.json new file mode 100644 index 000000000..60863d229 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/isinnetwork.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInNetwork"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/endpointinfo\/isinnetwork"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/isInNetwork","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInNetwork"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isInNetwork","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12EndPointInfoV11isInNetworkSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo/isInNetwork":{"role":"symbol","title":"isInNetwork","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInNetwork"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/isInNetwork","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/endpointinfo\/isinnetwork"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo":{"role":"symbol","title":"EndPointInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EndPointInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EndPointInfo"}],"url":"\/documentation\/jellyfinapi\/endpointinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/islocal.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/islocal.json new file mode 100644 index 000000000..2bcb662ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/endpointinfo/islocal.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/endpointinfo\/islocal"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/isLocal","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isLocal","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12EndPointInfoV7isLocalSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo":{"role":"symbol","title":"EndPointInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EndPointInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EndPointInfo"}],"url":"\/documentation\/jellyfinapi\/endpointinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo/isLocal":{"role":"symbol","title":"isLocal","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo\/isLocal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/endpointinfo\/islocal"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo.json new file mode 100644 index 000000000..331056ac7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"title":"ExternalIDInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14ExternalIDInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/init(key:name:type:urlFormatString:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/key","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/urlFormatString"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/urlFormatString":{"role":"symbol","title":"urlFormatString","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"urlFormatString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the URL format string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/urlFormatString","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/urlformatstring"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/init(key:name:type:urlFormatString:)":{"role":"symbol","title":"init(key:name:type:urlFormatString:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ExternalIDMediaType","preciseIdentifier":"s:11JellyfinAPI19ExternalIDMediaTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"urlFormatString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/init(key:name:type:urlFormatString:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/init(key:name:type:urlformatstring:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/key":{"role":"symbol","title":"key","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the unique key for this id. This key should be unique across all providers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/key","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/key"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ExternalIDMediaType","preciseIdentifier":"s:11JellyfinAPI19ExternalIDMediaTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the specific media type for this id. This is used to distinguish between the different"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/init(from:).json new file mode 100644 index 000000000..c90933f1b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14ExternalIDInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/init(key:name:type:urlformatstring:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/init(key:name:type:urlformatstring:).json new file mode 100644 index 000000000..b41362aa8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/init(key:name:type:urlformatstring:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","preciseIdentifier":"s:11JellyfinAPI19ExternalIDMediaTypeO","text":"ExternalIDMediaType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"urlFormatString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidinfo\/init(key:name:type:urlformatstring:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/init(key:name:type:urlFormatString:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ExternalIDMediaType","preciseIdentifier":"s:11JellyfinAPI19ExternalIDMediaTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"urlFormatString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(key:name:type:urlFormatString:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14ExternalIDInfoV3key4name4type15urlFormatStringACSSSg_AhA0C11IDMediaTypeOSgAHtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/init(key:name:type:urlFormatString:)":{"role":"symbol","title":"init(key:name:type:urlFormatString:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ExternalIDMediaType","preciseIdentifier":"s:11JellyfinAPI19ExternalIDMediaTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"urlFormatString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/init(key:name:type:urlFormatString:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/init(key:name:type:urlformatstring:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/key.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/key.json new file mode 100644 index 000000000..951d17041 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/key.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidinfo\/key"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/key","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the unique key for this id. This key should be unique across all providers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"key","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14ExternalIDInfoV3keySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/key":{"role":"symbol","title":"key","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the unique key for this id. This key should be unique across all providers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/key","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/key"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/name.json new file mode 100644 index 000000000..6c2a15936 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14ExternalIDInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/type.json new file mode 100644 index 000000000..cc0bca6b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","preciseIdentifier":"s:11JellyfinAPI19ExternalIDMediaTypeO","text":"ExternalIDMediaType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"external id types for providers with multiple ids."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"A null value indicates there is no specific media type associated with the external id, or this is the"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"default id for the external provider so there is no need to specify a type."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidinfo\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the specific media type for this id. This is used to distinguish between the different"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ExternalIDMediaType","preciseIdentifier":"s:11JellyfinAPI19ExternalIDMediaTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14ExternalIDInfoV4typeAA0C11IDMediaTypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ExternalIDMediaType","preciseIdentifier":"s:11JellyfinAPI19ExternalIDMediaTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the specific media type for this id. This is used to distinguish between the different"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/urlformatstring.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/urlformatstring.json new file mode 100644 index 000000000..10b00faf7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidinfo/urlformatstring.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"urlFormatString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidinfo\/urlformatstring"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/urlFormatString","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the URL format string."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"urlFormatString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"urlFormatString","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14ExternalIDInfoV15urlFormatStringSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo/urlFormatString":{"role":"symbol","title":"urlFormatString","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"urlFormatString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the URL format string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo\/urlFormatString","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidinfo\/urlformatstring"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype.json new file mode 100644 index 000000000..9b3e86459 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"title":"ExternalIDMediaType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/album","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/albumArtist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/artist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/boxSet","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/episode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/movie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/otherArtist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/person","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/releaseGroup","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/season","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/series","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/track"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/episode":{"role":"symbol","title":"ExternalIDMediaType.episode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/episode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/episode"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/track":{"role":"symbol","title":"ExternalIDMediaType.track","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/track","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/track"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/movie":{"role":"symbol","title":"ExternalIDMediaType.movie","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/movie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/movie"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/releaseGroup":{"role":"symbol","title":"ExternalIDMediaType.releaseGroup","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"releaseGroup"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/releaseGroup","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/releasegroup"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/person":{"role":"symbol","title":"ExternalIDMediaType.person","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/person"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/albumArtist":{"role":"symbol","title":"ExternalIDMediaType.albumArtist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/albumArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/albumartist"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/series":{"role":"symbol","title":"ExternalIDMediaType.series","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/series","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/series"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/album":{"role":"symbol","title":"ExternalIDMediaType.album","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/album","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/album"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/otherArtist":{"role":"symbol","title":"ExternalIDMediaType.otherArtist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"otherArtist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/otherArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/otherartist"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/season":{"role":"symbol","title":"ExternalIDMediaType.season","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/season","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/season"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/artist":{"role":"symbol","title":"ExternalIDMediaType.artist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"artist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/artist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/artist"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/boxSet":{"role":"symbol","title":"ExternalIDMediaType.boxSet","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSet"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/boxSet","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/boxset"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/!=(_:_:).json new file mode 100644 index 000000000..a98234ac6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI19ExternalIDMediaTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/album.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/album.json new file mode 100644 index 000000000..d194a7edc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/album.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/album"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/album","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"}],"title":"ExternalIDMediaType.album","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO5albumyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/album":{"role":"symbol","title":"ExternalIDMediaType.album","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/album","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/album"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/albumartist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/albumartist.json new file mode 100644 index 000000000..f87697905 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/albumartist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/albumartist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/albumArtist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"}],"title":"ExternalIDMediaType.albumArtist","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO11albumArtistyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/albumArtist":{"role":"symbol","title":"ExternalIDMediaType.albumArtist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/albumArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/albumartist"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/artist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/artist.json new file mode 100644 index 000000000..bd4953d84 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/artist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"artist"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/artist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/artist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"artist"}],"title":"ExternalIDMediaType.artist","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO6artistyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/artist":{"role":"symbol","title":"ExternalIDMediaType.artist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"artist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/artist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/artist"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/boxset.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/boxset.json new file mode 100644 index 000000000..3e107b495 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/boxset.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSet"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/boxset"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/boxSet","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSet"}],"title":"ExternalIDMediaType.boxSet","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO6boxSetyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/boxSet":{"role":"symbol","title":"ExternalIDMediaType.boxSet","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSet"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/boxSet","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/boxset"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/encode(to:).json new file mode 100644 index 000000000..b7d6e6bac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI19ExternalIDMediaTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/episode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/episode.json new file mode 100644 index 000000000..b2af3d55a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/episode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/episode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/episode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"title":"ExternalIDMediaType.episode","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO7episodeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/episode":{"role":"symbol","title":"ExternalIDMediaType.episode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"episode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/episode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/episode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/equatable-implementations.json new file mode 100644 index 000000000..fabb1f794 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/hash(into:).json new file mode 100644 index 000000000..5a2155e66 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI19ExternalIDMediaTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/hashvalue.json new file mode 100644 index 000000000..4e8a5f6f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI19ExternalIDMediaTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/init(from:).json new file mode 100644 index 000000000..edf296607 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI19ExternalIDMediaTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/init(rawvalue:).json new file mode 100644 index 000000000..2a1daaf5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/movie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/movie.json new file mode 100644 index 000000000..65eb56679 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/movie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/movie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/movie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"title":"ExternalIDMediaType.movie","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO5movieyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/movie":{"role":"symbol","title":"ExternalIDMediaType.movie","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/movie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/movie"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/otherartist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/otherartist.json new file mode 100644 index 000000000..9bba02cc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/otherartist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"otherArtist"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/otherartist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/otherArtist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"otherArtist"}],"title":"ExternalIDMediaType.otherArtist","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO11otherArtistyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/otherArtist":{"role":"symbol","title":"ExternalIDMediaType.otherArtist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"otherArtist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/otherArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/otherartist"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/person.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/person.json new file mode 100644 index 000000000..9b953b51b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/person.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/person"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/person","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"}],"title":"ExternalIDMediaType.person","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO6personyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/person":{"role":"symbol","title":"ExternalIDMediaType.person","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/person"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/rawrepresentable-implementations.json new file mode 100644 index 000000000..259e329ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/releasegroup.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/releasegroup.json new file mode 100644 index 000000000..20edf9499 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/releasegroup.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"releaseGroup"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/releasegroup"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/releaseGroup","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"releaseGroup"}],"title":"ExternalIDMediaType.releaseGroup","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO12releaseGroupyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/releaseGroup":{"role":"symbol","title":"ExternalIDMediaType.releaseGroup","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"releaseGroup"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/releaseGroup","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/releasegroup"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/season.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/season.json new file mode 100644 index 000000000..ee60fa104 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/season.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/season"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/season","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"}],"title":"ExternalIDMediaType.season","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO6seasonyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/season":{"role":"symbol","title":"ExternalIDMediaType.season","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/season","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/season"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/series.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/series.json new file mode 100644 index 000000000..823c6c3f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/series.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/series"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/series","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"title":"ExternalIDMediaType.series","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO6seriesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/series":{"role":"symbol","title":"ExternalIDMediaType.series","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/series","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/series"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/track.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/track.json new file mode 100644 index 000000000..651bd401c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalidmediatype/track.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalidmediatype\/track"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/track","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"}],"title":"ExternalIDMediaType.track","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19ExternalIDMediaTypeO5trackyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType/track":{"role":"symbol","title":"ExternalIDMediaType.track","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType\/track","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalidmediatype\/track"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDMediaType":{"role":"symbol","title":"ExternalIDMediaType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDMediaType"}],"abstract":[{"type":"text","text":"The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDMediaType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDMediaType"}],"url":"\/documentation\/jellyfinapi\/externalidmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl.json new file mode 100644 index 000000000..f2ad6b2c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalURL"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalurl"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalURL"}],"title":"ExternalURL","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11ExternalURLV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ExternalURL"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/init(name:url:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/url"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalurl\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL/init(name:url:)":{"role":"symbol","title":"init(name:url:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/init(name:url:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalurl\/init(name:url:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalurl\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalurl\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL":{"role":"symbol","title":"ExternalURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalURL"}],"url":"\/documentation\/jellyfinapi\/externalurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/init(from:).json new file mode 100644 index 000000000..61d7e27b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalurl\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11ExternalURLV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL":{"role":"symbol","title":"ExternalURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalURL"}],"url":"\/documentation\/jellyfinapi\/externalurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalurl\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/init(name:url:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/init(name:url:).json new file mode 100644 index 000000000..c17035db0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/init(name:url:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalurl\/init(name:url:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/init(name:url:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(name:url:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11ExternalURLV4name3urlACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL/init(name:url:)":{"role":"symbol","title":"init(name:url:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/init(name:url:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalurl\/init(name:url:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL":{"role":"symbol","title":"ExternalURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalURL"}],"url":"\/documentation\/jellyfinapi\/externalurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/name.json new file mode 100644 index 000000000..373fd0ce9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalurl\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11ExternalURLV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalurl\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL":{"role":"symbol","title":"ExternalURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalURL"}],"url":"\/documentation\/jellyfinapi\/externalurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/url.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/url.json new file mode 100644 index 000000000..cb413f9a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/externalurl/url.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/externalurl\/url"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/url","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"url","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11ExternalURLV3urlSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/externalurl\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalURL":{"role":"symbol","title":"ExternalURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalURL"}],"url":"\/documentation\/jellyfinapi\/externalurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation.json new file mode 100644 index 000000000..93b0c26f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"title":"FFmpegLocation","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI14FFmpegLocationO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/custom","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/notFound","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/setByArgument","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/system"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/system":{"role":"symbol","title":"FFmpegLocation.system","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"system"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/system","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/system"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/setByArgument":{"role":"symbol","title":"FFmpegLocation.setByArgument","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setByArgument"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/setByArgument","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/setbyargument"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/custom":{"role":"symbol","title":"FFmpegLocation.custom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"custom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/custom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/custom"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/notFound":{"role":"symbol","title":"FFmpegLocation.notFound","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notFound"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/notFound","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/notfound"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/rawrepresentable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/equatable-implementations"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/!=(_:_:).json new file mode 100644 index 000000000..7b97108a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI14FFmpegLocationO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/custom.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/custom.json new file mode 100644 index 000000000..dd2e956ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/custom.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"custom"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/custom"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/custom","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"custom"}],"title":"FFmpegLocation.custom","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14FFmpegLocationO6customyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/custom":{"role":"symbol","title":"FFmpegLocation.custom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"custom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/custom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/custom"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/encode(to:).json new file mode 100644 index 000000000..25434aaf8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI14FFmpegLocationO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/equatable-implementations.json new file mode 100644 index 000000000..2cca4cb22 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/hash(into:).json new file mode 100644 index 000000000..0698ccf4a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI14FFmpegLocationO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/hashvalue.json new file mode 100644 index 000000000..93c2fa16f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI14FFmpegLocationO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/init(from:).json new file mode 100644 index 000000000..71c0850f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI14FFmpegLocationO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/init(rawvalue:).json new file mode 100644 index 000000000..a9f6301c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14FFmpegLocationO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/notfound.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/notfound.json new file mode 100644 index 000000000..948737467 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/notfound.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notFound"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/notfound"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/notFound","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notFound"}],"title":"FFmpegLocation.notFound","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14FFmpegLocationO8notFoundyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/notFound":{"role":"symbol","title":"FFmpegLocation.notFound","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notFound"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/notFound","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/notfound"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/rawrepresentable-implementations.json new file mode 100644 index 000000000..abce15037 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/setbyargument.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/setbyargument.json new file mode 100644 index 000000000..412fc6a5a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/setbyargument.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setByArgument"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/setbyargument"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/setByArgument","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setByArgument"}],"title":"FFmpegLocation.setByArgument","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14FFmpegLocationO13setByArgumentyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/setByArgument":{"role":"symbol","title":"FFmpegLocation.setByArgument","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setByArgument"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/setByArgument","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/setbyargument"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/system.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/system.json new file mode 100644 index 000000000..d5196732c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ffmpeglocation/system.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"system"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ffmpeglocation\/system"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/system","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"system"}],"title":"FFmpegLocation.system","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14FFmpegLocationO6systemyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation/system":{"role":"symbol","title":"FFmpegLocation.system","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"system"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation\/system","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ffmpeglocation\/system"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo.json new file mode 100644 index 000000000..79d78bfcb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementryinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"title":"FileSystemEntryInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI19FileSystemEntryInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/init(name:path:type:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/type"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo":{"role":"symbol","title":"FileSystemEntryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}],"url":"\/documentation\/jellyfinapi\/filesystementryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo/init(name:path:type:)":{"role":"symbol","title":"init(name:path:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FileSystemEntryType","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/init(name:path:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementryinfo\/init(name:path:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementryinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FileSystemEntryType","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementryinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementryinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementryinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/init(from:).json new file mode 100644 index 000000000..3b6e2bf51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementryinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19FileSystemEntryInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo":{"role":"symbol","title":"FileSystemEntryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}],"url":"\/documentation\/jellyfinapi\/filesystementryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementryinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/init(name:path:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/init(name:path:type:).json new file mode 100644 index 000000000..73de75a17 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/init(name:path:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryTypeO","text":"FileSystemEntryType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementryinfo\/init(name:path:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/init(name:path:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FileSystemEntryType","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryTypeO"},{"kind":"text","text":"?)"}],"title":"init(name:path:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19FileSystemEntryInfoV4name4path4typeACSSSg_AgA0cdE4TypeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo":{"role":"symbol","title":"FileSystemEntryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}],"url":"\/documentation\/jellyfinapi\/filesystementryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo/init(name:path:type:)":{"role":"symbol","title":"init(name:path:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FileSystemEntryType","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/init(name:path:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementryinfo\/init(name:path:type:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/name.json new file mode 100644 index 000000000..f956733eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementryinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19FileSystemEntryInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo":{"role":"symbol","title":"FileSystemEntryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}],"url":"\/documentation\/jellyfinapi\/filesystementryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementryinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/path.json new file mode 100644 index 000000000..65cccf8ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementryinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19FileSystemEntryInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo":{"role":"symbol","title":"FileSystemEntryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}],"url":"\/documentation\/jellyfinapi\/filesystementryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementryinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/type.json new file mode 100644 index 000000000..fe2e8c63b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementryinfo/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryTypeO","text":"FileSystemEntryType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementryinfo\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FileSystemEntryType","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19FileSystemEntryInfoV4typeAA0cdE4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo":{"role":"symbol","title":"FileSystemEntryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}],"url":"\/documentation\/jellyfinapi\/filesystementryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FileSystemEntryType","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementryinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype.json new file mode 100644 index 000000000..0b38b4384 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"title":"FileSystemEntryType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI19FileSystemEntryTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/directory","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/file","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/networkComputer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/networkShare"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/networkComputer":{"role":"symbol","title":"FileSystemEntryType.networkComputer","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkComputer"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/networkComputer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/networkcomputer"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/networkShare":{"role":"symbol","title":"FileSystemEntryType.networkShare","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkShare"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/networkShare","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/networkshare"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/directory":{"role":"symbol","title":"FileSystemEntryType.directory","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directory"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/directory","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/directory"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/file":{"role":"symbol","title":"FileSystemEntryType.file","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"file"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/file","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/file"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/!=(_:_:).json new file mode 100644 index 000000000..36c061294 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI19FileSystemEntryTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/directory.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/directory.json new file mode 100644 index 000000000..ba72d8947 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/directory.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directory"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/directory"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/directory","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directory"}],"title":"FileSystemEntryType.directory","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19FileSystemEntryTypeO9directoryyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/directory":{"role":"symbol","title":"FileSystemEntryType.directory","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directory"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/directory","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/directory"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/encode(to:).json new file mode 100644 index 000000000..57e37e48a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI19FileSystemEntryTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/equatable-implementations.json new file mode 100644 index 000000000..5405cabab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/file.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/file.json new file mode 100644 index 000000000..5c2334cbd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/file.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"file"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/file"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/file","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"file"}],"title":"FileSystemEntryType.file","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19FileSystemEntryTypeO4fileyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/file":{"role":"symbol","title":"FileSystemEntryType.file","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"file"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/file","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/file"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/hash(into:).json new file mode 100644 index 000000000..808f14b64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI19FileSystemEntryTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/hashvalue.json new file mode 100644 index 000000000..cf8ebb50a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI19FileSystemEntryTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/init(from:).json new file mode 100644 index 000000000..f56bb05c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI19FileSystemEntryTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/init(rawvalue:).json new file mode 100644 index 000000000..b244b46c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19FileSystemEntryTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/networkcomputer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/networkcomputer.json new file mode 100644 index 000000000..f142e89cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/networkcomputer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkComputer"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/networkcomputer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/networkComputer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkComputer"}],"title":"FileSystemEntryType.networkComputer","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19FileSystemEntryTypeO15networkComputeryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/networkComputer":{"role":"symbol","title":"FileSystemEntryType.networkComputer","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkComputer"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/networkComputer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/networkcomputer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/networkshare.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/networkshare.json new file mode 100644 index 000000000..191426d9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/networkshare.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkShare"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/networkshare"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/networkShare","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkShare"}],"title":"FileSystemEntryType.networkShare","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19FileSystemEntryTypeO12networkShareyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/networkShare":{"role":"symbol","title":"FileSystemEntryType.networkShare","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkShare"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/networkShare","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/networkshare"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/rawrepresentable-implementations.json new file mode 100644 index 000000000..da8e211fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/filesystementrytype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/filesystementrytype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType":{"role":"symbol","title":"FileSystemEntryType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryType"}],"abstract":[{"type":"text","text":"Enum FileSystemEntryType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryType"}],"url":"\/documentation\/jellyfinapi\/filesystementrytype"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/filesystementrytype\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile.json new file mode 100644 index 000000000..935abb833 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/fontfile"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class FontFile."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"title":"FontFile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI8FontFileV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"FontFile"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/init(dateCreated:dateModified:name:size:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/dateCreated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/dateModified","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/size"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/dateModified":{"role":"symbol","title":"dateModified","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date modified."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/dateModified","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/datemodified"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/dateCreated":{"role":"symbol","title":"dateCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/datecreated"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/init(dateCreated:dateModified:name:size:)":{"role":"symbol","title":"init(dateCreated:dateModified:name:size:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/init(dateCreated:dateModified:name:size:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/init(datecreated:datemodified:name:size:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile":{"role":"symbol","title":"FontFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"abstract":[{"type":"text","text":"Class FontFile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FontFile"}],"url":"\/documentation\/jellyfinapi\/fontfile"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/size":{"role":"symbol","title":"size","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the size."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/size","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/size"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/datecreated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/datecreated.json new file mode 100644 index 000000000..c76310d36 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/datecreated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/fontfile\/datecreated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/dateCreated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the date created."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateCreated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8FontFileV11dateCreated10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/dateCreated":{"role":"symbol","title":"dateCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/datecreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile":{"role":"symbol","title":"FontFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"abstract":[{"type":"text","text":"Class FontFile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FontFile"}],"url":"\/documentation\/jellyfinapi\/fontfile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/datemodified.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/datemodified.json new file mode 100644 index 000000000..e531120f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/datemodified.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/fontfile\/datemodified"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/dateModified","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the date modified."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateModified","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8FontFileV12dateModified10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile":{"role":"symbol","title":"FontFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"abstract":[{"type":"text","text":"Class FontFile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FontFile"}],"url":"\/documentation\/jellyfinapi\/fontfile"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/dateModified":{"role":"symbol","title":"dateModified","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date modified."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/dateModified","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/datemodified"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/init(datecreated:datemodified:name:size:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/init(datecreated:datemodified:name:size:).json new file mode 100644 index 000000000..f416d5ec2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/init(datecreated:datemodified:name:size:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/fontfile\/init(datecreated:datemodified:name:size:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/init(dateCreated:dateModified:name:size:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"title":"init(dateCreated:dateModified:name:size:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8FontFileV11dateCreated0E8Modified4name4sizeAC10Foundation4DateVSg_AKSSSgs5Int64VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/init(dateCreated:dateModified:name:size:)":{"role":"symbol","title":"init(dateCreated:dateModified:name:size:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/init(dateCreated:dateModified:name:size:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/init(datecreated:datemodified:name:size:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile":{"role":"symbol","title":"FontFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"abstract":[{"type":"text","text":"Class FontFile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FontFile"}],"url":"\/documentation\/jellyfinapi\/fontfile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/init(from:).json new file mode 100644 index 000000000..bf378ff19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/fontfile\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8FontFileV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile":{"role":"symbol","title":"FontFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"abstract":[{"type":"text","text":"Class FontFile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FontFile"}],"url":"\/documentation\/jellyfinapi\/fontfile"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/name.json new file mode 100644 index 000000000..1073393d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/fontfile\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8FontFileV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile":{"role":"symbol","title":"FontFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"abstract":[{"type":"text","text":"Class FontFile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FontFile"}],"url":"\/documentation\/jellyfinapi\/fontfile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/size.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/size.json new file mode 100644 index 000000000..6736c92fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/fontfile/size.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/fontfile\/size"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/size","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the size."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"size","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8FontFileV4sizes5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile/size":{"role":"symbol","title":"size","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the size."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile\/size","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/fontfile\/size"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile":{"role":"symbol","title":"FontFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"abstract":[{"type":"text","text":"Class FontFile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FontFile"}],"url":"\/documentation\/jellyfinapi\/fontfile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction.json new file mode 100644 index 000000000..6c910f139 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"title":"ForgotPasswordAction","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI20ForgotPasswordActionO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/contactAdmin","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/inNetworkRequired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/pinCode"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/rawrepresentable-implementations"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/inNetworkRequired":{"role":"symbol","title":"ForgotPasswordAction.inNetworkRequired","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inNetworkRequired"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/inNetworkRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/innetworkrequired"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/equatable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/pinCode":{"role":"symbol","title":"ForgotPasswordAction.pinCode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/pinCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/pincode"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/contactAdmin":{"role":"symbol","title":"ForgotPasswordAction.contactAdmin","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"contactAdmin"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/contactAdmin","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/contactadmin"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/!=(_:_:).json new file mode 100644 index 000000000..cb1937ae2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI20ForgotPasswordActionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/contactadmin.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/contactadmin.json new file mode 100644 index 000000000..227423517 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/contactadmin.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"contactAdmin"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/contactadmin"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/contactAdmin","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"contactAdmin"}],"title":"ForgotPasswordAction.contactAdmin","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ForgotPasswordActionO12contactAdminyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/contactAdmin":{"role":"symbol","title":"ForgotPasswordAction.contactAdmin","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"contactAdmin"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/contactAdmin","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/contactadmin"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/encode(to:).json new file mode 100644 index 000000000..47c359747 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI20ForgotPasswordActionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/equatable-implementations.json new file mode 100644 index 000000000..2d889f093 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/hash(into:).json new file mode 100644 index 000000000..19e2aec7e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI20ForgotPasswordActionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/hashvalue.json new file mode 100644 index 000000000..78f245358 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI20ForgotPasswordActionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/init(from:).json new file mode 100644 index 000000000..bd5323a1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI20ForgotPasswordActionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/init(rawvalue:).json new file mode 100644 index 000000000..c3ef2a704 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20ForgotPasswordActionO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/innetworkrequired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/innetworkrequired.json new file mode 100644 index 000000000..ea1c2fb60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/innetworkrequired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inNetworkRequired"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/innetworkrequired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/inNetworkRequired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inNetworkRequired"}],"title":"ForgotPasswordAction.inNetworkRequired","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ForgotPasswordActionO17inNetworkRequiredyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/inNetworkRequired":{"role":"symbol","title":"ForgotPasswordAction.inNetworkRequired","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inNetworkRequired"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/inNetworkRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/innetworkrequired"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/pincode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/pincode.json new file mode 100644 index 000000000..79fe50a5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/pincode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinCode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/pincode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/pinCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinCode"}],"title":"ForgotPasswordAction.pinCode","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ForgotPasswordActionO7pinCodeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/pinCode":{"role":"symbol","title":"ForgotPasswordAction.pinCode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/pinCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/pincode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/rawrepresentable-implementations.json new file mode 100644 index 000000000..636063c7f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordaction/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordaction\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordaction\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto.json new file mode 100644 index 000000000..c61b23ee3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpassworddto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Forgot Password request body DTO."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordDto"}],"title":"ForgotPasswordDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17ForgotPasswordDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/init(enteredUsername:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/enteredUsername"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpassworddto\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto/enteredUsername":{"role":"symbol","title":"enteredUsername","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enteredUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the entered username to have its password reset."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/enteredUsername","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpassworddto\/enteredusername"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto":{"role":"symbol","title":"ForgotPasswordDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordDto"}],"abstract":[{"type":"text","text":"Forgot Password request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordDto"}],"url":"\/documentation\/jellyfinapi\/forgotpassworddto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto/init(enteredUsername:)":{"role":"symbol","title":"init(enteredUsername:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enteredUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/init(enteredUsername:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpassworddto\/init(enteredusername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto/enteredusername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto/enteredusername.json new file mode 100644 index 000000000..c6fefccc1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto/enteredusername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enteredUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpassworddto\/enteredusername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/enteredUsername","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the entered username to have its password reset."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enteredUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"enteredUsername","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17ForgotPasswordDtoV15enteredUsernameSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto/enteredUsername":{"role":"symbol","title":"enteredUsername","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enteredUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the entered username to have its password reset."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/enteredUsername","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpassworddto\/enteredusername"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto":{"role":"symbol","title":"ForgotPasswordDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordDto"}],"abstract":[{"type":"text","text":"Forgot Password request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordDto"}],"url":"\/documentation\/jellyfinapi\/forgotpassworddto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto/init(enteredusername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto/init(enteredusername:).json new file mode 100644 index 000000000..86e983d32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto/init(enteredusername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enteredUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpassworddto\/init(enteredusername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/init(enteredUsername:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enteredUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(enteredUsername:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17ForgotPasswordDtoV15enteredUsernameACSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto/init(enteredUsername:)":{"role":"symbol","title":"init(enteredUsername:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enteredUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/init(enteredUsername:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpassworddto\/init(enteredusername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto":{"role":"symbol","title":"ForgotPasswordDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordDto"}],"abstract":[{"type":"text","text":"Forgot Password request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordDto"}],"url":"\/documentation\/jellyfinapi\/forgotpassworddto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto/init(from:).json new file mode 100644 index 000000000..bb6b0733b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpassworddto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpassworddto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17ForgotPasswordDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto":{"role":"symbol","title":"ForgotPasswordDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordDto"}],"abstract":[{"type":"text","text":"Forgot Password request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordDto"}],"url":"\/documentation\/jellyfinapi\/forgotpassworddto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpassworddto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto.json new file mode 100644 index 000000000..7179cbce9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordPinDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordpindto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Forgot Password Pin enter request body DTO."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordPinDto"}],"title":"ForgotPasswordPinDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20ForgotPasswordPinDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordPinDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/init(pin:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/pin"]}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordpindto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto":{"role":"symbol","title":"ForgotPasswordPinDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordPinDto"}],"abstract":[{"type":"text","text":"Forgot Password Pin enter request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordPinDto"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordpindto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto/init(pin:)":{"role":"symbol","title":"init(pin:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/init(pin:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordpindto\/init(pin:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto/pin":{"role":"symbol","title":"pin","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the entered pin to have the password reset."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/pin","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordpindto\/pin"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto/init(from:).json new file mode 100644 index 000000000..a150356dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordpindto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20ForgotPasswordPinDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto":{"role":"symbol","title":"ForgotPasswordPinDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordPinDto"}],"abstract":[{"type":"text","text":"Forgot Password Pin enter request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordPinDto"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordpindto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordpindto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto/init(pin:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto/init(pin:).json new file mode 100644 index 000000000..4f678b690 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto/init(pin:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordpindto\/init(pin:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/init(pin:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(pin:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20ForgotPasswordPinDtoV3pinACSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto/init(pin:)":{"role":"symbol","title":"init(pin:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/init(pin:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordpindto\/init(pin:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto":{"role":"symbol","title":"ForgotPasswordPinDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordPinDto"}],"abstract":[{"type":"text","text":"Forgot Password Pin enter request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordPinDto"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordpindto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto/pin.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto/pin.json new file mode 100644 index 000000000..27385f548 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordpindto/pin.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordpindto\/pin"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/pin","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the entered pin to have the password reset."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"pin","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ForgotPasswordPinDtoV3pinSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto":{"role":"symbol","title":"ForgotPasswordPinDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordPinDto"}],"abstract":[{"type":"text","text":"Forgot Password Pin enter request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordPinDto"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordpindto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto/pin":{"role":"symbol","title":"pin","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the entered pin to have the password reset."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto\/pin","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordpindto\/pin"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult.json new file mode 100644 index 000000000..00398cd50 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordResult"}],"title":"ForgotPasswordResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20ForgotPasswordResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/init(action:pinExpirationDate:pinFile:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/action","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/pinExpirationDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/pinFile"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult/pinExpirationDate":{"role":"symbol","title":"pinExpirationDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinExpirationDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the pin expiration date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/pinExpirationDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordresult\/pinexpirationdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult":{"role":"symbol","title":"ForgotPasswordResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordResult"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult/pinFile":{"role":"symbol","title":"pinFile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the pin file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/pinFile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordresult\/pinfile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult/action":{"role":"symbol","title":"action","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"action"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ForgotPasswordAction","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordActionO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the action."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/action","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordresult\/action"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult/init(action:pinExpirationDate:pinFile:)":{"role":"symbol","title":"init(action:pinExpirationDate:pinFile:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"action"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ForgotPasswordAction","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordActionO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pinExpirationDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pinFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/init(action:pinExpirationDate:pinFile:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordresult\/init(action:pinexpirationdate:pinfile:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/action.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/action.json new file mode 100644 index 000000000..046847d4e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/action.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"action"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordActionO","text":"ForgotPasswordAction"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordresult\/action"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/action","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the action."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"action"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ForgotPasswordAction","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordActionO"},{"kind":"text","text":"?"}],"title":"action","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ForgotPasswordResultV6actionAA0cD6ActionOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult":{"role":"symbol","title":"ForgotPasswordResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordResult"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult/action":{"role":"symbol","title":"action","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"action"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ForgotPasswordAction","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordActionO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the action."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/action","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordresult\/action"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/init(action:pinexpirationdate:pinfile:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/init(action:pinexpirationdate:pinfile:).json new file mode 100644 index 000000000..d93d1ef63 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/init(action:pinexpirationdate:pinfile:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"action"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordActionO","text":"ForgotPasswordAction"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"pinExpirationDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"pinFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordresult\/init(action:pinexpirationdate:pinfile:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/init(action:pinExpirationDate:pinFile:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"action"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ForgotPasswordAction","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordActionO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pinExpirationDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pinFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(action:pinExpirationDate:pinFile:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20ForgotPasswordResultV6action17pinExpirationDate0G4FileAcA0cD6ActionOSg_10Foundation0I0VSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult/init(action:pinExpirationDate:pinFile:)":{"role":"symbol","title":"init(action:pinExpirationDate:pinFile:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"action"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ForgotPasswordAction","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordActionO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pinExpirationDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pinFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/init(action:pinExpirationDate:pinFile:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordresult\/init(action:pinexpirationdate:pinfile:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult":{"role":"symbol","title":"ForgotPasswordResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordResult"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordAction":{"role":"symbol","title":"ForgotPasswordAction","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordAction"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordAction","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordAction"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordaction"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/init(from:).json new file mode 100644 index 000000000..02a05ff40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20ForgotPasswordResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult":{"role":"symbol","title":"ForgotPasswordResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordResult"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/pinexpirationdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/pinexpirationdate.json new file mode 100644 index 000000000..3ceb85493 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/pinexpirationdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinExpirationDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordresult\/pinexpirationdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/pinExpirationDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the pin expiration date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinExpirationDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"pinExpirationDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ForgotPasswordResultV17pinExpirationDate10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult/pinExpirationDate":{"role":"symbol","title":"pinExpirationDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinExpirationDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the pin expiration date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/pinExpirationDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordresult\/pinexpirationdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult":{"role":"symbol","title":"ForgotPasswordResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordResult"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/pinfile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/pinfile.json new file mode 100644 index 000000000..adf639e4d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/forgotpasswordresult/pinfile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/forgotpasswordresult\/pinfile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/pinFile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the pin file."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"pinFile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ForgotPasswordResultV7pinFileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult":{"role":"symbol","title":"ForgotPasswordResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordResult"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult/pinFile":{"role":"symbol","title":"pinFile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pinFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the pin file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult\/pinFile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/forgotpasswordresult\/pinfile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand.json new file mode 100644 index 000000000..d89136c28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommand"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommand"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommand"}],"title":"GeneralCommand","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14GeneralCommandV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"GeneralCommand"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/init(arguments:controllingUserID:name:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/arguments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/controllingUserID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/name"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommand\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommand\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand/arguments":{"role":"symbol","title":"arguments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"arguments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/arguments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommand\/arguments"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand":{"role":"symbol","title":"GeneralCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommand"}],"url":"\/documentation\/jellyfinapi\/generalcommand"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand/init(arguments:controllingUserID:name:)":{"role":"symbol","title":"init(arguments:controllingUserID:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/init(arguments:controllingUserID:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommand\/init(arguments:controllinguserid:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand/controllingUserID":{"role":"symbol","title":"controllingUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/controllingUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommand\/controllinguserid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/arguments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/arguments.json new file mode 100644 index 000000000..2d4f7b92b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/arguments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"arguments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommand\/arguments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/arguments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"arguments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"arguments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GeneralCommandV9argumentsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand":{"role":"symbol","title":"GeneralCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommand"}],"url":"\/documentation\/jellyfinapi\/generalcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand/arguments":{"role":"symbol","title":"arguments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"arguments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/arguments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommand\/arguments"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/controllinguserid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/controllinguserid.json new file mode 100644 index 000000000..eb7360279 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/controllinguserid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommand\/controllinguserid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/controllingUserID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"controllingUserID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GeneralCommandV17controllingUserID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand":{"role":"symbol","title":"GeneralCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommand"}],"url":"\/documentation\/jellyfinapi\/generalcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand/controllingUserID":{"role":"symbol","title":"controllingUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/controllingUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommand\/controllinguserid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/init(arguments:controllinguserid:name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/init(arguments:controllinguserid:name:).json new file mode 100644 index 000000000..a5d8d9d62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/init(arguments:controllinguserid:name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO","text":"GeneralCommandType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommand\/init(arguments:controllinguserid:name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/init(arguments:controllingUserID:name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"?)"}],"title":"init(arguments:controllingUserID:name:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14GeneralCommandV9arguments17controllingUserID4nameACSDyS2SGSg_10Foundation4UUIDVSgAA0cD4TypeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand/init(arguments:controllingUserID:name:)":{"role":"symbol","title":"init(arguments:controllingUserID:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/init(arguments:controllingUserID:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommand\/init(arguments:controllinguserid:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand":{"role":"symbol","title":"GeneralCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommand"}],"url":"\/documentation\/jellyfinapi\/generalcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/init(from:).json new file mode 100644 index 000000000..5b728a281 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommand\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14GeneralCommandV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand":{"role":"symbol","title":"GeneralCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommand"}],"url":"\/documentation\/jellyfinapi\/generalcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommand\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/name.json new file mode 100644 index 000000000..f3890cafa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommand/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO","text":"GeneralCommandType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommand\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GeneralCommandV4nameAA0cD4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommand\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand":{"role":"symbol","title":"GeneralCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommand"}],"url":"\/documentation\/jellyfinapi\/generalcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype.json new file mode 100644 index 000000000..a43801702 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"title":"GeneralCommandType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI18GeneralCommandTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/back","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/channelDown","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/channelUp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/displayContent","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/displayMessage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goHome","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goToSearch","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goToSettings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/guide","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveDown","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveLeft","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveRight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveUp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/mute","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/nextLetter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/pageDown","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/pageUp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/play","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playMediaSource","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playNext","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playState","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playTrailers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/previousLetter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/select","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/sendKey","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/sendString","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setAudioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setMaxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setRepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setShuffleQueue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setSubtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setVolume","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/takeScreenshot","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleContextMenu","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleFullscreen","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleMute","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleOsd","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleOsdMenu","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleStats","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/unmute","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/volumeDown","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/volumeUp"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/volumeDown":{"role":"symbol","title":"GeneralCommandType.volumeDown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeDown"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/volumeDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/volumedown"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setSubtitleStreamIndex":{"role":"symbol","title":"GeneralCommandType.setSubtitleStreamIndex","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setSubtitleStreamIndex"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setSubtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setsubtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setShuffleQueue":{"role":"symbol","title":"GeneralCommandType.setShuffleQueue","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setShuffleQueue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setShuffleQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setshufflequeue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/goToSettings":{"role":"symbol","title":"GeneralCommandType.goToSettings","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goToSettings"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goToSettings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/gotosettings"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/goHome":{"role":"symbol","title":"GeneralCommandType.goHome","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goHome"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goHome","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/gohome"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/sendString":{"role":"symbol","title":"GeneralCommandType.sendString","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendString"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/sendString","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/sendstring"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/displayMessage":{"role":"symbol","title":"GeneralCommandType.displayMessage","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayMessage"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/displayMessage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/displaymessage"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setRepeatMode":{"role":"symbol","title":"GeneralCommandType.setRepeatMode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setRepeatMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setrepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleFullscreen":{"role":"symbol","title":"GeneralCommandType.toggleFullscreen","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleFullscreen"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleFullscreen","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/togglefullscreen"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/unmute":{"role":"symbol","title":"GeneralCommandType.unmute","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unmute"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/unmute","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/unmute"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/playState":{"role":"symbol","title":"GeneralCommandType.playState","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playState"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playState","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/playstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/playMediaSource":{"role":"symbol","title":"GeneralCommandType.playMediaSource","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMediaSource"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playMediaSource","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/playmediasource"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/channelDown":{"role":"symbol","title":"GeneralCommandType.channelDown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelDown"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/channelDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/channeldown"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleOsd":{"role":"symbol","title":"GeneralCommandType.toggleOsd","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleOsd"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleOsd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/toggleosd"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/moveRight":{"role":"symbol","title":"GeneralCommandType.moveRight","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveRight"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveRight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/moveright"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/goToSearch":{"role":"symbol","title":"GeneralCommandType.goToSearch","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goToSearch"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goToSearch","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/gotosearch"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/guide":{"role":"symbol","title":"GeneralCommandType.guide","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"guide"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/guide","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/guide"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/moveDown":{"role":"symbol","title":"GeneralCommandType.moveDown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveDown"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/movedown"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/previousLetter":{"role":"symbol","title":"GeneralCommandType.previousLetter","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousLetter"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/previousLetter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/previousletter"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleStats":{"role":"symbol","title":"GeneralCommandType.toggleStats","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleStats"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleStats","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/togglestats"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setMaxStreamingBitrate":{"role":"symbol","title":"GeneralCommandType.setMaxStreamingBitrate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setMaxStreamingBitrate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setMaxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setmaxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/select":{"role":"symbol","title":"GeneralCommandType.select","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"select"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/select","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/select"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/playNext":{"role":"symbol","title":"GeneralCommandType.playNext","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playNext","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/playnext"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/pageDown":{"role":"symbol","title":"GeneralCommandType.pageDown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageDown"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/pageDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/pagedown"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/moveLeft":{"role":"symbol","title":"GeneralCommandType.moveLeft","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveLeft"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveLeft","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/moveleft"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleContextMenu":{"role":"symbol","title":"GeneralCommandType.toggleContextMenu","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleContextMenu"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleContextMenu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/togglecontextmenu"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleMute":{"role":"symbol","title":"GeneralCommandType.toggleMute","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleMute"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleMute","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/togglemute"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/playTrailers":{"role":"symbol","title":"GeneralCommandType.playTrailers","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playTrailers"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playTrailers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/playtrailers"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/displayContent":{"role":"symbol","title":"GeneralCommandType.displayContent","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayContent"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/displayContent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/displaycontent"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/pageUp":{"role":"symbol","title":"GeneralCommandType.pageUp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageUp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/pageUp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/pageup"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/moveUp":{"role":"symbol","title":"GeneralCommandType.moveUp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveUp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveUp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/moveup"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/init(rawvalue:)"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/takeScreenshot":{"role":"symbol","title":"GeneralCommandType.takeScreenshot","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"takeScreenshot"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/takeScreenshot","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/takescreenshot"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setVolume":{"role":"symbol","title":"GeneralCommandType.setVolume","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setVolume"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setVolume","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setvolume"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/play":{"role":"symbol","title":"GeneralCommandType.play","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/play","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/play"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/volumeUp":{"role":"symbol","title":"GeneralCommandType.volumeUp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeUp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/volumeUp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/volumeup"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/mute":{"role":"symbol","title":"GeneralCommandType.mute","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mute"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/mute","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/mute"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/nextLetter":{"role":"symbol","title":"GeneralCommandType.nextLetter","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextLetter"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/nextLetter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/nextletter"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/channelUp":{"role":"symbol","title":"GeneralCommandType.channelUp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelUp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/channelUp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/channelup"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setAudioStreamIndex":{"role":"symbol","title":"GeneralCommandType.setAudioStreamIndex","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setAudioStreamIndex"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setAudioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setaudiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/back":{"role":"symbol","title":"GeneralCommandType.back","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"back"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/back","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/back"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleOsdMenu":{"role":"symbol","title":"GeneralCommandType.toggleOsdMenu","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleOsdMenu"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleOsdMenu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/toggleosdmenu"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/sendKey":{"role":"symbol","title":"GeneralCommandType.sendKey","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendKey"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/sendKey","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/sendkey"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/!=(_:_:).json new file mode 100644 index 000000000..8b671b7c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI18GeneralCommandTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/back.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/back.json new file mode 100644 index 000000000..0ec22b6e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/back.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"back"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/back"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/back","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"back"}],"title":"GeneralCommandType.back","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO4backyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/back":{"role":"symbol","title":"GeneralCommandType.back","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"back"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/back","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/back"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/channeldown.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/channeldown.json new file mode 100644 index 000000000..a7a4e0f57 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/channeldown.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelDown"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/channeldown"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/channelDown","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelDown"}],"title":"GeneralCommandType.channelDown","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO11channelDownyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/channelDown":{"role":"symbol","title":"GeneralCommandType.channelDown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelDown"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/channelDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/channeldown"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/channelup.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/channelup.json new file mode 100644 index 000000000..d163b2f1b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/channelup.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelUp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/channelup"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/channelUp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelUp"}],"title":"GeneralCommandType.channelUp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO9channelUpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/channelUp":{"role":"symbol","title":"GeneralCommandType.channelUp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelUp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/channelUp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/channelup"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/displaycontent.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/displaycontent.json new file mode 100644 index 000000000..4c609f509 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/displaycontent.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayContent"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/displaycontent"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/displayContent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayContent"}],"title":"GeneralCommandType.displayContent","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO14displayContentyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/displayContent":{"role":"symbol","title":"GeneralCommandType.displayContent","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayContent"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/displayContent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/displaycontent"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/displaymessage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/displaymessage.json new file mode 100644 index 000000000..e024d32ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/displaymessage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayMessage"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/displaymessage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/displayMessage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayMessage"}],"title":"GeneralCommandType.displayMessage","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO14displayMessageyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/displayMessage":{"role":"symbol","title":"GeneralCommandType.displayMessage","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayMessage"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/displayMessage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/displaymessage"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/encode(to:).json new file mode 100644 index 000000000..258ad60de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI18GeneralCommandTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/equatable-implementations.json new file mode 100644 index 000000000..b22b78d31 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/gohome.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/gohome.json new file mode 100644 index 000000000..73d2e7018 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/gohome.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goHome"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/gohome"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goHome","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goHome"}],"title":"GeneralCommandType.goHome","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO6goHomeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/goHome":{"role":"symbol","title":"GeneralCommandType.goHome","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goHome"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goHome","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/gohome"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/gotosearch.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/gotosearch.json new file mode 100644 index 000000000..9b777f50a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/gotosearch.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goToSearch"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/gotosearch"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goToSearch","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goToSearch"}],"title":"GeneralCommandType.goToSearch","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO10goToSearchyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/goToSearch":{"role":"symbol","title":"GeneralCommandType.goToSearch","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goToSearch"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goToSearch","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/gotosearch"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/gotosettings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/gotosettings.json new file mode 100644 index 000000000..ebce7275c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/gotosettings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goToSettings"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/gotosettings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goToSettings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goToSettings"}],"title":"GeneralCommandType.goToSettings","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO12goToSettingsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/goToSettings":{"role":"symbol","title":"GeneralCommandType.goToSettings","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"goToSettings"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/goToSettings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/gotosettings"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/guide.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/guide.json new file mode 100644 index 000000000..cf072b93d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/guide.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"guide"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/guide"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/guide","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"guide"}],"title":"GeneralCommandType.guide","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO5guideyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/guide":{"role":"symbol","title":"GeneralCommandType.guide","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"guide"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/guide","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/guide"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/hash(into:).json new file mode 100644 index 000000000..05a65ec31 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI18GeneralCommandTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/hashvalue.json new file mode 100644 index 000000000..aebe499cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI18GeneralCommandTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/init(from:).json new file mode 100644 index 000000000..bb12bbb51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI18GeneralCommandTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/init(rawvalue:).json new file mode 100644 index 000000000..03441dde9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18GeneralCommandTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/movedown.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/movedown.json new file mode 100644 index 000000000..fa8a62cf9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/movedown.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveDown"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/movedown"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveDown","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveDown"}],"title":"GeneralCommandType.moveDown","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO8moveDownyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/moveDown":{"role":"symbol","title":"GeneralCommandType.moveDown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveDown"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/movedown"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/moveleft.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/moveleft.json new file mode 100644 index 000000000..727f6b1bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/moveleft.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveLeft"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/moveleft"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveLeft","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveLeft"}],"title":"GeneralCommandType.moveLeft","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO8moveLeftyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/moveLeft":{"role":"symbol","title":"GeneralCommandType.moveLeft","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveLeft"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveLeft","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/moveleft"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/moveright.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/moveright.json new file mode 100644 index 000000000..f568413a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/moveright.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveRight"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/moveright"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveRight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveRight"}],"title":"GeneralCommandType.moveRight","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO9moveRightyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/moveRight":{"role":"symbol","title":"GeneralCommandType.moveRight","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveRight"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveRight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/moveright"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/moveup.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/moveup.json new file mode 100644 index 000000000..350d54754 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/moveup.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveUp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/moveup"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveUp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveUp"}],"title":"GeneralCommandType.moveUp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO6moveUpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/moveUp":{"role":"symbol","title":"GeneralCommandType.moveUp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveUp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/moveUp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/moveup"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/mute.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/mute.json new file mode 100644 index 000000000..301cdd268 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/mute.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mute"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/mute"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/mute","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mute"}],"title":"GeneralCommandType.mute","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO4muteyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/mute":{"role":"symbol","title":"GeneralCommandType.mute","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mute"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/mute","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/mute"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/nextletter.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/nextletter.json new file mode 100644 index 000000000..cf5833047 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/nextletter.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextLetter"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/nextletter"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/nextLetter","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextLetter"}],"title":"GeneralCommandType.nextLetter","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO10nextLetteryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/nextLetter":{"role":"symbol","title":"GeneralCommandType.nextLetter","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextLetter"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/nextLetter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/nextletter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/pagedown.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/pagedown.json new file mode 100644 index 000000000..a53ddf33e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/pagedown.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageDown"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/pagedown"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/pageDown","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageDown"}],"title":"GeneralCommandType.pageDown","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO8pageDownyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/pageDown":{"role":"symbol","title":"GeneralCommandType.pageDown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageDown"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/pageDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/pagedown"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/pageup.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/pageup.json new file mode 100644 index 000000000..3d4e844a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/pageup.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageUp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/pageup"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/pageUp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageUp"}],"title":"GeneralCommandType.pageUp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO6pageUpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/pageUp":{"role":"symbol","title":"GeneralCommandType.pageUp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageUp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/pageUp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/pageup"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/play.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/play.json new file mode 100644 index 000000000..02b3d4fbe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/play.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/play"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/play","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"}],"title":"GeneralCommandType.play","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO4playyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/play":{"role":"symbol","title":"GeneralCommandType.play","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/play","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/play"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playmediasource.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playmediasource.json new file mode 100644 index 000000000..62130c2fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playmediasource.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMediaSource"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/playmediasource"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playMediaSource","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMediaSource"}],"title":"GeneralCommandType.playMediaSource","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO15playMediaSourceyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/playMediaSource":{"role":"symbol","title":"GeneralCommandType.playMediaSource","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMediaSource"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playMediaSource","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/playmediasource"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playnext.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playnext.json new file mode 100644 index 000000000..2931e9a13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playnext.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/playnext"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playNext","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNext"}],"title":"GeneralCommandType.playNext","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO8playNextyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/playNext":{"role":"symbol","title":"GeneralCommandType.playNext","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playNext","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/playnext"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playstate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playstate.json new file mode 100644 index 000000000..7557e99b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playstate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playState"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/playstate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playState","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playState"}],"title":"GeneralCommandType.playState","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO9playStateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/playState":{"role":"symbol","title":"GeneralCommandType.playState","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playState"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playState","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/playstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playtrailers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playtrailers.json new file mode 100644 index 000000000..e2abf57f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/playtrailers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playTrailers"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/playtrailers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playTrailers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playTrailers"}],"title":"GeneralCommandType.playTrailers","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO12playTrailersyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/playTrailers":{"role":"symbol","title":"GeneralCommandType.playTrailers","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playTrailers"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/playTrailers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/playtrailers"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/previousletter.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/previousletter.json new file mode 100644 index 000000000..65ab34cd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/previousletter.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousLetter"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/previousletter"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/previousLetter","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousLetter"}],"title":"GeneralCommandType.previousLetter","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO14previousLetteryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/previousLetter":{"role":"symbol","title":"GeneralCommandType.previousLetter","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousLetter"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/previousLetter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/previousletter"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/rawrepresentable-implementations.json new file mode 100644 index 000000000..23fdf983b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/select.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/select.json new file mode 100644 index 000000000..ee53bbc13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/select.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"select"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/select"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/select","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"select"}],"title":"GeneralCommandType.select","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO6selectyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/select":{"role":"symbol","title":"GeneralCommandType.select","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"select"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/select","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/select"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/sendkey.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/sendkey.json new file mode 100644 index 000000000..7bceb37bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/sendkey.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendKey"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/sendkey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/sendKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendKey"}],"title":"GeneralCommandType.sendKey","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO7sendKeyyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/sendKey":{"role":"symbol","title":"GeneralCommandType.sendKey","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendKey"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/sendKey","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/sendkey"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/sendstring.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/sendstring.json new file mode 100644 index 000000000..d5105a6f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/sendstring.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendString"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/sendstring"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/sendString","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendString"}],"title":"GeneralCommandType.sendString","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO10sendStringyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/sendString":{"role":"symbol","title":"GeneralCommandType.sendString","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendString"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/sendString","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/sendstring"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setaudiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setaudiostreamindex.json new file mode 100644 index 000000000..2c9707941 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setaudiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setAudioStreamIndex"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/setaudiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setAudioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setAudioStreamIndex"}],"title":"GeneralCommandType.setAudioStreamIndex","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO19setAudioStreamIndexyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setAudioStreamIndex":{"role":"symbol","title":"GeneralCommandType.setAudioStreamIndex","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setAudioStreamIndex"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setAudioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setaudiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setmaxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setmaxstreamingbitrate.json new file mode 100644 index 000000000..ca895b574 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setmaxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setMaxStreamingBitrate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/setmaxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setMaxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setMaxStreamingBitrate"}],"title":"GeneralCommandType.setMaxStreamingBitrate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO22setMaxStreamingBitrateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setMaxStreamingBitrate":{"role":"symbol","title":"GeneralCommandType.setMaxStreamingBitrate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setMaxStreamingBitrate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setMaxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setmaxstreamingbitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setrepeatmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setrepeatmode.json new file mode 100644 index 000000000..cc5c4ebe3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setrepeatmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRepeatMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/setrepeatmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setRepeatMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRepeatMode"}],"title":"GeneralCommandType.setRepeatMode","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO13setRepeatModeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setRepeatMode":{"role":"symbol","title":"GeneralCommandType.setRepeatMode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setRepeatMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setrepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setshufflequeue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setshufflequeue.json new file mode 100644 index 000000000..5131d6ef6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setshufflequeue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setShuffleQueue"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/setshufflequeue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setShuffleQueue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setShuffleQueue"}],"title":"GeneralCommandType.setShuffleQueue","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO15setShuffleQueueyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setShuffleQueue":{"role":"symbol","title":"GeneralCommandType.setShuffleQueue","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setShuffleQueue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setShuffleQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setshufflequeue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setsubtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setsubtitlestreamindex.json new file mode 100644 index 000000000..c3b8b6316 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setsubtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setSubtitleStreamIndex"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/setsubtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setSubtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setSubtitleStreamIndex"}],"title":"GeneralCommandType.setSubtitleStreamIndex","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO22setSubtitleStreamIndexyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setSubtitleStreamIndex":{"role":"symbol","title":"GeneralCommandType.setSubtitleStreamIndex","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setSubtitleStreamIndex"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setSubtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setsubtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setvolume.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setvolume.json new file mode 100644 index 000000000..6eec5ed88 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/setvolume.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setVolume"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/setvolume"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setVolume","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setVolume"}],"title":"GeneralCommandType.setVolume","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO9setVolumeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/setVolume":{"role":"symbol","title":"GeneralCommandType.setVolume","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"setVolume"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/setVolume","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/setvolume"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/takescreenshot.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/takescreenshot.json new file mode 100644 index 000000000..a9daf38d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/takescreenshot.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"takeScreenshot"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/takescreenshot"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/takeScreenshot","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"takeScreenshot"}],"title":"GeneralCommandType.takeScreenshot","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO14takeScreenshotyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/takeScreenshot":{"role":"symbol","title":"GeneralCommandType.takeScreenshot","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"takeScreenshot"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/takeScreenshot","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/takescreenshot"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglecontextmenu.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglecontextmenu.json new file mode 100644 index 000000000..68c76eb91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglecontextmenu.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleContextMenu"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/togglecontextmenu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleContextMenu","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleContextMenu"}],"title":"GeneralCommandType.toggleContextMenu","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO17toggleContextMenuyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleContextMenu":{"role":"symbol","title":"GeneralCommandType.toggleContextMenu","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleContextMenu"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleContextMenu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/togglecontextmenu"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglefullscreen.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglefullscreen.json new file mode 100644 index 000000000..deca87993 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglefullscreen.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleFullscreen"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/togglefullscreen"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleFullscreen","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleFullscreen"}],"title":"GeneralCommandType.toggleFullscreen","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO16toggleFullscreenyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleFullscreen":{"role":"symbol","title":"GeneralCommandType.toggleFullscreen","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleFullscreen"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleFullscreen","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/togglefullscreen"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglemute.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglemute.json new file mode 100644 index 000000000..85948e3f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglemute.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleMute"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/togglemute"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleMute","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleMute"}],"title":"GeneralCommandType.toggleMute","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO10toggleMuteyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleMute":{"role":"symbol","title":"GeneralCommandType.toggleMute","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleMute"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleMute","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/togglemute"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/toggleosd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/toggleosd.json new file mode 100644 index 000000000..c79addbc2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/toggleosd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleOsd"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/toggleosd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleOsd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleOsd"}],"title":"GeneralCommandType.toggleOsd","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO9toggleOsdyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleOsd":{"role":"symbol","title":"GeneralCommandType.toggleOsd","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleOsd"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleOsd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/toggleosd"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/toggleosdmenu.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/toggleosdmenu.json new file mode 100644 index 000000000..35dc17456 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/toggleosdmenu.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleOsdMenu"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/toggleosdmenu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleOsdMenu","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleOsdMenu"}],"title":"GeneralCommandType.toggleOsdMenu","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO13toggleOsdMenuyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleOsdMenu":{"role":"symbol","title":"GeneralCommandType.toggleOsdMenu","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleOsdMenu"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleOsdMenu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/toggleosdmenu"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglestats.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglestats.json new file mode 100644 index 000000000..e1be6bf3d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/togglestats.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleStats"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/togglestats"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleStats","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleStats"}],"title":"GeneralCommandType.toggleStats","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO11toggleStatsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/toggleStats":{"role":"symbol","title":"GeneralCommandType.toggleStats","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleStats"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/toggleStats","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/togglestats"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/unmute.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/unmute.json new file mode 100644 index 000000000..3dd0ff89f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/unmute.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unmute"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/unmute"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/unmute","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unmute"}],"title":"GeneralCommandType.unmute","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO6unmuteyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/unmute":{"role":"symbol","title":"GeneralCommandType.unmute","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unmute"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/unmute","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/unmute"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/volumedown.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/volumedown.json new file mode 100644 index 000000000..abcdb3b09 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/volumedown.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeDown"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/volumedown"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/volumeDown","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeDown"}],"title":"GeneralCommandType.volumeDown","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO10volumeDownyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/volumeDown":{"role":"symbol","title":"GeneralCommandType.volumeDown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeDown"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/volumeDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/volumedown"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/volumeup.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/volumeup.json new file mode 100644 index 000000000..f325dc7fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/generalcommandtype/volumeup.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeUp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/generalcommandtype\/volumeup"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/volumeUp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeUp"}],"title":"GeneralCommandType.volumeUp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18GeneralCommandTypeO8volumeUpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType/volumeUp":{"role":"symbol","title":"GeneralCommandType.volumeUp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeUp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType\/volumeUp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/generalcommandtype\/volumeup"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto.json new file mode 100644 index 000000000..55eaa13be --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get programs dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"title":"GetProgramsDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14GetProgramsDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/init(channelIDs:enableImageTypes:enableImages:enableTotalRecordCount:enableUserData:fields:genreIDs:genres:hasAired:imageTypeLimit:isAiring:isKids:isMovie:isNews:isSeries:isSports:librarySeriesID:limit:maxEndDate:maxStartDate:minEndDate:minStartDate:seriesTimerID:sortBy:sortOrder:startIndex:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/channelIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/genreIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/hasAired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isAiring","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/librarySeriesID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/maxEndDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/maxStartDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/minEndDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/minStartDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/seriesTimerID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter by series timer id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter for movies."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter for sports."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isAiring":{"role":"symbol","title":"isAiring","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter by programs that are currently airing, or not."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isAiring","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/isairing"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the image types to include in the output."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/channelIDs":{"role":"symbol","title":"channelIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the channels to return guide information for."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/channelIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/channelids"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets sort Order - Ascending,Descending."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets optional. Filter by user id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets include user data."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether retrieve total record count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter for series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter for news."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the genres to return guide information for."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/maxStartDate":{"role":"symbol","title":"maxStartDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum premiere start date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/maxStartDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/maxstartdate"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max number of images to return, per image type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/minStartDate":{"role":"symbol","title":"minStartDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum premiere start date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/minStartDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/minstartdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets include image information in output."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/hasAired":{"role":"symbol","title":"hasAired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter by programs that have completed airing, or not."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/hasAired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/hasaired"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the genre ids to return guide information for."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter for kids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/minEndDate":{"role":"symbol","title":"minEndDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum premiere end date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/minEndDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/minenddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the record index to start at. All items with a lower index will be dropped from the results."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum number of records to return."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/maxEndDate":{"role":"symbol","title":"maxEndDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum premiere end date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/maxEndDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/maxenddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/librarySeriesID":{"role":"symbol","title":"librarySeriesID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter by library series id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/librarySeriesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/libraryseriesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/init(channelIDs:enableImageTypes:enableImages:enableTotalRecordCount:enableUserData:fields:genreIDs:genres:hasAired:imageTypeLimit:isAiring:isKids:isMovie:isNews:isSeries:isSports:librarySeriesID:limit:maxEndDate:maxStartDate:minEndDate:minStartDate:seriesTimerID:sortBy:sortOrder:startIndex:userID:)":{"role":"symbol","title":"init(channelIDs:enableImageTypes:enableImages:enableTotalRecordCount:enableUserData:fields:genreIDs:genres:hasAired:imageTypeLimit:isAiring:isKids:isMovie:isNews:isSeries:isSports:librarySeriesID:limit:maxEndDate:maxStartDate:minEndDate:minStartDate:seriesTimerID:sortBy:sortOrder:startIndex:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/init(channelIDs:enableImageTypes:enableImages:enableTotalRecordCount:enableUserData:fields:genreIDs:genres:hasAired:imageTypeLimit:isAiring:isKids:isMovie:isNews:isSeries:isSports:librarySeriesID:limit:maxEndDate:maxStartDate:minEndDate:minStartDate:seriesTimerID:sortBy:sortOrder:startIndex:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/init(channelids:enableimagetypes:enableimages:enabletotalrecordcount:enableuserdata:fields:genreids:genres:hasaired:imagetypelimit:isairing:iskids:ismovie:isnews:isseries:issports:libraryseriesid:limit:maxenddate:maxstartdate:minenddate:min-11q26"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/channelids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/channelids.json new file mode 100644 index 000000000..0a4a303da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/channelids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/channelids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/channelIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the channels to return guide information for."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"channelIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV10channelIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/channelIDs":{"role":"symbol","title":"channelIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the channels to return guide information for."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/channelIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/channelids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enableimages.json new file mode 100644 index 000000000..1d5b7ff5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets include image information in output."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets include image information in output."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/enableimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enableimagetypes.json new file mode 100644 index 000000000..ddd3b5484 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the image types to include in the output."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV16enableImageTypesSayAA0G4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the image types to include in the output."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enabletotalrecordcount.json new file mode 100644 index 000000000..2863f196d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether retrieve total record count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether retrieve total record count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/enabletotalrecordcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enableuserdata.json new file mode 100644 index 000000000..72712682c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets include user data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets include user data."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/fields.json new file mode 100644 index 000000000..0df382021 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/genreids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/genreids.json new file mode 100644 index 000000000..012f208fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/genreids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/genreids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/genreIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the genre ids to return guide information for."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"genreIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV8genreIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the genre ids to return guide information for."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/genreids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/genres.json new file mode 100644 index 000000000..e124171e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the genres to return guide information for."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"genres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV6genresSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the genres to return guide information for."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/genres"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/hasaired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/hasaired.json new file mode 100644 index 000000000..4627df6e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/hasaired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/hasaired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/hasAired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets filter by programs that have completed airing, or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasAired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV8hasAiredSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/hasAired":{"role":"symbol","title":"hasAired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter by programs that have completed airing, or not."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/hasAired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/hasaired"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/imagetypelimit.json new file mode 100644 index 000000000..14da0c454 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the max number of images to return, per image type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max number of images to return, per image type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/init(channelids:enableimagetypes:enableimages:enabletotalrecordcount:enableuserdata:fields:genreids:genres:hasaired:imagetypelimit:isairing:iskids:ismovie:isnews:isseries:issports:libraryseriesid:limit:maxenddate:maxstartdate:minenddate:min-11q26.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/init(channelids:enableimagetypes:enableimages:enabletotalrecordcount:enableuserdata:fields:genreids:genres:hasaired:imagetypelimit:isairing:iskids:ismovie:isnews:isseries:issports:libraryseriesid:limit:maxenddate:maxstartdate:minenddate:min-11q26.json new file mode 100644 index 000000000..d68658312 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/init(channelids:enableimagetypes:enableimages:enabletotalrecordcount:enableuserdata:fields:genreids:genres:hasaired:imagetypelimit:isairing:iskids:ismovie:isnews:isseries:issports:libraryseriesid:limit:maxenddate:maxstartdate:minenddate:min-11q26.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/init(channelids:enableimagetypes:enableimages:enabletotalrecordcount:enableuserdata:fields:genreids:genres:hasaired:imagetypelimit:isairing:iskids:ismovie:isnews:isseries:issports:libraryseriesid:limit:maxenddate:maxstartdate:minenddate:min-11q26"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/init(channelIDs:enableImageTypes:enableImages:enableTotalRecordCount:enableUserData:fields:genreIDs:genres:hasAired:imageTypeLimit:isAiring:isKids:isMovie:isNews:isSeries:isSports:librarySeriesID:limit:maxEndDate:maxStartDate:minEndDate:minStartDate:seriesTimerID:sortBy:sortOrder:startIndex:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(channelIDs:enableImageTypes:enableImages:enableTotalRecordCount:enableUserData:fields:genreIDs:genres:hasAired:imageTypeLimit:isAiring:isKids:isMovie:isNews:isSeries:isSports:librarySeriesID:limit:maxEndDate:maxStartDate:minEndDate:minStartDate:seriesTimerID:sortBy:sortOrder:startIndex:userID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14GetProgramsDtoV10channelIDs16enableImageTypes0H6Images0H16TotalRecordCount0H8UserData6fields05genreG06genres8hasAired14imageTypeLimit8isAiring0Y4Kids0Y5Movie0Y4News0Y6Series0Y6Sports15librarySeriesID5limit10maxEndDate12maxStartDate10minEndDate12minStartDate13seriesTimerID6sortBy9sortOrder10startIndex6userIDACSay10Foundation4UUIDVGSg_SayAA0iW0OGSgSbSgA12_A12_SayAA10ItemFieldsOGSgA7_SaySSGSgA12_s5Int32VSgA12_A12_A12_A12_A12_A12_A5_SgA21_A3_4DateVSgA25_A25_A25_SSSgA18_SayAA9SortOrderOGSgA21_A22_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/init(channelIDs:enableImageTypes:enableImages:enableTotalRecordCount:enableUserData:fields:genreIDs:genres:hasAired:imageTypeLimit:isAiring:isKids:isMovie:isNews:isSeries:isSports:librarySeriesID:limit:maxEndDate:maxStartDate:minEndDate:minStartDate:seriesTimerID:sortBy:sortOrder:startIndex:userID:)":{"role":"symbol","title":"init(channelIDs:enableImageTypes:enableImages:enableTotalRecordCount:enableUserData:fields:genreIDs:genres:hasAired:imageTypeLimit:isAiring:isKids:isMovie:isNews:isSeries:isSports:librarySeriesID:limit:maxEndDate:maxStartDate:minEndDate:minStartDate:seriesTimerID:sortBy:sortOrder:startIndex:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/init(channelIDs:enableImageTypes:enableImages:enableTotalRecordCount:enableUserData:fields:genreIDs:genres:hasAired:imageTypeLimit:isAiring:isKids:isMovie:isNews:isSeries:isSports:librarySeriesID:limit:maxEndDate:maxStartDate:minEndDate:minStartDate:seriesTimerID:sortBy:sortOrder:startIndex:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/init(channelids:enableimagetypes:enableimages:enabletotalrecordcount:enableuserdata:fields:genreids:genres:hasaired:imagetypelimit:isairing:iskids:ismovie:isnews:isseries:issports:libraryseriesid:limit:maxenddate:maxstartdate:minenddate:min-11q26"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/init(from:).json new file mode 100644 index 000000000..a7e1cb698 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14GetProgramsDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/isairing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/isairing.json new file mode 100644 index 000000000..bfe5c9d75 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/isairing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/isairing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isAiring","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets filter by programs that are currently airing, or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAiring","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV8isAiringSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isAiring":{"role":"symbol","title":"isAiring","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter by programs that are currently airing, or not."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isAiring","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/isairing"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/iskids.json new file mode 100644 index 000000000..492e25b99 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets filter for kids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter for kids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/iskids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/ismovie.json new file mode 100644 index 000000000..bc1421d17 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets filter for movies."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter for movies."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/isnews.json new file mode 100644 index 000000000..06c740d27 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets filter for news."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter for news."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/isseries.json new file mode 100644 index 000000000..00559e89d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets filter for series."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter for series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/issports.json new file mode 100644 index 000000000..91d25dcf1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets filter for sports."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter for sports."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/libraryseriesid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/libraryseriesid.json new file mode 100644 index 000000000..c0e9b3e6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/libraryseriesid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/libraryseriesid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/librarySeriesID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets filter by library series id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"librarySeriesID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV15librarySeriesID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/librarySeriesID":{"role":"symbol","title":"librarySeriesID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter by library series id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/librarySeriesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/libraryseriesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/limit.json new file mode 100644 index 000000000..213547746 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum number of records to return."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum number of records to return."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/maxenddate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/maxenddate.json new file mode 100644 index 000000000..63bf20f1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/maxenddate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/maxenddate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/maxEndDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum premiere end date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"maxEndDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV10maxEndDate10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/maxEndDate":{"role":"symbol","title":"maxEndDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum premiere end date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/maxEndDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/maxenddate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/maxstartdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/maxstartdate.json new file mode 100644 index 000000000..f2b80f7b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/maxstartdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/maxstartdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/maxStartDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum premiere start date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"maxStartDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV12maxStartDate10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/maxStartDate":{"role":"symbol","title":"maxStartDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum premiere start date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/maxStartDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/maxstartdate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/minenddate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/minenddate.json new file mode 100644 index 000000000..9efa944d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/minenddate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/minenddate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/minEndDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the minimum premiere end date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minEndDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV10minEndDate10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/minEndDate":{"role":"symbol","title":"minEndDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum premiere end date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/minEndDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/minenddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/minstartdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/minstartdate.json new file mode 100644 index 000000000..aeb5d73bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/minstartdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/minstartdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/minStartDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the minimum premiere start date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minStartDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV12minStartDate10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/minStartDate":{"role":"symbol","title":"minStartDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum premiere start date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/minStartDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/minstartdate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/seriestimerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/seriestimerid.json new file mode 100644 index 000000000..0b5393ee2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/seriestimerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/seriestimerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/seriesTimerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets filter by series timer id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesTimerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV13seriesTimerIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets filter by series timer id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/seriestimerid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/sortby.json new file mode 100644 index 000000000..558a36c10 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/sortby"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/sortorder.json new file mode 100644 index 000000000..32302019c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets sort Order - Ascending,Descending."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV9sortOrderSayAA04SortG0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets sort Order - Ascending,Descending."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/startindex.json new file mode 100644 index 000000000..c2249da0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the record index to start at. All items with a lower index will be dropped from the results."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the record index to start at. All items with a lower index will be dropped from the results."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/userid.json new file mode 100644 index 000000000..5760abdea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/getprogramsdto/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/getprogramsdto\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets optional. Filter by user id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14GetProgramsDtoV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets optional. Filter by user id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/getprogramsdto\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto.json new file mode 100644 index 000000000..0c8891a00 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupinfodto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"title":"GroupInfoDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI12GroupInfoDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/init(groupID:groupName:lastUpdatedAt:participants:state:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/groupID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/groupName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/lastUpdatedAt","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/participants","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/state"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto":{"role":"symbol","title":"GroupInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}],"url":"\/documentation\/jellyfinapi\/groupinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupStateType","preciseIdentifier":"s:11JellyfinAPI14GroupStateTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the group state."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/state","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/state"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/groupID":{"role":"symbol","title":"groupID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the group identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/groupID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/groupid"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/participants":{"role":"symbol","title":"participants","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"participants"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets the participants."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/participants","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/participants"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/init(groupID:groupName:lastUpdatedAt:participants:state:)":{"role":"symbol","title":"init(groupID:groupName:lastUpdatedAt:participants:state:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastUpdatedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"participants"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupStateType","preciseIdentifier":"s:11JellyfinAPI14GroupStateTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/init(groupID:groupName:lastUpdatedAt:participants:state:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/init(groupid:groupname:lastupdatedat:participants:state:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/groupName":{"role":"symbol","title":"groupName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the group name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/groupName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/groupname"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/lastUpdatedAt":{"role":"symbol","title":"lastUpdatedAt","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUpdatedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the date when this DTO has been created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/lastUpdatedAt","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/lastupdatedat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/groupid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/groupid.json new file mode 100644 index 000000000..210d335e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/groupid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupinfodto\/groupid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/groupID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the group identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"groupID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12GroupInfoDtoV7groupID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/groupID":{"role":"symbol","title":"groupID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the group identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/groupID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/groupid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto":{"role":"symbol","title":"GroupInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}],"url":"\/documentation\/jellyfinapi\/groupinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/groupname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/groupname.json new file mode 100644 index 000000000..cbecf66d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/groupname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupinfodto\/groupname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/groupName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the group name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"groupName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12GroupInfoDtoV9groupNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto":{"role":"symbol","title":"GroupInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}],"url":"\/documentation\/jellyfinapi\/groupinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/groupName":{"role":"symbol","title":"groupName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the group name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/groupName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/groupname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/init(from:).json new file mode 100644 index 000000000..125395c0e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupinfodto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12GroupInfoDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto":{"role":"symbol","title":"GroupInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}],"url":"\/documentation\/jellyfinapi\/groupinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/init(groupid:groupname:lastupdatedat:participants:state:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/init(groupid:groupname:lastupdatedat:participants:state:).json new file mode 100644 index 000000000..9a2a0b03d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/init(groupid:groupname:lastupdatedat:participants:state:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lastUpdatedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"participants"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","preciseIdentifier":"s:11JellyfinAPI14GroupStateTypeO","text":"GroupStateType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupinfodto\/init(groupid:groupname:lastupdatedat:participants:state:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/init(groupID:groupName:lastUpdatedAt:participants:state:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastUpdatedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"participants"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupStateType","preciseIdentifier":"s:11JellyfinAPI14GroupStateTypeO"},{"kind":"text","text":"?)"}],"title":"init(groupID:groupName:lastUpdatedAt:participants:state:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12GroupInfoDtoV7groupID0F4Name13lastUpdatedAt12participants5stateAC10Foundation4UUIDVSg_SSSgAI4DateVSgSaySSGSgAA0C9StateTypeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/init(groupID:groupName:lastUpdatedAt:participants:state:)":{"role":"symbol","title":"init(groupID:groupName:lastUpdatedAt:participants:state:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastUpdatedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"participants"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupStateType","preciseIdentifier":"s:11JellyfinAPI14GroupStateTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/init(groupID:groupName:lastUpdatedAt:participants:state:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/init(groupid:groupname:lastupdatedat:participants:state:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto":{"role":"symbol","title":"GroupInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}],"url":"\/documentation\/jellyfinapi\/groupinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/lastupdatedat.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/lastupdatedat.json new file mode 100644 index 000000000..23d5ae18d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/lastupdatedat.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUpdatedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupinfodto\/lastupdatedat"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/lastUpdatedAt","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the date when this DTO has been created."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUpdatedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"lastUpdatedAt","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12GroupInfoDtoV13lastUpdatedAt10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto":{"role":"symbol","title":"GroupInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}],"url":"\/documentation\/jellyfinapi\/groupinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/lastUpdatedAt":{"role":"symbol","title":"lastUpdatedAt","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastUpdatedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the date when this DTO has been created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/lastUpdatedAt","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/lastupdatedat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/participants.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/participants.json new file mode 100644 index 000000000..f2dbdae8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/participants.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"participants"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupinfodto\/participants"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/participants","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the participants."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"participants"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"participants","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12GroupInfoDtoV12participantsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto":{"role":"symbol","title":"GroupInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}],"url":"\/documentation\/jellyfinapi\/groupinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/participants":{"role":"symbol","title":"participants","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"participants"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets the participants."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/participants","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/participants"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/state.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/state.json new file mode 100644 index 000000000..437d66169 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupinfodto/state.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","preciseIdentifier":"s:11JellyfinAPI14GroupStateTypeO","text":"GroupStateType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupinfodto\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/state","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the group state."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupStateType","preciseIdentifier":"s:11JellyfinAPI14GroupStateTypeO"},{"kind":"text","text":"?"}],"title":"state","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12GroupInfoDtoV5stateAA0C9StateTypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupStateType","preciseIdentifier":"s:11JellyfinAPI14GroupStateTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the group state."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto\/state","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupinfodto\/state"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto":{"role":"symbol","title":"GroupInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}],"url":"\/documentation\/jellyfinapi\/groupinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode.json new file mode 100644 index 000000000..6cc725e8f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"title":"GroupQueueMode","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI14GroupQueueModeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/queue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/queueNext"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/queueNext":{"role":"symbol","title":"GroupQueueMode.queueNext","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"queueNext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/queueNext","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/queuenext"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/equatable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/queue":{"role":"symbol","title":"GroupQueueMode.queue","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"queue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/queue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/queue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/!=(_:_:).json new file mode 100644 index 000000000..7c50ee606 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI14GroupQueueModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/encode(to:).json new file mode 100644 index 000000000..728cc0762 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI14GroupQueueModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/equatable-implementations.json new file mode 100644 index 000000000..07e42c3b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/hash(into:).json new file mode 100644 index 000000000..2ffef3d74 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI14GroupQueueModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/hashvalue.json new file mode 100644 index 000000000..a28c329c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI14GroupQueueModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/init(from:).json new file mode 100644 index 000000000..e2591ee9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI14GroupQueueModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/init(rawvalue:).json new file mode 100644 index 000000000..8844f049e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14GroupQueueModeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/queue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/queue.json new file mode 100644 index 000000000..88ceda692 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/queue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"queue"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode\/queue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/queue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"queue"}],"title":"GroupQueueMode.queue","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14GroupQueueModeO5queueyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/queue":{"role":"symbol","title":"GroupQueueMode.queue","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"queue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/queue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/queue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/queuenext.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/queuenext.json new file mode 100644 index 000000000..f69e24147 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/queuenext.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"queueNext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode\/queuenext"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/queueNext","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"queueNext"}],"title":"GroupQueueMode.queueNext","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14GroupQueueModeO9queueNextyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/queueNext":{"role":"symbol","title":"GroupQueueMode.queueNext","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"queueNext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/queueNext","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/queuenext"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/rawrepresentable-implementations.json new file mode 100644 index 000000000..3e8eab1a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupqueuemode/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/groupqueuemode\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupqueuemode\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode.json new file mode 100644 index 000000000..c385ea3f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"title":"GroupRepeatMode","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15GroupRepeatModeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatAll","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatNone","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatOne"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/repeatOne":{"role":"symbol","title":"GroupRepeatMode.repeatOne","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatOne"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatOne","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/repeatone"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/repeatNone":{"role":"symbol","title":"GroupRepeatMode.repeatNone","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatNone"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatNone","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/repeatnone"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/repeatAll":{"role":"symbol","title":"GroupRepeatMode.repeatAll","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatAll"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatAll","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/repeatall"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/!=(_:_:).json new file mode 100644 index 000000000..5f6f2870a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15GroupRepeatModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/encode(to:).json new file mode 100644 index 000000000..25a88eec9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15GroupRepeatModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/equatable-implementations.json new file mode 100644 index 000000000..ccd1e12f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/hash(into:).json new file mode 100644 index 000000000..e77891737 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15GroupRepeatModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/hashvalue.json new file mode 100644 index 000000000..4bc446597 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15GroupRepeatModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/init(from:).json new file mode 100644 index 000000000..5b00d623a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15GroupRepeatModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/init(rawvalue:).json new file mode 100644 index 000000000..2f3ea5914 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15GroupRepeatModeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/rawrepresentable-implementations.json new file mode 100644 index 000000000..d14552be4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/repeatall.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/repeatall.json new file mode 100644 index 000000000..a9fc7f0cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/repeatall.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatAll"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/repeatall"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatAll","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatAll"}],"title":"GroupRepeatMode.repeatAll","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupRepeatModeO9repeatAllyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/repeatAll":{"role":"symbol","title":"GroupRepeatMode.repeatAll","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatAll"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatAll","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/repeatall"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/repeatnone.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/repeatnone.json new file mode 100644 index 000000000..5eb4a68ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/repeatnone.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatNone"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/repeatnone"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatNone","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatNone"}],"title":"GroupRepeatMode.repeatNone","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupRepeatModeO10repeatNoneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/repeatNone":{"role":"symbol","title":"GroupRepeatMode.repeatNone","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatNone"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatNone","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/repeatnone"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/repeatone.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/repeatone.json new file mode 100644 index 000000000..3e835862e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/grouprepeatmode/repeatone.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatOne"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/grouprepeatmode\/repeatone"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatOne","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatOne"}],"title":"GroupRepeatMode.repeatOne","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupRepeatModeO9repeatOneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode/repeatOne":{"role":"symbol","title":"GroupRepeatMode.repeatOne","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatOne"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode\/repeatOne","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/grouprepeatmode\/repeatone"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode.json new file mode 100644 index 000000000..a422523bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"title":"GroupShuffleMode","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI16GroupShuffleModeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/shuffle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/sorted"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/init(rawvalue:)"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/equatable-implementations"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/sorted":{"role":"symbol","title":"GroupShuffleMode.sorted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/sorted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/sorted"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/shuffle":{"role":"symbol","title":"GroupShuffleMode.shuffle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"shuffle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/shuffle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/shuffle"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/!=(_:_:).json new file mode 100644 index 000000000..3c9a762e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI16GroupShuffleModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/encode(to:).json new file mode 100644 index 000000000..d8ac1dc3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI16GroupShuffleModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/equatable-implementations.json new file mode 100644 index 000000000..429d1a921 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/hash(into:).json new file mode 100644 index 000000000..0d8467760 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI16GroupShuffleModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/hashvalue.json new file mode 100644 index 000000000..c5227b933 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI16GroupShuffleModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/init(from:).json new file mode 100644 index 000000000..7cd049598 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI16GroupShuffleModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/init(rawvalue:).json new file mode 100644 index 000000000..6c610eb67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16GroupShuffleModeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/rawrepresentable-implementations.json new file mode 100644 index 000000000..93da41cb7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/shuffle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/shuffle.json new file mode 100644 index 000000000..a333be6d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/shuffle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"shuffle"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode\/shuffle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/shuffle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"shuffle"}],"title":"GroupShuffleMode.shuffle","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16GroupShuffleModeO7shuffleyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/shuffle":{"role":"symbol","title":"GroupShuffleMode.shuffle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"shuffle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/shuffle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/shuffle"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/sorted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/sorted.json new file mode 100644 index 000000000..3f578593f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupshufflemode/sorted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupshufflemode\/sorted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/sorted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"}],"title":"GroupShuffleMode.sorted","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16GroupShuffleModeO6sortedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode/sorted":{"role":"symbol","title":"GroupShuffleMode.sorted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode\/sorted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupshufflemode\/sorted"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype.json new file mode 100644 index 000000000..bb2f3eb64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum GroupState."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"title":"GroupStateType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI14GroupStateTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/idle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/paused","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/playing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/waiting"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/paused":{"role":"symbol","title":"GroupStateType.paused","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"paused"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/paused","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/paused"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/waiting":{"role":"symbol","title":"GroupStateType.waiting","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"waiting"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/waiting","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/waiting"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/playing":{"role":"symbol","title":"GroupStateType.playing","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playing"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/playing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/playing"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/idle":{"role":"symbol","title":"GroupStateType.idle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"idle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/idle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/idle"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/!=(_:_:).json new file mode 100644 index 000000000..a87ba8116 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI14GroupStateTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/encode(to:).json new file mode 100644 index 000000000..fdbc0e628 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI14GroupStateTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/equatable-implementations.json new file mode 100644 index 000000000..3acb39f8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/hash(into:).json new file mode 100644 index 000000000..48c606d79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI14GroupStateTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/hashvalue.json new file mode 100644 index 000000000..03a8bd786 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI14GroupStateTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/idle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/idle.json new file mode 100644 index 000000000..8e27235f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/idle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"idle"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/idle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/idle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"idle"}],"title":"GroupStateType.idle","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14GroupStateTypeO4idleyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/idle":{"role":"symbol","title":"GroupStateType.idle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"idle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/idle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/idle"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/init(from:).json new file mode 100644 index 000000000..e3231bd66 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI14GroupStateTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/init(rawvalue:).json new file mode 100644 index 000000000..d299c35bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14GroupStateTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/paused.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/paused.json new file mode 100644 index 000000000..974c28145 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/paused.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"paused"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/paused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/paused","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"paused"}],"title":"GroupStateType.paused","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14GroupStateTypeO6pausedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/paused":{"role":"symbol","title":"GroupStateType.paused","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"paused"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/paused","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/paused"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/playing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/playing.json new file mode 100644 index 000000000..d210a342b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/playing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playing"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/playing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/playing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playing"}],"title":"GroupStateType.playing","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14GroupStateTypeO7playingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/playing":{"role":"symbol","title":"GroupStateType.playing","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playing"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/playing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/playing"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/rawrepresentable-implementations.json new file mode 100644 index 000000000..0e0316a65 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/waiting.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/waiting.json new file mode 100644 index 000000000..384af385b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupstatetype/waiting.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"waiting"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupstatetype\/waiting"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/waiting","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"waiting"}],"title":"GroupStateType.waiting","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14GroupStateTypeO7waitingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType/waiting":{"role":"symbol","title":"GroupStateType.waiting","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"waiting"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType\/waiting","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupstatetype\/waiting"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupStateType":{"role":"symbol","title":"GroupStateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupStateType"}],"abstract":[{"type":"text","text":"Enum GroupState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupStateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupStateType"}],"url":"\/documentation\/jellyfinapi\/groupstatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype.json new file mode 100644 index 000000000..afdc05a21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"title":"GroupUpdateType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15GroupUpdateTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/createGroupDenied","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupDoesNotExist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupJoined","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupLeft","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/joinGroupDenied","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/libraryAccessDenied","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/notInGroup","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/playQueue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/stateUpdate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/userJoined","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/userLeft"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/groupLeft":{"role":"symbol","title":"GroupUpdateType.groupLeft","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupLeft"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupLeft","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/groupleft"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/createGroupDenied":{"role":"symbol","title":"GroupUpdateType.createGroupDenied","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"createGroupDenied"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/createGroupDenied","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/creategroupdenied"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/groupDoesNotExist":{"role":"symbol","title":"GroupUpdateType.groupDoesNotExist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupDoesNotExist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupDoesNotExist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/groupdoesnotexist"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/userLeft":{"role":"symbol","title":"GroupUpdateType.userLeft","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userLeft"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/userLeft","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/userleft"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/libraryAccessDenied":{"role":"symbol","title":"GroupUpdateType.libraryAccessDenied","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryAccessDenied"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/libraryAccessDenied","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/libraryaccessdenied"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/joinGroupDenied":{"role":"symbol","title":"GroupUpdateType.joinGroupDenied","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"joinGroupDenied"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/joinGroupDenied","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/joingroupdenied"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/playQueue":{"role":"symbol","title":"GroupUpdateType.playQueue","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playQueue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/playQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/playqueue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/notInGroup":{"role":"symbol","title":"GroupUpdateType.notInGroup","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notInGroup"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/notInGroup","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/notingroup"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/stateUpdate":{"role":"symbol","title":"GroupUpdateType.stateUpdate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stateUpdate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/stateUpdate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/stateupdate"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/groupJoined":{"role":"symbol","title":"GroupUpdateType.groupJoined","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupJoined"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupJoined","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/groupjoined"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/userJoined":{"role":"symbol","title":"GroupUpdateType.userJoined","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userJoined"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/userJoined","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/userjoined"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/!=(_:_:).json new file mode 100644 index 000000000..a32ad977b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15GroupUpdateTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/creategroupdenied.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/creategroupdenied.json new file mode 100644 index 000000000..dc28f5ee9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/creategroupdenied.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"createGroupDenied"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/creategroupdenied"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/createGroupDenied","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"createGroupDenied"}],"title":"GroupUpdateType.createGroupDenied","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO06createC6DeniedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/createGroupDenied":{"role":"symbol","title":"GroupUpdateType.createGroupDenied","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"createGroupDenied"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/createGroupDenied","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/creategroupdenied"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/encode(to:).json new file mode 100644 index 000000000..ff22ed788 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15GroupUpdateTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/equatable-implementations.json new file mode 100644 index 000000000..f2a5af622 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/groupdoesnotexist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/groupdoesnotexist.json new file mode 100644 index 000000000..5cd6d7f89 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/groupdoesnotexist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupDoesNotExist"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/groupdoesnotexist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupDoesNotExist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupDoesNotExist"}],"title":"GroupUpdateType.groupDoesNotExist","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO17groupDoesNotExistyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/groupDoesNotExist":{"role":"symbol","title":"GroupUpdateType.groupDoesNotExist","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupDoesNotExist"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupDoesNotExist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/groupdoesnotexist"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/groupjoined.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/groupjoined.json new file mode 100644 index 000000000..785c4d02f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/groupjoined.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupJoined"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/groupjoined"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupJoined","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupJoined"}],"title":"GroupUpdateType.groupJoined","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO11groupJoinedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/groupJoined":{"role":"symbol","title":"GroupUpdateType.groupJoined","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupJoined"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupJoined","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/groupjoined"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/groupleft.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/groupleft.json new file mode 100644 index 000000000..f7064ef5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/groupleft.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupLeft"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/groupleft"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupLeft","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupLeft"}],"title":"GroupUpdateType.groupLeft","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO9groupLeftyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/groupLeft":{"role":"symbol","title":"GroupUpdateType.groupLeft","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupLeft"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/groupLeft","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/groupleft"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/hash(into:).json new file mode 100644 index 000000000..bda6145c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15GroupUpdateTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/hashvalue.json new file mode 100644 index 000000000..9ce692581 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15GroupUpdateTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/init(from:).json new file mode 100644 index 000000000..303281b9c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15GroupUpdateTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/init(rawvalue:).json new file mode 100644 index 000000000..323893bdc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15GroupUpdateTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/joingroupdenied.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/joingroupdenied.json new file mode 100644 index 000000000..20fbcf8b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/joingroupdenied.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"joinGroupDenied"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/joingroupdenied"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/joinGroupDenied","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"joinGroupDenied"}],"title":"GroupUpdateType.joinGroupDenied","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO04joinC6DeniedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/joinGroupDenied":{"role":"symbol","title":"GroupUpdateType.joinGroupDenied","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"joinGroupDenied"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/joinGroupDenied","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/joingroupdenied"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/libraryaccessdenied.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/libraryaccessdenied.json new file mode 100644 index 000000000..83430b018 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/libraryaccessdenied.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryAccessDenied"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/libraryaccessdenied"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/libraryAccessDenied","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryAccessDenied"}],"title":"GroupUpdateType.libraryAccessDenied","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO19libraryAccessDeniedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/libraryAccessDenied":{"role":"symbol","title":"GroupUpdateType.libraryAccessDenied","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryAccessDenied"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/libraryAccessDenied","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/libraryaccessdenied"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/notingroup.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/notingroup.json new file mode 100644 index 000000000..786606a5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/notingroup.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notInGroup"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/notingroup"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/notInGroup","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notInGroup"}],"title":"GroupUpdateType.notInGroup","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO05notInC0yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/notInGroup":{"role":"symbol","title":"GroupUpdateType.notInGroup","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notInGroup"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/notInGroup","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/notingroup"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/playqueue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/playqueue.json new file mode 100644 index 000000000..de0e178bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/playqueue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playQueue"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/playqueue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/playQueue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playQueue"}],"title":"GroupUpdateType.playQueue","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO9playQueueyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/playQueue":{"role":"symbol","title":"GroupUpdateType.playQueue","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playQueue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/playQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/playqueue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/rawrepresentable-implementations.json new file mode 100644 index 000000000..30cefdbf0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/stateupdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/stateupdate.json new file mode 100644 index 000000000..5b17d226e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/stateupdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stateUpdate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/stateupdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/stateUpdate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stateUpdate"}],"title":"GroupUpdateType.stateUpdate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO05stateD0yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/stateUpdate":{"role":"symbol","title":"GroupUpdateType.stateUpdate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stateUpdate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/stateUpdate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/stateupdate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/userjoined.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/userjoined.json new file mode 100644 index 000000000..79d07e2a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/userjoined.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userJoined"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/userjoined"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/userJoined","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userJoined"}],"title":"GroupUpdateType.userJoined","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO10userJoinedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/userJoined":{"role":"symbol","title":"GroupUpdateType.userJoined","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userJoined"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/userJoined","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/userjoined"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/userleft.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/userleft.json new file mode 100644 index 000000000..b56c63428 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/groupupdatetype/userleft.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userLeft"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/groupupdatetype\/userleft"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/userLeft","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userLeft"}],"title":"GroupUpdateType.userLeft","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15GroupUpdateTypeO8userLeftyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType/userLeft":{"role":"symbol","title":"GroupUpdateType.userLeft","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userLeft"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType\/userLeft","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/groupupdatetype\/userleft"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo.json new file mode 100644 index 000000000..dff879d52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GuideInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/guideinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GuideInfo"}],"title":"GuideInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI9GuideInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"GuideInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/init(endDate:startDate:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/endDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/startDate"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo/endDate":{"role":"symbol","title":"endDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/endDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/guideinfo\/enddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo/startDate":{"role":"symbol","title":"startDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/startDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/guideinfo\/startdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/guideinfo\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo/init(endDate:startDate:)":{"role":"symbol","title":"init(endDate:startDate:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/init(endDate:startDate:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/guideinfo\/init(enddate:startdate:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo":{"role":"symbol","title":"GuideInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GuideInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GuideInfo"}],"url":"\/documentation\/jellyfinapi\/guideinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/enddate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/enddate.json new file mode 100644 index 000000000..ccbd7153e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/enddate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/guideinfo\/enddate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/endDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the end date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"endDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9GuideInfoV7endDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo":{"role":"symbol","title":"GuideInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GuideInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GuideInfo"}],"url":"\/documentation\/jellyfinapi\/guideinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo/endDate":{"role":"symbol","title":"endDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/endDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/guideinfo\/enddate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/init(enddate:startdate:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/init(enddate:startdate:).json new file mode 100644 index 000000000..d7be6f39e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/init(enddate:startdate:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/guideinfo\/init(enddate:startdate:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/init(endDate:startDate:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"title":"init(endDate:startDate:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9GuideInfoV7endDate05startF0AC10Foundation0F0VSg_AItcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo":{"role":"symbol","title":"GuideInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GuideInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GuideInfo"}],"url":"\/documentation\/jellyfinapi\/guideinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo/init(endDate:startDate:)":{"role":"symbol","title":"init(endDate:startDate:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/init(endDate:startDate:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/guideinfo\/init(enddate:startdate:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/init(from:).json new file mode 100644 index 000000000..9a328686c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/guideinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9GuideInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/guideinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo":{"role":"symbol","title":"GuideInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GuideInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GuideInfo"}],"url":"\/documentation\/jellyfinapi\/guideinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/startdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/startdate.json new file mode 100644 index 000000000..f4d00b88e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/guideinfo/startdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/guideinfo\/startdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/startDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"startDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9GuideInfoV9startDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo/startDate":{"role":"symbol","title":"startDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo\/startDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/guideinfo\/startdate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo":{"role":"symbol","title":"GuideInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GuideInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GuideInfo"}],"url":"\/documentation\/jellyfinapi\/guideinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype.json new file mode 100644 index 000000000..859441272 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"title":"HardwareEncodingType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI20HardwareEncodingTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/amf","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/nvenc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/qsv","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/v4l2m2m","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/vaapi","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/videoToolBox"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/vaapi":{"role":"symbol","title":"HardwareEncodingType.vaapi","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"vaapi"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/vaapi","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/vaapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/videoToolBox":{"role":"symbol","title":"HardwareEncodingType.videoToolBox","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoToolBox"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/videoToolBox","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/videotoolbox"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/v4l2m2m":{"role":"symbol","title":"HardwareEncodingType.v4l2m2m","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"v4l2m2m"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/v4l2m2m","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/v4l2m2m"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/amf":{"role":"symbol","title":"HardwareEncodingType.amf","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/amf","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/amf"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/nvenc":{"role":"symbol","title":"HardwareEncodingType.nvenc","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nvenc"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/nvenc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/nvenc"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/qsv":{"role":"symbol","title":"HardwareEncodingType.qsv","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"qsv"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/qsv","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/qsv"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/init(rawvalue:)"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/!=(_:_:).json new file mode 100644 index 000000000..bc4a95fcf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI20HardwareEncodingTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/amf.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/amf.json new file mode 100644 index 000000000..4e798a267 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/amf.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/amf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/amf","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf"}],"title":"HardwareEncodingType.amf","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20HardwareEncodingTypeO3amfyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/amf":{"role":"symbol","title":"HardwareEncodingType.amf","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/amf","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/amf"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/encode(to:).json new file mode 100644 index 000000000..5bf4f4af8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI20HardwareEncodingTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/equatable-implementations.json new file mode 100644 index 000000000..916acb648 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/hash(into:).json new file mode 100644 index 000000000..3924c5f14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI20HardwareEncodingTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/hashvalue.json new file mode 100644 index 000000000..ce3318943 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI20HardwareEncodingTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/init(from:).json new file mode 100644 index 000000000..f737dc32a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI20HardwareEncodingTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/init(rawvalue:).json new file mode 100644 index 000000000..f92cd7901 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20HardwareEncodingTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/nvenc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/nvenc.json new file mode 100644 index 000000000..3a1b6dafe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/nvenc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nvenc"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/nvenc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/nvenc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nvenc"}],"title":"HardwareEncodingType.nvenc","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20HardwareEncodingTypeO5nvencyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/nvenc":{"role":"symbol","title":"HardwareEncodingType.nvenc","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nvenc"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/nvenc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/nvenc"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/qsv.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/qsv.json new file mode 100644 index 000000000..4826c289d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/qsv.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"qsv"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/qsv"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/qsv","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"qsv"}],"title":"HardwareEncodingType.qsv","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20HardwareEncodingTypeO3qsvyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/qsv":{"role":"symbol","title":"HardwareEncodingType.qsv","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"qsv"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/qsv","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/qsv"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/rawrepresentable-implementations.json new file mode 100644 index 000000000..5e54dea09 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/v4l2m2m.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/v4l2m2m.json new file mode 100644 index 000000000..9290ccaca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/v4l2m2m.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"v4l2m2m"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/v4l2m2m"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/v4l2m2m","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"v4l2m2m"}],"title":"HardwareEncodingType.v4l2m2m","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20HardwareEncodingTypeO7v4l2m2myA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/v4l2m2m":{"role":"symbol","title":"HardwareEncodingType.v4l2m2m","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"v4l2m2m"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/v4l2m2m","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/v4l2m2m"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/vaapi.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/vaapi.json new file mode 100644 index 000000000..a8f01e13f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/vaapi.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"vaapi"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/vaapi"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/vaapi","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"vaapi"}],"title":"HardwareEncodingType.vaapi","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20HardwareEncodingTypeO5vaapiyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/vaapi":{"role":"symbol","title":"HardwareEncodingType.vaapi","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"vaapi"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/vaapi","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/vaapi"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/videotoolbox.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/videotoolbox.json new file mode 100644 index 000000000..b59671861 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/hardwareencodingtype/videotoolbox.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoToolBox"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/hardwareencodingtype\/videotoolbox"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/videoToolBox","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoToolBox"}],"title":"HardwareEncodingType.videoToolBox","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20HardwareEncodingTypeO12videoToolBoxyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType/videoToolBox":{"role":"symbol","title":"HardwareEncodingType.videoToolBox","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoToolBox"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType\/videoToolBox","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/hardwareencodingtype\/videotoolbox"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype.json new file mode 100644 index 000000000..7bc838ead --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"title":"HeaderMatchType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15HeaderMatchTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/equals","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/regex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/substring"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/regex":{"role":"symbol","title":"HeaderMatchType.regex","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"regex"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/regex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/regex"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/init(rawvalue:)"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/equals":{"role":"symbol","title":"HeaderMatchType.equals","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equals"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/equals","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/equals"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/substring":{"role":"symbol","title":"HeaderMatchType.substring","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"substring"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/substring","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/substring"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/!=(_:_:).json new file mode 100644 index 000000000..20bd45ae2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15HeaderMatchTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/encode(to:).json new file mode 100644 index 000000000..1638710fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15HeaderMatchTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/equals.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/equals.json new file mode 100644 index 000000000..f5cc7438b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/equals.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equals"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/equals"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/equals","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equals"}],"title":"HeaderMatchType.equals","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15HeaderMatchTypeO6equalsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/equals":{"role":"symbol","title":"HeaderMatchType.equals","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equals"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/equals","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/equals"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/equatable-implementations.json new file mode 100644 index 000000000..f29688097 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/hash(into:).json new file mode 100644 index 000000000..18bd630d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15HeaderMatchTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/hashvalue.json new file mode 100644 index 000000000..1b8c3aa51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15HeaderMatchTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/init(from:).json new file mode 100644 index 000000000..03a3d341f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15HeaderMatchTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/init(rawvalue:).json new file mode 100644 index 000000000..e0dc36a64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15HeaderMatchTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/rawrepresentable-implementations.json new file mode 100644 index 000000000..6fbb11461 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/regex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/regex.json new file mode 100644 index 000000000..fba777c0d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/regex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"regex"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/regex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/regex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"regex"}],"title":"HeaderMatchType.regex","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15HeaderMatchTypeO5regexyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/regex":{"role":"symbol","title":"HeaderMatchType.regex","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"regex"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/regex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/regex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/substring.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/substring.json new file mode 100644 index 000000000..1f5dc098b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/headermatchtype/substring.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"substring"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/headermatchtype\/substring"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/substring","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"substring"}],"title":"HeaderMatchType.substring","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15HeaderMatchTypeO9substringyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType/substring":{"role":"symbol","title":"HeaderMatchType.substring","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"substring"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType\/substring","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/headermatchtype\/substring"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo.json new file mode 100644 index 000000000..4c7462b52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/httpheaderinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"title":"HTTPHeaderInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14HTTPHeaderInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"HTTPHeaderInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/init(match:name:value:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/match","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/value"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo/match":{"role":"symbol","title":"match","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"match"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeaderMatchType","preciseIdentifier":"s:11JellyfinAPI15HeaderMatchTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/match","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/httpheaderinfo\/match"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/httpheaderinfo\/value"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo":{"role":"symbol","title":"HTTPHeaderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPHeaderInfo"}],"url":"\/documentation\/jellyfinapi\/httpheaderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/httpheaderinfo\/name"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo/init(match:name:value:)":{"role":"symbol","title":"init(match:name:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"match"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeaderMatchType","preciseIdentifier":"s:11JellyfinAPI15HeaderMatchTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/init(match:name:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/httpheaderinfo\/init(match:name:value:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/httpheaderinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/init(from:).json new file mode 100644 index 000000000..298420684 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/httpheaderinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14HTTPHeaderInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/httpheaderinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo":{"role":"symbol","title":"HTTPHeaderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPHeaderInfo"}],"url":"\/documentation\/jellyfinapi\/httpheaderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/init(match:name:value:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/init(match:name:value:).json new file mode 100644 index 000000000..ccbcddb43 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/init(match:name:value:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"match"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","preciseIdentifier":"s:11JellyfinAPI15HeaderMatchTypeO","text":"HeaderMatchType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/httpheaderinfo\/init(match:name:value:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/init(match:name:value:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"match"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeaderMatchType","preciseIdentifier":"s:11JellyfinAPI15HeaderMatchTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(match:name:value:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14HTTPHeaderInfoV5match4name5valueAcA15HeaderMatchTypeOSg_SSSgAJtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo/init(match:name:value:)":{"role":"symbol","title":"init(match:name:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"match"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeaderMatchType","preciseIdentifier":"s:11JellyfinAPI15HeaderMatchTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/init(match:name:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/httpheaderinfo\/init(match:name:value:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo":{"role":"symbol","title":"HTTPHeaderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPHeaderInfo"}],"url":"\/documentation\/jellyfinapi\/httpheaderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/match.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/match.json new file mode 100644 index 000000000..4bf424eb8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/match.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"match"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","preciseIdentifier":"s:11JellyfinAPI15HeaderMatchTypeO","text":"HeaderMatchType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/httpheaderinfo\/match"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/match","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"match"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeaderMatchType","preciseIdentifier":"s:11JellyfinAPI15HeaderMatchTypeO"},{"kind":"text","text":"?"}],"title":"match","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14HTTPHeaderInfoV5matchAA15HeaderMatchTypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo/match":{"role":"symbol","title":"match","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"match"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeaderMatchType","preciseIdentifier":"s:11JellyfinAPI15HeaderMatchTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/match","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/httpheaderinfo\/match"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo":{"role":"symbol","title":"HTTPHeaderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPHeaderInfo"}],"url":"\/documentation\/jellyfinapi\/httpheaderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/HeaderMatchType":{"role":"symbol","title":"HeaderMatchType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeaderMatchType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HeaderMatchType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeaderMatchType"}],"url":"\/documentation\/jellyfinapi\/headermatchtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/name.json new file mode 100644 index 000000000..19e5c641e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/httpheaderinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14HTTPHeaderInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/httpheaderinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo":{"role":"symbol","title":"HTTPHeaderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPHeaderInfo"}],"url":"\/documentation\/jellyfinapi\/httpheaderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/value.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/value.json new file mode 100644 index 000000000..512349cd5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/httpheaderinfo/value.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/httpheaderinfo\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14HTTPHeaderInfoV5valueSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo":{"role":"symbol","title":"HTTPHeaderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPHeaderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPHeaderInfo"}],"url":"\/documentation\/jellyfinapi\/httpheaderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/HTTPHeaderInfo/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HTTPHeaderInfo\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/httpheaderinfo\/value"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto.json new file mode 100644 index 000000000..a7b6bb032 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ignorewaitrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class IgnoreWaitRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"title":"IgnoreWaitRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20IgnoreWaitRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"IgnoreWaitRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/init(isIgnoreWait:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/isIgnoreWait"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto":{"role":"symbol","title":"IgnoreWaitRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"abstract":[{"type":"text","text":"Class IgnoreWaitRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto/init(isIgnoreWait:)":{"role":"symbol","title":"init(isIgnoreWait:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIgnoreWait"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/init(isIgnoreWait:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto\/init(isignorewait:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto/isIgnoreWait":{"role":"symbol","title":"isIgnoreWait","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreWait"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the client should be ignored."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/isIgnoreWait","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto\/isignorewait"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto/init(from:).json new file mode 100644 index 000000000..b8736ef04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ignorewaitrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20IgnoreWaitRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto":{"role":"symbol","title":"IgnoreWaitRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"abstract":[{"type":"text","text":"Class IgnoreWaitRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto/init(isignorewait:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto/init(isignorewait:).json new file mode 100644 index 000000000..1f42767fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto/init(isignorewait:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIgnoreWait"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ignorewaitrequestdto\/init(isignorewait:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/init(isIgnoreWait:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIgnoreWait"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(isIgnoreWait:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20IgnoreWaitRequestDtoV02iscD0ACSbSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto/init(isIgnoreWait:)":{"role":"symbol","title":"init(isIgnoreWait:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIgnoreWait"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/init(isIgnoreWait:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto\/init(isignorewait:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto":{"role":"symbol","title":"IgnoreWaitRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"abstract":[{"type":"text","text":"Class IgnoreWaitRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto/isignorewait.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto/isignorewait.json new file mode 100644 index 000000000..68e550aa2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ignorewaitrequestdto/isignorewait.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreWait"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ignorewaitrequestdto\/isignorewait"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/isIgnoreWait","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the client should be ignored."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreWait"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIgnoreWait","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20IgnoreWaitRequestDtoV02iscD0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto/isIgnoreWait":{"role":"symbol","title":"isIgnoreWait","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreWait"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the client should be ignored."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto\/isIgnoreWait","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto\/isignorewait"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto":{"role":"symbol","title":"IgnoreWaitRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"abstract":[{"type":"text","text":"Class IgnoreWaitRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo.json new file mode 100644 index 000000000..1ff6ad1bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagebynameinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"title":"ImageByNameInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15ImageByNameInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/init(context:fileLength:format:name:theme:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/context","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/fileLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/format","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/theme"]}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/fileLength":{"role":"symbol","title":"fileLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the length of the file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/fileLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/filelength"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/context":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the context."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/context","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/context"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/format"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/init(context:fileLength:format:name:theme:)":{"role":"symbol","title":"init(context:fileLength:format:name:theme:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fileLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/init(context:fileLength:format:name:theme:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/init(context:filelength:format:name:theme:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/theme":{"role":"symbol","title":"theme","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the theme."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/theme","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/theme"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/context.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/context.json new file mode 100644 index 000000000..d5cce89ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/context.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagebynameinfo\/context"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/context","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the context."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ImageByNameInfoV7contextSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/context":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the context."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/context","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/context"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/filelength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/filelength.json new file mode 100644 index 000000000..b5540f238 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/filelength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagebynameinfo\/filelength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/fileLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the length of the file."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"fileLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ImageByNameInfoV10fileLengths5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/fileLength":{"role":"symbol","title":"fileLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the length of the file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/fileLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/filelength"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/format.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/format.json new file mode 100644 index 000000000..23dca17b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/format.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagebynameinfo\/format"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/format","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ImageByNameInfoV6formatSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/format"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/init(context:filelength:format:name:theme:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/init(context:filelength:format:name:theme:).json new file mode 100644 index 000000000..954eeb483 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/init(context:filelength:format:name:theme:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fileLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagebynameinfo\/init(context:filelength:format:name:theme:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/init(context:fileLength:format:name:theme:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fileLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(context:fileLength:format:name:theme:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ImageByNameInfoV7context10fileLength6format4name5themeACSSSg_s5Int64VSgA3Itcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/init(context:fileLength:format:name:theme:)":{"role":"symbol","title":"init(context:fileLength:format:name:theme:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fileLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/init(context:fileLength:format:name:theme:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/init(context:filelength:format:name:theme:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/init(from:).json new file mode 100644 index 000000000..1617aeba2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagebynameinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ImageByNameInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/name.json new file mode 100644 index 000000000..c2e410ba7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagebynameinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ImageByNameInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/theme.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/theme.json new file mode 100644 index 000000000..2e8eec683 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagebynameinfo/theme.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagebynameinfo\/theme"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/theme","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the theme."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"theme","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ImageByNameInfoV5themeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo/theme":{"role":"symbol","title":"theme","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the theme."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo\/theme","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagebynameinfo\/theme"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat.json new file mode 100644 index 000000000..51ca86544 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"title":"ImageFormat","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI11ImageFormatO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/bmp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/gif","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/jpg","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/png","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/webp"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/jpg":{"role":"symbol","title":"ImageFormat.jpg","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"jpg"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/jpg","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/jpg"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/webp":{"role":"symbol","title":"ImageFormat.webp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"webp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/webp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/webp"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/png":{"role":"symbol","title":"ImageFormat.png","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/png","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/png"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/equatable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/bmp":{"role":"symbol","title":"ImageFormat.bmp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bmp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/bmp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/bmp"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/gif":{"role":"symbol","title":"ImageFormat.gif","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"gif"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/gif","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/gif"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/rawrepresentable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/!=(_:_:).json new file mode 100644 index 000000000..2cebef4f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI11ImageFormatO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/bmp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/bmp.json new file mode 100644 index 000000000..0c32baa09 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/bmp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bmp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/bmp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/bmp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bmp"}],"title":"ImageFormat.bmp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11ImageFormatO3bmpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/bmp":{"role":"symbol","title":"ImageFormat.bmp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bmp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/bmp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/bmp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/encode(to:).json new file mode 100644 index 000000000..f30eee8a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI11ImageFormatO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/equatable-implementations.json new file mode 100644 index 000000000..9c5fdb787 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/gif.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/gif.json new file mode 100644 index 000000000..1940ac377 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/gif.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"gif"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/gif"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/gif","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"gif"}],"title":"ImageFormat.gif","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11ImageFormatO3gifyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/gif":{"role":"symbol","title":"ImageFormat.gif","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"gif"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/gif","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/gif"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/hash(into:).json new file mode 100644 index 000000000..562ab88eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI11ImageFormatO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/hashvalue.json new file mode 100644 index 000000000..a6a37ea2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI11ImageFormatO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/init(from:).json new file mode 100644 index 000000000..f1891518c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI11ImageFormatO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/init(rawvalue:).json new file mode 100644 index 000000000..078e21ec3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11ImageFormatO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/jpg.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/jpg.json new file mode 100644 index 000000000..e27e56367 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/jpg.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"jpg"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/jpg"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/jpg","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"jpg"}],"title":"ImageFormat.jpg","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11ImageFormatO3jpgyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/jpg":{"role":"symbol","title":"ImageFormat.jpg","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"jpg"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/jpg","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/jpg"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/png.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/png.json new file mode 100644 index 000000000..0af19fc14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/png.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/png"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/png","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"title":"ImageFormat.png","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11ImageFormatO3pngyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/png":{"role":"symbol","title":"ImageFormat.png","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/png","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/png"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/rawrepresentable-implementations.json new file mode 100644 index 000000000..bcc291bfb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/webp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/webp.json new file mode 100644 index 000000000..875e280b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageformat/webp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"webp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageformat\/webp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/webp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"webp"}],"title":"ImageFormat.webp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11ImageFormatO4webpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat/webp":{"role":"symbol","title":"ImageFormat.webp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"webp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat\/webp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageformat\/webp"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo.json new file mode 100644 index 000000000..8ba8afcd6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class ImageInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"title":"ImageInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI9ImageInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/init(blurHash:height:imageIndex:imageTag:imageType:path:size:width:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/blurHash","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/size","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/width"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the height."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the width."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/size":{"role":"symbol","title":"size","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the size."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/size","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/size"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/imageType":{"role":"symbol","title":"imageType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/blurHash":{"role":"symbol","title":"blurHash","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blurHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/blurHash","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/blurhash"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/init(blurHash:height:imageIndex:imageTag:imageType:path:size:width:)":{"role":"symbol","title":"init(blurHash:height:imageIndex:imageTag:imageType:path:size:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"blurHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/init(blurHash:height:imageIndex:imageTag:imageType:path:size:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/init(blurhash:height:imageindex:imagetag:imagetype:path:size:width:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/imageTag":{"role":"symbol","title":"imageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/imagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/blurhash.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/blurhash.json new file mode 100644 index 000000000..eeb044b83 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/blurhash.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blurHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo\/blurhash"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/blurHash","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the blurhash."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blurHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"blurHash","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9ImageInfoV8blurHashSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/blurHash":{"role":"symbol","title":"blurHash","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blurHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the blurhash."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/blurHash","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/blurhash"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/height.json new file mode 100644 index 000000000..18062836b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the height."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9ImageInfoV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the height."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/imageindex.json new file mode 100644 index 000000000..24bd6b678 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the image."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9ImageInfoV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/imagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/imagetag.json new file mode 100644 index 000000000..01f179838 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/imagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo\/imagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"imageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9ImageInfoV8imageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/imageTag":{"role":"symbol","title":"imageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/imagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/imagetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/imagetype.json new file mode 100644 index 000000000..acf1538b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/imagetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo\/imagetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the image."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?"}],"title":"imageType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9ImageInfoV9imageTypeAA0cF0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/imageType":{"role":"symbol","title":"imageType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/imageType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/init(blurhash:height:imageindex:imagetag:imagetype:path:size:width:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/init(blurhash:height:imageindex:imagetag:imagetype:path:size:width:).json new file mode 100644 index 000000000..ffe611ec2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/init(blurhash:height:imageindex:imagetag:imagetype:path:size:width:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"blurHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo\/init(blurhash:height:imageindex:imagetag:imagetype:path:size:width:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/init(blurHash:height:imageIndex:imageTag:imageType:path:size:width:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"blurHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(blurHash:height:imageIndex:imageTag:imageType:path:size:width:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9ImageInfoV8blurHash6height10imageIndex0H3Tag0H4Type4path4size5widthACSSSg_s5Int32VSgAolA0cK0OSgALs5Int64VSgAOtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/init(blurHash:height:imageIndex:imageTag:imageType:path:size:width:)":{"role":"symbol","title":"init(blurHash:height:imageIndex:imageTag:imageType:path:size:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"blurHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/init(blurHash:height:imageIndex:imageTag:imageType:path:size:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/init(blurhash:height:imageindex:imagetag:imagetype:path:size:width:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/init(from:).json new file mode 100644 index 000000000..d4a15d3cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9ImageInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/path.json new file mode 100644 index 000000000..27d1662e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9ImageInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/size.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/size.json new file mode 100644 index 000000000..6dd1ed1da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/size.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo\/size"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/size","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the size."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"size","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9ImageInfoV4sizes5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/size":{"role":"symbol","title":"size","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the size."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/size","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/size"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/width.json new file mode 100644 index 000000000..b9e8bccbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageinfo/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageinfo\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the width."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9ImageInfoV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the width."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageinfo\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption.json new file mode 100644 index 000000000..f2c307776 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageoption"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"title":"ImageOption","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11ImageOptionV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageOption"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/init(limit:minWidth:type:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/minWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/type"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageoption\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the limit."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageoption\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageoption\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption/init(limit:minWidth:type:)":{"role":"symbol","title":"init(limit:minWidth:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/init(limit:minWidth:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageoption\/init(limit:minwidth:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption/minWidth":{"role":"symbol","title":"minWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum width."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/minWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageoption\/minwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/init(from:).json new file mode 100644 index 000000000..96f0309ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageoption\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11ImageOptionV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageoption\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/init(limit:minwidth:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/init(limit:minwidth:type:).json new file mode 100644 index 000000000..348dbbc54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/init(limit:minwidth:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageoption\/init(limit:minwidth:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/init(limit:minWidth:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?)"}],"title":"init(limit:minWidth:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11ImageOptionV5limit8minWidth4typeACs5Int32VSg_AiA0C4TypeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption/init(limit:minWidth:type:)":{"role":"symbol","title":"init(limit:minWidth:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/init(limit:minWidth:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageoption\/init(limit:minwidth:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/limit.json new file mode 100644 index 000000000..87b2db20d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageoption\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the limit."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11ImageOptionV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the limit."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageoption\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/minwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/minwidth.json new file mode 100644 index 000000000..6c5085a47 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/minwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageoption\/minwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/minWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the minimum width."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11ImageOptionV8minWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption/minWidth":{"role":"symbol","title":"minWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum width."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/minWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageoption\/minwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/type.json new file mode 100644 index 000000000..9b07e3fb5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageoption/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageoption\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11ImageOptionV4typeAA0C4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageoption\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation.json new file mode 100644 index 000000000..f1a3791ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"title":"ImageOrientation","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI16ImageOrientationO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/bottomLeft","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/bottomRight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/leftBottom","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/leftTop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/rightBottom","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/rightTop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/topLeft","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/topRight"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/topLeft":{"role":"symbol","title":"ImageOrientation.topLeft","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"topLeft"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/topLeft","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/topleft"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/init(rawvalue:)"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/rightBottom":{"role":"symbol","title":"ImageOrientation.rightBottom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rightBottom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/rightBottom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/rightbottom"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/rightTop":{"role":"symbol","title":"ImageOrientation.rightTop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rightTop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/rightTop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/righttop"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/leftTop":{"role":"symbol","title":"ImageOrientation.leftTop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"leftTop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/leftTop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/lefttop"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/bottomRight":{"role":"symbol","title":"ImageOrientation.bottomRight","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bottomRight"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/bottomRight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/bottomright"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/bottomLeft":{"role":"symbol","title":"ImageOrientation.bottomLeft","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bottomLeft"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/bottomLeft","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/bottomleft"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/leftBottom":{"role":"symbol","title":"ImageOrientation.leftBottom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"leftBottom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/leftBottom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/leftbottom"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/topRight":{"role":"symbol","title":"ImageOrientation.topRight","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"topRight"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/topRight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/topright"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/!=(_:_:).json new file mode 100644 index 000000000..36ea5f14c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI16ImageOrientationO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/bottomleft.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/bottomleft.json new file mode 100644 index 000000000..96f26bd6a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/bottomleft.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bottomLeft"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/bottomleft"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/bottomLeft","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bottomLeft"}],"title":"ImageOrientation.bottomLeft","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ImageOrientationO10bottomLeftyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/bottomLeft":{"role":"symbol","title":"ImageOrientation.bottomLeft","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bottomLeft"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/bottomLeft","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/bottomleft"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/bottomright.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/bottomright.json new file mode 100644 index 000000000..e3e47d0ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/bottomright.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bottomRight"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/bottomright"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/bottomRight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bottomRight"}],"title":"ImageOrientation.bottomRight","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ImageOrientationO11bottomRightyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/bottomRight":{"role":"symbol","title":"ImageOrientation.bottomRight","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bottomRight"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/bottomRight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/bottomright"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/encode(to:).json new file mode 100644 index 000000000..df60308dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI16ImageOrientationO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/equatable-implementations.json new file mode 100644 index 000000000..b001cf7a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/hash(into:).json new file mode 100644 index 000000000..37140e4a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI16ImageOrientationO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/hashvalue.json new file mode 100644 index 000000000..7ca41f309 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI16ImageOrientationO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/init(from:).json new file mode 100644 index 000000000..252b1e5aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI16ImageOrientationO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/init(rawvalue:).json new file mode 100644 index 000000000..f24aba78b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ImageOrientationO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/leftbottom.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/leftbottom.json new file mode 100644 index 000000000..57d73b16b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/leftbottom.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"leftBottom"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/leftbottom"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/leftBottom","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"leftBottom"}],"title":"ImageOrientation.leftBottom","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ImageOrientationO10leftBottomyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/leftBottom":{"role":"symbol","title":"ImageOrientation.leftBottom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"leftBottom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/leftBottom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/leftbottom"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/lefttop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/lefttop.json new file mode 100644 index 000000000..28f81523f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/lefttop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"leftTop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/lefttop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/leftTop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"leftTop"}],"title":"ImageOrientation.leftTop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ImageOrientationO7leftTopyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/leftTop":{"role":"symbol","title":"ImageOrientation.leftTop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"leftTop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/leftTop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/lefttop"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/rawrepresentable-implementations.json new file mode 100644 index 000000000..77ed3e73a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/rightbottom.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/rightbottom.json new file mode 100644 index 000000000..3b21e0eee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/rightbottom.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rightBottom"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/rightbottom"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/rightBottom","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rightBottom"}],"title":"ImageOrientation.rightBottom","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ImageOrientationO11rightBottomyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/rightBottom":{"role":"symbol","title":"ImageOrientation.rightBottom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rightBottom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/rightBottom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/rightbottom"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/righttop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/righttop.json new file mode 100644 index 000000000..7e49af401 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/righttop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rightTop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/righttop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/rightTop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rightTop"}],"title":"ImageOrientation.rightTop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ImageOrientationO8rightTopyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/rightTop":{"role":"symbol","title":"ImageOrientation.rightTop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rightTop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/rightTop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/righttop"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/topleft.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/topleft.json new file mode 100644 index 000000000..a3059e357 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/topleft.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"topLeft"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/topleft"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/topLeft","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"topLeft"}],"title":"ImageOrientation.topLeft","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ImageOrientationO7topLeftyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/topLeft":{"role":"symbol","title":"ImageOrientation.topLeft","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"topLeft"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/topLeft","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/topleft"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/topright.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/topright.json new file mode 100644 index 000000000..35f642758 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageorientation/topright.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"topRight"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageorientation\/topright"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/topRight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"topRight"}],"title":"ImageOrientation.topRight","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16ImageOrientationO8topRightyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation/topRight":{"role":"symbol","title":"ImageOrientation.topRight","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"topRight"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation\/topRight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageorientation\/topright"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOrientation":{"role":"symbol","title":"ImageOrientation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOrientation"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOrientation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOrientation"}],"url":"\/documentation\/jellyfinapi\/imageorientation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo.json new file mode 100644 index 000000000..90dd8e6be --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageProviderInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageproviderinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class ImageProviderInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageProviderInfo"}],"title":"ImageProviderInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17ImageProviderInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageProviderInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/init(name:supportedImages:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/supportedImages"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo/supportedImages":{"role":"symbol","title":"supportedImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedImages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets the supported image types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/supportedImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageproviderinfo\/supportedimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo":{"role":"symbol","title":"ImageProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageProviderInfo"}],"abstract":[{"type":"text","text":"Class ImageProviderInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageProviderInfo"}],"url":"\/documentation\/jellyfinapi\/imageproviderinfo"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageproviderinfo\/name"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageproviderinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo/init(name:supportedImages:)":{"role":"symbol","title":"init(name:supportedImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"supportedImages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/init(name:supportedImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageproviderinfo\/init(name:supportedimages:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/init(from:).json new file mode 100644 index 000000000..b2e7df558 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageproviderinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17ImageProviderInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageproviderinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo":{"role":"symbol","title":"ImageProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageProviderInfo"}],"abstract":[{"type":"text","text":"Class ImageProviderInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageProviderInfo"}],"url":"\/documentation\/jellyfinapi\/imageproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/init(name:supportedimages:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/init(name:supportedimages:).json new file mode 100644 index 000000000..abc6476b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/init(name:supportedimages:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"supportedImages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageproviderinfo\/init(name:supportedimages:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/init(name:supportedImages:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"supportedImages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"title":"init(name:supportedImages:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17ImageProviderInfoV4name15supportedImagesACSSSg_SayAA0C4TypeOGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo/init(name:supportedImages:)":{"role":"symbol","title":"init(name:supportedImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"supportedImages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/init(name:supportedImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageproviderinfo\/init(name:supportedimages:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo":{"role":"symbol","title":"ImageProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageProviderInfo"}],"abstract":[{"type":"text","text":"Class ImageProviderInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageProviderInfo"}],"url":"\/documentation\/jellyfinapi\/imageproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/name.json new file mode 100644 index 000000000..ae116263b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageproviderinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17ImageProviderInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo":{"role":"symbol","title":"ImageProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageProviderInfo"}],"abstract":[{"type":"text","text":"Class ImageProviderInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageProviderInfo"}],"url":"\/documentation\/jellyfinapi\/imageproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageproviderinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/supportedimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/supportedimages.json new file mode 100644 index 000000000..fd06f0167 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imageproviderinfo/supportedimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedImages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imageproviderinfo\/supportedimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/supportedImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the supported image types."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedImages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"supportedImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17ImageProviderInfoV15supportedImagesSayAA0C4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo/supportedImages":{"role":"symbol","title":"supportedImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedImages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets the supported image types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo\/supportedImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imageproviderinfo\/supportedimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo":{"role":"symbol","title":"ImageProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageProviderInfo"}],"abstract":[{"type":"text","text":"Class ImageProviderInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageProviderInfo"}],"url":"\/documentation\/jellyfinapi\/imageproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention.json new file mode 100644 index 000000000..bc8c79ef1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"title":"ImageSavingConvention","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI21ImageSavingConventionO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/compatible","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/legacy"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/compatible":{"role":"symbol","title":"ImageSavingConvention.compatible","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"compatible"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/compatible","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/compatible"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/rawrepresentable-implementations"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/legacy":{"role":"symbol","title":"ImageSavingConvention.legacy","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"legacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/legacy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/legacy"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/!=(_:_:).json new file mode 100644 index 000000000..f7066895e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI21ImageSavingConventionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/compatible.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/compatible.json new file mode 100644 index 000000000..5202df707 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/compatible.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"compatible"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention\/compatible"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/compatible","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"compatible"}],"title":"ImageSavingConvention.compatible","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ImageSavingConventionO10compatibleyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/compatible":{"role":"symbol","title":"ImageSavingConvention.compatible","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"compatible"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/compatible","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/compatible"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/encode(to:).json new file mode 100644 index 000000000..c95797924 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI21ImageSavingConventionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/equatable-implementations.json new file mode 100644 index 000000000..5da34fe28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/hash(into:).json new file mode 100644 index 000000000..61142db54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI21ImageSavingConventionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/hashvalue.json new file mode 100644 index 000000000..42d221e36 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI21ImageSavingConventionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/init(from:).json new file mode 100644 index 000000000..472036c3f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI21ImageSavingConventionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/init(rawvalue:).json new file mode 100644 index 000000000..d40c94b2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21ImageSavingConventionO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/legacy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/legacy.json new file mode 100644 index 000000000..06ba0f844 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/legacy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"legacy"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention\/legacy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/legacy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"legacy"}],"title":"ImageSavingConvention.legacy","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ImageSavingConventionO6legacyyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/legacy":{"role":"symbol","title":"ImageSavingConvention.legacy","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"legacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/legacy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/legacy"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/rawrepresentable-implementations.json new file mode 100644 index 000000000..1d499628f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagesavingconvention/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/imagesavingconvention\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagesavingconvention\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype.json new file mode 100644 index 000000000..8f4cbbb0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum ImageType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"title":"ImageType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI9ImageTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/art","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/backdrop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/banner","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/box","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/boxRear","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/chapter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/disc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/logo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/menu","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/primary","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/screenshot","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/thumb"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/box":{"role":"symbol","title":"ImageType.box","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/box","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/box"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/chapter":{"role":"symbol","title":"ImageType.chapter","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/chapter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/chapter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/profile":{"role":"symbol","title":"ImageType.profile","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/art":{"role":"symbol","title":"ImageType.art","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/art","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/art"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/boxRear":{"role":"symbol","title":"ImageType.boxRear","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/boxRear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/boxrear"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/logo":{"role":"symbol","title":"ImageType.logo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/logo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/logo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/screenshot":{"role":"symbol","title":"ImageType.screenshot","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/screenshot","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/screenshot"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/backdrop":{"role":"symbol","title":"ImageType.backdrop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/backdrop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/backdrop"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/disc":{"role":"symbol","title":"ImageType.disc","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/disc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/disc"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/primary":{"role":"symbol","title":"ImageType.primary","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/primary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/primary"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/banner":{"role":"symbol","title":"ImageType.banner","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/banner","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/banner"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/thumb":{"role":"symbol","title":"ImageType.thumb","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/thumb","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/thumb"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/menu":{"role":"symbol","title":"ImageType.menu","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/menu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/menu"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/!=(_:_:).json new file mode 100644 index 000000000..e44c05ed0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI9ImageTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/art.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/art.json new file mode 100644 index 000000000..e4e13ca42 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/art.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/art"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/art","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"}],"title":"ImageType.art","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO3artyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/art":{"role":"symbol","title":"ImageType.art","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"art"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/art","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/art"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/backdrop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/backdrop.json new file mode 100644 index 000000000..dd2153ddf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/backdrop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/backdrop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/backdrop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"}],"title":"ImageType.backdrop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO8backdropyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/backdrop":{"role":"symbol","title":"ImageType.backdrop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdrop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/backdrop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/backdrop"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/banner.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/banner.json new file mode 100644 index 000000000..3d9c46c1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/banner.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/banner"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/banner","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"}],"title":"ImageType.banner","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO6banneryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/banner":{"role":"symbol","title":"ImageType.banner","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"banner"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/banner","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/banner"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/box.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/box.json new file mode 100644 index 000000000..c2596dcfc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/box.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/box"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/box","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"}],"title":"ImageType.box","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO3boxyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/box":{"role":"symbol","title":"ImageType.box","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"box"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/box","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/box"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/boxrear.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/boxrear.json new file mode 100644 index 000000000..b7a1d801f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/boxrear.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/boxrear"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/boxRear","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"}],"title":"ImageType.boxRear","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO7boxRearyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/boxRear":{"role":"symbol","title":"ImageType.boxRear","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxRear"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/boxRear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/boxrear"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/chapter.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/chapter.json new file mode 100644 index 000000000..5e51fce73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/chapter.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/chapter"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/chapter","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"}],"title":"ImageType.chapter","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO7chapteryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/chapter":{"role":"symbol","title":"ImageType.chapter","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapter"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/chapter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/chapter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/disc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/disc.json new file mode 100644 index 000000000..63c5bd70f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/disc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/disc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/disc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"}],"title":"ImageType.disc","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO4discyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/disc":{"role":"symbol","title":"ImageType.disc","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"disc"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/disc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/disc"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/encode(to:).json new file mode 100644 index 000000000..cef0d12d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI9ImageTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/equatable-implementations.json new file mode 100644 index 000000000..ec6c9010c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/hash(into:).json new file mode 100644 index 000000000..03234bfc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI9ImageTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/hashvalue.json new file mode 100644 index 000000000..ca8a62762 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI9ImageTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/init(from:).json new file mode 100644 index 000000000..12b1b42b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI9ImageTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/init(rawvalue:).json new file mode 100644 index 000000000..95fe6c886 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9ImageTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/logo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/logo.json new file mode 100644 index 000000000..96a1e39e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/logo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/logo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/logo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"}],"title":"ImageType.logo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO4logoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/logo":{"role":"symbol","title":"ImageType.logo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"logo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/logo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/logo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/menu.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/menu.json new file mode 100644 index 000000000..b48c5f594 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/menu.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/menu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/menu","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"}],"title":"ImageType.menu","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO4menuyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/menu":{"role":"symbol","title":"ImageType.menu","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"menu"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/menu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/menu"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/primary.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/primary.json new file mode 100644 index 000000000..4f14993ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/primary.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/primary"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/primary","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"}],"title":"ImageType.primary","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO7primaryyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/primary":{"role":"symbol","title":"ImageType.primary","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"primary"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/primary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/primary"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/profile.json new file mode 100644 index 000000000..0ea433c61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"}],"title":"ImageType.profile","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO7profileyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/profile":{"role":"symbol","title":"ImageType.profile","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/rawrepresentable-implementations.json new file mode 100644 index 000000000..efed78c9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/screenshot.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/screenshot.json new file mode 100644 index 000000000..91043d58b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/screenshot.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/screenshot"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/screenshot","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"}],"title":"ImageType.screenshot","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO10screenshotyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/screenshot":{"role":"symbol","title":"ImageType.screenshot","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshot"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/screenshot","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/screenshot"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/thumb.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/thumb.json new file mode 100644 index 000000000..cc188305c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/imagetype/thumb.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/imagetype\/thumb"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/thumb","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"}],"title":"ImageType.thumb","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9ImageTypeO5thumbyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType/thumb":{"role":"symbol","title":"ImageType.thumb","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType\/thumb","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/imagetype\/thumb"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo.json new file mode 100644 index 000000000..e3e3b59d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/installationinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class InstallationInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"title":"InstallationInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16InstallationInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/init(changelog:checksum:guid:name:packageInfo:sourceURL:version:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/changelog","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/checksum","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/guid","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/packageInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/sourceURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/version"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/name"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/init(changelog:checksum:guid:name:packageInfo:sourceURL:version:)":{"role":"symbol","title":"init(changelog:checksum:guid:name:packageInfo:sourceURL:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"packageInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/init(changelog:checksum:guid:name:packageInfo:sourceURL:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/init(changelog:checksum:guid:name:packageinfo:sourceurl:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/checksum":{"role":"symbol","title":"checksum","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a checksum for the binary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/checksum","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/checksum"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/changelog":{"role":"symbol","title":"changelog","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the changelog for this version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/changelog","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/changelog"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/guid":{"role":"symbol","title":"guid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/guid","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/guid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/sourceURL":{"role":"symbol","title":"sourceURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the source URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/sourceURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/sourceurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/packageInfo":{"role":"symbol","title":"packageInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets package information for the installation."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/packageInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/version"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/changelog.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/changelog.json new file mode 100644 index 000000000..34da16916 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/changelog.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/installationinfo\/changelog"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/changelog","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the changelog for this version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"changelog","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16InstallationInfoV9changelogSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/changelog":{"role":"symbol","title":"changelog","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the changelog for this version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/changelog","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/changelog"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/checksum.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/checksum.json new file mode 100644 index 000000000..2e8690873 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/checksum.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/installationinfo\/checksum"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/checksum","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a checksum for the binary."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"checksum","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16InstallationInfoV8checksumSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/checksum":{"role":"symbol","title":"checksum","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a checksum for the binary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/checksum","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/checksum"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/guid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/guid.json new file mode 100644 index 000000000..166a287b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/guid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/installationinfo\/guid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/guid","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"guid","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16InstallationInfoV4guid10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/guid":{"role":"symbol","title":"guid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/guid","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/guid"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/init(changelog:checksum:guid:name:packageinfo:sourceurl:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/init(changelog:checksum:guid:name:packageinfo:sourceurl:version:).json new file mode 100644 index 000000000..8444c0e09 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/init(changelog:checksum:guid:name:packageinfo:sourceurl:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"packageInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV","text":"PackageInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/installationinfo\/init(changelog:checksum:guid:name:packageinfo:sourceurl:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/init(changelog:checksum:guid:name:packageInfo:sourceURL:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"packageInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(changelog:checksum:guid:name:packageInfo:sourceURL:version:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16InstallationInfoV9changelog8checksum4guid4name07packageD09sourceURL7versionACSSSg_AK10Foundation4UUIDVSgAkA07PackageD0VSgA2Ktcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/init(changelog:checksum:guid:name:packageInfo:sourceURL:version:)":{"role":"symbol","title":"init(changelog:checksum:guid:name:packageInfo:sourceURL:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"packageInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/init(changelog:checksum:guid:name:packageInfo:sourceURL:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/init(changelog:checksum:guid:name:packageinfo:sourceurl:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/init(from:).json new file mode 100644 index 000000000..09cafb40f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/installationinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16InstallationInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/name.json new file mode 100644 index 000000000..122853979 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/installationinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16InstallationInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/packageinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/packageinfo.json new file mode 100644 index 000000000..63ab98d46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/packageinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV","text":"PackageInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/installationinfo\/packageinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/packageInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets package information for the installation."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV"},{"kind":"text","text":"?"}],"title":"packageInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16InstallationInfoV07packageD0AA07PackageD0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/packageInfo":{"role":"symbol","title":"packageInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets package information for the installation."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/packageInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/sourceurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/sourceurl.json new file mode 100644 index 000000000..7c6ebba7e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/sourceurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/installationinfo\/sourceurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/sourceURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the source URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sourceURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16InstallationInfoV9sourceURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/sourceURL":{"role":"symbol","title":"sourceURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the source URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/sourceURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/sourceurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/version.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/version.json new file mode 100644 index 000000000..f7ec42c21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/installationinfo/version.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/installationinfo\/version"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/version","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"version","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16InstallationInfoV7versionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/installationinfo\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin.json new file mode 100644 index 000000000..11e921956 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"title":"IPlugin","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI7IPluginV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"IPlugin"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/init(assemblyFilePath:canUninstall:dataFolderPath:description:id:name:version:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/assemblyFilePath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/canUninstall","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/dataFolderPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/description","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/id-37nov","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/version"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/init(assemblyFilePath:canUninstall:dataFolderPath:description:id:name:version:)":{"role":"symbol","title":"init(assemblyFilePath:canUninstall:dataFolderPath:description:id:name:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"assemblyFilePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dataFolderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/init(assemblyFilePath:canUninstall:dataFolderPath:description:id:name:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/init(assemblyfilepath:canuninstall:datafolderpath:description:id:name:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/id-37nov":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the unique id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/id-37nov","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/id-37nov"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/dataFolderPath":{"role":"symbol","title":"dataFolderPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataFolderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the full path to the data folder, where the plugin can store any miscellaneous files needed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/dataFolderPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/datafolderpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/canUninstall":{"role":"symbol","title":"canUninstall","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets a value indicating whether the plugin can be uninstalled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/canUninstall","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/canuninstall"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/identifiable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name of the plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/assemblyFilePath":{"role":"symbol","title":"assemblyFilePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"assemblyFilePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the path to the assembly file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/assemblyFilePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/assemblyfilepath"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the Description."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/description"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the plugin version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/version"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/assemblyfilepath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/assemblyfilepath.json new file mode 100644 index 000000000..4d83b5729 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/assemblyfilepath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"assemblyFilePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/assemblyfilepath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/assemblyFilePath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the path to the assembly file."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"assemblyFilePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"assemblyFilePath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7IPluginV16assemblyFilePathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/assemblyFilePath":{"role":"symbol","title":"assemblyFilePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"assemblyFilePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the path to the assembly file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/assemblyFilePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/assemblyfilepath"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/canuninstall.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/canuninstall.json new file mode 100644 index 000000000..8f0467ee4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/canuninstall.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/canuninstall"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/canUninstall","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a value indicating whether the plugin can be uninstalled."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canUninstall","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7IPluginV12canUninstallSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/canUninstall":{"role":"symbol","title":"canUninstall","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets a value indicating whether the plugin can be uninstalled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/canUninstall","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/canuninstall"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/datafolderpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/datafolderpath.json new file mode 100644 index 000000000..1fd2c5f52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/datafolderpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataFolderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/datafolderpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/dataFolderPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the full path to the data folder, where the plugin can store any miscellaneous files needed."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataFolderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"dataFolderPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7IPluginV14dataFolderPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/dataFolderPath":{"role":"symbol","title":"dataFolderPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataFolderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the full path to the data folder, where the plugin can store any miscellaneous files needed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/dataFolderPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/datafolderpath"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/description.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/description.json new file mode 100644 index 000000000..e58e0e258 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/description.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the Description."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7IPluginV11descriptionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the Description."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/description"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/id-37nov.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/id-37nov.json new file mode 100644 index 000000000..59dcf38e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/id-37nov.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/id-37nov"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/id-37nov","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the unique id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7IPluginV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/id-37nov":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the unique id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/id-37nov","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/id-37nov"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/id-8v7z4.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/id-8v7z4.json new file mode 100644 index 000000000..c4c9383cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/id-8v7z4.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/id-8v7z4"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/id-8v7z4","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI7IPluginV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/id-8v7z4":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/id-8v7z4","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/id-8v7z4"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/identifiable-implementations.json new file mode 100644 index 000000000..53bbed8dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/id-8v7z4"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/id-8v7z4":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/id-8v7z4","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/id-8v7z4"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/init(assemblyfilepath:canuninstall:datafolderpath:description:id:name:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/init(assemblyfilepath:canuninstall:datafolderpath:description:id:name:version:).json new file mode 100644 index 000000000..d769c0b00 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/init(assemblyfilepath:canuninstall:datafolderpath:description:id:name:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"assemblyFilePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dataFolderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/init(assemblyfilepath:canuninstall:datafolderpath:description:id:name:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/init(assemblyFilePath:canUninstall:dataFolderPath:description:id:name:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"assemblyFilePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dataFolderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(assemblyFilePath:canUninstall:dataFolderPath:description:id:name:version:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI7IPluginV16assemblyFilePath12canUninstall010dataFolderF011description2id4name7versionACSSSg_SbSgA2K10Foundation4UUIDVSgA2Ktcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/init(assemblyFilePath:canUninstall:dataFolderPath:description:id:name:version:)":{"role":"symbol","title":"init(assemblyFilePath:canUninstall:dataFolderPath:description:id:name:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"assemblyFilePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dataFolderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/init(assemblyFilePath:canUninstall:dataFolderPath:description:id:name:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/init(assemblyfilepath:canuninstall:datafolderpath:description:id:name:version:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/init(from:).json new file mode 100644 index 000000000..ef4fd3cd5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI7IPluginV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/name.json new file mode 100644 index 000000000..b26a23fd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the name of the plugin."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7IPluginV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name of the plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/version.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/version.json new file mode 100644 index 000000000..9c5dfb289 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/iplugin/version.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/iplugin\/version"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/version","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the plugin version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"version","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7IPluginV7versionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the plugin version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/iplugin\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IPlugin":{"role":"symbol","title":"IPlugin","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IPlugin"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Common.Plugins.IPlugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IPlugin","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IPlugin"}],"url":"\/documentation\/jellyfinapi\/iplugin"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype.json new file mode 100644 index 000000000..779789aeb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum IsoType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"title":"IsoType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI7IsoTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"IsoType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/bluRay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/dvd"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/bluRay":{"role":"symbol","title":"IsoType.bluRay","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bluRay"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/bluRay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/bluray"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/equatable-implementations"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/dvd":{"role":"symbol","title":"IsoType.dvd","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvd"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/dvd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/dvd"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/rawrepresentable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/!=(_:_:).json new file mode 100644 index 000000000..dccf95896 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI7IsoTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/bluray.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/bluray.json new file mode 100644 index 000000000..223dbe0d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/bluray.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bluRay"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype\/bluray"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/bluRay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bluRay"}],"title":"IsoType.bluRay","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI7IsoTypeO6bluRayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/bluRay":{"role":"symbol","title":"IsoType.bluRay","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bluRay"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/bluRay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/bluray"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/dvd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/dvd.json new file mode 100644 index 000000000..718bd885a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/dvd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvd"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype\/dvd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/dvd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvd"}],"title":"IsoType.dvd","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI7IsoTypeO3dvdyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/dvd":{"role":"symbol","title":"IsoType.dvd","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvd"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/dvd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/dvd"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/encode(to:).json new file mode 100644 index 000000000..18f185080 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI7IsoTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/equatable-implementations.json new file mode 100644 index 000000000..2f5d4c942 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/hash(into:).json new file mode 100644 index 000000000..66bab5613 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI7IsoTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/hashvalue.json new file mode 100644 index 000000000..a585c2f92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI7IsoTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/init(from:).json new file mode 100644 index 000000000..283095962 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI7IsoTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/init(rawvalue:).json new file mode 100644 index 000000000..9acc3e3bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI7IsoTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/rawrepresentable-implementations.json new file mode 100644 index 000000000..925c27092 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/isotype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/isotype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/isotype\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts.json new file mode 100644 index 000000000..99ccd78a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class LibrarySummary."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"title":"ItemCounts","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10ItemCountsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/init(albumCount:artistCount:bookCount:boxSetCount:episodeCount:itemCount:movieCount:musicVideoCount:programCount:seriesCount:songCount:trailerCount:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/albumCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/artistCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/bookCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/boxSetCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/episodeCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/itemCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/movieCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/musicVideoCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/programCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/seriesCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/songCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/trailerCount"]}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/musicVideoCount":{"role":"symbol","title":"musicVideoCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the music video count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/musicVideoCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/musicvideocount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/episodeCount":{"role":"symbol","title":"episodeCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the episode count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/episodeCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/episodecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/programCount":{"role":"symbol","title":"programCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/programCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/programcount"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/bookCount":{"role":"symbol","title":"bookCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bookCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the book count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/bookCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/bookcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/trailerCount":{"role":"symbol","title":"trailerCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the trailer count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/trailerCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/trailercount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/boxSetCount":{"role":"symbol","title":"boxSetCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSetCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the box set count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/boxSetCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/boxsetcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/albumCount":{"role":"symbol","title":"albumCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/albumCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/albumcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/seriesCount":{"role":"symbol","title":"seriesCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/seriesCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/seriescount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/init(albumCount:artistCount:bookCount:boxSetCount:episodeCount:itemCount:movieCount:musicVideoCount:programCount:seriesCount:songCount:trailerCount:)":{"role":"symbol","title":"init(albumCount:artistCount:bookCount:boxSetCount:episodeCount:itemCount:movieCount:musicVideoCount:programCount:seriesCount:songCount:trailerCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bookCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"boxSetCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/init(albumCount:artistCount:bookCount:boxSetCount:episodeCount:itemCount:movieCount:musicVideoCount:programCount:seriesCount:songCount:trailerCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/init(albumcount:artistcount:bookcount:boxsetcount:episodecount:itemcount:moviecount:musicvideocount:programcount:seriescount:songcount:trailercount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/itemCount":{"role":"symbol","title":"itemCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/itemCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/itemcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/movieCount":{"role":"symbol","title":"movieCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the movie count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/movieCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/moviecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/artistCount":{"role":"symbol","title":"artistCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the artist count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/artistCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/artistcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/songCount":{"role":"symbol","title":"songCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the song count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/songCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/songcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/albumcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/albumcount.json new file mode 100644 index 000000000..a534be684 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/albumcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/albumcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/albumCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the album count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"albumCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV10albumCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/albumCount":{"role":"symbol","title":"albumCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/albumCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/albumcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/artistcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/artistcount.json new file mode 100644 index 000000000..cf23ee657 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/artistcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/artistcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/artistCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the artist count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"artistCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV11artistCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/artistCount":{"role":"symbol","title":"artistCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the artist count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/artistCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/artistcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/bookcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/bookcount.json new file mode 100644 index 000000000..b31fbf9a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/bookcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bookCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/bookcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/bookCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the book count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bookCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"bookCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV9bookCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/bookCount":{"role":"symbol","title":"bookCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bookCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the book count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/bookCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/bookcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/boxsetcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/boxsetcount.json new file mode 100644 index 000000000..21e3624ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/boxsetcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSetCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/boxsetcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/boxSetCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the box set count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSetCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"boxSetCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV11boxSetCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/boxSetCount":{"role":"symbol","title":"boxSetCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"boxSetCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the box set count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/boxSetCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/boxsetcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/episodecount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/episodecount.json new file mode 100644 index 000000000..757abb3fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/episodecount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/episodecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/episodeCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the episode count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"episodeCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV12episodeCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/episodeCount":{"role":"symbol","title":"episodeCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the episode count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/episodeCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/episodecount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/init(albumcount:artistcount:bookcount:boxsetcount:episodecount:itemcount:moviecount:musicvideocount:programcount:seriescount:songcount:trailercount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/init(albumcount:artistcount:bookcount:boxsetcount:episodecount:itemcount:moviecount:musicvideocount:programcount:seriescount:songcount:trailercount:).json new file mode 100644 index 000000000..8583e53a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/init(albumcount:artistcount:bookcount:boxsetcount:episodecount:itemcount:moviecount:musicvideocount:programcount:seriescount:songcount:trailercount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"bookCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"boxSetCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/init(albumcount:artistcount:bookcount:boxsetcount:episodecount:itemcount:moviecount:musicvideocount:programcount:seriescount:songcount:trailercount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/init(albumCount:artistCount:bookCount:boxSetCount:episodeCount:itemCount:movieCount:musicVideoCount:programCount:seriesCount:songCount:trailerCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bookCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"boxSetCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(albumCount:artistCount:bookCount:boxSetCount:episodeCount:itemCount:movieCount:musicVideoCount:programCount:seriesCount:songCount:trailerCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10ItemCountsV10albumCount06artistF004bookF006boxSetF007episodeF004itemF005movieF0010musicVideoF007programF006seriesF004songF007trailerF0ACs5Int32VSg_A11Rtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/init(albumCount:artistCount:bookCount:boxSetCount:episodeCount:itemCount:movieCount:musicVideoCount:programCount:seriesCount:songCount:trailerCount:)":{"role":"symbol","title":"init(albumCount:artistCount:bookCount:boxSetCount:episodeCount:itemCount:movieCount:musicVideoCount:programCount:seriesCount:songCount:trailerCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artistCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bookCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"boxSetCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/init(albumCount:artistCount:bookCount:boxSetCount:episodeCount:itemCount:movieCount:musicVideoCount:programCount:seriesCount:songCount:trailerCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/init(albumcount:artistcount:bookcount:boxsetcount:episodecount:itemcount:moviecount:musicvideocount:programcount:seriescount:songcount:trailercount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/init(from:).json new file mode 100644 index 000000000..70fb57774 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10ItemCountsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/itemcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/itemcount.json new file mode 100644 index 000000000..2d3c31949 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/itemcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/itemcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/itemCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"itemCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV9itemCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/itemCount":{"role":"symbol","title":"itemCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/itemCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/itemcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/moviecount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/moviecount.json new file mode 100644 index 000000000..a35a5f177 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/moviecount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/moviecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/movieCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the movie count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"movieCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV10movieCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/movieCount":{"role":"symbol","title":"movieCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the movie count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/movieCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/moviecount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/musicvideocount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/musicvideocount.json new file mode 100644 index 000000000..15475da48 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/musicvideocount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/musicvideocount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/musicVideoCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the music video count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"musicVideoCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV15musicVideoCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/musicVideoCount":{"role":"symbol","title":"musicVideoCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"musicVideoCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the music video count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/musicVideoCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/musicvideocount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/programcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/programcount.json new file mode 100644 index 000000000..05a17d880 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/programcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/programcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/programCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the program count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"programCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV12programCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/programCount":{"role":"symbol","title":"programCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/programCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/programcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/seriescount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/seriescount.json new file mode 100644 index 000000000..7542d674d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/seriescount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/seriescount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/seriesCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the series count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"seriesCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV11seriesCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/seriesCount":{"role":"symbol","title":"seriesCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/seriesCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/seriescount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/songcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/songcount.json new file mode 100644 index 000000000..6f918e878 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/songcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/songcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/songCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the song count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"songCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV9songCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/songCount":{"role":"symbol","title":"songCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the song count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/songCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/songcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/trailercount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/trailercount.json new file mode 100644 index 000000000..06726420f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemcounts/trailercount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemcounts\/trailercount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/trailerCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the trailer count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"trailerCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10ItemCountsV12trailerCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts/trailerCount":{"role":"symbol","title":"trailerCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the trailer count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts\/trailerCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemcounts\/trailercount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields.json new file mode 100644 index 000000000..adf5f6173 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"title":"ItemFields","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI10ItemFieldsO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ItemFields"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/airTime","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/basicSyncInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/canDelete","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/canDownload","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/channelImage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/channelInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/chapters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/childCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/cumulativeRunTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/customRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateCreated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastMediaAdded","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastRefreshed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastSaved","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/displayPreferencesID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/enableMediaSourceDisplay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/etag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalEtag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalSeriesID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalURLs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/extraIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/homePageURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/inheritedParentalRatingValue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/isHD","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/itemCounts","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/localTrailerCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaSourceCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaSources","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaStreams","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/overview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/people","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/playAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/presentationUniqueKey","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/primaryImageAspectRatio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/productionLocations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/recursiveItemCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/refreshState","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/remoteTrailers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/screenshotImageTags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seasonUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesPresentationUniqueKey","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesPrimaryImage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesStudio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/serviceName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/settings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/sortName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/specialEpisodeNumbers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/specialFeatureCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/studios","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/syncInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/taglines","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/tags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/themeSongIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/themeVideoIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/width"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/childCount":{"role":"symbol","title":"ItemFields.childCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"childCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/childCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/childcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/etag":{"role":"symbol","title":"ItemFields.etag","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"etag"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/etag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/etag"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/playAccess":{"role":"symbol","title":"ItemFields.playAccess","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/playAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/seriesPresentationUniqueKey":{"role":"symbol","title":"ItemFields.seriesPresentationUniqueKey","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPresentationUniqueKey"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesPresentationUniqueKey","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/seriespresentationuniquekey"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/settings":{"role":"symbol","title":"ItemFields.settings","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/settings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/settings"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/inheritedParentalRatingValue":{"role":"symbol","title":"ItemFields.inheritedParentalRatingValue","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inheritedParentalRatingValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/inheritedParentalRatingValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/inheritedparentalratingvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/originalTitle":{"role":"symbol","title":"ItemFields.originalTitle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/itemCounts":{"role":"symbol","title":"ItemFields.itemCounts","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemCounts"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/itemCounts","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/seriesPrimaryImage":{"role":"symbol","title":"ItemFields.seriesPrimaryImage","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPrimaryImage"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesPrimaryImage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/seriesprimaryimage"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/enableMediaSourceDisplay":{"role":"symbol","title":"ItemFields.enableMediaSourceDisplay","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaSourceDisplay"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/enableMediaSourceDisplay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/enablemediasourcedisplay"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/basicSyncInfo":{"role":"symbol","title":"ItemFields.basicSyncInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"basicSyncInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/basicSyncInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/basicsyncinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/homePageURL":{"role":"symbol","title":"ItemFields.homePageURL","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"homePageURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/homePageURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/homepageurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/screenshotImageTags":{"role":"symbol","title":"ItemFields.screenshotImageTags","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshotImageTags"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/screenshotImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/screenshotimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/providerIDs":{"role":"symbol","title":"ItemFields.providerIDs","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/studios":{"role":"symbol","title":"ItemFields.studios","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/studios"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/customRating":{"role":"symbol","title":"ItemFields.customRating","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"customRating"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/customRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/customrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/extraIDs":{"role":"symbol","title":"ItemFields.extraIDs","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraIDs"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/extraIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/extraids"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/refreshState":{"role":"symbol","title":"ItemFields.refreshState","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshState"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/refreshState","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/refreshstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/specialEpisodeNumbers":{"role":"symbol","title":"ItemFields.specialEpisodeNumbers","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialEpisodeNumbers"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/specialEpisodeNumbers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/specialepisodenumbers"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/dateLastMediaAdded":{"role":"symbol","title":"ItemFields.dateLastMediaAdded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastMediaAdded"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastMediaAdded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/datelastmediaadded"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/path":{"role":"symbol","title":"ItemFields.path","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/seriesStudio":{"role":"symbol","title":"ItemFields.seriesStudio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesStudio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/seriesstudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/cumulativeRunTimeTicks":{"role":"symbol","title":"ItemFields.cumulativeRunTimeTicks","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cumulativeRunTimeTicks"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/cumulativeRunTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/cumulativeruntimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/displayPreferencesID":{"role":"symbol","title":"ItemFields.displayPreferencesID","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayPreferencesID"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/displayPreferencesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/displaypreferencesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/serviceName":{"role":"symbol","title":"ItemFields.serviceName","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/serviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/servicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/themeSongIDs":{"role":"symbol","title":"ItemFields.themeSongIDs","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeSongIDs"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/themeSongIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/themesongids"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/dateLastRefreshed":{"role":"symbol","title":"ItemFields.dateLastRefreshed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastRefreshed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastRefreshed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/datelastrefreshed"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/externalEtag":{"role":"symbol","title":"ItemFields.externalEtag","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalEtag"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalEtag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/externaletag"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/overview":{"role":"symbol","title":"ItemFields.overview","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/genres":{"role":"symbol","title":"ItemFields.genres","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/remoteTrailers":{"role":"symbol","title":"ItemFields.remoteTrailers","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/remoteTrailers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/remotetrailers"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/externalURLs":{"role":"symbol","title":"ItemFields.externalURLs","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalURLs"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalURLs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/externalurls"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/externalSeriesID":{"role":"symbol","title":"ItemFields.externalSeriesID","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalSeriesID"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalSeriesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/externalseriesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/canDelete":{"role":"symbol","title":"ItemFields.canDelete","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDelete"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/canDelete","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/candelete"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/isHD":{"role":"symbol","title":"ItemFields.isHD","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/isHD","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/dateLastSaved":{"role":"symbol","title":"ItemFields.dateLastSaved","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastSaved"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastSaved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/datelastsaved"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/recursiveItemCount":{"role":"symbol","title":"ItemFields.recursiveItemCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recursiveItemCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/recursiveItemCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/recursiveitemcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/dateCreated":{"role":"symbol","title":"ItemFields.dateCreated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/datecreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/tags":{"role":"symbol","title":"ItemFields.tags","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/tags"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/sortName":{"role":"symbol","title":"ItemFields.sortName","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortName"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/sortName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/sortname"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/presentationUniqueKey":{"role":"symbol","title":"ItemFields.presentationUniqueKey","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationUniqueKey"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/presentationUniqueKey","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/presentationuniquekey"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/seasonUserData":{"role":"symbol","title":"ItemFields.seasonUserData","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonUserData"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seasonUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/seasonuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/taglines":{"role":"symbol","title":"ItemFields.taglines","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"taglines"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/taglines","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/taglines"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/productionLocations":{"role":"symbol","title":"ItemFields.productionLocations","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/productionLocations","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/productionlocations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/parentID":{"role":"symbol","title":"ItemFields.parentID","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/syncInfo":{"role":"symbol","title":"ItemFields.syncInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/syncInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/syncinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/mediaStreams":{"role":"symbol","title":"ItemFields.mediaStreams","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaStreams","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/mediastreams"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/mediaSources":{"role":"symbol","title":"ItemFields.mediaSources","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaSources","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/mediasources"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/primaryImageAspectRatio":{"role":"symbol","title":"ItemFields.primaryImageAspectRatio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/primaryImageAspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/primaryimageaspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/localTrailerCount":{"role":"symbol","title":"ItemFields.localTrailerCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"localTrailerCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/localTrailerCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/localtrailercount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/channelInfo":{"role":"symbol","title":"ItemFields.channelInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/channelInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/channelinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/specialFeatureCount":{"role":"symbol","title":"ItemFields.specialFeatureCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialFeatureCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/specialFeatureCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/specialfeaturecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/airTime":{"role":"symbol","title":"ItemFields.airTime","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"airTime"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/airTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/airtime"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/width":{"role":"symbol","title":"ItemFields.width","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/height":{"role":"symbol","title":"ItemFields.height","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/themeVideoIDs":{"role":"symbol","title":"ItemFields.themeVideoIDs","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeVideoIDs"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/themeVideoIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/themevideoids"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/channelImage":{"role":"symbol","title":"ItemFields.channelImage","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelImage"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/channelImage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/channelimage"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/people":{"role":"symbol","title":"ItemFields.people","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"people"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/people","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/people"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/canDownload":{"role":"symbol","title":"ItemFields.canDownload","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDownload"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/canDownload","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/candownload"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/mediaSourceCount":{"role":"symbol","title":"ItemFields.mediaSourceCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaSourceCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/mediasourcecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/chapters":{"role":"symbol","title":"ItemFields.chapters","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/chapters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/chapters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/!=(_:_:).json new file mode 100644 index 000000000..2ad56dcc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI10ItemFieldsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/airtime.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/airtime.json new file mode 100644 index 000000000..bc197257f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/airtime.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"airTime"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/airtime"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/airTime","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"airTime"}],"title":"ItemFields.airTime","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO7airTimeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/airTime":{"role":"symbol","title":"ItemFields.airTime","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"airTime"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/airTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/airtime"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/basicsyncinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/basicsyncinfo.json new file mode 100644 index 000000000..296ac78b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/basicsyncinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"basicSyncInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/basicsyncinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/basicSyncInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"basicSyncInfo"}],"title":"ItemFields.basicSyncInfo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO13basicSyncInfoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/basicSyncInfo":{"role":"symbol","title":"ItemFields.basicSyncInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"basicSyncInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/basicSyncInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/basicsyncinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/candelete.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/candelete.json new file mode 100644 index 000000000..2065b59d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/candelete.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDelete"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/candelete"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/canDelete","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDelete"}],"title":"ItemFields.canDelete","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO9canDeleteyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/canDelete":{"role":"symbol","title":"ItemFields.canDelete","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDelete"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/canDelete","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/candelete"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/candownload.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/candownload.json new file mode 100644 index 000000000..302fbfa11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/candownload.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDownload"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/candownload"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/canDownload","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDownload"}],"title":"ItemFields.canDownload","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO11canDownloadyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/canDownload":{"role":"symbol","title":"ItemFields.canDownload","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"canDownload"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/canDownload","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/candownload"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/channelimage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/channelimage.json new file mode 100644 index 000000000..1d3bbeeb2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/channelimage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelImage"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/channelimage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/channelImage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelImage"}],"title":"ItemFields.channelImage","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO12channelImageyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/channelImage":{"role":"symbol","title":"ItemFields.channelImage","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelImage"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/channelImage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/channelimage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/channelinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/channelinfo.json new file mode 100644 index 000000000..06d185956 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/channelinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/channelinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/channelInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelInfo"}],"title":"ItemFields.channelInfo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO11channelInfoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/channelInfo":{"role":"symbol","title":"ItemFields.channelInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/channelInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/channelinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/chapters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/chapters.json new file mode 100644 index 000000000..befd70e7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/chapters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/chapters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/chapters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapters"}],"title":"ItemFields.chapters","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO8chaptersyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/chapters":{"role":"symbol","title":"ItemFields.chapters","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"chapters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/chapters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/chapters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/childcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/childcount.json new file mode 100644 index 000000000..275a96109 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/childcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"childCount"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/childcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/childCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"childCount"}],"title":"ItemFields.childCount","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO10childCountyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/childCount":{"role":"symbol","title":"ItemFields.childCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"childCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/childCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/childcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/cumulativeruntimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/cumulativeruntimeticks.json new file mode 100644 index 000000000..68c7b49c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/cumulativeruntimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cumulativeRunTimeTicks"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/cumulativeruntimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/cumulativeRunTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cumulativeRunTimeTicks"}],"title":"ItemFields.cumulativeRunTimeTicks","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO22cumulativeRunTimeTicksyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/cumulativeRunTimeTicks":{"role":"symbol","title":"ItemFields.cumulativeRunTimeTicks","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cumulativeRunTimeTicks"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/cumulativeRunTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/cumulativeruntimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/customrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/customrating.json new file mode 100644 index 000000000..b22f45cd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/customrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"customRating"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/customrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/customRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"customRating"}],"title":"ItemFields.customRating","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO12customRatingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/customRating":{"role":"symbol","title":"ItemFields.customRating","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"customRating"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/customRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/customrating"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datecreated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datecreated.json new file mode 100644 index 000000000..447a1b6e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datecreated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/datecreated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateCreated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"}],"title":"ItemFields.dateCreated","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO11dateCreatedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/dateCreated":{"role":"symbol","title":"ItemFields.dateCreated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/datecreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datelastmediaadded.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datelastmediaadded.json new file mode 100644 index 000000000..0a5e45781 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datelastmediaadded.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastMediaAdded"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/datelastmediaadded"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastMediaAdded","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastMediaAdded"}],"title":"ItemFields.dateLastMediaAdded","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO18dateLastMediaAddedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/dateLastMediaAdded":{"role":"symbol","title":"ItemFields.dateLastMediaAdded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastMediaAdded"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastMediaAdded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/datelastmediaadded"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datelastrefreshed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datelastrefreshed.json new file mode 100644 index 000000000..564963dfc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datelastrefreshed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastRefreshed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/datelastrefreshed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastRefreshed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastRefreshed"}],"title":"ItemFields.dateLastRefreshed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO17dateLastRefreshedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/dateLastRefreshed":{"role":"symbol","title":"ItemFields.dateLastRefreshed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastRefreshed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastRefreshed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/datelastrefreshed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datelastsaved.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datelastsaved.json new file mode 100644 index 000000000..a48c2b50f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/datelastsaved.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastSaved"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/datelastsaved"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastSaved","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastSaved"}],"title":"ItemFields.dateLastSaved","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO13dateLastSavedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/dateLastSaved":{"role":"symbol","title":"ItemFields.dateLastSaved","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateLastSaved"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/dateLastSaved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/datelastsaved"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/displaypreferencesid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/displaypreferencesid.json new file mode 100644 index 000000000..1178c0d55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/displaypreferencesid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayPreferencesID"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/displaypreferencesid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/displayPreferencesID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayPreferencesID"}],"title":"ItemFields.displayPreferencesID","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO20displayPreferencesIDyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/displayPreferencesID":{"role":"symbol","title":"ItemFields.displayPreferencesID","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayPreferencesID"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/displayPreferencesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/displaypreferencesid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/enablemediasourcedisplay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/enablemediasourcedisplay.json new file mode 100644 index 000000000..8860f7005 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/enablemediasourcedisplay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaSourceDisplay"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/enablemediasourcedisplay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/enableMediaSourceDisplay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaSourceDisplay"}],"title":"ItemFields.enableMediaSourceDisplay","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO24enableMediaSourceDisplayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/enableMediaSourceDisplay":{"role":"symbol","title":"ItemFields.enableMediaSourceDisplay","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaSourceDisplay"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/enableMediaSourceDisplay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/enablemediasourcedisplay"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/encode(to:).json new file mode 100644 index 000000000..a06c44d16 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI10ItemFieldsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/equatable-implementations.json new file mode 100644 index 000000000..46966776e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/etag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/etag.json new file mode 100644 index 000000000..6e278f089 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/etag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"etag"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/etag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/etag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"etag"}],"title":"ItemFields.etag","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO4etagyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/etag":{"role":"symbol","title":"ItemFields.etag","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"etag"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/etag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/etag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/externaletag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/externaletag.json new file mode 100644 index 000000000..a882d22c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/externaletag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalEtag"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/externaletag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalEtag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalEtag"}],"title":"ItemFields.externalEtag","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO12externalEtagyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/externalEtag":{"role":"symbol","title":"ItemFields.externalEtag","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalEtag"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalEtag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/externaletag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/externalseriesid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/externalseriesid.json new file mode 100644 index 000000000..2bb3ffd7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/externalseriesid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalSeriesID"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/externalseriesid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalSeriesID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalSeriesID"}],"title":"ItemFields.externalSeriesID","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO16externalSeriesIDyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/externalSeriesID":{"role":"symbol","title":"ItemFields.externalSeriesID","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalSeriesID"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalSeriesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/externalseriesid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/externalurls.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/externalurls.json new file mode 100644 index 000000000..1fae96430 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/externalurls.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalURLs"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/externalurls"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalURLs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalURLs"}],"title":"ItemFields.externalURLs","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO12externalURLsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/externalURLs":{"role":"symbol","title":"ItemFields.externalURLs","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalURLs"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/externalURLs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/externalurls"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/extraids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/extraids.json new file mode 100644 index 000000000..703c53ab1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/extraids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraIDs"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/extraids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/extraIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraIDs"}],"title":"ItemFields.extraIDs","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO8extraIDsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/extraIDs":{"role":"symbol","title":"ItemFields.extraIDs","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"extraIDs"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/extraIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/extraids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/genres.json new file mode 100644 index 000000000..33c2bfab4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"}],"title":"ItemFields.genres","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO6genresyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/genres":{"role":"symbol","title":"ItemFields.genres","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/genres"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/hash(into:).json new file mode 100644 index 000000000..7aea6c720 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI10ItemFieldsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/hashvalue.json new file mode 100644 index 000000000..36e717405 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI10ItemFieldsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/height.json new file mode 100644 index 000000000..0d885f2f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"}],"title":"ItemFields.height","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO6heightyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/height":{"role":"symbol","title":"ItemFields.height","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/homepageurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/homepageurl.json new file mode 100644 index 000000000..d59971548 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/homepageurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"homePageURL"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/homepageurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/homePageURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"homePageURL"}],"title":"ItemFields.homePageURL","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO11homePageURLyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/homePageURL":{"role":"symbol","title":"ItemFields.homePageURL","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"homePageURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/homePageURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/homepageurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/inheritedparentalratingvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/inheritedparentalratingvalue.json new file mode 100644 index 000000000..a4efbd7f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/inheritedparentalratingvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inheritedParentalRatingValue"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/inheritedparentalratingvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/inheritedParentalRatingValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inheritedParentalRatingValue"}],"title":"ItemFields.inheritedParentalRatingValue","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO28inheritedParentalRatingValueyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/inheritedParentalRatingValue":{"role":"symbol","title":"ItemFields.inheritedParentalRatingValue","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inheritedParentalRatingValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/inheritedParentalRatingValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/inheritedparentalratingvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/init(from:).json new file mode 100644 index 000000000..881430fb9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI10ItemFieldsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/init(rawvalue:).json new file mode 100644 index 000000000..18774c86b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10ItemFieldsO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/ishd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/ishd.json new file mode 100644 index 000000000..c8d6f3669 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/ishd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/ishd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/isHD","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"}],"title":"ItemFields.isHD","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO4isHDyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/isHD":{"role":"symbol","title":"ItemFields.isHD","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHD"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/isHD","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/ishd"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/itemcounts.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/itemcounts.json new file mode 100644 index 000000000..bd2182054 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/itemcounts.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemCounts"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/itemcounts"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/itemCounts","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemCounts"}],"title":"ItemFields.itemCounts","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO10itemCountsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/itemCounts":{"role":"symbol","title":"ItemFields.itemCounts","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemCounts"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/itemCounts","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/itemcounts"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/localtrailercount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/localtrailercount.json new file mode 100644 index 000000000..11a5ba2e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/localtrailercount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"localTrailerCount"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/localtrailercount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/localTrailerCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"localTrailerCount"}],"title":"ItemFields.localTrailerCount","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO17localTrailerCountyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/localTrailerCount":{"role":"symbol","title":"ItemFields.localTrailerCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"localTrailerCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/localTrailerCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/localtrailercount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/mediasourcecount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/mediasourcecount.json new file mode 100644 index 000000000..d73f89750 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/mediasourcecount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceCount"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/mediasourcecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaSourceCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceCount"}],"title":"ItemFields.mediaSourceCount","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO16mediaSourceCountyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/mediaSourceCount":{"role":"symbol","title":"ItemFields.mediaSourceCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaSourceCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/mediasourcecount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/mediasources.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/mediasources.json new file mode 100644 index 000000000..557f343f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/mediasources.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/mediasources"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaSources","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"}],"title":"ItemFields.mediaSources","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO12mediaSourcesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/mediaSources":{"role":"symbol","title":"ItemFields.mediaSources","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaSources","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/mediasources"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/mediastreams.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/mediastreams.json new file mode 100644 index 000000000..e59d61cd2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/mediastreams.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/mediastreams"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaStreams","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"}],"title":"ItemFields.mediaStreams","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO12mediaStreamsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/mediaStreams":{"role":"symbol","title":"ItemFields.mediaStreams","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/mediaStreams","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/mediastreams"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/originaltitle.json new file mode 100644 index 000000000..35fae5273 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"}],"title":"ItemFields.originalTitle","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO13originalTitleyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/originalTitle":{"role":"symbol","title":"ItemFields.originalTitle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/overview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/overview.json new file mode 100644 index 000000000..ae7fdf344 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/overview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/overview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/overview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"}],"title":"ItemFields.overview","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO8overviewyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/overview":{"role":"symbol","title":"ItemFields.overview","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/overview"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/parentid.json new file mode 100644 index 000000000..ef9190f6c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"}],"title":"ItemFields.parentID","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO8parentIDyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/parentID":{"role":"symbol","title":"ItemFields.parentID","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/parentid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/path.json new file mode 100644 index 000000000..705bb3a98 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"}],"title":"ItemFields.path","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO4pathyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/path":{"role":"symbol","title":"ItemFields.path","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/people.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/people.json new file mode 100644 index 000000000..ea4af0414 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/people.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"people"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/people"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/people","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"people"}],"title":"ItemFields.people","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO6peopleyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/people":{"role":"symbol","title":"ItemFields.people","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"people"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/people","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/people"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/playaccess.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/playaccess.json new file mode 100644 index 000000000..d2889fc63 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/playaccess.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playAccess"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/playaccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/playAccess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playAccess"}],"title":"ItemFields.playAccess","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO10playAccessyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/playAccess":{"role":"symbol","title":"ItemFields.playAccess","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/playAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/presentationuniquekey.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/presentationuniquekey.json new file mode 100644 index 000000000..6e6756e41 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/presentationuniquekey.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationUniqueKey"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/presentationuniquekey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/presentationUniqueKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationUniqueKey"}],"title":"ItemFields.presentationUniqueKey","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO21presentationUniqueKeyyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/presentationUniqueKey":{"role":"symbol","title":"ItemFields.presentationUniqueKey","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationUniqueKey"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/presentationUniqueKey","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/presentationuniquekey"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/primaryimageaspectratio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/primaryimageaspectratio.json new file mode 100644 index 000000000..b04a7e78e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/primaryimageaspectratio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/primaryimageaspectratio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/primaryImageAspectRatio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"}],"title":"ItemFields.primaryImageAspectRatio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO23primaryImageAspectRatioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/primaryImageAspectRatio":{"role":"symbol","title":"ItemFields.primaryImageAspectRatio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/primaryImageAspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/primaryimageaspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/productionlocations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/productionlocations.json new file mode 100644 index 000000000..51a1d9279 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/productionlocations.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/productionlocations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/productionLocations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"}],"title":"ItemFields.productionLocations","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO19productionLocationsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/productionLocations":{"role":"symbol","title":"ItemFields.productionLocations","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/productionLocations","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/productionlocations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/providerids.json new file mode 100644 index 000000000..e4fdb6bb4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"}],"title":"ItemFields.providerIDs","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO11providerIDsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/providerIDs":{"role":"symbol","title":"ItemFields.providerIDs","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/rawrepresentable-implementations.json new file mode 100644 index 000000000..6bb5aae65 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/recursiveitemcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/recursiveitemcount.json new file mode 100644 index 000000000..7bd826887 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/recursiveitemcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recursiveItemCount"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/recursiveitemcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/recursiveItemCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recursiveItemCount"}],"title":"ItemFields.recursiveItemCount","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO09recursiveC5CountyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/recursiveItemCount":{"role":"symbol","title":"ItemFields.recursiveItemCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recursiveItemCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/recursiveItemCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/recursiveitemcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/refreshstate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/refreshstate.json new file mode 100644 index 000000000..71cdfb64c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/refreshstate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshState"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/refreshstate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/refreshState","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshState"}],"title":"ItemFields.refreshState","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO12refreshStateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/refreshState":{"role":"symbol","title":"ItemFields.refreshState","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshState"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/refreshState","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/refreshstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/remotetrailers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/remotetrailers.json new file mode 100644 index 000000000..e89973b4e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/remotetrailers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/remotetrailers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/remoteTrailers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"}],"title":"ItemFields.remoteTrailers","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO14remoteTrailersyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/remoteTrailers":{"role":"symbol","title":"ItemFields.remoteTrailers","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteTrailers"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/remoteTrailers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/remotetrailers"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/screenshotimagetags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/screenshotimagetags.json new file mode 100644 index 000000000..060086271 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/screenshotimagetags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshotImageTags"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/screenshotimagetags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/screenshotImageTags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshotImageTags"}],"title":"ItemFields.screenshotImageTags","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO19screenshotImageTagsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/screenshotImageTags":{"role":"symbol","title":"ItemFields.screenshotImageTags","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"screenshotImageTags"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/screenshotImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/screenshotimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seasonuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seasonuserdata.json new file mode 100644 index 000000000..127c03151 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seasonuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonUserData"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/seasonuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seasonUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonUserData"}],"title":"ItemFields.seasonUserData","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO14seasonUserDatayA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/seasonUserData":{"role":"symbol","title":"ItemFields.seasonUserData","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonUserData"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seasonUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/seasonuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seriespresentationuniquekey.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seriespresentationuniquekey.json new file mode 100644 index 000000000..65bd50672 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seriespresentationuniquekey.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPresentationUniqueKey"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/seriespresentationuniquekey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesPresentationUniqueKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPresentationUniqueKey"}],"title":"ItemFields.seriesPresentationUniqueKey","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO27seriesPresentationUniqueKeyyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/seriesPresentationUniqueKey":{"role":"symbol","title":"ItemFields.seriesPresentationUniqueKey","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPresentationUniqueKey"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesPresentationUniqueKey","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/seriespresentationuniquekey"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seriesprimaryimage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seriesprimaryimage.json new file mode 100644 index 000000000..46d2d8953 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seriesprimaryimage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPrimaryImage"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/seriesprimaryimage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesPrimaryImage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPrimaryImage"}],"title":"ItemFields.seriesPrimaryImage","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO18seriesPrimaryImageyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/seriesPrimaryImage":{"role":"symbol","title":"ItemFields.seriesPrimaryImage","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesPrimaryImage"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesPrimaryImage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/seriesprimaryimage"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seriesstudio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seriesstudio.json new file mode 100644 index 000000000..0025124d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/seriesstudio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStudio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/seriesstudio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesStudio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStudio"}],"title":"ItemFields.seriesStudio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO12seriesStudioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/seriesStudio":{"role":"symbol","title":"ItemFields.seriesStudio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/seriesStudio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/seriesstudio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/servicename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/servicename.json new file mode 100644 index 000000000..56e3c2710 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/servicename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/servicename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/serviceName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"}],"title":"ItemFields.serviceName","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO11serviceNameyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/serviceName":{"role":"symbol","title":"ItemFields.serviceName","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/serviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/servicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/settings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/settings.json new file mode 100644 index 000000000..b8c8af7bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/settings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/settings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/settings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"}],"title":"ItemFields.settings","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO8settingsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/settings":{"role":"symbol","title":"ItemFields.settings","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/settings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/settings"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/sortname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/sortname.json new file mode 100644 index 000000000..eb97ebe7d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/sortname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortName"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/sortname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/sortName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortName"}],"title":"ItemFields.sortName","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO8sortNameyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/sortName":{"role":"symbol","title":"ItemFields.sortName","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortName"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/sortName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/sortname"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/specialepisodenumbers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/specialepisodenumbers.json new file mode 100644 index 000000000..85ff5daa7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/specialepisodenumbers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialEpisodeNumbers"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/specialepisodenumbers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/specialEpisodeNumbers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialEpisodeNumbers"}],"title":"ItemFields.specialEpisodeNumbers","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO21specialEpisodeNumbersyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/specialEpisodeNumbers":{"role":"symbol","title":"ItemFields.specialEpisodeNumbers","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialEpisodeNumbers"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/specialEpisodeNumbers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/specialepisodenumbers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/specialfeaturecount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/specialfeaturecount.json new file mode 100644 index 000000000..93b5aaccd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/specialfeaturecount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialFeatureCount"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/specialfeaturecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/specialFeatureCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialFeatureCount"}],"title":"ItemFields.specialFeatureCount","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO19specialFeatureCountyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/specialFeatureCount":{"role":"symbol","title":"ItemFields.specialFeatureCount","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"specialFeatureCount"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/specialFeatureCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/specialfeaturecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/studios.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/studios.json new file mode 100644 index 000000000..9eb07d96b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/studios.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/studios"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/studios","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"}],"title":"ItemFields.studios","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO7studiosyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/studios":{"role":"symbol","title":"ItemFields.studios","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/syncinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/syncinfo.json new file mode 100644 index 000000000..e9aa155a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/syncinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/syncinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/syncInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncInfo"}],"title":"ItemFields.syncInfo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO8syncInfoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/syncInfo":{"role":"symbol","title":"ItemFields.syncInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/syncInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/syncinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/taglines.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/taglines.json new file mode 100644 index 000000000..a2f9b1745 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/taglines.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"taglines"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/taglines"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/taglines","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"taglines"}],"title":"ItemFields.taglines","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO8taglinesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/taglines":{"role":"symbol","title":"ItemFields.taglines","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"taglines"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/taglines","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/taglines"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/tags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/tags.json new file mode 100644 index 000000000..cd706a24d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/tags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/tags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/tags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"}],"title":"ItemFields.tags","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO4tagsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/tags":{"role":"symbol","title":"ItemFields.tags","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/themesongids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/themesongids.json new file mode 100644 index 000000000..7cbd13593 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/themesongids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeSongIDs"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/themesongids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/themeSongIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeSongIDs"}],"title":"ItemFields.themeSongIDs","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO12themeSongIDsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/themeSongIDs":{"role":"symbol","title":"ItemFields.themeSongIDs","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeSongIDs"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/themeSongIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/themesongids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/themevideoids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/themevideoids.json new file mode 100644 index 000000000..a93da3808 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/themevideoids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeVideoIDs"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/themevideoids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/themeVideoIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeVideoIDs"}],"title":"ItemFields.themeVideoIDs","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO13themeVideoIDsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/themeVideoIDs":{"role":"symbol","title":"ItemFields.themeVideoIDs","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"themeVideoIDs"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/themeVideoIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/themevideoids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/width.json new file mode 100644 index 000000000..5606dc96d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfields/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfields\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"}],"title":"ItemFields.width","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFieldsO5widthyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields/width":{"role":"symbol","title":"ItemFields.width","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfields\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter.json new file mode 100644 index 000000000..514f55ec4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum ItemFilter."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"title":"ItemFilter","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI10ItemFilterO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/dislikes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFavoriteOrLikes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isNotFolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isResumable","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isUnplayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/likes"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isFavorite":{"role":"symbol","title":"ItemFilter.isFavorite","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isResumable":{"role":"symbol","title":"ItemFilter.isResumable","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResumable"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isResumable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isresumable"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isNotFolder":{"role":"symbol","title":"ItemFilter.isNotFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isNotFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isnotfolder"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/dislikes":{"role":"symbol","title":"ItemFilter.dislikes","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dislikes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/dislikes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/dislikes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isPlayed":{"role":"symbol","title":"ItemFilter.isPlayed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isFolder":{"role":"symbol","title":"ItemFilter.isFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/rawrepresentable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isUnplayed":{"role":"symbol","title":"ItemFilter.isUnplayed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnplayed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isUnplayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isunplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isFavoriteOrLikes":{"role":"symbol","title":"ItemFilter.isFavoriteOrLikes","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavoriteOrLikes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFavoriteOrLikes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isfavoriteorlikes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/likes":{"role":"symbol","title":"ItemFilter.likes","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"likes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/likes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/likes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/!=(_:_:).json new file mode 100644 index 000000000..64603124b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI10ItemFilterO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/dislikes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/dislikes.json new file mode 100644 index 000000000..0833ac76f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/dislikes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dislikes"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/dislikes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/dislikes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dislikes"}],"title":"ItemFilter.dislikes","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFilterO8dislikesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/dislikes":{"role":"symbol","title":"ItemFilter.dislikes","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dislikes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/dislikes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/dislikes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/encode(to:).json new file mode 100644 index 000000000..3b3af1610 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI10ItemFilterO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/equatable-implementations.json new file mode 100644 index 000000000..a2213abdb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/hash(into:).json new file mode 100644 index 000000000..2ae69f2b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI10ItemFilterO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/hashvalue.json new file mode 100644 index 000000000..c549172b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI10ItemFilterO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/init(from:).json new file mode 100644 index 000000000..2a4ebb24f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI10ItemFilterO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/init(rawvalue:).json new file mode 100644 index 000000000..3c0d3165e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10ItemFilterO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isfavorite.json new file mode 100644 index 000000000..f643e0be3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"}],"title":"ItemFilter.isFavorite","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFilterO10isFavoriteyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isFavorite":{"role":"symbol","title":"ItemFilter.isFavorite","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isfavorite"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isfavoriteorlikes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isfavoriteorlikes.json new file mode 100644 index 000000000..0589c9714 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isfavoriteorlikes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavoriteOrLikes"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/isfavoriteorlikes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFavoriteOrLikes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavoriteOrLikes"}],"title":"ItemFilter.isFavoriteOrLikes","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFilterO17isFavoriteOrLikesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isFavoriteOrLikes":{"role":"symbol","title":"ItemFilter.isFavoriteOrLikes","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavoriteOrLikes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFavoriteOrLikes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isfavoriteorlikes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isfolder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isfolder.json new file mode 100644 index 000000000..d0465dd2d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isfolder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/isfolder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"}],"title":"ItemFilter.isFolder","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFilterO8isFolderyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isFolder":{"role":"symbol","title":"ItemFilter.isFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isnotfolder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isnotfolder.json new file mode 100644 index 000000000..3a2d7dcda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isnotfolder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotFolder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/isnotfolder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isNotFolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotFolder"}],"title":"ItemFilter.isNotFolder","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFilterO11isNotFolderyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isNotFolder":{"role":"symbol","title":"ItemFilter.isNotFolder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotFolder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isNotFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isnotfolder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isplayed.json new file mode 100644 index 000000000..385184548 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/isplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"}],"title":"ItemFilter.isPlayed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFilterO8isPlayedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isPlayed":{"role":"symbol","title":"ItemFilter.isPlayed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isresumable.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isresumable.json new file mode 100644 index 000000000..5ed065aab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isresumable.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResumable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/isresumable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isResumable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResumable"}],"title":"ItemFilter.isResumable","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFilterO11isResumableyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isResumable":{"role":"symbol","title":"ItemFilter.isResumable","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResumable"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isResumable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isresumable"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isunplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isunplayed.json new file mode 100644 index 000000000..7d29c17d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/isunplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnplayed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/isunplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isUnplayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnplayed"}],"title":"ItemFilter.isUnplayed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFilterO10isUnplayedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/isUnplayed":{"role":"symbol","title":"ItemFilter.isUnplayed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnplayed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/isUnplayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/isunplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/likes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/likes.json new file mode 100644 index 000000000..d496945d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/likes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"likes"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/likes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/likes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"likes"}],"title":"ItemFilter.likes","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10ItemFilterO5likesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/likes":{"role":"symbol","title":"ItemFilter.likes","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"likes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/likes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/likes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/rawrepresentable-implementations.json new file mode 100644 index 000000000..488e12c58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/itemfilter/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/itemfilter\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/itemfilter\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient.json new file mode 100644 index 000000000..7a8a0a377 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"final"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/3Get17APIClientDelegateP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"title":"JellyfinClient","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:11JellyfinAPI0A6ClientC","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Structures","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/init(configuration:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/accessToken","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/configuration-swift.property"]},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/authHeaders(accessToken:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/data(for:delegate:configure:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/download(for:delegate:configure:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/download(resumeFrom:delegate:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/send(_:delegate:configure:)-3bt8v","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/send(_:delegate:configure:)-8ua0w"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/send(_:delegate:configure:)-3bt8v":{"role":"symbol","title":"send(_:delegate:configure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4send_8delegate9configure3Get8ResponseVyxGAG7RequestVyxG_So24NSURLSessionDataDelegate_pSgy10Foundation10URLRequestVzKcSgtYaKSeRzlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4send_8delegate9configure3Get8ResponseVyxGAG7RequestVyxG_So24NSURLSessionDataDelegate_pSgy10Foundation10URLRequestVzKcSgtYaKSeRzlF1TL_xmfp"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/send(_:delegate:configure:)-3bt8v","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/send(_:delegate:configure:)-3bt8v"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct":{"role":"symbol","title":"JellyfinClient.Configuration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Configuration"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/configuration-swift.property":{"role":"symbol","title":"configuration","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Configuration","preciseIdentifier":"s:11JellyfinAPI0A6ClientC13ConfigurationV"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/configuration-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/APIClientDelegate-Implementations":{"role":"collectionGroup","title":"APIClientDelegate Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/apiclientdelegate-implementations"},"doc://JellyfinAPI/3Get17APIClientDelegateP":{"type":"unresolvable","title":"Get.APIClientDelegate","identifier":"doc:\/\/JellyfinAPI\/3Get17APIClientDelegateP"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/data(for:delegate:configure:)":{"role":"symbol","title":"data(for:delegate:configure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4data3for8delegate9configure3Get8ResponseVy10Foundation4DataVGAH7RequestVyxG_So012NSURLSessionK8Delegate_pSgyAK10URLRequestVzKcSgtYaKlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/data(for:delegate:configure:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/data(for:delegate:configure:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/init(configuration:)":{"role":"symbol","title":"init(configuration:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Configuration","preciseIdentifier":"s:11JellyfinAPI0A6ClientC13ConfigurationV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/init(configuration:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/init(configuration:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/download(for:delegate:configure:)":{"role":"symbol","title":"download(for:delegate:configure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"download"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC8download3for8delegate9configure3Get8ResponseVy10Foundation3URLVGAH7RequestVyxG_So28NSURLSessionDownloadDelegate_pSgyAK10URLRequestVzKcSgtYaKlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDownloadDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDownloadDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/download(for:delegate:configure:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/download(for:delegate:configure:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/accessToken":{"role":"symbol","title":"accessToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/accessToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/accesstoken"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/authHeaders(accessToken:)":{"role":"symbol","title":"authHeaders(accessToken:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authHeaders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/authHeaders(accessToken:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/authheaders(accesstoken:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/send(_:delegate:configure:)-8ua0w":{"role":"symbol","title":"send(_:delegate:configure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/send(_:delegate:configure:)-8ua0w","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/send(_:delegate:configure:)-8ua0w"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/download(resumeFrom:delegate:)":{"role":"symbol","title":"download(resumeFrom:delegate:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"download"},{"kind":"text","text":"("},{"kind":"externalParam","text":"resumeFrom"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDownloadDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDownloadDelegate"},{"kind":"text","text":"?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/download(resumeFrom:delegate:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/download(resumefrom:delegate:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/accesstoken.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/accesstoken.json new file mode 100644 index 000000000..5cae0e066 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/accesstoken.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/accesstoken"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/accessToken","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"accessToken","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI0A6ClientC11accessTokenSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/accessToken":{"role":"symbol","title":"accessToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/accessToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/accesstoken"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/apiclientdelegate-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/apiclientdelegate-implementations.json new file mode 100644 index 000000000..c3a12324c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/apiclientdelegate-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/apiclientdelegate-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"APIClientDelegate Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:didReceiveInvalidResponse:data:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:makeURLFor:query:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:shouldRetry:error:attempts:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:validateResponse:data:task:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:willSendRequest:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/shouldClientRetry(_:for:withError:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/client(_:validateResponse:data:task:)":{"role":"symbol","title":"client(_:validateResponse:data:task:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"validateResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HTTPURLResponse","preciseIdentifier":"c:objc(cs)NSHTTPURLResponse"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"task"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionTask","preciseIdentifier":"c:objc(cs)NSURLSessionTask"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Validates response for the given request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:validateResponse:data:task:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/client(_:validateresponse:data:task:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/client(_:shouldRetry:error:attempts:)":{"role":"symbol","title":"client(_:shouldRetry:error:attempts:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shouldRetry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionTask","preciseIdentifier":"c:objc(cs)NSURLSessionTask"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"attempts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets called after a networking failure. Only one retry attempt is allowed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:shouldRetry:error:attempts:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/client(_:shouldretry:error:attempts:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/client(_:makeURLFor:query:)":{"role":"symbol","title":"client(_:makeURLFor:query:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"makeURLFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"query"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]?) "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Constructs URL for the given request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:makeURLFor:query:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/client(_:makeurlfor:query:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/client(_:didReceiveInvalidResponse:data:)":{"role":"symbol","title":"client(_:didReceiveInvalidResponse:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveInvalidResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HTTPURLResponse","preciseIdentifier":"c:objc(cs)NSHTTPURLResponse"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:didReceiveInvalidResponse:data:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/client(_:didreceiveinvalidresponse:data:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/shouldClientRetry(_:for:withError:)":{"role":"symbol","title":"shouldClientRetry(_:for:withError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"shouldClientRetry"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/shouldClientRetry(_:for:withError:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/shouldclientretry(_:for:witherror:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/client(_:willSendRequest:)":{"role":"symbol","title":"client(_:willSendRequest:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willSendRequest"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Allows you to modify the request right before it is sent."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:willSendRequest:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/client(_:willsendrequest:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/authheaders(accesstoken:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/authheaders(accesstoken:).json new file mode 100644 index 000000000..b07bcdd62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/authheaders(accesstoken:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authHeaders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/authheaders(accesstoken:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/authHeaders(accessToken:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authHeaders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"authHeaders(accessToken:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:11JellyfinAPI0A6ClientC11authHeaders11accessTokenS2S_tF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/authHeaders(accessToken:)":{"role":"symbol","title":"authHeaders(accessToken:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authHeaders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/authHeaders(accessToken:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/authheaders(accesstoken:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:didreceiveinvalidresponse:data:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:didreceiveinvalidresponse:data:).json new file mode 100644 index 000000000..492783052 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:didreceiveinvalidresponse:data:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveInvalidResponse"},{"kind":"text","text":" "},{"kind":"internalParam","text":"response"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HTTPURLResponse","preciseIdentifier":"c:objc(cs)NSHTTPURLResponse"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/client(_:didreceiveinvalidresponse:data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:didReceiveInvalidResponse:data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"APIClientDelegate.client(_:didReceiveInvalidResponse:data:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"client(_:didReceiveInvalidResponse:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveInvalidResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HTTPURLResponse","preciseIdentifier":"c:objc(cs)NSHTTPURLResponse"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"}],"symbolKind":"method","externalID":"s:3Get17APIClientDelegatePAAE6client_25didReceiveInvalidResponse4datas5Error_pAA0B0C_So17NSHTTPURLResponseC10Foundation4DataVtF::SYNTHESIZED::s:11JellyfinAPI0A6ClientC","extendedModule":"Get","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/client(_:didReceiveInvalidResponse:data:)":{"role":"symbol","title":"client(_:didReceiveInvalidResponse:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveInvalidResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HTTPURLResponse","preciseIdentifier":"c:objc(cs)NSHTTPURLResponse"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:didReceiveInvalidResponse:data:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/client(_:didreceiveinvalidresponse:data:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/APIClientDelegate-Implementations":{"role":"collectionGroup","title":"APIClientDelegate Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/apiclientdelegate-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:makeurlfor:query:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:makeurlfor:query:).json new file mode 100644 index 000000000..bcfe0e1dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:makeurlfor:query:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"makeURLFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"query"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]?) "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The URL for the request. Return "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" to use the default"},{"type":"text","text":" "},{"type":"text","text":"logic used by client."}]}]},{"kind":"parameters","parameters":[{"name":"client","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The client that sends the request."}]}]},{"name":"url","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The URL passed by the client."}]}]},{"name":"request","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The request about to be sent."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/client(_:makeurlfor:query:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:makeURLFor:query:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Constructs URL for the given request."}],"kind":"symbol","metadata":{"role":"symbol","title":"client(_:makeURLFor:query:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"makeURLFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"query"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]?) "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"?"}],"symbolKind":"method","externalID":"s:3Get17APIClientDelegatePAAE6client_10makeURLFor5query10Foundation3URLVSgAA0B0C_SSSaySS_SSSgtGSgtKF::SYNTHESIZED::s:11JellyfinAPI0A6ClientC","extendedModule":"Get","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/client(_:makeURLFor:query:)":{"role":"symbol","title":"client(_:makeURLFor:query:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"makeURLFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"query"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]?) "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Constructs URL for the given request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:makeURLFor:query:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/client(_:makeurlfor:query:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/APIClientDelegate-Implementations":{"role":"collectionGroup","title":"APIClientDelegate Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/apiclientdelegate-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:shouldretry:error:attempts:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:shouldretry:error:attempts:).json new file mode 100644 index 000000000..74412cf8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:shouldretry:error:attempts:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shouldRetry"},{"kind":"text","text":" "},{"kind":"internalParam","text":"task"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionTask","preciseIdentifier":"c:objc(cs)NSURLSessionTask"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"attempts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Return "},{"type":"codeVoice","code":"true"},{"type":"text","text":" to retry the request."}]}]},{"kind":"parameters","parameters":[{"name":"client","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The client that sent the request."}]}]},{"name":"task","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The failed task."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The encountered error."}]}]},{"name":"attempts","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The number of already performed attempts."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"aside","style":"important","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This method will only be called for network requests, but not for"},{"type":"text","text":" "},{"type":"text","text":"response body decoding failures or failures with creating requests using"},{"type":"text","text":" "},{"type":"codeVoice","code":"client(_:makeURLFor:query:)-9bylj"},{"type":"text","text":" and "},{"type":"codeVoice","code":"client(_:willSendRequest:)-2d1ke"},{"type":"text","text":"."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/client(_:shouldretry:error:attempts:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:shouldRetry:error:attempts:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets called after a networking failure. Only one retry attempt is allowed."}],"kind":"symbol","metadata":{"role":"symbol","title":"client(_:shouldRetry:error:attempts:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shouldRetry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionTask","preciseIdentifier":"c:objc(cs)NSURLSessionTask"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"attempts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"method","externalID":"s:3Get17APIClientDelegatePAAE6client_11shouldRetry5error8attemptsSbAA0B0C_So16NSURLSessionTaskCs5Error_pSitYaKF::SYNTHESIZED::s:11JellyfinAPI0A6ClientC","extendedModule":"Get","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/APIClientDelegate-Implementations":{"role":"collectionGroup","title":"APIClientDelegate Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/apiclientdelegate-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/client(_:shouldRetry:error:attempts:)":{"role":"symbol","title":"client(_:shouldRetry:error:attempts:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shouldRetry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionTask","preciseIdentifier":"c:objc(cs)NSURLSessionTask"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"attempts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets called after a networking failure. Only one retry attempt is allowed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:shouldRetry:error:attempts:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/client(_:shouldretry:error:attempts:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:validateresponse:data:task:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:validateresponse:data:task:).json new file mode 100644 index 000000000..39d5a107c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:validateresponse:data:task:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"validateResponse"},{"kind":"text","text":" "},{"kind":"internalParam","text":"response"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HTTPURLResponse","preciseIdentifier":"c:objc(cs)NSHTTPURLResponse"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"task"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionTask","preciseIdentifier":"c:objc(cs)NSURLSessionTask"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"client","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The client that sent the request."}]}]},{"name":"response","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The response with an invalid status code."}]}]},{"name":"data","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Body of the response, if any."}]}]},{"name":"request","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Failing request."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An error to be returned to the user. By default, throws"},{"type":"text","text":" "},{"type":"codeVoice","code":"APIError\/unacceptableStatusCode(_:)"},{"type":"text","text":" if the code is outside of"},{"type":"text","text":" "},{"type":"text","text":"the "},{"type":"codeVoice","code":"200..<300"},{"type":"text","text":" range."}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/client(_:validateresponse:data:task:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:validateResponse:data:task:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Validates response for the given request."}],"kind":"symbol","metadata":{"role":"symbol","title":"client(_:validateResponse:data:task:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"validateResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HTTPURLResponse","preciseIdentifier":"c:objc(cs)NSHTTPURLResponse"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"task"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionTask","preciseIdentifier":"c:objc(cs)NSURLSessionTask"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:3Get17APIClientDelegatePAAE6client_16validateResponse4data4taskyAA0B0C_So17NSHTTPURLResponseC10Foundation4DataVSo16NSURLSessionTaskCtKF::SYNTHESIZED::s:11JellyfinAPI0A6ClientC","extendedModule":"Get","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/APIClientDelegate-Implementations":{"role":"collectionGroup","title":"APIClientDelegate Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/apiclientdelegate-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/client(_:validateResponse:data:task:)":{"role":"symbol","title":"client(_:validateResponse:data:task:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"validateResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HTTPURLResponse","preciseIdentifier":"c:objc(cs)NSHTTPURLResponse"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"task"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionTask","preciseIdentifier":"c:objc(cs)NSURLSessionTask"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Validates response for the given request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:validateResponse:data:task:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/client(_:validateresponse:data:task:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:willsendrequest:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:willsendrequest:).json new file mode 100644 index 000000000..2c56b9cc1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/client(_:willsendrequest:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willSendRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"client","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The client that sends the request."}]}]},{"name":"request","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The request about to be sent. Can be modified"}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Gets called right before sending the request. If the retries are enabled,"},{"type":"text","text":" "},{"type":"text","text":"is called before every attempt."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/client(_:willsendrequest:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:willSendRequest:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Allows you to modify the request right before it is sent."}],"kind":"symbol","metadata":{"role":"symbol","title":"client(_:willSendRequest:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willSendRequest"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:11JellyfinAPI0A6ClientC6client_15willSendRequesty3Get9APIClientC_10Foundation10URLRequestVztYaKF","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/APIClientDelegate-Implementations":{"role":"collectionGroup","title":"APIClientDelegate Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/apiclientdelegate-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/client(_:willSendRequest:)":{"role":"symbol","title":"client(_:willSendRequest:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willSendRequest"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Allows you to modify the request right before it is sent."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/client(_:willSendRequest:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/client(_:willsendrequest:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.property.json new file mode 100644 index 000000000..098d9dbfe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","preciseIdentifier":"s:11JellyfinAPI0A6ClientC13ConfigurationV","text":"Configuration"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/configuration-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Configuration","preciseIdentifier":"s:11JellyfinAPI0A6ClientC13ConfigurationV"}],"title":"configuration","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI0A6ClientC13configurationAC13ConfigurationVvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/configuration-swift.property":{"role":"symbol","title":"configuration","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Configuration","preciseIdentifier":"s:11JellyfinAPI0A6ClientC13ConfigurationV"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/configuration-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct":{"role":"symbol","title":"JellyfinClient.Configuration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Configuration"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct.json new file mode 100644 index 000000000..05a1432af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"title":"JellyfinClient.Configuration","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI0A6ClientC13ConfigurationV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Configuration"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/init(url:client:deviceName:deviceID:version:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/appVersion","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/client","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/deviceName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/url"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/init(url:client:deviceName:deviceID:version:)":{"role":"symbol","title":"init(url:client:deviceName:deviceID:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/init(url:client:deviceName:deviceID:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/init(url:client:devicename:deviceid:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct":{"role":"symbol","title":"JellyfinClient.Configuration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Configuration"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/client":{"role":"symbol","title":"client","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Client name"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/client","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/client"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/deviceName":{"role":"symbol","title":"deviceName","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Client device name"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/deviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/devicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/appVersion":{"role":"symbol","title":"appVersion","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Current app version"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/appVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/appversion"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Unique device ID"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/deviceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/appversion.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/appversion.json new file mode 100644 index 000000000..b1a1805df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/appversion.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/appversion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/appVersion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Current app version"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"appVersion","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI0A6ClientC13ConfigurationV10appVersionSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct":{"role":"symbol","title":"JellyfinClient.Configuration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Configuration"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/appVersion":{"role":"symbol","title":"appVersion","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Current app version"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/appVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/appversion"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/client.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/client.json new file mode 100644 index 000000000..08d1915f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/client.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Example: Jellyfin iOS"}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/client"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/client","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Client name"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"client","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI0A6ClientC13ConfigurationV6clientSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/client":{"role":"symbol","title":"client","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Client name"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/client","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/client"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct":{"role":"symbol","title":"JellyfinClient.Configuration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Configuration"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/deviceid.json new file mode 100644 index 000000000..0336377c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Unique device ID"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI0A6ClientC13ConfigurationV8deviceIDSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct":{"role":"symbol","title":"JellyfinClient.Configuration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Configuration"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Unique device ID"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/deviceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/devicename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/devicename.json new file mode 100644 index 000000000..a81dee13e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/devicename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/devicename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/deviceName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Client device name"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"deviceName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI0A6ClientC13ConfigurationV10deviceNameSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/deviceName":{"role":"symbol","title":"deviceName","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Client device name"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/deviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/devicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct":{"role":"symbol","title":"JellyfinClient.Configuration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Configuration"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/init(url:client:devicename:deviceid:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/init(url:client:devicename:deviceid:version:).json new file mode 100644 index 000000000..e95b84449 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/init(url:client:devicename:deviceid:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/init(url:client:devicename:deviceid:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/init(url:client:deviceName:deviceID:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(url:client:deviceName:deviceID:version:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI0A6ClientC13ConfigurationV3url6client10deviceName0G2ID7versionAE10Foundation3URLV_S4Stcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/init(url:client:deviceName:deviceID:version:)":{"role":"symbol","title":"init(url:client:deviceName:deviceID:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/init(url:client:deviceName:deviceID:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/init(url:client:devicename:deviceid:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct":{"role":"symbol","title":"JellyfinClient.Configuration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Configuration"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/url.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/url.json new file mode 100644 index 000000000..b4a6b8b91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/configuration-swift.struct/url.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/url"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/url","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"}],"title":"url","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI0A6ClientC13ConfigurationV3url10Foundation3URLVvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct":{"role":"symbol","title":"JellyfinClient.Configuration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Configuration"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/data(for:delegate:configure:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/data(for:delegate:configure:).json new file mode 100644 index 000000000..53d973eb5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/data(for:delegate:configure:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4data3for8delegate9configure3Get8ResponseVy10Foundation4DataVGAH7RequestVyxG_So012NSURLSessionK8Delegate_pSgyAK10URLRequestVzKcSgtYaKlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/data(for:delegate:configure:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/data(for:delegate:configure:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4data3for8delegate9configure3Get8ResponseVy10Foundation4DataVGAH7RequestVyxG_So012NSURLSessionK8Delegate_pSgyAK10URLRequestVzKcSgtYaKlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"title":"data(for:delegate:configure:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:11JellyfinAPI0A6ClientC4data3for8delegate9configure3Get8ResponseVy10Foundation4DataVGAH7RequestVyxG_So012NSURLSessionK8Delegate_pSgyAK10URLRequestVzKcSgtYaKlF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/data(for:delegate:configure:)":{"role":"symbol","title":"data(for:delegate:configure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4data3for8delegate9configure3Get8ResponseVy10Foundation4DataVGAH7RequestVyxG_So012NSURLSessionK8Delegate_pSgyAK10URLRequestVzKcSgtYaKlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/data(for:delegate:configure:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/data(for:delegate:configure:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/download(for:delegate:configure:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/download(for:delegate:configure:).json new file mode 100644 index 000000000..d89cd5c8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/download(for:delegate:configure:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"download"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC8download3for8delegate9configure3Get8ResponseVy10Foundation3URLVGAH7RequestVyxG_So28NSURLSessionDownloadDelegate_pSgyAK10URLRequestVzKcSgtYaKlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDownloadDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDownloadDelegate"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/download(for:delegate:configure:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/download(for:delegate:configure:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"download"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC8download3for8delegate9configure3Get8ResponseVy10Foundation3URLVGAH7RequestVyxG_So28NSURLSessionDownloadDelegate_pSgyAK10URLRequestVzKcSgtYaKlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDownloadDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDownloadDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":">"}],"title":"download(for:delegate:configure:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:11JellyfinAPI0A6ClientC8download3for8delegate9configure3Get8ResponseVy10Foundation3URLVGAH7RequestVyxG_So28NSURLSessionDownloadDelegate_pSgyAK10URLRequestVzKcSgtYaKlF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/download(for:delegate:configure:)":{"role":"symbol","title":"download(for:delegate:configure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"download"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC8download3for8delegate9configure3Get8ResponseVy10Foundation3URLVGAH7RequestVyxG_So28NSURLSessionDownloadDelegate_pSgyAK10URLRequestVzKcSgtYaKlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDownloadDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDownloadDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/download(for:delegate:configure:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/download(for:delegate:configure:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/download(resumefrom:delegate:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/download(resumefrom:delegate:).json new file mode 100644 index 000000000..4a2205205 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/download(resumefrom:delegate:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"download"},{"kind":"text","text":"("},{"kind":"externalParam","text":"resumeFrom"},{"kind":"text","text":" "},{"kind":"internalParam","text":"resumeData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDownloadDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDownloadDelegate"},{"kind":"text","text":"? = nil) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/download(resumefrom:delegate:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/download(resumeFrom:delegate:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"download"},{"kind":"text","text":"("},{"kind":"externalParam","text":"resumeFrom"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDownloadDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDownloadDelegate"},{"kind":"text","text":"?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":">"}],"title":"download(resumeFrom:delegate:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:11JellyfinAPI0A6ClientC8download10resumeFrom8delegate3Get8ResponseVy10Foundation3URLVGAJ4DataV_So28NSURLSessionDownloadDelegate_pSgtYaKF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/download(resumeFrom:delegate:)":{"role":"symbol","title":"download(resumeFrom:delegate:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"download"},{"kind":"text","text":"("},{"kind":"externalParam","text":"resumeFrom"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDownloadDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDownloadDelegate"},{"kind":"text","text":"?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/download(resumeFrom:delegate:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/download(resumefrom:delegate:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/init(configuration:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/init(configuration:).json new file mode 100644 index 000000000..65f7926d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/init(configuration:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","preciseIdentifier":"s:11JellyfinAPI0A6ClientC13ConfigurationV","text":"Configuration"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/init(configuration:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/init(configuration:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Configuration","preciseIdentifier":"s:11JellyfinAPI0A6ClientC13ConfigurationV"},{"kind":"text","text":")"}],"title":"init(configuration:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI0A6ClientC13configurationA2C13ConfigurationV_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/init(configuration:)":{"role":"symbol","title":"init(configuration:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Configuration","preciseIdentifier":"s:11JellyfinAPI0A6ClientC13ConfigurationV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/init(configuration:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/init(configuration:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/Configuration-swift.struct":{"role":"symbol","title":"JellyfinClient.Configuration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Configuration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/Configuration-swift.struct","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Configuration"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient\/configuration-swift.struct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/send(_:delegate:configure:)-3bt8v.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/send(_:delegate:configure:)-3bt8v.json new file mode 100644 index 000000000..164e39c11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/send(_:delegate:configure:)-3bt8v.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4send_8delegate9configure3Get8ResponseVyxGAG7RequestVyxG_So24NSURLSessionDataDelegate_pSgy10Foundation10URLRequestVzKcSgtYaKSeRzlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4send_8delegate9configure3Get8ResponseVyxGAG7RequestVyxG_So24NSURLSessionDataDelegate_pSgy10Foundation10URLRequestVzKcSgtYaKSeRzlF1TL_xmfp"},{"kind":"text","text":"> "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Decodable","preciseIdentifier":"s:Se"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/send(_:delegate:configure:)-3bt8v"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/send(_:delegate:configure:)-3bt8v","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4send_8delegate9configure3Get8ResponseVyxGAG7RequestVyxG_So24NSURLSessionDataDelegate_pSgy10Foundation10URLRequestVzKcSgtYaKSeRzlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4send_8delegate9configure3Get8ResponseVyxGAG7RequestVyxG_So24NSURLSessionDataDelegate_pSgy10Foundation10URLRequestVzKcSgtYaKSeRzlF1TL_xmfp"},{"kind":"text","text":">"}],"title":"send(_:delegate:configure:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:11JellyfinAPI0A6ClientC4send_8delegate9configure3Get8ResponseVyxGAG7RequestVyxG_So24NSURLSessionDataDelegate_pSgy10Foundation10URLRequestVzKcSgtYaKSeRzlF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/send(_:delegate:configure:)-3bt8v":{"role":"symbol","title":"send(_:delegate:configure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4send_8delegate9configure3Get8ResponseVyxGAG7RequestVyxG_So24NSURLSessionDataDelegate_pSgy10Foundation10URLRequestVzKcSgtYaKSeRzlF1TL_xmfp"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T","preciseIdentifier":"s:11JellyfinAPI0A6ClientC4send_8delegate9configure3Get8ResponseVyxGAG7RequestVyxG_So24NSURLSessionDataDelegate_pSgy10Foundation10URLRequestVzKcSgtYaKSeRzlF1TL_xmfp"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/send(_:delegate:configure:)-3bt8v","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/send(_:delegate:configure:)-3bt8v"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/send(_:delegate:configure:)-8ua0w.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/send(_:delegate:configure:)-8ua0w.json new file mode 100644 index 000000000..95b441f99 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/send(_:delegate:configure:)-8ua0w.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/send(_:delegate:configure:)-8ua0w"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/send(_:delegate:configure:)-8ua0w","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"title":"send(_:delegate:configure:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:11JellyfinAPI0A6ClientC4send_8delegate9configure3Get8ResponseVyytGAG7RequestVyytG_So24NSURLSessionDataDelegate_pSgy10Foundation10URLRequestVzKcSgtYaKF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/send(_:delegate:configure:)-8ua0w":{"role":"symbol","title":"send(_:delegate:configure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLSessionDataDelegate","preciseIdentifier":"c:objc(pl)NSURLSessionDataDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configure"},{"kind":"text","text":": (("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Response","preciseIdentifier":"s:3Get8ResponseV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/send(_:delegate:configure:)-8ua0w","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/send(_:delegate:configure:)-8ua0w"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/shouldclientretry(_:for:witherror:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/shouldclientretry(_:for:witherror:).json new file mode 100644 index 000000000..69cf170b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/jellyfinclient/shouldclientretry(_:for:witherror:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"shouldClientRetry"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withError"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/jellyfinclient\/shouldclientretry(_:for:witherror:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/shouldClientRetry(_:for:withError:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"APIClientDelegate.shouldClientRetry(_:for:withError:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"shouldClientRetry(_:for:withError:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"shouldClientRetry"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"method","externalID":"s:3Get17APIClientDelegatePAAE17shouldClientRetry_3for9withErrorSbAA0B0C_10Foundation10URLRequestVs0I0_ptYaKF::SYNTHESIZED::s:11JellyfinAPI0A6ClientC","extendedModule":"Get","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/shouldClientRetry(_:for:withError:)":{"role":"symbol","title":"shouldClientRetry(_:for:withError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"shouldClientRetry"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"APIClient","preciseIdentifier":"s:3Get9APIClientC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URLRequest","preciseIdentifier":"s:10Foundation10URLRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/shouldClientRetry(_:for:withError:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/shouldclientretry(_:for:witherror:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient/APIClientDelegate-Implementations":{"role":"collectionGroup","title":"APIClientDelegate Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient\/APIClientDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/jellyfinclient\/apiclientdelegate-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/JellyfinClient":{"role":"symbol","title":"JellyfinClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"JellyfinClient"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JellyfinClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JellyfinClient"}],"url":"\/documentation\/jellyfinapi\/jellyfinclient"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto.json new file mode 100644 index 000000000..17ac10add --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"JoinGroupRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/joingrouprequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class JoinGroupRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"JoinGroupRequestDto"}],"title":"JoinGroupRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI19JoinGroupRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"JoinGroupRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/init(groupID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/groupID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto/groupID":{"role":"symbol","title":"groupID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the group identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/groupID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/joingrouprequestdto\/groupid"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto":{"role":"symbol","title":"JoinGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"JoinGroupRequestDto"}],"abstract":[{"type":"text","text":"Class JoinGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JoinGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/joingrouprequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto/init(groupID:)":{"role":"symbol","title":"init(groupID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/init(groupID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/joingrouprequestdto\/init(groupid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/joingrouprequestdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto/groupid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto/groupid.json new file mode 100644 index 000000000..c816ddc48 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto/groupid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/joingrouprequestdto\/groupid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/groupID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the group identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"groupID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19JoinGroupRequestDtoV7groupID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto/groupID":{"role":"symbol","title":"groupID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the group identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/groupID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/joingrouprequestdto\/groupid"},"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto":{"role":"symbol","title":"JoinGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"JoinGroupRequestDto"}],"abstract":[{"type":"text","text":"Class JoinGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JoinGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/joingrouprequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto/init(from:).json new file mode 100644 index 000000000..7184957ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/joingrouprequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19JoinGroupRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto":{"role":"symbol","title":"JoinGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"JoinGroupRequestDto"}],"abstract":[{"type":"text","text":"Class JoinGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JoinGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/joingrouprequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/joingrouprequestdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto/init(groupid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto/init(groupid:).json new file mode 100644 index 000000000..b19e908d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/joingrouprequestdto/init(groupid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/joingrouprequestdto\/init(groupid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/init(groupID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(groupID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19JoinGroupRequestDtoV7groupIDAC10Foundation4UUIDVSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto/init(groupID:)":{"role":"symbol","title":"init(groupID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto\/init(groupID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/joingrouprequestdto\/init(groupid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto":{"role":"symbol","title":"JoinGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"JoinGroupRequestDto"}],"abstract":[{"type":"text","text":"Class JoinGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JoinGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/joingrouprequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil.json new file mode 100644 index 000000000..c0d7f9a40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"title":"KeepUntil","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI9KeepUntilO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilDeleted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilSpaceNeeded","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilWatched"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/untilDate":{"role":"symbol","title":"KeepUntil.untilDate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilDate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/untildate"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/init(rawvalue:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/untilSpaceNeeded":{"role":"symbol","title":"KeepUntil.untilSpaceNeeded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilSpaceNeeded"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilSpaceNeeded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/untilspaceneeded"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/untilWatched":{"role":"symbol","title":"KeepUntil.untilWatched","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilWatched"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilWatched","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/untilwatched"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/untilDeleted":{"role":"symbol","title":"KeepUntil.untilDeleted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilDeleted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilDeleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/untildeleted"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/!=(_:_:).json new file mode 100644 index 000000000..75a9ec266 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI9KeepUntilO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/encode(to:).json new file mode 100644 index 000000000..245563b72 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI9KeepUntilO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/equatable-implementations.json new file mode 100644 index 000000000..5a79c8bea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/hash(into:).json new file mode 100644 index 000000000..ca7a004e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI9KeepUntilO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/hashvalue.json new file mode 100644 index 000000000..8c249debc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI9KeepUntilO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/init(from:).json new file mode 100644 index 000000000..fc352f892 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI9KeepUntilO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/init(rawvalue:).json new file mode 100644 index 000000000..3901f6faf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9KeepUntilO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/rawrepresentable-implementations.json new file mode 100644 index 000000000..3cc0b4a70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untildate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untildate.json new file mode 100644 index 000000000..0e71e994e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untildate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilDate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/untildate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilDate"}],"title":"KeepUntil.untilDate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9KeepUntilO9untilDateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/untilDate":{"role":"symbol","title":"KeepUntil.untilDate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilDate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/untildate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untildeleted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untildeleted.json new file mode 100644 index 000000000..d4e599a0e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untildeleted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilDeleted"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/untildeleted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilDeleted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilDeleted"}],"title":"KeepUntil.untilDeleted","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9KeepUntilO12untilDeletedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/untilDeleted":{"role":"symbol","title":"KeepUntil.untilDeleted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilDeleted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilDeleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/untildeleted"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untilspaceneeded.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untilspaceneeded.json new file mode 100644 index 000000000..2aaae27ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untilspaceneeded.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilSpaceNeeded"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/untilspaceneeded"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilSpaceNeeded","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilSpaceNeeded"}],"title":"KeepUntil.untilSpaceNeeded","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9KeepUntilO16untilSpaceNeededyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/untilSpaceNeeded":{"role":"symbol","title":"KeepUntil.untilSpaceNeeded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilSpaceNeeded"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilSpaceNeeded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/untilspaceneeded"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untilwatched.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untilwatched.json new file mode 100644 index 000000000..43f3c0eee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/keepuntil/untilwatched.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilWatched"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/keepuntil\/untilwatched"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilWatched","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilWatched"}],"title":"KeepUntil.untilWatched","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9KeepUntilO12untilWatchedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil/untilWatched":{"role":"symbol","title":"KeepUntil.untilWatched","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"untilWatched"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil\/untilWatched","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/keepuntil\/untilwatched"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto.json new file mode 100644 index 000000000..d3870e8fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptioninfodto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Library option info dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"title":"LibraryOptionInfoDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20LibraryOptionInfoDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/init(isDefaultEnabled:name:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/isDefaultEnabled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/name"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto/init(isDefaultEnabled:name:)":{"role":"symbol","title":"init(isDefaultEnabled:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isDefaultEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/init(isDefaultEnabled:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptioninfodto\/init(isdefaultenabled:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptioninfodto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptioninfodto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto/isDefaultEnabled":{"role":"symbol","title":"isDefaultEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDefaultEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether default enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/isDefaultEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptioninfodto\/isdefaultenabled"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/init(from:).json new file mode 100644 index 000000000..d1fd2d851 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptioninfodto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20LibraryOptionInfoDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptioninfodto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/init(isdefaultenabled:name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/init(isdefaultenabled:name:).json new file mode 100644 index 000000000..4993e7e5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/init(isdefaultenabled:name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isDefaultEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptioninfodto\/init(isdefaultenabled:name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/init(isDefaultEnabled:name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isDefaultEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isDefaultEnabled:name:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20LibraryOptionInfoDtoV16isDefaultEnabled4nameACSbSg_SSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto/init(isDefaultEnabled:name:)":{"role":"symbol","title":"init(isDefaultEnabled:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isDefaultEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/init(isDefaultEnabled:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptioninfodto\/init(isdefaultenabled:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/isdefaultenabled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/isdefaultenabled.json new file mode 100644 index 000000000..e33a57b53 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/isdefaultenabled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDefaultEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptioninfodto\/isdefaultenabled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/isDefaultEnabled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether default enabled."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDefaultEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDefaultEnabled","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20LibraryOptionInfoDtoV16isDefaultEnabledSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto/isDefaultEnabled":{"role":"symbol","title":"isDefaultEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDefaultEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether default enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/isDefaultEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptioninfodto\/isdefaultenabled"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/name.json new file mode 100644 index 000000000..169b3ac2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptioninfodto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptioninfodto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20LibraryOptionInfoDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptioninfodto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions.json new file mode 100644 index 000000000..f3083f80a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"title":"LibraryOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14LibraryOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/init(allowEmbeddedSubtitles:automaticRefreshIntervalDays:isAutomaticallyAddToCollection:disabledLocalMetadataReaders:disabledSubtitleFetchers:enableAutomaticSeriesGrouping:enableChapterImageExtraction:enableEmbeddedEpisodeInfos:enableEmbeddedTitles:enableInternetProviders:enablePhotos:enableRealtimeMonitor:isExtractChapterImagesDuringLibraryScan:localMetadataReaderOrder:metadataCountryCode:metadataSavers:pathInfos:preferredMetadataLanguage:requirePerfectSubtitleMatch:isSaveLocalMetadata:isSaveSubtitlesWithMedia:seasonZeroDisplayName:isSkipSubtitlesIfAudioTrackMatches:isSkipSubtitlesIfEmbeddedSubtitlesPresent:subtitleDownloadLanguages:subtitleFetcherOrder:typeOptions:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/allowEmbeddedSubtitles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/automaticRefreshIntervalDays","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/disabledLocalMetadataReaders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/disabledSubtitleFetchers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableAutomaticSeriesGrouping","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableChapterImageExtraction","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableEmbeddedEpisodeInfos","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableEmbeddedTitles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableInternetProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enablePhotos","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableRealtimeMonitor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isAutomaticallyAddToCollection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isExtractChapterImagesDuringLibraryScan","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSaveLocalMetadata","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSaveSubtitlesWithMedia","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSkipSubtitlesIfAudioTrackMatches","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSkipSubtitlesIfEmbeddedSubtitlesPresent","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/localMetadataReaderOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/metadataSavers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/pathInfos","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/preferredMetadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/requirePerfectSubtitleMatch","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/seasonZeroDisplayName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/subtitleDownloadLanguages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/subtitleFetcherOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/typeOptions"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/preferredMetadataLanguage":{"role":"symbol","title":"preferredMetadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the preferred metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/preferredMetadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/preferredmetadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/disabledLocalMetadataReaders":{"role":"symbol","title":"disabledLocalMetadataReaders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledLocalMetadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/disabledLocalMetadataReaders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/disabledlocalmetadatareaders"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isSaveSubtitlesWithMedia":{"role":"symbol","title":"isSaveSubtitlesWithMedia","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveSubtitlesWithMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSaveSubtitlesWithMedia","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/issavesubtitleswithmedia"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/seasonZeroDisplayName":{"role":"symbol","title":"seasonZeroDisplayName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonZeroDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/seasonZeroDisplayName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/seasonzerodisplayname"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/subtitleDownloadLanguages":{"role":"symbol","title":"subtitleDownloadLanguages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleDownloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/subtitleDownloadLanguages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/subtitledownloadlanguages"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableEmbeddedEpisodeInfos":{"role":"symbol","title":"enableEmbeddedEpisodeInfos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEmbeddedEpisodeInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableEmbeddedEpisodeInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enableembeddedepisodeinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isExtractChapterImagesDuringLibraryScan":{"role":"symbol","title":"isExtractChapterImagesDuringLibraryScan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExtractChapterImagesDuringLibraryScan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isExtractChapterImagesDuringLibraryScan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/isextractchapterimagesduringlibraryscan"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/disabledSubtitleFetchers":{"role":"symbol","title":"disabledSubtitleFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledSubtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/disabledSubtitleFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/disabledsubtitlefetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enablePhotos":{"role":"symbol","title":"enablePhotos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePhotos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enablePhotos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enablephotos"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableEmbeddedTitles":{"role":"symbol","title":"enableEmbeddedTitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEmbeddedTitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableEmbeddedTitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enableembeddedtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/metadataSavers":{"role":"symbol","title":"metadataSavers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/metadataSavers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/metadatasavers"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableRealtimeMonitor":{"role":"symbol","title":"enableRealtimeMonitor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRealtimeMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableRealtimeMonitor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enablerealtimemonitor"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/requirePerfectSubtitleMatch":{"role":"symbol","title":"requirePerfectSubtitleMatch","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requirePerfectSubtitleMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/requirePerfectSubtitleMatch","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/requireperfectsubtitlematch"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableAutomaticSeriesGrouping":{"role":"symbol","title":"enableAutomaticSeriesGrouping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutomaticSeriesGrouping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableAutomaticSeriesGrouping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enableautomaticseriesgrouping"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isAutomaticallyAddToCollection":{"role":"symbol","title":"isAutomaticallyAddToCollection","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomaticallyAddToCollection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isAutomaticallyAddToCollection","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/isautomaticallyaddtocollection"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/init(allowEmbeddedSubtitles:automaticRefreshIntervalDays:isAutomaticallyAddToCollection:disabledLocalMetadataReaders:disabledSubtitleFetchers:enableAutomaticSeriesGrouping:enableChapterImageExtraction:enableEmbeddedEpisodeInfos:enableEmbeddedTitles:enableInternetProviders:enablePhotos:enableRealtimeMonitor:isExtractChapterImagesDuringLibraryScan:localMetadataReaderOrder:metadataCountryCode:metadataSavers:pathInfos:preferredMetadataLanguage:requirePerfectSubtitleMatch:isSaveLocalMetadata:isSaveSubtitlesWithMedia:seasonZeroDisplayName:isSkipSubtitlesIfAudioTrackMatches:isSkipSubtitlesIfEmbeddedSubtitlesPresent:subtitleDownloadLanguages:subtitleFetcherOrder:typeOptions:)":{"role":"symbol","title":"init(allowEmbeddedSubtitles:automaticRefreshIntervalDays:isAutomaticallyAddToCollection:disabledLocalMetadataReaders:disabledSubtitleFetchers:enableAutomaticSeriesGrouping:enableChapterImageExtraction:enableEmbeddedEpisodeInfos:enableEmbeddedTitles:enableInternetProviders:enablePhotos:enableRealtimeMonitor:isExtractChapterImagesDuringLibraryScan:localMetadataReaderOrder:metadataCountryCode:metadataSavers:pathInfos:preferredMetadataLanguage:requirePerfectSubtitleMatch:isSaveLocalMetadata:isSaveSubtitlesWithMedia:seasonZeroDisplayName:isSkipSubtitlesIfAudioTrackMatches:isSkipSubtitlesIfEmbeddedSubtitlesPresent:subtitleDownloadLanguages:subtitleFetcherOrder:typeOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowEmbeddedSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EmbeddedSubtitleOptions","preciseIdentifier":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticRefreshIntervalDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomaticallyAddToCollection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"disabledLocalMetadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledSubtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableAutomaticSeriesGrouping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableChapterImageExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableEmbeddedEpisodeInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableEmbeddedTitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableInternetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePhotos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRealtimeMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isExtractChapterImagesDuringLibraryScan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"pathInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requirePerfectSubtitleMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveLocalMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveSubtitlesWithMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seasonZeroDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipSubtitlesIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipSubtitlesIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleDownloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"subtitleFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TypeOptions","preciseIdentifier":"s:11JellyfinAPI11TypeOptionsV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/init(allowEmbeddedSubtitles:automaticRefreshIntervalDays:isAutomaticallyAddToCollection:disabledLocalMetadataReaders:disabledSubtitleFetchers:enableAutomaticSeriesGrouping:enableChapterImageExtraction:enableEmbeddedEpisodeInfos:enableEmbeddedTitles:enableInternetProviders:enablePhotos:enableRealtimeMonitor:isExtractChapterImagesDuringLibraryScan:localMetadataReaderOrder:metadataCountryCode:metadataSavers:pathInfos:preferredMetadataLanguage:requirePerfectSubtitleMatch:isSaveLocalMetadata:isSaveSubtitlesWithMedia:seasonZeroDisplayName:isSkipSubtitlesIfAudioTrackMatches:isSkipSubtitlesIfEmbeddedSubtitlesPresent:subtitleDownloadLanguages:subtitleFetcherOrder:typeOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/init(allowembeddedsubtitles:automaticrefreshintervaldays:isautomaticallyaddtocollection:disabledlocalmetadatareaders:disabledsubtitlefetchers:enableautomaticseriesgrouping:enablechapterimageextraction:enableembeddedepisodeinfos:enableembedd-9pjhl"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableInternetProviders":{"role":"symbol","title":"enableInternetProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableInternetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableInternetProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enableinternetproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/localMetadataReaderOrder":{"role":"symbol","title":"localMetadataReaderOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/localMetadataReaderOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/localmetadatareaderorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/typeOptions":{"role":"symbol","title":"typeOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TypeOptions","preciseIdentifier":"s:11JellyfinAPI11TypeOptionsV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/typeOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isSkipSubtitlesIfEmbeddedSubtitlesPresent":{"role":"symbol","title":"isSkipSubtitlesIfEmbeddedSubtitlesPresent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipSubtitlesIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSkipSubtitlesIfEmbeddedSubtitlesPresent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/isskipsubtitlesifembeddedsubtitlespresent"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/automaticRefreshIntervalDays":{"role":"symbol","title":"automaticRefreshIntervalDays","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"automaticRefreshIntervalDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/automaticRefreshIntervalDays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/automaticrefreshintervaldays"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/allowEmbeddedSubtitles":{"role":"symbol","title":"allowEmbeddedSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowEmbeddedSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EmbeddedSubtitleOptions","preciseIdentifier":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/allowEmbeddedSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/allowembeddedsubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isSkipSubtitlesIfAudioTrackMatches":{"role":"symbol","title":"isSkipSubtitlesIfAudioTrackMatches","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipSubtitlesIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSkipSubtitlesIfAudioTrackMatches","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/isskipsubtitlesifaudiotrackmatches"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/subtitleFetcherOrder":{"role":"symbol","title":"subtitleFetcherOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/subtitleFetcherOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/subtitlefetcherorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/pathInfos":{"role":"symbol","title":"pathInfos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/pathInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/pathinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableChapterImageExtraction":{"role":"symbol","title":"enableChapterImageExtraction","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableChapterImageExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableChapterImageExtraction","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enablechapterimageextraction"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isSaveLocalMetadata":{"role":"symbol","title":"isSaveLocalMetadata","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveLocalMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSaveLocalMetadata","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/issavelocalmetadata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/allowembeddedsubtitles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/allowembeddedsubtitles.json new file mode 100644 index 000000000..4bd280384 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/allowembeddedsubtitles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowEmbeddedSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","preciseIdentifier":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO","text":"EmbeddedSubtitleOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/allowembeddedsubtitles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/allowEmbeddedSubtitles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowEmbeddedSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EmbeddedSubtitleOptions","preciseIdentifier":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO"},{"kind":"text","text":"?"}],"title":"allowEmbeddedSubtitles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV22allowEmbeddedSubtitlesAA0f8SubtitleD0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/allowEmbeddedSubtitles":{"role":"symbol","title":"allowEmbeddedSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowEmbeddedSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EmbeddedSubtitleOptions","preciseIdentifier":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/allowEmbeddedSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/allowembeddedsubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/automaticrefreshintervaldays.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/automaticrefreshintervaldays.json new file mode 100644 index 000000000..9b4cc9261 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/automaticrefreshintervaldays.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"automaticRefreshIntervalDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/automaticrefreshintervaldays"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/automaticRefreshIntervalDays","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"automaticRefreshIntervalDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"automaticRefreshIntervalDays","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV28automaticRefreshIntervalDayss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/automaticRefreshIntervalDays":{"role":"symbol","title":"automaticRefreshIntervalDays","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"automaticRefreshIntervalDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/automaticRefreshIntervalDays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/automaticrefreshintervaldays"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/disabledlocalmetadatareaders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/disabledlocalmetadatareaders.json new file mode 100644 index 000000000..4dae2c3e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/disabledlocalmetadatareaders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledLocalMetadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/disabledlocalmetadatareaders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/disabledLocalMetadataReaders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledLocalMetadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"disabledLocalMetadataReaders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV28disabledLocalMetadataReadersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/disabledLocalMetadataReaders":{"role":"symbol","title":"disabledLocalMetadataReaders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledLocalMetadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/disabledLocalMetadataReaders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/disabledlocalmetadatareaders"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/disabledsubtitlefetchers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/disabledsubtitlefetchers.json new file mode 100644 index 000000000..9b262391b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/disabledsubtitlefetchers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledSubtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/disabledsubtitlefetchers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/disabledSubtitleFetchers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledSubtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"disabledSubtitleFetchers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV24disabledSubtitleFetchersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/disabledSubtitleFetchers":{"role":"symbol","title":"disabledSubtitleFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledSubtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/disabledSubtitleFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/disabledsubtitlefetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableautomaticseriesgrouping.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableautomaticseriesgrouping.json new file mode 100644 index 000000000..5f50a7eef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableautomaticseriesgrouping.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutomaticSeriesGrouping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/enableautomaticseriesgrouping"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableAutomaticSeriesGrouping","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutomaticSeriesGrouping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutomaticSeriesGrouping","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV29enableAutomaticSeriesGroupingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableAutomaticSeriesGrouping":{"role":"symbol","title":"enableAutomaticSeriesGrouping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutomaticSeriesGrouping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableAutomaticSeriesGrouping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enableautomaticseriesgrouping"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enablechapterimageextraction.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enablechapterimageextraction.json new file mode 100644 index 000000000..9ff56970f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enablechapterimageextraction.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableChapterImageExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/enablechapterimageextraction"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableChapterImageExtraction","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableChapterImageExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableChapterImageExtraction","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV28enableChapterImageExtractionSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableChapterImageExtraction":{"role":"symbol","title":"enableChapterImageExtraction","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableChapterImageExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableChapterImageExtraction","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enablechapterimageextraction"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableembeddedepisodeinfos.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableembeddedepisodeinfos.json new file mode 100644 index 000000000..2b3e45ca6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableembeddedepisodeinfos.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEmbeddedEpisodeInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/enableembeddedepisodeinfos"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableEmbeddedEpisodeInfos","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEmbeddedEpisodeInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableEmbeddedEpisodeInfos","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV26enableEmbeddedEpisodeInfosSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableEmbeddedEpisodeInfos":{"role":"symbol","title":"enableEmbeddedEpisodeInfos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEmbeddedEpisodeInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableEmbeddedEpisodeInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enableembeddedepisodeinfos"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableembeddedtitles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableembeddedtitles.json new file mode 100644 index 000000000..e39662aa4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableembeddedtitles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEmbeddedTitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/enableembeddedtitles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableEmbeddedTitles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEmbeddedTitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableEmbeddedTitles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV20enableEmbeddedTitlesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableEmbeddedTitles":{"role":"symbol","title":"enableEmbeddedTitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableEmbeddedTitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableEmbeddedTitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enableembeddedtitles"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableinternetproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableinternetproviders.json new file mode 100644 index 000000000..49cac7a2e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enableinternetproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableInternetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"aside","style":"warning","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/enableinternetproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableInternetProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableInternetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableInternetProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV23enableInternetProvidersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableInternetProviders":{"role":"symbol","title":"enableInternetProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableInternetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableInternetProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enableinternetproviders"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enablephotos.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enablephotos.json new file mode 100644 index 000000000..ba10b7f6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enablephotos.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePhotos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/enablephotos"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enablePhotos","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePhotos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enablePhotos","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV12enablePhotosSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enablePhotos":{"role":"symbol","title":"enablePhotos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePhotos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enablePhotos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enablephotos"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enablerealtimemonitor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enablerealtimemonitor.json new file mode 100644 index 000000000..556b4271a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/enablerealtimemonitor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRealtimeMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/enablerealtimemonitor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableRealtimeMonitor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRealtimeMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableRealtimeMonitor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV21enableRealtimeMonitorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/enableRealtimeMonitor":{"role":"symbol","title":"enableRealtimeMonitor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRealtimeMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/enableRealtimeMonitor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/enablerealtimemonitor"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/init(allowembeddedsubtitles:automaticrefreshintervaldays:isautomaticallyaddtocollection:disabledlocalmetadatareaders:disabledsubtitlefetchers:enableautomaticseriesgrouping:enablechapterimageextraction:enableembeddedepisodeinfos:enableembedd-9pjhl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/init(allowembeddedsubtitles:automaticrefreshintervaldays:isautomaticallyaddtocollection:disabledlocalmetadatareaders:disabledsubtitlefetchers:enableautomaticseriesgrouping:enablechapterimageextraction:enableembeddedepisodeinfos:enableembedd-9pjhl.json new file mode 100644 index 000000000..6f38deff6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/init(allowembeddedsubtitles:automaticrefreshintervaldays:isautomaticallyaddtocollection:disabledlocalmetadatareaders:disabledsubtitlefetchers:enableautomaticseriesgrouping:enablechapterimageextraction:enableembeddedepisodeinfos:enableembedd-9pjhl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowEmbeddedSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","preciseIdentifier":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO","text":"EmbeddedSubtitleOptions"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"automaticRefreshIntervalDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomaticallyAddToCollection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"disabledLocalMetadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"disabledSubtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableAutomaticSeriesGrouping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableChapterImageExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableEmbeddedEpisodeInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableEmbeddedTitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableInternetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enablePhotos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableRealtimeMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isExtractChapterImagesDuringLibraryScan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"pathInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV","text":"MediaPathInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requirePerfectSubtitleMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSaveLocalMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSaveSubtitlesWithMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seasonZeroDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSkipSubtitlesIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSkipSubtitlesIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleDownloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"subtitleFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","preciseIdentifier":"s:11JellyfinAPI11TypeOptionsV","text":"TypeOptions"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/init(allowembeddedsubtitles:automaticrefreshintervaldays:isautomaticallyaddtocollection:disabledlocalmetadatareaders:disabledsubtitlefetchers:enableautomaticseriesgrouping:enablechapterimageextraction:enableembeddedepisodeinfos:enableembedd-9pjhl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/init(allowEmbeddedSubtitles:automaticRefreshIntervalDays:isAutomaticallyAddToCollection:disabledLocalMetadataReaders:disabledSubtitleFetchers:enableAutomaticSeriesGrouping:enableChapterImageExtraction:enableEmbeddedEpisodeInfos:enableEmbeddedTitles:enableInternetProviders:enablePhotos:enableRealtimeMonitor:isExtractChapterImagesDuringLibraryScan:localMetadataReaderOrder:metadataCountryCode:metadataSavers:pathInfos:preferredMetadataLanguage:requirePerfectSubtitleMatch:isSaveLocalMetadata:isSaveSubtitlesWithMedia:seasonZeroDisplayName:isSkipSubtitlesIfAudioTrackMatches:isSkipSubtitlesIfEmbeddedSubtitlesPresent:subtitleDownloadLanguages:subtitleFetcherOrder:typeOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowEmbeddedSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EmbeddedSubtitleOptions","preciseIdentifier":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticRefreshIntervalDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomaticallyAddToCollection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"disabledLocalMetadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledSubtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableAutomaticSeriesGrouping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableChapterImageExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableEmbeddedEpisodeInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableEmbeddedTitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableInternetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePhotos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRealtimeMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isExtractChapterImagesDuringLibraryScan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"pathInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requirePerfectSubtitleMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveLocalMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveSubtitlesWithMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seasonZeroDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipSubtitlesIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipSubtitlesIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleDownloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"subtitleFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TypeOptions","preciseIdentifier":"s:11JellyfinAPI11TypeOptionsV"},{"kind":"text","text":"]?)"}],"title":"init(allowEmbeddedSubtitles:automaticRefreshIntervalDays:isAutomaticallyAddToCollection:disabledLocalMetadataReaders:disabledSubtitleFetchers:enableAutomaticSeriesGrouping:enableChapterImageExtraction:enableEmbeddedEpisodeInfos:enableEmbeddedTitles:enableInternetProviders:enablePhotos:enableRealtimeMonitor:isExtractChapterImagesDuringLibraryScan:localMetadataReaderOrder:metadataCountryCode:metadataSavers:pathInfos:preferredMetadataLanguage:requirePerfectSubtitleMatch:isSaveLocalMetadata:isSaveSubtitlesWithMedia:seasonZeroDisplayName:isSkipSubtitlesIfAudioTrackMatches:isSkipSubtitlesIfEmbeddedSubtitlesPresent:subtitleDownloadLanguages:subtitleFetcherOrder:typeOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14LibraryOptionsV22allowEmbeddedSubtitles28automaticRefreshIntervalDays30isAutomaticallyAddToCollection28disabledLocalMetadataReaders0Q16SubtitleFetchers29enableAutomaticSeriesGrouping0W22ChapterImageExtraction0wF12EpisodeInfos0wF6Titles0W17InternetProviders0W6Photos0W15RealtimeMonitor0l26ExtractChapterImagesDuringC4Scan05localS11ReaderOrder19metadataCountryCode14metadataSavers9pathInfos09preferredS8Language014requirePerfectU5Match0l4SaverS00l4SaveG9WithMedia21seasonZeroDisplayName0l4SkipG19IfAudioTrackMatches0l4Skipg2IffG7Present25subtitleDownloadLanguages20subtitleFetcherOrder04typeD0AcA0fuD0OSg_s5Int32VSgSbSgSaySSGSgA11_A9_A9_A9_A9_A9_A9_A9_A9_A11_SSSgA11_SayAA13MediaPathInfoVGSgA12_A9_A9_A9_A12_A9_A9_A11_A11_SayAA04TypeD0VGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/init(allowEmbeddedSubtitles:automaticRefreshIntervalDays:isAutomaticallyAddToCollection:disabledLocalMetadataReaders:disabledSubtitleFetchers:enableAutomaticSeriesGrouping:enableChapterImageExtraction:enableEmbeddedEpisodeInfos:enableEmbeddedTitles:enableInternetProviders:enablePhotos:enableRealtimeMonitor:isExtractChapterImagesDuringLibraryScan:localMetadataReaderOrder:metadataCountryCode:metadataSavers:pathInfos:preferredMetadataLanguage:requirePerfectSubtitleMatch:isSaveLocalMetadata:isSaveSubtitlesWithMedia:seasonZeroDisplayName:isSkipSubtitlesIfAudioTrackMatches:isSkipSubtitlesIfEmbeddedSubtitlesPresent:subtitleDownloadLanguages:subtitleFetcherOrder:typeOptions:)":{"role":"symbol","title":"init(allowEmbeddedSubtitles:automaticRefreshIntervalDays:isAutomaticallyAddToCollection:disabledLocalMetadataReaders:disabledSubtitleFetchers:enableAutomaticSeriesGrouping:enableChapterImageExtraction:enableEmbeddedEpisodeInfos:enableEmbeddedTitles:enableInternetProviders:enablePhotos:enableRealtimeMonitor:isExtractChapterImagesDuringLibraryScan:localMetadataReaderOrder:metadataCountryCode:metadataSavers:pathInfos:preferredMetadataLanguage:requirePerfectSubtitleMatch:isSaveLocalMetadata:isSaveSubtitlesWithMedia:seasonZeroDisplayName:isSkipSubtitlesIfAudioTrackMatches:isSkipSubtitlesIfEmbeddedSubtitlesPresent:subtitleDownloadLanguages:subtitleFetcherOrder:typeOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowEmbeddedSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EmbeddedSubtitleOptions","preciseIdentifier":"s:11JellyfinAPI23EmbeddedSubtitleOptionsO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticRefreshIntervalDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomaticallyAddToCollection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"disabledLocalMetadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledSubtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableAutomaticSeriesGrouping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableChapterImageExtraction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableEmbeddedEpisodeInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableEmbeddedTitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableInternetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePhotos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRealtimeMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isExtractChapterImagesDuringLibraryScan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"pathInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requirePerfectSubtitleMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveLocalMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveSubtitlesWithMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seasonZeroDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipSubtitlesIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipSubtitlesIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleDownloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"subtitleFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TypeOptions","preciseIdentifier":"s:11JellyfinAPI11TypeOptionsV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/init(allowEmbeddedSubtitles:automaticRefreshIntervalDays:isAutomaticallyAddToCollection:disabledLocalMetadataReaders:disabledSubtitleFetchers:enableAutomaticSeriesGrouping:enableChapterImageExtraction:enableEmbeddedEpisodeInfos:enableEmbeddedTitles:enableInternetProviders:enablePhotos:enableRealtimeMonitor:isExtractChapterImagesDuringLibraryScan:localMetadataReaderOrder:metadataCountryCode:metadataSavers:pathInfos:preferredMetadataLanguage:requirePerfectSubtitleMatch:isSaveLocalMetadata:isSaveSubtitlesWithMedia:seasonZeroDisplayName:isSkipSubtitlesIfAudioTrackMatches:isSkipSubtitlesIfEmbeddedSubtitlesPresent:subtitleDownloadLanguages:subtitleFetcherOrder:typeOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/init(allowembeddedsubtitles:automaticrefreshintervaldays:isautomaticallyaddtocollection:disabledlocalmetadatareaders:disabledsubtitlefetchers:enableautomaticseriesgrouping:enablechapterimageextraction:enableembeddedepisodeinfos:enableembedd-9pjhl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/EmbeddedSubtitleOptions":{"role":"symbol","title":"EmbeddedSubtitleOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"abstract":[{"type":"text","text":"An enum representing the options to disable embedded subs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EmbeddedSubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EmbeddedSubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/embeddedsubtitleoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/init(from:).json new file mode 100644 index 000000000..b1c594b64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14LibraryOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isautomaticallyaddtocollection.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isautomaticallyaddtocollection.json new file mode 100644 index 000000000..4a3bc4b78 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isautomaticallyaddtocollection.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomaticallyAddToCollection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/isautomaticallyaddtocollection"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isAutomaticallyAddToCollection","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomaticallyAddToCollection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomaticallyAddToCollection","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV30isAutomaticallyAddToCollectionSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isAutomaticallyAddToCollection":{"role":"symbol","title":"isAutomaticallyAddToCollection","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomaticallyAddToCollection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isAutomaticallyAddToCollection","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/isautomaticallyaddtocollection"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isextractchapterimagesduringlibraryscan.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isextractchapterimagesduringlibraryscan.json new file mode 100644 index 000000000..9f1271016 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isextractchapterimagesduringlibraryscan.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExtractChapterImagesDuringLibraryScan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/isextractchapterimagesduringlibraryscan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isExtractChapterImagesDuringLibraryScan","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExtractChapterImagesDuringLibraryScan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isExtractChapterImagesDuringLibraryScan","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV028isExtractChapterImagesDuringC4ScanSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isExtractChapterImagesDuringLibraryScan":{"role":"symbol","title":"isExtractChapterImagesDuringLibraryScan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExtractChapterImagesDuringLibraryScan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isExtractChapterImagesDuringLibraryScan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/isextractchapterimagesduringlibraryscan"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/issavelocalmetadata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/issavelocalmetadata.json new file mode 100644 index 000000000..b9c8801b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/issavelocalmetadata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveLocalMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/issavelocalmetadata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSaveLocalMetadata","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveLocalMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSaveLocalMetadata","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV19isSaveLocalMetadataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isSaveLocalMetadata":{"role":"symbol","title":"isSaveLocalMetadata","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveLocalMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSaveLocalMetadata","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/issavelocalmetadata"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/issavesubtitleswithmedia.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/issavesubtitleswithmedia.json new file mode 100644 index 000000000..cd0b0e5e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/issavesubtitleswithmedia.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveSubtitlesWithMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/issavesubtitleswithmedia"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSaveSubtitlesWithMedia","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveSubtitlesWithMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSaveSubtitlesWithMedia","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV24isSaveSubtitlesWithMediaSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isSaveSubtitlesWithMedia":{"role":"symbol","title":"isSaveSubtitlesWithMedia","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveSubtitlesWithMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSaveSubtitlesWithMedia","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/issavesubtitleswithmedia"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isskipsubtitlesifaudiotrackmatches.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isskipsubtitlesifaudiotrackmatches.json new file mode 100644 index 000000000..bc1d63a08 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isskipsubtitlesifaudiotrackmatches.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipSubtitlesIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/isskipsubtitlesifaudiotrackmatches"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSkipSubtitlesIfAudioTrackMatches","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipSubtitlesIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSkipSubtitlesIfAudioTrackMatches","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV34isSkipSubtitlesIfAudioTrackMatchesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isSkipSubtitlesIfAudioTrackMatches":{"role":"symbol","title":"isSkipSubtitlesIfAudioTrackMatches","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipSubtitlesIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSkipSubtitlesIfAudioTrackMatches","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/isskipsubtitlesifaudiotrackmatches"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isskipsubtitlesifembeddedsubtitlespresent.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isskipsubtitlesifembeddedsubtitlespresent.json new file mode 100644 index 000000000..be91aa28f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/isskipsubtitlesifembeddedsubtitlespresent.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipSubtitlesIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/isskipsubtitlesifembeddedsubtitlespresent"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSkipSubtitlesIfEmbeddedSubtitlesPresent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipSubtitlesIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSkipSubtitlesIfEmbeddedSubtitlesPresent","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV025isSkipSubtitlesIfEmbeddedG7PresentSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/isSkipSubtitlesIfEmbeddedSubtitlesPresent":{"role":"symbol","title":"isSkipSubtitlesIfEmbeddedSubtitlesPresent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipSubtitlesIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/isSkipSubtitlesIfEmbeddedSubtitlesPresent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/isskipsubtitlesifembeddedsubtitlespresent"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/localmetadatareaderorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/localmetadatareaderorder.json new file mode 100644 index 000000000..b42a136c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/localmetadatareaderorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/localmetadatareaderorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/localMetadataReaderOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"localMetadataReaderOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV24localMetadataReaderOrderSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/localMetadataReaderOrder":{"role":"symbol","title":"localMetadataReaderOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/localMetadataReaderOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/localmetadatareaderorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/metadatacountrycode.json new file mode 100644 index 000000000..01377973c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/metadatacountrycode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/metadatasavers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/metadatasavers.json new file mode 100644 index 000000000..ddb81550e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/metadatasavers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/metadatasavers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/metadataSavers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"metadataSavers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV14metadataSaversSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/metadataSavers":{"role":"symbol","title":"metadataSavers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/metadataSavers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/metadatasavers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/pathinfos.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/pathinfos.json new file mode 100644 index 000000000..e383d6805 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/pathinfos.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV","text":"MediaPathInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/pathinfos"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/pathInfos","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"]?"}],"title":"pathInfos","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV9pathInfosSayAA13MediaPathInfoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/pathInfos":{"role":"symbol","title":"pathInfos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/pathInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/pathinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/preferredmetadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/preferredmetadatalanguage.json new file mode 100644 index 000000000..76cc8869f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/preferredmetadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/preferredmetadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/preferredMetadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the preferred metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"preferredMetadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV25preferredMetadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/preferredMetadataLanguage":{"role":"symbol","title":"preferredMetadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the preferred metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/preferredMetadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/preferredmetadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/requireperfectsubtitlematch.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/requireperfectsubtitlematch.json new file mode 100644 index 000000000..f6ebc2736 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/requireperfectsubtitlematch.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requirePerfectSubtitleMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/requireperfectsubtitlematch"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/requirePerfectSubtitleMatch","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requirePerfectSubtitleMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requirePerfectSubtitleMatch","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV27requirePerfectSubtitleMatchSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/requirePerfectSubtitleMatch":{"role":"symbol","title":"requirePerfectSubtitleMatch","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requirePerfectSubtitleMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/requirePerfectSubtitleMatch","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/requireperfectsubtitlematch"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/seasonzerodisplayname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/seasonzerodisplayname.json new file mode 100644 index 000000000..aed362555 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/seasonzerodisplayname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonZeroDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/seasonzerodisplayname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/seasonZeroDisplayName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonZeroDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seasonZeroDisplayName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV21seasonZeroDisplayNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/seasonZeroDisplayName":{"role":"symbol","title":"seasonZeroDisplayName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonZeroDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/seasonZeroDisplayName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/seasonzerodisplayname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/subtitledownloadlanguages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/subtitledownloadlanguages.json new file mode 100644 index 000000000..32fe7b0d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/subtitledownloadlanguages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleDownloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/subtitledownloadlanguages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/subtitleDownloadLanguages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleDownloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"subtitleDownloadLanguages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV25subtitleDownloadLanguagesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/subtitleDownloadLanguages":{"role":"symbol","title":"subtitleDownloadLanguages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleDownloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/subtitleDownloadLanguages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/subtitledownloadlanguages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/subtitlefetcherorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/subtitlefetcherorder.json new file mode 100644 index 000000000..146648304 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/subtitlefetcherorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/subtitlefetcherorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/subtitleFetcherOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"subtitleFetcherOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV20subtitleFetcherOrderSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/subtitleFetcherOrder":{"role":"symbol","title":"subtitleFetcherOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/subtitleFetcherOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/subtitlefetcherorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/typeoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/typeoptions.json new file mode 100644 index 000000000..927e3c828 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptions/typeoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","preciseIdentifier":"s:11JellyfinAPI11TypeOptionsV","text":"TypeOptions"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptions\/typeoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/typeOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TypeOptions","preciseIdentifier":"s:11JellyfinAPI11TypeOptionsV"},{"kind":"text","text":"]?"}],"title":"typeOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14LibraryOptionsV04typeD0SayAA04TypeD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions/typeOptions":{"role":"symbol","title":"typeOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TypeOptions","preciseIdentifier":"s:11JellyfinAPI11TypeOptionsV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions\/typeOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptions\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto.json new file mode 100644 index 000000000..21e691195 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptionsresultdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Library options result dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"title":"LibraryOptionsResultDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI23LibraryOptionsResultDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LibraryOptionsResultDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/init(metadataReaders:metadataSavers:subtitleFetchers:typeOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/metadataReaders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/metadataSavers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/subtitleFetchers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/typeOptions"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/metadataReaders":{"role":"symbol","title":"metadataReaders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata readers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/metadataReaders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/metadatareaders"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/typeOptions":{"role":"symbol","title":"typeOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryTypeOptionsDto","preciseIdentifier":"s:11JellyfinAPI21LibraryTypeOptionsDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the type options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/typeOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto":{"role":"symbol","title":"LibraryOptionsResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"abstract":[{"type":"text","text":"Library options result dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionsResultDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/init(metadataReaders:metadataSavers:subtitleFetchers:typeOptions:)":{"role":"symbol","title":"init(metadataReaders:metadataSavers:subtitleFetchers:typeOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"subtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryTypeOptionsDto","preciseIdentifier":"s:11JellyfinAPI21LibraryTypeOptionsDtoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/init(metadataReaders:metadataSavers:subtitleFetchers:typeOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/init(metadatareaders:metadatasavers:subtitlefetchers:typeoptions:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/subtitleFetchers":{"role":"symbol","title":"subtitleFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle fetchers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/subtitleFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/subtitlefetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/metadataSavers":{"role":"symbol","title":"metadataSavers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata savers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/metadataSavers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/metadatasavers"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/init(from:).json new file mode 100644 index 000000000..facb07d37 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptionsresultdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23LibraryOptionsResultDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto":{"role":"symbol","title":"LibraryOptionsResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"abstract":[{"type":"text","text":"Library options result dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionsResultDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/init(metadatareaders:metadatasavers:subtitlefetchers:typeoptions:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/init(metadatareaders:metadatasavers:subtitlefetchers:typeoptions:).json new file mode 100644 index 000000000..4cbd85fd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/init(metadatareaders:metadatasavers:subtitlefetchers:typeoptions:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV","text":"LibraryOptionInfoDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV","text":"LibraryOptionInfoDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"subtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV","text":"LibraryOptionInfoDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","preciseIdentifier":"s:11JellyfinAPI21LibraryTypeOptionsDtoV","text":"LibraryTypeOptionsDto"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptionsresultdto\/init(metadatareaders:metadatasavers:subtitlefetchers:typeoptions:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/init(metadataReaders:metadataSavers:subtitleFetchers:typeOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"subtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryTypeOptionsDto","preciseIdentifier":"s:11JellyfinAPI21LibraryTypeOptionsDtoV"},{"kind":"text","text":"]?)"}],"title":"init(metadataReaders:metadataSavers:subtitleFetchers:typeOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23LibraryOptionsResultDtoV15metadataReaders0G6Savers16subtitleFetchers04typeD0ACSayAA0c10OptionInfoF0VGSg_A2KSayAA0c4TypedF0VGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto":{"role":"symbol","title":"LibraryOptionsResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"abstract":[{"type":"text","text":"Library options result dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionsResultDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/init(metadataReaders:metadataSavers:subtitleFetchers:typeOptions:)":{"role":"symbol","title":"init(metadataReaders:metadataSavers:subtitleFetchers:typeOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"subtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryTypeOptionsDto","preciseIdentifier":"s:11JellyfinAPI21LibraryTypeOptionsDtoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/init(metadataReaders:metadataSavers:subtitleFetchers:typeOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/init(metadatareaders:metadatasavers:subtitlefetchers:typeoptions:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/metadatareaders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/metadatareaders.json new file mode 100644 index 000000000..ce550c917 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/metadatareaders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV","text":"LibraryOptionInfoDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptionsresultdto\/metadatareaders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/metadataReaders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata readers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"title":"metadataReaders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23LibraryOptionsResultDtoV15metadataReadersSayAA0c10OptionInfoF0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/metadataReaders":{"role":"symbol","title":"metadataReaders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataReaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata readers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/metadataReaders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/metadatareaders"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto":{"role":"symbol","title":"LibraryOptionsResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"abstract":[{"type":"text","text":"Library options result dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionsResultDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/metadatasavers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/metadatasavers.json new file mode 100644 index 000000000..69a580c96 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/metadatasavers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV","text":"LibraryOptionInfoDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptionsresultdto\/metadatasavers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/metadataSavers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata savers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"title":"metadataSavers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23LibraryOptionsResultDtoV14metadataSaversSayAA0c10OptionInfoF0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto":{"role":"symbol","title":"LibraryOptionsResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"abstract":[{"type":"text","text":"Library options result dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionsResultDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/metadataSavers":{"role":"symbol","title":"metadataSavers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata savers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/metadataSavers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/metadatasavers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/subtitlefetchers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/subtitlefetchers.json new file mode 100644 index 000000000..34cbf7c42 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/subtitlefetchers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV","text":"LibraryOptionInfoDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptionsresultdto\/subtitlefetchers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/subtitleFetchers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the subtitle fetchers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"title":"subtitleFetchers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23LibraryOptionsResultDtoV16subtitleFetchersSayAA0c10OptionInfoF0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/subtitleFetchers":{"role":"symbol","title":"subtitleFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle fetchers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/subtitleFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/subtitlefetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto":{"role":"symbol","title":"LibraryOptionsResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"abstract":[{"type":"text","text":"Library options result dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionsResultDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/typeoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/typeoptions.json new file mode 100644 index 000000000..85a6ef5cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryoptionsresultdto/typeoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","preciseIdentifier":"s:11JellyfinAPI21LibraryTypeOptionsDtoV","text":"LibraryTypeOptionsDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryoptionsresultdto\/typeoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/typeOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type options."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryTypeOptionsDto","preciseIdentifier":"s:11JellyfinAPI21LibraryTypeOptionsDtoV"},{"kind":"text","text":"]?"}],"title":"typeOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23LibraryOptionsResultDtoV04typeD0SayAA0c4TypedF0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto/typeOptions":{"role":"symbol","title":"typeOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryTypeOptionsDto","preciseIdentifier":"s:11JellyfinAPI21LibraryTypeOptionsDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the type options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto\/typeOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto":{"role":"symbol","title":"LibraryOptionsResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"abstract":[{"type":"text","text":"Library options result dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionsResultDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto.json new file mode 100644 index 000000000..0f7d4d61a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/librarytypeoptionsdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Library type options dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"title":"LibraryTypeOptionsDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI21LibraryTypeOptionsDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/init(defaultImageOptions:imageFetchers:metadataFetchers:supportedImageTypes:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/defaultImageOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/imageFetchers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/metadataFetchers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/supportedImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/type"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/defaultImageOptions":{"role":"symbol","title":"defaultImageOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultImageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the default image options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/defaultImageOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/defaultimageoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/supportedImageTypes":{"role":"symbol","title":"supportedImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the supported image types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/supportedImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/supportedimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/init(defaultImageOptions:imageFetchers:metadataFetchers:supportedImageTypes:type:)":{"role":"symbol","title":"init(defaultImageOptions:imageFetchers:metadataFetchers:supportedImageTypes:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"defaultImageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/init(defaultImageOptions:imageFetchers:metadataFetchers:supportedImageTypes:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/init(defaultimageoptions:imagefetchers:metadatafetchers:supportedimagetypes:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/imageFetchers":{"role":"symbol","title":"imageFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the image fetchers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/imageFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/imagefetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/metadataFetchers":{"role":"symbol","title":"metadataFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata fetchers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/metadataFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/metadatafetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/type"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/defaultimageoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/defaultimageoptions.json new file mode 100644 index 000000000..df67bcf05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/defaultimageoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultImageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV","text":"ImageOption"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/librarytypeoptionsdto\/defaultimageoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/defaultImageOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the default image options."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultImageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?"}],"title":"defaultImageOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21LibraryTypeOptionsDtoV012defaultImageE0SayAA0H6OptionVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/defaultImageOptions":{"role":"symbol","title":"defaultImageOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultImageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the default image options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/defaultImageOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/defaultimageoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/imagefetchers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/imagefetchers.json new file mode 100644 index 000000000..b23eef093 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/imagefetchers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV","text":"LibraryOptionInfoDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/librarytypeoptionsdto\/imagefetchers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/imageFetchers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the image fetchers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"title":"imageFetchers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21LibraryTypeOptionsDtoV13imageFetchersSayAA0c10OptionInfoF0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/imageFetchers":{"role":"symbol","title":"imageFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the image fetchers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/imageFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/imagefetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/init(defaultimageoptions:imagefetchers:metadatafetchers:supportedimagetypes:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/init(defaultimageoptions:imagefetchers:metadatafetchers:supportedimagetypes:type:).json new file mode 100644 index 000000000..168bdd9a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/init(defaultimageoptions:imagefetchers:metadatafetchers:supportedimagetypes:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"defaultImageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV","text":"ImageOption"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV","text":"LibraryOptionInfoDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV","text":"LibraryOptionInfoDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"supportedImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/librarytypeoptionsdto\/init(defaultimageoptions:imagefetchers:metadatafetchers:supportedimagetypes:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/init(defaultImageOptions:imageFetchers:metadataFetchers:supportedImageTypes:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"defaultImageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(defaultImageOptions:imageFetchers:metadataFetchers:supportedImageTypes:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21LibraryTypeOptionsDtoV012defaultImageE013imageFetchers08metadataJ009supportedH5Types4typeACSayAA0H6OptionVGSg_SayAA0co4InfoF0VGSgAPSayAA0hD0OGSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/init(defaultImageOptions:imageFetchers:metadataFetchers:supportedImageTypes:type:)":{"role":"symbol","title":"init(defaultImageOptions:imageFetchers:metadataFetchers:supportedImageTypes:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"defaultImageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/init(defaultImageOptions:imageFetchers:metadataFetchers:supportedImageTypes:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/init(defaultimageoptions:imagefetchers:metadatafetchers:supportedimagetypes:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/init(from:).json new file mode 100644 index 000000000..978876e30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/librarytypeoptionsdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21LibraryTypeOptionsDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/metadatafetchers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/metadatafetchers.json new file mode 100644 index 000000000..7b19ef547 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/metadatafetchers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV","text":"LibraryOptionInfoDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/librarytypeoptionsdto\/metadatafetchers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/metadataFetchers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata fetchers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"title":"metadataFetchers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21LibraryTypeOptionsDtoV16metadataFetchersSayAA0c10OptionInfoF0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionInfoDto":{"role":"symbol","title":"LibraryOptionInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionInfoDto"}],"abstract":[{"type":"text","text":"Library option info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionInfoDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptioninfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/metadataFetchers":{"role":"symbol","title":"metadataFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LibraryOptionInfoDto","preciseIdentifier":"s:11JellyfinAPI20LibraryOptionInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata fetchers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/metadataFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/metadatafetchers"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/supportedimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/supportedimagetypes.json new file mode 100644 index 000000000..feb6a24cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/supportedimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/librarytypeoptionsdto\/supportedimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/supportedImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the supported image types."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"supportedImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21LibraryTypeOptionsDtoV19supportedImageTypesSayAA0hD0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/supportedImageTypes":{"role":"symbol","title":"supportedImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedImageTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the supported image types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/supportedImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/supportedimagetypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/type.json new file mode 100644 index 000000000..dc31fca2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/librarytypeoptionsdto/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/librarytypeoptionsdto\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21LibraryTypeOptionsDtoV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto":{"role":"symbol","title":"LibraryTypeOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"abstract":[{"type":"text","text":"Library type options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryTypeOptionsDto"}],"url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryTypeOptionsDto/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryTypeOptionsDto\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/librarytypeoptionsdto\/type"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo.json new file mode 100644 index 000000000..f530c8e9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryupdateinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"title":"LibraryUpdateInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17LibraryUpdateInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/init(collectionFolders:foldersAddedTo:foldersRemovedFrom:isEmpty:itemsAdded:itemsRemoved:itemsUpdated:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/collectionFolders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/foldersAddedTo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/foldersRemovedFrom","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/isEmpty","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsAdded","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsRemoved","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsUpdated"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/init(collectionFolders:foldersAddedTo:foldersRemovedFrom:isEmpty:itemsAdded:itemsRemoved:itemsUpdated:)":{"role":"symbol","title":"init(collectionFolders:foldersAddedTo:foldersRemovedFrom:isEmpty:itemsAdded:itemsRemoved:itemsUpdated:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"foldersAddedTo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"foldersRemovedFrom"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isEmpty"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemsAdded"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"itemsRemoved"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"itemsUpdated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/init(collectionFolders:foldersAddedTo:foldersRemovedFrom:isEmpty:itemsAdded:itemsRemoved:itemsUpdated:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/init(collectionfolders:foldersaddedto:foldersremovedfrom:isempty:itemsadded:itemsremoved:itemsupdated:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/foldersRemovedFrom":{"role":"symbol","title":"foldersRemovedFrom","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foldersRemovedFrom"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the folders removed from."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/foldersRemovedFrom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/foldersremovedfrom"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/collectionFolders":{"role":"symbol","title":"collectionFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/collectionFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/collectionfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/foldersAddedTo":{"role":"symbol","title":"foldersAddedTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foldersAddedTo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the folders added to."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/foldersAddedTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/foldersaddedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/isEmpty":{"role":"symbol","title":"isEmpty","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEmpty"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/isEmpty","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/isempty"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/itemsRemoved":{"role":"symbol","title":"itemsRemoved","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsRemoved"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items removed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsRemoved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/itemsremoved"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/itemsAdded":{"role":"symbol","title":"itemsAdded","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsAdded"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items added."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsAdded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/itemsadded"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/itemsUpdated":{"role":"symbol","title":"itemsUpdated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsUpdated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items updated."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsUpdated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/itemsupdated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/collectionfolders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/collectionfolders.json new file mode 100644 index 000000000..506281547 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/collectionfolders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryupdateinfo\/collectionfolders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/collectionFolders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"collectionFolders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LibraryUpdateInfoV17collectionFoldersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/collectionFolders":{"role":"symbol","title":"collectionFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/collectionFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/collectionfolders"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/foldersaddedto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/foldersaddedto.json new file mode 100644 index 000000000..4cde8dc0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/foldersaddedto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foldersAddedTo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryupdateinfo\/foldersaddedto"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/foldersAddedTo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the folders added to."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foldersAddedTo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"foldersAddedTo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LibraryUpdateInfoV14foldersAddedToSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/foldersAddedTo":{"role":"symbol","title":"foldersAddedTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foldersAddedTo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the folders added to."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/foldersAddedTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/foldersaddedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/foldersremovedfrom.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/foldersremovedfrom.json new file mode 100644 index 000000000..dd26f59ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/foldersremovedfrom.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foldersRemovedFrom"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryupdateinfo\/foldersremovedfrom"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/foldersRemovedFrom","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the folders removed from."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foldersRemovedFrom"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"foldersRemovedFrom","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LibraryUpdateInfoV18foldersRemovedFromSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/foldersRemovedFrom":{"role":"symbol","title":"foldersRemovedFrom","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foldersRemovedFrom"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the folders removed from."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/foldersRemovedFrom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/foldersremovedfrom"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/init(collectionfolders:foldersaddedto:foldersremovedfrom:isempty:itemsadded:itemsremoved:itemsupdated:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/init(collectionfolders:foldersaddedto:foldersremovedfrom:isempty:itemsadded:itemsremoved:itemsupdated:).json new file mode 100644 index 000000000..00dd1df78 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/init(collectionfolders:foldersaddedto:foldersremovedfrom:isempty:itemsadded:itemsremoved:itemsupdated:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"foldersAddedTo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"foldersRemovedFrom"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isEmpty"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemsAdded"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"itemsRemoved"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"itemsUpdated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryupdateinfo\/init(collectionfolders:foldersaddedto:foldersremovedfrom:isempty:itemsadded:itemsremoved:itemsupdated:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/init(collectionFolders:foldersAddedTo:foldersRemovedFrom:isEmpty:itemsAdded:itemsRemoved:itemsUpdated:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"foldersAddedTo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"foldersRemovedFrom"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isEmpty"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemsAdded"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"itemsRemoved"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"itemsUpdated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"title":"init(collectionFolders:foldersAddedTo:foldersRemovedFrom:isEmpty:itemsAdded:itemsRemoved:itemsUpdated:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17LibraryUpdateInfoV17collectionFolders14foldersAddedTo0H11RemovedFrom7isEmpty05itemsI00oK00O7UpdatedACSaySSGSg_A2LSbSgA3Ltcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/init(collectionFolders:foldersAddedTo:foldersRemovedFrom:isEmpty:itemsAdded:itemsRemoved:itemsUpdated:)":{"role":"symbol","title":"init(collectionFolders:foldersAddedTo:foldersRemovedFrom:isEmpty:itemsAdded:itemsRemoved:itemsUpdated:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"foldersAddedTo"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"foldersRemovedFrom"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isEmpty"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemsAdded"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"itemsRemoved"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"itemsUpdated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/init(collectionFolders:foldersAddedTo:foldersRemovedFrom:isEmpty:itemsAdded:itemsRemoved:itemsUpdated:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/init(collectionfolders:foldersaddedto:foldersremovedfrom:isempty:itemsadded:itemsremoved:itemsupdated:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/init(from:).json new file mode 100644 index 000000000..d3573c4f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryupdateinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17LibraryUpdateInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/isempty.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/isempty.json new file mode 100644 index 000000000..eec335ef1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/isempty.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEmpty"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryupdateinfo\/isempty"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/isEmpty","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEmpty"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isEmpty","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LibraryUpdateInfoV7isEmptySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/isEmpty":{"role":"symbol","title":"isEmpty","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEmpty"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/isEmpty","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/isempty"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/itemsadded.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/itemsadded.json new file mode 100644 index 000000000..bf59307e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/itemsadded.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsAdded"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryupdateinfo\/itemsadded"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsAdded","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items added."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsAdded"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"itemsAdded","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LibraryUpdateInfoV10itemsAddedSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/itemsAdded":{"role":"symbol","title":"itemsAdded","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsAdded"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items added."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsAdded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/itemsadded"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/itemsremoved.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/itemsremoved.json new file mode 100644 index 000000000..6d731ed7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/itemsremoved.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsRemoved"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryupdateinfo\/itemsremoved"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsRemoved","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items removed."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsRemoved"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"itemsRemoved","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LibraryUpdateInfoV12itemsRemovedSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/itemsRemoved":{"role":"symbol","title":"itemsRemoved","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsRemoved"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items removed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsRemoved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/itemsremoved"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/itemsupdated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/itemsupdated.json new file mode 100644 index 000000000..0cc52cf32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/libraryupdateinfo/itemsupdated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsUpdated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/libraryupdateinfo\/itemsupdated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsUpdated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items updated."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsUpdated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"itemsUpdated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LibraryUpdateInfoV12itemsUpdatedSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo":{"role":"symbol","title":"LibraryUpdateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryUpdateInfo"}],"abstract":[{"type":"text","text":"Class LibraryUpdateInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryUpdateInfo"}],"url":"\/documentation\/jellyfinapi\/libraryupdateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryUpdateInfo/itemsUpdated":{"role":"symbol","title":"itemsUpdated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsUpdated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items updated."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryUpdateInfo\/itemsUpdated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/libraryupdateinfo\/itemsupdated"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo.json new file mode 100644 index 000000000..12f9aaf12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"title":"ListingsProviderInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20ListingsProviderInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/init(channelMappings:country:enableAllTuners:enabledTuners:id:kidsCategories:listingsID:movieCategories:moviePrefix:newsCategories:password:path:preferredLanguage:sportsCategories:type:userAgent:username:zipCode:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/channelMappings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/country","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/enableAllTuners","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/enabledTuners","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/id-91x3x","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/kidsCategories","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/listingsID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/movieCategories","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/moviePrefix","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/newsCategories","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/password","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/preferredLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/sportsCategories","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/userAgent","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/username","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/zipCode"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/preferredLanguage":{"role":"symbol","title":"preferredLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/preferredLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/preferredlanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/enableAllTuners":{"role":"symbol","title":"enableAllTuners","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllTuners"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/enableAllTuners","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/enablealltuners"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/id-91x3x":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/id-91x3x","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/id-91x3x"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/kidsCategories":{"role":"symbol","title":"kidsCategories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"kidsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/kidsCategories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/kidscategories"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/password":{"role":"symbol","title":"password","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/password","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/password"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/country":{"role":"symbol","title":"country","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/country","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/country"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/moviePrefix":{"role":"symbol","title":"moviePrefix","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"moviePrefix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/moviePrefix","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/movieprefix"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/listingsID":{"role":"symbol","title":"listingsID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"listingsID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/listingsID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/listingsid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/username":{"role":"symbol","title":"username","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/username","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/username"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/zipCode":{"role":"symbol","title":"zipCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"zipCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/zipCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/zipcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/enabledTuners":{"role":"symbol","title":"enabledTuners","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledTuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/enabledTuners","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/enabledtuners"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/path"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/init(channelMappings:country:enableAllTuners:enabledTuners:id:kidsCategories:listingsID:movieCategories:moviePrefix:newsCategories:password:path:preferredLanguage:sportsCategories:type:userAgent:username:zipCode:)":{"role":"symbol","title":"init(channelMappings:country:enableAllTuners:enabledTuners:id:kidsCategories:listingsID:movieCategories:moviePrefix:newsCategories:password:path:preferredLanguage:sportsCategories:type:userAgent:username:zipCode:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelMappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAllTuners"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enabledTuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"kidsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"listingsID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"movieCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"moviePrefix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sportsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"zipCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/init(channelMappings:country:enableAllTuners:enabledTuners:id:kidsCategories:listingsID:movieCategories:moviePrefix:newsCategories:password:path:preferredLanguage:sportsCategories:type:userAgent:username:zipCode:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/init(channelmappings:country:enablealltuners:enabledtuners:id:kidscategories:listingsid:moviecategories:movieprefix:newscategories:password:path:preferredlanguage:sportscategories:type:useragent:username:zipcode:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/newsCategories":{"role":"symbol","title":"newsCategories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/newsCategories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/newscategories"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/sportsCategories":{"role":"symbol","title":"sportsCategories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sportsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/sportsCategories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/sportscategories"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/userAgent":{"role":"symbol","title":"userAgent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/userAgent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/useragent"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/channelMappings":{"role":"symbol","title":"channelMappings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelMappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/channelMappings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/channelmappings"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/movieCategories":{"role":"symbol","title":"movieCategories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/movieCategories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/moviecategories"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/channelmappings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/channelmappings.json new file mode 100644 index 000000000..6b8bc761e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/channelmappings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelMappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV","text":"NameValuePair"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/channelmappings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/channelMappings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelMappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"title":"channelMappings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV15channelMappingsSayAA13NameValuePairVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/channelMappings":{"role":"symbol","title":"channelMappings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelMappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/channelMappings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/channelmappings"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/country.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/country.json new file mode 100644 index 000000000..879d16929 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/country.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/country"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/country","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"country","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV7countrySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/country":{"role":"symbol","title":"country","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/country","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/country"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/enablealltuners.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/enablealltuners.json new file mode 100644 index 000000000..898b5344e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/enablealltuners.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllTuners"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/enablealltuners"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/enableAllTuners","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllTuners"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAllTuners","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV15enableAllTunersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/enableAllTuners":{"role":"symbol","title":"enableAllTuners","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllTuners"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/enableAllTuners","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/enablealltuners"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/enabledtuners.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/enabledtuners.json new file mode 100644 index 000000000..a8d65e1bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/enabledtuners.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledTuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/enabledtuners"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/enabledTuners","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledTuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"enabledTuners","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV13enabledTunersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/enabledTuners":{"role":"symbol","title":"enabledTuners","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledTuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/enabledTuners","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/enabledtuners"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/id-7admm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/id-7admm.json new file mode 100644 index 000000000..92c3a9d14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/id-7admm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/id-7admm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/id-7admm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI20ListingsProviderInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/id-7admm":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/id-7admm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/id-7admm"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/id-91x3x.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/id-91x3x.json new file mode 100644 index 000000000..1821d7904 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/id-91x3x.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/id-91x3x"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/id-91x3x","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/id-91x3x":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/id-91x3x","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/id-91x3x"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/identifiable-implementations.json new file mode 100644 index 000000000..792352228 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/id-7admm"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/id-7admm":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/id-7admm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/id-7admm"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/init(channelmappings:country:enablealltuners:enabledtuners:id:kidscategories:listingsid:moviecategories:movieprefix:newscategories:password:path:preferredlanguage:sportscategories:type:useragent:username:zipcode:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/init(channelmappings:country:enablealltuners:enabledtuners:id:kidscategories:listingsid:moviecategories:movieprefix:newscategories:password:path:preferredlanguage:sportscategories:type:useragent:username:zipcode:).json new file mode 100644 index 000000000..4ff9228ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/init(channelmappings:country:enablealltuners:enabledtuners:id:kidscategories:listingsid:moviecategories:movieprefix:newscategories:password:path:preferredlanguage:sportscategories:type:useragent:username:zipcode:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelMappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV","text":"NameValuePair"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAllTuners"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enabledTuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"kidsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"listingsID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"movieCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"moviePrefix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"newsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"preferredLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sportsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"zipCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/init(channelmappings:country:enablealltuners:enabledtuners:id:kidscategories:listingsid:moviecategories:movieprefix:newscategories:password:path:preferredlanguage:sportscategories:type:useragent:username:zipcode:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/init(channelMappings:country:enableAllTuners:enabledTuners:id:kidsCategories:listingsID:movieCategories:moviePrefix:newsCategories:password:path:preferredLanguage:sportsCategories:type:userAgent:username:zipCode:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelMappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAllTuners"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enabledTuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"kidsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"listingsID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"movieCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"moviePrefix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sportsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"zipCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(channelMappings:country:enableAllTuners:enabledTuners:id:kidsCategories:listingsID:movieCategories:moviePrefix:newsCategories:password:path:preferredLanguage:sportsCategories:type:userAgent:username:zipCode:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20ListingsProviderInfoV15channelMappings7country15enableAllTuners07enabledK02id14kidsCategories10listingsID05movieO00R6Prefix04newsO08password4path17preferredLanguage06sportsO04type9userAgent8username7zipCodeACSayAA13NameValuePairVGSg_SSSgSbSgSaySSGSgAZA1_AZA1_AZA1_A3ZA1_A4Ztcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/init(channelMappings:country:enableAllTuners:enabledTuners:id:kidsCategories:listingsID:movieCategories:moviePrefix:newsCategories:password:path:preferredLanguage:sportsCategories:type:userAgent:username:zipCode:)":{"role":"symbol","title":"init(channelMappings:country:enableAllTuners:enabledTuners:id:kidsCategories:listingsID:movieCategories:moviePrefix:newsCategories:password:path:preferredLanguage:sportsCategories:type:userAgent:username:zipCode:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelMappings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAllTuners"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enabledTuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"kidsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"listingsID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"movieCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"moviePrefix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sportsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"zipCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/init(channelMappings:country:enableAllTuners:enabledTuners:id:kidsCategories:listingsID:movieCategories:moviePrefix:newsCategories:password:path:preferredLanguage:sportsCategories:type:userAgent:username:zipCode:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/init(channelmappings:country:enablealltuners:enabledtuners:id:kidscategories:listingsid:moviecategories:movieprefix:newscategories:password:path:preferredlanguage:sportscategories:type:useragent:username:zipcode:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/init(from:).json new file mode 100644 index 000000000..3f1d84a87 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20ListingsProviderInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/kidscategories.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/kidscategories.json new file mode 100644 index 000000000..68e3a55a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/kidscategories.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"kidsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/kidscategories"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/kidsCategories","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"kidsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"kidsCategories","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV14kidsCategoriesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/kidsCategories":{"role":"symbol","title":"kidsCategories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"kidsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/kidsCategories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/kidscategories"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/listingsid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/listingsid.json new file mode 100644 index 000000000..382abc1dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/listingsid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"listingsID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/listingsid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/listingsID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"listingsID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"listingsID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV10listingsIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/listingsID":{"role":"symbol","title":"listingsID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"listingsID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/listingsID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/listingsid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/moviecategories.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/moviecategories.json new file mode 100644 index 000000000..72d8faca2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/moviecategories.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/moviecategories"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/movieCategories","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"movieCategories","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV15movieCategoriesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/movieCategories":{"role":"symbol","title":"movieCategories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/movieCategories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/moviecategories"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/movieprefix.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/movieprefix.json new file mode 100644 index 000000000..8c49b6543 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/movieprefix.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"moviePrefix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/movieprefix"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/moviePrefix","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"moviePrefix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"moviePrefix","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV11moviePrefixSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/moviePrefix":{"role":"symbol","title":"moviePrefix","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"moviePrefix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/moviePrefix","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/movieprefix"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/newscategories.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/newscategories.json new file mode 100644 index 000000000..052f595aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/newscategories.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/newscategories"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/newsCategories","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"newsCategories","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV14newsCategoriesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/newsCategories":{"role":"symbol","title":"newsCategories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/newsCategories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/newscategories"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/password.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/password.json new file mode 100644 index 000000000..39c5a49d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/password.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/password"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/password","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"password","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV8passwordSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/password":{"role":"symbol","title":"password","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/password","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/password"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/path.json new file mode 100644 index 000000000..39005a6d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/preferredlanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/preferredlanguage.json new file mode 100644 index 000000000..ed74f82c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/preferredlanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/preferredlanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/preferredLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"preferredLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV17preferredLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/preferredLanguage":{"role":"symbol","title":"preferredLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/preferredLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/preferredlanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/sportscategories.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/sportscategories.json new file mode 100644 index 000000000..3e88059a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/sportscategories.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sportsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/sportscategories"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/sportsCategories","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sportsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sportsCategories","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV16sportsCategoriesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/sportsCategories":{"role":"symbol","title":"sportsCategories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sportsCategories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/sportsCategories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/sportscategories"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/type.json new file mode 100644 index 000000000..b9fe7e3ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/useragent.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/useragent.json new file mode 100644 index 000000000..065de6b1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/useragent.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/useragent"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/userAgent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"userAgent","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV9userAgentSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/userAgent":{"role":"symbol","title":"userAgent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/userAgent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/useragent"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/username.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/username.json new file mode 100644 index 000000000..1bfafb96a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/username.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/username"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/username","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"username","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV8usernameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/username":{"role":"symbol","title":"username","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/username","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/username"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/zipcode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/zipcode.json new file mode 100644 index 000000000..4ef492c66 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/listingsproviderinfo/zipcode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"zipCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/listingsproviderinfo\/zipcode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/zipCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"zipCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"zipCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20ListingsProviderInfoV7zipCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo/zipCode":{"role":"symbol","title":"zipCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"zipCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo\/zipCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/listingsproviderinfo\/zipcode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse.json new file mode 100644 index 000000000..5af8c3148 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveStreamResponse"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livestreamresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveStreamResponse"}],"title":"LiveStreamResponse","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18LiveStreamResponseV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LiveStreamResponse"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/init(mediaSource:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/mediaSource"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse/mediaSource":{"role":"symbol","title":"mediaSource","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSource"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/mediaSource","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livestreamresponse\/mediasource"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse":{"role":"symbol","title":"LiveStreamResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveStreamResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveStreamResponse"}],"url":"\/documentation\/jellyfinapi\/livestreamresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse/init(mediaSource:)":{"role":"symbol","title":"init(mediaSource:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSource"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/init(mediaSource:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livestreamresponse\/init(mediasource:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livestreamresponse\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse/init(from:).json new file mode 100644 index 000000000..486ac0486 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livestreamresponse\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18LiveStreamResponseV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse":{"role":"symbol","title":"LiveStreamResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveStreamResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveStreamResponse"}],"url":"\/documentation\/jellyfinapi\/livestreamresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livestreamresponse\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse/init(mediasource:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse/init(mediasource:).json new file mode 100644 index 000000000..044b8b270 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse/init(mediasource:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSource"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV","text":"MediaSourceInfo"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livestreamresponse\/init(mediasource:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/init(mediaSource:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSource"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"?)"}],"title":"init(mediaSource:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18LiveStreamResponseV11mediaSourceAcA05MediaG4InfoVSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse":{"role":"symbol","title":"LiveStreamResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveStreamResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveStreamResponse"}],"url":"\/documentation\/jellyfinapi\/livestreamresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse/init(mediaSource:)":{"role":"symbol","title":"init(mediaSource:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSource"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/init(mediaSource:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livestreamresponse\/init(mediasource:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse/mediasource.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse/mediasource.json new file mode 100644 index 000000000..80f0829b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livestreamresponse/mediasource.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSource"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV","text":"MediaSourceInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livestreamresponse\/mediasource"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/mediaSource","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSource"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"?"}],"title":"mediaSource","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18LiveStreamResponseV11mediaSourceAA05MediaG4InfoVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse":{"role":"symbol","title":"LiveStreamResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveStreamResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveStreamResponse"}],"url":"\/documentation\/jellyfinapi\/livestreamresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse/mediaSource":{"role":"symbol","title":"mediaSource","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSource"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse\/mediaSource","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livestreamresponse\/mediasource"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo.json new file mode 100644 index 000000000..bf2143991 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvInfo"}],"title":"LiveTvInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10LiveTvInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LiveTvInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/init(enabledUsers:isEnabled:services:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/enabledUsers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/isEnabled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/services"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvinfo\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo/isEnabled":{"role":"symbol","title":"isEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/isEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvinfo\/isenabled"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo/init(enabledUsers:isEnabled:services:)":{"role":"symbol","title":"init(enabledUsers:isEnabled:services:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enabledUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LiveTvServiceInfo","preciseIdentifier":"s:11JellyfinAPI17LiveTvServiceInfoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/init(enabledUsers:isEnabled:services:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvinfo\/init(enabledusers:isenabled:services:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo/enabledUsers":{"role":"symbol","title":"enabledUsers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the enabled users."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/enabledUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvinfo\/enabledusers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LiveTvServiceInfo","preciseIdentifier":"s:11JellyfinAPI17LiveTvServiceInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the services."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/services","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvinfo\/services"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo":{"role":"symbol","title":"LiveTvInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvInfo"}],"url":"\/documentation\/jellyfinapi\/livetvinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/enabledusers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/enabledusers.json new file mode 100644 index 000000000..d39d9ec46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/enabledusers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvinfo\/enabledusers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/enabledUsers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the enabled users."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"enabledUsers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10LiveTvInfoV12enabledUsersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo":{"role":"symbol","title":"LiveTvInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvInfo"}],"url":"\/documentation\/jellyfinapi\/livetvinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo/enabledUsers":{"role":"symbol","title":"enabledUsers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the enabled users."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/enabledUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvinfo\/enabledusers"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/init(enabledusers:isenabled:services:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/init(enabledusers:isenabled:services:).json new file mode 100644 index 000000000..95c645800 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/init(enabledusers:isenabled:services:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enabledUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","preciseIdentifier":"s:11JellyfinAPI17LiveTvServiceInfoV","text":"LiveTvServiceInfo"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvinfo\/init(enabledusers:isenabled:services:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/init(enabledUsers:isEnabled:services:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enabledUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LiveTvServiceInfo","preciseIdentifier":"s:11JellyfinAPI17LiveTvServiceInfoV"},{"kind":"text","text":"]?)"}],"title":"init(enabledUsers:isEnabled:services:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10LiveTvInfoV12enabledUsers9isEnabled8servicesACSaySSGSg_SbSgSayAA0cd7ServiceE0VGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo":{"role":"symbol","title":"LiveTvInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvInfo"}],"url":"\/documentation\/jellyfinapi\/livetvinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo/init(enabledUsers:isEnabled:services:)":{"role":"symbol","title":"init(enabledUsers:isEnabled:services:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enabledUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LiveTvServiceInfo","preciseIdentifier":"s:11JellyfinAPI17LiveTvServiceInfoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/init(enabledUsers:isEnabled:services:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvinfo\/init(enabledusers:isenabled:services:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/init(from:).json new file mode 100644 index 000000000..68f48f7bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10LiveTvInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo":{"role":"symbol","title":"LiveTvInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvInfo"}],"url":"\/documentation\/jellyfinapi\/livetvinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/isenabled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/isenabled.json new file mode 100644 index 000000000..146c6ba98 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/isenabled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvinfo\/isenabled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/isEnabled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is enabled."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isEnabled","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10LiveTvInfoV9isEnabledSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo":{"role":"symbol","title":"LiveTvInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvInfo"}],"url":"\/documentation\/jellyfinapi\/livetvinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo/isEnabled":{"role":"symbol","title":"isEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/isEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvinfo\/isenabled"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/services.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/services.json new file mode 100644 index 000000000..4373daa1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvinfo/services.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","preciseIdentifier":"s:11JellyfinAPI17LiveTvServiceInfoV","text":"LiveTvServiceInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvinfo\/services"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/services","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the services."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LiveTvServiceInfo","preciseIdentifier":"s:11JellyfinAPI17LiveTvServiceInfoV"},{"kind":"text","text":"]?"}],"title":"services","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10LiveTvInfoV8servicesSayAA0cd7ServiceE0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo":{"role":"symbol","title":"LiveTvInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvInfo"}],"url":"\/documentation\/jellyfinapi\/livetvinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"LiveTvServiceInfo","preciseIdentifier":"s:11JellyfinAPI17LiveTvServiceInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the services."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo\/services","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvinfo\/services"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions.json new file mode 100644 index 000000000..7a14ce903 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"title":"LiveTvOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI13LiveTvOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/init(enableOriginalAudioWithEncodedRecordings:enableRecordingSubfolders:guideDays:listingProviders:mediaLocationsCreated:movieRecordingPath:postPaddingSeconds:prePaddingSeconds:recordingPath:recordingPostProcessor:recordingPostProcessorArguments:seriesRecordingPath:tunerHosts:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/enableOriginalAudioWithEncodedRecordings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/enableRecordingSubfolders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/guideDays","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/listingProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/mediaLocationsCreated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/movieRecordingPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/postPaddingSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/prePaddingSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPostProcessor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPostProcessorArguments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/seriesRecordingPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/tunerHosts"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/movieRecordingPath":{"role":"symbol","title":"movieRecordingPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/movieRecordingPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/movierecordingpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/mediaLocationsCreated":{"role":"symbol","title":"mediaLocationsCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaLocationsCreated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/mediaLocationsCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/medialocationscreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/init(enableOriginalAudioWithEncodedRecordings:enableRecordingSubfolders:guideDays:listingProviders:mediaLocationsCreated:movieRecordingPath:postPaddingSeconds:prePaddingSeconds:recordingPath:recordingPostProcessor:recordingPostProcessorArguments:seriesRecordingPath:tunerHosts:)":{"role":"symbol","title":"init(enableOriginalAudioWithEncodedRecordings:enableRecordingSubfolders:guideDays:listingProviders:mediaLocationsCreated:movieRecordingPath:postPaddingSeconds:prePaddingSeconds:recordingPath:recordingPostProcessor:recordingPostProcessorArguments:seriesRecordingPath:tunerHosts:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableOriginalAudioWithEncodedRecordings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRecordingSubfolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"guideDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"listingProviders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaLocationsCreated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"movieRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"recordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"recordingPostProcessor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"recordingPostProcessorArguments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tunerHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/init(enableOriginalAudioWithEncodedRecordings:enableRecordingSubfolders:guideDays:listingProviders:mediaLocationsCreated:movieRecordingPath:postPaddingSeconds:prePaddingSeconds:recordingPath:recordingPostProcessor:recordingPostProcessorArguments:seriesRecordingPath:tunerHosts:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/init(enableoriginalaudiowithencodedrecordings:enablerecordingsubfolders:guidedays:listingproviders:medialocationscreated:movierecordingpath:postpaddingseconds:prepaddingseconds:recordingpath:recordingpostprocessor:recordingpostprocessorargu-8ci6z"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/enableOriginalAudioWithEncodedRecordings":{"role":"symbol","title":"enableOriginalAudioWithEncodedRecordings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableOriginalAudioWithEncodedRecordings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/enableOriginalAudioWithEncodedRecordings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/enableoriginalaudiowithencodedrecordings"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/postPaddingSeconds":{"role":"symbol","title":"postPaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/postPaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/postpaddingseconds"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/enableRecordingSubfolders":{"role":"symbol","title":"enableRecordingSubfolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRecordingSubfolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/enableRecordingSubfolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/enablerecordingsubfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/listingProviders":{"role":"symbol","title":"listingProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"listingProviders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/listingProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/listingproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/recordingPath":{"role":"symbol","title":"recordingPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/recordingpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/guideDays":{"role":"symbol","title":"guideDays","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guideDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/guideDays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/guidedays"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/seriesRecordingPath":{"role":"symbol","title":"seriesRecordingPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/seriesRecordingPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/seriesrecordingpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/tunerHosts":{"role":"symbol","title":"tunerHosts","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/tunerHosts","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/tunerhosts"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/prePaddingSeconds":{"role":"symbol","title":"prePaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/prePaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/prepaddingseconds"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/recordingPostProcessor":{"role":"symbol","title":"recordingPostProcessor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPostProcessor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPostProcessor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/recordingpostprocessor"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/recordingPostProcessorArguments":{"role":"symbol","title":"recordingPostProcessorArguments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPostProcessorArguments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPostProcessorArguments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/recordingpostprocessorarguments"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/enableoriginalaudiowithencodedrecordings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/enableoriginalaudiowithencodedrecordings.json new file mode 100644 index 000000000..8934071a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/enableoriginalaudiowithencodedrecordings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableOriginalAudioWithEncodedRecordings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/enableoriginalaudiowithencodedrecordings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/enableOriginalAudioWithEncodedRecordings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableOriginalAudioWithEncodedRecordings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableOriginalAudioWithEncodedRecordings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV40enableOriginalAudioWithEncodedRecordingsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/enableOriginalAudioWithEncodedRecordings":{"role":"symbol","title":"enableOriginalAudioWithEncodedRecordings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableOriginalAudioWithEncodedRecordings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/enableOriginalAudioWithEncodedRecordings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/enableoriginalaudiowithencodedrecordings"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/enablerecordingsubfolders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/enablerecordingsubfolders.json new file mode 100644 index 000000000..37f816e30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/enablerecordingsubfolders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRecordingSubfolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/enablerecordingsubfolders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/enableRecordingSubfolders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRecordingSubfolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableRecordingSubfolders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV25enableRecordingSubfoldersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/enableRecordingSubfolders":{"role":"symbol","title":"enableRecordingSubfolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRecordingSubfolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/enableRecordingSubfolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/enablerecordingsubfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/guidedays.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/guidedays.json new file mode 100644 index 000000000..ffdc4aa9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/guidedays.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guideDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/guidedays"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/guideDays","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guideDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"guideDays","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV9guideDayss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/guideDays":{"role":"symbol","title":"guideDays","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guideDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/guideDays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/guidedays"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/init(enableoriginalaudiowithencodedrecordings:enablerecordingsubfolders:guidedays:listingproviders:medialocationscreated:movierecordingpath:postpaddingseconds:prepaddingseconds:recordingpath:recordingpostprocessor:recordingpostprocessorargu-8ci6z.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/init(enableoriginalaudiowithencodedrecordings:enablerecordingsubfolders:guidedays:listingproviders:medialocationscreated:movierecordingpath:postpaddingseconds:prepaddingseconds:recordingpath:recordingpostprocessor:recordingpostprocessorargu-8ci6z.json new file mode 100644 index 000000000..255741f55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/init(enableoriginalaudiowithencodedrecordings:enablerecordingsubfolders:guidedays:listingproviders:medialocationscreated:movierecordingpath:postpaddingseconds:prepaddingseconds:recordingpath:recordingpostprocessor:recordingpostprocessorargu-8ci6z.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableOriginalAudioWithEncodedRecordings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableRecordingSubfolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"guideDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"listingProviders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV","text":"ListingsProviderInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaLocationsCreated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"movieRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"recordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"recordingPostProcessor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"recordingPostProcessorArguments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tunerHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV","text":"TunerHostInfo"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/init(enableoriginalaudiowithencodedrecordings:enablerecordingsubfolders:guidedays:listingproviders:medialocationscreated:movierecordingpath:postpaddingseconds:prepaddingseconds:recordingpath:recordingpostprocessor:recordingpostprocessorargu-8ci6z"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/init(enableOriginalAudioWithEncodedRecordings:enableRecordingSubfolders:guideDays:listingProviders:mediaLocationsCreated:movieRecordingPath:postPaddingSeconds:prePaddingSeconds:recordingPath:recordingPostProcessor:recordingPostProcessorArguments:seriesRecordingPath:tunerHosts:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableOriginalAudioWithEncodedRecordings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRecordingSubfolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"guideDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"listingProviders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaLocationsCreated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"movieRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"recordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"recordingPostProcessor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"recordingPostProcessorArguments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tunerHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]?)"}],"title":"init(enableOriginalAudioWithEncodedRecordings:enableRecordingSubfolders:guideDays:listingProviders:mediaLocationsCreated:movieRecordingPath:postPaddingSeconds:prePaddingSeconds:recordingPath:recordingPostProcessor:recordingPostProcessorArguments:seriesRecordingPath:tunerHosts:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13LiveTvOptionsV40enableOriginalAudioWithEncodedRecordings0F19RecordingSubfolders9guideDays16listingProviders21mediaLocationsCreated05movieL4Path18postPaddingSeconds03prexY009recordingV022recordingPostProcessor31recordingPostProcessorArguments06serieslV010tunerHostsACSbSg_AQs5Int32VSgSayAA20ListingsProviderInfoVGSgSaySSGSgSSSgA2TA_A_A_A_SayAA13TunerHostInfoVGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/init(enableOriginalAudioWithEncodedRecordings:enableRecordingSubfolders:guideDays:listingProviders:mediaLocationsCreated:movieRecordingPath:postPaddingSeconds:prePaddingSeconds:recordingPath:recordingPostProcessor:recordingPostProcessorArguments:seriesRecordingPath:tunerHosts:)":{"role":"symbol","title":"init(enableOriginalAudioWithEncodedRecordings:enableRecordingSubfolders:guideDays:listingProviders:mediaLocationsCreated:movieRecordingPath:postPaddingSeconds:prePaddingSeconds:recordingPath:recordingPostProcessor:recordingPostProcessorArguments:seriesRecordingPath:tunerHosts:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableOriginalAudioWithEncodedRecordings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRecordingSubfolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"guideDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"listingProviders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaLocationsCreated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"movieRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"recordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"recordingPostProcessor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"recordingPostProcessorArguments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tunerHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/init(enableOriginalAudioWithEncodedRecordings:enableRecordingSubfolders:guideDays:listingProviders:mediaLocationsCreated:movieRecordingPath:postPaddingSeconds:prePaddingSeconds:recordingPath:recordingPostProcessor:recordingPostProcessorArguments:seriesRecordingPath:tunerHosts:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/init(enableoriginalaudiowithencodedrecordings:enablerecordingsubfolders:guidedays:listingproviders:medialocationscreated:movierecordingpath:postpaddingseconds:prepaddingseconds:recordingpath:recordingpostprocessor:recordingpostprocessorargu-8ci6z"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/init(from:).json new file mode 100644 index 000000000..fa4550ebb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13LiveTvOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/listingproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/listingproviders.json new file mode 100644 index 000000000..c622c6e91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/listingproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"listingProviders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV","text":"ListingsProviderInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/listingproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/listingProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"listingProviders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV"},{"kind":"text","text":"]?"}],"title":"listingProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV16listingProvidersSayAA20ListingsProviderInfoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/listingProviders":{"role":"symbol","title":"listingProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"listingProviders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/listingProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/listingproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/medialocationscreated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/medialocationscreated.json new file mode 100644 index 000000000..0316d61ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/medialocationscreated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaLocationsCreated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/medialocationscreated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/mediaLocationsCreated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaLocationsCreated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaLocationsCreated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV21mediaLocationsCreatedSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/mediaLocationsCreated":{"role":"symbol","title":"mediaLocationsCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaLocationsCreated"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/mediaLocationsCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/medialocationscreated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/movierecordingpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/movierecordingpath.json new file mode 100644 index 000000000..e3b845dfd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/movierecordingpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/movierecordingpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/movieRecordingPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"movieRecordingPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV18movieRecordingPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/movieRecordingPath":{"role":"symbol","title":"movieRecordingPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"movieRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/movieRecordingPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/movierecordingpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/postpaddingseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/postpaddingseconds.json new file mode 100644 index 000000000..b10b65dc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/postpaddingseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/postpaddingseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/postPaddingSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"postPaddingSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV18postPaddingSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/postPaddingSeconds":{"role":"symbol","title":"postPaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/postPaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/postpaddingseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/prepaddingseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/prepaddingseconds.json new file mode 100644 index 000000000..fa996aeac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/prepaddingseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/prepaddingseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/prePaddingSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"prePaddingSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV17prePaddingSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/prePaddingSeconds":{"role":"symbol","title":"prePaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/prePaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/prepaddingseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/recordingpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/recordingpath.json new file mode 100644 index 000000000..6158a9ce2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/recordingpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/recordingpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"recordingPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV13recordingPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/recordingPath":{"role":"symbol","title":"recordingPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/recordingpath"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/recordingpostprocessor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/recordingpostprocessor.json new file mode 100644 index 000000000..02f671302 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/recordingpostprocessor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPostProcessor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/recordingpostprocessor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPostProcessor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPostProcessor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"recordingPostProcessor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV22recordingPostProcessorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/recordingPostProcessor":{"role":"symbol","title":"recordingPostProcessor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPostProcessor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPostProcessor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/recordingpostprocessor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/recordingpostprocessorarguments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/recordingpostprocessorarguments.json new file mode 100644 index 000000000..87ac48732 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/recordingpostprocessorarguments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPostProcessorArguments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/recordingpostprocessorarguments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPostProcessorArguments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPostProcessorArguments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"recordingPostProcessorArguments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV31recordingPostProcessorArgumentsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/recordingPostProcessorArguments":{"role":"symbol","title":"recordingPostProcessorArguments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordingPostProcessorArguments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/recordingPostProcessorArguments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/recordingpostprocessorarguments"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/seriesrecordingpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/seriesrecordingpath.json new file mode 100644 index 000000000..b13b8f455 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/seriesrecordingpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/seriesrecordingpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/seriesRecordingPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesRecordingPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV19seriesRecordingPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/seriesRecordingPath":{"role":"symbol","title":"seriesRecordingPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesRecordingPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/seriesRecordingPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/seriesrecordingpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/tunerhosts.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/tunerhosts.json new file mode 100644 index 000000000..2611e29a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvoptions/tunerhosts.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV","text":"TunerHostInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvoptions\/tunerhosts"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/tunerHosts","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]?"}],"title":"tunerHosts","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13LiveTvOptionsV10tunerHostsSayAA13TunerHostInfoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions":{"role":"symbol","title":"LiveTvOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvOptions"}],"url":"\/documentation\/jellyfinapi\/livetvoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvOptions/tunerHosts":{"role":"symbol","title":"tunerHosts","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvOptions\/tunerHosts","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvoptions\/tunerhosts"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo.json new file mode 100644 index 000000000..04dd27ec9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class ServiceInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"title":"LiveTvServiceInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/init(hasUpdateAvailable:homePageURL:isVisible:name:status:statusMessage:tuners:version:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/hasUpdateAvailable","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/homePageURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/isVisible","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/status","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/statusMessage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/tuners","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/version"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/tuners":{"role":"symbol","title":"tuners","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/tuners","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/tuners"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LiveTvServiceStatus","preciseIdentifier":"s:11JellyfinAPI19LiveTvServiceStatusO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/init(hasUpdateAvailable:homePageURL:isVisible:name:status:statusMessage:tuners:version:)":{"role":"symbol","title":"init(hasUpdateAvailable:homePageURL:isVisible:name:status:statusMessage:tuners:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"homePageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isVisible"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LiveTvServiceStatus","preciseIdentifier":"s:11JellyfinAPI19LiveTvServiceStatusO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"statusMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/init(hasUpdateAvailable:homePageURL:isVisible:name:status:statusMessage:tuners:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/init(hasupdateavailable:homepageurl:isvisible:name:status:statusmessage:tuners:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/homePageURL":{"role":"symbol","title":"homePageURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"homePageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the home page URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/homePageURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/homepageurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/hasUpdateAvailable":{"role":"symbol","title":"hasUpdateAvailable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has update available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/hasUpdateAvailable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/hasupdateavailable"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/isVisible":{"role":"symbol","title":"isVisible","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVisible"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is visible."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/isVisible","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/isvisible"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/statusMessage":{"role":"symbol","title":"statusMessage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the status message."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/statusMessage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/statusmessage"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/hasupdateavailable.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/hasupdateavailable.json new file mode 100644 index 000000000..b3b13ee42 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/hasupdateavailable.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo\/hasupdateavailable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/hasUpdateAvailable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has update available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasUpdateAvailable","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV18hasUpdateAvailableSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/hasUpdateAvailable":{"role":"symbol","title":"hasUpdateAvailable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has update available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/hasUpdateAvailable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/hasupdateavailable"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/homepageurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/homepageurl.json new file mode 100644 index 000000000..96ca4d010 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/homepageurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"homePageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo\/homepageurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/homePageURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the home page URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"homePageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"homePageURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV11homePageURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/homePageURL":{"role":"symbol","title":"homePageURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"homePageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the home page URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/homePageURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/homepageurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/init(from:).json new file mode 100644 index 000000000..baed1fe8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/init(hasupdateavailable:homepageurl:isvisible:name:status:statusmessage:tuners:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/init(hasupdateavailable:homepageurl:isvisible:name:status:statusmessage:tuners:version:).json new file mode 100644 index 000000000..90b2615f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/init(hasupdateavailable:homepageurl:isvisible:name:status:statusmessage:tuners:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"homePageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isVisible"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","preciseIdentifier":"s:11JellyfinAPI19LiveTvServiceStatusO","text":"LiveTvServiceStatus"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"statusMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo\/init(hasupdateavailable:homepageurl:isvisible:name:status:statusmessage:tuners:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/init(hasUpdateAvailable:homePageURL:isVisible:name:status:statusMessage:tuners:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"homePageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isVisible"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LiveTvServiceStatus","preciseIdentifier":"s:11JellyfinAPI19LiveTvServiceStatusO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"statusMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(hasUpdateAvailable:homePageURL:isVisible:name:status:statusMessage:tuners:version:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV18hasUpdateAvailable11homePageURL9isVisible4name6status0P7Message6tuners7versionACSbSg_SSSgAlmA0cdE6StatusOSgAMSaySSGSgAMtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/init(hasUpdateAvailable:homePageURL:isVisible:name:status:statusMessage:tuners:version:)":{"role":"symbol","title":"init(hasUpdateAvailable:homePageURL:isVisible:name:status:statusMessage:tuners:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"homePageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isVisible"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LiveTvServiceStatus","preciseIdentifier":"s:11JellyfinAPI19LiveTvServiceStatusO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"statusMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/init(hasUpdateAvailable:homePageURL:isVisible:name:status:statusMessage:tuners:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/init(hasupdateavailable:homepageurl:isvisible:name:status:statusmessage:tuners:version:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/isvisible.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/isvisible.json new file mode 100644 index 000000000..25af6ace1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/isvisible.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVisible"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo\/isvisible"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/isVisible","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is visible."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVisible"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isVisible","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV9isVisibleSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/isVisible":{"role":"symbol","title":"isVisible","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVisible"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is visible."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/isVisible","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/isvisible"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/name.json new file mode 100644 index 000000000..f3eb18a92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/status.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/status.json new file mode 100644 index 000000000..afd4f4dfe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/status.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","preciseIdentifier":"s:11JellyfinAPI19LiveTvServiceStatusO","text":"LiveTvServiceStatus"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo\/status"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/status","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the status."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LiveTvServiceStatus","preciseIdentifier":"s:11JellyfinAPI19LiveTvServiceStatusO"},{"kind":"text","text":"?"}],"title":"status","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV6statusAA0cdE6StatusOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LiveTvServiceStatus","preciseIdentifier":"s:11JellyfinAPI19LiveTvServiceStatusO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/statusmessage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/statusmessage.json new file mode 100644 index 000000000..a964f2b6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/statusmessage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo\/statusmessage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/statusMessage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the status message."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"statusMessage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV13statusMessageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/statusMessage":{"role":"symbol","title":"statusMessage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the status message."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/statusMessage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/statusmessage"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/tuners.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/tuners.json new file mode 100644 index 000000000..d1decfcbe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/tuners.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo\/tuners"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/tuners","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"tuners","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV6tunersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/tuners":{"role":"symbol","title":"tuners","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tuners"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/tuners","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/tuners"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/version.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/version.json new file mode 100644 index 000000000..03aa4fa55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvserviceinfo/version.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvserviceinfo\/version"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/version","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"version","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17LiveTvServiceInfoV7versionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvserviceinfo\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceInfo":{"role":"symbol","title":"LiveTvServiceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceInfo"}],"abstract":[{"type":"text","text":"Class ServiceInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceInfo"}],"url":"\/documentation\/jellyfinapi\/livetvserviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus.json new file mode 100644 index 000000000..23a6db43e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"title":"LiveTvServiceStatus","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI19LiveTvServiceStatusO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/ok","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/unavailable"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/ok":{"role":"symbol","title":"LiveTvServiceStatus.ok","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ok"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/ok","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/ok"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/unavailable":{"role":"symbol","title":"LiveTvServiceStatus.unavailable","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unavailable"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/unavailable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/unavailable"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/equatable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/init(rawvalue:)"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/!=(_:_:).json new file mode 100644 index 000000000..ed1784f29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI19LiveTvServiceStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/encode(to:).json new file mode 100644 index 000000000..28942137a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI19LiveTvServiceStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/equatable-implementations.json new file mode 100644 index 000000000..4f29a6113 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/hash(into:).json new file mode 100644 index 000000000..69f84faa9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI19LiveTvServiceStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/hashvalue.json new file mode 100644 index 000000000..5a2fdc3e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI19LiveTvServiceStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/init(from:).json new file mode 100644 index 000000000..05884aad5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI19LiveTvServiceStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/init(rawvalue:).json new file mode 100644 index 000000000..b3ad3c319 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19LiveTvServiceStatusO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/ok.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/ok.json new file mode 100644 index 000000000..a3f18cccb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/ok.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ok"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus\/ok"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/ok","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ok"}],"title":"LiveTvServiceStatus.ok","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19LiveTvServiceStatusO2okyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/ok":{"role":"symbol","title":"LiveTvServiceStatus.ok","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ok"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/ok","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/ok"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/rawrepresentable-implementations.json new file mode 100644 index 000000000..0812e24f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/unavailable.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/unavailable.json new file mode 100644 index 000000000..5c949a899 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/livetvservicestatus/unavailable.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unavailable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/livetvservicestatus\/unavailable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/unavailable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unavailable"}],"title":"LiveTvServiceStatus.unavailable","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19LiveTvServiceStatusO11unavailableyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus/unavailable":{"role":"symbol","title":"LiveTvServiceStatus.unavailable","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unavailable"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus\/unavailable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/livetvservicestatus\/unavailable"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvServiceStatus":{"role":"symbol","title":"LiveTvServiceStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvServiceStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvServiceStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvServiceStatus"}],"url":"\/documentation\/jellyfinapi\/livetvservicestatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption.json new file mode 100644 index 000000000..a76b9e71f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocalizationOption"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/localizationoption"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocalizationOption"}],"title":"LocalizationOption","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18LocalizationOptionV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LocalizationOption"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/init(name:value:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/value"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/localizationoption\/value"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/localizationoption\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption/init(name:value:)":{"role":"symbol","title":"init(name:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/init(name:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/localizationoption\/init(name:value:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/localizationoption\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption":{"role":"symbol","title":"LocalizationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocalizationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocalizationOption"}],"url":"\/documentation\/jellyfinapi\/localizationoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/init(from:).json new file mode 100644 index 000000000..096b4df77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/localizationoption\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18LocalizationOptionV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption":{"role":"symbol","title":"LocalizationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocalizationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocalizationOption"}],"url":"\/documentation\/jellyfinapi\/localizationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/localizationoption\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/init(name:value:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/init(name:value:).json new file mode 100644 index 000000000..eedbb9c19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/init(name:value:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/localizationoption\/init(name:value:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/init(name:value:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(name:value:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18LocalizationOptionV4name5valueACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption/init(name:value:)":{"role":"symbol","title":"init(name:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/init(name:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/localizationoption\/init(name:value:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption":{"role":"symbol","title":"LocalizationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocalizationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocalizationOption"}],"url":"\/documentation\/jellyfinapi\/localizationoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/name.json new file mode 100644 index 000000000..3952f83dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/localizationoption\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18LocalizationOptionV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/localizationoption\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption":{"role":"symbol","title":"LocalizationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocalizationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocalizationOption"}],"url":"\/documentation\/jellyfinapi\/localizationoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/value.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/value.json new file mode 100644 index 000000000..cf8e35ae7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/localizationoption/value.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/localizationoption\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18LocalizationOptionV5valueSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption":{"role":"symbol","title":"LocalizationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocalizationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocalizationOption"}],"url":"\/documentation\/jellyfinapi\/localizationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/localizationoption\/value"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype.json new file mode 100644 index 000000000..b45ade989 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum LocationType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"title":"LocationType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI12LocationTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LocationType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/fileSystem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/offline","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/remote","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/virtual"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/virtual":{"role":"symbol","title":"LocationType.virtual","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"virtual"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/virtual","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/virtual"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/remote":{"role":"symbol","title":"LocationType.remote","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"remote"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/remote","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/remote"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/offline":{"role":"symbol","title":"LocationType.offline","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"offline"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/offline","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/offline"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/init(rawvalue:)"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/fileSystem":{"role":"symbol","title":"LocationType.fileSystem","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileSystem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/fileSystem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/filesystem"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/!=(_:_:).json new file mode 100644 index 000000000..a105d4034 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI12LocationTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/encode(to:).json new file mode 100644 index 000000000..453a14195 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI12LocationTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/equatable-implementations.json new file mode 100644 index 000000000..db566fc90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/filesystem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/filesystem.json new file mode 100644 index 000000000..22fc6d6b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/filesystem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileSystem"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/filesystem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/fileSystem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileSystem"}],"title":"LocationType.fileSystem","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12LocationTypeO10fileSystemyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/fileSystem":{"role":"symbol","title":"LocationType.fileSystem","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileSystem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/fileSystem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/filesystem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/hash(into:).json new file mode 100644 index 000000000..0b96fc84f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI12LocationTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/hashvalue.json new file mode 100644 index 000000000..a02a22824 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI12LocationTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/init(from:).json new file mode 100644 index 000000000..3cc132423 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI12LocationTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/init(rawvalue:).json new file mode 100644 index 000000000..999249be1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12LocationTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/offline.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/offline.json new file mode 100644 index 000000000..f27787a5e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/offline.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"offline"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/offline"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/offline","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"offline"}],"title":"LocationType.offline","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12LocationTypeO7offlineyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/offline":{"role":"symbol","title":"LocationType.offline","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"offline"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/offline","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/offline"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/rawrepresentable-implementations.json new file mode 100644 index 000000000..564c748bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/remote.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/remote.json new file mode 100644 index 000000000..9298f69dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/remote.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"remote"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/remote"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/remote","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"remote"}],"title":"LocationType.remote","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12LocationTypeO6remoteyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/remote":{"role":"symbol","title":"LocationType.remote","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"remote"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/remote","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/remote"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/virtual.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/virtual.json new file mode 100644 index 000000000..5fefbe9ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/locationtype/virtual.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"virtual"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/locationtype\/virtual"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/virtual","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"virtual"}],"title":"LocationType.virtual","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12LocationTypeO7virtualyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType/virtual":{"role":"symbol","title":"LocationType.virtual","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"virtual"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType\/virtual","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/locationtype\/virtual"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile.json new file mode 100644 index 000000000..e64f871a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/logfile"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"title":"LogFile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI7LogFileV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LogFile"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/init(dateCreated:dateModified:name:size:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/dateCreated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/dateModified","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/size"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/init(dateCreated:dateModified:name:size:)":{"role":"symbol","title":"init(dateCreated:dateModified:name:size:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/init(dateCreated:dateModified:name:size:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/init(datecreated:datemodified:name:size:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/size":{"role":"symbol","title":"size","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the size."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/size","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/size"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/dateCreated":{"role":"symbol","title":"dateCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/datecreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile":{"role":"symbol","title":"LogFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogFile"}],"url":"\/documentation\/jellyfinapi\/logfile"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/dateModified":{"role":"symbol","title":"dateModified","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date modified."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/dateModified","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/datemodified"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/datecreated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/datecreated.json new file mode 100644 index 000000000..f6f4a4137 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/datecreated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/logfile\/datecreated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/dateCreated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the date created."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateCreated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7LogFileV11dateCreated10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/dateCreated":{"role":"symbol","title":"dateCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/datecreated"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile":{"role":"symbol","title":"LogFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogFile"}],"url":"\/documentation\/jellyfinapi\/logfile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/datemodified.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/datemodified.json new file mode 100644 index 000000000..79e584cda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/datemodified.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/logfile\/datemodified"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/dateModified","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the date modified."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateModified","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7LogFileV12dateModified10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile":{"role":"symbol","title":"LogFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogFile"}],"url":"\/documentation\/jellyfinapi\/logfile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/dateModified":{"role":"symbol","title":"dateModified","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the date modified."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/dateModified","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/datemodified"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/init(datecreated:datemodified:name:size:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/init(datecreated:datemodified:name:size:).json new file mode 100644 index 000000000..bc4105a5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/init(datecreated:datemodified:name:size:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/logfile\/init(datecreated:datemodified:name:size:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/init(dateCreated:dateModified:name:size:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"title":"init(dateCreated:dateModified:name:size:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI7LogFileV11dateCreated0E8Modified4name4sizeAC10Foundation4DateVSg_AKSSSgs5Int64VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/init(dateCreated:dateModified:name:size:)":{"role":"symbol","title":"init(dateCreated:dateModified:name:size:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateModified"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/init(dateCreated:dateModified:name:size:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/init(datecreated:datemodified:name:size:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile":{"role":"symbol","title":"LogFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogFile"}],"url":"\/documentation\/jellyfinapi\/logfile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/init(from:).json new file mode 100644 index 000000000..234fc099f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/logfile\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI7LogFileV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile":{"role":"symbol","title":"LogFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogFile"}],"url":"\/documentation\/jellyfinapi\/logfile"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/name.json new file mode 100644 index 000000000..eba460c1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/logfile\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7LogFileV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile":{"role":"symbol","title":"LogFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogFile"}],"url":"\/documentation\/jellyfinapi\/logfile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/size.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/size.json new file mode 100644 index 000000000..0f3d5dd19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/logfile/size.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/logfile\/size"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/size","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the size."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"size","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7LogFileV4sizes5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile/size":{"role":"symbol","title":"size","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the size."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile\/size","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/logfile\/size"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile":{"role":"symbol","title":"LogFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogFile"}],"url":"\/documentation\/jellyfinapi\/logfile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel.json new file mode 100644 index 000000000..517f262bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"title":"LogLevel","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI8LogLevelO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"LogLevel"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/critical","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/debug","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/error","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/information","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/none","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/trace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/warning"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/critical":{"role":"symbol","title":"LogLevel.critical","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"critical"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/critical","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/critical"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/none":{"role":"symbol","title":"LogLevel.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/none"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/trace":{"role":"symbol","title":"LogLevel.trace","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trace"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/trace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/trace"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/equatable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/debug":{"role":"symbol","title":"LogLevel.debug","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"debug"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/debug","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/debug"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/warning":{"role":"symbol","title":"LogLevel.warning","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"warning"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/warning","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/warning"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/information":{"role":"symbol","title":"LogLevel.information","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"information"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/information","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/information"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/rawrepresentable-implementations"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/error":{"role":"symbol","title":"LogLevel.error","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/error","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/error"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/!=(_:_:).json new file mode 100644 index 000000000..582b8cc25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI8LogLevelO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/critical.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/critical.json new file mode 100644 index 000000000..19e579520 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/critical.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"critical"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/critical"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/critical","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"critical"}],"title":"LogLevel.critical","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI8LogLevelO8criticalyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/critical":{"role":"symbol","title":"LogLevel.critical","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"critical"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/critical","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/critical"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/debug.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/debug.json new file mode 100644 index 000000000..b20cb10db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/debug.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"debug"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/debug"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/debug","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"debug"}],"title":"LogLevel.debug","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI8LogLevelO5debugyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/debug":{"role":"symbol","title":"LogLevel.debug","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"debug"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/debug","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/debug"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/encode(to:).json new file mode 100644 index 000000000..46333a2a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI8LogLevelO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/equatable-implementations.json new file mode 100644 index 000000000..e4134ee9d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/error.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/error.json new file mode 100644 index 000000000..45efc7446 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/error.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/error"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/error","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"title":"LogLevel.error","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI8LogLevelO5erroryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/error":{"role":"symbol","title":"LogLevel.error","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/error","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/error"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/hash(into:).json new file mode 100644 index 000000000..d41d8d1bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI8LogLevelO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/hashvalue.json new file mode 100644 index 000000000..0ab0ba0a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI8LogLevelO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/information.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/information.json new file mode 100644 index 000000000..4ee26c1d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/information.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"information"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/information"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/information","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"information"}],"title":"LogLevel.information","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI8LogLevelO11informationyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/information":{"role":"symbol","title":"LogLevel.information","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"information"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/information","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/information"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/init(from:).json new file mode 100644 index 000000000..8b1ebbdfe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI8LogLevelO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/init(rawvalue:).json new file mode 100644 index 000000000..503a32468 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8LogLevelO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/none.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/none.json new file mode 100644 index 000000000..b76267920 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/none.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/none"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/none","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"title":"LogLevel.none","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI8LogLevelO4noneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/none":{"role":"symbol","title":"LogLevel.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/none"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/rawrepresentable-implementations.json new file mode 100644 index 000000000..def3f3e74 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/trace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/trace.json new file mode 100644 index 000000000..e717e5b01 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/trace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trace"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/trace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/trace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trace"}],"title":"LogLevel.trace","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI8LogLevelO5traceyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/trace":{"role":"symbol","title":"LogLevel.trace","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trace"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/trace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/trace"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/warning.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/warning.json new file mode 100644 index 000000000..4acd59fe9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/loglevel/warning.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"warning"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/loglevel\/warning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/warning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"warning"}],"title":"LogLevel.warning","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI8LogLevelO7warningyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel/warning":{"role":"symbol","title":"LogLevel.warning","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"warning"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel\/warning","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/loglevel\/warning"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogLevel":{"role":"symbol","title":"LogLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogLevel"}],"url":"\/documentation\/jellyfinapi\/loglevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment.json new file mode 100644 index 000000000..ad90b5cd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaattachment"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class MediaAttachment."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"title":"MediaAttachment","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15MediaAttachmentV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/init(codec:codecTag:comment:deliveryURL:fileName:index:mimeType:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/codec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/codecTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/comment","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/deliveryURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/fileName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/index","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/mimeType"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/codec":{"role":"symbol","title":"codec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the codec."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/codec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/codec"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/index","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/index"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/fileName":{"role":"symbol","title":"fileName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the filename."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/fileName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/filename"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/deliveryURL":{"role":"symbol","title":"deliveryURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the delivery URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/deliveryURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/deliveryurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/mimeType":{"role":"symbol","title":"mimeType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the MIME type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/mimeType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/mimetype"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/init(codec:codecTag:comment:deliveryURL:fileName:index:mimeType:)":{"role":"symbol","title":"init(codec:codecTag:comment:deliveryURL:fileName:index:mimeType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/init(codec:codecTag:comment:deliveryURL:fileName:index:mimeType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/init(codec:codectag:comment:deliveryurl:filename:index:mimetype:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/codecTag":{"role":"symbol","title":"codecTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the codec tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/codecTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/codectag"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/comment":{"role":"symbol","title":"comment","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the comment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/comment","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/comment"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/codec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/codec.json new file mode 100644 index 000000000..e8e98d853 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/codec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaattachment\/codec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/codec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the codec."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"codec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaAttachmentV5codecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/codec":{"role":"symbol","title":"codec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the codec."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/codec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/codec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/codectag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/codectag.json new file mode 100644 index 000000000..af05f1fc4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/codectag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaattachment\/codectag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/codecTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the codec tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"codecTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaAttachmentV8codecTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/codecTag":{"role":"symbol","title":"codecTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the codec tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/codecTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/codectag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/comment.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/comment.json new file mode 100644 index 000000000..dfc0a99b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/comment.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaattachment\/comment"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/comment","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the comment."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"comment","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaAttachmentV7commentSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/comment":{"role":"symbol","title":"comment","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the comment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/comment","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/comment"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/deliveryurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/deliveryurl.json new file mode 100644 index 000000000..8c4dc8ea6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/deliveryurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaattachment\/deliveryurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/deliveryURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the delivery URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deliveryURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaAttachmentV11deliveryURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/deliveryURL":{"role":"symbol","title":"deliveryURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the delivery URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/deliveryURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/deliveryurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/filename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/filename.json new file mode 100644 index 000000000..f7c928ed8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/filename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaattachment\/filename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/fileName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the filename."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"fileName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaAttachmentV8fileNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/fileName":{"role":"symbol","title":"fileName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the filename."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/fileName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/filename"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/index.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/index.json new file mode 100644 index 000000000..604dceb8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/index.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaattachment\/index"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/index","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"index","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaAttachmentV5indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/index","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/index"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/init(codec:codectag:comment:deliveryurl:filename:index:mimetype:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/init(codec:codectag:comment:deliveryurl:filename:index:mimetype:).json new file mode 100644 index 000000000..2e1de5b8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/init(codec:codectag:comment:deliveryurl:filename:index:mimetype:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaattachment\/init(codec:codectag:comment:deliveryurl:filename:index:mimetype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/init(codec:codecTag:comment:deliveryURL:fileName:index:mimeType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(codec:codecTag:comment:deliveryURL:fileName:index:mimeType:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15MediaAttachmentV5codec0E3Tag7comment11deliveryURL8fileName5index8mimeTypeACSSSg_A4Ks5Int32VSgAKtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/init(codec:codecTag:comment:deliveryURL:fileName:index:mimeType:)":{"role":"symbol","title":"init(codec:codecTag:comment:deliveryURL:fileName:index:mimeType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/init(codec:codecTag:comment:deliveryURL:fileName:index:mimeType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/init(codec:codectag:comment:deliveryurl:filename:index:mimetype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/init(from:).json new file mode 100644 index 000000000..48a32d5f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaattachment\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15MediaAttachmentV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/mimetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/mimetype.json new file mode 100644 index 000000000..6c27f9a12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaattachment/mimetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaattachment\/mimetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/mimeType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the MIME type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mimeType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaAttachmentV8mimeTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment/mimeType":{"role":"symbol","title":"mimeType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the MIME type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment\/mimeType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaattachment\/mimetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto.json new file mode 100644 index 000000000..2163f58e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaEncoderPathDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaencoderpathdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Media Encoder Path Dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaEncoderPathDto"}],"title":"MediaEncoderPathDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI19MediaEncoderPathDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaEncoderPathDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/init(path:pathType:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/pathType"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaencoderpathdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets media encoder path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaencoderpathdto\/path"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto/pathType":{"role":"symbol","title":"pathType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets media encoder path type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/pathType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaencoderpathdto\/pathtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto":{"role":"symbol","title":"MediaEncoderPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaEncoderPathDto"}],"abstract":[{"type":"text","text":"Media Encoder Path Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaEncoderPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaencoderpathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto/init(path:pathType:)":{"role":"symbol","title":"init(path:pathType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pathType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/init(path:pathType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaencoderpathdto\/init(path:pathtype:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/init(from:).json new file mode 100644 index 000000000..1bb9b7553 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaencoderpathdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19MediaEncoderPathDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaencoderpathdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto":{"role":"symbol","title":"MediaEncoderPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaEncoderPathDto"}],"abstract":[{"type":"text","text":"Media Encoder Path Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaEncoderPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaencoderpathdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/init(path:pathtype:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/init(path:pathtype:).json new file mode 100644 index 000000000..f3e7af406 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/init(path:pathtype:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"pathType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaencoderpathdto\/init(path:pathtype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/init(path:pathType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pathType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(path:pathType:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19MediaEncoderPathDtoV4path0G4TypeACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto/init(path:pathType:)":{"role":"symbol","title":"init(path:pathType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pathType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/init(path:pathType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaencoderpathdto\/init(path:pathtype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto":{"role":"symbol","title":"MediaEncoderPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaEncoderPathDto"}],"abstract":[{"type":"text","text":"Media Encoder Path Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaEncoderPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaencoderpathdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/path.json new file mode 100644 index 000000000..6005cdb74 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaencoderpathdto\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets media encoder path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19MediaEncoderPathDtoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets media encoder path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaencoderpathdto\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto":{"role":"symbol","title":"MediaEncoderPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaEncoderPathDto"}],"abstract":[{"type":"text","text":"Media Encoder Path Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaEncoderPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaencoderpathdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/pathtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/pathtype.json new file mode 100644 index 000000000..c4a32b661 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaencoderpathdto/pathtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaencoderpathdto\/pathtype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/pathType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets media encoder path type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"pathType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19MediaEncoderPathDtoV8pathTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto/pathType":{"role":"symbol","title":"pathType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets media encoder path type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto\/pathType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaencoderpathdto\/pathtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto":{"role":"symbol","title":"MediaEncoderPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaEncoderPathDto"}],"abstract":[{"type":"text","text":"Media Encoder Path Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaEncoderPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaencoderpathdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto.json new file mode 100644 index 000000000..314b7744d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Media Path dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathDto"}],"title":"MediaPathDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI12MediaPathDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaPathDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/init(name:path:pathInfo:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/pathInfo"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto/init(name:path:pathInfo:)":{"role":"symbol","title":"init(name:path:pathInfo:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/init(name:path:pathInfo:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathdto\/init(name:path:pathinfo:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto":{"role":"symbol","title":"MediaPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathDto"}],"abstract":[{"type":"text","text":"Media Path dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathDto"}],"url":"\/documentation\/jellyfinapi\/mediapathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the name of the library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto/pathInfo":{"role":"symbol","title":"pathInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/pathInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathdto\/pathinfo"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path to add."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathdto\/path"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/init(from:).json new file mode 100644 index 000000000..e71c8ce43 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12MediaPathDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto":{"role":"symbol","title":"MediaPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathDto"}],"abstract":[{"type":"text","text":"Media Path dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathDto"}],"url":"\/documentation\/jellyfinapi\/mediapathdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/init(name:path:pathinfo:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/init(name:path:pathinfo:).json new file mode 100644 index 000000000..66c388874 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/init(name:path:pathinfo:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV","text":"MediaPathInfo"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathdto\/init(name:path:pathinfo:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/init(name:path:pathInfo:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"?)"}],"title":"init(name:path:pathInfo:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12MediaPathDtoV4name4path0G4InfoACSS_SSSgAA0cdH0VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto/init(name:path:pathInfo:)":{"role":"symbol","title":"init(name:path:pathInfo:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/init(name:path:pathInfo:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathdto\/init(name:path:pathinfo:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto":{"role":"symbol","title":"MediaPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathDto"}],"abstract":[{"type":"text","text":"Media Path dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathDto"}],"url":"\/documentation\/jellyfinapi\/mediapathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/name.json new file mode 100644 index 000000000..2f0cca010 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathdto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the library."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12MediaPathDtoV4nameSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto":{"role":"symbol","title":"MediaPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathDto"}],"abstract":[{"type":"text","text":"Media Path dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathDto"}],"url":"\/documentation\/jellyfinapi\/mediapathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the name of the library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathdto\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/path.json new file mode 100644 index 000000000..a1f3f89ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathdto\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path to add."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12MediaPathDtoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path to add."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathdto\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto":{"role":"symbol","title":"MediaPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathDto"}],"abstract":[{"type":"text","text":"Media Path dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathDto"}],"url":"\/documentation\/jellyfinapi\/mediapathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/pathinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/pathinfo.json new file mode 100644 index 000000000..b38030e40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathdto/pathinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV","text":"MediaPathInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathdto\/pathinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/pathInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path info."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"?"}],"title":"pathInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12MediaPathDtoV8pathInfoAA0cdG0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto":{"role":"symbol","title":"MediaPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathDto"}],"abstract":[{"type":"text","text":"Media Path dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathDto"}],"url":"\/documentation\/jellyfinapi\/mediapathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto/pathInfo":{"role":"symbol","title":"pathInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto\/pathInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathdto\/pathinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo.json new file mode 100644 index 000000000..6c5c4ccd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"title":"MediaPathInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI13MediaPathInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/init(networkPath:path:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/networkPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/path"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo/networkPath":{"role":"symbol","title":"networkPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/networkPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathinfo\/networkpath"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo/init(networkPath:path:)":{"role":"symbol","title":"init(networkPath:path:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"networkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/init(networkPath:path:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathinfo\/init(networkpath:path:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/init(from:).json new file mode 100644 index 000000000..22a0466fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13MediaPathInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/init(networkpath:path:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/init(networkpath:path:).json new file mode 100644 index 000000000..529e55618 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/init(networkpath:path:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"networkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathinfo\/init(networkpath:path:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/init(networkPath:path:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"networkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(networkPath:path:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13MediaPathInfoV07networkD04pathACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo/init(networkPath:path:)":{"role":"symbol","title":"init(networkPath:path:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"networkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/init(networkPath:path:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathinfo\/init(networkpath:path:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/networkpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/networkpath.json new file mode 100644 index 000000000..be59b8f47 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/networkpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathinfo\/networkpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/networkPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"networkPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13MediaPathInfoV07networkD0SSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo/networkPath":{"role":"symbol","title":"networkPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/networkPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathinfo\/networkpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/path.json new file mode 100644 index 000000000..287128137 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediapathinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediapathinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13MediaPathInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediapathinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol.json new file mode 100644 index 000000000..dfbbbeaa6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"title":"MediaProtocol","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI13MediaProtocolO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/file","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/ftp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/http","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtmp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtsp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/udp"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/http":{"role":"symbol","title":"MediaProtocol.http","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"http"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/http","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/http"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/udp":{"role":"symbol","title":"MediaProtocol.udp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"udp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/udp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/udp"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/rtp":{"role":"symbol","title":"MediaProtocol.rtp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rtp"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/rtmp":{"role":"symbol","title":"MediaProtocol.rtmp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtmp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtmp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rtmp"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/ftp":{"role":"symbol","title":"MediaProtocol.ftp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ftp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/ftp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/ftp"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/rtsp":{"role":"symbol","title":"MediaProtocol.rtsp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtsp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtsp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rtsp"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/file":{"role":"symbol","title":"MediaProtocol.file","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"file"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/file","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/file"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/!=(_:_:).json new file mode 100644 index 000000000..866a871d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI13MediaProtocolO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/encode(to:).json new file mode 100644 index 000000000..674996139 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI13MediaProtocolO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/equatable-implementations.json new file mode 100644 index 000000000..5ccec8091 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/file.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/file.json new file mode 100644 index 000000000..8320f4d7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/file.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"file"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/file"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/file","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"file"}],"title":"MediaProtocol.file","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MediaProtocolO4fileyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/file":{"role":"symbol","title":"MediaProtocol.file","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"file"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/file","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/file"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/ftp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/ftp.json new file mode 100644 index 000000000..132ff480b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/ftp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ftp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/ftp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/ftp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ftp"}],"title":"MediaProtocol.ftp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MediaProtocolO3ftpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/ftp":{"role":"symbol","title":"MediaProtocol.ftp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ftp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/ftp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/ftp"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/hash(into:).json new file mode 100644 index 000000000..959813b3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI13MediaProtocolO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/hashvalue.json new file mode 100644 index 000000000..e0765f0b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI13MediaProtocolO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/http.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/http.json new file mode 100644 index 000000000..805af9dc2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/http.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"http"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/http"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/http","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"http"}],"title":"MediaProtocol.http","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MediaProtocolO4httpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/http":{"role":"symbol","title":"MediaProtocol.http","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"http"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/http","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/http"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/init(from:).json new file mode 100644 index 000000000..aa8f898b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI13MediaProtocolO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/init(rawvalue:).json new file mode 100644 index 000000000..0ecdb2449 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13MediaProtocolO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rawrepresentable-implementations.json new file mode 100644 index 000000000..dc71007e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rtmp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rtmp.json new file mode 100644 index 000000000..5fceb43a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rtmp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtmp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/rtmp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtmp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtmp"}],"title":"MediaProtocol.rtmp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MediaProtocolO4rtmpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/rtmp":{"role":"symbol","title":"MediaProtocol.rtmp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtmp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtmp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rtmp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rtp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rtp.json new file mode 100644 index 000000000..13afcc954 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rtp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/rtp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtp"}],"title":"MediaProtocol.rtp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MediaProtocolO3rtpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/rtp":{"role":"symbol","title":"MediaProtocol.rtp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rtp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rtsp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rtsp.json new file mode 100644 index 000000000..014a9c7a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/rtsp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtsp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/rtsp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtsp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtsp"}],"title":"MediaProtocol.rtsp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MediaProtocolO4rtspyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/rtsp":{"role":"symbol","title":"MediaProtocol.rtsp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtsp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/rtsp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/rtsp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/udp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/udp.json new file mode 100644 index 000000000..5de4f06da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaprotocol/udp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"udp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaprotocol\/udp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/udp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"udp"}],"title":"MediaProtocol.udp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MediaProtocolO3udpyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol/udp":{"role":"symbol","title":"MediaProtocol.udp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"udp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol\/udp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaprotocol\/udp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo.json new file mode 100644 index 000000000..a0d2af7fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"title":"MediaSourceInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15MediaSourceInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/init(analyzeDurationMs:bitrate:bufferMs:container:defaultAudioStreamIndex:defaultSubtitleStreamIndex:eTag:encoderPath:encoderProtocol:formats:isGenPtsInput:id:isIgnoreDts:isIgnoreIndex:isInfiniteStream:isRemote:isoType:liveStreamID:mediaAttachments:mediaStreams:name:openToken:path:protocol:isReadAtNativeFramerate:requiredHTTPHeaders:requiresClosing:requiresLooping:requiresOpening:runTimeTicks:size:isSupportsDirectPlay:isSupportsDirectStream:isSupportsProbing:isSupportsTranscoding:timestamp:transcodingContainer:transcodingSubProtocol:transcodingURL:type:video3DFormat:videoType:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/analyzeDurationMs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/bitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/bufferMs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/defaultAudioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/defaultSubtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/eTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/encoderPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/encoderProtocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/formats","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/id-32rj9","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isGenPtsInput","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isIgnoreDts","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isIgnoreIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isInfiniteStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isReadAtNativeFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isRemote","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsDirectPlay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsDirectStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsProbing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsTranscoding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/mediaAttachments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/mediaStreams","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/openToken","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/protocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiredHTTPHeaders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresClosing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresLooping","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresOpening","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/runTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/size","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/timestamp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingSubProtocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/video3DFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/videoType"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/defaultAudioStreamIndex":{"role":"symbol","title":"defaultAudioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAudioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/defaultAudioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/defaultaudiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceType","preciseIdentifier":"s:11JellyfinAPI15MediaSourceTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isoType":{"role":"symbol","title":"isoType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isoType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TransportStreamTimestamp","preciseIdentifier":"s:11JellyfinAPI24TransportStreamTimestampO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/timestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isSupportsDirectStream":{"role":"symbol","title":"isSupportsDirectStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsDirectStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/issupportsdirectstream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isRemote":{"role":"symbol","title":"isRemote","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemote"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the media is remote."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isRemote","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isremote"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/requiresLooping":{"role":"symbol","title":"requiresLooping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresLooping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/requireslooping"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/protocol":{"role":"symbol","title":"protocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"`protocol`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/protocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/protocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/mediaStreams":{"role":"symbol","title":"mediaStreams","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/mediaStreams","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/mediastreams"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/video3DFormat":{"role":"symbol","title":"video3DFormat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/video3DFormat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isSupportsDirectPlay":{"role":"symbol","title":"isSupportsDirectPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsDirectPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/issupportsdirectplay"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/id-32rj9":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/id-32rj9","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/id-32rj9"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/analyzeDurationMs":{"role":"symbol","title":"analyzeDurationMs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"analyzeDurationMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/analyzeDurationMs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/analyzedurationms"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/size":{"role":"symbol","title":"size","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/size","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/size"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isSupportsProbing":{"role":"symbol","title":"isSupportsProbing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsProbing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsProbing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/issupportsprobing"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/defaultSubtitleStreamIndex":{"role":"symbol","title":"defaultSubtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSubtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/defaultSubtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/defaultsubtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/encoderPath":{"role":"symbol","title":"encoderPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/encoderPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/encoderpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/bitrate":{"role":"symbol","title":"bitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/bitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/bitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/requiresOpening":{"role":"symbol","title":"requiresOpening","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresOpening"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresOpening","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/requiresopening"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isReadAtNativeFramerate":{"role":"symbol","title":"isReadAtNativeFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReadAtNativeFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isReadAtNativeFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isreadatnativeframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/mediaAttachments":{"role":"symbol","title":"mediaAttachments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaAttachments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaAttachment","preciseIdentifier":"s:11JellyfinAPI15MediaAttachmentV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/mediaAttachments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/mediaattachments"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/init(analyzeDurationMs:bitrate:bufferMs:container:defaultAudioStreamIndex:defaultSubtitleStreamIndex:eTag:encoderPath:encoderProtocol:formats:isGenPtsInput:id:isIgnoreDts:isIgnoreIndex:isInfiniteStream:isRemote:isoType:liveStreamID:mediaAttachments:mediaStreams:name:openToken:path:protocol:isReadAtNativeFramerate:requiredHTTPHeaders:requiresClosing:requiresLooping:requiresOpening:runTimeTicks:size:isSupportsDirectPlay:isSupportsDirectStream:isSupportsProbing:isSupportsTranscoding:timestamp:transcodingContainer:transcodingSubProtocol:transcodingURL:type:video3DFormat:videoType:)":{"role":"symbol","title":"init(analyzeDurationMs:bitrate:bufferMs:container:defaultAudioStreamIndex:defaultSubtitleStreamIndex:eTag:encoderPath:encoderProtocol:formats:isGenPtsInput:id:isIgnoreDts:isIgnoreIndex:isInfiniteStream:isRemote:isoType:liveStreamID:mediaAttachments:mediaStreams:name:openToken:path:protocol:isReadAtNativeFramerate:requiredHTTPHeaders:requiresClosing:requiresLooping:requiresOpening:runTimeTicks:size:isSupportsDirectPlay:isSupportsDirectStream:isSupportsProbing:isSupportsTranscoding:timestamp:transcodingContainer:transcodingSubProtocol:transcodingURL:type:video3DFormat:videoType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"analyzeDurationMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bufferMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"defaultAudioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"defaultSubtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"eTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"formats"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isGenPtsInput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreDts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInfiniteStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRemote"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaAttachments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaAttachment","preciseIdentifier":"s:11JellyfinAPI15MediaAttachmentV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"protocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isReadAtNativeFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiredHTTPHeaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"requiresClosing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresOpening"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsProbing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TransportStreamTimestamp","preciseIdentifier":"s:11JellyfinAPI24TransportStreamTimestampO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingSubProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceType","preciseIdentifier":"s:11JellyfinAPI15MediaSourceTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/init(analyzeDurationMs:bitrate:bufferMs:container:defaultAudioStreamIndex:defaultSubtitleStreamIndex:eTag:encoderPath:encoderProtocol:formats:isGenPtsInput:id:isIgnoreDts:isIgnoreIndex:isInfiniteStream:isRemote:isoType:liveStreamID:mediaAttachments:mediaStreams:name:openToken:path:protocol:isReadAtNativeFramerate:requiredHTTPHeaders:requiresClosing:requiresLooping:requiresOpening:runTimeTicks:size:isSupportsDirectPlay:isSupportsDirectStream:isSupportsProbing:isSupportsTranscoding:timestamp:transcodingContainer:transcodingSubProtocol:transcodingURL:type:video3DFormat:videoType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/init(analyzedurationms:bitrate:bufferms:container:defaultaudiostreamindex:defaultsubtitlestreamindex:etag:encoderpath:encoderprotocol:formats:isgenptsinput:id:isignoredts:isignoreindex:isinfinitestream:isremote:isotype:livestreamid:mediaatt-8d4uc"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/openToken":{"role":"symbol","title":"openToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/openToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/opentoken"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/bufferMs":{"role":"symbol","title":"bufferMs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/bufferMs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/bufferms"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/runTimeTicks":{"role":"symbol","title":"runTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/runTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/runtimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isSupportsTranscoding":{"role":"symbol","title":"isSupportsTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/issupportstranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/videoType":{"role":"symbol","title":"videoType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/videoType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/requiresClosing":{"role":"symbol","title":"requiresClosing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresClosing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresClosing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/requiresclosing"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/transcodingURL":{"role":"symbol","title":"transcodingURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/transcodingurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isIgnoreIndex":{"role":"symbol","title":"isIgnoreIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isIgnoreIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isignoreindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/formats":{"role":"symbol","title":"formats","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"formats"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/formats","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/formats"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isIgnoreDts":{"role":"symbol","title":"isIgnoreDts","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreDts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isIgnoreDts","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isignoredts"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/path"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/eTag":{"role":"symbol","title":"eTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"eTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/eTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/etag"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isInfiniteStream":{"role":"symbol","title":"isInfiniteStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInfiniteStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isInfiniteStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isinfinitestream"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/requiredHTTPHeaders":{"role":"symbol","title":"requiredHTTPHeaders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiredHTTPHeaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiredHTTPHeaders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/requiredhttpheaders"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/encoderProtocol":{"role":"symbol","title":"encoderProtocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/encoderProtocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/encoderprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/transcodingSubProtocol":{"role":"symbol","title":"transcodingSubProtocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingSubProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingSubProtocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/transcodingsubprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isGenPtsInput":{"role":"symbol","title":"isGenPtsInput","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isGenPtsInput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isGenPtsInput","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isgenptsinput"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/transcodingContainer":{"role":"symbol","title":"transcodingContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/transcodingcontainer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/analyzedurationms.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/analyzedurationms.json new file mode 100644 index 000000000..d0fec343a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/analyzedurationms.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"analyzeDurationMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/analyzedurationms"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/analyzeDurationMs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"analyzeDurationMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"analyzeDurationMs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV17analyzeDurationMss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/analyzeDurationMs":{"role":"symbol","title":"analyzeDurationMs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"analyzeDurationMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/analyzeDurationMs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/analyzedurationms"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/bitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/bitrate.json new file mode 100644 index 000000000..086f86328 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/bitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/bitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/bitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"bitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV7bitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/bitrate":{"role":"symbol","title":"bitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/bitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/bitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/bufferms.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/bufferms.json new file mode 100644 index 000000000..052e8bb1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/bufferms.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/bufferms"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/bufferMs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"bufferMs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV8bufferMss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/bufferMs":{"role":"symbol","title":"bufferMs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/bufferMs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/bufferms"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/container.json new file mode 100644 index 000000000..59151bbf6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/defaultaudiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/defaultaudiostreamindex.json new file mode 100644 index 000000000..e2076211d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/defaultaudiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAudioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/defaultaudiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/defaultAudioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAudioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"defaultAudioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV23defaultAudioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/defaultAudioStreamIndex":{"role":"symbol","title":"defaultAudioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAudioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/defaultAudioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/defaultaudiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/defaultsubtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/defaultsubtitlestreamindex.json new file mode 100644 index 000000000..98592a6ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/defaultsubtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSubtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/defaultsubtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/defaultSubtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSubtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"defaultSubtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV26defaultSubtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/defaultSubtitleStreamIndex":{"role":"symbol","title":"defaultSubtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSubtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/defaultSubtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/defaultsubtitlestreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/encoderpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/encoderpath.json new file mode 100644 index 000000000..d11217933 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/encoderpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/encoderpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/encoderPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"encoderPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV11encoderPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/encoderPath":{"role":"symbol","title":"encoderPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/encoderPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/encoderpath"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/encoderprotocol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/encoderprotocol.json new file mode 100644 index 000000000..8a274b651 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/encoderprotocol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO","text":"MediaProtocol"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/encoderprotocol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/encoderProtocol","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?"}],"title":"encoderProtocol","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV15encoderProtocolAA0cG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/encoderProtocol":{"role":"symbol","title":"encoderProtocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/encoderProtocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/encoderprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/etag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/etag.json new file mode 100644 index 000000000..dab187033 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/etag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"eTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/etag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/eTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"eTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"eTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV4eTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/eTag":{"role":"symbol","title":"eTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"eTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/eTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/etag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/formats.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/formats.json new file mode 100644 index 000000000..41571cabb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/formats.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"formats"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/formats"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/formats","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"formats"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"formats","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV7formatsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/formats":{"role":"symbol","title":"formats","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"formats"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/formats","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/formats"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/id-146hg.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/id-146hg.json new file mode 100644 index 000000000..fdfaed47e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/id-146hg.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/id-146hg"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/id-146hg","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI15MediaSourceInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/id-146hg":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/id-146hg","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/id-146hg"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/id-32rj9.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/id-32rj9.json new file mode 100644 index 000000000..bad4e0ef4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/id-32rj9.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/id-32rj9"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/id-32rj9","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/id-32rj9":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/id-32rj9","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/id-32rj9"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/identifiable-implementations.json new file mode 100644 index 000000000..206e39c0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/id-146hg"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/id-146hg":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/id-146hg","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/id-146hg"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/init(analyzedurationms:bitrate:bufferms:container:defaultaudiostreamindex:defaultsubtitlestreamindex:etag:encoderpath:encoderprotocol:formats:isgenptsinput:id:isignoredts:isignoreindex:isinfinitestream:isremote:isotype:livestreamid:mediaatt-8d4uc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/init(analyzedurationms:bitrate:bufferms:container:defaultaudiostreamindex:defaultsubtitlestreamindex:etag:encoderpath:encoderprotocol:formats:isgenptsinput:id:isignoredts:isignoreindex:isinfinitestream:isremote:isotype:livestreamid:mediaatt-8d4uc.json new file mode 100644 index 000000000..53362d4b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/init(analyzedurationms:bitrate:bufferms:container:defaultaudiostreamindex:defaultsubtitlestreamindex:etag:encoderpath:encoderprotocol:formats:isgenptsinput:id:isignoredts:isignoreindex:isinfinitestream:isremote:isotype:livestreamid:mediaatt-8d4uc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"analyzeDurationMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"bufferMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"defaultAudioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"defaultSubtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"eTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"encoderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"encoderProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO","text":"MediaProtocol"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"formats"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isGenPtsInput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIgnoreDts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIgnoreIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isInfiniteStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRemote"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO","text":"IsoType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaAttachments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","preciseIdentifier":"s:11JellyfinAPI15MediaAttachmentV","text":"MediaAttachment"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV","text":"MediaStream"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"protocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO","text":"MediaProtocol"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isReadAtNativeFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requiredHTTPHeaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"requiresClosing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requiresLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requiresOpening"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsProbing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","preciseIdentifier":"s:11JellyfinAPI24TransportStreamTimestampO","text":"TransportStreamTimestamp"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingSubProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","preciseIdentifier":"s:11JellyfinAPI15MediaSourceTypeO","text":"MediaSourceType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO","text":"Video3DFormat"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO","text":"VideoType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/init(analyzedurationms:bitrate:bufferms:container:defaultaudiostreamindex:defaultsubtitlestreamindex:etag:encoderpath:encoderprotocol:formats:isgenptsinput:id:isignoredts:isignoreindex:isinfinitestream:isremote:isotype:livestreamid:mediaatt-8d4uc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/init(analyzeDurationMs:bitrate:bufferMs:container:defaultAudioStreamIndex:defaultSubtitleStreamIndex:eTag:encoderPath:encoderProtocol:formats:isGenPtsInput:id:isIgnoreDts:isIgnoreIndex:isInfiniteStream:isRemote:isoType:liveStreamID:mediaAttachments:mediaStreams:name:openToken:path:protocol:isReadAtNativeFramerate:requiredHTTPHeaders:requiresClosing:requiresLooping:requiresOpening:runTimeTicks:size:isSupportsDirectPlay:isSupportsDirectStream:isSupportsProbing:isSupportsTranscoding:timestamp:transcodingContainer:transcodingSubProtocol:transcodingURL:type:video3DFormat:videoType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"analyzeDurationMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bufferMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"defaultAudioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"defaultSubtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"eTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"formats"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isGenPtsInput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreDts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInfiniteStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRemote"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaAttachments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaAttachment","preciseIdentifier":"s:11JellyfinAPI15MediaAttachmentV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"protocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isReadAtNativeFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiredHTTPHeaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"requiresClosing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresOpening"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsProbing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TransportStreamTimestamp","preciseIdentifier":"s:11JellyfinAPI24TransportStreamTimestampO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingSubProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceType","preciseIdentifier":"s:11JellyfinAPI15MediaSourceTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?)"}],"title":"init(analyzeDurationMs:bitrate:bufferMs:container:defaultAudioStreamIndex:defaultSubtitleStreamIndex:eTag:encoderPath:encoderProtocol:formats:isGenPtsInput:id:isIgnoreDts:isIgnoreIndex:isInfiniteStream:isRemote:isoType:liveStreamID:mediaAttachments:mediaStreams:name:openToken:path:protocol:isReadAtNativeFramerate:requiredHTTPHeaders:requiresClosing:requiresLooping:requiresOpening:runTimeTicks:size:isSupportsDirectPlay:isSupportsDirectStream:isSupportsProbing:isSupportsTranscoding:timestamp:transcodingContainer:transcodingSubProtocol:transcodingURL:type:video3DFormat:videoType:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15MediaSourceInfoV17analyzeDurationMs7bitrate06bufferH09container23defaultAudioStreamIndex0l8SubtitlenO04eTag11encoderPath0R8Protocol7formats13isGenPtsInput2id0V9IgnoreDts0v6IgnoreO00v8InfiniteN00V6Remote7isoType04liveN2ID16mediaAttachments12mediaStreams4name9openToken4path8protocol0V21ReadAtNativeFramerate19requiredHTTPHeaders15requiresClosing15requiresLooping15requiresOpening12runTimeTicks4size0V18SupportsDirectPlay0v14SupportsDirectN00V15SupportsProbing0V19SupportsTranscoding9timestamp20transcodingContainer014transcodingSubT014transcodingURL4type13video3DFormat9videoTypeACs5Int32VSg_A20_A20_SSSgA20_A20_A21_A21_AA0cT0OSgSaySSGSgSbSgA21_A27_A27_A27_A27_AA7IsoTypeOSgA21_SayAA0C10AttachmentVGSgSayAA0cN0VGSgA21_A21_A21_A24_A27_SDyS2SGSgA27_A27_A27_s5Int64VSgA43_A27_A27_A27_A27_AA09TransportN9TimestampOSgA21_A21_A21_AA0cD4TypeOSgAA13Video3DFormatOSgAA9VideoTypeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/init(analyzeDurationMs:bitrate:bufferMs:container:defaultAudioStreamIndex:defaultSubtitleStreamIndex:eTag:encoderPath:encoderProtocol:formats:isGenPtsInput:id:isIgnoreDts:isIgnoreIndex:isInfiniteStream:isRemote:isoType:liveStreamID:mediaAttachments:mediaStreams:name:openToken:path:protocol:isReadAtNativeFramerate:requiredHTTPHeaders:requiresClosing:requiresLooping:requiresOpening:runTimeTicks:size:isSupportsDirectPlay:isSupportsDirectStream:isSupportsProbing:isSupportsTranscoding:timestamp:transcodingContainer:transcodingSubProtocol:transcodingURL:type:video3DFormat:videoType:)":{"role":"symbol","title":"init(analyzeDurationMs:bitrate:bufferMs:container:defaultAudioStreamIndex:defaultSubtitleStreamIndex:eTag:encoderPath:encoderProtocol:formats:isGenPtsInput:id:isIgnoreDts:isIgnoreIndex:isInfiniteStream:isRemote:isoType:liveStreamID:mediaAttachments:mediaStreams:name:openToken:path:protocol:isReadAtNativeFramerate:requiredHTTPHeaders:requiresClosing:requiresLooping:requiresOpening:runTimeTicks:size:isSupportsDirectPlay:isSupportsDirectStream:isSupportsProbing:isSupportsTranscoding:timestamp:transcodingContainer:transcodingSubProtocol:transcodingURL:type:video3DFormat:videoType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"analyzeDurationMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bufferMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"defaultAudioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"defaultSubtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"eTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"encoderProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"formats"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isGenPtsInput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreDts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInfiniteStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRemote"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaAttachments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaAttachment","preciseIdentifier":"s:11JellyfinAPI15MediaAttachmentV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"protocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isReadAtNativeFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiredHTTPHeaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"requiresClosing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requiresOpening"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsProbing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TransportStreamTimestamp","preciseIdentifier":"s:11JellyfinAPI24TransportStreamTimestampO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingSubProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceType","preciseIdentifier":"s:11JellyfinAPI15MediaSourceTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/init(analyzeDurationMs:bitrate:bufferMs:container:defaultAudioStreamIndex:defaultSubtitleStreamIndex:eTag:encoderPath:encoderProtocol:formats:isGenPtsInput:id:isIgnoreDts:isIgnoreIndex:isInfiniteStream:isRemote:isoType:liveStreamID:mediaAttachments:mediaStreams:name:openToken:path:protocol:isReadAtNativeFramerate:requiredHTTPHeaders:requiresClosing:requiresLooping:requiresOpening:runTimeTicks:size:isSupportsDirectPlay:isSupportsDirectStream:isSupportsProbing:isSupportsTranscoding:timestamp:transcodingContainer:transcodingSubProtocol:transcodingURL:type:video3DFormat:videoType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/init(analyzedurationms:bitrate:bufferms:container:defaultaudiostreamindex:defaultsubtitlestreamindex:etag:encoderpath:encoderprotocol:formats:isgenptsinput:id:isignoredts:isignoreindex:isinfinitestream:isremote:isotype:livestreamid:mediaatt-8d4uc"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/init(from:).json new file mode 100644 index 000000000..3f24b4590 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15MediaSourceInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isgenptsinput.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isgenptsinput.json new file mode 100644 index 000000000..732568453 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isgenptsinput.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isGenPtsInput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/isgenptsinput"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isGenPtsInput","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isGenPtsInput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isGenPtsInput","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV13isGenPtsInputSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isGenPtsInput":{"role":"symbol","title":"isGenPtsInput","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isGenPtsInput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isGenPtsInput","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isgenptsinput"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isignoredts.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isignoredts.json new file mode 100644 index 000000000..b17994cfc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isignoredts.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreDts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/isignoredts"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isIgnoreDts","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreDts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIgnoreDts","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV11isIgnoreDtsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isIgnoreDts":{"role":"symbol","title":"isIgnoreDts","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreDts"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isIgnoreDts","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isignoredts"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isignoreindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isignoreindex.json new file mode 100644 index 000000000..b7d759c1e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isignoreindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/isignoreindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isIgnoreIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIgnoreIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV13isIgnoreIndexSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isIgnoreIndex":{"role":"symbol","title":"isIgnoreIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isIgnoreIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isignoreindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isinfinitestream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isinfinitestream.json new file mode 100644 index 000000000..5542844e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isinfinitestream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInfiniteStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/isinfinitestream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isInfiniteStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInfiniteStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isInfiniteStream","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV16isInfiniteStreamSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isInfiniteStream":{"role":"symbol","title":"isInfiniteStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInfiniteStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isInfiniteStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isinfinitestream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isotype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isotype.json new file mode 100644 index 000000000..e97159203 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isotype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO","text":"IsoType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/isotype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isoType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?"}],"title":"isoType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV7isoTypeAA03IsoG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isoType":{"role":"symbol","title":"isoType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IsoType","preciseIdentifier":"s:11JellyfinAPI7IsoTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isoType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/IsoType":{"role":"symbol","title":"IsoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"IsoType"}],"abstract":[{"type":"text","text":"Enum IsoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IsoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IsoType"}],"url":"\/documentation\/jellyfinapi\/isotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isreadatnativeframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isreadatnativeframerate.json new file mode 100644 index 000000000..71f3d39eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isreadatnativeframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReadAtNativeFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/isreadatnativeframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isReadAtNativeFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReadAtNativeFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isReadAtNativeFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV23isReadAtNativeFramerateSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isReadAtNativeFramerate":{"role":"symbol","title":"isReadAtNativeFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReadAtNativeFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isReadAtNativeFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isreadatnativeframerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isremote.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isremote.json new file mode 100644 index 000000000..b5240dabe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/isremote.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemote"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Differentiate internet url vs local network."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/isremote"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isRemote","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the media is remote."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemote"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRemote","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV8isRemoteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isRemote":{"role":"symbol","title":"isRemote","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemote"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the media is remote."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isRemote","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/isremote"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportsdirectplay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportsdirectplay.json new file mode 100644 index 000000000..85b78eb40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportsdirectplay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/issupportsdirectplay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsDirectPlay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsDirectPlay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV20isSupportsDirectPlaySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isSupportsDirectPlay":{"role":"symbol","title":"isSupportsDirectPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsDirectPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/issupportsdirectplay"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportsdirectstream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportsdirectstream.json new file mode 100644 index 000000000..3046c3420 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportsdirectstream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/issupportsdirectstream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsDirectStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsDirectStream","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV22isSupportsDirectStreamSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isSupportsDirectStream":{"role":"symbol","title":"isSupportsDirectStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsDirectStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/issupportsdirectstream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportsprobing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportsprobing.json new file mode 100644 index 000000000..8b35ede9c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportsprobing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsProbing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/issupportsprobing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsProbing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsProbing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsProbing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV17isSupportsProbingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isSupportsProbing":{"role":"symbol","title":"isSupportsProbing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsProbing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsProbing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/issupportsprobing"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportstranscoding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportstranscoding.json new file mode 100644 index 000000000..70d68a30e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/issupportstranscoding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/issupportstranscoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsTranscoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsTranscoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV21isSupportsTranscodingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/isSupportsTranscoding":{"role":"symbol","title":"isSupportsTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/isSupportsTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/issupportstranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/livestreamid.json new file mode 100644 index 000000000..e207b1d97 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/livestreamid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/mediaattachments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/mediaattachments.json new file mode 100644 index 000000000..9b172d291 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/mediaattachments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaAttachments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","preciseIdentifier":"s:11JellyfinAPI15MediaAttachmentV","text":"MediaAttachment"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/mediaattachments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/mediaAttachments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaAttachments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaAttachment","preciseIdentifier":"s:11JellyfinAPI15MediaAttachmentV"},{"kind":"text","text":"]?"}],"title":"mediaAttachments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV16mediaAttachmentsSayAA0C10AttachmentVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/mediaAttachments":{"role":"symbol","title":"mediaAttachments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaAttachments"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaAttachment","preciseIdentifier":"s:11JellyfinAPI15MediaAttachmentV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/mediaAttachments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/mediaattachments"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaAttachment":{"role":"symbol","title":"MediaAttachment","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaAttachment"}],"abstract":[{"type":"text","text":"Class MediaAttachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaAttachment","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaAttachment"}],"url":"\/documentation\/jellyfinapi\/mediaattachment"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/mediastreams.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/mediastreams.json new file mode 100644 index 000000000..35f45f423 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/mediastreams.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV","text":"MediaStream"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/mediastreams"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/mediaStreams","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?"}],"title":"mediaStreams","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV12mediaStreamsSayAA0C6StreamVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/mediaStreams":{"role":"symbol","title":"mediaStreams","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaStreams"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaStream","preciseIdentifier":"s:11JellyfinAPI11MediaStreamV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/mediaStreams","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/mediastreams"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/name.json new file mode 100644 index 000000000..dd6feb2e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/opentoken.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/opentoken.json new file mode 100644 index 000000000..e6cbedb05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/opentoken.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/opentoken"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/openToken","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"openToken","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV9openTokenSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/openToken":{"role":"symbol","title":"openToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/openToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/opentoken"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/path.json new file mode 100644 index 000000000..dd86d73a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/protocol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/protocol.json new file mode 100644 index 000000000..36e5b073d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/protocol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"`protocol`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO","text":"MediaProtocol"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/protocol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/protocol","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"`protocol`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?"}],"title":"protocol","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV8protocolAA0C8ProtocolOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/protocol":{"role":"symbol","title":"protocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"`protocol`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/protocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/protocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requiredhttpheaders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requiredhttpheaders.json new file mode 100644 index 000000000..8e42c0098 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requiredhttpheaders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiredHTTPHeaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/requiredhttpheaders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiredHTTPHeaders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiredHTTPHeaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"requiredHTTPHeaders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV19requiredHTTPHeadersSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/requiredHTTPHeaders":{"role":"symbol","title":"requiredHTTPHeaders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiredHTTPHeaders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiredHTTPHeaders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/requiredhttpheaders"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requiresclosing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requiresclosing.json new file mode 100644 index 000000000..4cef9604d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requiresclosing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresClosing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/requiresclosing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresClosing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresClosing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requiresClosing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV15requiresClosingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/requiresClosing":{"role":"symbol","title":"requiresClosing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresClosing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresClosing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/requiresclosing"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requireslooping.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requireslooping.json new file mode 100644 index 000000000..21e5ac0c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requireslooping.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/requireslooping"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresLooping","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requiresLooping","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV15requiresLoopingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/requiresLooping":{"role":"symbol","title":"requiresLooping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresLooping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/requireslooping"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requiresopening.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requiresopening.json new file mode 100644 index 000000000..acbcf3924 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/requiresopening.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresOpening"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/requiresopening"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresOpening","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresOpening"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requiresOpening","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV15requiresOpeningSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/requiresOpening":{"role":"symbol","title":"requiresOpening","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresOpening"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/requiresOpening","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/requiresopening"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/runtimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/runtimeticks.json new file mode 100644 index 000000000..12785e08d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/runtimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/runtimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/runTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"runTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV12runTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/runTimeTicks":{"role":"symbol","title":"runTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/runTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/runtimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/size.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/size.json new file mode 100644 index 000000000..6e63ef2ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/size.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/size"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/size","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"size","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV4sizes5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/size":{"role":"symbol","title":"size","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/size","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/size"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/timestamp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/timestamp.json new file mode 100644 index 000000000..cc833b21d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/timestamp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","preciseIdentifier":"s:11JellyfinAPI24TransportStreamTimestampO","text":"TransportStreamTimestamp"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/timestamp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/timestamp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TransportStreamTimestamp","preciseIdentifier":"s:11JellyfinAPI24TransportStreamTimestampO"},{"kind":"text","text":"?"}],"title":"timestamp","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV9timestampAA24TransportStreamTimestampOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TransportStreamTimestamp","preciseIdentifier":"s:11JellyfinAPI24TransportStreamTimestampO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/timestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/transcodingcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/transcodingcontainer.json new file mode 100644 index 000000000..26db4f77a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/transcodingcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/transcodingcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodingContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV20transcodingContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/transcodingContainer":{"role":"symbol","title":"transcodingContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/transcodingcontainer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/transcodingsubprotocol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/transcodingsubprotocol.json new file mode 100644 index 000000000..eb25d756e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/transcodingsubprotocol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingSubProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/transcodingsubprotocol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingSubProtocol","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingSubProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodingSubProtocol","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV22transcodingSubProtocolSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/transcodingSubProtocol":{"role":"symbol","title":"transcodingSubProtocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingSubProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingSubProtocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/transcodingsubprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/transcodingurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/transcodingurl.json new file mode 100644 index 000000000..79374240b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/transcodingurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/transcodingurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodingURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV14transcodingURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/transcodingURL":{"role":"symbol","title":"transcodingURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/transcodingURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/transcodingurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/type.json new file mode 100644 index 000000000..496e41f01 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","preciseIdentifier":"s:11JellyfinAPI15MediaSourceTypeO","text":"MediaSourceType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceType","preciseIdentifier":"s:11JellyfinAPI15MediaSourceTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV4typeAA0cD4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaSourceType","preciseIdentifier":"s:11JellyfinAPI15MediaSourceTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/video3dformat.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/video3dformat.json new file mode 100644 index 000000000..22b043e1c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/video3dformat.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO","text":"Video3DFormat"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/video3dformat"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/video3DFormat","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?"}],"title":"video3DFormat","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV13video3DFormatAA06Video3G0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/video3DFormat":{"role":"symbol","title":"video3DFormat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"video3DFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Video3DFormat","preciseIdentifier":"s:11JellyfinAPI13Video3DFormatO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/video3DFormat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/videotype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/videotype.json new file mode 100644 index 000000000..f50298086 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourceinfo/videotype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO","text":"VideoType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourceinfo\/videotype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/videoType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?"}],"title":"videoType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MediaSourceInfoV9videoTypeAA05VideoG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo/videoType":{"role":"symbol","title":"videoType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo\/videoType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourceinfo\/videotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype.json new file mode 100644 index 000000000..75632cfb7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"title":"MediaSourceType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15MediaSourceTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/default","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/grouping","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/placeholder"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/grouping":{"role":"symbol","title":"MediaSourceType.grouping","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"grouping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/grouping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/grouping"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/placeholder":{"role":"symbol","title":"MediaSourceType.placeholder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"placeholder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/placeholder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/placeholder"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/default":{"role":"symbol","title":"MediaSourceType.default","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/default","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/default"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/!=(_:_:).json new file mode 100644 index 000000000..74fd8510e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15MediaSourceTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/default.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/default.json new file mode 100644 index 000000000..3ebbf92e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/default.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/default"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/default","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"title":"MediaSourceType.default","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15MediaSourceTypeO7defaultyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/default":{"role":"symbol","title":"MediaSourceType.default","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/default","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/default"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/encode(to:).json new file mode 100644 index 000000000..57434a9fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15MediaSourceTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/equatable-implementations.json new file mode 100644 index 000000000..313587577 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/grouping.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/grouping.json new file mode 100644 index 000000000..8b080cc82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/grouping.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"grouping"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/grouping"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/grouping","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"grouping"}],"title":"MediaSourceType.grouping","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15MediaSourceTypeO8groupingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/grouping":{"role":"symbol","title":"MediaSourceType.grouping","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"grouping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/grouping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/grouping"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/hash(into:).json new file mode 100644 index 000000000..68f175fd1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15MediaSourceTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/hashvalue.json new file mode 100644 index 000000000..7b7f9e886 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15MediaSourceTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/init(from:).json new file mode 100644 index 000000000..138dba2c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15MediaSourceTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/init(rawvalue:).json new file mode 100644 index 000000000..034665677 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15MediaSourceTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/placeholder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/placeholder.json new file mode 100644 index 000000000..f4590fe0d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/placeholder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"placeholder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/placeholder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/placeholder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"placeholder"}],"title":"MediaSourceType.placeholder","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15MediaSourceTypeO11placeholderyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/placeholder":{"role":"symbol","title":"MediaSourceType.placeholder","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"placeholder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/placeholder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/placeholder"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/rawrepresentable-implementations.json new file mode 100644 index 000000000..ec32611da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediasourcetype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/mediasourcetype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediasourcetype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceType":{"role":"symbol","title":"MediaSourceType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceType"}],"url":"\/documentation\/jellyfinapi\/mediasourcetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream.json new file mode 100644 index 000000000..bc99d161b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class MediaStream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"title":"MediaStream","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11MediaStreamV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaStream"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/init(aspectRatio:averageFrameRate:bitDepth:bitRate:blPresentFlag:channelLayout:channels:codec:codecTag:codecTimeBase:colorPrimaries:colorRange:colorSpace:colorTransfer:comment:deliveryMethod:deliveryURL:displayTitle:dvBlSignalCompatibilityID:dvLevel:dvProfile:dvVersionMajor:dvVersionMinor:elPresentFlag:height:index:isAVC:isAnamorphic:isDefault:isExternal:isExternalURL:isForced:isInterlaced:isTextSubtitleStream:language:level:localizedDefault:localizedExternal:localizedForced:localizedUndefined:nalLengthSize:packetLength:path:pixelFormat:profile:realFrameRate:refFrames:rpuPresentFlag:sampleRate:score:isSupportsExternalStream:timeBase:title:type:videoDoViTitle:videoRange:videoRangeType:width:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/aspectRatio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/averageFrameRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/bitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/bitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/blPresentFlag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/channelLayout","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/channels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codecTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codecTimeBase","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorPrimaries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorRange","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorSpace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorTransfer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/comment","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/deliveryMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/deliveryURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/displayTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvBlSignalCompatibilityID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvVersionMajor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvVersionMinor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/elPresentFlag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/index","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isAVC","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isDefault","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isExternal","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isExternalURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isForced","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isInterlaced","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isSupportsExternalStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isTextSubtitleStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/language","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedDefault","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedExternal","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedForced","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedUndefined","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/nalLengthSize","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/packetLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/pixelFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/realFrameRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/refFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/rpuPresentFlag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/sampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/score","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/timeBase","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/title","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoDoViTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoRange","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoRangeType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/width"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isSupportsExternalStream":{"role":"symbol","title":"isSupportsExternalStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsExternalStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports external stream]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isSupportsExternalStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/issupportsexternalstream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isAnamorphic":{"role":"symbol","title":"isAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets whether this instance is anamorphic."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/displayTitle":{"role":"symbol","title":"displayTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/displayTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/displaytitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/localizedDefault":{"role":"symbol","title":"localizedDefault","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedDefault","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/localizeddefault"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/colorRange":{"role":"symbol","title":"colorRange","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the color range."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorRange","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/colorrange"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/colorSpace":{"role":"symbol","title":"colorSpace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorSpace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the color space."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorSpace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/colorspace"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/channels":{"role":"symbol","title":"channels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/channels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/channels"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/localizedUndefined":{"role":"symbol","title":"localizedUndefined","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedUndefined","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/localizedundefined"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/timeBase":{"role":"symbol","title":"timeBase","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the time base."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/timeBase","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/timebase"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isExternal":{"role":"symbol","title":"isExternal","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is external."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isExternal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isexternal"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/dvProfile":{"role":"symbol","title":"dvProfile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/dvprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/score":{"role":"symbol","title":"score","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"score"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the score."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/score","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/score"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/bitDepth":{"role":"symbol","title":"bitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the bit depth."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/bitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/bitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isAVC":{"role":"symbol","title":"isAVC","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAVC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isAVC","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/title":{"role":"symbol","title":"title","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/title","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/title"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/localizedForced":{"role":"symbol","title":"localizedForced","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedForced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/localizedforced"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/aspectRatio":{"role":"symbol","title":"aspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the aspect ratio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/aspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/aspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/elPresentFlag":{"role":"symbol","title":"elPresentFlag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"elPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision el present flag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/elPresentFlag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/elpresentflag"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/refFrames":{"role":"symbol","title":"refFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the reference frames."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/refFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/refframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/videoRangeType":{"role":"symbol","title":"videoRangeType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the video range type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoRangeType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/videorangetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/dvVersionMinor":{"role":"symbol","title":"dvVersionMinor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvVersionMinor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision version minor."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvVersionMinor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/dvversionminor"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/dvLevel":{"role":"symbol","title":"dvLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/dvlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/bitRate":{"role":"symbol","title":"bitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the bit rate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/bitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/bitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the height."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/comment":{"role":"symbol","title":"comment","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the comment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/comment","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/comment"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/deliveryMethod":{"role":"symbol","title":"deliveryMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the method."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/deliveryMethod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/deliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the filename."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/init(aspectRatio:averageFrameRate:bitDepth:bitRate:blPresentFlag:channelLayout:channels:codec:codecTag:codecTimeBase:colorPrimaries:colorRange:colorSpace:colorTransfer:comment:deliveryMethod:deliveryURL:displayTitle:dvBlSignalCompatibilityID:dvLevel:dvProfile:dvVersionMajor:dvVersionMinor:elPresentFlag:height:index:isAVC:isAnamorphic:isDefault:isExternal:isExternalURL:isForced:isInterlaced:isTextSubtitleStream:language:level:localizedDefault:localizedExternal:localizedForced:localizedUndefined:nalLengthSize:packetLength:path:pixelFormat:profile:realFrameRate:refFrames:rpuPresentFlag:sampleRate:score:isSupportsExternalStream:timeBase:title:type:videoDoViTitle:videoRange:videoRangeType:width:)":{"role":"symbol","title":"init(aspectRatio:averageFrameRate:bitDepth:bitRate:blPresentFlag:channelLayout:channels:codec:codecTag:codecTimeBase:colorPrimaries:colorRange:colorSpace:colorTransfer:comment:deliveryMethod:deliveryURL:displayTitle:dvBlSignalCompatibilityID:dvLevel:dvProfile:dvVersionMajor:dvVersionMinor:elPresentFlag:height:index:isAVC:isAnamorphic:isDefault:isExternal:isExternalURL:isForced:isInterlaced:isTextSubtitleStream:language:level:localizedDefault:localizedExternal:localizedForced:localizedUndefined:nalLengthSize:packetLength:path:pixelFormat:profile:realFrameRate:refFrames:rpuPresentFlag:sampleRate:score:isSupportsExternalStream:timeBase:title:type:videoDoViTitle:videoRange:videoRangeType:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"averageFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelLayout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecTimeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorPrimaries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorSpace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deliveryMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"displayTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvBlSignalCompatibilityID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvVersionMajor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvVersionMinor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"elPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAVC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isExternalURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInterlaced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isTextSubtitleStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nalLengthSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"packetLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pixelFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"realFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"refFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"rpuPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"score"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsExternalStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaStreamType","preciseIdentifier":"s:11JellyfinAPI15MediaStreamTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoDoViTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoRangeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/init(aspectRatio:averageFrameRate:bitDepth:bitRate:blPresentFlag:channelLayout:channels:codec:codecTag:codecTimeBase:colorPrimaries:colorRange:colorSpace:colorTransfer:comment:deliveryMethod:deliveryURL:displayTitle:dvBlSignalCompatibilityID:dvLevel:dvProfile:dvVersionMajor:dvVersionMinor:elPresentFlag:height:index:isAVC:isAnamorphic:isDefault:isExternal:isExternalURL:isForced:isInterlaced:isTextSubtitleStream:language:level:localizedDefault:localizedExternal:localizedForced:localizedUndefined:nalLengthSize:packetLength:path:pixelFormat:profile:realFrameRate:refFrames:rpuPresentFlag:sampleRate:score:isSupportsExternalStream:timeBase:title:type:videoDoViTitle:videoRange:videoRangeType:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/init(aspectratio:averageframerate:bitdepth:bitrate:blpresentflag:channellayout:channels:codec:codectag:codectimebase:colorprimaries:colorrange:colorspace:colortransfer:comment:deliverymethod:deliveryurl:displaytitle:dvblsignalcompatibilityi-3sovd"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/nalLengthSize":{"role":"symbol","title":"nalLengthSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nalLengthSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/nalLengthSize","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/nallengthsize"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/codec":{"role":"symbol","title":"codec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the codec."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/codec"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/realFrameRate":{"role":"symbol","title":"realFrameRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"realFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the real frame rate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/realFrameRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/realframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/packetLength":{"role":"symbol","title":"packetLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packetLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the length of the packet."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/packetLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/packetlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/colorTransfer":{"role":"symbol","title":"colorTransfer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the color transfer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorTransfer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/colortransfer"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/language":{"role":"symbol","title":"language","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/language","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/language"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/averageFrameRate":{"role":"symbol","title":"averageFrameRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"averageFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the average frame rate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/averageFrameRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/averageframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the width."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/dvBlSignalCompatibilityID":{"role":"symbol","title":"dvBlSignalCompatibilityID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvBlSignalCompatibilityID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision bl signal compatibility id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvBlSignalCompatibilityID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/dvblsignalcompatibilityid"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/codecTimeBase":{"role":"symbol","title":"codecTimeBase","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTimeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the codec time base."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codecTimeBase","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/codectimebase"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/codecTag":{"role":"symbol","title":"codecTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the codec tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codecTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/codectag"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isInterlaced":{"role":"symbol","title":"isInterlaced","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInterlaced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is interlaced."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isInterlaced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isinterlaced"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isTextSubtitleStream":{"role":"symbol","title":"isTextSubtitleStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isTextSubtitleStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isTextSubtitleStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/istextsubtitlestream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/index","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/index"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/pixelFormat":{"role":"symbol","title":"pixelFormat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pixelFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the pixel format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/pixelFormat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/pixelformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/deliveryURL":{"role":"symbol","title":"deliveryURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the delivery URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/deliveryURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/deliveryurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/blPresentFlag":{"role":"symbol","title":"blPresentFlag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision bl present flag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/blPresentFlag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/blpresentflag"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/dvVersionMajor":{"role":"symbol","title":"dvVersionMajor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvVersionMajor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision version major."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvVersionMajor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/dvversionmajor"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/colorPrimaries":{"role":"symbol","title":"colorPrimaries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorPrimaries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the color primaries."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorPrimaries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/colorprimaries"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isExternalURL":{"role":"symbol","title":"isExternalURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExternalURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is external URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isExternalURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isexternalurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/sampleRate":{"role":"symbol","title":"sampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the sample rate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/sampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/samplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/localizedExternal":{"role":"symbol","title":"localizedExternal","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedExternal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/localizedexternal"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/channelLayout":{"role":"symbol","title":"channelLayout","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelLayout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel layout."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/channelLayout","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/channellayout"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/rpuPresentFlag":{"role":"symbol","title":"rpuPresentFlag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rpuPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision rpu present flag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/rpuPresentFlag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/rpupresentflag"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaStreamType","preciseIdentifier":"s:11JellyfinAPI15MediaStreamTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isForced":{"role":"symbol","title":"isForced","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is forced."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isForced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isforced"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isDefault":{"role":"symbol","title":"isDefault","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is default."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isDefault","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isdefault"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/videoDoViTitle":{"role":"symbol","title":"videoDoViTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoDoViTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the video dovi title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoDoViTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/videodovititle"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/videoRange":{"role":"symbol","title":"videoRange","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the video range."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoRange","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/videorange"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/aspectratio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/aspectratio.json new file mode 100644 index 000000000..b5640e769 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/aspectratio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/aspectratio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/aspectRatio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the aspect ratio."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"aspectRatio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV11aspectRatioSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/aspectRatio":{"role":"symbol","title":"aspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the aspect ratio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/aspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/aspectratio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/averageframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/averageframerate.json new file mode 100644 index 000000000..86b31c8c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/averageframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"averageFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/averageframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/averageFrameRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the average frame rate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"averageFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"averageFrameRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV16averageFrameRateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/averageFrameRate":{"role":"symbol","title":"averageFrameRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"averageFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the average frame rate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/averageFrameRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/averageframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/bitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/bitdepth.json new file mode 100644 index 000000000..eb9c441f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/bitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/bitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/bitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the bit depth."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"bitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV8bitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/bitDepth":{"role":"symbol","title":"bitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the bit depth."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/bitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/bitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/bitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/bitrate.json new file mode 100644 index 000000000..09d65e755 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/bitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/bitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/bitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the bit rate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"bitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV7bitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/bitRate":{"role":"symbol","title":"bitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the bit rate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/bitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/bitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/blpresentflag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/blpresentflag.json new file mode 100644 index 000000000..f56fa6c73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/blpresentflag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/blpresentflag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/blPresentFlag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision bl present flag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blPresentFlag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV13blPresentFlags5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/blPresentFlag":{"role":"symbol","title":"blPresentFlag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision bl present flag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/blPresentFlag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/blpresentflag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/channellayout.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/channellayout.json new file mode 100644 index 000000000..d99cd33f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/channellayout.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelLayout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/channellayout"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/channelLayout","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the channel layout."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelLayout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelLayout","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV13channelLayoutSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/channelLayout":{"role":"symbol","title":"channelLayout","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelLayout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel layout."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/channelLayout","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/channellayout"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/channels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/channels.json new file mode 100644 index 000000000..fa889fdcf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/channels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/channels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/channels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the channels."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"channels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV8channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/channels":{"role":"symbol","title":"channels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/channels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/channels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/codec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/codec.json new file mode 100644 index 000000000..241841304 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/codec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/codec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the codec."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"codec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV5codecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/codec":{"role":"symbol","title":"codec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the codec."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/codec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/codectag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/codectag.json new file mode 100644 index 000000000..cf56119e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/codectag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/codectag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codecTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the codec tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"codecTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV8codecTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/codecTag":{"role":"symbol","title":"codecTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the codec tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codecTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/codectag"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/codectimebase.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/codectimebase.json new file mode 100644 index 000000000..272ffe97f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/codectimebase.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTimeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/codectimebase"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codecTimeBase","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the codec time base."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTimeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"codecTimeBase","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV13codecTimeBaseSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/codecTimeBase":{"role":"symbol","title":"codecTimeBase","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecTimeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the codec time base."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/codecTimeBase","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/codectimebase"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colorprimaries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colorprimaries.json new file mode 100644 index 000000000..dd8d9a6a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colorprimaries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorPrimaries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/colorprimaries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorPrimaries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the color primaries."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorPrimaries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"colorPrimaries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV14colorPrimariesSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/colorPrimaries":{"role":"symbol","title":"colorPrimaries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorPrimaries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the color primaries."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorPrimaries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/colorprimaries"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colorrange.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colorrange.json new file mode 100644 index 000000000..9db0aab9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colorrange.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/colorrange"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorRange","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the color range."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"colorRange","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV10colorRangeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/colorRange":{"role":"symbol","title":"colorRange","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the color range."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorRange","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/colorrange"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colorspace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colorspace.json new file mode 100644 index 000000000..d6776b2e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colorspace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorSpace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/colorspace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorSpace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the color space."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorSpace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"colorSpace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV10colorSpaceSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/colorSpace":{"role":"symbol","title":"colorSpace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorSpace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the color space."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorSpace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/colorspace"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colortransfer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colortransfer.json new file mode 100644 index 000000000..88f0366d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/colortransfer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/colortransfer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorTransfer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the color transfer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"colorTransfer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV13colorTransferSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/colorTransfer":{"role":"symbol","title":"colorTransfer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the color transfer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/colorTransfer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/colortransfer"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/comment.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/comment.json new file mode 100644 index 000000000..c818ab3f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/comment.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/comment"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/comment","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the comment."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"comment","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV7commentSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/comment":{"role":"symbol","title":"comment","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the comment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/comment","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/comment"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/deliverymethod.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/deliverymethod.json new file mode 100644 index 000000000..b43c6c052 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/deliverymethod.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/deliverymethod"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/deliveryMethod","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?"}],"title":"deliveryMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV14deliveryMethodAA016SubtitleDeliveryF0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/deliveryMethod":{"role":"symbol","title":"deliveryMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the method."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/deliveryMethod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/deliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/deliveryurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/deliveryurl.json new file mode 100644 index 000000000..500bed34c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/deliveryurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/deliveryurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/deliveryURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the delivery URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deliveryURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV11deliveryURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/deliveryURL":{"role":"symbol","title":"deliveryURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the delivery URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/deliveryURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/deliveryurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/displaytitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/displaytitle.json new file mode 100644 index 000000000..e0c39cfef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/displaytitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/displaytitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/displayTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"displayTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV12displayTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/displayTitle":{"role":"symbol","title":"displayTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/displayTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/displaytitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvblsignalcompatibilityid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvblsignalcompatibilityid.json new file mode 100644 index 000000000..77cdbca0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvblsignalcompatibilityid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvBlSignalCompatibilityID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/dvblsignalcompatibilityid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvBlSignalCompatibilityID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision bl signal compatibility id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvBlSignalCompatibilityID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"dvBlSignalCompatibilityID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV25dvBlSignalCompatibilityIDs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/dvBlSignalCompatibilityID":{"role":"symbol","title":"dvBlSignalCompatibilityID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvBlSignalCompatibilityID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision bl signal compatibility id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvBlSignalCompatibilityID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/dvblsignalcompatibilityid"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvlevel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvlevel.json new file mode 100644 index 000000000..77162dc83 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvlevel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/dvlevel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision level."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"dvLevel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV7dvLevels5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/dvLevel":{"role":"symbol","title":"dvLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/dvlevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvprofile.json new file mode 100644 index 000000000..35ae10f0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/dvprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision profile."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"dvProfile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV9dvProfiles5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/dvProfile":{"role":"symbol","title":"dvProfile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/dvprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvversionmajor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvversionmajor.json new file mode 100644 index 000000000..17953dc7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvversionmajor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvVersionMajor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/dvversionmajor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvVersionMajor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision version major."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvVersionMajor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"dvVersionMajor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV14dvVersionMajors5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/dvVersionMajor":{"role":"symbol","title":"dvVersionMajor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvVersionMajor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision version major."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvVersionMajor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/dvversionmajor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvversionminor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvversionminor.json new file mode 100644 index 000000000..8bc67c084 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/dvversionminor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvVersionMinor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/dvversionminor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvVersionMinor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision version minor."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvVersionMinor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"dvVersionMinor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV14dvVersionMinors5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/dvVersionMinor":{"role":"symbol","title":"dvVersionMinor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvVersionMinor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision version minor."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/dvVersionMinor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/dvversionminor"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/elpresentflag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/elpresentflag.json new file mode 100644 index 000000000..37ff7068f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/elpresentflag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"elPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/elpresentflag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/elPresentFlag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision el present flag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"elPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"elPresentFlag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV13elPresentFlags5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/elPresentFlag":{"role":"symbol","title":"elPresentFlag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"elPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision el present flag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/elPresentFlag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/elpresentflag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/height.json new file mode 100644 index 000000000..a505382ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the height."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the height."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/index.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/index.json new file mode 100644 index 000000000..03f42dad7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/index.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/index"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/index","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"index","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV5indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/index","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/index"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/init(aspectratio:averageframerate:bitdepth:bitrate:blpresentflag:channellayout:channels:codec:codectag:codectimebase:colorprimaries:colorrange:colorspace:colortransfer:comment:deliverymethod:deliveryurl:displaytitle:dvblsignalcompatibilityi-3sovd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/init(aspectratio:averageframerate:bitdepth:bitrate:blpresentflag:channellayout:channels:codec:codectag:codectimebase:colorprimaries:colorrange:colorspace:colortransfer:comment:deliverymethod:deliveryurl:displaytitle:dvblsignalcompatibilityi-3sovd.json new file mode 100644 index 000000000..611c99660 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/init(aspectratio:averageframerate:bitdepth:bitrate:blpresentflag:channellayout:channels:codec:codectag:codectimebase:colorprimaries:colorrange:colorspace:colortransfer:comment:deliverymethod:deliveryurl:displaytitle:dvblsignalcompatibilityi-3sovd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"averageFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"bitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelLayout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"codecTimeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"colorPrimaries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"colorRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"colorSpace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"colorTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deliveryMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"displayTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dvBlSignalCompatibilityID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dvLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dvProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dvVersionMajor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dvVersionMinor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"elPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAVC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isExternalURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isInterlaced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isTextSubtitleStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"localizedDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"localizedExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"localizedForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"localizedUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nalLengthSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"packetLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"pixelFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"realFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"refFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"rpuPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"score"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsExternalStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"timeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","preciseIdentifier":"s:11JellyfinAPI15MediaStreamTypeO","text":"MediaStreamType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoDoViTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoRangeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/init(aspectratio:averageframerate:bitdepth:bitrate:blpresentflag:channellayout:channels:codec:codectag:codectimebase:colorprimaries:colorrange:colorspace:colortransfer:comment:deliverymethod:deliveryurl:displaytitle:dvblsignalcompatibilityi-3sovd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/init(aspectRatio:averageFrameRate:bitDepth:bitRate:blPresentFlag:channelLayout:channels:codec:codecTag:codecTimeBase:colorPrimaries:colorRange:colorSpace:colorTransfer:comment:deliveryMethod:deliveryURL:displayTitle:dvBlSignalCompatibilityID:dvLevel:dvProfile:dvVersionMajor:dvVersionMinor:elPresentFlag:height:index:isAVC:isAnamorphic:isDefault:isExternal:isExternalURL:isForced:isInterlaced:isTextSubtitleStream:language:level:localizedDefault:localizedExternal:localizedForced:localizedUndefined:nalLengthSize:packetLength:path:pixelFormat:profile:realFrameRate:refFrames:rpuPresentFlag:sampleRate:score:isSupportsExternalStream:timeBase:title:type:videoDoViTitle:videoRange:videoRangeType:width:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"averageFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelLayout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecTimeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorPrimaries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorSpace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deliveryMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"displayTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvBlSignalCompatibilityID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvVersionMajor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvVersionMinor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"elPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAVC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isExternalURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInterlaced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isTextSubtitleStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nalLengthSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"packetLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pixelFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"realFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"refFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"rpuPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"score"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsExternalStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaStreamType","preciseIdentifier":"s:11JellyfinAPI15MediaStreamTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoDoViTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoRangeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(aspectRatio:averageFrameRate:bitDepth:bitRate:blPresentFlag:channelLayout:channels:codec:codecTag:codecTimeBase:colorPrimaries:colorRange:colorSpace:colorTransfer:comment:deliveryMethod:deliveryURL:displayTitle:dvBlSignalCompatibilityID:dvLevel:dvProfile:dvVersionMajor:dvVersionMinor:elPresentFlag:height:index:isAVC:isAnamorphic:isDefault:isExternal:isExternalURL:isForced:isInterlaced:isTextSubtitleStream:language:level:localizedDefault:localizedExternal:localizedForced:localizedUndefined:nalLengthSize:packetLength:path:pixelFormat:profile:realFrameRate:refFrames:rpuPresentFlag:sampleRate:score:isSupportsExternalStream:timeBase:title:type:videoDoViTitle:videoRange:videoRangeType:width:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11MediaStreamV11aspectRatio16averageFrameRate8bitDepth0jI013blPresentFlag13channelLayout8channels5codec0R3Tag0R8TimeBase14colorPrimaries0V5Range0V5Space0V8Transfer7comment14deliveryMethod11deliveryURL12displayTitle25dvBlSignalCompatibilityID7dvLevel9dvProfile14dvVersionMajor14dvVersionMinor02elmN06height5index5isAVC12isAnamorphic9isDefault10isExternal13isExternalURL8isForced12isInterlaced014isTextSubtitleD08language5level16localizedDefault17localizedExternal15localizedForced18localizedUndefined13nalLengthSize12packetLength4path11pixelFormat7profile04realhI09refFrames03rpumN006sampleI05score018isSupportsExternalD004timeU05title4type14videoDoViTitle05videoX005videoX4Type5widthACSSSg_SfSgs5Int32VSgA38_A38_A34_A38_A34_A34_A34_A34_A34_A34_A34_A34_AA22SubtitleDeliveryMethodOSgA34_A34_A38_A38_A38_A38_A38_A38_A38_A38_SbSgA42_A42_A42_A42_A42_A42_A42_A34_SdSgA34_A34_A34_A34_A34_A38_A34_A34_A34_A35_A38_A38_A38_A38_A42_A34_A34_AA0cD4TypeOSgA34_A34_A34_A38_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/init(aspectRatio:averageFrameRate:bitDepth:bitRate:blPresentFlag:channelLayout:channels:codec:codecTag:codecTimeBase:colorPrimaries:colorRange:colorSpace:colorTransfer:comment:deliveryMethod:deliveryURL:displayTitle:dvBlSignalCompatibilityID:dvLevel:dvProfile:dvVersionMajor:dvVersionMinor:elPresentFlag:height:index:isAVC:isAnamorphic:isDefault:isExternal:isExternalURL:isForced:isInterlaced:isTextSubtitleStream:language:level:localizedDefault:localizedExternal:localizedForced:localizedUndefined:nalLengthSize:packetLength:path:pixelFormat:profile:realFrameRate:refFrames:rpuPresentFlag:sampleRate:score:isSupportsExternalStream:timeBase:title:type:videoDoViTitle:videoRange:videoRangeType:width:)":{"role":"symbol","title":"init(aspectRatio:averageFrameRate:bitDepth:bitRate:blPresentFlag:channelLayout:channels:codec:codecTag:codecTimeBase:colorPrimaries:colorRange:colorSpace:colorTransfer:comment:deliveryMethod:deliveryURL:displayTitle:dvBlSignalCompatibilityID:dvLevel:dvProfile:dvVersionMajor:dvVersionMinor:elPresentFlag:height:index:isAVC:isAnamorphic:isDefault:isExternal:isExternalURL:isForced:isInterlaced:isTextSubtitleStream:language:level:localizedDefault:localizedExternal:localizedForced:localizedUndefined:nalLengthSize:packetLength:path:pixelFormat:profile:realFrameRate:refFrames:rpuPresentFlag:sampleRate:score:isSupportsExternalStream:timeBase:title:type:videoDoViTitle:videoRange:videoRangeType:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"averageFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelLayout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecTimeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorPrimaries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorSpace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"colorTransfer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deliveryMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deliveryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"displayTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvBlSignalCompatibilityID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvVersionMajor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dvVersionMinor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"elPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAVC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isExternalURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInterlaced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isTextSubtitleStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localizedUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nalLengthSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"packetLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pixelFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"realFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"refFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"rpuPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"score"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsExternalStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaStreamType","preciseIdentifier":"s:11JellyfinAPI15MediaStreamTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoDoViTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoRangeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/init(aspectRatio:averageFrameRate:bitDepth:bitRate:blPresentFlag:channelLayout:channels:codec:codecTag:codecTimeBase:colorPrimaries:colorRange:colorSpace:colorTransfer:comment:deliveryMethod:deliveryURL:displayTitle:dvBlSignalCompatibilityID:dvLevel:dvProfile:dvVersionMajor:dvVersionMinor:elPresentFlag:height:index:isAVC:isAnamorphic:isDefault:isExternal:isExternalURL:isForced:isInterlaced:isTextSubtitleStream:language:level:localizedDefault:localizedExternal:localizedForced:localizedUndefined:nalLengthSize:packetLength:path:pixelFormat:profile:realFrameRate:refFrames:rpuPresentFlag:sampleRate:score:isSupportsExternalStream:timeBase:title:type:videoDoViTitle:videoRange:videoRangeType:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/init(aspectratio:averageframerate:bitdepth:bitrate:blpresentflag:channellayout:channels:codec:codectag:codectimebase:colorprimaries:colorrange:colorspace:colortransfer:comment:deliverymethod:deliveryurl:displaytitle:dvblsignalcompatibilityi-3sovd"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/init(from:).json new file mode 100644 index 000000000..fe8066a8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11MediaStreamV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isanamorphic.json new file mode 100644 index 000000000..b72a396bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/isanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets whether this instance is anamorphic."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV12isAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isAnamorphic":{"role":"symbol","title":"isAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets whether this instance is anamorphic."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isavc.json new file mode 100644 index 000000000..9a7918d0d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAVC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/isavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isAVC","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAVC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAVC","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV5isAVCSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isAVC":{"role":"symbol","title":"isAVC","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAVC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isAVC","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isdefault.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isdefault.json new file mode 100644 index 000000000..b8362e405 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isdefault.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/isdefault"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isDefault","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is default."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDefault","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV9isDefaultSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isDefault":{"role":"symbol","title":"isDefault","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is default."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isDefault","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isdefault"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isexternal.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isexternal.json new file mode 100644 index 000000000..f48c4f6d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isexternal.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/isexternal"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isExternal","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is external."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isExternal","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV10isExternalSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isExternal":{"role":"symbol","title":"isExternal","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is external."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isExternal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isexternal"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isexternalurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isexternalurl.json new file mode 100644 index 000000000..6e1139ecd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isexternalurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExternalURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/isexternalurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isExternalURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is external URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExternalURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isExternalURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV13isExternalURLSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isExternalURL":{"role":"symbol","title":"isExternalURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isExternalURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is external URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isExternalURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isexternalurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isforced.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isforced.json new file mode 100644 index 000000000..c21114b4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isforced.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/isforced"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isForced","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is forced."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isForced","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV8isForcedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isForced":{"role":"symbol","title":"isForced","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is forced."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isForced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isforced"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isinterlaced.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isinterlaced.json new file mode 100644 index 000000000..b51b177cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/isinterlaced.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInterlaced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/isinterlaced"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isInterlaced","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is interlaced."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInterlaced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isInterlaced","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV12isInterlacedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isInterlaced":{"role":"symbol","title":"isInterlaced","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInterlaced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is interlaced."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isInterlaced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/isinterlaced"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/issupportsexternalstream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/issupportsexternalstream.json new file mode 100644 index 000000000..7b3af5a59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/issupportsexternalstream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsExternalStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/issupportsexternalstream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isSupportsExternalStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports external stream]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsExternalStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsExternalStream","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV018isSupportsExternalD0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isSupportsExternalStream":{"role":"symbol","title":"isSupportsExternalStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsExternalStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports external stream]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isSupportsExternalStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/issupportsexternalstream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/istextsubtitlestream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/istextsubtitlestream.json new file mode 100644 index 000000000..45fef4432 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/istextsubtitlestream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isTextSubtitleStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/istextsubtitlestream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isTextSubtitleStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isTextSubtitleStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isTextSubtitleStream","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV014isTextSubtitleD0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/isTextSubtitleStream":{"role":"symbol","title":"isTextSubtitleStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isTextSubtitleStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/isTextSubtitleStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/istextsubtitlestream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/language.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/language.json new file mode 100644 index 000000000..cb2e4ed3d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/language.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/language"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/language","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"language","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV8languageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/language":{"role":"symbol","title":"language","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/language","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/language"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/level.json new file mode 100644 index 000000000..44184b8ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the level."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV5levelSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizeddefault.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizeddefault.json new file mode 100644 index 000000000..f6c79e10c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizeddefault.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/localizeddefault"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedDefault","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"localizedDefault","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV16localizedDefaultSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/localizedDefault":{"role":"symbol","title":"localizedDefault","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDefault"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedDefault","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/localizeddefault"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizedexternal.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizedexternal.json new file mode 100644 index 000000000..753ff5f2a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizedexternal.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/localizedexternal"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedExternal","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"localizedExternal","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV17localizedExternalSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/localizedExternal":{"role":"symbol","title":"localizedExternal","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedExternal"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedExternal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/localizedexternal"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizedforced.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizedforced.json new file mode 100644 index 000000000..a6b8e39f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizedforced.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/localizedforced"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedForced","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"localizedForced","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV15localizedForcedSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/localizedForced":{"role":"symbol","title":"localizedForced","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedForced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/localizedforced"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizedundefined.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizedundefined.json new file mode 100644 index 000000000..a75cae904 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/localizedundefined.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/localizedundefined"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedUndefined","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"localizedUndefined","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV18localizedUndefinedSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/localizedUndefined":{"role":"symbol","title":"localizedUndefined","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/localizedUndefined","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/localizedundefined"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/nallengthsize.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/nallengthsize.json new file mode 100644 index 000000000..873582ed6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/nallengthsize.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nalLengthSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/nallengthsize"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/nalLengthSize","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nalLengthSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nalLengthSize","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV13nalLengthSizeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/nalLengthSize":{"role":"symbol","title":"nalLengthSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nalLengthSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/nalLengthSize","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/nallengthsize"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/packetlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/packetlength.json new file mode 100644 index 000000000..846d97361 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/packetlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packetLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/packetlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/packetLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the length of the packet."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packetLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"packetLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV12packetLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/packetLength":{"role":"symbol","title":"packetLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packetLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the length of the packet."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/packetLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/packetlength"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/path.json new file mode 100644 index 000000000..5984580f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the filename."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the filename."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/pixelformat.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/pixelformat.json new file mode 100644 index 000000000..0e0c4e41d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/pixelformat.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pixelFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/pixelformat"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/pixelFormat","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the pixel format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pixelFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"pixelFormat","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV11pixelFormatSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/pixelFormat":{"role":"symbol","title":"pixelFormat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pixelFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the pixel format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/pixelFormat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/pixelformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/profile.json new file mode 100644 index 000000000..5892ac6ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the profile."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/profile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/realframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/realframerate.json new file mode 100644 index 000000000..c255c63a4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/realframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"realFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/realframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/realFrameRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the real frame rate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"realFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"realFrameRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV13realFrameRateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/realFrameRate":{"role":"symbol","title":"realFrameRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"realFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the real frame rate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/realFrameRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/realframerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/refframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/refframes.json new file mode 100644 index 000000000..4fdc81d4f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/refframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/refframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/refFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the reference frames."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"refFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV9refFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/refFrames":{"role":"symbol","title":"refFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the reference frames."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/refFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/refframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/rpupresentflag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/rpupresentflag.json new file mode 100644 index 000000000..da4158e29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/rpupresentflag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rpuPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/rpupresentflag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/rpuPresentFlag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision rpu present flag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rpuPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"rpuPresentFlag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV14rpuPresentFlags5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/rpuPresentFlag":{"role":"symbol","title":"rpuPresentFlag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rpuPresentFlag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Dolby Vision rpu present flag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/rpuPresentFlag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/rpupresentflag"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/samplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/samplerate.json new file mode 100644 index 000000000..8acde10c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/samplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/samplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/sampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the sample rate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"sampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV10sampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/sampleRate":{"role":"symbol","title":"sampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the sample rate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/sampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/samplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/score.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/score.json new file mode 100644 index 000000000..cb539163d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/score.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"score"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/score"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/score","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the score."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"score"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"score","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV5scores5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/score":{"role":"symbol","title":"score","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"score"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the score."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/score","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/score"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/timebase.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/timebase.json new file mode 100644 index 000000000..e96853726 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/timebase.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/timebase"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/timeBase","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the time base."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"timeBase","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV8timeBaseSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/timeBase":{"role":"symbol","title":"timeBase","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeBase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the time base."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/timeBase","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/timebase"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/title.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/title.json new file mode 100644 index 000000000..ae3e20fc5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/title.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/title"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/title","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"title","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV5titleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/title":{"role":"symbol","title":"title","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/title","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/title"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/type.json new file mode 100644 index 000000000..4ed256d3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","preciseIdentifier":"s:11JellyfinAPI15MediaStreamTypeO","text":"MediaStreamType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaStreamType","preciseIdentifier":"s:11JellyfinAPI15MediaStreamTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV4typeAA0cD4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaStreamType","preciseIdentifier":"s:11JellyfinAPI15MediaStreamTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/videodovititle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/videodovititle.json new file mode 100644 index 000000000..3796f1491 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/videodovititle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoDoViTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/videodovititle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoDoViTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the video dovi title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoDoViTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoDoViTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV14videoDoViTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/videoDoViTitle":{"role":"symbol","title":"videoDoViTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoDoViTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the video dovi title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoDoViTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/videodovititle"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/videorange.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/videorange.json new file mode 100644 index 000000000..53f24adc3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/videorange.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/videorange"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoRange","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the video range."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoRange","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV10videoRangeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/videoRange":{"role":"symbol","title":"videoRange","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the video range."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoRange","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/videorange"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/videorangetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/videorangetype.json new file mode 100644 index 000000000..d9c218080 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/videorangetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/videorangetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoRangeType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the video range type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoRangeType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV14videoRangeTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/videoRangeType":{"role":"symbol","title":"videoRangeType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the video range type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/videoRangeType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/videorangetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/width.json new file mode 100644 index 000000000..438fa5269 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastream/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastream\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the width."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11MediaStreamV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the width."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastream\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStream":{"role":"symbol","title":"MediaStream","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStream"}],"abstract":[{"type":"text","text":"Class MediaStream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStream"}],"url":"\/documentation\/jellyfinapi\/mediastream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype.json new file mode 100644 index 000000000..7e514ed26 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"title":"MediaStreamType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15MediaStreamTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/audio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/embeddedImage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/subtitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/video"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/audio":{"role":"symbol","title":"MediaStreamType.audio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/audio"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/init(rawvalue:)"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/video":{"role":"symbol","title":"MediaStreamType.video","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/video","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/video"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/subtitle":{"role":"symbol","title":"MediaStreamType.subtitle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/subtitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/subtitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/embeddedImage":{"role":"symbol","title":"MediaStreamType.embeddedImage","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"embeddedImage"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/embeddedImage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/embeddedimage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/!=(_:_:).json new file mode 100644 index 000000000..e5b76c030 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15MediaStreamTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/audio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/audio.json new file mode 100644 index 000000000..eb4dd02e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/audio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/audio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/audio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"title":"MediaStreamType.audio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15MediaStreamTypeO5audioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/audio":{"role":"symbol","title":"MediaStreamType.audio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/audio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/audio"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/embeddedimage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/embeddedimage.json new file mode 100644 index 000000000..1a6693ca5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/embeddedimage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"embeddedImage"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/embeddedimage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/embeddedImage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"embeddedImage"}],"title":"MediaStreamType.embeddedImage","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15MediaStreamTypeO13embeddedImageyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/embeddedImage":{"role":"symbol","title":"MediaStreamType.embeddedImage","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"embeddedImage"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/embeddedImage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/embeddedimage"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/encode(to:).json new file mode 100644 index 000000000..38f17e2f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15MediaStreamTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/equatable-implementations.json new file mode 100644 index 000000000..519f7e4a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/hash(into:).json new file mode 100644 index 000000000..2a516c5b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15MediaStreamTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/hashvalue.json new file mode 100644 index 000000000..8bf1c7547 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15MediaStreamTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/init(from:).json new file mode 100644 index 000000000..2a638fd90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15MediaStreamTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/init(rawvalue:).json new file mode 100644 index 000000000..88e3fad67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15MediaStreamTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/rawrepresentable-implementations.json new file mode 100644 index 000000000..ef4d64525 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/subtitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/subtitle.json new file mode 100644 index 000000000..95e70b684 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/subtitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitle"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/subtitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/subtitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitle"}],"title":"MediaStreamType.subtitle","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15MediaStreamTypeO8subtitleyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/subtitle":{"role":"symbol","title":"MediaStreamType.subtitle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/subtitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/subtitle"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/video.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/video.json new file mode 100644 index 000000000..aab69aa94 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediastreamtype/video.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediastreamtype\/video"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/video","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"title":"MediaStreamType.video","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15MediaStreamTypeO5videoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType":{"role":"symbol","title":"MediaStreamType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaStreamType"}],"abstract":[{"type":"text","text":"Enum MediaStreamType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaStreamType"}],"url":"\/documentation\/jellyfinapi\/mediastreamtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaStreamType/video":{"role":"symbol","title":"MediaStreamType.video","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"video"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaStreamType\/video","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediastreamtype\/video"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto.json new file mode 100644 index 000000000..1394fe626 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaupdateinfodto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Media Update Info Dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoDto"}],"title":"MediaUpdateInfoDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18MediaUpdateInfoDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/init(updates:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/updates"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfodto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto/init(updates:)":{"role":"symbol","title":"init(updates:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"updates"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaUpdateInfoPathDto","preciseIdentifier":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/init(updates:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfodto\/init(updates:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto":{"role":"symbol","title":"MediaUpdateInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoDto"}],"abstract":[{"type":"text","text":"Media Update Info Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto/updates":{"role":"symbol","title":"updates","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"updates"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaUpdateInfoPathDto","preciseIdentifier":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the list of updates."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/updates","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfodto\/updates"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto/init(from:).json new file mode 100644 index 000000000..4f1874a8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaupdateinfodto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18MediaUpdateInfoDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfodto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto":{"role":"symbol","title":"MediaUpdateInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoDto"}],"abstract":[{"type":"text","text":"Media Update Info Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto/init(updates:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto/init(updates:).json new file mode 100644 index 000000000..2ff4f0d6a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto/init(updates:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"updates"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","preciseIdentifier":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV","text":"MediaUpdateInfoPathDto"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaupdateinfodto\/init(updates:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/init(updates:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"updates"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaUpdateInfoPathDto","preciseIdentifier":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV"},{"kind":"text","text":"]?)"}],"title":"init(updates:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18MediaUpdateInfoDtoV7updatesACSayAA0cde4PathF0VGSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto":{"role":"symbol","title":"MediaUpdateInfoPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"abstract":[{"type":"text","text":"The media update info path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto":{"role":"symbol","title":"MediaUpdateInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoDto"}],"abstract":[{"type":"text","text":"Media Update Info Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto/init(updates:)":{"role":"symbol","title":"init(updates:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"updates"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaUpdateInfoPathDto","preciseIdentifier":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/init(updates:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfodto\/init(updates:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto/updates.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto/updates.json new file mode 100644 index 000000000..69eb70c65 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfodto/updates.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"updates"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","preciseIdentifier":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV","text":"MediaUpdateInfoPathDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaupdateinfodto\/updates"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/updates","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the list of updates."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"updates"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaUpdateInfoPathDto","preciseIdentifier":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV"},{"kind":"text","text":"]?"}],"title":"updates","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18MediaUpdateInfoDtoV7updatesSayAA0cde4PathF0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto/updates":{"role":"symbol","title":"updates","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"updates"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaUpdateInfoPathDto","preciseIdentifier":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the list of updates."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto\/updates","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfodto\/updates"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto":{"role":"symbol","title":"MediaUpdateInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoDto"}],"abstract":[{"type":"text","text":"Media Update Info Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto":{"role":"symbol","title":"MediaUpdateInfoPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"abstract":[{"type":"text","text":"The media update info path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto.json new file mode 100644 index 000000000..5a80c104d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaupdateinfopathdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The media update info path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"title":"MediaUpdateInfoPathDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoPathDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/init(path:updateType:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/updateType"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto":{"role":"symbol","title":"MediaUpdateInfoPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"abstract":[{"type":"text","text":"The media update info path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets media path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto/updateType":{"role":"symbol","title":"updateType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets media update type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/updateType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/updatetype"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto/init(path:updateType:)":{"role":"symbol","title":"init(path:updateType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"updateType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/init(path:updateType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/init(path:updatetype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/init(from:).json new file mode 100644 index 000000000..0012ed755 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto":{"role":"symbol","title":"MediaUpdateInfoPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"abstract":[{"type":"text","text":"The media update info path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/init(path:updatetype:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/init(path:updatetype:).json new file mode 100644 index 000000000..6e7964783 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/init(path:updatetype:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"updateType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/init(path:updatetype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/init(path:updateType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"updateType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(path:updateType:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV4path10updateTypeACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto/init(path:updateType:)":{"role":"symbol","title":"init(path:updateType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"updateType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/init(path:updateType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/init(path:updatetype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto":{"role":"symbol","title":"MediaUpdateInfoPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"abstract":[{"type":"text","text":"The media update info path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/path.json new file mode 100644 index 000000000..65e754698 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets media path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto":{"role":"symbol","title":"MediaUpdateInfoPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"abstract":[{"type":"text","text":"The media update info path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets media path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/updatetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/updatetype.json new file mode 100644 index 000000000..a5a9e7457 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaupdateinfopathdto/updatetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Created, Modified, Deleted."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/updatetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/updateType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets media update type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"updateType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22MediaUpdateInfoPathDtoV10updateTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto":{"role":"symbol","title":"MediaUpdateInfoPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"abstract":[{"type":"text","text":"The media update info path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoPathDto/updateType":{"role":"symbol","title":"updateType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets media update type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoPathDto\/updateType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaupdateinfopathdto\/updatetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl.json new file mode 100644 index 000000000..a1e3568d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaurl"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"title":"MediaURL","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI8MediaURLV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MediaURL"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/init(name:url:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/url"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL/init(name:url:)":{"role":"symbol","title":"init(name:url:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/init(name:url:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaurl\/init(name:url:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaurl\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaurl\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL":{"role":"symbol","title":"MediaURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaURL"}],"url":"\/documentation\/jellyfinapi\/mediaurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaurl\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/init(from:).json new file mode 100644 index 000000000..de681f074 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaurl\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8MediaURLV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaurl\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL":{"role":"symbol","title":"MediaURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaURL"}],"url":"\/documentation\/jellyfinapi\/mediaurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/init(name:url:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/init(name:url:).json new file mode 100644 index 000000000..d04ccf99d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/init(name:url:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaurl\/init(name:url:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/init(name:url:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(name:url:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8MediaURLV4name3urlACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL":{"role":"symbol","title":"MediaURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaURL"}],"url":"\/documentation\/jellyfinapi\/mediaurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL/init(name:url:)":{"role":"symbol","title":"init(name:url:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/init(name:url:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaurl\/init(name:url:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/name.json new file mode 100644 index 000000000..7c85a17d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaurl\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8MediaURLV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaurl\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL":{"role":"symbol","title":"MediaURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaURL"}],"url":"\/documentation\/jellyfinapi\/mediaurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/url.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/url.json new file mode 100644 index 000000000..d86d291f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/mediaurl/url.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/mediaurl\/url"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/url","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"url","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8MediaURLV3urlSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL":{"role":"symbol","title":"MediaURL","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaURL"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaURL"}],"url":"\/documentation\/jellyfinapi\/mediaurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaURL/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaURL\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/mediaurl\/url"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand.json new file mode 100644 index 000000000..74792eaf4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MessageCommand"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/messagecommand"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MessageCommand"}],"title":"MessageCommand","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14MessageCommandV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MessageCommand"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/init(header:text:timeoutMs:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/header","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/text","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/timeoutMs"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand/text":{"role":"symbol","title":"text","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/text","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/messagecommand\/text"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand":{"role":"symbol","title":"MessageCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MessageCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MessageCommand"}],"url":"\/documentation\/jellyfinapi\/messagecommand"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand/init(header:text:timeoutMs:)":{"role":"symbol","title":"init(header:text:timeoutMs:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"header"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"timeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/init(header:text:timeoutMs:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/messagecommand\/init(header:text:timeoutms:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand/header":{"role":"symbol","title":"header","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"header"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/header","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/messagecommand\/header"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/messagecommand\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand/timeoutMs":{"role":"symbol","title":"timeoutMs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/timeoutMs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/messagecommand\/timeoutms"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/header.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/header.json new file mode 100644 index 000000000..b08c09334 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/header.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"header"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/messagecommand\/header"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/header","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"header"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"header","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MessageCommandV6headerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand":{"role":"symbol","title":"MessageCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MessageCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MessageCommand"}],"url":"\/documentation\/jellyfinapi\/messagecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand/header":{"role":"symbol","title":"header","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"header"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/header","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/messagecommand\/header"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/init(from:).json new file mode 100644 index 000000000..676352e14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/messagecommand\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14MessageCommandV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand":{"role":"symbol","title":"MessageCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MessageCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MessageCommand"}],"url":"\/documentation\/jellyfinapi\/messagecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/messagecommand\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/init(header:text:timeoutms:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/init(header:text:timeoutms:).json new file mode 100644 index 000000000..10a356fc3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/init(header:text:timeoutms:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"header"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"timeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/messagecommand\/init(header:text:timeoutms:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/init(header:text:timeoutMs:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"header"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"timeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"title":"init(header:text:timeoutMs:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14MessageCommandV6header4text9timeoutMsACSSSg_SSs5Int64VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand":{"role":"symbol","title":"MessageCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MessageCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MessageCommand"}],"url":"\/documentation\/jellyfinapi\/messagecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand/init(header:text:timeoutMs:)":{"role":"symbol","title":"init(header:text:timeoutMs:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"header"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"timeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/init(header:text:timeoutMs:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/messagecommand\/init(header:text:timeoutms:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/text.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/text.json new file mode 100644 index 000000000..ca17e06b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/text.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/messagecommand\/text"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/text","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"text","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MessageCommandV4textSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand/text":{"role":"symbol","title":"text","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/text","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/messagecommand\/text"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand":{"role":"symbol","title":"MessageCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MessageCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MessageCommand"}],"url":"\/documentation\/jellyfinapi\/messagecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/timeoutms.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/timeoutms.json new file mode 100644 index 000000000..8199cb54a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/messagecommand/timeoutms.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/messagecommand\/timeoutms"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/timeoutMs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"timeoutMs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MessageCommandV9timeoutMss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand/timeoutMs":{"role":"symbol","title":"timeoutMs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand\/timeoutMs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/messagecommand\/timeoutms"},"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand":{"role":"symbol","title":"MessageCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MessageCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MessageCommand"}],"url":"\/documentation\/jellyfinapi\/messagecommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration.json new file mode 100644 index 000000000..89e0210ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataConfiguration"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataconfiguration"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataConfiguration"}],"title":"MetadataConfiguration","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI21MetadataConfigurationV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MetadataConfiguration"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/init(useFileCreationTimeForDateAdded:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/useFileCreationTimeForDateAdded"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration":{"role":"symbol","title":"MetadataConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataConfiguration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataConfiguration"}],"url":"\/documentation\/jellyfinapi\/metadataconfiguration"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration/init(useFileCreationTimeForDateAdded:)":{"role":"symbol","title":"init(useFileCreationTimeForDateAdded:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"useFileCreationTimeForDateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/init(useFileCreationTimeForDateAdded:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataconfiguration\/init(usefilecreationtimefordateadded:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration/useFileCreationTimeForDateAdded":{"role":"symbol","title":"useFileCreationTimeForDateAdded","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"useFileCreationTimeForDateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/useFileCreationTimeForDateAdded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataconfiguration\/usefilecreationtimefordateadded"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataconfiguration\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration/init(from:).json new file mode 100644 index 000000000..07cde5f0c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataconfiguration\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21MetadataConfigurationV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataconfiguration\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration":{"role":"symbol","title":"MetadataConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataConfiguration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataConfiguration"}],"url":"\/documentation\/jellyfinapi\/metadataconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration/init(usefilecreationtimefordateadded:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration/init(usefilecreationtimefordateadded:).json new file mode 100644 index 000000000..d74e05ffc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration/init(usefilecreationtimefordateadded:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"useFileCreationTimeForDateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataconfiguration\/init(usefilecreationtimefordateadded:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/init(useFileCreationTimeForDateAdded:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"useFileCreationTimeForDateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(useFileCreationTimeForDateAdded:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21MetadataConfigurationV31useFileCreationTimeForDateAddedACSbSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration":{"role":"symbol","title":"MetadataConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataConfiguration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataConfiguration"}],"url":"\/documentation\/jellyfinapi\/metadataconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration/init(useFileCreationTimeForDateAdded:)":{"role":"symbol","title":"init(useFileCreationTimeForDateAdded:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"useFileCreationTimeForDateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/init(useFileCreationTimeForDateAdded:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataconfiguration\/init(usefilecreationtimefordateadded:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration/usefilecreationtimefordateadded.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration/usefilecreationtimefordateadded.json new file mode 100644 index 000000000..c5f0e39b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataconfiguration/usefilecreationtimefordateadded.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"useFileCreationTimeForDateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataconfiguration\/usefilecreationtimefordateadded"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/useFileCreationTimeForDateAdded","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"useFileCreationTimeForDateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"useFileCreationTimeForDateAdded","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21MetadataConfigurationV31useFileCreationTimeForDateAddedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration/useFileCreationTimeForDateAdded":{"role":"symbol","title":"useFileCreationTimeForDateAdded","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"useFileCreationTimeForDateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration\/useFileCreationTimeForDateAdded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataconfiguration\/usefilecreationtimefordateadded"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataConfiguration":{"role":"symbol","title":"MetadataConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataConfiguration"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataConfiguration"}],"url":"\/documentation\/jellyfinapi\/metadataconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo.json new file mode 100644 index 000000000..eb279c869 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataeditorinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"title":"MetadataEditorInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18MetadataEditorInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/init(contentType:contentTypeOptions:countries:cultures:externalIDInfos:parentalRatingOptions:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/contentType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/contentTypeOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/countries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/cultures","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/externalIDInfos","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/parentalRatingOptions"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/init(contentType:contentTypeOptions:countries:cultures:externalIDInfos:parentalRatingOptions:)":{"role":"symbol","title":"init(contentType:contentTypeOptions:countries:cultures:externalIDInfos:parentalRatingOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"contentTypeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"countries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"cultures"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"externalIDInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentalRatingOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/init(contentType:contentTypeOptions:countries:cultures:externalIDInfos:parentalRatingOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/init(contenttype:contenttypeoptions:countries:cultures:externalidinfos:parentalratingoptions:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/externalIDInfos":{"role":"symbol","title":"externalIDInfos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalIDInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/externalIDInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/externalidinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/parentalRatingOptions":{"role":"symbol","title":"parentalRatingOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentalRatingOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/parentalRatingOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/parentalratingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/contentType":{"role":"symbol","title":"contentType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/contentType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/contenttype"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/contentTypeOptions":{"role":"symbol","title":"contentTypeOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/contentTypeOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/contenttypeoptions"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/cultures":{"role":"symbol","title":"cultures","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cultures"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/cultures","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/cultures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/countries":{"role":"symbol","title":"countries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"countries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/countries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/countries"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/contenttype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/contenttype.json new file mode 100644 index 000000000..8bb18d173 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/contenttype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataeditorinfo\/contenttype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/contentType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"contentType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18MetadataEditorInfoV11contentTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/contentType":{"role":"symbol","title":"contentType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/contentType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/contenttype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/contenttypeoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/contenttypeoptions.json new file mode 100644 index 000000000..63c0d27b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/contenttypeoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV","text":"NameValuePair"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataeditorinfo\/contenttypeoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/contentTypeOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"title":"contentTypeOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18MetadataEditorInfoV18contentTypeOptionsSayAA13NameValuePairVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/contentTypeOptions":{"role":"symbol","title":"contentTypeOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/contentTypeOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/contenttypeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/countries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/countries.json new file mode 100644 index 000000000..17ca26531 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/countries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"countries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV","text":"CountryInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataeditorinfo\/countries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/countries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"countries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV"},{"kind":"text","text":"]?"}],"title":"countries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18MetadataEditorInfoV9countriesSayAA07CountryE0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/countries":{"role":"symbol","title":"countries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"countries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/countries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/countries"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/cultures.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/cultures.json new file mode 100644 index 000000000..ff5382502 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/cultures.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cultures"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV","text":"CultureDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataeditorinfo\/cultures"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/cultures","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cultures"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV"},{"kind":"text","text":"]?"}],"title":"cultures","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18MetadataEditorInfoV8culturesSayAA10CultureDtoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/cultures":{"role":"symbol","title":"cultures","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cultures"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/cultures","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/cultures"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/externalidinfos.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/externalidinfos.json new file mode 100644 index 000000000..f006bcc8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/externalidinfos.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalIDInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV","text":"ExternalIDInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataeditorinfo\/externalidinfos"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/externalIDInfos","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalIDInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV"},{"kind":"text","text":"]?"}],"title":"externalIDInfos","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18MetadataEditorInfoV15externalIDInfosSayAA14ExternalIDInfoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/externalIDInfos":{"role":"symbol","title":"externalIDInfos","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalIDInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/externalIDInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/externalidinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/init(contenttype:contenttypeoptions:countries:cultures:externalidinfos:parentalratingoptions:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/init(contenttype:contenttypeoptions:countries:cultures:externalidinfos:parentalratingoptions:).json new file mode 100644 index 000000000..79a96c23a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/init(contenttype:contenttypeoptions:countries:cultures:externalidinfos:parentalratingoptions:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"contentTypeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV","text":"NameValuePair"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"countries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV","text":"CountryInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"cultures"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV","text":"CultureDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"externalIDInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV","text":"ExternalIDInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentalRatingOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV","text":"ParentalRating"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataeditorinfo\/init(contenttype:contenttypeoptions:countries:cultures:externalidinfos:parentalratingoptions:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/init(contentType:contentTypeOptions:countries:cultures:externalIDInfos:parentalRatingOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"contentTypeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"countries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"cultures"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"externalIDInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentalRatingOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV"},{"kind":"text","text":"]?)"}],"title":"init(contentType:contentTypeOptions:countries:cultures:externalIDInfos:parentalRatingOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18MetadataEditorInfoV11contentType0fG7Options9countries8cultures15externalIDInfos014parentalRatingH0ACSSSg_SayAA13NameValuePairVGSgSayAA07CountryE0VGSgSayAA10CultureDtoVGSgSayAA14ExternalIDInfoVGSgSayAA08ParentalN0VGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating":{"role":"symbol","title":"ParentalRating","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"abstract":[{"type":"text","text":"Class ParentalRating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ParentalRating"}],"url":"\/documentation\/jellyfinapi\/parentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/init(contentType:contentTypeOptions:countries:cultures:externalIDInfos:parentalRatingOptions:)":{"role":"symbol","title":"init(contentType:contentTypeOptions:countries:cultures:externalIDInfos:parentalRatingOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"contentTypeOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"countries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"cultures"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"externalIDInfos"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentalRatingOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/init(contentType:contentTypeOptions:countries:cultures:externalIDInfos:parentalRatingOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/init(contenttype:contenttypeoptions:countries:cultures:externalidinfos:parentalratingoptions:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/init(from:).json new file mode 100644 index 000000000..75a471093 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataeditorinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18MetadataEditorInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/parentalratingoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/parentalratingoptions.json new file mode 100644 index 000000000..27bc30466 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataeditorinfo/parentalratingoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentalRatingOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV","text":"ParentalRating"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataeditorinfo\/parentalratingoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/parentalRatingOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentalRatingOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV"},{"kind":"text","text":"]?"}],"title":"parentalRatingOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18MetadataEditorInfoV21parentalRatingOptionsSayAA08ParentalG0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating":{"role":"symbol","title":"ParentalRating","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"abstract":[{"type":"text","text":"Class ParentalRating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ParentalRating"}],"url":"\/documentation\/jellyfinapi\/parentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo/parentalRatingOptions":{"role":"symbol","title":"parentalRatingOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentalRatingOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo\/parentalRatingOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataeditorinfo\/parentalratingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield.json new file mode 100644 index 000000000..4391cb5af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum MetadataFields."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"title":"MetadataField","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI13MetadataFieldO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MetadataField"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/cast","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/officialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/overview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/productionLocations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/runtime","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/studios","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/tags"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/studios":{"role":"symbol","title":"MetadataField.studios","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/overview":{"role":"symbol","title":"MetadataField.overview","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/equatable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/runtime":{"role":"symbol","title":"MetadataField.runtime","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtime"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/runtime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/runtime"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/officialRating":{"role":"symbol","title":"MetadataField.officialRating","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRating"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/officialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/officialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/tags":{"role":"symbol","title":"MetadataField.tags","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/tags"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/genres":{"role":"symbol","title":"MetadataField.genres","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/rawrepresentable-implementations"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/productionLocations":{"role":"symbol","title":"MetadataField.productionLocations","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/productionLocations","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/productionlocations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/name":{"role":"symbol","title":"MetadataField.name","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/cast":{"role":"symbol","title":"MetadataField.cast","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cast"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/cast","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/cast"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/!=(_:_:).json new file mode 100644 index 000000000..cc8ed7c6d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI13MetadataFieldO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/cast.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/cast.json new file mode 100644 index 000000000..f869d78da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/cast.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cast"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/cast"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/cast","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cast"}],"title":"MetadataField.cast","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MetadataFieldO4castyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/cast":{"role":"symbol","title":"MetadataField.cast","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cast"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/cast","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/cast"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/encode(to:).json new file mode 100644 index 000000000..493d96bb0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI13MetadataFieldO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/equatable-implementations.json new file mode 100644 index 000000000..f01813269 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/genres.json new file mode 100644 index 000000000..f28c0fbe8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"}],"title":"MetadataField.genres","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MetadataFieldO6genresyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/genres":{"role":"symbol","title":"MetadataField.genres","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/hash(into:).json new file mode 100644 index 000000000..cb669e202 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI13MetadataFieldO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/hashvalue.json new file mode 100644 index 000000000..e761d1679 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI13MetadataFieldO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/init(from:).json new file mode 100644 index 000000000..90efedada --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI13MetadataFieldO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/init(rawvalue:).json new file mode 100644 index 000000000..e0f8f5f88 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13MetadataFieldO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/name.json new file mode 100644 index 000000000..58a5c50b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"}],"title":"MetadataField.name","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MetadataFieldO4nameyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/name":{"role":"symbol","title":"MetadataField.name","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/officialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/officialrating.json new file mode 100644 index 000000000..53b06b1cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/officialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRating"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/officialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/officialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRating"}],"title":"MetadataField.officialRating","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MetadataFieldO14officialRatingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/officialRating":{"role":"symbol","title":"MetadataField.officialRating","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRating"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/officialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/officialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/overview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/overview.json new file mode 100644 index 000000000..5f4ba6aea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/overview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/overview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/overview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"}],"title":"MetadataField.overview","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MetadataFieldO8overviewyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/overview":{"role":"symbol","title":"MetadataField.overview","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/overview"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/productionlocations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/productionlocations.json new file mode 100644 index 000000000..35fa577e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/productionlocations.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/productionlocations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/productionLocations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"}],"title":"MetadataField.productionLocations","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MetadataFieldO19productionLocationsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/productionLocations":{"role":"symbol","title":"MetadataField.productionLocations","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionLocations"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/productionLocations","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/productionlocations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/rawrepresentable-implementations.json new file mode 100644 index 000000000..16b040f76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/runtime.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/runtime.json new file mode 100644 index 000000000..5baab3504 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/runtime.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtime"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/runtime"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/runtime","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtime"}],"title":"MetadataField.runtime","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MetadataFieldO7runtimeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/runtime":{"role":"symbol","title":"MetadataField.runtime","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtime"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/runtime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/runtime"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/studios.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/studios.json new file mode 100644 index 000000000..c041a9111 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/studios.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/studios"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/studios","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"}],"title":"MetadataField.studios","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MetadataFieldO7studiosyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/studios":{"role":"symbol","title":"MetadataField.studios","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/tags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/tags.json new file mode 100644 index 000000000..ab1707dad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatafield/tags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatafield\/tags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/tags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"}],"title":"MetadataField.tags","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13MetadataFieldO4tagsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField/tags":{"role":"symbol","title":"MetadataField.tags","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatafield\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataField":{"role":"symbol","title":"MetadataField","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataField"}],"abstract":[{"type":"text","text":"Enum MetadataFields."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataField","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataField"}],"url":"\/documentation\/jellyfinapi\/metadatafield"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions.json new file mode 100644 index 000000000..9113d5ebe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class MetadataOptions."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"title":"MetadataOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15MetadataOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/init(disabledImageFetchers:disabledMetadataFetchers:disabledMetadataSavers:imageFetcherOrder:itemType:localMetadataReaderOrder:metadataFetcherOrder:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledImageFetchers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledMetadataFetchers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledMetadataSavers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/imageFetcherOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/itemType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/localMetadataReaderOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/metadataFetcherOrder"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/localMetadataReaderOrder":{"role":"symbol","title":"localMetadataReaderOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/localMetadataReaderOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/localmetadatareaderorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/init(disabledImageFetchers:disabledMetadataFetchers:disabledMetadataSavers:imageFetcherOrder:itemType:localMetadataReaderOrder:metadataFetcherOrder:)":{"role":"symbol","title":"init(disabledImageFetchers:disabledMetadataFetchers:disabledMetadataSavers:imageFetcherOrder:itemType:localMetadataReaderOrder:metadataFetcherOrder:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"disabledImageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledMetadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledMetadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/init(disabledImageFetchers:disabledMetadataFetchers:disabledMetadataSavers:imageFetcherOrder:itemType:localMetadataReaderOrder:metadataFetcherOrder:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/init(disabledimagefetchers:disabledmetadatafetchers:disabledmetadatasavers:imagefetcherorder:itemtype:localmetadatareaderorder:metadatafetcherorder:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/disabledMetadataSavers":{"role":"symbol","title":"disabledMetadataSavers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMetadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledMetadataSavers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/disabledmetadatasavers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/imageFetcherOrder":{"role":"symbol","title":"imageFetcherOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/imageFetcherOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/imagefetcherorder"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/metadataFetcherOrder":{"role":"symbol","title":"metadataFetcherOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/metadataFetcherOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/metadatafetcherorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/itemType":{"role":"symbol","title":"itemType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/itemType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/itemtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/disabledImageFetchers":{"role":"symbol","title":"disabledImageFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledImageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledImageFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/disabledimagefetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/disabledMetadataFetchers":{"role":"symbol","title":"disabledMetadataFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMetadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledMetadataFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/disabledmetadatafetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/disabledimagefetchers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/disabledimagefetchers.json new file mode 100644 index 000000000..f029c0272 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/disabledimagefetchers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledImageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataoptions\/disabledimagefetchers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledImageFetchers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledImageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"disabledImageFetchers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MetadataOptionsV21disabledImageFetchersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/disabledImageFetchers":{"role":"symbol","title":"disabledImageFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledImageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledImageFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/disabledimagefetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/disabledmetadatafetchers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/disabledmetadatafetchers.json new file mode 100644 index 000000000..13b04c8bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/disabledmetadatafetchers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMetadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataoptions\/disabledmetadatafetchers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledMetadataFetchers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMetadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"disabledMetadataFetchers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MetadataOptionsV08disabledC8FetchersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/disabledMetadataFetchers":{"role":"symbol","title":"disabledMetadataFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMetadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledMetadataFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/disabledmetadatafetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/disabledmetadatasavers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/disabledmetadatasavers.json new file mode 100644 index 000000000..ea4ff47fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/disabledmetadatasavers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMetadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataoptions\/disabledmetadatasavers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledMetadataSavers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMetadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"disabledMetadataSavers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MetadataOptionsV08disabledC6SaversSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/disabledMetadataSavers":{"role":"symbol","title":"disabledMetadataSavers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMetadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/disabledMetadataSavers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/disabledmetadatasavers"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/imagefetcherorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/imagefetcherorder.json new file mode 100644 index 000000000..70a8300c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/imagefetcherorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataoptions\/imagefetcherorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/imageFetcherOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"imageFetcherOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MetadataOptionsV17imageFetcherOrderSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/imageFetcherOrder":{"role":"symbol","title":"imageFetcherOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/imageFetcherOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/imagefetcherorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/init(disabledimagefetchers:disabledmetadatafetchers:disabledmetadatasavers:imagefetcherorder:itemtype:localmetadatareaderorder:metadatafetcherorder:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/init(disabledimagefetchers:disabledmetadatafetchers:disabledmetadatasavers:imagefetcherorder:itemtype:localmetadatareaderorder:metadatafetcherorder:).json new file mode 100644 index 000000000..bd414bdc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/init(disabledimagefetchers:disabledmetadatafetchers:disabledmetadatasavers:imagefetcherorder:itemtype:localmetadatareaderorder:metadatafetcherorder:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"disabledImageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"disabledMetadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"disabledMetadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataoptions\/init(disabledimagefetchers:disabledmetadatafetchers:disabledmetadatasavers:imagefetcherorder:itemtype:localmetadatareaderorder:metadatafetcherorder:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/init(disabledImageFetchers:disabledMetadataFetchers:disabledMetadataSavers:imageFetcherOrder:itemType:localMetadataReaderOrder:metadataFetcherOrder:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"disabledImageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledMetadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledMetadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"title":"init(disabledImageFetchers:disabledMetadataFetchers:disabledMetadataSavers:imageFetcherOrder:itemType:localMetadataReaderOrder:metadataFetcherOrder:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15MetadataOptionsV21disabledImageFetchers0ecG00eC6Savers17imageFetcherOrder8itemType05localc6ReaderK008metadatajK0ACSaySSGSg_A3LSSSgA2Ltcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/init(disabledImageFetchers:disabledMetadataFetchers:disabledMetadataSavers:imageFetcherOrder:itemType:localMetadataReaderOrder:metadataFetcherOrder:)":{"role":"symbol","title":"init(disabledImageFetchers:disabledMetadataFetchers:disabledMetadataSavers:imageFetcherOrder:itemType:localMetadataReaderOrder:metadataFetcherOrder:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"disabledImageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledMetadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledMetadataSavers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/init(disabledImageFetchers:disabledMetadataFetchers:disabledMetadataSavers:imageFetcherOrder:itemType:localMetadataReaderOrder:metadataFetcherOrder:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/init(disabledimagefetchers:disabledmetadatafetchers:disabledmetadatasavers:imagefetcherorder:itemtype:localmetadatareaderorder:metadatafetcherorder:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/init(from:).json new file mode 100644 index 000000000..a4ade7b58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15MetadataOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/itemtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/itemtype.json new file mode 100644 index 000000000..efd0bede7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/itemtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataoptions\/itemtype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/itemType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"itemType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MetadataOptionsV8itemTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/itemType":{"role":"symbol","title":"itemType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/itemType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/itemtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/localmetadatareaderorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/localmetadatareaderorder.json new file mode 100644 index 000000000..901abd5d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/localmetadatareaderorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataoptions\/localmetadatareaderorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/localMetadataReaderOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"localMetadataReaderOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MetadataOptionsV05localC11ReaderOrderSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/localMetadataReaderOrder":{"role":"symbol","title":"localMetadataReaderOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localMetadataReaderOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/localMetadataReaderOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/localmetadatareaderorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/metadatafetcherorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/metadatafetcherorder.json new file mode 100644 index 000000000..f7fbc1e8f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadataoptions/metadatafetcherorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadataoptions\/metadatafetcherorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/metadataFetcherOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"metadataFetcherOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15MetadataOptionsV20metadataFetcherOrderSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions/metadataFetcherOrder":{"role":"symbol","title":"metadataFetcherOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions\/metadataFetcherOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadataoptions\/metadatafetcherorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode.json new file mode 100644 index 000000000..3a9a73057 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"title":"MetadataRefreshMode","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI19MetadataRefreshModeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/default","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/fullRefresh","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/none","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/validationOnly"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/fullRefresh":{"role":"symbol","title":"MetadataRefreshMode.fullRefresh","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullRefresh"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/fullRefresh","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/fullrefresh"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/none":{"role":"symbol","title":"MetadataRefreshMode.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/none"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/validationOnly":{"role":"symbol","title":"MetadataRefreshMode.validationOnly","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"validationOnly"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/validationOnly","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/validationonly"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/default":{"role":"symbol","title":"MetadataRefreshMode.default","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/default","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/default"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/!=(_:_:).json new file mode 100644 index 000000000..1e68b393c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI19MetadataRefreshModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/default.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/default.json new file mode 100644 index 000000000..298b7a4ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/default.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/default"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/default","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"title":"MetadataRefreshMode.default","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19MetadataRefreshModeO7defaultyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/default":{"role":"symbol","title":"MetadataRefreshMode.default","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/default","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/default"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/encode(to:).json new file mode 100644 index 000000000..77fe90568 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI19MetadataRefreshModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/equatable-implementations.json new file mode 100644 index 000000000..1cbd90be3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/fullrefresh.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/fullrefresh.json new file mode 100644 index 000000000..19004a54a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/fullrefresh.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullRefresh"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/fullrefresh"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/fullRefresh","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullRefresh"}],"title":"MetadataRefreshMode.fullRefresh","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19MetadataRefreshModeO04fullD0yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/fullRefresh":{"role":"symbol","title":"MetadataRefreshMode.fullRefresh","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullRefresh"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/fullRefresh","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/fullrefresh"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/hash(into:).json new file mode 100644 index 000000000..7e977153f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI19MetadataRefreshModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/hashvalue.json new file mode 100644 index 000000000..63c7cbadb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI19MetadataRefreshModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/init(from:).json new file mode 100644 index 000000000..d412da322 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI19MetadataRefreshModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/init(rawvalue:).json new file mode 100644 index 000000000..9264b998b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19MetadataRefreshModeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/none.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/none.json new file mode 100644 index 000000000..3e6f97382 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/none.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/none"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/none","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"title":"MetadataRefreshMode.none","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19MetadataRefreshModeO4noneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/none":{"role":"symbol","title":"MetadataRefreshMode.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/none"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/rawrepresentable-implementations.json new file mode 100644 index 000000000..08301ead2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/validationonly.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/validationonly.json new file mode 100644 index 000000000..db77e9870 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/metadatarefreshmode/validationonly.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"validationOnly"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/metadatarefreshmode\/validationonly"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/validationOnly","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"validationOnly"}],"title":"MetadataRefreshMode.validationOnly","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI19MetadataRefreshModeO14validationOnlyyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode/validationOnly":{"role":"symbol","title":"MetadataRefreshMode.validationOnly","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"validationOnly"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode\/validationOnly","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/metadatarefreshmode\/validationonly"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto.json new file mode 100644 index 000000000..5a64b5551 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/moveplaylistitemrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class MovePlaylistItemRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"title":"MovePlaylistItemRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI26MovePlaylistItemRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MovePlaylistItemRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/init(newIndex:playlistItemID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/newIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/playlistItemID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist identifier of the item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto/init(newIndex:playlistItemID:)":{"role":"symbol","title":"init(newIndex:playlistItemID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/init(newIndex:playlistItemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/init(newindex:playlistitemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto/newIndex":{"role":"symbol","title":"newIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the new position."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/newIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/newindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto":{"role":"symbol","title":"MovePlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class MovePlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/init(from:).json new file mode 100644 index 000000000..7e18df45a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI26MovePlaylistItemRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto":{"role":"symbol","title":"MovePlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class MovePlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/init(newindex:playlistitemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/init(newindex:playlistitemid:).json new file mode 100644 index 000000000..a8f16749d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/init(newindex:playlistitemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/init(newindex:playlistitemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/init(newIndex:playlistItemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(newIndex:playlistItemID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI26MovePlaylistItemRequestDtoV8newIndex08playlistE2IDACs5Int32VSg_10Foundation4UUIDVSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto":{"role":"symbol","title":"MovePlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class MovePlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto/init(newIndex:playlistItemID:)":{"role":"symbol","title":"init(newIndex:playlistItemID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/init(newIndex:playlistItemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/init(newindex:playlistitemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/newindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/newindex.json new file mode 100644 index 000000000..43a698bc0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/newindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/newindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/newIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the new position."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"newIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI26MovePlaylistItemRequestDtoV8newIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto":{"role":"symbol","title":"MovePlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class MovePlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto/newIndex":{"role":"symbol","title":"newIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the new position."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/newIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/newindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/playlistitemid.json new file mode 100644 index 000000000..fbf330773 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/moveplaylistitemrequestdto/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playlist identifier of the item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI26MovePlaylistItemRequestDtoV08playlistE2ID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto":{"role":"symbol","title":"MovePlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class MovePlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist identifier of the item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto\/playlistitemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo.json new file mode 100644 index 000000000..f639faf3f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"title":"MovieInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI9MovieInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/isAutomated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/metadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/year"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/indexnumber.json new file mode 100644 index 000000000..8088216c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/init(from:).json new file mode 100644 index 000000000..6586b1234 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9MovieInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json new file mode 100644 index 000000000..04409b221 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9MovieInfoV11indexNumber11isAutomated19metadataCountryCode0I8Language4name13originalTitle011parentIndexF04path12premiereDate11providerIDs4yearACs5Int32VSg_SbSgSSSgA3sqS10Foundation0T0VSgSDyS2SGSgAQtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/isautomated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/isautomated.json new file mode 100644 index 000000000..6846c6263 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/isautomated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/isautomated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/isAutomated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV11isAutomatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/metadatacountrycode.json new file mode 100644 index 000000000..b305e1540 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/metadatacountrycode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/metadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/metadatalanguage.json new file mode 100644 index 000000000..e1a3fdb89 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/metadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/metadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/metadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV16metadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/metadatalanguage"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/name.json new file mode 100644 index 000000000..d8d3a6b64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/originaltitle.json new file mode 100644 index 000000000..38dd73494 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the original title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/parentindexnumber.json new file mode 100644 index 000000000..48eb8a7a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/parentindexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/path.json new file mode 100644 index 000000000..b02a39f97 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/premieredate.json new file mode 100644 index 000000000..c1214dc5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV12premiereDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/providerids.json new file mode 100644 index 000000000..ea3cef797 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/providerids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/year.json new file mode 100644 index 000000000..3a8a9dec6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinfo/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinfo\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"year","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9MovieInfoV4years5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery.json new file mode 100644 index 000000000..d5f3e0f11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinforemotesearchquery"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"title":"MovieInfoRemoteSearchQuery","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/isIncludeDisabledProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/searchInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/searchProviderName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MovieInfo","preciseIdentifier":"s:11JellyfinAPI9MovieInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MovieInfo","preciseIdentifier":"s:11JellyfinAPI9MovieInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery":{"role":"symbol","title":"MovieInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/init(from:).json new file mode 100644 index 000000000..19c2f3b82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinforemotesearchquery\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery":{"role":"symbol","title":"MovieInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json new file mode 100644 index 000000000..1d23c54ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","preciseIdentifier":"s:11JellyfinAPI9MovieInfoV","text":"MovieInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MovieInfo","preciseIdentifier":"s:11JellyfinAPI9MovieInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV26isIncludeDisabledProviders6itemID06searchD00N12ProviderNameACSbSg_10Foundation4UUIDVSgAA0cD0VSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MovieInfo","preciseIdentifier":"s:11JellyfinAPI9MovieInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery":{"role":"symbol","title":"MovieInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/isincludedisabledproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/isincludedisabledproviders.json new file mode 100644 index 000000000..b459ba1a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/isincludedisabledproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinforemotesearchquery\/isincludedisabledproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/isIncludeDisabledProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeDisabledProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV26isIncludeDisabledProvidersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery":{"role":"symbol","title":"MovieInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/itemid.json new file mode 100644 index 000000000..fe4f4af5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinforemotesearchquery\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery":{"role":"symbol","title":"MovieInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/itemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/searchinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/searchinfo.json new file mode 100644 index 000000000..59ecc0aaa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/searchinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","preciseIdentifier":"s:11JellyfinAPI9MovieInfoV","text":"MovieInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinforemotesearchquery\/searchinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/searchInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MovieInfo","preciseIdentifier":"s:11JellyfinAPI9MovieInfoV"},{"kind":"text","text":"?"}],"title":"searchInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV06searchD0AA0cD0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery":{"role":"symbol","title":"MovieInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfo":{"role":"symbol","title":"MovieInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfo"}],"url":"\/documentation\/jellyfinapi\/movieinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MovieInfo","preciseIdentifier":"s:11JellyfinAPI9MovieInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/searchinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/searchprovidername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/searchprovidername.json new file mode 100644 index 000000000..121f5a606 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/movieinforemotesearchquery/searchprovidername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/movieinforemotesearchquery\/searchprovidername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/searchProviderName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchProviderName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV18searchProviderNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery":{"role":"symbol","title":"MovieInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery\/searchprovidername"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo.json new file mode 100644 index 000000000..fa285407f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"title":"MusicVideoInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14MusicVideoInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/init(artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/artists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/isAutomated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/metadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/year"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/year"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/init(artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/init(artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/init(artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/artists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/artists.json new file mode 100644 index 000000000..5739bf306 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/artists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/artists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/artists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"artists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV7artistsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/artists"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/indexnumber.json new file mode 100644 index 000000000..b4987e468 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/init(artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/init(artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json new file mode 100644 index 000000000..cee4902e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/init(artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/init(artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/init(artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14MusicVideoInfoV7artists11indexNumber11isAutomated19metadataCountryCode0K8Language4name13originalTitle011parentIndexH04path12premiereDate11providerIDs4yearACSaySSGSg_s5Int32VSgSbSgSSSgA3vtV10Foundation0V0VSgSDyS2SGSgATtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/init(artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/init(artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/init(artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/init(from:).json new file mode 100644 index 000000000..965f0d514 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14MusicVideoInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/isautomated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/isautomated.json new file mode 100644 index 000000000..6d9821074 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/isautomated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/isautomated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/isAutomated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV11isAutomatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/metadatacountrycode.json new file mode 100644 index 000000000..81b47dd3d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/metadatacountrycode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/metadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/metadatalanguage.json new file mode 100644 index 000000000..884f33759 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/metadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/metadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/metadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV16metadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/name.json new file mode 100644 index 000000000..8b85e3d74 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/originaltitle.json new file mode 100644 index 000000000..c65987d3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the original title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/parentindexnumber.json new file mode 100644 index 000000000..abc987276 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/parentindexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/path.json new file mode 100644 index 000000000..83a600406 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/premieredate.json new file mode 100644 index 000000000..9d5ea8195 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV12premiereDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/providerids.json new file mode 100644 index 000000000..da7b0ace7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/providerids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/year.json new file mode 100644 index 000000000..13093e8ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinfo/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinfo\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"year","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14MusicVideoInfoV4years5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinfo\/year"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery.json new file mode 100644 index 000000000..eee6b38d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"title":"MusicVideoInfoRemoteSearchQuery","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/isIncludeDisabledProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/searchInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/searchProviderName"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MusicVideoInfo","preciseIdentifier":"s:11JellyfinAPI14MusicVideoInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MusicVideoInfo","preciseIdentifier":"s:11JellyfinAPI14MusicVideoInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery":{"role":"symbol","title":"MusicVideoInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/init(from:).json new file mode 100644 index 000000000..30472fcbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery":{"role":"symbol","title":"MusicVideoInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json new file mode 100644 index 000000000..78c414c9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","preciseIdentifier":"s:11JellyfinAPI14MusicVideoInfoV","text":"MusicVideoInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MusicVideoInfo","preciseIdentifier":"s:11JellyfinAPI14MusicVideoInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV26isIncludeDisabledProviders6itemID06searchE00O12ProviderNameACSbSg_10Foundation4UUIDVSgAA0cdE0VSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MusicVideoInfo","preciseIdentifier":"s:11JellyfinAPI14MusicVideoInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery":{"role":"symbol","title":"MusicVideoInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/isincludedisabledproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/isincludedisabledproviders.json new file mode 100644 index 000000000..8265d5291 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/isincludedisabledproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/isincludedisabledproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/isIncludeDisabledProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeDisabledProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV26isIncludeDisabledProvidersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery":{"role":"symbol","title":"MusicVideoInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/itemid.json new file mode 100644 index 000000000..b177f27b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery":{"role":"symbol","title":"MusicVideoInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/searchinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/searchinfo.json new file mode 100644 index 000000000..2edeeff40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/searchinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","preciseIdentifier":"s:11JellyfinAPI14MusicVideoInfoV","text":"MusicVideoInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/searchinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/searchInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MusicVideoInfo","preciseIdentifier":"s:11JellyfinAPI14MusicVideoInfoV"},{"kind":"text","text":"?"}],"title":"searchInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV06searchE0AA0cdE0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MusicVideoInfo","preciseIdentifier":"s:11JellyfinAPI14MusicVideoInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfo":{"role":"symbol","title":"MusicVideoInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfo"}],"url":"\/documentation\/jellyfinapi\/musicvideoinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery":{"role":"symbol","title":"MusicVideoInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/searchprovidername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/searchprovidername.json new file mode 100644 index 000000000..a40cfb290 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/musicvideoinforemotesearchquery/searchprovidername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/searchprovidername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/searchProviderName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchProviderName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV18searchProviderNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery":{"role":"symbol","title":"MusicVideoInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery\/searchprovidername"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair.json new file mode 100644 index 000000000..5f3a6199a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameguidpair"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"title":"NameGuidPair","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI12NameGuidPairV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/init(id:name:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/id-wahf","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/name"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/id-wahf":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/id-wahf","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/id-wahf"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/init(id:name:)":{"role":"symbol","title":"init(id:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/init(id:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/init(id:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/id-4rlvz.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/id-4rlvz.json new file mode 100644 index 000000000..0b65c9a25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/id-4rlvz.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameguidpair\/id-4rlvz"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/id-4rlvz","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI12NameGuidPairV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/id-4rlvz":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/id-4rlvz","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/id-4rlvz"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/id-wahf.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/id-wahf.json new file mode 100644 index 000000000..62b9cf15c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/id-wahf.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameguidpair\/id-wahf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/id-wahf","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12NameGuidPairV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/id-wahf":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/id-wahf","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/id-wahf"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/identifiable-implementations.json new file mode 100644 index 000000000..5d8f4a448 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/nameguidpair\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/id-4rlvz"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/id-4rlvz":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/id-4rlvz","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/id-4rlvz"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/init(from:).json new file mode 100644 index 000000000..ff5a2ee77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameguidpair\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12NameGuidPairV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/init(id:name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/init(id:name:).json new file mode 100644 index 000000000..400188263 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/init(id:name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameguidpair\/init(id:name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/init(id:name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(id:name:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12NameGuidPairV2id4nameAC10Foundation4UUIDVSg_SSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/init(id:name:)":{"role":"symbol","title":"init(id:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/init(id:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/init(id:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/name.json new file mode 100644 index 000000000..523721467 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameguidpair/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameguidpair\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12NameGuidPairV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameguidpair\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair.json new file mode 100644 index 000000000..0a8ee5283 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameidpair"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"title":"NameIDPair","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10NameIDPairV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/init(id:name:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/id-80023","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/name"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/init(from:)"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/id-80023":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/id-80023","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/id-80023"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/init(id:name:)":{"role":"symbol","title":"init(id:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/init(id:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/init(id:name:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/id-7qlnp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/id-7qlnp.json new file mode 100644 index 000000000..496e1001d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/id-7qlnp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameidpair\/id-7qlnp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/id-7qlnp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI10NameIDPairV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/id-7qlnp":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/id-7qlnp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/id-7qlnp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/id-80023.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/id-80023.json new file mode 100644 index 000000000..997ce765a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/id-80023.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameidpair\/id-80023"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/id-80023","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10NameIDPairV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/id-80023":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/id-80023","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/id-80023"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/identifiable-implementations.json new file mode 100644 index 000000000..d03c440ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/nameidpair\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/id-7qlnp"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/id-7qlnp":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/id-7qlnp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/id-7qlnp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/init(from:).json new file mode 100644 index 000000000..f17616c91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameidpair\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10NameIDPairV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/init(id:name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/init(id:name:).json new file mode 100644 index 000000000..94c14046e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/init(id:name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameidpair\/init(id:name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/init(id:name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(id:name:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10NameIDPairV2id4nameACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/init(id:name:)":{"role":"symbol","title":"init(id:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/init(id:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/init(id:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/name.json new file mode 100644 index 000000000..c9b6517fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nameidpair/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nameidpair\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10NameIDPairV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nameidpair\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair.json new file mode 100644 index 000000000..528e04802 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/namevaluepair"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"title":"NameValuePair","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI13NameValuePairV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/init(name:value:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/value"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/namevaluepair\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair/init(name:value:)":{"role":"symbol","title":"init(name:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/init(name:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/namevaluepair\/init(name:value:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the value."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/namevaluepair\/value"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/namevaluepair\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/init(from:).json new file mode 100644 index 000000000..498a1341c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/namevaluepair\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13NameValuePairV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/namevaluepair\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/init(name:value:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/init(name:value:).json new file mode 100644 index 000000000..25ac9208d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/init(name:value:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/namevaluepair\/init(name:value:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/init(name:value:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(name:value:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13NameValuePairV4name5valueACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair/init(name:value:)":{"role":"symbol","title":"init(name:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/init(name:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/namevaluepair\/init(name:value:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/name.json new file mode 100644 index 000000000..084961902 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/namevaluepair\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13NameValuePairV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/namevaluepair\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/value.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/value.json new file mode 100644 index 000000000..303d6130a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/namevaluepair/value.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/namevaluepair\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13NameValuePairV5valueSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the value."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/namevaluepair\/value"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration.json new file mode 100644 index 000000000..001b13f37 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"title":"NetworkConfiguration","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20NetworkConfigurationV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/init(isAutoDiscovery:isAutoDiscoveryTracing:baseURL:certificatePassword:certificatePath:enableHTTPS:enableIPV4:enableIPV6:enableMultiSocketBinding:enablePublishedServerUriByRequest:enableRemoteAccess:enableSSDPTracing:enableUPnP:gatewayMonitorPeriod:hDHomerunPortRange:httpserverPortNumber:httpsPortNumber:isIgnoreVirtualInterfaces:isRemoteIPFilterBlacklist:knownProxies:localNetworkAddresses:localNetworkSubnets:publicHTTPSPort:publicPort:publishedServerUriBySubnet:remoteIPFilter:requireHTTPS:sSDPTracingFilter:isTrustAllIP6Interfaces:uDPPortRange:uDPSendCount:uDPSendDelay:isUPnPCreateHTTPPortMap:virtualInterfaceNames:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/baseURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/certificatePassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/certificatePath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableHTTPS","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableIPV4","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableIPV6","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableMultiSocketBinding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enablePublishedServerUriByRequest","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableRemoteAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableSSDPTracing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableUPnP","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/gatewayMonitorPeriod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/hDHomerunPortRange","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/httpsPortNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/httpserverPortNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isAutoDiscovery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isAutoDiscoveryTracing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isIgnoreVirtualInterfaces","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isRemoteIPFilterBlacklist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isTrustAllIP6Interfaces","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isUPnPCreateHTTPPortMap","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/knownProxies","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/localNetworkAddresses","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/localNetworkSubnets","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publicHTTPSPort","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publicPort","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publishedServerUriBySubnet","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/remoteIPFilter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/requireHTTPS","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/sSDPTracingFilter","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPPortRange","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPSendCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPSendDelay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/virtualInterfaceNames"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/sSDPTracingFilter":{"role":"symbol","title":"sSDPTracingFilter","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sSDPTracingFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the SSDPTracingFilter"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/sSDPTracingFilter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/ssdptracingfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/publicHTTPSPort":{"role":"symbol","title":"publicHTTPSPort","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publicHTTPSPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the public HTTPS port."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publicHTTPSPort","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/publichttpsport"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/hDHomerunPortRange":{"role":"symbol","title":"hDHomerunPortRange","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hDHomerunPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ports that HDHomerun uses."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/hDHomerunPortRange","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/hdhomerunportrange"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableSSDPTracing":{"role":"symbol","title":"enableSSDPTracing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSSDPTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether detailed SSDP logs are sent to the console\/log."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableSSDPTracing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enablessdptracing"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableMultiSocketBinding":{"role":"symbol","title":"enableMultiSocketBinding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMultiSocketBinding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets a value indicating whether multi-socket binding is available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableMultiSocketBinding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enablemultisocketbinding"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isTrustAllIP6Interfaces":{"role":"symbol","title":"isTrustAllIP6Interfaces","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isTrustAllIP6Interfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether all IPv6 interfaces should be treated as on the internal network."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isTrustAllIP6Interfaces","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/istrustallip6interfaces"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/certificatePassword":{"role":"symbol","title":"certificatePassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"certificatePassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the password required to access the X.509 certificate data in the file specified by Jellyfin.Networking.Configuration.NetworkConfiguration.CertificatePath."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/certificatePassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/certificatepassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isUPnPCreateHTTPPortMap":{"role":"symbol","title":"isUPnPCreateHTTPPortMap","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUPnPCreateHTTPPortMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the http port should be mapped as part of UPnP automatic port forwarding."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isUPnPCreateHTTPPortMap","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/isupnpcreatehttpportmap"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/uDPSendCount":{"role":"symbol","title":"uDPSendCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPSendCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the number of times SSDP UDP messages are sent."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPSendCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/udpsendcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isAutoDiscoveryTracing":{"role":"symbol","title":"isAutoDiscoveryTracing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoDiscoveryTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether Autodiscovery tracing is enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isAutoDiscoveryTracing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/isautodiscoverytracing"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isIgnoreVirtualInterfaces":{"role":"symbol","title":"isIgnoreVirtualInterfaces","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreVirtualInterfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether address names that match Jellyfin.Networking.Configuration.NetworkConfiguration.VirtualInterfaceNames should be Ignore for the purposes of binding."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isIgnoreVirtualInterfaces","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/isignorevirtualinterfaces"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/httpsPortNumber":{"role":"symbol","title":"httpsPortNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"httpsPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the HTTPS server port number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/httpsPortNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/httpsportnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/publicPort":{"role":"symbol","title":"publicPort","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publicPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the public mapped port."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publicPort","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/publicport"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/remoteIPFilter":{"role":"symbol","title":"remoteIPFilter","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteIPFilter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the filter for remote IP connectivity. Used in conjuntion with "},{"type":"text","text":"."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/remoteIPFilter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/remoteipfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/knownProxies":{"role":"symbol","title":"knownProxies","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"knownProxies"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the known proxies. If the proxy is a network, it’s added to the KnownNetworks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/knownProxies","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/knownproxies"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/virtualInterfaceNames":{"role":"symbol","title":"virtualInterfaceNames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"virtualInterfaceNames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating the interfaces that should be ignored. The list can be comma separated. "},{"type":"text","text":"."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/virtualInterfaceNames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/virtualinterfacenames"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableRemoteAccess":{"role":"symbol","title":"enableRemoteAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether access outside of the LAN is permitted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableRemoteAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enableremoteaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/certificatePath":{"role":"symbol","title":"certificatePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"certificatePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the filesystem path of an X.509 certificate to use for SSL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/certificatePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/certificatepath"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/baseURL":{"role":"symbol","title":"baseURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value used to specify the URL prefix that your Jellyfin instance can be accessed at."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/baseURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/baseurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/uDPPortRange":{"role":"symbol","title":"uDPPortRange","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the UDPPortRange."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPPortRange","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/udpportrange"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isRemoteIPFilterBlacklist":{"role":"symbol","title":"isRemoteIPFilterBlacklist","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemoteIPFilterBlacklist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether "},{"type":"text","text":" contains a blacklist or a whitelist. Default is a whitelist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isRemoteIPFilterBlacklist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/isremoteipfilterblacklist"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableHTTPS":{"role":"symbol","title":"enableHTTPS","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to use HTTPS."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableHTTPS","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enablehttps"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/publishedServerUriBySubnet":{"role":"symbol","title":"publishedServerUriBySubnet","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishedServerUriBySubnet"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the PublishedServerUriBySubnet"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publishedServerUriBySubnet","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/publishedserveruribysubnet"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/requireHTTPS":{"role":"symbol","title":"requireHTTPS","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the server should force connections over HTTPS."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/requireHTTPS","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/requirehttps"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/init(isAutoDiscovery:isAutoDiscoveryTracing:baseURL:certificatePassword:certificatePath:enableHTTPS:enableIPV4:enableIPV6:enableMultiSocketBinding:enablePublishedServerUriByRequest:enableRemoteAccess:enableSSDPTracing:enableUPnP:gatewayMonitorPeriod:hDHomerunPortRange:httpserverPortNumber:httpsPortNumber:isIgnoreVirtualInterfaces:isRemoteIPFilterBlacklist:knownProxies:localNetworkAddresses:localNetworkSubnets:publicHTTPSPort:publicPort:publishedServerUriBySubnet:remoteIPFilter:requireHTTPS:sSDPTracingFilter:isTrustAllIP6Interfaces:uDPPortRange:uDPSendCount:uDPSendDelay:isUPnPCreateHTTPPortMap:virtualInterfaceNames:)":{"role":"symbol","title":"init(isAutoDiscovery:isAutoDiscoveryTracing:baseURL:certificatePassword:certificatePath:enableHTTPS:enableIPV4:enableIPV6:enableMultiSocketBinding:enablePublishedServerUriByRequest:enableRemoteAccess:enableSSDPTracing:enableUPnP:gatewayMonitorPeriod:hDHomerunPortRange:httpserverPortNumber:httpsPortNumber:isIgnoreVirtualInterfaces:isRemoteIPFilterBlacklist:knownProxies:localNetworkAddresses:localNetworkSubnets:publicHTTPSPort:publicPort:publishedServerUriBySubnet:remoteIPFilter:requireHTTPS:sSDPTracingFilter:isTrustAllIP6Interfaces:uDPPortRange:uDPSendCount:uDPSendDelay:isUPnPCreateHTTPPortMap:virtualInterfaceNames:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isAutoDiscovery"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoDiscoveryTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"certificatePassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"certificatePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIPV4"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIPV6"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMultiSocketBinding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePublishedServerUriByRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSSDPTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUPnP"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"gatewayMonitorPeriod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hDHomerunPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"httpserverPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"httpsPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreVirtualInterfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRemoteIPFilterBlacklist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"knownProxies"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"localNetworkAddresses"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"localNetworkSubnets"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"publicHTTPSPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"publicPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"publishedServerUriBySubnet"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"remoteIPFilter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"requireHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sSDPTracingFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isTrustAllIP6Interfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uDPPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uDPSendCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uDPSendDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUPnPCreateHTTPPortMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"virtualInterfaceNames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/init(isAutoDiscovery:isAutoDiscoveryTracing:baseURL:certificatePassword:certificatePath:enableHTTPS:enableIPV4:enableIPV6:enableMultiSocketBinding:enablePublishedServerUriByRequest:enableRemoteAccess:enableSSDPTracing:enableUPnP:gatewayMonitorPeriod:hDHomerunPortRange:httpserverPortNumber:httpsPortNumber:isIgnoreVirtualInterfaces:isRemoteIPFilterBlacklist:knownProxies:localNetworkAddresses:localNetworkSubnets:publicHTTPSPort:publicPort:publishedServerUriBySubnet:remoteIPFilter:requireHTTPS:sSDPTracingFilter:isTrustAllIP6Interfaces:uDPPortRange:uDPSendCount:uDPSendDelay:isUPnPCreateHTTPPortMap:virtualInterfaceNames:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/init(isautodiscovery:isautodiscoverytracing:baseurl:certificatepassword:certificatepath:enablehttps:enableipv4:enableipv6:enablemultisocketbinding:enablepublishedserveruribyrequest:enableremoteaccess:enablessdptracing:enableupnp:gatewaymoni-4clkf"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/uDPSendDelay":{"role":"symbol","title":"uDPSendDelay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPSendDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the delay between each groups of SSDP messages (in ms)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPSendDelay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/udpsenddelay"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableIPV6":{"role":"symbol","title":"enableIPV6","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIPV6"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets IPV6 capability."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableIPV6","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enableipv6"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enablePublishedServerUriByRequest":{"role":"symbol","title":"enablePublishedServerUriByRequest","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePublishedServerUriByRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the published server uri is based on information in HTTP requests."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enablePublishedServerUriByRequest","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enablepublishedserveruribyrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/localNetworkAddresses":{"role":"symbol","title":"localNetworkAddresses","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localNetworkAddresses"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the interface addresses which Jellyfin will bind to. If empty, all interfaces will be used."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/localNetworkAddresses","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/localnetworkaddresses"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/localNetworkSubnets":{"role":"symbol","title":"localNetworkSubnets","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localNetworkSubnets"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the subnets that are deemed to make up the LAN."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/localNetworkSubnets","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/localnetworksubnets"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/gatewayMonitorPeriod":{"role":"symbol","title":"gatewayMonitorPeriod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"gatewayMonitorPeriod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the time (in seconds) between the pings of SSDP gateway monitor."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/gatewayMonitorPeriod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/gatewaymonitorperiod"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableIPV4":{"role":"symbol","title":"enableIPV4","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIPV4"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets IPV4 capability."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableIPV4","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enableipv4"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isAutoDiscovery":{"role":"symbol","title":"isAutoDiscovery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoDiscovery"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether Autodiscovery is enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isAutoDiscovery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/isautodiscovery"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableUPnP":{"role":"symbol","title":"enableUPnP","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUPnP"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable automatic port forwarding."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableUPnP","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enableupnp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/httpserverPortNumber":{"role":"symbol","title":"httpserverPortNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"httpserverPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the HTTP server port number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/httpserverPortNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/httpserverportnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/baseurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/baseurl.json new file mode 100644 index 000000000..a55ac10c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/baseurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/baseurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/baseURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value used to specify the URL prefix that your Jellyfin instance can be accessed at."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"baseURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV7baseURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/baseURL":{"role":"symbol","title":"baseURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value used to specify the URL prefix that your Jellyfin instance can be accessed at."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/baseURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/baseurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/certificatepassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/certificatepassword.json new file mode 100644 index 000000000..6d16e31da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/certificatepassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"certificatePassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/certificatepassword"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/certificatePassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the password required to access the X.509 certificate data in the file specified by Jellyfin.Networking.Configuration.NetworkConfiguration.CertificatePath."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"certificatePassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"certificatePassword","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV19certificatePasswordSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/certificatePassword":{"role":"symbol","title":"certificatePassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"certificatePassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the password required to access the X.509 certificate data in the file specified by Jellyfin.Networking.Configuration.NetworkConfiguration.CertificatePath."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/certificatePassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/certificatepassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/certificatepath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/certificatepath.json new file mode 100644 index 000000000..734fbd728 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/certificatepath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"certificatePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/certificatepath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/certificatePath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the filesystem path of an X.509 certificate to use for SSL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"certificatePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"certificatePath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV15certificatePathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/certificatePath":{"role":"symbol","title":"certificatePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"certificatePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the filesystem path of an X.509 certificate to use for SSL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/certificatePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/certificatepath"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablehttps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablehttps.json new file mode 100644 index 000000000..4578c92d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablehttps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/enablehttps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableHTTPS","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to use HTTPS."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableHTTPS","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV11enableHTTPSSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableHTTPS":{"role":"symbol","title":"enableHTTPS","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to use HTTPS."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableHTTPS","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enablehttps"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableipv4.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableipv4.json new file mode 100644 index 000000000..572633262 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableipv4.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIPV4"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/enableipv4"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableIPV4","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets IPV4 capability."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIPV4"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableIPV4","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV10enableIPV4SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableIPV4":{"role":"symbol","title":"enableIPV4","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIPV4"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets IPV4 capability."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableIPV4","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enableipv4"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableipv6.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableipv6.json new file mode 100644 index 000000000..ba277d7d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableipv6.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIPV6"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/enableipv6"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableIPV6","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets IPV6 capability."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIPV6"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableIPV6","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV10enableIPV6SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableIPV6":{"role":"symbol","title":"enableIPV6","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableIPV6"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether gets or sets IPV6 capability."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableIPV6","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enableipv6"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablemultisocketbinding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablemultisocketbinding.json new file mode 100644 index 000000000..88be8da23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablemultisocketbinding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMultiSocketBinding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/enablemultisocketbinding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableMultiSocketBinding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a value indicating whether multi-socket binding is available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMultiSocketBinding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMultiSocketBinding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV24enableMultiSocketBindingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableMultiSocketBinding":{"role":"symbol","title":"enableMultiSocketBinding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMultiSocketBinding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets a value indicating whether multi-socket binding is available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableMultiSocketBinding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enablemultisocketbinding"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablepublishedserveruribyrequest.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablepublishedserveruribyrequest.json new file mode 100644 index 000000000..98591c887 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablepublishedserveruribyrequest.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePublishedServerUriByRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/enablepublishedserveruribyrequest"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enablePublishedServerUriByRequest","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the published server uri is based on information in HTTP requests."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePublishedServerUriByRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enablePublishedServerUriByRequest","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV33enablePublishedServerUriByRequestSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enablePublishedServerUriByRequest":{"role":"symbol","title":"enablePublishedServerUriByRequest","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePublishedServerUriByRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the published server uri is based on information in HTTP requests."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enablePublishedServerUriByRequest","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enablepublishedserveruribyrequest"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableremoteaccess.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableremoteaccess.json new file mode 100644 index 000000000..eccb346f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableremoteaccess.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/enableremoteaccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableRemoteAccess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether access outside of the LAN is permitted."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableRemoteAccess","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV18enableRemoteAccessSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableRemoteAccess":{"role":"symbol","title":"enableRemoteAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether access outside of the LAN is permitted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableRemoteAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enableremoteaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablessdptracing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablessdptracing.json new file mode 100644 index 000000000..c716ec7e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enablessdptracing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSSDPTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"“Emby.Dlna”: “Debug” must be set in logging.default.json for this property to have any effect."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/enablessdptracing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableSSDPTracing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether detailed SSDP logs are sent to the console\/log."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSSDPTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableSSDPTracing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV17enableSSDPTracingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableSSDPTracing":{"role":"symbol","title":"enableSSDPTracing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSSDPTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether detailed SSDP logs are sent to the console\/log."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableSSDPTracing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enablessdptracing"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableupnp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableupnp.json new file mode 100644 index 000000000..b729dcb0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/enableupnp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUPnP"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/enableupnp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableUPnP","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable automatic port forwarding."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUPnP"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUPnP","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV10enableUPnPSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/enableUPnP":{"role":"symbol","title":"enableUPnP","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUPnP"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable automatic port forwarding."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/enableUPnP","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/enableupnp"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/gatewaymonitorperiod.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/gatewaymonitorperiod.json new file mode 100644 index 000000000..00a1ed3eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/gatewaymonitorperiod.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"gatewayMonitorPeriod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/gatewaymonitorperiod"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/gatewayMonitorPeriod","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the time (in seconds) between the pings of SSDP gateway monitor."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"gatewayMonitorPeriod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"gatewayMonitorPeriod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV20gatewayMonitorPeriods5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/gatewayMonitorPeriod":{"role":"symbol","title":"gatewayMonitorPeriod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"gatewayMonitorPeriod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the time (in seconds) between the pings of SSDP gateway monitor."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/gatewayMonitorPeriod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/gatewaymonitorperiod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/hdhomerunportrange.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/hdhomerunportrange.json new file mode 100644 index 000000000..6f106a038 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/hdhomerunportrange.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hDHomerunPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/hdhomerunportrange"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/hDHomerunPortRange","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the ports that HDHomerun uses."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hDHomerunPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"hDHomerunPortRange","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV18hDHomerunPortRangeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/hDHomerunPortRange":{"role":"symbol","title":"hDHomerunPortRange","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hDHomerunPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ports that HDHomerun uses."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/hDHomerunPortRange","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/hdhomerunportrange"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/httpserverportnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/httpserverportnumber.json new file mode 100644 index 000000000..90b80c584 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/httpserverportnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"httpserverPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/httpserverportnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/httpserverPortNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the HTTP server port number."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"httpserverPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"httpserverPortNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV20httpserverPortNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/httpserverPortNumber":{"role":"symbol","title":"httpserverPortNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"httpserverPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the HTTP server port number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/httpserverPortNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/httpserverportnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/httpsportnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/httpsportnumber.json new file mode 100644 index 000000000..94f208477 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/httpsportnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"httpsPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/httpsportnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/httpsPortNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the HTTPS server port number."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"httpsPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"httpsPortNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV15httpsPortNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/httpsPortNumber":{"role":"symbol","title":"httpsPortNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"httpsPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the HTTPS server port number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/httpsPortNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/httpsportnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/init(from:).json new file mode 100644 index 000000000..ec62113e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20NetworkConfigurationV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/init(isautodiscovery:isautodiscoverytracing:baseurl:certificatepassword:certificatepath:enablehttps:enableipv4:enableipv6:enablemultisocketbinding:enablepublishedserveruribyrequest:enableremoteaccess:enablessdptracing:enableupnp:gatewaymoni-4clkf.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/init(isautodiscovery:isautodiscoverytracing:baseurl:certificatepassword:certificatepath:enablehttps:enableipv4:enableipv6:enablemultisocketbinding:enablepublishedserveruribyrequest:enableremoteaccess:enablessdptracing:enableupnp:gatewaymoni-4clkf.json new file mode 100644 index 000000000..86ff07f1b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/init(isautodiscovery:isautodiscoverytracing:baseurl:certificatepassword:certificatepath:enablehttps:enableipv4:enableipv6:enablemultisocketbinding:enablepublishedserveruribyrequest:enableremoteaccess:enablessdptracing:enableupnp:gatewaymoni-4clkf.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isAutoDiscovery"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutoDiscoveryTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"certificatePassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"certificatePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableIPV4"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableIPV6"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMultiSocketBinding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enablePublishedServerUriByRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableSSDPTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUPnP"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"gatewayMonitorPeriod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hDHomerunPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"httpserverPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"httpsPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIgnoreVirtualInterfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRemoteIPFilterBlacklist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"knownProxies"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"localNetworkAddresses"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"localNetworkSubnets"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"publicHTTPSPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"publicPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"publishedServerUriBySubnet"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"remoteIPFilter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"requireHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sSDPTracingFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isTrustAllIP6Interfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"uDPPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"uDPSendCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"uDPSendDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isUPnPCreateHTTPPortMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"virtualInterfaceNames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/init(isautodiscovery:isautodiscoverytracing:baseurl:certificatepassword:certificatepath:enablehttps:enableipv4:enableipv6:enablemultisocketbinding:enablepublishedserveruribyrequest:enableremoteaccess:enablessdptracing:enableupnp:gatewaymoni-4clkf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/init(isAutoDiscovery:isAutoDiscoveryTracing:baseURL:certificatePassword:certificatePath:enableHTTPS:enableIPV4:enableIPV6:enableMultiSocketBinding:enablePublishedServerUriByRequest:enableRemoteAccess:enableSSDPTracing:enableUPnP:gatewayMonitorPeriod:hDHomerunPortRange:httpserverPortNumber:httpsPortNumber:isIgnoreVirtualInterfaces:isRemoteIPFilterBlacklist:knownProxies:localNetworkAddresses:localNetworkSubnets:publicHTTPSPort:publicPort:publishedServerUriBySubnet:remoteIPFilter:requireHTTPS:sSDPTracingFilter:isTrustAllIP6Interfaces:uDPPortRange:uDPSendCount:uDPSendDelay:isUPnPCreateHTTPPortMap:virtualInterfaceNames:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isAutoDiscovery"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoDiscoveryTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"certificatePassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"certificatePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIPV4"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIPV6"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMultiSocketBinding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePublishedServerUriByRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSSDPTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUPnP"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"gatewayMonitorPeriod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hDHomerunPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"httpserverPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"httpsPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreVirtualInterfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRemoteIPFilterBlacklist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"knownProxies"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"localNetworkAddresses"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"localNetworkSubnets"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"publicHTTPSPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"publicPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"publishedServerUriBySubnet"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"remoteIPFilter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"requireHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sSDPTracingFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isTrustAllIP6Interfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uDPPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uDPSendCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uDPSendDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUPnPCreateHTTPPortMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"virtualInterfaceNames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isAutoDiscovery:isAutoDiscoveryTracing:baseURL:certificatePassword:certificatePath:enableHTTPS:enableIPV4:enableIPV6:enableMultiSocketBinding:enablePublishedServerUriByRequest:enableRemoteAccess:enableSSDPTracing:enableUPnP:gatewayMonitorPeriod:hDHomerunPortRange:httpserverPortNumber:httpsPortNumber:isIgnoreVirtualInterfaces:isRemoteIPFilterBlacklist:knownProxies:localNetworkAddresses:localNetworkSubnets:publicHTTPSPort:publicPort:publishedServerUriBySubnet:remoteIPFilter:requireHTTPS:sSDPTracingFilter:isTrustAllIP6Interfaces:uDPPortRange:uDPSendCount:uDPSendDelay:isUPnPCreateHTTPPortMap:virtualInterfaceNames:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20NetworkConfigurationV15isAutoDiscovery0efG7Tracing7baseURL19certificatePassword0K4Path11enableHTTPS0N4IPV40N4IPV60N18MultiSocketBinding0N27PublishedServerUriByRequest0N12RemoteAccess0N11SSDPTracing0N4UPnP20gatewayMonitorPeriod18hDHomerunPortRange20httpserverPortNumber15httpsPortNumber0E23IgnoreVirtualInterfaces0eZ17IPFilterBlacklist12knownProxies05localC9Addresses05localC7Subnets15publicHTTPSPort10publicPort09publishedvwX6Subnet14remoteIPFilter07requireO017sSDPTracingFilter0E21TrustAllIP6Interfaces12uDPPortRange12uDPSendCount12uDPSendDelay0E21UPnPCreateHTTPPortMap21virtualInterfaceNamesACSbSg_A10_SSSgA11_A11_A10_A10_A10_A10_A10_A10_A10_A10_s5Int32VSgA11_A14_A14_A10_A10_SaySSGSgA16_A16_A14_A14_A16_A16_A10_A11_A10_A11_A14_A14_A10_A11_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/init(isAutoDiscovery:isAutoDiscoveryTracing:baseURL:certificatePassword:certificatePath:enableHTTPS:enableIPV4:enableIPV6:enableMultiSocketBinding:enablePublishedServerUriByRequest:enableRemoteAccess:enableSSDPTracing:enableUPnP:gatewayMonitorPeriod:hDHomerunPortRange:httpserverPortNumber:httpsPortNumber:isIgnoreVirtualInterfaces:isRemoteIPFilterBlacklist:knownProxies:localNetworkAddresses:localNetworkSubnets:publicHTTPSPort:publicPort:publishedServerUriBySubnet:remoteIPFilter:requireHTTPS:sSDPTracingFilter:isTrustAllIP6Interfaces:uDPPortRange:uDPSendCount:uDPSendDelay:isUPnPCreateHTTPPortMap:virtualInterfaceNames:)":{"role":"symbol","title":"init(isAutoDiscovery:isAutoDiscoveryTracing:baseURL:certificatePassword:certificatePath:enableHTTPS:enableIPV4:enableIPV6:enableMultiSocketBinding:enablePublishedServerUriByRequest:enableRemoteAccess:enableSSDPTracing:enableUPnP:gatewayMonitorPeriod:hDHomerunPortRange:httpserverPortNumber:httpsPortNumber:isIgnoreVirtualInterfaces:isRemoteIPFilterBlacklist:knownProxies:localNetworkAddresses:localNetworkSubnets:publicHTTPSPort:publicPort:publishedServerUriBySubnet:remoteIPFilter:requireHTTPS:sSDPTracingFilter:isTrustAllIP6Interfaces:uDPPortRange:uDPSendCount:uDPSendDelay:isUPnPCreateHTTPPortMap:virtualInterfaceNames:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isAutoDiscovery"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoDiscoveryTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"baseURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"certificatePassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"certificatePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIPV4"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableIPV6"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMultiSocketBinding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePublishedServerUriByRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSSDPTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUPnP"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"gatewayMonitorPeriod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hDHomerunPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"httpserverPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"httpsPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIgnoreVirtualInterfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRemoteIPFilterBlacklist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"knownProxies"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"localNetworkAddresses"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"localNetworkSubnets"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"publicHTTPSPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"publicPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"publishedServerUriBySubnet"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"remoteIPFilter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"requireHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sSDPTracingFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isTrustAllIP6Interfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uDPPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uDPSendCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uDPSendDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUPnPCreateHTTPPortMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"virtualInterfaceNames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/init(isAutoDiscovery:isAutoDiscoveryTracing:baseURL:certificatePassword:certificatePath:enableHTTPS:enableIPV4:enableIPV6:enableMultiSocketBinding:enablePublishedServerUriByRequest:enableRemoteAccess:enableSSDPTracing:enableUPnP:gatewayMonitorPeriod:hDHomerunPortRange:httpserverPortNumber:httpsPortNumber:isIgnoreVirtualInterfaces:isRemoteIPFilterBlacklist:knownProxies:localNetworkAddresses:localNetworkSubnets:publicHTTPSPort:publicPort:publishedServerUriBySubnet:remoteIPFilter:requireHTTPS:sSDPTracingFilter:isTrustAllIP6Interfaces:uDPPortRange:uDPSendCount:uDPSendDelay:isUPnPCreateHTTPPortMap:virtualInterfaceNames:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/init(isautodiscovery:isautodiscoverytracing:baseurl:certificatepassword:certificatepath:enablehttps:enableipv4:enableipv6:enablemultisocketbinding:enablepublishedserveruribyrequest:enableremoteaccess:enablessdptracing:enableupnp:gatewaymoni-4clkf"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isautodiscovery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isautodiscovery.json new file mode 100644 index 000000000..e2e901bd6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isautodiscovery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoDiscovery"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/isautodiscovery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isAutoDiscovery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether Autodiscovery is enabled."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoDiscovery"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutoDiscovery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV15isAutoDiscoverySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isAutoDiscovery":{"role":"symbol","title":"isAutoDiscovery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoDiscovery"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether Autodiscovery is enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isAutoDiscovery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/isautodiscovery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isautodiscoverytracing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isautodiscoverytracing.json new file mode 100644 index 000000000..810ab3ab3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isautodiscoverytracing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoDiscoveryTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/isautodiscoverytracing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isAutoDiscoveryTracing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether Autodiscovery tracing is enabled."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoDiscoveryTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutoDiscoveryTracing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV22isAutoDiscoveryTracingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isAutoDiscoveryTracing":{"role":"symbol","title":"isAutoDiscoveryTracing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoDiscoveryTracing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether Autodiscovery tracing is enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isAutoDiscoveryTracing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/isautodiscoverytracing"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isignorevirtualinterfaces.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isignorevirtualinterfaces.json new file mode 100644 index 000000000..3d0d3a3ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isignorevirtualinterfaces.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreVirtualInterfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/isignorevirtualinterfaces"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isIgnoreVirtualInterfaces","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether address names that match Jellyfin.Networking.Configuration.NetworkConfiguration.VirtualInterfaceNames should be Ignore for the purposes of binding."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreVirtualInterfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIgnoreVirtualInterfaces","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV25isIgnoreVirtualInterfacesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isIgnoreVirtualInterfaces":{"role":"symbol","title":"isIgnoreVirtualInterfaces","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIgnoreVirtualInterfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether address names that match Jellyfin.Networking.Configuration.NetworkConfiguration.VirtualInterfaceNames should be Ignore for the purposes of binding."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isIgnoreVirtualInterfaces","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/isignorevirtualinterfaces"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isremoteipfilterblacklist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isremoteipfilterblacklist.json new file mode 100644 index 000000000..8e0c8c91f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isremoteipfilterblacklist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemoteIPFilterBlacklist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/isremoteipfilterblacklist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isRemoteIPFilterBlacklist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether "},{"type":"text","text":" contains a blacklist or a whitelist. Default is a whitelist."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemoteIPFilterBlacklist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRemoteIPFilterBlacklist","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV25isRemoteIPFilterBlacklistSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isRemoteIPFilterBlacklist":{"role":"symbol","title":"isRemoteIPFilterBlacklist","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemoteIPFilterBlacklist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether "},{"type":"text","text":" contains a blacklist or a whitelist. Default is a whitelist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isRemoteIPFilterBlacklist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/isremoteipfilterblacklist"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/istrustallip6interfaces.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/istrustallip6interfaces.json new file mode 100644 index 000000000..a99ed080a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/istrustallip6interfaces.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isTrustAllIP6Interfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Depending on the address range implemented ULA ranges might not be used."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/istrustallip6interfaces"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isTrustAllIP6Interfaces","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether all IPv6 interfaces should be treated as on the internal network."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isTrustAllIP6Interfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isTrustAllIP6Interfaces","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV23isTrustAllIP6InterfacesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isTrustAllIP6Interfaces":{"role":"symbol","title":"isTrustAllIP6Interfaces","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isTrustAllIP6Interfaces"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether all IPv6 interfaces should be treated as on the internal network."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isTrustAllIP6Interfaces","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/istrustallip6interfaces"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isupnpcreatehttpportmap.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isupnpcreatehttpportmap.json new file mode 100644 index 000000000..6dd3f0654 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/isupnpcreatehttpportmap.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUPnPCreateHTTPPortMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/isupnpcreatehttpportmap"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isUPnPCreateHTTPPortMap","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the http port should be mapped as part of UPnP automatic port forwarding."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUPnPCreateHTTPPortMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isUPnPCreateHTTPPortMap","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV23isUPnPCreateHTTPPortMapSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/isUPnPCreateHTTPPortMap":{"role":"symbol","title":"isUPnPCreateHTTPPortMap","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUPnPCreateHTTPPortMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the http port should be mapped as part of UPnP automatic port forwarding."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/isUPnPCreateHTTPPortMap","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/isupnpcreatehttpportmap"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/knownproxies.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/knownproxies.json new file mode 100644 index 000000000..764a46684 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/knownproxies.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"knownProxies"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/knownproxies"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/knownProxies","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the known proxies. If the proxy is a network, it’s added to the KnownNetworks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"knownProxies"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"knownProxies","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV12knownProxiesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/knownProxies":{"role":"symbol","title":"knownProxies","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"knownProxies"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the known proxies. If the proxy is a network, it’s added to the KnownNetworks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/knownProxies","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/knownproxies"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/localnetworkaddresses.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/localnetworkaddresses.json new file mode 100644 index 000000000..7b2ad7ac5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/localnetworkaddresses.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localNetworkAddresses"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/localnetworkaddresses"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/localNetworkAddresses","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the interface addresses which Jellyfin will bind to. If empty, all interfaces will be used."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localNetworkAddresses"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"localNetworkAddresses","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV05localC9AddressesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/localNetworkAddresses":{"role":"symbol","title":"localNetworkAddresses","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localNetworkAddresses"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the interface addresses which Jellyfin will bind to. If empty, all interfaces will be used."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/localNetworkAddresses","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/localnetworkaddresses"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/localnetworksubnets.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/localnetworksubnets.json new file mode 100644 index 000000000..7c74a0f34 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/localnetworksubnets.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localNetworkSubnets"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/localnetworksubnets"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/localNetworkSubnets","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the subnets that are deemed to make up the LAN."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localNetworkSubnets"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"localNetworkSubnets","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV05localC7SubnetsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/localNetworkSubnets":{"role":"symbol","title":"localNetworkSubnets","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localNetworkSubnets"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the subnets that are deemed to make up the LAN."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/localNetworkSubnets","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/localnetworksubnets"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/publichttpsport.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/publichttpsport.json new file mode 100644 index 000000000..673221f57 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/publichttpsport.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publicHTTPSPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/publichttpsport"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publicHTTPSPort","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the public HTTPS port."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publicHTTPSPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"publicHTTPSPort","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV15publicHTTPSPorts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/publicHTTPSPort":{"role":"symbol","title":"publicHTTPSPort","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publicHTTPSPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the public HTTPS port."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publicHTTPSPort","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/publichttpsport"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/publicport.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/publicport.json new file mode 100644 index 000000000..8cfb632bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/publicport.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publicPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/publicport"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publicPort","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the public mapped port."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publicPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"publicPort","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV10publicPorts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/publicPort":{"role":"symbol","title":"publicPort","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publicPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the public mapped port."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publicPort","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/publicport"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/publishedserveruribysubnet.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/publishedserveruribysubnet.json new file mode 100644 index 000000000..b0195cd2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/publishedserveruribysubnet.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishedServerUriBySubnet"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Gets or sets PublishedServerUri to advertise for specific subnets."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/publishedserveruribysubnet"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publishedServerUriBySubnet","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the PublishedServerUriBySubnet"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishedServerUriBySubnet"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"publishedServerUriBySubnet","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV26publishedServerUriBySubnetSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/publishedServerUriBySubnet":{"role":"symbol","title":"publishedServerUriBySubnet","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishedServerUriBySubnet"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the PublishedServerUriBySubnet"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/publishedServerUriBySubnet","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/publishedserveruribysubnet"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/remoteipfilter.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/remoteipfilter.json new file mode 100644 index 000000000..d855adfe2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/remoteipfilter.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteIPFilter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/remoteipfilter"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/remoteIPFilter","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the filter for remote IP connectivity. Used in conjuntion with "},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteIPFilter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"remoteIPFilter","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV14remoteIPFilterSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/remoteIPFilter":{"role":"symbol","title":"remoteIPFilter","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteIPFilter"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the filter for remote IP connectivity. Used in conjuntion with "},{"type":"text","text":"."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/remoteIPFilter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/remoteipfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/requirehttps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/requirehttps.json new file mode 100644 index 000000000..97cda8c01 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/requirehttps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/requirehttps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/requireHTTPS","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the server should force connections over HTTPS."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireHTTPS","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV12requireHTTPSSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/requireHTTPS":{"role":"symbol","title":"requireHTTPS","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireHTTPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the server should force connections over HTTPS."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/requireHTTPS","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/requirehttps"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/ssdptracingfilter.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/ssdptracingfilter.json new file mode 100644 index 000000000..2289e6e9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/ssdptracingfilter.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sSDPTracingFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Gets or sets a value indicating whether an IP address is to be used to filter the detailed ssdp logs that are being sent to the console\/log."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the setting “Emby.Dlna”: “Debug” msut be set in logging.default.json for this property to work."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/ssdptracingfilter"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/sSDPTracingFilter","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the SSDPTracingFilter"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sSDPTracingFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sSDPTracingFilter","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV17sSDPTracingFilterSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/sSDPTracingFilter":{"role":"symbol","title":"sSDPTracingFilter","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sSDPTracingFilter"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the SSDPTracingFilter"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/sSDPTracingFilter","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/ssdptracingfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/udpportrange.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/udpportrange.json new file mode 100644 index 000000000..234498f9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/udpportrange.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/udpportrange"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPPortRange","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the UDPPortRange."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"uDPPortRange","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV12uDPPortRangeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/uDPPortRange":{"role":"symbol","title":"uDPPortRange","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPPortRange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the UDPPortRange."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPPortRange","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/udpportrange"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/udpsendcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/udpsendcount.json new file mode 100644 index 000000000..1f0f655be --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/udpsendcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPSendCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/udpsendcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPSendCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the number of times SSDP UDP messages are sent."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPSendCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"uDPSendCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV12uDPSendCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/uDPSendCount":{"role":"symbol","title":"uDPSendCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPSendCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the number of times SSDP UDP messages are sent."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPSendCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/udpsendcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/udpsenddelay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/udpsenddelay.json new file mode 100644 index 000000000..2e8d00a6e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/udpsenddelay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPSendDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/udpsenddelay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPSendDelay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the delay between each groups of SSDP messages (in ms)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPSendDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"uDPSendDelay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV12uDPSendDelays5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/uDPSendDelay":{"role":"symbol","title":"uDPSendDelay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uDPSendDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the delay between each groups of SSDP messages (in ms)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/uDPSendDelay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/udpsenddelay"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/virtualinterfacenames.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/virtualinterfacenames.json new file mode 100644 index 000000000..8d734296a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/networkconfiguration/virtualinterfacenames.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"virtualInterfaceNames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/networkconfiguration\/virtualinterfacenames"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/virtualInterfaceNames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating the interfaces that should be ignored. The list can be comma separated. "},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"virtualInterfaceNames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"virtualInterfaceNames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NetworkConfigurationV21virtualInterfaceNamesSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration":{"role":"symbol","title":"NetworkConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetworkConfiguration"}],"abstract":[{"type":"text","text":"Defines the Jellyfin.Networking.Configuration.NetworkConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetworkConfiguration"}],"url":"\/documentation\/jellyfinapi\/networkconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/NetworkConfiguration/virtualInterfaceNames":{"role":"symbol","title":"virtualInterfaceNames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"virtualInterfaceNames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating the interfaces that should be ignored. The list can be comma separated. "},{"type":"text","text":"."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NetworkConfiguration\/virtualInterfaceNames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/networkconfiguration\/virtualinterfacenames"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto.json new file mode 100644 index 000000000..402d4f26e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NewGroupRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/newgrouprequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class NewGroupRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NewGroupRequestDto"}],"title":"NewGroupRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18NewGroupRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NewGroupRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/init(groupName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/groupName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/newgrouprequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto/groupName":{"role":"symbol","title":"groupName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the group name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/groupName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/newgrouprequestdto\/groupname"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto/init(groupName:)":{"role":"symbol","title":"init(groupName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/init(groupName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/newgrouprequestdto\/init(groupname:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto":{"role":"symbol","title":"NewGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NewGroupRequestDto"}],"abstract":[{"type":"text","text":"Class NewGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NewGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/newgrouprequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto/groupname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto/groupname.json new file mode 100644 index 000000000..0e84682db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto/groupname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/newgrouprequestdto\/groupname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/groupName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the group name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"groupName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18NewGroupRequestDtoV9groupNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto/groupName":{"role":"symbol","title":"groupName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the group name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/groupName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/newgrouprequestdto\/groupname"},"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto":{"role":"symbol","title":"NewGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NewGroupRequestDto"}],"abstract":[{"type":"text","text":"Class NewGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NewGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/newgrouprequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto/init(from:).json new file mode 100644 index 000000000..0721ecd16 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/newgrouprequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18NewGroupRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/newgrouprequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto":{"role":"symbol","title":"NewGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NewGroupRequestDto"}],"abstract":[{"type":"text","text":"Class NewGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NewGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/newgrouprequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto/init(groupname:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto/init(groupname:).json new file mode 100644 index 000000000..6bc7d0a27 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/newgrouprequestdto/init(groupname:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/newgrouprequestdto\/init(groupname:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/init(groupName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(groupName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18NewGroupRequestDtoV9groupNameACSSSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto/init(groupName:)":{"role":"symbol","title":"init(groupName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto\/init(groupName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/newgrouprequestdto\/init(groupname:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto":{"role":"symbol","title":"NewGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NewGroupRequestDto"}],"abstract":[{"type":"text","text":"Class NewGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NewGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/newgrouprequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto.json new file mode 100644 index 000000000..be4bb8afb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NextItemRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nextitemrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class NextItemRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NextItemRequestDto"}],"title":"NextItemRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18NextItemRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NextItemRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/init(playlistItemID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/playlistItemID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nextitemrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto":{"role":"symbol","title":"NextItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NextItemRequestDto"}],"abstract":[{"type":"text","text":"Class NextItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NextItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/nextitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto/init(playlistItemID:)":{"role":"symbol","title":"init(playlistItemID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/init(playlistItemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nextitemrequestdto\/init(playlistitemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playing item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nextitemrequestdto\/playlistitemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto/init(from:).json new file mode 100644 index 000000000..e2155de21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nextitemrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18NextItemRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nextitemrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto":{"role":"symbol","title":"NextItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NextItemRequestDto"}],"abstract":[{"type":"text","text":"Class NextItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NextItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/nextitemrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto/init(playlistitemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto/init(playlistitemid:).json new file mode 100644 index 000000000..8d74984b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto/init(playlistitemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nextitemrequestdto\/init(playlistitemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/init(playlistItemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(playlistItemID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18NextItemRequestDtoV08playlistD2IDAC10Foundation4UUIDVSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto/init(playlistItemID:)":{"role":"symbol","title":"init(playlistItemID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/init(playlistItemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nextitemrequestdto\/init(playlistitemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto":{"role":"symbol","title":"NextItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NextItemRequestDto"}],"abstract":[{"type":"text","text":"Class NextItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NextItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/nextitemrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto/playlistitemid.json new file mode 100644 index 000000000..3999db9ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/nextitemrequestdto/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/nextitemrequestdto\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playing item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18NextItemRequestDtoV08playlistD2ID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto":{"role":"symbol","title":"NextItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NextItemRequestDto"}],"abstract":[{"type":"text","text":"Class NextItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NextItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/nextitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playing item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/nextitemrequestdto\/playlistitemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto.json new file mode 100644 index 000000000..4fbbf324e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The notification DTO."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"title":"NotificationDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15NotificationDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/init(date:description:id:isRead:level:name:url:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/date","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/description","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/id-23hh4","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/isRead","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/url","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/userID"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification’s URL. Defaults to an empty string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification’s description. Defaults to an empty string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/description"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/date":{"role":"symbol","title":"date","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/date","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/date"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/id-23hh4":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification ID. Defaults to an empty string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/id-23hh4","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/id-23hh4"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/isRead":{"role":"symbol","title":"isRead","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the notification has been read. Defaults to false."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/isRead","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/isread"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification’s name. Defaults to an empty string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/level"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification’s user ID. Defaults to an empty string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/userid"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/init(date:description:id:isRead:level:name:url:userID:)":{"role":"symbol","title":"init(date:description:id:isRead:level:name:url:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/init(date:description:id:isRead:level:name:url:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/init(date:description:id:isread:level:name:url:userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/date.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/date.json new file mode 100644 index 000000000..a547ef4d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/date.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/date"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/date","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"date","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15NotificationDtoV4date10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/date":{"role":"symbol","title":"date","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/date","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/date"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/description.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/description.json new file mode 100644 index 000000000..99bd34f25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/description.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification’s description. Defaults to an empty string."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15NotificationDtoV11descriptionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification’s description. Defaults to an empty string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/description"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/id-23hh4.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/id-23hh4.json new file mode 100644 index 000000000..2e4fb637a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/id-23hh4.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/id-23hh4"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/id-23hh4","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification ID. Defaults to an empty string."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15NotificationDtoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/id-23hh4":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification ID. Defaults to an empty string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/id-23hh4","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/id-23hh4"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/id-52c60.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/id-52c60.json new file mode 100644 index 000000000..4476bc217 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/id-52c60.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/id-52c60"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/id-52c60","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI15NotificationDtoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/id-52c60":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/id-52c60","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/id-52c60"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/identifiable-implementations.json new file mode 100644 index 000000000..efa065afe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/id-52c60"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/id-52c60":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/id-52c60","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/id-52c60"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/init(date:description:id:isread:level:name:url:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/init(date:description:id:isread:level:name:url:userid:).json new file mode 100644 index 000000000..6e112404f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/init(date:description:id:isread:level:name:url:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO","text":"NotificationLevel"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/init(date:description:id:isread:level:name:url:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/init(date:description:id:isRead:level:name:url:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(date:description:id:isRead:level:name:url:userID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15NotificationDtoV4date11description2id6isRead5level4name3url6userIDAC10Foundation4DateVSg_SSSgAPSbSgAA0C5LevelOSgA3Ptcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/init(date:description:id:isRead:level:name:url:userID:)":{"role":"symbol","title":"init(date:description:id:isRead:level:name:url:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/init(date:description:id:isRead:level:name:url:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/init(date:description:id:isread:level:name:url:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/init(from:).json new file mode 100644 index 000000000..984cdc890 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15NotificationDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/isread.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/isread.json new file mode 100644 index 000000000..cb156e8fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/isread.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/isread"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/isRead","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the notification has been read. Defaults to false."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRead","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15NotificationDtoV6isReadSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/isRead":{"role":"symbol","title":"isRead","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the notification has been read. Defaults to false."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/isRead","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/isread"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/level.json new file mode 100644 index 000000000..6a55a21ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO","text":"NotificationLevel"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification level."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15NotificationDtoV5levelAA0C5LevelOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/level"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/name.json new file mode 100644 index 000000000..d8d38378a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification’s name. Defaults to an empty string."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15NotificationDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification’s name. Defaults to an empty string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/url.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/url.json new file mode 100644 index 000000000..bde685876 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/url.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/url"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/url","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification’s URL. Defaults to an empty string."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"url","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15NotificationDtoV3urlSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification’s URL. Defaults to an empty string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/url"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/userid.json new file mode 100644 index 000000000..8599b76b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationdto/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationdto\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the notification’s user ID. Defaults to an empty string."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15NotificationDtoV6userIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the notification’s user ID. Defaults to an empty string."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationdto\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel.json new file mode 100644 index 000000000..3624e4ffc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"title":"NotificationLevel","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI17NotificationLevelO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/error","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/normal","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/warning"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/rawrepresentable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/normal":{"role":"symbol","title":"NotificationLevel.normal","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"normal"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/normal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/normal"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/error":{"role":"symbol","title":"NotificationLevel.error","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/error","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/error"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/init(rawvalue:)"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/warning":{"role":"symbol","title":"NotificationLevel.warning","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"warning"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/warning","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/warning"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/!=(_:_:).json new file mode 100644 index 000000000..b372a1846 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI17NotificationLevelO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/encode(to:).json new file mode 100644 index 000000000..99d7e4e7f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI17NotificationLevelO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/equatable-implementations.json new file mode 100644 index 000000000..6dd08e3af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/error.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/error.json new file mode 100644 index 000000000..b9192d119 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/error.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/error"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/error","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"title":"NotificationLevel.error","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI17NotificationLevelO5erroryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/error":{"role":"symbol","title":"NotificationLevel.error","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/error","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/error"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/hash(into:).json new file mode 100644 index 000000000..abf67ab4f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI17NotificationLevelO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/hashvalue.json new file mode 100644 index 000000000..f6bc43b37 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI17NotificationLevelO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/init(from:).json new file mode 100644 index 000000000..97d55cbb3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI17NotificationLevelO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/init(rawvalue:).json new file mode 100644 index 000000000..2ed985941 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17NotificationLevelO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/normal.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/normal.json new file mode 100644 index 000000000..c0de4c9a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/normal.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"normal"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/normal"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/normal","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"normal"}],"title":"NotificationLevel.normal","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI17NotificationLevelO6normalyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/normal":{"role":"symbol","title":"NotificationLevel.normal","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"normal"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/normal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/normal"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/rawrepresentable-implementations.json new file mode 100644 index 000000000..31f2b3a55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/warning.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/warning.json new file mode 100644 index 000000000..5ecfca708 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationlevel/warning.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"warning"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationlevel\/warning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/warning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"warning"}],"title":"NotificationLevel.warning","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI17NotificationLevelO7warningyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel/warning":{"role":"symbol","title":"NotificationLevel.warning","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"warning"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel\/warning","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationlevel\/warning"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption.json new file mode 100644 index 000000000..3f44a5df0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoption"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"title":"NotificationOption","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18NotificationOptionV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/init(disabledMonitorUsers:disabledServices:isEnabled:sendToUserMode:sendToUsers:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/disabledMonitorUsers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/disabledServices","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/isEnabled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/sendToUserMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/sendToUsers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/type"]}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/isEnabled":{"role":"symbol","title":"isEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Notifications.NotificationOption is enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/isEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/isenabled"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/sendToUsers":{"role":"symbol","title":"sendToUsers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendToUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets user Ids to send to (if SendToUserMode == Custom)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/sendToUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/sendtousers"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/disabledMonitorUsers":{"role":"symbol","title":"disabledMonitorUsers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMonitorUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets user Ids to not monitor (it’s opt out)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/disabledMonitorUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/disabledmonitorusers"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/disabledServices":{"role":"symbol","title":"disabledServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the disabled services."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/disabledServices","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/disabledservices"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/init(disabledMonitorUsers:disabledServices:isEnabled:sendToUserMode:sendToUsers:type:)":{"role":"symbol","title":"init(disabledMonitorUsers:disabledServices:isEnabled:sendToUserMode:sendToUsers:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"disabledMonitorUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sendToUserMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendToUserType","preciseIdentifier":"s:11JellyfinAPI14SendToUserTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sendToUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/init(disabledMonitorUsers:disabledServices:isEnabled:sendToUserMode:sendToUsers:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/init(disabledmonitorusers:disabledservices:isenabled:sendtousermode:sendtousers:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/sendToUserMode":{"role":"symbol","title":"sendToUserMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendToUserMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendToUserType","preciseIdentifier":"s:11JellyfinAPI14SendToUserTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the send to user mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/sendToUserMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/sendtousermode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/disabledmonitorusers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/disabledmonitorusers.json new file mode 100644 index 000000000..7c67cb1f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/disabledmonitorusers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMonitorUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoption\/disabledmonitorusers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/disabledMonitorUsers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets user Ids to not monitor (it’s opt out)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMonitorUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"disabledMonitorUsers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18NotificationOptionV20disabledMonitorUsersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/disabledMonitorUsers":{"role":"symbol","title":"disabledMonitorUsers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledMonitorUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets user Ids to not monitor (it’s opt out)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/disabledMonitorUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/disabledmonitorusers"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/disabledservices.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/disabledservices.json new file mode 100644 index 000000000..f9f278fc7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/disabledservices.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoption\/disabledservices"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/disabledServices","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the disabled services."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"disabledServices","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18NotificationOptionV16disabledServicesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/disabledServices":{"role":"symbol","title":"disabledServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabledServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the disabled services."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/disabledServices","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/disabledservices"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/init(disabledmonitorusers:disabledservices:isenabled:sendtousermode:sendtousers:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/init(disabledmonitorusers:disabledservices:isenabled:sendtousermode:sendtousers:type:).json new file mode 100644 index 000000000..4328a4d79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/init(disabledmonitorusers:disabledservices:isenabled:sendtousermode:sendtousers:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"disabledMonitorUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"disabledServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sendToUserMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","preciseIdentifier":"s:11JellyfinAPI14SendToUserTypeO","text":"SendToUserType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sendToUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoption\/init(disabledmonitorusers:disabledservices:isenabled:sendtousermode:sendtousers:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/init(disabledMonitorUsers:disabledServices:isEnabled:sendToUserMode:sendToUsers:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"disabledMonitorUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sendToUserMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendToUserType","preciseIdentifier":"s:11JellyfinAPI14SendToUserTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sendToUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(disabledMonitorUsers:disabledServices:isEnabled:sendToUserMode:sendToUsers:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18NotificationOptionV20disabledMonitorUsers0E8Services9isEnabled14sendToUserMode0klG04typeACSaySSGSg_AKSbSgAA04SendlM4TypeOSgAKSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/init(disabledMonitorUsers:disabledServices:isEnabled:sendToUserMode:sendToUsers:type:)":{"role":"symbol","title":"init(disabledMonitorUsers:disabledServices:isEnabled:sendToUserMode:sendToUsers:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"disabledMonitorUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"disabledServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sendToUserMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendToUserType","preciseIdentifier":"s:11JellyfinAPI14SendToUserTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sendToUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/init(disabledMonitorUsers:disabledServices:isEnabled:sendToUserMode:sendToUsers:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/init(disabledmonitorusers:disabledservices:isenabled:sendtousermode:sendtousers:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/init(from:).json new file mode 100644 index 000000000..837d81bd5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoption\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18NotificationOptionV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/isenabled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/isenabled.json new file mode 100644 index 000000000..540bc3a65 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/isenabled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoption\/isenabled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/isEnabled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Notifications.NotificationOption is enabled."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isEnabled","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18NotificationOptionV9isEnabledSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/isEnabled":{"role":"symbol","title":"isEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Notifications.NotificationOption is enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/isEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/isenabled"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/sendtousermode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/sendtousermode.json new file mode 100644 index 000000000..290863bcb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/sendtousermode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendToUserMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","preciseIdentifier":"s:11JellyfinAPI14SendToUserTypeO","text":"SendToUserType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoption\/sendtousermode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/sendToUserMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the send to user mode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendToUserMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendToUserType","preciseIdentifier":"s:11JellyfinAPI14SendToUserTypeO"},{"kind":"text","text":"?"}],"title":"sendToUserMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18NotificationOptionV14sendToUserModeAA04SendfG4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/sendToUserMode":{"role":"symbol","title":"sendToUserMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendToUserMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendToUserType","preciseIdentifier":"s:11JellyfinAPI14SendToUserTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the send to user mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/sendToUserMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/sendtousermode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/sendtousers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/sendtousers.json new file mode 100644 index 000000000..c0edb34fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/sendtousers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendToUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoption\/sendtousers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/sendToUsers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets user Ids to send to (if SendToUserMode == Custom)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendToUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sendToUsers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18NotificationOptionV11sendToUsersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/sendToUsers":{"role":"symbol","title":"sendToUsers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendToUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets user Ids to send to (if SendToUserMode == Custom)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/sendToUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/sendtousers"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/type.json new file mode 100644 index 000000000..e4456a41b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoption/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoption\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18NotificationOptionV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoption\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions.json new file mode 100644 index 000000000..7cd2d75f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOptions"}],"title":"NotificationOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI19NotificationOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NotificationOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/init(options:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/options"]}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions/init(options:)":{"role":"symbol","title":"init(options:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationOption","preciseIdentifier":"s:11JellyfinAPI18NotificationOptionV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/init(options:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoptions\/init(options:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions":{"role":"symbol","title":"NotificationOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOptions"}],"url":"\/documentation\/jellyfinapi\/notificationoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions/options":{"role":"symbol","title":"options","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationOption","preciseIdentifier":"s:11JellyfinAPI18NotificationOptionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/options","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoptions\/options"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions/init(from:).json new file mode 100644 index 000000000..f9e7e974f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19NotificationOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions":{"role":"symbol","title":"NotificationOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOptions"}],"url":"\/documentation\/jellyfinapi\/notificationoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions/init(options:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions/init(options:).json new file mode 100644 index 000000000..293a2aaf6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions/init(options:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","preciseIdentifier":"s:11JellyfinAPI18NotificationOptionV","text":"NotificationOption"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoptions\/init(options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/init(options:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationOption","preciseIdentifier":"s:11JellyfinAPI18NotificationOptionV"},{"kind":"text","text":"]?)"}],"title":"init(options:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19NotificationOptionsV7optionsACSayAA0C6OptionVGSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions":{"role":"symbol","title":"NotificationOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOptions"}],"url":"\/documentation\/jellyfinapi\/notificationoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions/init(options:)":{"role":"symbol","title":"init(options:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationOption","preciseIdentifier":"s:11JellyfinAPI18NotificationOptionV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/init(options:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoptions\/init(options:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions/options.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions/options.json new file mode 100644 index 000000000..a8d4c92a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationoptions/options.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","preciseIdentifier":"s:11JellyfinAPI18NotificationOptionV","text":"NotificationOption"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationoptions\/options"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/options","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationOption","preciseIdentifier":"s:11JellyfinAPI18NotificationOptionV"},{"kind":"text","text":"]?"}],"title":"options","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19NotificationOptionsV7optionsSayAA0C6OptionVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions":{"role":"symbol","title":"NotificationOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOptions"}],"url":"\/documentation\/jellyfinapi\/notificationoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOptions/options":{"role":"symbol","title":"options","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationOption","preciseIdentifier":"s:11JellyfinAPI18NotificationOptionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOptions\/options","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationoptions\/options"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationOption":{"role":"symbol","title":"NotificationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationOption"}],"url":"\/documentation\/jellyfinapi\/notificationoption"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto.json new file mode 100644 index 000000000..4888d0eba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationResultDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationresultdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A list of notifications with the total record count for pagination."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationResultDto"}],"title":"NotificationResultDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI21NotificationResultDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NotificationResultDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/init(notifications:totalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/notifications","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/totalRecordCount"]}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto/init(notifications:totalRecordCount:)":{"role":"symbol","title":"init(notifications:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"notifications"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationDto","preciseIdentifier":"s:11JellyfinAPI15NotificationDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/init(notifications:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationresultdto\/init(notifications:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto/notifications":{"role":"symbol","title":"notifications","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"notifications"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationDto","preciseIdentifier":"s:11JellyfinAPI15NotificationDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the current page of notifications."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/notifications","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationresultdto\/notifications"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of notifications."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationresultdto\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto":{"role":"symbol","title":"NotificationResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationResultDto"}],"abstract":[{"type":"text","text":"A list of notifications with the total record count for pagination."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationResultDto"}],"url":"\/documentation\/jellyfinapi\/notificationresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationresultdto\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/init(from:).json new file mode 100644 index 000000000..12e7eeccd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationresultdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21NotificationResultDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationresultdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto":{"role":"symbol","title":"NotificationResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationResultDto"}],"abstract":[{"type":"text","text":"A list of notifications with the total record count for pagination."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationResultDto"}],"url":"\/documentation\/jellyfinapi\/notificationresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/init(notifications:totalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/init(notifications:totalrecordcount:).json new file mode 100644 index 000000000..6ff256f43 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/init(notifications:totalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"notifications"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","preciseIdentifier":"s:11JellyfinAPI15NotificationDtoV","text":"NotificationDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationresultdto\/init(notifications:totalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/init(notifications:totalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"notifications"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationDto","preciseIdentifier":"s:11JellyfinAPI15NotificationDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(notifications:totalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21NotificationResultDtoV13notifications16totalRecordCountACSayAA0cE0VGSg_s5Int32VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto":{"role":"symbol","title":"NotificationResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationResultDto"}],"abstract":[{"type":"text","text":"A list of notifications with the total record count for pagination."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationResultDto"}],"url":"\/documentation\/jellyfinapi\/notificationresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto/init(notifications:totalRecordCount:)":{"role":"symbol","title":"init(notifications:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"notifications"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationDto","preciseIdentifier":"s:11JellyfinAPI15NotificationDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/init(notifications:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationresultdto\/init(notifications:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/notifications.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/notifications.json new file mode 100644 index 000000000..b3722b828 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/notifications.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"notifications"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","preciseIdentifier":"s:11JellyfinAPI15NotificationDtoV","text":"NotificationDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationresultdto\/notifications"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/notifications","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the current page of notifications."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"notifications"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationDto","preciseIdentifier":"s:11JellyfinAPI15NotificationDtoV"},{"kind":"text","text":"]?"}],"title":"notifications","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21NotificationResultDtoV13notificationsSayAA0cE0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationDto":{"role":"symbol","title":"NotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationDto"}],"abstract":[{"type":"text","text":"The notification DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationDto"}],"url":"\/documentation\/jellyfinapi\/notificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto":{"role":"symbol","title":"NotificationResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationResultDto"}],"abstract":[{"type":"text","text":"A list of notifications with the total record count for pagination."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationResultDto"}],"url":"\/documentation\/jellyfinapi\/notificationresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto/notifications":{"role":"symbol","title":"notifications","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"notifications"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NotificationDto","preciseIdentifier":"s:11JellyfinAPI15NotificationDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the current page of notifications."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/notifications","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationresultdto\/notifications"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/totalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/totalrecordcount.json new file mode 100644 index 000000000..860759b01 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationresultdto/totalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationresultdto\/totalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/totalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the total number of notifications."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"totalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI21NotificationResultDtoV16totalRecordCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of notifications."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationresultdto\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto":{"role":"symbol","title":"NotificationResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationResultDto"}],"abstract":[{"type":"text","text":"A list of notifications with the total record count for pagination."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationResultDto"}],"url":"\/documentation\/jellyfinapi\/notificationresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto.json new file mode 100644 index 000000000..df4adba81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationsSummaryDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationssummarydto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The notification summary DTO."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationsSummaryDto"}],"title":"NotificationsSummaryDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI23NotificationsSummaryDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NotificationsSummaryDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/init(maxUnreadNotificationLevel:unreadCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/maxUnreadNotificationLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/unreadCount"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto/init(maxUnreadNotificationLevel:unreadCount:)":{"role":"symbol","title":"init(maxUnreadNotificationLevel:unreadCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxUnreadNotificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/init(maxUnreadNotificationLevel:unreadCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationssummarydto\/init(maxunreadnotificationlevel:unreadcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto/unreadCount":{"role":"symbol","title":"unreadCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the number of unread notifications."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/unreadCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationssummarydto\/unreadcount"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto/maxUnreadNotificationLevel":{"role":"symbol","title":"maxUnreadNotificationLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxUnreadNotificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum unread notification level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/maxUnreadNotificationLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationssummarydto\/maxunreadnotificationlevel"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationssummarydto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto":{"role":"symbol","title":"NotificationsSummaryDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationsSummaryDto"}],"abstract":[{"type":"text","text":"The notification summary DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationsSummaryDto"}],"url":"\/documentation\/jellyfinapi\/notificationssummarydto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/init(from:).json new file mode 100644 index 000000000..8037d8add --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationssummarydto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23NotificationsSummaryDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationssummarydto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto":{"role":"symbol","title":"NotificationsSummaryDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationsSummaryDto"}],"abstract":[{"type":"text","text":"The notification summary DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationsSummaryDto"}],"url":"\/documentation\/jellyfinapi\/notificationssummarydto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/init(maxunreadnotificationlevel:unreadcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/init(maxunreadnotificationlevel:unreadcount:).json new file mode 100644 index 000000000..5b5917c24 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/init(maxunreadnotificationlevel:unreadcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxUnreadNotificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO","text":"NotificationLevel"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationssummarydto\/init(maxunreadnotificationlevel:unreadcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/init(maxUnreadNotificationLevel:unreadCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxUnreadNotificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(maxUnreadNotificationLevel:unreadCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23NotificationsSummaryDtoV26maxUnreadNotificationLevel11unreadCountAcA0hI0OSg_s5Int32VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto":{"role":"symbol","title":"NotificationsSummaryDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationsSummaryDto"}],"abstract":[{"type":"text","text":"The notification summary DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationsSummaryDto"}],"url":"\/documentation\/jellyfinapi\/notificationssummarydto"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto/init(maxUnreadNotificationLevel:unreadCount:)":{"role":"symbol","title":"init(maxUnreadNotificationLevel:unreadCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxUnreadNotificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/init(maxUnreadNotificationLevel:unreadCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationssummarydto\/init(maxunreadnotificationlevel:unreadcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/maxunreadnotificationlevel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/maxunreadnotificationlevel.json new file mode 100644 index 000000000..2779bf002 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/maxunreadnotificationlevel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxUnreadNotificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO","text":"NotificationLevel"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationssummarydto\/maxunreadnotificationlevel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/maxUnreadNotificationLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum unread notification level."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxUnreadNotificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?"}],"title":"maxUnreadNotificationLevel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23NotificationsSummaryDtoV26maxUnreadNotificationLevelAA0hI0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationLevel":{"role":"symbol","title":"NotificationLevel","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationLevel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationLevel"}],"url":"\/documentation\/jellyfinapi\/notificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto/maxUnreadNotificationLevel":{"role":"symbol","title":"maxUnreadNotificationLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxUnreadNotificationLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NotificationLevel","preciseIdentifier":"s:11JellyfinAPI17NotificationLevelO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum unread notification level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/maxUnreadNotificationLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationssummarydto\/maxunreadnotificationlevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto":{"role":"symbol","title":"NotificationsSummaryDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationsSummaryDto"}],"abstract":[{"type":"text","text":"The notification summary DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationsSummaryDto"}],"url":"\/documentation\/jellyfinapi\/notificationssummarydto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/unreadcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/unreadcount.json new file mode 100644 index 000000000..fce29964d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationssummarydto/unreadcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationssummarydto\/unreadcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/unreadCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the number of unread notifications."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unreadCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23NotificationsSummaryDtoV11unreadCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto":{"role":"symbol","title":"NotificationsSummaryDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationsSummaryDto"}],"abstract":[{"type":"text","text":"The notification summary DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationsSummaryDto"}],"url":"\/documentation\/jellyfinapi\/notificationssummarydto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto/unreadCount":{"role":"symbol","title":"unreadCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unreadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the number of unread notifications."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto\/unreadCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationssummarydto\/unreadcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo.json new file mode 100644 index 000000000..7e9f9d844 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationtypeinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"title":"NotificationTypeInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20NotificationTypeInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/init(category:isEnabled:isBasedOnUserEvent:name:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/category","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/isBasedOnUserEvent","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/isEnabled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/type"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/type"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/init(category:isEnabled:isBasedOnUserEvent:name:type:)":{"role":"symbol","title":"init(category:isEnabled:isBasedOnUserEvent:name:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBasedOnUserEvent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/init(category:isEnabled:isBasedOnUserEvent:name:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/init(category:isenabled:isbasedonuserevent:name:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo":{"role":"symbol","title":"NotificationTypeInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}],"url":"\/documentation\/jellyfinapi\/notificationtypeinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/isBasedOnUserEvent":{"role":"symbol","title":"isBasedOnUserEvent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBasedOnUserEvent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/isBasedOnUserEvent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/isbasedonuserevent"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/category":{"role":"symbol","title":"category","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/category","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/category"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/isEnabled":{"role":"symbol","title":"isEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/isEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/isenabled"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/category.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/category.json new file mode 100644 index 000000000..36a090aff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/category.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationtypeinfo\/category"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/category","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"category","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NotificationTypeInfoV8categorySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo":{"role":"symbol","title":"NotificationTypeInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}],"url":"\/documentation\/jellyfinapi\/notificationtypeinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/category":{"role":"symbol","title":"category","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/category","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/category"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/init(category:isenabled:isbasedonuserevent:name:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/init(category:isenabled:isbasedonuserevent:name:type:).json new file mode 100644 index 000000000..4de3f959c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/init(category:isenabled:isbasedonuserevent:name:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBasedOnUserEvent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationtypeinfo\/init(category:isenabled:isbasedonuserevent:name:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/init(category:isEnabled:isBasedOnUserEvent:name:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBasedOnUserEvent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(category:isEnabled:isBasedOnUserEvent:name:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20NotificationTypeInfoV8category9isEnabled0G16BasedOnUserEvent4name4typeACSSSg_SbSgAj2Itcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/init(category:isEnabled:isBasedOnUserEvent:name:type:)":{"role":"symbol","title":"init(category:isEnabled:isBasedOnUserEvent:name:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBasedOnUserEvent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/init(category:isEnabled:isBasedOnUserEvent:name:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/init(category:isenabled:isbasedonuserevent:name:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo":{"role":"symbol","title":"NotificationTypeInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}],"url":"\/documentation\/jellyfinapi\/notificationtypeinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/init(from:).json new file mode 100644 index 000000000..461c1738a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationtypeinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20NotificationTypeInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo":{"role":"symbol","title":"NotificationTypeInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}],"url":"\/documentation\/jellyfinapi\/notificationtypeinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/isbasedonuserevent.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/isbasedonuserevent.json new file mode 100644 index 000000000..6a66b94d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/isbasedonuserevent.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBasedOnUserEvent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationtypeinfo\/isbasedonuserevent"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/isBasedOnUserEvent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBasedOnUserEvent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBasedOnUserEvent","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NotificationTypeInfoV18isBasedOnUserEventSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo":{"role":"symbol","title":"NotificationTypeInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}],"url":"\/documentation\/jellyfinapi\/notificationtypeinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/isBasedOnUserEvent":{"role":"symbol","title":"isBasedOnUserEvent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBasedOnUserEvent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/isBasedOnUserEvent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/isbasedonuserevent"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/isenabled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/isenabled.json new file mode 100644 index 000000000..40ada824c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/isenabled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationtypeinfo\/isenabled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/isEnabled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isEnabled","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NotificationTypeInfoV9isEnabledSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo":{"role":"symbol","title":"NotificationTypeInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}],"url":"\/documentation\/jellyfinapi\/notificationtypeinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/isEnabled":{"role":"symbol","title":"isEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/isEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/isenabled"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/name.json new file mode 100644 index 000000000..7ad0de73f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationtypeinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NotificationTypeInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo":{"role":"symbol","title":"NotificationTypeInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}],"url":"\/documentation\/jellyfinapi\/notificationtypeinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/type.json new file mode 100644 index 000000000..55d3a0ec2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/notificationtypeinfo/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/notificationtypeinfo\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20NotificationTypeInfoV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/notificationtypeinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo":{"role":"symbol","title":"NotificationTypeInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}],"url":"\/documentation\/jellyfinapi\/notificationtypeinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate.json new file mode 100644 index 000000000..062b73d2c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ObjectGroupUpdate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/objectgroupupdate"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class GroupUpdate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ObjectGroupUpdate"}],"title":"ObjectGroupUpdate","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17ObjectGroupUpdateV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ObjectGroupUpdate"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/init(data:groupID:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/data","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/groupID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/type"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate/data":{"role":"symbol","title":"data","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the update data."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/data","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/objectgroupupdate\/data"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate/init(data:groupID:type:)":{"role":"symbol","title":"init(data:groupID:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupUpdateType","preciseIdentifier":"s:11JellyfinAPI15GroupUpdateTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/init(data:groupID:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/objectgroupupdate\/init(data:groupid:type:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupUpdateType","preciseIdentifier":"s:11JellyfinAPI15GroupUpdateTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the update type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/objectgroupupdate\/type"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/objectgroupupdate\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate/groupID":{"role":"symbol","title":"groupID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the group identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/groupID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/objectgroupupdate\/groupid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate":{"role":"symbol","title":"ObjectGroupUpdate","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ObjectGroupUpdate"}],"abstract":[{"type":"text","text":"Class GroupUpdate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ObjectGroupUpdate"}],"url":"\/documentation\/jellyfinapi\/objectgroupupdate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/data.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/data.json new file mode 100644 index 000000000..ea3b18c50 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/data.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO","text":"AnyJSON"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/objectgroupupdate\/data"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/data","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the update data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"?"}],"title":"data","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17ObjectGroupUpdateV4dataAA7AnyJSONOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate/data":{"role":"symbol","title":"data","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the update data."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/data","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/objectgroupupdate\/data"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate":{"role":"symbol","title":"ObjectGroupUpdate","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ObjectGroupUpdate"}],"abstract":[{"type":"text","text":"Class GroupUpdate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ObjectGroupUpdate"}],"url":"\/documentation\/jellyfinapi\/objectgroupupdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/groupid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/groupid.json new file mode 100644 index 000000000..1e94a2270 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/groupid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/objectgroupupdate\/groupid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/groupID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the group identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"groupID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17ObjectGroupUpdateV7groupID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate/groupID":{"role":"symbol","title":"groupID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the group identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/groupID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/objectgroupupdate\/groupid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate":{"role":"symbol","title":"ObjectGroupUpdate","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ObjectGroupUpdate"}],"abstract":[{"type":"text","text":"Class GroupUpdate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ObjectGroupUpdate"}],"url":"\/documentation\/jellyfinapi\/objectgroupupdate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/init(data:groupid:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/init(data:groupid:type:).json new file mode 100644 index 000000000..e83658ac6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/init(data:groupid:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO","text":"AnyJSON"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","preciseIdentifier":"s:11JellyfinAPI15GroupUpdateTypeO","text":"GroupUpdateType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/objectgroupupdate\/init(data:groupid:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/init(data:groupID:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupUpdateType","preciseIdentifier":"s:11JellyfinAPI15GroupUpdateTypeO"},{"kind":"text","text":"?)"}],"title":"init(data:groupID:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17ObjectGroupUpdateV4data7groupID4typeAcA7AnyJSONOSg_10Foundation4UUIDVSgAA0dE4TypeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate":{"role":"symbol","title":"ObjectGroupUpdate","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ObjectGroupUpdate"}],"abstract":[{"type":"text","text":"Class GroupUpdate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ObjectGroupUpdate"}],"url":"\/documentation\/jellyfinapi\/objectgroupupdate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate/init(data:groupID:type:)":{"role":"symbol","title":"init(data:groupID:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupUpdateType","preciseIdentifier":"s:11JellyfinAPI15GroupUpdateTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/init(data:groupID:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/objectgroupupdate\/init(data:groupid:type:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/init(from:).json new file mode 100644 index 000000000..b9ec0eb7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/objectgroupupdate\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17ObjectGroupUpdateV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate":{"role":"symbol","title":"ObjectGroupUpdate","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ObjectGroupUpdate"}],"abstract":[{"type":"text","text":"Class GroupUpdate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ObjectGroupUpdate"}],"url":"\/documentation\/jellyfinapi\/objectgroupupdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/objectgroupupdate\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/type.json new file mode 100644 index 000000000..67309b9c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/objectgroupupdate/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","preciseIdentifier":"s:11JellyfinAPI15GroupUpdateTypeO","text":"GroupUpdateType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/objectgroupupdate\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the update type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupUpdateType","preciseIdentifier":"s:11JellyfinAPI15GroupUpdateTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17ObjectGroupUpdateV4typeAA0dE4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate":{"role":"symbol","title":"ObjectGroupUpdate","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ObjectGroupUpdate"}],"abstract":[{"type":"text","text":"Class GroupUpdate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ObjectGroupUpdate"}],"url":"\/documentation\/jellyfinapi\/objectgroupupdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ObjectGroupUpdate/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupUpdateType","preciseIdentifier":"s:11JellyfinAPI15GroupUpdateTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the update type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ObjectGroupUpdate\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/objectgroupupdate\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupUpdateType":{"role":"symbol","title":"GroupUpdateType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupUpdateType"}],"abstract":[{"type":"text","text":"Enum GroupUpdateType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupUpdateType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupUpdateType"}],"url":"\/documentation\/jellyfinapi\/groupupdatetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto.json new file mode 100644 index 000000000..68cae9a7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Open live stream dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"title":"OpenLiveStreamDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/init(audioStreamIndex:deviceProfile:directPlayProtocols:enableDirectPlay:enableDirectStream:itemID:maxAudioChannels:maxStreamingBitrate:openToken:playSessionID:startTimeTicks:subtitleStreamIndex:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/deviceProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/directPlayProtocols","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/enableDirectPlay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/enableDirectStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/openToken","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle stream index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the audio stream index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/directPlayProtocols":{"role":"symbol","title":"directPlayProtocols","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayProtocols"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the device play protocols."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/directPlayProtocols","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/directplayprotocols"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play session id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max audio channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/deviceProfile":{"role":"symbol","title":"deviceProfile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/deviceProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/init(audioStreamIndex:deviceProfile:directPlayProtocols:enableDirectPlay:enableDirectStream:itemID:maxAudioChannels:maxStreamingBitrate:openToken:playSessionID:startTimeTicks:subtitleStreamIndex:userID:)":{"role":"symbol","title":"init(audioStreamIndex:deviceProfile:directPlayProtocols:enableDirectPlay:enableDirectStream:itemID:maxAudioChannels:maxStreamingBitrate:openToken:playSessionID:startTimeTicks:subtitleStreamIndex:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"directPlayProtocols"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/init(audioStreamIndex:deviceProfile:directPlayProtocols:enableDirectPlay:enableDirectStream:itemID:maxAudioChannels:maxStreamingBitrate:openToken:playSessionID:startTimeTicks:subtitleStreamIndex:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/init(audiostreamindex:deviceprofile:directplayprotocols:enabledirectplay:enabledirectstream:itemid:maxaudiochannels:maxstreamingbitrate:opentoken:playsessionid:starttimeticks:subtitlestreamindex:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/enableDirectPlay":{"role":"symbol","title":"enableDirectPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable direct play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/enableDirectPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/enabledirectplay"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start time in ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/starttimeticks"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/enableDirectStream":{"role":"symbol","title":"enableDirectStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enale direct stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/enableDirectStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/enabledirectstream"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/openToken":{"role":"symbol","title":"openToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the open token."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/openToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/opentoken"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max streaming bitrate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/maxstreamingbitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/audiostreamindex.json new file mode 100644 index 000000000..bc2a4e390 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the audio stream index."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV05audioE5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the audio stream index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/deviceprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/deviceprofile.json new file mode 100644 index 000000000..90972d337 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/deviceprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV","text":"DeviceProfile"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Specifically, it defines the supported "},{"type":"text","text":"containers"},{"type":"text","text":" and"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"codecs"},{"type":"text","text":" (video and\/or audio, including codec profiles and levels)"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"the device is able to direct play (without transcoding or remuxing),"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"as well as which "},{"type":"text","text":"containers\/codecs to transcode to"},{"type":"text","text":" in case it isn’t."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/deviceprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/deviceProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"title":"deviceProfile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV13deviceProfileAA06DeviceH0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/deviceProfile":{"role":"symbol","title":"deviceProfile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/deviceProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/directplayprotocols.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/directplayprotocols.json new file mode 100644 index 000000000..5829e5c5e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/directplayprotocols.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayProtocols"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO","text":"MediaProtocol"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/directplayprotocols"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/directPlayProtocols","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the device play protocols."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayProtocols"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"]?"}],"title":"directPlayProtocols","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV19directPlayProtocolsSayAA13MediaProtocolOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/directPlayProtocols":{"role":"symbol","title":"directPlayProtocols","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayProtocols"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the device play protocols."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/directPlayProtocols","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/directplayprotocols"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/enabledirectplay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/enabledirectplay.json new file mode 100644 index 000000000..56c15966e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/enabledirectplay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/enabledirectplay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/enableDirectPlay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable direct play."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDirectPlay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV16enableDirectPlaySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/enableDirectPlay":{"role":"symbol","title":"enableDirectPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable direct play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/enableDirectPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/enabledirectplay"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/enabledirectstream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/enabledirectstream.json new file mode 100644 index 000000000..fb1e045d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/enabledirectstream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/enabledirectstream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/enableDirectStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enale direct stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDirectStream","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV012enableDirectE0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/enableDirectStream":{"role":"symbol","title":"enableDirectStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enale direct stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/enableDirectStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/enabledirectstream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/init(audiostreamindex:deviceprofile:directplayprotocols:enabledirectplay:enabledirectstream:itemid:maxaudiochannels:maxstreamingbitrate:opentoken:playsessionid:starttimeticks:subtitlestreamindex:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/init(audiostreamindex:deviceprofile:directplayprotocols:enabledirectplay:enabledirectstream:itemid:maxaudiochannels:maxstreamingbitrate:opentoken:playsessionid:starttimeticks:subtitlestreamindex:userid:).json new file mode 100644 index 000000000..ea7972698 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/init(audiostreamindex:deviceprofile:directplayprotocols:enabledirectplay:enabledirectstream:itemid:maxaudiochannels:maxstreamingbitrate:opentoken:playsessionid:starttimeticks:subtitlestreamindex:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV","text":"DeviceProfile"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"directPlayProtocols"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO","text":"MediaProtocol"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/init(audiostreamindex:deviceprofile:directplayprotocols:enabledirectplay:enabledirectstream:itemid:maxaudiochannels:maxstreamingbitrate:opentoken:playsessionid:starttimeticks:subtitlestreamindex:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/init(audioStreamIndex:deviceProfile:directPlayProtocols:enableDirectPlay:enableDirectStream:itemID:maxAudioChannels:maxStreamingBitrate:openToken:playSessionID:startTimeTicks:subtitleStreamIndex:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"directPlayProtocols"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(audioStreamIndex:deviceProfile:directPlayProtocols:enableDirectPlay:enableDirectStream:itemID:maxAudioChannels:maxStreamingBitrate:openToken:playSessionID:startTimeTicks:subtitleStreamIndex:userID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV05audioE5Index13deviceProfile19directPlayProtocols012enableDirectL00noE06itemID16maxAudioChannels0R16StreamingBitrate9openToken011playSessionQ014startTimeTicks08subtitleeH004userQ0ACs5Int32VSg_AA06DeviceJ0VSgSayAA13MediaProtocolOGSgSbSgA_10Foundation4UUIDVSgA2SSSSgA4_s5Int64VSgASA3_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaProtocol":{"role":"symbol","title":"MediaProtocol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaProtocol"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaProtocol"}],"url":"\/documentation\/jellyfinapi\/mediaprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/init(audioStreamIndex:deviceProfile:directPlayProtocols:enableDirectPlay:enableDirectStream:itemID:maxAudioChannels:maxStreamingBitrate:openToken:playSessionID:startTimeTicks:subtitleStreamIndex:userID:)":{"role":"symbol","title":"init(audioStreamIndex:deviceProfile:directPlayProtocols:enableDirectPlay:enableDirectStream:itemID:maxAudioChannels:maxStreamingBitrate:openToken:playSessionID:startTimeTicks:subtitleStreamIndex:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"directPlayProtocols"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaProtocol","preciseIdentifier":"s:11JellyfinAPI13MediaProtocolO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/init(audioStreamIndex:deviceProfile:directPlayProtocols:enableDirectPlay:enableDirectStream:itemID:maxAudioChannels:maxStreamingBitrate:openToken:playSessionID:startTimeTicks:subtitleStreamIndex:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/init(audiostreamindex:deviceprofile:directplayprotocols:enabledirectplay:enabledirectstream:itemid:maxaudiochannels:maxstreamingbitrate:opentoken:playsessionid:starttimeticks:subtitlestreamindex:userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/init(from:).json new file mode 100644 index 000000000..41dfd392b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/itemid.json new file mode 100644 index 000000000..41de6389e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/maxaudiochannels.json new file mode 100644 index 000000000..9a4a8aa04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the max audio channels."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max audio channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/maxstreamingbitrate.json new file mode 100644 index 000000000..db4ab085c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the max streaming bitrate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max streaming bitrate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/maxstreamingbitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/opentoken.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/opentoken.json new file mode 100644 index 000000000..48f8e294d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/opentoken.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/opentoken"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/openToken","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the open token."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"openToken","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV9openTokenSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/openToken":{"role":"symbol","title":"openToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the open token."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/openToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/opentoken"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/playsessionid.json new file mode 100644 index 000000000..645253846 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play session id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play session id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/starttimeticks.json new file mode 100644 index 000000000..ce003e628 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start time in ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start time in ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/subtitlestreamindex.json new file mode 100644 index 000000000..d542f910a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the subtitle stream index."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV08subtitleE5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle stream index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/subtitlestreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/userid.json new file mode 100644 index 000000000..6d4b3a953 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/openlivestreamdto/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/openlivestreamdto\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the user id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17OpenLiveStreamDtoV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/openlivestreamdto\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo.json new file mode 100644 index 000000000..d4cb4b6fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class PackageInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"title":"PackageInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11PackageInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/init(category:description:guid:imageURL:name:overview:owner:versions:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/category","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/description","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/guid","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/imageURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/overview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/owner","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/versions"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/owner":{"role":"symbol","title":"owner","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"owner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the owner."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/owner","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/owner"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/init(category:description:guid:imageURL:name:overview:owner:versions:)":{"role":"symbol","title":"init(category:description:guid:imageURL:name:overview:owner:versions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"owner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"versions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"VersionInfo","preciseIdentifier":"s:11JellyfinAPI11VersionInfoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/init(category:description:guid:imageURL:name:overview:owner:versions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/init(category:description:guid:imageurl:name:overview:owner:versions:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/guid":{"role":"symbol","title":"guid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the guid of the assembly associated with this plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/guid","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/guid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/versions":{"role":"symbol","title":"versions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"versions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"VersionInfo","preciseIdentifier":"s:11JellyfinAPI11VersionInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the versions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/versions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/versions"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/imageURL":{"role":"symbol","title":"imageURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the image url for the package."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/imageURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/imageurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/category":{"role":"symbol","title":"category","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the category."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/category","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/category"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a long description of the plugin containing features or helpful explanations."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/description"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a short overview of what the plugin does."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/overview"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/category.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/category.json new file mode 100644 index 000000000..df9286b11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/category.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo\/category"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/category","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the category."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"category","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PackageInfoV8categorySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/category":{"role":"symbol","title":"category","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the category."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/category","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/category"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/description.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/description.json new file mode 100644 index 000000000..8ae7616fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/description.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a long description of the plugin containing features or helpful explanations."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PackageInfoV11descriptionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a long description of the plugin containing features or helpful explanations."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/description"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/guid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/guid.json new file mode 100644 index 000000000..b3ce94c60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/guid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This is used to identify the proper item for automatic updates."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo\/guid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/guid","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the guid of the assembly associated with this plugin."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"guid","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PackageInfoV4guid10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/guid":{"role":"symbol","title":"guid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the guid of the assembly associated with this plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/guid","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/guid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/imageurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/imageurl.json new file mode 100644 index 000000000..85892ac6f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/imageurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo\/imageurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/imageURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the image url for the package."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"imageURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PackageInfoV8imageURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/imageURL":{"role":"symbol","title":"imageURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the image url for the package."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/imageURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/imageurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/init(category:description:guid:imageurl:name:overview:owner:versions:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/init(category:description:guid:imageurl:name:overview:owner:versions:).json new file mode 100644 index 000000000..27454ca63 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/init(category:description:guid:imageurl:name:overview:owner:versions:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"owner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"versions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","preciseIdentifier":"s:11JellyfinAPI11VersionInfoV","text":"VersionInfo"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo\/init(category:description:guid:imageurl:name:overview:owner:versions:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/init(category:description:guid:imageURL:name:overview:owner:versions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"owner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"versions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"VersionInfo","preciseIdentifier":"s:11JellyfinAPI11VersionInfoV"},{"kind":"text","text":"]?)"}],"title":"init(category:description:guid:imageURL:name:overview:owner:versions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11PackageInfoV8category11description4guid8imageURL4name8overview5owner8versionsACSSSg_AL10Foundation4UUIDVSgA4LSayAA07VersionD0VGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/init(category:description:guid:imageURL:name:overview:owner:versions:)":{"role":"symbol","title":"init(category:description:guid:imageURL:name:overview:owner:versions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"guid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"owner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"versions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"VersionInfo","preciseIdentifier":"s:11JellyfinAPI11VersionInfoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/init(category:description:guid:imageURL:name:overview:owner:versions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/init(category:description:guid:imageurl:name:overview:owner:versions:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/init(from:).json new file mode 100644 index 000000000..3c665d6b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11PackageInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/name.json new file mode 100644 index 000000000..04149941a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PackageInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/overview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/overview.json new file mode 100644 index 000000000..450fb44c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/overview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo\/overview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/overview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a short overview of what the plugin does."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"overview","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PackageInfoV8overviewSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a short overview of what the plugin does."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/owner.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/owner.json new file mode 100644 index 000000000..969351488 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/owner.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"owner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo\/owner"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/owner","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the owner."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"owner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"owner","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PackageInfoV5ownerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/owner":{"role":"symbol","title":"owner","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"owner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the owner."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/owner","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/owner"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/versions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/versions.json new file mode 100644 index 000000000..3a78b3401 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/packageinfo/versions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"versions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","preciseIdentifier":"s:11JellyfinAPI11VersionInfoV","text":"VersionInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/packageinfo\/versions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/versions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the versions."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"versions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"VersionInfo","preciseIdentifier":"s:11JellyfinAPI11VersionInfoV"},{"kind":"text","text":"]?"}],"title":"versions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PackageInfoV8versionsSayAA07VersionD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo/versions":{"role":"symbol","title":"versions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"versions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"VersionInfo","preciseIdentifier":"s:11JellyfinAPI11VersionInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the versions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo\/versions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/packageinfo\/versions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating.json new file mode 100644 index 000000000..2c8e8a360 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/parentalrating"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class ParentalRating."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"title":"ParentalRating","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14ParentalRatingV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ParentalRating"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/init(name:value:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/value"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating/init(name:value:)":{"role":"symbol","title":"init(name:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/init(name:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/parentalrating\/init(name:value:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/parentalrating\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating":{"role":"symbol","title":"ParentalRating","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"abstract":[{"type":"text","text":"Class ParentalRating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ParentalRating"}],"url":"\/documentation\/jellyfinapi\/parentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/parentalrating\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the value."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/parentalrating\/value"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/init(from:).json new file mode 100644 index 000000000..5d5f9015f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/parentalrating\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14ParentalRatingV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating":{"role":"symbol","title":"ParentalRating","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"abstract":[{"type":"text","text":"Class ParentalRating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ParentalRating"}],"url":"\/documentation\/jellyfinapi\/parentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/parentalrating\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/init(name:value:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/init(name:value:).json new file mode 100644 index 000000000..ff4d5ab44 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/init(name:value:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/parentalrating\/init(name:value:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/init(name:value:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(name:value:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14ParentalRatingV4name5valueACSSSg_s5Int32VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating":{"role":"symbol","title":"ParentalRating","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"abstract":[{"type":"text","text":"Class ParentalRating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ParentalRating"}],"url":"\/documentation\/jellyfinapi\/parentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating/init(name:value:)":{"role":"symbol","title":"init(name:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/init(name:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/parentalrating\/init(name:value:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/name.json new file mode 100644 index 000000000..80cc4e5a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/parentalrating\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14ParentalRatingV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/parentalrating\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating":{"role":"symbol","title":"ParentalRating","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"abstract":[{"type":"text","text":"Class ParentalRating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ParentalRating"}],"url":"\/documentation\/jellyfinapi\/parentalrating"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/value.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/value.json new file mode 100644 index 000000000..42ec7aecb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/parentalrating/value.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/parentalrating\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14ParentalRatingV5values5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the value."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/parentalrating\/value"},"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating":{"role":"symbol","title":"ParentalRating","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"abstract":[{"type":"text","text":"Class ParentalRating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ParentalRating"}],"url":"\/documentation\/jellyfinapi\/parentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths.json new file mode 100644 index 000000000..f8ac24a34 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"title":"Paths","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI5PathsO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Paths"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Structures","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters"]},{"title":"Type Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/completeWizard","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteCustomSplashscreen","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAllChannelFeatures","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAuthProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingCss","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingCss2","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConfiguration","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCountries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCultures","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCurrentUser","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultDirectoryBrowser","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultListingProvider","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultMetadataOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDrives","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEnabled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEndpointInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFallbackFontList","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFirstUser","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFirstUser2","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGeneralImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGuideInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getKeys","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLocalizationOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaInfoImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNetworkShares","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationServices","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPackages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getParentalRatings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPasswordResetProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPhysicalPaths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPingSystem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlugins","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProfileInfos","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPublicSystemInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPublicUsers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRatingImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRepositories","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSchedulesDirectCountries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getServerLogs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStartupConfiguration","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSystemInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTunerHostTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUtcTime","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVirtualFolders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getWakeOnLanInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/initiate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postPingSystem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/refreshLibrary","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportSessionEnded","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/restartApplication","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/shutdownApplication","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayGetGroups","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayLeaveGroup","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPause","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayStop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayUnpause","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/tmdbClientConfiguration"]},{"title":"Type Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addListingProvider(parameters:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addMediaPath(isRefreshLibrary:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addToCollection(collectionID:ids:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addToPlaylist(playlistID:ids:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addTunerHost(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addUserToSession(sessionID:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addVirtualFolder(parameters:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/applySearchCriteria(itemID:isReplaceAllImages:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateUser(userID:pw:password:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateUserByName(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateWithQuickConnect(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authorize(code:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelPackageInstallation(packageID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelSeriesTimer(timerID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelTimer(timerID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/closeLiveStream(liveStreamID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/connect(secret:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createAdminNotification(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createCollection(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createKey(app:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createPlaylist(parameters:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createProfile(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createSeriesTimer(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createTimer(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createUserByName(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteAlternateSources(itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteDevice(id:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItem(itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItemImage(itemID:imageType:imageIndex:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItemImageByIndex(itemID:imageType:imageIndex:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItems(ids:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteListingProvider(id:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteProfile(profileID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteRecording(recordingID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteSubtitle(itemID:index:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteTunerHost(id:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUser(userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserImage(userID:imageType:index:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserImageByIndex(userID:imageType:index:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserItemRating(userID:itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/disablePlugin(pluginID:version:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/discoverTuners(isNewDevicesOnly:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/discvoverTuners(isNewDevicesOnly:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/displayContent(sessionID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/downloadRemoteImage(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/downloadRemoteSubtitles(itemID:subtitleID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/enablePlugin(pluginID:version:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/forgotPassword(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/forgotPasswordPin(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/get(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAdditionalPart(itemID:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAlbumArtists(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAncestors(itemID:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtistByName(name:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtistImage(name:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtists(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAttachment(videoID:mediaSourceID:index:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAudioStream(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAudioStreamByContainer(itemID:container:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBitrateTestBytes(size:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBookRemoteSearchResults(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBoxSetRemoteSearchResults(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannel(channelID:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelFeatures(channelID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelItems(channelID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelMappingOptions(providerID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannels(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConfigurationPages(enableInMainMenu:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager2(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager3(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory2(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory3(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCriticReviews(itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDashboardConfigurationPage(name:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultTimer(programID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDescriptionXml(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDescriptionXml2(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDeviceInfo(id:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDeviceOptions(id:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDevices(isSupportsSync:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDirectoryContents(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDisplayPreferences(displayPreferencesID:userID:client:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDownload(itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEpisodes(seriesID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getExternalIDInfos(itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFallbackFont(name:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFile(itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGeneralImage(name:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenre(genreName:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenreImage(name:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenreImageByIndex(name:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenres(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGroupingOptions(userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegment(itemID:playlistID:segmentID:container:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegmentLegacyAac(itemID:segmentID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegmentLegacyMp3(itemID:segmentID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsPlaylistLegacy(itemID:playlistID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsVideoSegment(itemID:playlistID:segmentID:container:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsVideoSegmentLegacy(itemID:playlistID:segmentID:segmentContainer:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIcon(fileName:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIconID(serverID:fileName:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromAlbum(id:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromArtists(id:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromArtists2(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromItem(id:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromMusicGenreByID(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromMusicGenreByName(name:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromPlaylist(id:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromSong(id:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIntros(userID:itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItem(userID:itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemCounts(userID:isFavorite:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImage(itemID:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImageByIndex(itemID:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImageInfos(itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItems(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemsByUserID(userID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLatestChannelItems(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLatestMedia(userID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLibraryOptionsInfo(libraryContentType:isNewLibrary:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLineups(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveHlsStream(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveRecordingFile(recordingID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveStreamFile(streamID:container:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvChannels(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvPrograms(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLocalTrailers(userID:itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLogEntries(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLogFile(name:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMasterHlsAudioPlaylist(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMasterHlsVideoPlaylist(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaFolders(isHidden:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaInfoImage(theme:name:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar2(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar3(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMetadataEditorInfo(itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMovieRecommendations(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMovieRemoteSearchResults(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicAlbumRemoteSearchResults(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicArtistRemoteSearchResults(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenre(genreName:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenreImage(name:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenres(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicVideoRemoteSearchResults(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNamedConfiguration(key:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNextUp(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotifications(userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationsSummary(userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPackageInfo(name:assemblyGuid:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getParentPath(path:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPerson(name:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonImage(name:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonImageByIndex(name:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonRemoteSearchResults(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersons(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlaybackInfo(itemID:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlaylistItems(playlistID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginConfiguration(pluginID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginImage(pluginID:version:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginManifest(pluginID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPostedPlaybackInfo(itemID:parameters:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProfile(profileID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProgram(programID:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPrograms(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getQueryFilters(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getQueryFiltersLegacy(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRatingImage(theme:name:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecommendedPrograms(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecording(recordingID:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingFolders(userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingGroup(groupID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingGroups(userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordings(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingsSeries(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteImageProviders(itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteImages(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteSubtitles(id:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getResumeItems(userID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRootFolder(userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeasons(seriesID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesRemoteSearchResults(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesTimer(timerID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesTimers(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSessions(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarAlbums(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarArtists(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarItems(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarMovies(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarShows(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarTrailers(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSpecialFeatures(userID:itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSplashscreen(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudio(name:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudioImage(name:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudioImageByIndex(name:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudios(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitle(routeItemID:routeMediaSourceID:routeIndex:routeFormat:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitlePlaylist(itemID:index:mediaSourceID:segmentLength:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitleWithTicks(routeItemID:routeMediaSourceID:routeIndex:routeStartPositionTicks:routeFormat:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSuggestions(userID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTask(taskID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTasks(isHidden:isEnabled:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeMedia(itemID:userID:isInheritFromParent:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeSongs(itemID:userID:isInheritFromParent:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeVideos(itemID:userID:isInheritFromParent:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTimer(timerID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTimers(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTrailerRemoteSearchResults(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTrailers(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUniversalAudioStream(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUpcomingEpisodes(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserByID(userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserImage(userID:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserImageByIndex(userID:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserViews(userID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUsers(isHidden:isDisabled:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVariantHlsAudioPlaylist(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVariantHlsVideoPlaylist(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVideoStream(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVideoStreamByContainer(itemID:container:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getYear(year:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getYears(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headArtistImage(name:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headAudioStream(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headAudioStreamByContainer(itemID:container:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headGenreImage(name:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headGenreImageByIndex(name:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImage(itemID:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImageByIndex(itemID:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMasterHlsAudioPlaylist(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMasterHlsVideoPlaylist(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMusicGenreImage(name:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headPersonImage(name:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headPersonImageByIndex(name:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headStudioImage(name:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headStudioImageByIndex(name:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUniversalAudioStream(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUserImage(userID:imageType:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUserImageByIndex(userID:imageType:imageIndex:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headVideoStream(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headVideoStreamByContainer(itemID:container:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/installPackage(name:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/logFile(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markFavoriteItem(userID:itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markPlayedItem(userID:itemID:datePlayed:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markUnplayedItem(userID:itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/mergeVersions(ids:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/moveItem(playlistID:itemID:newIndex:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackProgress(userID:itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackStart(userID:itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackStopped(userID:itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/openLiveStream(parameters:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/pingPlaybackSession(playSessionID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/play(sessionID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postAddedMovies(tmdbID:imdbID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postAddedSeries(tvdbID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postCapabilities(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postFullCapabilities(id:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedMedia(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedMovies(tmdbID:imdbID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedSeries(tvdbID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUserImage(userID:imageType:index:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUserImageByIndex(userID:imageType:index:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processConnectionManagerControlRequest(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processContentDirectoryControlRequest(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processMediaReceiverRegistrarControlRequest(serverID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/refreshItem(itemID:parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeFromCollection(collectionID:ids:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeFromPlaylist(playlistID:entryIDs:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeMediaPath(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeUserFromSession(sessionID:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeVirtualFolder(name:isRefreshLibrary:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/renameVirtualFolder(parameters:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackProgress(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackStart(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackStopped(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportViewing(sessionID:itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/resetTuner(tunerID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/revokeKey(key:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/searchRemoteSubtitles(itemID:language:isPerfectMatch:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendFullGeneralCommand(sessionID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendGeneralCommand(sessionID:command:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendMessageCommand(sessionID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendPlaystateCommand(sessionID:command:seekPositionTicks:controllingUserID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendSystemCommand(sessionID:command:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setChannelMapping(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setItemImage(itemID:imageType:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setItemImageByIndex(itemID:imageType:imageIndex:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRead(userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRemoteAccess(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRepositories(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setUnread(userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/startTask(taskID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/stopEncodingProcess(deviceID:playSessionID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/stopTask(taskID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayBuffering(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayCreateGroup(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayJoinGroup(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayMovePlaylistItem(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayNextItem(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPing(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPreviousItem(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayQueue(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayReady(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayRemoveFromPlaylist(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySeek(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetIgnoreWait(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetNewQueue(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetPlaylistItem(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetRepeatMode(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetShuffleMode(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uninstallPlugin(pluginID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uninstallPluginByVersion(pluginID:version:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/unmarkFavoriteItem(userID:itemID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateConfiguration(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateDeviceOptions(id:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateDisplayPreferences(displayPreferencesID:userID:client:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateInitialConfiguration(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItem(itemID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItemContentType(itemID:contentType:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItemImageIndex(itemID:imageType:imageIndex:newIndex:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateLibraryOptions(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateMediaEncoderPath(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateMediaPath(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateNamedConfiguration(key:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updatePluginConfiguration(pluginID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateProfile(profileID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateSeriesTimer(timerID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateStartupUser(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateTask(taskID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateTimer(timerID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUser(userID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserConfiguration(userID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserEasyPassword(userID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserItemRating(userID:itemID:isLikes:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserPassword(userID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserPolicy(userID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uploadCustomSplashscreen(_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uploadSubtitle(itemID:_:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/validatePath(_:)"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPluginManifest(pluginID:)":{"role":"symbol","title":"getPluginManifest(pluginID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginManifest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a plugin’s manifest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginManifest(pluginID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpluginmanifest(pluginid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAudioStream(itemID:parameters:)":{"role":"symbol","title":"getAudioStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAudioStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getKeys":{"role":"symbol","title":"getKeys","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getKeys"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get all keys."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getKeys","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getkeys"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTrailerRemoteSearchResults(_:)":{"role":"symbol","title":"getTrailerRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTrailerRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TrailerInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get trailer remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTrailerRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailerremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/searchRemoteSubtitles(itemID:language:isPerfectMatch:)":{"role":"symbol","title":"searchRemoteSubtitles(itemID:language:isPerfectMatch:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSubtitleInfo","preciseIdentifier":"s:11JellyfinAPI18RemoteSubtitleInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Search remote subtitles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/searchRemoteSubtitles(itemID:language:isPerfectMatch:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/searchremotesubtitles(itemid:language:isperfectmatch:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getProfile(profileID:)":{"role":"symbol","title":"getProfile(profileID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a single profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProfile(profileID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getprofile(profileid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headVideoStream(itemID:parameters:)":{"role":"symbol","title":"headVideoStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headVideoStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadVideoStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headVideoStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters":{"role":"symbol","title":"Paths.GetSimilarItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBoxSetRemoteSearchResults(_:)":{"role":"symbol","title":"getBoxSetRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBoxSetRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BoxSetInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get box set remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBoxSetRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getboxsetremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLocalTrailers(userID:itemID:)":{"role":"symbol","title":"getLocalTrailers(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLocalTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets local trailers for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLocalTrailers(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlocaltrailers(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNextUp(parameters:)":{"role":"symbol","title":"getNextUp(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNextUp"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetNextUpParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetNextUpParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a list of next up episodes."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNextUp(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextup(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPersonImage(name:imageType:parameters:)":{"role":"symbol","title":"getPersonImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPersonImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get person image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createSeriesTimer(_:)":{"role":"symbol","title":"createSeriesTimer(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createSeriesTimer"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Creates a live tv series timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createSeriesTimer(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createseriestimer(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/completeWizard":{"role":"symbol","title":"completeWizard","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completeWizard"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Completes the startup wizard."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/completeWizard","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/completewizard"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPackageInfo(name:assemblyGuid:)":{"role":"symbol","title":"getPackageInfo(name:assemblyGuid:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPackageInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a package by name or assembly GUID."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPackageInfo(name:assemblyGuid:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpackageinfo(name:assemblyguid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getChannel(channelID:userID:)":{"role":"symbol","title":"getChannel(channelID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannel"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a live tv channel."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannel(channelID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannel(channelid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteProfile(profileID:)":{"role":"symbol","title":"deleteProfile(profileID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes a profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteProfile(profileID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteprofile(profileid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRemoteImages(itemID:parameters:)":{"role":"symbol","title":"getRemoteImages(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteImages"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRemoteImagesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available remote images for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteImages(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimages(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setChannelMapping(_:)":{"role":"symbol","title":"setChannelMapping(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setChannelMapping"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetChannelMappingDto","preciseIdentifier":"s:11JellyfinAPI20SetChannelMappingDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Set channel mappings."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setChannelMapping(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setchannelmapping(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayReady(_:)":{"role":"symbol","title":"syncPlayReady(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayReady"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ReadyRequestDto","preciseIdentifier":"s:11JellyfinAPI15ReadyRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Notify SyncPlay group that member is ready for playback."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayReady(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayready(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSeriesTimers(parameters:)":{"role":"symbol","title":"getSeriesTimers(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesTimers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSeriesTimersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live tv series timers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesTimers(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimers(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMasterHlsVideoPlaylist(itemID:parameters:)":{"role":"symbol","title":"getMasterHlsVideoPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMasterHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMasterHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video hls playlist stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMasterHlsVideoPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylist(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySetRepeatMode(_:)":{"role":"symbol","title":"syncPlaySetRepeatMode(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetRepeatMode"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetRepeatModeRequestDto","preciseIdentifier":"s:11JellyfinAPI23SetRepeatModeRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to set repeat mode in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetRepeatMode(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaysetrepeatmode(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/tmdbClientConfiguration":{"role":"symbol","title":"tmdbClientConfiguration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tmdbClientConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the TMDb image configuration options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/tmdbClientConfiguration","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/tmdbclientconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setRead(userID:)":{"role":"symbol","title":"setRead(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRead"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets notifications as read."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRead(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setread(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/markPlayedItem(userID:itemID:datePlayed:)":{"role":"symbol","title":"markPlayedItem(userID:itemID:datePlayed:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markPlayedItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"datePlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Marks an item as played for user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markPlayedItem(userID:itemID:datePlayed:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/markplayeditem(userid:itemid:dateplayed:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getVirtualFolders":{"role":"symbol","title":"getVirtualFolders","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVirtualFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VirtualFolderInfo","preciseIdentifier":"s:11JellyfinAPI17VirtualFolderInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets all virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVirtualFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvirtualfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemsByUserID(userID:parameters:)":{"role":"symbol","title":"getItemsByUserID(userID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemsByUserID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemsByUserIDParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets items based on a query."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemsByUserID(userID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuserid(userid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPersonRemoteSearchResults(_:)":{"role":"symbol","title":"getPersonRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PersonLookupInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get person remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateMediaEncoderPath(_:)":{"role":"symbol","title":"updateMediaEncoderPath(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateMediaEncoderPath"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MediaEncoderPathDto","preciseIdentifier":"s:11JellyfinAPI19MediaEncoderPathDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates the path to the media encoder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateMediaEncoderPath(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatemediaencoderpath(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/authenticateUserByName(_:)":{"role":"symbol","title":"authenticateUserByName(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateUserByName"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AuthenticateUserByName","preciseIdentifier":"s:11JellyfinAPI22AuthenticateUserByNameV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Authenticates a user by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateUserByName(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/authenticateuserbyname(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPasswordResetProviders":{"role":"symbol","title":"getPasswordResetProviders","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPasswordResetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all password reset providers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPasswordResetProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpasswordresetproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUserPassword(userID:_:)":{"role":"symbol","title":"updateUserPassword(userID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserPassword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateUserPassword","preciseIdentifier":"s:11JellyfinAPI18UpdateUserPasswordV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a user’s password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserPassword(userID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateuserpassword(userid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBrandingCss":{"role":"symbol","title":"getBrandingCss","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets branding css."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingCss","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getbrandingcss"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/downloadRemoteSubtitles(itemID:subtitleID:)":{"role":"symbol","title":"downloadRemoteSubtitles(itemID:subtitleID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"subtitleID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Downloads a remote subtitle."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/downloadRemoteSubtitles(itemID:subtitleID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremotesubtitles(itemid:subtitleid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headPersonImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headPersonImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headPersonImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadPersonImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get person image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headPersonImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/discoverTuners(isNewDevicesOnly:)":{"role":"symbol","title":"discoverTuners(isNewDevicesOnly:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverTuners"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isNewDevicesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Discover tuners."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/discoverTuners(isNewDevicesOnly:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/discovertuners(isnewdevicesonly:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headMasterHlsVideoPlaylist(itemID:parameters:)":{"role":"symbol","title":"headMasterHlsVideoPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMasterHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMasterHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video hls playlist stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMasterHlsVideoPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylist(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getThemeVideos(itemID:userID:isInheritFromParent:)":{"role":"symbol","title":"getThemeVideos(itemID:userID:isInheritFromParent:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeVideos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get theme videos for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeVideos(itemID:userID:isInheritFromParent:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getthemevideos(itemid:userid:isinheritfromparent:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getEndpointInfo":{"role":"symbol","title":"getEndpointInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEndpointInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets information about the request endpoint."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEndpointInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getendpointinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/unmarkFavoriteItem(userID:itemID:)":{"role":"symbol","title":"unmarkFavoriteItem(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unmarkFavoriteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Unmarks item as a favorite."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/unmarkFavoriteItem(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/unmarkfavoriteitem(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getChannelItems(channelID:parameters:)":{"role":"symbol","title":"getChannelItems(channelID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetChannelItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get channel items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelItems(channelID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitems(channelid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecordingGroups(userID:)":{"role":"symbol","title":"getRecordingGroups(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingGroups"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live tv recording groups."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingGroups(userID:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getrecordinggroups(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGenres(parameters:)":{"role":"symbol","title":"getGenres(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenres"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetGenresParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetGenresParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all genres from a given item, folder, or the entire library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenres(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenres(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayPause":{"role":"symbol","title":"syncPlayPause","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request pause in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaypause"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setUnread(userID:)":{"role":"symbol","title":"setUnread(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setUnread"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets notifications as unread."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setUnread(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setunread(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/markFavoriteItem(userID:itemID:)":{"role":"symbol","title":"markFavoriteItem(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markFavoriteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Marks an item as a favorite."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markFavoriteItem(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/markfavoriteitem(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/pingPlaybackSession(playSessionID:)":{"role":"symbol","title":"pingPlaybackSession(playSessionID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"pingPlaybackSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Pings a playback session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/pingPlaybackSession(playSessionID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/pingplaybacksession(playsessionid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSeriesTimer(timerID:)":{"role":"symbol","title":"getSeriesTimer(timerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a live tv series timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesTimer(timerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimer(timerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarItems(itemID:parameters:)":{"role":"symbol","title":"getSimilarItems(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarItems(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritems(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters":{"role":"symbol","title":"Paths.GetQueryFiltersLegacyParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSeasons(seriesID:parameters:)":{"role":"symbol","title":"getSeasons(seriesID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeasons"},{"kind":"text","text":"("},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSeasonsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets seasons for a tv series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeasons(seriesID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasons(seriesid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createCollection(parameters:)":{"role":"symbol","title":"createCollection(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CreateCollectionParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates a new collection."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createCollection(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollection(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGroupingOptions(userID:)":{"role":"symbol","title":"getGroupingOptions(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGroupingOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SpecialViewOptionDto","preciseIdentifier":"s:11JellyfinAPI20SpecialViewOptionDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get user view grouping options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGroupingOptions(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgroupingoptions(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters":{"role":"symbol","title":"Paths.GetLineupsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLineupsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters":{"role":"symbol","title":"Paths.DisplayContentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayContentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPostedPlaybackInfo(itemID:parameters:_:)":{"role":"symbol","title":"getPostedPlaybackInfo(itemID:parameters:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPostedPlaybackInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPostedPlaybackInfoParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackInfoDto","preciseIdentifier":"s:11JellyfinAPI15PlaybackInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live playback media info for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPostedPlaybackInfo(itemID:parameters:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfo(itemid:parameters:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getChannelMappingOptions(providerID:)":{"role":"symbol","title":"getChannelMappingOptions(providerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelMappingOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get channel mapping options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelMappingOptions(providerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelmappingoptions(providerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/refreshLibrary":{"role":"symbol","title":"refreshLibrary","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Starts a library scan."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/refreshLibrary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshlibrary"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateDeviceOptions(id:_:)":{"role":"symbol","title":"updateDeviceOptions(id:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateDeviceOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceOptionsDto","preciseIdentifier":"s:11JellyfinAPI16DeviceOptionsDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Update device options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateDeviceOptions(id:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatedeviceoptions(id:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMusicGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get music genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarAlbums(itemID:parameters:)":{"role":"symbol","title":"getSimilarAlbums(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarAlbums"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarAlbumsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarAlbums(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbums(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDevices(isSupportsSync:userID:)":{"role":"symbol","title":"getDevices(isSupportsSync:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDevices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get Devices."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDevices(isSupportsSync:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdevices(issupportssync:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPlugins":{"role":"symbol","title":"getPlugins","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PluginInfo","preciseIdentifier":"s:11JellyfinAPI10PluginInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of currently installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlugins","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplugins"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicGenreImage(name:imageType:parameters:)":{"role":"symbol","title":"getMusicGenreImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMusicGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get music genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenreImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItem(userID:itemID:)":{"role":"symbol","title":"getItem(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets an item from a user’s library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItem(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitem(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/removeMediaPath(parameters:)":{"role":"symbol","title":"removeMediaPath(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeMediaPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RemoveMediaPathParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25RemoveMediaPathParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Remove a media path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeMediaPath(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapath(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGuideInfo":{"role":"symbol","title":"getGuideInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGuideInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get guid info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGuideInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getguideinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getQueryFilters(parameters:)":{"role":"symbol","title":"getQueryFilters(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getQueryFilters"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetQueryFiltersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets query filters."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getQueryFilters(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilters(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPersons(parameters:)":{"role":"symbol","title":"getPersons(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersons"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPersonsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetPersonsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all persons."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersons(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersons(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteItems(ids:)":{"role":"symbol","title":"deleteItems(ids:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes items from the library and filesystem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItems(ids:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteitems(ids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDeviceInfo(id:)":{"role":"symbol","title":"getDeviceInfo(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDeviceInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get info for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDeviceInfo(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdeviceinfo(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters":{"role":"symbol","title":"Paths.GetSuggestionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecordingFolders(userID:)":{"role":"symbol","title":"getRecordingFolders(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingFolders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets recording folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingFolders(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingfolders(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getServerLogs":{"role":"symbol","title":"getServerLogs","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getServerLogs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LogFile","preciseIdentifier":"s:11JellyfinAPI7LogFileV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of available server log files."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getServerLogs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getserverlogs"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getStudioImage(name:imageType:parameters:)":{"role":"symbol","title":"getStudioImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudioImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetStudioImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get studio image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudioImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/installPackage(name:parameters:)":{"role":"symbol","title":"installPackage(name:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"installPackage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"InstallPackageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24InstallPackageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Installs a package."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/installPackage(name:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackage(name:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/reportPlaybackStopped(_:)":{"role":"symbol","title":"reportPlaybackStopped(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackStopped"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackStopInfo","preciseIdentifier":"s:11JellyfinAPI16PlaybackStopInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports playback has stopped within a session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackStopped(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/reportplaybackstopped(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getContentDirectory2(serverID:)":{"role":"symbol","title":"getContentDirectory2(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna content directory xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory2(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcontentdirectory2(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySetPlaylistItem(_:)":{"role":"symbol","title":"syncPlaySetPlaylistItem(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetPlaylistItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetPlaylistItemRequestDto","preciseIdentifier":"s:11JellyfinAPI25SetPlaylistItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to change playlist item in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetPlaylistItem(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaysetplaylistitem(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addToPlaylist(playlistID:ids:userID:)":{"role":"symbol","title":"addToPlaylist(playlistID:ids:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Adds items to a playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addToPlaylist(playlistID:ids:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addtoplaylist(playlistid:ids:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getConnectionManager2(serverID:)":{"role":"symbol","title":"getConnectionManager2(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager2(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getconnectionmanager2(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getArtistByName(name:userID:)":{"role":"symbol","title":"getArtistByName(name:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtistByName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets an artist by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtistByName(name:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistbyname(name:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getThemeMedia(itemID:userID:isInheritFromParent:)":{"role":"symbol","title":"getThemeMedia(itemID:userID:isInheritFromParent:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeMedia"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get theme songs and videos for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeMedia(itemID:userID:isInheritFromParent:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getthememedia(itemid:userid:isinheritfromparent:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPlaybackInfo(itemID:userID:)":{"role":"symbol","title":"getPlaybackInfo(itemID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlaybackInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live playback media info for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlaybackInfo(itemID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaybackinfo(itemid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBrandingOptions":{"role":"symbol","title":"getBrandingOptions","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets branding configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getbrandingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaInfoImage(theme:name:)":{"role":"symbol","title":"getMediaInfoImage(theme:name:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaInfoImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get media info image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaInfoImage(theme:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediainfoimage(theme:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getConfiguration":{"role":"symbol","title":"getConfiguration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets application configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConfiguration","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/removeVirtualFolder(name:isRefreshLibrary:)":{"role":"symbol","title":"removeVirtualFolder(name:isRefreshLibrary:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Removes a virtual folder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeVirtualFolder(name:isRefreshLibrary:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removevirtualfolder(name:isrefreshlibrary:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDefaultProfile":{"role":"symbol","title":"getDefaultProfile","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the default profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdefaultprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSubtitlePlaylist(itemID:index:mediaSourceID:segmentLength:)":{"role":"symbol","title":"getSubtitlePlaylist(itemID:index:mediaSourceID:segmentLength:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitlePlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an HLS subtitle playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitlePlaylist(itemID:index:mediaSourceID:segmentLength:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleplaylist(itemid:index:mediasourceid:segmentlength:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateInitialConfiguration(_:)":{"role":"symbol","title":"updateInitialConfiguration(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateInitialConfiguration"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StartupConfigurationDto","preciseIdentifier":"s:11JellyfinAPI23StartupConfigurationDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets the initial startup wizard configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateInitialConfiguration(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateinitialconfiguration(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUser(userID:_:)":{"role":"symbol","title":"updateUser(userID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUser(userID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateuser(userid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters":{"role":"symbol","title":"Paths.GetUserViewsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserViewsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserViewsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/displayContent(sessionID:parameters:)":{"role":"symbol","title":"displayContent(sessionID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayContent"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DisplayContentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Instructs a session to browse to an item or view."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/displayContent(sessionID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontent(sessionid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayCreateGroup(_:)":{"role":"symbol","title":"syncPlayCreateGroup(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayCreateGroup"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NewGroupRequestDto","preciseIdentifier":"s:11JellyfinAPI18NewGroupRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Create a new SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayCreateGroup(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaycreategroup(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/forgotPasswordPin(_:)":{"role":"symbol","title":"forgotPasswordPin(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"forgotPasswordPin"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ForgotPasswordPinDto","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordPinDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Redeems a forgot password pin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/forgotPasswordPin(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/forgotpasswordpin(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteRecording(recordingID:)":{"role":"symbol","title":"deleteRecording(recordingID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteRecording"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes a live tv recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteRecording(recordingID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleterecording(recordingid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/authenticateWithQuickConnect(_:)":{"role":"symbol","title":"authenticateWithQuickConnect(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateWithQuickConnect"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"QuickConnectDto","preciseIdentifier":"s:11JellyfinAPI15QuickConnectDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Authenticates a user with quick connect."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateWithQuickConnect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/authenticatewithquickconnect(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaInfoImages":{"role":"symbol","title":"getMediaInfoImages","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaInfoImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all media info images."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaInfoImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediainfoimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsVideoSegmentLegacy(itemID:playlistID:segmentID:segmentContainer:)":{"role":"symbol","title":"getHlsVideoSegmentLegacy(itemID:playlistID:segmentID:segmentContainer:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsVideoSegmentLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a hls video segment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsVideoSegmentLegacy(itemID:playlistID:segmentID:segmentContainer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentlegacy(itemid:playlistid:segmentid:segmentcontainer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headAudioStream(itemID:parameters:)":{"role":"symbol","title":"headAudioStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headAudioStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsVideoSegment(itemID:playlistID:segmentID:container:parameters:)":{"role":"symbol","title":"getHlsVideoSegment(itemID:playlistID:segmentID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsVideoSegment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetHlsVideoSegmentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream using HTTP live streaming."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsVideoSegment(itemID:playlistID:segmentID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegment(itemid:playlistid:segmentid:container:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getQueryFiltersLegacy(parameters:)":{"role":"symbol","title":"getQueryFiltersLegacy(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getQueryFiltersLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetQueryFiltersLegacyParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets legacy query filters."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getQueryFiltersLegacy(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacy(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getWakeOnLanInfo":{"role":"symbol","title":"getWakeOnLanInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getWakeOnLanInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"WakeOnLanInfo","preciseIdentifier":"s:11JellyfinAPI13WakeOnLanInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets wake on lan information."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getWakeOnLanInfo","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getwakeonlaninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getStudioImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getStudioImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudioImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetStudioImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get studio image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudioImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecordingGroup(groupID:)":{"role":"symbol","title":"getRecordingGroup(groupID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingGroup"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get recording group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingGroup(groupID:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getrecordinggroup(groupid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemImageInfos(itemID:)":{"role":"symbol","title":"getItemImageInfos(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImageInfos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageInfo","preciseIdentifier":"s:11JellyfinAPI9ImageInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get item image infos."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImageInfos(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageinfos(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getChannelFeatures(channelID:)":{"role":"symbol","title":"getChannelFeatures(channelID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelFeatures"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get channel features."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelFeatures(channelID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelfeatures(channelid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUserEasyPassword(userID:_:)":{"role":"symbol","title":"updateUserEasyPassword(userID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserEasyPassword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateUserEasyPassword","preciseIdentifier":"s:11JellyfinAPI22UpdateUserEasyPasswordV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a user’s easy password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserEasyPassword(userID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateusereasypassword(userid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarMovies(itemID:parameters:)":{"role":"symbol","title":"getSimilarMovies(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarMoviesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarMovies(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmovies(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGeneralImages":{"role":"symbol","title":"getGeneralImages","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGeneralImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all general images."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGeneralImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgeneralimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getStudio(name:userID:)":{"role":"symbol","title":"getStudio(name:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudio"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a studio by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudio(name:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudio(name:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTask(taskID:)":{"role":"symbol","title":"getTask(taskID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get task by id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTask(taskID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettask(taskid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postUpdatedMovies(tmdbID:imdbID:)":{"role":"symbol","title":"postUpdatedMovies(tmdbID:imdbID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that new movies have been added by an external source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedMovies(tmdbID:imdbID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postupdatedmovies(tmdbid:imdbid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLibraryOptionsInfo(libraryContentType:isNewLibrary:)":{"role":"symbol","title":"getLibraryOptionsInfo(libraryContentType:isNewLibrary:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLibraryOptionsInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"libraryContentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNewLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the library options info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLibraryOptionsInfo(libraryContentType:isNewLibrary:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlibraryoptionsinfo(librarycontenttype:isnewlibrary:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNotifications(userID:)":{"role":"symbol","title":"getNotifications(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotifications"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a user’s notifications."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotifications(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnotifications(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSessions(parameters:)":{"role":"symbol","title":"getSessions(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSessions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSessionsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetSessionsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of sessions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSessions(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessions(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromSong(id:parameters:)":{"role":"symbol","title":"getInstantMixFromSong(id:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromSong"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromSongParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given song."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromSong(id:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsong(id:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRemoteImageProviders(itemID:)":{"role":"symbol","title":"getRemoteImageProviders(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteImageProviders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageProviderInfo","preciseIdentifier":"s:11JellyfinAPI17ImageProviderInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets available remote image providers for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteImageProviders(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimageproviders(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateNamedConfiguration(key:_:)":{"role":"symbol","title":"updateNamedConfiguration(key:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateNamedConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates named configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateNamedConfiguration(key:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatenamedconfiguration(key:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUserByID(userID:)":{"role":"symbol","title":"getUserByID(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserByID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a user by Id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserByID(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserbyid(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postPingSystem":{"role":"symbol","title":"postPingSystem","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Pings the system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postPingSystem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postpingsystem"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getIconID(serverID:fileName:)":{"role":"symbol","title":"getIconID(serverID:fileName:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIconID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a server icon."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIconID(serverID:fileName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/geticonid(serverid:filename:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaReceiverRegistrar(serverID:)":{"role":"symbol","title":"getMediaReceiverRegistrar(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediareceiverregistrar(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAdditionalPart(itemID:userID:)":{"role":"symbol","title":"getAdditionalPart(itemID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAdditionalPart"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets additional parts for a video."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAdditionalPart(itemID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getadditionalpart(itemid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromPlaylist(id:parameters:)":{"role":"symbol","title":"getInstantMixFromPlaylist(id:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromPlaylist(id:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylist(id:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addTunerHost(_:)":{"role":"symbol","title":"addTunerHost(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addTunerHost"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Adds a tuner host."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addTunerHost(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addtunerhost(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveRecordingFile(recordingID:)":{"role":"symbol","title":"getLiveRecordingFile(recordingID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveRecordingFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a live tv recording stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveRecordingFile(recordingID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getliverecordingfile(recordingid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/downloadRemoteImage(itemID:parameters:)":{"role":"symbol","title":"downloadRemoteImage(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadRemoteImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DownloadRemoteImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Downloads a remote image for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/downloadRemoteImage(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimage(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUniversalAudioStream(itemID:parameters:)":{"role":"symbol","title":"getUniversalAudioStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUniversalAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUniversalAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUniversalAudioStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setRepositories(_:)":{"role":"symbol","title":"setRepositories(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRepositories"},{"kind":"text","text":"([JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets the enabled and existing package repositories."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRepositories(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setrepositories(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayUnpause":{"role":"symbol","title":"syncPlayUnpause","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayUnpause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request unpause in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayUnpause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayunpause"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDefaultListingProvider":{"role":"symbol","title":"getDefaultListingProvider","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultListingProvider"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets default listings provider info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultListingProvider","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdefaultlistingprovider"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getChannels(parameters:)":{"role":"symbol","title":"getChannels(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannels"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetChannelsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetChannelsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannels(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannels(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setRemoteAccess(_:)":{"role":"symbol","title":"setRemoteAccess(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRemoteAccess"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StartupRemoteAccessDto","preciseIdentifier":"s:11JellyfinAPI22StartupRemoteAccessDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets remote access and UPnP."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRemoteAccess(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setremoteaccess(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/processConnectionManagerControlRequest(serverID:)":{"role":"symbol","title":"processConnectionManagerControlRequest(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processConnectionManagerControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Process a connection manager control request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processConnectionManagerControlRequest(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/processconnectionmanagercontrolrequest(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromMusicGenreByID(parameters:)":{"role":"symbol","title":"getInstantMixFromMusicGenreByID(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromMusicGenreByID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromMusicGenreByIDParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given genre."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromMusicGenreByID(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyid(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsAudioSegmentLegacyAac(itemID:segmentID:)":{"role":"symbol","title":"getHlsAudioSegmentLegacyAac(itemID:segmentID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegmentLegacyAac"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the specified audio segment for an audio item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegmentLegacyAac(itemID:segmentID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentlegacyaac(itemid:segmentid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsAudioSegment(itemID:playlistID:segmentID:container:parameters:)":{"role":"symbol","title":"getHlsAudioSegment(itemID:playlistID:segmentID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetHlsAudioSegmentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream using HTTP live streaming."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegment(itemID:playlistID:segmentID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegment(itemid:playlistid:segmentid:container:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headUserImage(userID:imageType:parameters:)":{"role":"symbol","title":"headUserImage(userID:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadUserImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get user profile image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUserImage(userID:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimage(userid:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayPreviousItem(_:)":{"role":"symbol","title":"syncPlayPreviousItem(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPreviousItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PreviousItemRequestDto","preciseIdentifier":"s:11JellyfinAPI22PreviousItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request previous item in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPreviousItem(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaypreviousitem(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAudioStreamByContainer(itemID:container:parameters:)":{"role":"symbol","title":"getAudioStreamByContainer(itemID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAudioStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetAudioStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAudioStreamByContainer(itemID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainer(itemid:container:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAlbumArtists(parameters:)":{"role":"symbol","title":"getAlbumArtists(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAlbumArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetAlbumArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all album artists from a given item, folder, or the entire library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAlbumArtists(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartists(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLatestChannelItems(parameters:)":{"role":"symbol","title":"getLatestChannelItems(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLatestChannelItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLatestChannelItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets latest channel items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLatestChannelItems(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitems(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTimer(timerID:)":{"role":"symbol","title":"getTimer(timerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTimer(timerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimer(timerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getIntros(userID:itemID:)":{"role":"symbol","title":"getIntros(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIntros"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets intros to play before the main media item plays."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIntros(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getintros(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headStudioImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headStudioImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headStudioImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadStudioImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get studio image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headStudioImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getYears(parameters:)":{"role":"symbol","title":"getYears(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getYears"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetYearsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO18GetYearsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get years."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getYears(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyears(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters":{"role":"symbol","title":"Paths.GetDirectoryContentsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsPlaylistLegacy(itemID:playlistID:)":{"role":"symbol","title":"getHlsPlaylistLegacy(itemID:playlistID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsPlaylistLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a hls video playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsPlaylistLegacy(itemID:playlistID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsplaylistlegacy(itemid:playlistid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecommendedPrograms(parameters:)":{"role":"symbol","title":"getRecommendedPrograms(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecommendedPrograms"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRecommendedProgramsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets recommended live tv epgs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecommendedPrograms(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprograms(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItems(parameters:)":{"role":"symbol","title":"getItems(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO18GetItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets items based on a query."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItems(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitems(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addVirtualFolder(parameters:_:)":{"role":"symbol","title":"addVirtualFolder(parameters:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AddVirtualFolderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AddVirtualFolderDto","preciseIdentifier":"s:11JellyfinAPI19AddVirtualFolderDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Adds a virtual folder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addVirtualFolder(parameters:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolder(parameters:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSubtitleWithTicks(routeItemID:routeMediaSourceID:routeIndex:routeStartPositionTicks:routeFormat:parameters:)":{"role":"symbol","title":"getSubtitleWithTicks(routeItemID:routeMediaSourceID:routeIndex:routeStartPositionTicks:routeFormat:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitleWithTicks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"routeItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeMediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeStartPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSubtitleWithTicksParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets subtitles in a specified format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitleWithTicks(routeItemID:routeMediaSourceID:routeIndex:routeStartPositionTicks:routeFormat:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticks(routeitemid:routemediasourceid:routeindex:routestartpositionticks:routeformat:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters":{"role":"symbol","title":"Paths.RenameVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecording(recordingID:userID:)":{"role":"symbol","title":"getRecording(recordingID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecording"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a live tv recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecording(recordingID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecording(recordingid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/uninstallPluginByVersion(pluginID:version:)":{"role":"symbol","title":"uninstallPluginByVersion(pluginID:version:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uninstallPluginByVersion"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Uninstalls a plugin by version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uninstallPluginByVersion(pluginID:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/uninstallpluginbyversion(pluginid:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/moveItem(playlistID:itemID:newIndex:)":{"role":"symbol","title":"moveItem(playlistID:itemID:newIndex:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Moves a playlist item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/moveItem(playlistID:itemID:newIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/moveitem(playlistid:itemid:newindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/initiate":{"role":"symbol","title":"initiate","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"initiate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Initiate a new quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/initiate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/initiate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUserImageByIndex(userID:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getUserImageByIndex(userID:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUserImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get user profile image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserImageByIndex(userID:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindex(userid:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createProfile(_:)":{"role":"symbol","title":"createProfile(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createProfile"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Creates a profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createProfile(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createprofile(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateDisplayPreferences(displayPreferencesID:userID:client:_:)":{"role":"symbol","title":"updateDisplayPreferences(displayPreferencesID:userID:client:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateDisplayPreferences"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DisplayPreferencesDto","preciseIdentifier":"s:11JellyfinAPI21DisplayPreferencesDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Update Display Preferences."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateDisplayPreferences(displayPreferencesID:userID:client:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatedisplaypreferences(displaypreferencesid:userid:client:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLineups(parameters:)":{"role":"symbol","title":"getLineups(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLineups"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLineupsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetLineupsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets available lineups."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLineups(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineups(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/authorize(code:)":{"role":"symbol","title":"authorize(code:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorize"},{"kind":"text","text":"("},{"kind":"externalParam","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Authorizes a pending quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authorize(code:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/authorize(code:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters":{"role":"symbol","title":"Paths.AddVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteItemImage(itemID:imageType:imageIndex:)":{"role":"symbol","title":"deleteItemImage(itemID:imageType:imageIndex:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete an item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItemImage(itemID:imageType:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteitemimage(itemid:imagetype:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addToCollection(collectionID:ids:)":{"role":"symbol","title":"addToCollection(collectionID:ids:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Adds items to a collection."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addToCollection(collectionID:ids:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addtocollection(collectionid:ids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getVariantHlsVideoPlaylist(itemID:parameters:)":{"role":"symbol","title":"getVariantHlsVideoPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVariantHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVariantHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream using HTTP live streaming."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVariantHlsVideoPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylist(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)":{"role":"symbol","title":"headItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImage2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadItemImage2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/reportPlaybackStart(_:)":{"role":"symbol","title":"reportPlaybackStart(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackStart"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackStartInfo","preciseIdentifier":"s:11JellyfinAPI17PlaybackStartInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports playback has started within a session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackStart(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/reportplaybackstart(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/sendGeneralCommand(sessionID:command:)":{"role":"symbol","title":"sendGeneralCommand(sessionID:command:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendGeneralCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Issues a general command to a client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendGeneralCommand(sessionID:command:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/sendgeneralcommand(sessionid:command:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/disablePlugin(pluginID:version:)":{"role":"symbol","title":"disablePlugin(pluginID:version:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"disablePlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Disable a plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/disablePlugin(pluginID:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/disableplugin(pluginid:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemCounts(userID:isFavorite:)":{"role":"symbol","title":"getItemCounts(userID:isFavorite:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemCounts"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get item counts."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemCounts(userID:isFavorite:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemcounts(userid:isfavorite:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/cancelPackageInstallation(packageID:)":{"role":"symbol","title":"cancelPackageInstallation(packageID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPackageInstallation"},{"kind":"text","text":"("},{"kind":"externalParam","text":"packageID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Cancels a package installation."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelPackageInstallation(packageID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/cancelpackageinstallation(packageid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateConfiguration(_:)":{"role":"symbol","title":"updateConfiguration(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateConfiguration"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ServerConfiguration","preciseIdentifier":"s:11JellyfinAPI19ServerConfigurationV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates application configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateConfiguration(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateconfiguration(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/uploadCustomSplashscreen(_:)":{"role":"symbol","title":"uploadCustomSplashscreen(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uploadCustomSplashscreen"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Uploads a custom splashscreen."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uploadCustomSplashscreen(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/uploadcustomsplashscreen(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/removeFromCollection(collectionID:ids:)":{"role":"symbol","title":"removeFromCollection(collectionID:ids:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Removes items from a collection."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeFromCollection(collectionID:ids:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removefromcollection(collectionid:ids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters":{"role":"symbol","title":"Paths.GetLogEntriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLogEntriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBrandingCss2":{"role":"symbol","title":"getBrandingCss2","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingCss2"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets branding css."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingCss2","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getbrandingcss2"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getYear(year:userID:)":{"role":"symbol","title":"getYear(year:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getYear"},{"kind":"text","text":"("},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getYear(year:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyear(year:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAllChannelFeatures":{"role":"symbol","title":"getAllChannelFeatures","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAllChannelFeatures"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ChannelFeatures","preciseIdentifier":"s:11JellyfinAPI15ChannelFeaturesV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all channel features."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAllChannelFeatures","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getallchannelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postAddedSeries(tvdbID:)":{"role":"symbol","title":"postAddedSeries(tvdbID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postAddedSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that new episodes of a series have been added by an external source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postAddedSeries(tvdbID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postaddedseries(tvdbid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/refreshItem(itemID:parameters:)":{"role":"symbol","title":"refreshItem(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RefreshItemParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Refreshes metadata for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/refreshItem(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitem(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getStartupConfiguration":{"role":"symbol","title":"getStartupConfiguration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStartupConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the initial startup wizard configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStartupConfiguration","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstartupconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayQueue(_:)":{"role":"symbol","title":"syncPlayQueue(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayQueue"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"QueueRequestDto","preciseIdentifier":"s:11JellyfinAPI15QueueRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to queue items to the playlist of a SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayQueue(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayqueue(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRepositories":{"role":"symbol","title":"getRepositories","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRepositories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets all package repositories."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRepositories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrepositories"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addUserToSession(sessionID:userID:)":{"role":"symbol","title":"addUserToSession(sessionID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addUserToSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Adds an additional user to a session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addUserToSession(sessionID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addusertosession(sessionid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/uploadSubtitle(itemID:_:)":{"role":"symbol","title":"uploadSubtitle(itemID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uploadSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UploadSubtitleDto","preciseIdentifier":"s:11JellyfinAPI17UploadSubtitleDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Upload an external subtitle file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uploadSubtitle(itemID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/uploadsubtitle(itemid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addListingProvider(parameters:_:)":{"role":"symbol","title":"addListingProvider(parameters:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addListingProvider"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AddListingProviderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28AddListingProviderParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Adds a listings provider."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addListingProvider(parameters:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingprovider(parameters:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMasterHlsAudioPlaylist(itemID:parameters:)":{"role":"symbol","title":"getMasterHlsAudioPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMasterHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMasterHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio hls playlist stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMasterHlsAudioPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylist(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postFullCapabilities(id:_:)":{"role":"symbol","title":"postFullCapabilities(id:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postFullCapabilities"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ClientCapabilitiesDto","preciseIdentifier":"s:11JellyfinAPI21ClientCapabilitiesDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates capabilities for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postFullCapabilities(id:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postfullcapabilities(id:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPackages":{"role":"symbol","title":"getPackages","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPackages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets available packages."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPackages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpackages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateItem(itemID:_:)":{"role":"symbol","title":"updateItem(itemID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItem(itemID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateitem(itemid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/restartApplication":{"role":"symbol","title":"restartApplication","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"restartApplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Restarts the application."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/restartApplication","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/restartapplication"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headGenreImage(name:imageType:parameters:)":{"role":"symbol","title":"headGenreImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headGenreImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPluginConfiguration(pluginID:)":{"role":"symbol","title":"getPluginConfiguration(pluginID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets plugin configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginConfiguration(pluginID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpluginconfiguration(pluginid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTasks(isHidden:isEnabled:)":{"role":"symbol","title":"getTasks(isHidden:isEnabled:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTasks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TaskInfo","preciseIdentifier":"s:11JellyfinAPI8TaskInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get tasks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTasks(isHidden:isEnabled:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettasks(ishidden:isenabled:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createUserByName(_:)":{"role":"symbol","title":"createUserByName(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createUserByName"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CreateUserByName","preciseIdentifier":"s:11JellyfinAPI16CreateUserByNameV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates a user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createUserByName(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createuserbyname(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/validatePath(_:)":{"role":"symbol","title":"validatePath(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"validatePath"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ValidatePathDto","preciseIdentifier":"s:11JellyfinAPI15ValidatePathDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Validates path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/validatePath(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/validatepath(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/stopEncodingProcess(deviceID:playSessionID:)":{"role":"symbol","title":"stopEncodingProcess(deviceID:playSessionID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopEncodingProcess"},{"kind":"text","text":"("},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Stops an active encoding."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/stopEncodingProcess(deviceID:playSessionID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/stopencodingprocess(deviceid:playsessionid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSuggestions(userID:parameters:)":{"role":"symbol","title":"getSuggestions(userID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSuggestions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSuggestionsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets suggestions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSuggestions(userID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestions(userid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUserItemRating(userID:itemID:isLikes:)":{"role":"symbol","title":"updateUserItemRating(userID:itemID:isLikes:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserItemRating"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Updates a user’s rating for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserItemRating(userID:itemID:isLikes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateuseritemrating(userid:itemid:islikes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromMusicGenreByName(name:parameters:)":{"role":"symbol","title":"getInstantMixFromMusicGenreByName(name:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromMusicGenreByName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromMusicGenreByNameParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given genre."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromMusicGenreByName(name:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyname(name:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/uninstallPlugin(pluginID:)":{"role":"symbol","title":"uninstallPlugin(pluginID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uninstallPlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Uninstalls a plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uninstallPlugin(pluginID:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/uninstallplugin(pluginid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/renameVirtualFolder(parameters:)":{"role":"symbol","title":"renameVirtualFolder(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"renameVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RenameVirtualFolderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29RenameVirtualFolderParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Renames a virtual folder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/renameVirtualFolder(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolder(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/onPlaybackStopped(userID:itemID:parameters:)":{"role":"symbol","title":"onPlaybackStopped(userID:itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackStopped"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OnPlaybackStoppedParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that a user has stopped playing an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackStopped(userID:itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstopped(userid:itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters":{"role":"symbol","title":"Paths.CreatePlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsAudioSegmentLegacyMp3(itemID:segmentID:)":{"role":"symbol","title":"getHlsAudioSegmentLegacyMp3(itemID:segmentID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegmentLegacyMp3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the specified audio segment for an audio item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegmentLegacyMp3(itemID:segmentID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentlegacymp3(itemid:segmentid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveTvInfo":{"role":"symbol","title":"getLiveTvInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available live tv services."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNotificationServices":{"role":"symbol","title":"getNotificationServices","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets notification services."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationServices","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnotificationservices"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNotificationTypes":{"role":"symbol","title":"getNotificationTypes","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NotificationTypeInfo","preciseIdentifier":"s:11JellyfinAPI20NotificationTypeInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets notification types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnotificationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySeek(_:)":{"role":"symbol","title":"syncPlaySeek(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySeek"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeekRequestDto","preciseIdentifier":"s:11JellyfinAPI14SeekRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request seek in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySeek(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayseek(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRemoteSubtitles(id:)":{"role":"symbol","title":"getRemoteSubtitles(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the remote subtitles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteSubtitles(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremotesubtitles(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters":{"role":"symbol","title":"Paths.CreateCollectionParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateCollectionParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarArtists(itemID:parameters:)":{"role":"symbol","title":"getSimilarArtists(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarArtists(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartists(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteDevice(id:)":{"role":"symbol","title":"deleteDevice(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteDevice"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteDevice(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletedevice(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getCurrentUser":{"role":"symbol","title":"getCurrentUser","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCurrentUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the user based on auth token."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCurrentUser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcurrentuser"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/processMediaReceiverRegistrarControlRequest(serverID:)":{"role":"symbol","title":"processMediaReceiverRegistrarControlRequest(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processMediaReceiverRegistrarControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Process a media receiver registrar control request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processMediaReceiverRegistrarControlRequest(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/processmediareceiverregistrarcontrolrequest(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromItem(id:parameters:)":{"role":"symbol","title":"getInstantMixFromItem(id:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromItemParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromItem(id:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitem(id:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/markUnplayedItem(userID:itemID:)":{"role":"symbol","title":"markUnplayedItem(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markUnplayedItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Marks an item as unplayed for user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markUnplayedItem(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/markunplayeditem(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromArtists(id:parameters:)":{"role":"symbol","title":"getInstantMixFromArtists(id:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given artist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromArtists(id:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists(id:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateTimer(timerID:_:)":{"role":"symbol","title":"updateTimer(timerID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a live tv timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateTimer(timerID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatetimer(timerid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headItemImage(itemID:imageType:parameters:)":{"role":"symbol","title":"headItemImage(itemID:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadItemImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImage(itemID:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage(itemid:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getConnectionManager3(serverID:)":{"role":"symbol","title":"getConnectionManager3(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager3(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getconnectionmanager3(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headMasterHlsAudioPlaylist(itemID:parameters:)":{"role":"symbol","title":"headMasterHlsAudioPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMasterHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMasterHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio hls playlist stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMasterHlsAudioPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylist(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecordings(parameters:)":{"role":"symbol","title":"getRecordings(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordings"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRecordingsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live tv recordings."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordings(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordings(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMetadataEditorInfo(itemID:)":{"role":"symbol","title":"getMetadataEditorInfo(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMetadataEditorInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets metadata editor info for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMetadataEditorInfo(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmetadataeditorinfo(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayMovePlaylistItem(_:)":{"role":"symbol","title":"syncPlayMovePlaylistItem(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayMovePlaylistItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MovePlaylistItemRequestDto","preciseIdentifier":"s:11JellyfinAPI26MovePlaylistItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to move an item in the playlist in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayMovePlaylistItem(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaymoveplaylistitem(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setItemImage(itemID:imageType:_:)":{"role":"symbol","title":"setItemImage(itemID:imageType:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Set item image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setItemImage(itemID:imageType:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setitemimage(itemid:imagetype:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getConnectionManager(serverID:)":{"role":"symbol","title":"getConnectionManager(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getconnectionmanager(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters":{"role":"symbol","title":"Paths.RemoveMediaPathParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveMediaPathParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveMediaPathParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters":{"role":"symbol","title":"Paths.GetSimilarShowsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarShowsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicAlbumRemoteSearchResults(_:)":{"role":"symbol","title":"getMusicAlbumRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicAlbumRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AlbumInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get music album remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicAlbumRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicalbumremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headStudioImage(name:imageType:parameters:)":{"role":"symbol","title":"headStudioImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headStudioImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadStudioImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get studio image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headStudioImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getVideoStreamByContainer(itemID:container:parameters:)":{"role":"symbol","title":"getVideoStreamByContainer(itemID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVideoStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVideoStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVideoStreamByContainer(itemID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainer(itemid:container:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postUpdatedSeries(tvdbID:)":{"role":"symbol","title":"postUpdatedSeries(tvdbID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that new episodes of a series have been added by an external source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedSeries(tvdbID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postupdatedseries(tvdbid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayNextItem(_:)":{"role":"symbol","title":"syncPlayNextItem(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayNextItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NextItemRequestDto","preciseIdentifier":"s:11JellyfinAPI18NextItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request next item in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayNextItem(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaynextitem(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGenreImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getGenreImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenreImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createPlaylist(parameters:_:)":{"role":"symbol","title":"createPlaylist(parameters:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CreatePlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CreatePlaylistDto","preciseIdentifier":"s:11JellyfinAPI17CreatePlaylistDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates a new playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createPlaylist(parameters:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylist(parameters:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateStartupUser(_:)":{"role":"symbol","title":"updateStartupUser(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateStartupUser"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StartupUserDto","preciseIdentifier":"s:11JellyfinAPI14StartupUserDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets the user name and password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateStartupUser(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatestartupuser(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteUserImage(userID:imageType:index:)":{"role":"symbol","title":"deleteUserImage(userID:imageType:index:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete the user’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserImage(userID:imageType:index:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteuserimage(userid:imagetype:index:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaFolders(isHidden:)":{"role":"symbol","title":"getMediaFolders(isHidden:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaFolders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all user media folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaFolders(isHidden:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediafolders(ishidden:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayBuffering(_:)":{"role":"symbol","title":"syncPlayBuffering(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayBuffering"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BufferRequestDto","preciseIdentifier":"s:11JellyfinAPI16BufferRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Notify SyncPlay group that member is buffering."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayBuffering(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaybuffering(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setItemImageByIndex(itemID:imageType:imageIndex:_:)":{"role":"symbol","title":"setItemImageByIndex(itemID:imageType:imageIndex:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Set item image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setItemImageByIndex(itemID:imageType:imageIndex:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setitemimagebyindex(itemid:imagetype:imageindex:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDeviceOptions(id:)":{"role":"symbol","title":"getDeviceOptions(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDeviceOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDeviceOptions(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdeviceoptions(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarShows(itemID:parameters:)":{"role":"symbol","title":"getSimilarShows(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarShows"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarShowsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarShows(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshows(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemImage(itemID:imageType:parameters:)":{"role":"symbol","title":"getItemImage(itemID:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImage(itemID:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage(itemid:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getFirstUser":{"role":"symbol","title":"getFirstUser","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFirstUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the first user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFirstUser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getfirstuser"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUpcomingEpisodes(parameters:)":{"role":"symbol","title":"getUpcomingEpisodes(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUpcomingEpisodes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUpcomingEpisodesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a list of upcoming episodes."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUpcomingEpisodes(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodes(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteAlternateSources(itemID:)":{"role":"symbol","title":"deleteAlternateSources(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteAlternateSources"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Removes alternate video sources."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteAlternateSources(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletealternatesources(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSplashscreen(parameters:)":{"role":"symbol","title":"getSplashscreen(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSplashscreen"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSplashscreenParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Generates or gets the splashscreen."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSplashscreen(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreen(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headUserImageByIndex(userID:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headUserImageByIndex(userID:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadUserImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get user profile image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUserImageByIndex(userID:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindex(userid:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/reportSessionEnded":{"role":"symbol","title":"reportSessionEnded","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportSessionEnded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that a session has ended."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportSessionEnded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/reportsessionended"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postUserImageByIndex(userID:imageType:index:_:)":{"role":"symbol","title":"postUserImageByIndex(userID:imageType:index:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets the user image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUserImageByIndex(userID:imageType:index:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postuserimagebyindex(userid:imagetype:index:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSeriesRemoteSearchResults(_:)":{"role":"symbol","title":"getSeriesRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get series remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriesremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteItem(itemID:)":{"role":"symbol","title":"deleteItem(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes an item from the library and filesystem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItem(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteitem(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/authenticateUser(userID:pw:password:)":{"role":"symbol","title":"authenticateUser(userID:pw:password:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Authenticates a user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateUser(userID:pw:password:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/authenticateuser(userid:pw:password:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAncestors(itemID:userID:)":{"role":"symbol","title":"getAncestors(itemID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAncestors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets all parents of an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAncestors(itemID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getancestors(itemid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getExternalIDInfos(itemID:)":{"role":"symbol","title":"getExternalIDInfos(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getExternalIDInfos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get the item’s external id info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getExternalIDInfos(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getexternalidinfos(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getEnabled":{"role":"symbol","title":"getEnabled","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the current quick connect state."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getenabled"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicGenre(genreName:userID:)":{"role":"symbol","title":"getMusicGenre(genreName:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenre"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genreName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a music genre, by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenre(genreName:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenre(genrename:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaReceiverRegistrar2(serverID:)":{"role":"symbol","title":"getMediaReceiverRegistrar2(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar2(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediareceiverregistrar2(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)":{"role":"symbol","title":"getItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImage2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemImage2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/sendFullGeneralCommand(sessionID:_:)":{"role":"symbol","title":"sendFullGeneralCommand(sessionID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendFullGeneralCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GeneralCommand","preciseIdentifier":"s:11JellyfinAPI14GeneralCommandV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Issues a full general command to a client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendFullGeneralCommand(sessionID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/sendfullgeneralcommand(sessionid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPublicUsers":{"role":"symbol","title":"getPublicUsers","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPublicUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of publicly visible users for display on a login screen."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPublicUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpublicusers"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updatePluginConfiguration(pluginID:)":{"role":"symbol","title":"updatePluginConfiguration(pluginID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updatePluginConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates plugin configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updatePluginConfiguration(pluginID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatepluginconfiguration(pluginid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDescriptionXml(serverID:)":{"role":"symbol","title":"getDescriptionXml(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDescriptionXml"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get Description Xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDescriptionXml(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdescriptionxml(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createKey(app:)":{"role":"symbol","title":"createKey(app:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createKey"},{"kind":"text","text":"("},{"kind":"externalParam","text":"app"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Create a new api key."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createKey(app:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createkey(app:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getArtistImage(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getArtistImage(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtistImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetArtistImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get artist image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtistImage(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimage(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveTvChannels(parameters:)":{"role":"symbol","title":"getLiveTvChannels(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvChannels"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLiveTvChannelsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available live tv channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvChannels(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannels(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAttachment(videoID:mediaSourceID:index:)":{"role":"symbol","title":"getAttachment(videoID:mediaSourceID:index:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAttachment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"videoID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get video attachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAttachment(videoID:mediaSourceID:index:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getattachment(videoid:mediasourceid:index:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNotificationsSummary(userID:)":{"role":"symbol","title":"getNotificationsSummary(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationsSummary"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a user’s notification summary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationsSummary(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnotificationssummary(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteUser(userID:)":{"role":"symbol","title":"deleteUser(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes a user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUser(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteuser(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/play(sessionID:parameters:)":{"role":"symbol","title":"play(sessionID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Instructs a session to play an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/play(sessionID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/play(sessionid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGenre(genreName:userID:)":{"role":"symbol","title":"getGenre(genreName:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenre"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genreName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a genre, by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenre(genreName:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenre(genrename:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getFallbackFontList":{"role":"symbol","title":"getFallbackFontList","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFallbackFontList"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FontFile","preciseIdentifier":"s:11JellyfinAPI8FontFileV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of available fallback font files."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFallbackFontList","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getfallbackfontlist"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveStreamFile(streamID:container:)":{"role":"symbol","title":"getLiveStreamFile(streamID:container:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveStreamFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"streamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a live tv channel stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveStreamFile(streamID:container:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivestreamfile(streamid:container:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headUniversalAudioStream(itemID:parameters:)":{"role":"symbol","title":"headUniversalAudioStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUniversalAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadUniversalAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUniversalAudioStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLogFile(name:)":{"role":"symbol","title":"getLogFile(name:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLogFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a log file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLogFile(name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogfile(name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromAlbum(id:parameters:)":{"role":"symbol","title":"getInstantMixFromAlbum(id:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromAlbum"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromAlbumParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given album."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromAlbum(id:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbum(id:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDefaultMetadataOptions":{"role":"symbol","title":"getDefaultMetadataOptions","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultMetadataOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a default MetadataOptions object."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultMetadataOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdefaultmetadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRatingImage(theme:name:)":{"role":"symbol","title":"getRatingImage(theme:name:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRatingImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get rating image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRatingImage(theme:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getratingimage(theme:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLatestMedia(userID:parameters:)":{"role":"symbol","title":"getLatestMedia(userID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLatestMedia"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLatestMediaParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets latest media."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLatestMedia(userID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmedia(userid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSpecialFeatures(userID:itemID:)":{"role":"symbol","title":"getSpecialFeatures(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSpecialFeatures"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets special features for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSpecialFeatures(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getspecialfeatures(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySetIgnoreWait(_:)":{"role":"symbol","title":"syncPlaySetIgnoreWait(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetIgnoreWait"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"IgnoreWaitRequestDto","preciseIdentifier":"s:11JellyfinAPI20IgnoreWaitRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request SyncPlay group to ignore member during group-wait."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetIgnoreWait(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaysetignorewait(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/sendPlaystateCommand(sessionID:command:seekPositionTicks:controllingUserID:)":{"role":"symbol","title":"sendPlaystateCommand(sessionID:command:seekPositionTicks:controllingUserID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendPlaystateCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Issues a playstate command to a client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendPlaystateCommand(sessionID:command:seekPositionTicks:controllingUserID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/sendplaystatecommand(sessionid:command:seekpositionticks:controllinguserid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/cancelSeriesTimer(timerID:)":{"role":"symbol","title":"cancelSeriesTimer(timerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Cancels a live tv series timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelSeriesTimer(timerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/cancelseriestimer(timerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createTimer(_:)":{"role":"symbol","title":"createTimer(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createTimer"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Creates a live tv timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createTimer(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createtimer(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters":{"role":"symbol","title":"Paths.GetSeriesTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeriesTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeriesTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/resetTuner(tunerID:)":{"role":"symbol","title":"resetTuner(tunerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"resetTuner"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tunerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Resets a tv tuner."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/resetTuner(tunerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/resettuner(tunerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSchedulesDirectCountries":{"role":"symbol","title":"getSchedulesDirectCountries","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSchedulesDirectCountries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets available countries."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSchedulesDirectCountries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getschedulesdirectcountries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getFile(itemID:)":{"role":"symbol","title":"getFile(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get the original file of an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFile(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getfile(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headItemImageByIndex(itemID:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headItemImageByIndex(itemID:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadItemImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImageByIndex(itemID:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindex(itemid:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getStudios(parameters:)":{"role":"symbol","title":"getStudios(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudios"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetStudiosParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetStudiosParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all studios from a given item, folder, or the entire library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudios(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudios(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/connect(secret:)":{"role":"symbol","title":"connect(secret:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Attempts to retrieve authentication information."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/connect(secret:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/connect(secret:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters":{"role":"symbol","title":"Paths.GetSimilarAlbumsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/openLiveStream(parameters:_:)":{"role":"symbol","title":"openLiveStream(parameters:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openLiveStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OpenLiveStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"OpenLiveStreamDto","preciseIdentifier":"s:11JellyfinAPI17OpenLiveStreamDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Opens a media source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/openLiveStream(parameters:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestream(parameters:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteListingProvider(id:)":{"role":"symbol","title":"deleteListingProvider(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteListingProvider"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete listing provider."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteListingProvider(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletelistingprovider(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLocalizationOptions":{"role":"symbol","title":"getLocalizationOptions","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLocalizationOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocalizationOption","preciseIdentifier":"s:11JellyfinAPI18LocalizationOptionV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets localization options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLocalizationOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlocalizationoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters":{"role":"symbol","title":"Paths.GetSimilarMoviesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headPersonImage(name:imageType:parameters:)":{"role":"symbol","title":"headPersonImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headPersonImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadPersonImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get person image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headPersonImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters":{"role":"symbol","title":"Paths.GetSimilarArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getFallbackFont(name:)":{"role":"symbol","title":"getFallbackFont(name:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFallbackFont"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a fallback font file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFallbackFont(name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getfallbackfont(name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteSubtitle(itemID:index:)":{"role":"symbol","title":"deleteSubtitle(itemID:index:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes an external subtitle file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteSubtitle(itemID:index:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletesubtitle(itemid:index:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPingSystem":{"role":"symbol","title":"getPingSystem","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Pings the system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPingSystem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpingsystem"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getCountries":{"role":"symbol","title":"getCountries","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCountries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets known countries."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCountries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcountries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headArtistImage(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headArtistImage(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headArtistImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadArtistImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get artist image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headArtistImage(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimage(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getResumeItems(userID:parameters:)":{"role":"symbol","title":"getResumeItems(userID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getResumeItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetResumeItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets items based on a query."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getResumeItems(userID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitems(userid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters":{"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/mergeVersions(ids:)":{"role":"symbol","title":"mergeVersions(ids:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mergeVersions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Merges videos into a single record."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/mergeVersions(ids:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/mergeversions(ids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRatingImages":{"role":"symbol","title":"getRatingImages","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRatingImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all general images."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRatingImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getratingimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLogEntries(parameters:)":{"role":"symbol","title":"getLogEntries(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLogEntries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLogEntriesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets activity log entries."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLogEntries(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentries(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/processContentDirectoryControlRequest(serverID:)":{"role":"symbol","title":"processContentDirectoryControlRequest(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processContentDirectoryControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Process a content directory control request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processContentDirectoryControlRequest(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/processcontentdirectorycontrolrequest(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getVideoStream(itemID:parameters:)":{"role":"symbol","title":"getVideoStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVideoStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVideoStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVideoStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySetNewQueue(_:)":{"role":"symbol","title":"syncPlaySetNewQueue(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetNewQueue"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlayRequestDto","preciseIdentifier":"s:11JellyfinAPI14PlayRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to set new playlist in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetNewQueue(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaysetnewqueue(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDirectoryContents(parameters:)":{"role":"symbol","title":"getDirectoryContents(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDirectoryContents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetDirectoryContentsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetDirectoryContentsParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets the contents of a given directory in the file system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDirectoryContents(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontents(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMovieRecommendations(parameters:)":{"role":"symbol","title":"getMovieRecommendations(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMovieRecommendations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMovieRecommendationsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RecommendationDto","preciseIdentifier":"s:11JellyfinAPI17RecommendationDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets movie recommendations."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMovieRecommendations(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendations(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getContentDirectory(serverID:)":{"role":"symbol","title":"getContentDirectory(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna content directory xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcontentdirectory(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/enablePlugin(pluginID:version:)":{"role":"symbol","title":"enablePlugin(pluginID:version:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Enables a disabled plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/enablePlugin(pluginID:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/enableplugin(pluginid:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPublicSystemInfo":{"role":"symbol","title":"getPublicSystemInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPublicSystemInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets public information about the server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPublicSystemInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpublicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getVariantHlsAudioPlaylist(itemID:parameters:)":{"role":"symbol","title":"getVariantHlsAudioPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVariantHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVariantHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream using HTTP live streaming."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVariantHlsAudioPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylist(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateSeriesTimer(timerID:_:)":{"role":"symbol","title":"updateSeriesTimer(timerID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a live tv series timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateSeriesTimer(timerID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateseriestimer(timerid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getFirstUser2":{"role":"symbol","title":"getFirstUser2","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFirstUser2"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the first user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFirstUser2","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getfirstuser2"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAuthProviders":{"role":"symbol","title":"getAuthProviders","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAuthProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all auth providers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAuthProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getauthproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getIcon(fileName:)":{"role":"symbol","title":"getIcon(fileName:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIcon"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a server icon."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIcon(fileName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/geticon(filename:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headMusicGenreImage(name:imageType:parameters:)":{"role":"symbol","title":"headMusicGenreImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMusicGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMusicGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get music genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMusicGenreImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postUpdatedMedia(_:)":{"role":"symbol","title":"postUpdatedMedia(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedMedia"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MediaUpdateInfoDto","preciseIdentifier":"s:11JellyfinAPI18MediaUpdateInfoDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that new movies have been added by an external source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedMedia(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postupdatedmedia(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPluginImage(pluginID:version:)":{"role":"symbol","title":"getPluginImage(pluginID:version:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a plugin’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginImage(pluginID:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpluginimage(pluginid:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/applySearchCriteria(itemID:isReplaceAllImages:_:)":{"role":"symbol","title":"applySearchCriteria(itemID:isReplaceAllImages:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"applySearchCriteria"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Applies search criteria to an item and refreshes metadata."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/applySearchCriteria(itemID:isReplaceAllImages:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/applysearchcriteria(itemid:isreplaceallimages:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecordingsSeries(parameters:)":{"role":"symbol","title":"getRecordingsSeries(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingsSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRecordingsSeriesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live tv recording series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingsSeries(parameters:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseries(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headGenreImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headGenreImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headGenreImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicArtistRemoteSearchResults(_:)":{"role":"symbol","title":"getMusicArtistRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicArtistRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ArtistInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get music artist remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicArtistRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicartistremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addMediaPath(isRefreshLibrary:_:)":{"role":"symbol","title":"addMediaPath(isRefreshLibrary:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addMediaPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MediaPathDto","preciseIdentifier":"s:11JellyfinAPI12MediaPathDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Add a media path to a library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addMediaPath(isRefreshLibrary:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addmediapath(isrefreshlibrary:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayPing(_:)":{"role":"symbol","title":"syncPlayPing(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPing"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PingRequestDto","preciseIdentifier":"s:11JellyfinAPI14PingRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Update session ping."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPing(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayping(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPlaylistItems(playlistID:parameters:)":{"role":"symbol","title":"getPlaylistItems(playlistID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlaylistItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPlaylistItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the original items of a playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlaylistItems(playlistID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitems(playlistid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createAdminNotification(_:)":{"role":"symbol","title":"createAdminNotification(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createAdminNotification"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AdminNotificationDto","preciseIdentifier":"s:11JellyfinAPI20AdminNotificationDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sends a notification to all admins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createAdminNotification(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createadminnotification(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters":{"role":"symbol","title":"Paths.AddListingProviderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddListingProviderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddListingProviderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUserViews(userID:parameters:)":{"role":"symbol","title":"getUserViews(userID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserViews"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUserViewsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserViewsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get user views."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserViews(userID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviews(userid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySetShuffleMode(_:)":{"role":"symbol","title":"syncPlaySetShuffleMode(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetShuffleMode"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetShuffleModeRequestDto","preciseIdentifier":"s:11JellyfinAPI24SetShuffleModeRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to set shuffle mode in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetShuffleMode(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaysetshufflemode(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarTrailers(itemID:parameters:)":{"role":"symbol","title":"getSimilarTrailers(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarTrailersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarTrailers(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailers(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTimers(parameters:)":{"role":"symbol","title":"getTimers(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTimers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetTimersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetTimersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the live tv timers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTimers(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimers(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getArtists(parameters:)":{"role":"symbol","title":"getArtists(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all artists from a given item, folder, or the entire library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtists(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartists(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNetworkShares":{"role":"symbol","title":"getNetworkShares","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNetworkShares"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets network paths."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNetworkShares","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getnetworkshares"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBookRemoteSearchResults(_:)":{"role":"symbol","title":"getBookRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBookRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BookInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get book remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBookRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getbookremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/sendSystemCommand(sessionID:command:)":{"role":"symbol","title":"sendSystemCommand(sessionID:command:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendSystemCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Issues a system command to a client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendSystemCommand(sessionID:command:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/sendsystemcommand(sessionid:command:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTunerHostTypes":{"role":"symbol","title":"getTunerHostTypes","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTunerHostTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get tuner host types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTunerHostTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettunerhosttypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/stopTask(taskID:)":{"role":"symbol","title":"stopTask(taskID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Stop specified task."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/stopTask(taskID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/stoptask(taskid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDefaultTimer(programID:)":{"role":"symbol","title":"getDefaultTimer(programID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the default values for a new timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultTimer(programID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdefaulttimer(programid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGeneralImage(name:type:)":{"role":"symbol","title":"getGeneralImage(name:type:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGeneralImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get General Image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGeneralImage(name:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgeneralimage(name:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRootFolder(userID:)":{"role":"symbol","title":"getRootFolder(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRootFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the root folder from a user’s library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRootFolder(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrootfolder(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateMediaPath(_:)":{"role":"symbol","title":"updateMediaPath(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateMediaPath"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateMediaPathRequestDto","preciseIdentifier":"s:11JellyfinAPI25UpdateMediaPathRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a media path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateMediaPath(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatemediapath(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDescriptionXml2(serverID:)":{"role":"symbol","title":"getDescriptionXml2(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDescriptionXml2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get Description Xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDescriptionXml2(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdescriptionxml2(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteCustomSplashscreen":{"role":"symbol","title":"deleteCustomSplashscreen","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteCustomSplashscreen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete a custom splashscreen."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteCustomSplashscreen","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletecustomsplashscreen"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getEpisodes(seriesID:parameters:)":{"role":"symbol","title":"getEpisodes(seriesID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEpisodes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetEpisodesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets episodes for a tv season."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEpisodes(seriesID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodes(seriesid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/logFile(_:)":{"role":"symbol","title":"logFile(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"logFile"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Upload a document."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/logFile(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/logfile(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayStop":{"role":"symbol","title":"syncPlayStop","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayStop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request stop in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayStop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaystop"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/sendMessageCommand(sessionID:_:)":{"role":"symbol","title":"sendMessageCommand(sessionID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendMessageCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MessageCommand","preciseIdentifier":"s:11JellyfinAPI14MessageCommandV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Issues a command to a client to display a message to the user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendMessageCommand(sessionID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/sendmessagecommand(sessionid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/discvoverTuners(isNewDevicesOnly:)":{"role":"symbol","title":"discvoverTuners(isNewDevicesOnly:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discvoverTuners"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isNewDevicesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Discover tuners."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/discvoverTuners(isNewDevicesOnly:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/discvovertuners(isnewdevicesonly:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPerson(name:userID:)":{"role":"symbol","title":"getPerson(name:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPerson"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get person by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPerson(name:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getperson(name:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayJoinGroup(_:)":{"role":"symbol","title":"syncPlayJoinGroup(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayJoinGroup"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"JoinGroupRequestDto","preciseIdentifier":"s:11JellyfinAPI19JoinGroupRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Join an existing SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayJoinGroup(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayjoingroup(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayLeaveGroup":{"role":"symbol","title":"syncPlayLeaveGroup","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayLeaveGroup"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Leave the joined SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayLeaveGroup","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayleavegroup"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters":{"role":"symbol","title":"Paths.InstallPackageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallPackageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallPackageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getCriticReviews(itemID:)":{"role":"symbol","title":"getCriticReviews(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCriticReviews"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets critic review for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCriticReviews(itemID:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getcriticreviews(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNamedConfiguration(key:)":{"role":"symbol","title":"getNamedConfiguration(key:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNamedConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a named configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNamedConfiguration(key:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnamedconfiguration(key:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPhysicalPaths":{"role":"symbol","title":"getPhysicalPaths","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPhysicalPaths"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of physical paths from virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPhysicalPaths","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getphysicalpaths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headAudioStreamByContainer(itemID:container:parameters:)":{"role":"symbol","title":"headAudioStreamByContainer(itemID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headAudioStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadAudioStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headAudioStreamByContainer(itemID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainer(itemid:container:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/shutdownApplication":{"role":"symbol","title":"shutdownApplication","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shutdownApplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Shuts down the application."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/shutdownApplication","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/shutdownapplication"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUserConfiguration(userID:_:)":{"role":"symbol","title":"updateUserConfiguration(userID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a user configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserConfiguration(userID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateuserconfiguration(userid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSystemInfo":{"role":"symbol","title":"getSystemInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSystemInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets information about the server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSystemInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDashboardConfigurationPage(name:)":{"role":"symbol","title":"getDashboardConfigurationPage(name:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDashboardConfigurationPage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a dashboard configuration page."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDashboardConfigurationPage(name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdashboardconfigurationpage(name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSubtitle(routeItemID:routeMediaSourceID:routeIndex:routeFormat:parameters:)":{"role":"symbol","title":"getSubtitle(routeItemID:routeMediaSourceID:routeIndex:routeFormat:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"routeItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeMediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSubtitleParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets subtitles in a specified format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitle(routeItemID:routeMediaSourceID:routeIndex:routeFormat:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitle(routeitemid:routemediasourceid:routeindex:routeformat:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postUserImage(userID:imageType:index:_:)":{"role":"symbol","title":"postUserImage(userID:imageType:index:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets the user image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUserImage(userID:imageType:index:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postuserimage(userid:imagetype:index:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/closeLiveStream(liveStreamID:)":{"role":"symbol","title":"closeLiveStream(liveStreamID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"closeLiveStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Closes a media source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/closeLiveStream(liveStreamID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/closelivestream(livestreamid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headVideoStreamByContainer(itemID:container:parameters:)":{"role":"symbol","title":"headVideoStreamByContainer(itemID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headVideoStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadVideoStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headVideoStreamByContainer(itemID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainer(itemid:container:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMusicGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMusicGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get music genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDrives":{"role":"symbol","title":"getDrives","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDrives"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets available drives from the server’s file system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDrives","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdrives"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/get(parameters:)":{"role":"symbol","title":"get(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO13GetParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the search hint result."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/get(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/get(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/reportPlaybackProgress(_:)":{"role":"symbol","title":"reportPlaybackProgress(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackProgress"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackProgressInfo","preciseIdentifier":"s:11JellyfinAPI20PlaybackProgressInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports playback progress within a session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackProgress(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/reportplaybackprogress(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDefaultDirectoryBrowser":{"role":"symbol","title":"getDefaultDirectoryBrowser","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultDirectoryBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get Default directory browser."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultDirectoryBrowser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdefaultdirectorybrowser"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUsers(isHidden:isDisabled:)":{"role":"symbol","title":"getUsers(isHidden:isDisabled:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUsers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of users."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUsers(isHidden:isDisabled:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getusers(ishidden:isdisabled:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/onPlaybackProgress(userID:itemID:parameters:)":{"role":"symbol","title":"onPlaybackProgress(userID:itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackProgress"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OnPlaybackProgressParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports a user’s playback progress."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackProgress(userID:itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogress(userid:itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/removeFromPlaylist(playlistID:entryIDs:)":{"role":"symbol","title":"removeFromPlaylist(playlistID:entryIDs:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"entryIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Removes items from a playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeFromPlaylist(playlistID:entryIDs:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removefromplaylist(playlistid:entryids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDownload(itemID:)":{"role":"symbol","title":"getDownload(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDownload"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Downloads item media."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDownload(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdownload(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTrailers(parameters:)":{"role":"symbol","title":"getTrailers(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetTrailersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetTrailersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Finds movies and trailers similar to a given trailer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTrailers(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailers(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/removeUserFromSession(sessionID:userID:)":{"role":"symbol","title":"removeUserFromSession(sessionID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeUserFromSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Removes an additional user from a session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeUserFromSession(sessionID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removeuserfromsession(sessionid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPrograms(_:)":{"role":"symbol","title":"getPrograms(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPrograms"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GetProgramsDto","preciseIdentifier":"s:11JellyfinAPI14GetProgramsDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available live tv epgs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPrograms(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getprograms(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemImageByIndex(itemID:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getItemImageByIndex(itemID:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImageByIndex(itemID:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindex(itemid:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteUserImageByIndex(userID:imageType:index:)":{"role":"symbol","title":"deleteUserImageByIndex(userID:imageType:index:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete the user’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserImageByIndex(userID:imageType:index:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteuserimagebyindex(userid:imagetype:index:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postCapabilities(parameters:)":{"role":"symbol","title":"postCapabilities(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postCapabilities"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PostCapabilitiesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates capabilities for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postCapabilities(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilities(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayGetGroups":{"role":"symbol","title":"syncPlayGetGroups","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayGetGroups"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GroupInfoDto","preciseIdentifier":"s:11JellyfinAPI12GroupInfoDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets all SyncPlay groups."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayGetGroups","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaygetgroups"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters":{"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveTvPrograms(parameters:)":{"role":"symbol","title":"getLiveTvPrograms(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvPrograms"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLiveTvProgramsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available live tv epgs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvPrograms(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprograms(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/revokeKey(key:)":{"role":"symbol","title":"revokeKey(key:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"revokeKey"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Remove an api key."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/revokeKey(key:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/revokekey(key:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postAddedMovies(tmdbID:imdbID:)":{"role":"symbol","title":"postAddedMovies(tmdbID:imdbID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postAddedMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that new movies have been added by an external source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postAddedMovies(tmdbID:imdbID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postaddedmovies(tmdbid:imdbid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/reportViewing(sessionID:itemID:)":{"role":"symbol","title":"reportViewing(sessionID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportViewing"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that a session is viewing an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportViewing(sessionID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/reportviewing(sessionid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getParentPath(path:)":{"role":"symbol","title":"getParentPath(path:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getParentPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the parent path of a given path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getParentPath(path:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparentpath(path:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters":{"role":"symbol","title":"Paths.GetTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayRemoveFromPlaylist(_:)":{"role":"symbol","title":"syncPlayRemoveFromPlaylist(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayRemoveFromPlaylist"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoveFromPlaylistRequestDto","preciseIdentifier":"s:11JellyfinAPI28RemoveFromPlaylistRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to remove items from the playlist in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayRemoveFromPlaylist(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayremovefromplaylist(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPersonImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getPersonImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPersonImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get person image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getParentalRatings":{"role":"symbol","title":"getParentalRatings","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getParentalRatings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets known parental ratings."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getParentalRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparentalratings"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaReceiverRegistrar3(serverID:)":{"role":"symbol","title":"getMediaReceiverRegistrar3(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar3(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediareceiverregistrar3(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDisplayPreferences(displayPreferencesID:userID:client:)":{"role":"symbol","title":"getDisplayPreferences(displayPreferencesID:userID:client:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDisplayPreferences"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get Display Preferences."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDisplayPreferences(displayPreferencesID:userID:client:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdisplaypreferences(displaypreferencesid:userid:client:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters":{"role":"symbol","title":"Paths.GetSessionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSessionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSessionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/cancelTimer(timerID:)":{"role":"symbol","title":"cancelTimer(timerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Cancels a live tv timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelTimer(timerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/canceltimer(timerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/onPlaybackStart(userID:itemID:parameters:)":{"role":"symbol","title":"onPlaybackStart(userID:itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackStart"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OnPlaybackStartParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that a user has begun playing an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackStart(userID:itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstart(userid:itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveHlsStream(itemID:parameters:)":{"role":"symbol","title":"getLiveHlsStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveHlsStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLiveHlsStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a hls live stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveHlsStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateItemImageIndex(itemID:imageType:imageIndex:newIndex:)":{"role":"symbol","title":"updateItemImageIndex(itemID:imageType:imageIndex:newIndex:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItemImageIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates the index for an item image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItemImageIndex(itemID:imageType:imageIndex:newIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateitemimageindex(itemid:imagetype:imageindex:newindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUserPolicy(userID:_:)":{"role":"symbol","title":"updateUserPolicy(userID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserPolicy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a user policy."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserPolicy(userID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateuserpolicy(userid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBitrateTestBytes(size:)":{"role":"symbol","title":"getBitrateTestBytes(size:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBitrateTestBytes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Tests the network with a request with the size of the bitrate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBitrateTestBytes(size:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getbitratetestbytes(size:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getConfigurationPages(enableInMainMenu:)":{"role":"symbol","title":"getConfigurationPages(enableInMainMenu:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConfigurationPages"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ConfigurationPageInfo","preciseIdentifier":"s:11JellyfinAPI21ConfigurationPageInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets the configuration pages."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConfigurationPages(enableInMainMenu:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getconfigurationpages(enableinmainmenu:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/startTask(taskID:)":{"role":"symbol","title":"startTask(taskID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Start specified task."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/startTask(taskID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/starttask(taskid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getProfileInfos":{"role":"symbol","title":"getProfileInfos","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProfileInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceProfileInfo","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get profile infos."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProfileInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getprofileinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateProfile(profileID:_:)":{"role":"symbol","title":"updateProfile(profileID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateProfile(profileID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateprofile(profileid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getThemeSongs(itemID:userID:isInheritFromParent:)":{"role":"symbol","title":"getThemeSongs(itemID:userID:isInheritFromParent:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeSongs"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get theme songs for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeSongs(itemID:userID:isInheritFromParent:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getthemesongs(itemid:userid:isinheritfromparent:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateItemContentType(itemID:contentType:)":{"role":"symbol","title":"updateItemContentType(itemID:contentType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItemContentType"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates an item’s content type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItemContentType(itemID:contentType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateitemcontenttype(itemid:contenttype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUserImage(userID:imageType:parameters:)":{"role":"symbol","title":"getUserImage(userID:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUserImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get user profile image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserImage(userID:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimage(userid:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicVideoRemoteSearchResults(_:)":{"role":"symbol","title":"getMusicVideoRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicVideoRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MusicVideoInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get music video remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicVideoRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicvideoremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicGenres(parameters:)":{"role":"symbol","title":"getMusicGenres(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenres"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMusicGenresParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all music genres from a given item, folder, or the entire library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenres(parameters:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenres(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUtcTime":{"role":"symbol","title":"getUtcTime","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUtcTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the current UTC time."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUtcTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getutctime"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getProgram(programID:userID:)":{"role":"symbol","title":"getProgram(programID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProgram"},{"kind":"text","text":"("},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a live tv program."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProgram(programID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getprogram(programid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/forgotPassword(_:)":{"role":"symbol","title":"forgotPassword(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"forgotPassword"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ForgotPasswordDto","preciseIdentifier":"s:11JellyfinAPI17ForgotPasswordDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Initiates the forgot password process for a local user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/forgotPassword(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/forgotpassword(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteItemImageByIndex(itemID:imageType:imageIndex:)":{"role":"symbol","title":"deleteItemImageByIndex(itemID:imageType:imageIndex:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete an item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItemImageByIndex(itemID:imageType:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteitemimagebyindex(itemid:imagetype:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteTunerHost(id:)":{"role":"symbol","title":"deleteTunerHost(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteTunerHost"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes a tuner host."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteTunerHost(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletetunerhost(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getCultures":{"role":"symbol","title":"getCultures","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCultures"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets known cultures."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCultures","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcultures"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteUserItemRating(userID:itemID:)":{"role":"symbol","title":"deleteUserItemRating(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserItemRating"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Deletes a user’s saved personal rating for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserItemRating(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteuseritemrating(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateTask(taskID:_:)":{"role":"symbol","title":"updateTask(taskID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Update specified task triggers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateTask(taskID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatetask(taskid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters":{"role":"symbol","title":"Paths.GetSimilarTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMovieRemoteSearchResults(_:)":{"role":"symbol","title":"getMovieRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMovieRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MovieInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get movie remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMovieRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovieremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGenreImage(name:imageType:parameters:)":{"role":"symbol","title":"getGenreImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenreImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateLibraryOptions(_:)":{"role":"symbol","title":"updateLibraryOptions(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateLibraryOptions"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateLibraryOptionsDto","preciseIdentifier":"s:11JellyfinAPI23UpdateLibraryOptionsDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Update library options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateLibraryOptions(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatelibraryoptions(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromArtists2(parameters:)":{"role":"symbol","title":"getInstantMixFromArtists2(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromArtists2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromArtists2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given artist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromArtists2(parameters:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getContentDirectory3(serverID:)":{"role":"symbol","title":"getContentDirectory3(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna content directory xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory3(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcontentdirectory3(serverid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingprovider(parameters:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingprovider(parameters:_:).json new file mode 100644 index 000000000..47d1daff1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingprovider(parameters:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addListingProvider"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28AddListingProviderParametersV","text":"AddListingProviderParameters"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV","text":"ListingsProviderInfo"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addlistingprovider(parameters:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addListingProvider(parameters:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Adds a listings provider."}],"kind":"symbol","metadata":{"role":"symbol","title":"addListingProvider(parameters:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addListingProvider"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AddListingProviderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28AddListingProviderParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18addListingProvider10parameters_3Get7RequestVyAA08ListingsF4InfoVGAC03AddeF10ParametersVSg_AJSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addListingProvider(parameters:_:)":{"role":"symbol","title":"addListingProvider(parameters:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addListingProvider"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AddListingProviderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28AddListingProviderParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ListingsProviderInfo","preciseIdentifier":"s:11JellyfinAPI20ListingsProviderInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Adds a listings provider."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addListingProvider(parameters:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingprovider(parameters:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters":{"role":"symbol","title":"Paths.AddListingProviderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddListingProviderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddListingProviderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters.json new file mode 100644 index 000000000..944f6b7e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddListingProviderParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"AddListingProviderParameters"}],"role":"symbol","title":"Paths.AddListingProviderParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddListingProviderParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO28AddListingProviderParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/init(pw:isValidateListings:isValidateLogin:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/isValidateListings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/isValidateLogin","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/pw"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters/init(pw:isValidateListings:isValidateLogin:)":{"role":"symbol","title":"init(pw:isValidateListings:isValidateLogin:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isValidateListings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isValidateLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/init(pw:isValidateListings:isValidateLogin:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/init(pw:isvalidatelistings:isvalidatelogin:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters/isValidateLogin":{"role":"symbol","title":"isValidateLogin","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/isValidateLogin","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/isvalidatelogin"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters/isValidateListings":{"role":"symbol","title":"isValidateListings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateListings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/isValidateListings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/isvalidatelistings"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters/pw":{"role":"symbol","title":"pw","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/pw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/pw"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters":{"role":"symbol","title":"Paths.AddListingProviderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddListingProviderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddListingProviderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/asquery.json new file mode 100644 index 000000000..1cb633ad7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28AddListingProviderParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters":{"role":"symbol","title":"Paths.AddListingProviderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddListingProviderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddListingProviderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/init(pw:isvalidatelistings:isvalidatelogin:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/init(pw:isvalidatelistings:isvalidatelogin:).json new file mode 100644 index 000000000..a8d9ffb85 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/init(pw:isvalidatelistings:isvalidatelogin:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isValidateListings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isValidateLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/init(pw:isvalidatelistings:isvalidatelogin:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/init(pw:isValidateListings:isValidateLogin:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isValidateListings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isValidateLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(pw:isValidateListings:isValidateLogin:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO28AddListingProviderParametersV2pw18isValidateListings0iJ5LoginAESSSg_SbSgAJtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters/init(pw:isValidateListings:isValidateLogin:)":{"role":"symbol","title":"init(pw:isValidateListings:isValidateLogin:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isValidateListings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isValidateLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/init(pw:isValidateListings:isValidateLogin:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/init(pw:isvalidatelistings:isvalidatelogin:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters":{"role":"symbol","title":"Paths.AddListingProviderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddListingProviderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddListingProviderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/isvalidatelistings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/isvalidatelistings.json new file mode 100644 index 000000000..1dff78815 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/isvalidatelistings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateListings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/isvalidatelistings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/isValidateListings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateListings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isValidateListings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28AddListingProviderParametersV18isValidateListingsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters":{"role":"symbol","title":"Paths.AddListingProviderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddListingProviderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddListingProviderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters/isValidateListings":{"role":"symbol","title":"isValidateListings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateListings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/isValidateListings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/isvalidatelistings"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/isvalidatelogin.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/isvalidatelogin.json new file mode 100644 index 000000000..572636dad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/isvalidatelogin.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/isvalidatelogin"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/isValidateLogin","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isValidateLogin","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28AddListingProviderParametersV15isValidateLoginSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters/isValidateLogin":{"role":"symbol","title":"isValidateLogin","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/isValidateLogin","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/isvalidatelogin"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters":{"role":"symbol","title":"Paths.AddListingProviderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddListingProviderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddListingProviderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/pw.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/pw.json new file mode 100644 index 000000000..90fc9d711 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addlistingproviderparameters/pw.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/pw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/pw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"pw","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28AddListingProviderParametersV2pwSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters":{"role":"symbol","title":"Paths.AddListingProviderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddListingProviderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddListingProviderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddListingProviderParameters/pw":{"role":"symbol","title":"pw","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddListingProviderParameters\/pw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addlistingproviderparameters\/pw"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addmediapath(isrefreshlibrary:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addmediapath(isrefreshlibrary:_:).json new file mode 100644 index 000000000..a717ea924 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addmediapath(isrefreshlibrary:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addMediaPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","preciseIdentifier":"s:11JellyfinAPI12MediaPathDtoV","text":"MediaPathDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addmediapath(isrefreshlibrary:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addMediaPath(isRefreshLibrary:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Add a media path to a library."}],"kind":"symbol","metadata":{"role":"symbol","title":"addMediaPath(isRefreshLibrary:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addMediaPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MediaPathDto","preciseIdentifier":"s:11JellyfinAPI12MediaPathDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12addMediaPath16isRefreshLibrary_3Get7RequestVyytGSbSg_AA0eF3DtoVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addMediaPath(isRefreshLibrary:_:)":{"role":"symbol","title":"addMediaPath(isRefreshLibrary:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addMediaPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MediaPathDto","preciseIdentifier":"s:11JellyfinAPI12MediaPathDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Add a media path to a library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addMediaPath(isRefreshLibrary:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addmediapath(isrefreshlibrary:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathDto":{"role":"symbol","title":"MediaPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathDto"}],"abstract":[{"type":"text","text":"Media Path dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathDto"}],"url":"\/documentation\/jellyfinapi\/mediapathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addtocollection(collectionid:ids:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addtocollection(collectionid:ids:).json new file mode 100644 index 000000000..3b7af1136 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addtocollection(collectionid:ids:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addtocollection(collectionid:ids:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addToCollection(collectionID:ids:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Adds items to a collection."}],"kind":"symbol","metadata":{"role":"symbol","title":"addToCollection(collectionID:ids:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15addToCollection12collectionID3ids3Get7RequestVyytGSS_Say10Foundation4UUIDVGtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addToCollection(collectionID:ids:)":{"role":"symbol","title":"addToCollection(collectionID:ids:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Adds items to a collection."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addToCollection(collectionID:ids:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addtocollection(collectionid:ids:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addtoplaylist(playlistid:ids:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addtoplaylist(playlistid:ids:userid:).json new file mode 100644 index 000000000..296d31109 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addtoplaylist(playlistid:ids:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addtoplaylist(playlistid:ids:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addToPlaylist(playlistID:ids:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Adds items to a playlist."}],"kind":"symbol","metadata":{"role":"symbol","title":"addToPlaylist(playlistID:ids:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13addToPlaylist10playlistID3ids04userH03Get7RequestVyytGSS_Say10Foundation4UUIDVGSgANSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addToPlaylist(playlistID:ids:userID:)":{"role":"symbol","title":"addToPlaylist(playlistID:ids:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Adds items to a playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addToPlaylist(playlistID:ids:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addtoplaylist(playlistid:ids:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addtunerhost(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addtunerhost(_:).json new file mode 100644 index 000000000..dcab77caf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addtunerhost(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addTunerHost"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV","text":"TunerHostInfo"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addtunerhost(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addTunerHost(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Adds a tuner host."}],"kind":"symbol","metadata":{"role":"symbol","title":"addTunerHost(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addTunerHost"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12addTunerHosty3Get7RequestVyAA0eF4InfoVGAISgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addTunerHost(_:)":{"role":"symbol","title":"addTunerHost(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addTunerHost"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Adds a tuner host."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addTunerHost(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addtunerhost(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addusertosession(sessionid:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addusertosession(sessionid:userid:).json new file mode 100644 index 000000000..0fde18c3c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addusertosession(sessionid:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addUserToSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addusertosession(sessionid:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addUserToSession(sessionID:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Adds an additional user to a session."}],"kind":"symbol","metadata":{"role":"symbol","title":"addUserToSession(sessionID:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addUserToSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16addUserToSession9sessionID04userI03Get7RequestVyytGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addUserToSession(sessionID:userID:)":{"role":"symbol","title":"addUserToSession(sessionID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addUserToSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Adds an additional user to a session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addUserToSession(sessionID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addusertosession(sessionid:userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolder(parameters:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolder(parameters:_:).json new file mode 100644 index 000000000..576a99c5e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolder(parameters:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV","text":"AddVirtualFolderParameters"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto","preciseIdentifier":"s:11JellyfinAPI19AddVirtualFolderDtoV","text":"AddVirtualFolderDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addvirtualfolder(parameters:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addVirtualFolder(parameters:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Adds a virtual folder."}],"kind":"symbol","metadata":{"role":"symbol","title":"addVirtualFolder(parameters:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AddVirtualFolderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AddVirtualFolderDto","preciseIdentifier":"s:11JellyfinAPI19AddVirtualFolderDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16addVirtualFolder10parameters_3Get7RequestVyytGAC03AddeF10ParametersVSg_AA0jeF3DtoVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/addVirtualFolder(parameters:_:)":{"role":"symbol","title":"addVirtualFolder(parameters:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AddVirtualFolderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AddVirtualFolderDto","preciseIdentifier":"s:11JellyfinAPI19AddVirtualFolderDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Adds a virtual folder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/addVirtualFolder(parameters:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolder(parameters:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters":{"role":"symbol","title":"Paths.AddVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/AddVirtualFolderDto":{"role":"symbol","title":"AddVirtualFolderDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderDto"}],"abstract":[{"type":"text","text":"Add virtual folder dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AddVirtualFolderDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderDto"}],"url":"\/documentation\/jellyfinapi\/addvirtualfolderdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters.json new file mode 100644 index 000000000..cb424e29e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"role":"symbol","title":"Paths.AddVirtualFolderParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/init(name:collectionType:paths:isRefreshLibrary:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/collectionType-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/isRefreshLibrary","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/paths"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/CollectionType-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/collectionType-swift.property":{"role":"symbol","title":"collectionType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionType","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV14CollectionTypea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/collectionType-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/collectiontype-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/CollectionType-swift.typealias":{"role":"symbol","title":"Paths.AddVirtualFolderParameters.CollectionType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/CollectionType-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionType"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/collectiontype-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters":{"role":"symbol","title":"Paths.AddVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/init(name:collectionType:paths:isRefreshLibrary:)":{"role":"symbol","title":"init(name:collectionType:paths:isRefreshLibrary:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionType","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV14CollectionTypea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"paths"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/init(name:collectionType:paths:isRefreshLibrary:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/init(name:collectiontype:paths:isrefreshlibrary:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/isRefreshLibrary":{"role":"symbol","title":"isRefreshLibrary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/isRefreshLibrary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/isrefreshlibrary"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/paths":{"role":"symbol","title":"paths","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"paths"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/paths","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/asquery.json new file mode 100644 index 000000000..766080afb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters":{"role":"symbol","title":"Paths.AddVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/collectiontype-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/collectiontype-swift.property.json new file mode 100644 index 000000000..f6ee3944f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/collectiontype-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/CollectionType-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV14CollectionTypea","text":"CollectionType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/collectiontype-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/collectionType-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionType","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV14CollectionTypea"},{"kind":"text","text":"?"}],"title":"collectionType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV14collectionTypeAA010CollectionI7OptionsOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters":{"role":"symbol","title":"Paths.AddVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/collectionType-swift.property":{"role":"symbol","title":"collectionType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionType","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV14CollectionTypea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/collectionType-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/collectiontype-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/CollectionType-swift.typealias":{"role":"symbol","title":"Paths.AddVirtualFolderParameters.CollectionType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/CollectionType-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionType"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/collectiontype-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/collectiontype-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/collectiontype-swift.typealias.json new file mode 100644 index 000000000..e3e610ac3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/collectiontype-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionType"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","preciseIdentifier":"s:11JellyfinAPI21CollectionTypeOptionsO","text":"CollectionTypeOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/collectiontype-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/CollectionType-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionType"}],"title":"Paths.AddVirtualFolderParameters.CollectionType","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV14CollectionTypea","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"CollectionType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters":{"role":"symbol","title":"Paths.AddVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/CollectionType-swift.typealias":{"role":"symbol","title":"Paths.AddVirtualFolderParameters.CollectionType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/CollectionType-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionType"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/collectiontype-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/init(name:collectiontype:paths:isrefreshlibrary:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/init(name:collectiontype:paths:isrefreshlibrary:).json new file mode 100644 index 000000000..08ae3afc2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/init(name:collectiontype:paths:isrefreshlibrary:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/CollectionType-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV14CollectionTypea","text":"CollectionType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"paths"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/init(name:collectiontype:paths:isrefreshlibrary:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/init(name:collectionType:paths:isRefreshLibrary:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionType","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV14CollectionTypea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"paths"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(name:collectionType:paths:isRefreshLibrary:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV4name14collectionType5paths16isRefreshLibraryAESSSg_AA010CollectionJ7OptionsOSgSaySSGSgSbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters":{"role":"symbol","title":"Paths.AddVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/init(name:collectionType:paths:isRefreshLibrary:)":{"role":"symbol","title":"init(name:collectionType:paths:isRefreshLibrary:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionType","preciseIdentifier":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV14CollectionTypea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"paths"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/init(name:collectionType:paths:isRefreshLibrary:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/init(name:collectiontype:paths:isrefreshlibrary:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/CollectionType-swift.typealias":{"role":"symbol","title":"Paths.AddVirtualFolderParameters.CollectionType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/CollectionType-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionType"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/collectiontype-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/isrefreshlibrary.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/isrefreshlibrary.json new file mode 100644 index 000000000..2807ee635 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/isrefreshlibrary.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/isrefreshlibrary"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/isRefreshLibrary","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRefreshLibrary","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV16isRefreshLibrarySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/isRefreshLibrary":{"role":"symbol","title":"isRefreshLibrary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/isRefreshLibrary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/isrefreshlibrary"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters":{"role":"symbol","title":"Paths.AddVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/name.json new file mode 100644 index 000000000..ca2d387ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters":{"role":"symbol","title":"Paths.AddVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/paths.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/paths.json new file mode 100644 index 000000000..a3e9d5593 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/addvirtualfolderparameters/paths.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"paths"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/paths"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/paths","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"paths"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"paths","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26AddVirtualFolderParametersV5pathsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters":{"role":"symbol","title":"Paths.AddVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AddVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AddVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/AddVirtualFolderParameters/paths":{"role":"symbol","title":"paths","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"paths"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/AddVirtualFolderParameters\/paths","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/addvirtualfolderparameters\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/applysearchcriteria(itemid:isreplaceallimages:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/applysearchcriteria(itemid:isreplaceallimages:_:).json new file mode 100644 index 000000000..d5c10d261 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/applysearchcriteria(itemid:isreplaceallimages:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"applySearchCriteria"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/applysearchcriteria(itemid:isreplaceallimages:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/applySearchCriteria(itemID:isReplaceAllImages:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Applies search criteria to an item and refreshes metadata."}],"kind":"symbol","metadata":{"role":"symbol","title":"applySearchCriteria(itemID:isReplaceAllImages:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"applySearchCriteria"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19applySearchCriteria6itemID18isReplaceAllImages_3Get7RequestVyytGSS_SbSgAA06RemoteE6ResultCtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/applySearchCriteria(itemID:isReplaceAllImages:_:)":{"role":"symbol","title":"applySearchCriteria(itemID:isReplaceAllImages:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"applySearchCriteria"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Applies search criteria to an item and refreshes metadata."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/applySearchCriteria(itemID:isReplaceAllImages:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/applysearchcriteria(itemid:isreplaceallimages:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authenticateuser(userid:pw:password:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authenticateuser(userid:pw:password:).json new file mode 100644 index 000000000..055f7a793 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authenticateuser(userid:pw:password:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/authenticateuser(userid:pw:password:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateUser(userID:pw:password:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Authenticates a user."}],"kind":"symbol","metadata":{"role":"symbol","title":"authenticateUser(userID:pw:password:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16authenticateUser6userID2pw8password3Get7RequestVyAA20AuthenticationResultVGSS_S2SSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/authenticateUser(userID:pw:password:)":{"role":"symbol","title":"authenticateUser(userID:pw:password:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"pw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Authenticates a user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateUser(userID:pw:password:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/authenticateuser(userid:pw:password:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authenticateuserbyname(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authenticateuserbyname(_:).json new file mode 100644 index 000000000..a989a3038 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authenticateuserbyname(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateUserByName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","preciseIdentifier":"s:11JellyfinAPI22AuthenticateUserByNameV","text":"AuthenticateUserByName"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/authenticateuserbyname(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateUserByName(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Authenticates a user by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"authenticateUserByName(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateUserByName"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AuthenticateUserByName","preciseIdentifier":"s:11JellyfinAPI22AuthenticateUserByNameV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22authenticateUserByNamey3Get7RequestVyAA20AuthenticationResultVGAA012AuthenticateefG0VFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticateUserByName":{"role":"symbol","title":"AuthenticateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticateUserByName"}],"abstract":[{"type":"text","text":"The authenticate user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticateUserByName"}],"url":"\/documentation\/jellyfinapi\/authenticateuserbyname"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/authenticateUserByName(_:)":{"role":"symbol","title":"authenticateUserByName(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateUserByName"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AuthenticateUserByName","preciseIdentifier":"s:11JellyfinAPI22AuthenticateUserByNameV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Authenticates a user by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateUserByName(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/authenticateuserbyname(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authenticatewithquickconnect(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authenticatewithquickconnect(_:).json new file mode 100644 index 000000000..87f6bea53 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authenticatewithquickconnect(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateWithQuickConnect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto","preciseIdentifier":"s:11JellyfinAPI15QuickConnectDtoV","text":"QuickConnectDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/authenticatewithquickconnect(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateWithQuickConnect(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Authenticates a user with quick connect."}],"kind":"symbol","metadata":{"role":"symbol","title":"authenticateWithQuickConnect(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateWithQuickConnect"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"QuickConnectDto","preciseIdentifier":"s:11JellyfinAPI15QuickConnectDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO28authenticateWithQuickConnecty3Get7RequestVyAA20AuthenticationResultVGAA0fG3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationResult":{"role":"symbol","title":"AuthenticationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationResult"}],"url":"\/documentation\/jellyfinapi\/authenticationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/authenticateWithQuickConnect(_:)":{"role":"symbol","title":"authenticateWithQuickConnect(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticateWithQuickConnect"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"QuickConnectDto","preciseIdentifier":"s:11JellyfinAPI15QuickConnectDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Authenticates a user with quick connect."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authenticateWithQuickConnect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/authenticatewithquickconnect(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto":{"role":"symbol","title":"QuickConnectDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectDto"}],"abstract":[{"type":"text","text":"The quick connect request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectDto"}],"url":"\/documentation\/jellyfinapi\/quickconnectdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authorize(code:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authorize(code:).json new file mode 100644 index 000000000..2ab0e36df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/authorize(code:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorize"},{"kind":"text","text":"("},{"kind":"externalParam","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/authorize(code:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authorize(code:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Authorizes a pending quick connect request."}],"kind":"symbol","metadata":{"role":"symbol","title":"authorize(code:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorize"},{"kind":"text","text":"("},{"kind":"externalParam","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9authorize4code3Get7RequestVy10Foundation4DataVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/authorize(code:)":{"role":"symbol","title":"authorize(code:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorize"},{"kind":"text","text":"("},{"kind":"externalParam","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Authorizes a pending quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/authorize(code:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/authorize(code:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/cancelpackageinstallation(packageid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/cancelpackageinstallation(packageid:).json new file mode 100644 index 000000000..3af22cc68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/cancelpackageinstallation(packageid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPackageInstallation"},{"kind":"text","text":"("},{"kind":"externalParam","text":"packageID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/cancelpackageinstallation(packageid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelPackageInstallation(packageID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Cancels a package installation."}],"kind":"symbol","metadata":{"role":"symbol","title":"cancelPackageInstallation(packageID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPackageInstallation"},{"kind":"text","text":"("},{"kind":"externalParam","text":"packageID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO25cancelPackageInstallation9packageID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/cancelPackageInstallation(packageID:)":{"role":"symbol","title":"cancelPackageInstallation(packageID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPackageInstallation"},{"kind":"text","text":"("},{"kind":"externalParam","text":"packageID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Cancels a package installation."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelPackageInstallation(packageID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/cancelpackageinstallation(packageid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/cancelseriestimer(timerid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/cancelseriestimer(timerid:).json new file mode 100644 index 000000000..de707c187 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/cancelseriestimer(timerid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/cancelseriestimer(timerid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelSeriesTimer(timerID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Cancels a live tv series timer."}],"kind":"symbol","metadata":{"role":"symbol","title":"cancelSeriesTimer(timerID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17cancelSeriesTimer7timerID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/cancelSeriesTimer(timerID:)":{"role":"symbol","title":"cancelSeriesTimer(timerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Cancels a live tv series timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelSeriesTimer(timerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/cancelseriestimer(timerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/canceltimer(timerid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/canceltimer(timerid:).json new file mode 100644 index 000000000..a4ad08f55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/canceltimer(timerid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/canceltimer(timerid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelTimer(timerID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Cancels a live tv timer."}],"kind":"symbol","metadata":{"role":"symbol","title":"cancelTimer(timerID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11cancelTimer7timerID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/cancelTimer(timerID:)":{"role":"symbol","title":"cancelTimer(timerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Cancels a live tv timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/cancelTimer(timerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/canceltimer(timerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/closelivestream(livestreamid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/closelivestream(livestreamid:).json new file mode 100644 index 000000000..7da95d49f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/closelivestream(livestreamid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"closeLiveStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/closelivestream(livestreamid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/closeLiveStream(liveStreamID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Closes a media source."}],"kind":"symbol","metadata":{"role":"symbol","title":"closeLiveStream(liveStreamID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"closeLiveStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15closeLiveStream04liveF2ID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/closeLiveStream(liveStreamID:)":{"role":"symbol","title":"closeLiveStream(liveStreamID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"closeLiveStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Closes a media source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/closeLiveStream(liveStreamID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/closelivestream(livestreamid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/completewizard.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/completewizard.json new file mode 100644 index 000000000..c1fb83077 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/completewizard.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completeWizard"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/completewizard"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/completeWizard","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Completes the startup wizard."}],"kind":"symbol","metadata":{"role":"symbol","title":"completeWizard","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completeWizard"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14completeWizard3Get7RequestVyytGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/completeWizard":{"role":"symbol","title":"completeWizard","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completeWizard"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Completes the startup wizard."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/completeWizard","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/completewizard"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/connect(secret:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/connect(secret:).json new file mode 100644 index 000000000..1e481d252 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/connect(secret:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/connect(secret:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/connect(secret:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Attempts to retrieve authentication information."}],"kind":"symbol","metadata":{"role":"symbol","title":"connect(secret:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO7connect6secret3Get7RequestVyAA18QuickConnectResultVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/connect(secret:)":{"role":"symbol","title":"connect(secret:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Attempts to retrieve authentication information."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/connect(secret:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/connect(secret:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createadminnotification(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createadminnotification(_:).json new file mode 100644 index 000000000..e8ed2a074 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createadminnotification(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createAdminNotification"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","preciseIdentifier":"s:11JellyfinAPI20AdminNotificationDtoV","text":"AdminNotificationDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createadminnotification(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createAdminNotification(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sends a notification to all admins."}],"kind":"symbol","metadata":{"role":"symbol","title":"createAdminNotification(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createAdminNotification"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AdminNotificationDto","preciseIdentifier":"s:11JellyfinAPI20AdminNotificationDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO23createAdminNotificationy3Get7RequestVyytGAA0eF3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AdminNotificationDto":{"role":"symbol","title":"AdminNotificationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AdminNotificationDto"}],"abstract":[{"type":"text","text":"The admin notification dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AdminNotificationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AdminNotificationDto"}],"url":"\/documentation\/jellyfinapi\/adminnotificationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createAdminNotification(_:)":{"role":"symbol","title":"createAdminNotification(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createAdminNotification"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AdminNotificationDto","preciseIdentifier":"s:11JellyfinAPI20AdminNotificationDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sends a notification to all admins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createAdminNotification(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createadminnotification(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollection(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollection(parameters:).json new file mode 100644 index 000000000..720a5dead --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollection(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV","text":"CreateCollectionParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createcollection(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createCollection(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new collection."}],"kind":"symbol","metadata":{"role":"symbol","title":"createCollection(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CreateCollectionParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16createCollection10parameters3Get7RequestVyAA0E14CreationResultVGAC06CreateE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionCreationResult":{"role":"symbol","title":"CollectionCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionCreationResult"}],"url":"\/documentation\/jellyfinapi\/collectioncreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createCollection(parameters:)":{"role":"symbol","title":"createCollection(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CreateCollectionParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates a new collection."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createCollection(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollection(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters":{"role":"symbol","title":"Paths.CreateCollectionParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateCollectionParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters.json new file mode 100644 index 000000000..d42a8b661 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createcollectionparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"CreateCollectionParameters"}],"role":"symbol","title":"Paths.CreateCollectionParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/init(name:ids:parentID:isLocked:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/ids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/isLocked","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/parentID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters":{"role":"symbol","title":"Paths.CreateCollectionParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateCollectionParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/ids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/isLocked":{"role":"symbol","title":"isLocked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/isLocked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/islocked"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/init(name:ids:parentID:isLocked:)":{"role":"symbol","title":"init(name:ids:parentID:isLocked:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/init(name:ids:parentID:isLocked:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/init(name:ids:parentid:islocked:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/parentid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/asquery.json new file mode 100644 index 000000000..55f46b9fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters":{"role":"symbol","title":"Paths.CreateCollectionParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateCollectionParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/ids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/ids.json new file mode 100644 index 000000000..a1ced75e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/ids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/ids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/ids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"ids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV3idsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters":{"role":"symbol","title":"Paths.CreateCollectionParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateCollectionParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/ids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/init(name:ids:parentid:islocked:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/init(name:ids:parentid:islocked:).json new file mode 100644 index 000000000..6850dabea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/init(name:ids:parentid:islocked:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/init(name:ids:parentid:islocked:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/init(name:ids:parentID:isLocked:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(name:ids:parentID:isLocked:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV4name3ids8parentID8isLockedAESSSg_SaySSGSg10Foundation4UUIDVSgSbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters":{"role":"symbol","title":"Paths.CreateCollectionParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateCollectionParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/init(name:ids:parentID:isLocked:)":{"role":"symbol","title":"init(name:ids:parentID:isLocked:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/init(name:ids:parentID:isLocked:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/init(name:ids:parentid:islocked:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/islocked.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/islocked.json new file mode 100644 index 000000000..7ff944b06 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/islocked.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/islocked"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/isLocked","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isLocked","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV8isLockedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/isLocked":{"role":"symbol","title":"isLocked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/isLocked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/islocked"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters":{"role":"symbol","title":"Paths.CreateCollectionParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateCollectionParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/name.json new file mode 100644 index 000000000..852675216 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters":{"role":"symbol","title":"Paths.CreateCollectionParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateCollectionParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/parentid.json new file mode 100644 index 000000000..dc8a0f667 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createcollectionparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26CreateCollectionParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters":{"role":"symbol","title":"Paths.CreateCollectionParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateCollectionParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateCollectionParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreateCollectionParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreateCollectionParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createcollectionparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createkey(app:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createkey(app:).json new file mode 100644 index 000000000..9435567b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createkey(app:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createKey"},{"kind":"text","text":"("},{"kind":"externalParam","text":"app"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createkey(app:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createKey(app:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Create a new api key."}],"kind":"symbol","metadata":{"role":"symbol","title":"createKey(app:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createKey"},{"kind":"text","text":"("},{"kind":"externalParam","text":"app"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9createKey3app3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createKey(app:)":{"role":"symbol","title":"createKey(app:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createKey"},{"kind":"text","text":"("},{"kind":"externalParam","text":"app"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Create a new api key."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createKey(app:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createkey(app:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylist(parameters:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylist(parameters:_:).json new file mode 100644 index 000000000..8341c70c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylist(parameters:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV","text":"CreatePlaylistParameters"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","preciseIdentifier":"s:11JellyfinAPI17CreatePlaylistDtoV","text":"CreatePlaylistDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Query parameters are obsolete."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createplaylist(parameters:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createPlaylist(parameters:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new playlist."}],"kind":"symbol","metadata":{"role":"symbol","title":"createPlaylist(parameters:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CreatePlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CreatePlaylistDto","preciseIdentifier":"s:11JellyfinAPI17CreatePlaylistDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14createPlaylist10parameters_3Get7RequestVyAA0E14CreationResultVGAC06CreateE10ParametersVSg_AA0kE3DtoVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createPlaylist(parameters:_:)":{"role":"symbol","title":"createPlaylist(parameters:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CreatePlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CreatePlaylistDto","preciseIdentifier":"s:11JellyfinAPI17CreatePlaylistDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates a new playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createPlaylist(parameters:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylist(parameters:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreatePlaylistDto":{"role":"symbol","title":"CreatePlaylistDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistDto"}],"abstract":[{"type":"text","text":"Create new playlist dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreatePlaylistDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistDto"}],"url":"\/documentation\/jellyfinapi\/createplaylistdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters":{"role":"symbol","title":"Paths.CreatePlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult":{"role":"symbol","title":"PlaylistCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaylistCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaylistCreationResult"}],"url":"\/documentation\/jellyfinapi\/playlistcreationresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters.json new file mode 100644 index 000000000..012da2079 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createplaylistparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistParameters"}],"role":"symbol","title":"Paths.CreatePlaylistParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/init(name:ids:userID:mediaType:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/ids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/mediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/ids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/init(name:ids:userID:mediaType:)":{"role":"symbol","title":"init(name:ids:userID:mediaType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/init(name:ids:userID:mediaType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/init(name:ids:userid:mediatype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters":{"role":"symbol","title":"Paths.CreatePlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/mediaType":{"role":"symbol","title":"mediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/mediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/mediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/asquery.json new file mode 100644 index 000000000..59dd38459 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters":{"role":"symbol","title":"Paths.CreatePlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/ids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/ids.json new file mode 100644 index 000000000..8544d65ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/ids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/ids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/ids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"ids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV3idsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters":{"role":"symbol","title":"Paths.CreatePlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/ids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/init(name:ids:userid:mediatype:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/init(name:ids:userid:mediatype:).json new file mode 100644 index 000000000..70ce047e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/init(name:ids:userid:mediatype:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/init(name:ids:userid:mediatype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/init(name:ids:userID:mediaType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(name:ids:userID:mediaType:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV4name3ids6userID9mediaTypeAESSSg_Say10Foundation4UUIDVGSgAMSgAJtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/init(name:ids:userID:mediaType:)":{"role":"symbol","title":"init(name:ids:userID:mediaType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/init(name:ids:userID:mediaType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/init(name:ids:userid:mediatype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters":{"role":"symbol","title":"Paths.CreatePlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/mediatype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/mediatype.json new file mode 100644 index 000000000..468433939 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/mediatype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/mediatype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/mediaType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV9mediaTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/mediaType":{"role":"symbol","title":"mediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/mediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/mediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters":{"role":"symbol","title":"Paths.CreatePlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/name.json new file mode 100644 index 000000000..60bf18fa7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters":{"role":"symbol","title":"Paths.CreatePlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/userid.json new file mode 100644 index 000000000..c97935c95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createplaylistparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24CreatePlaylistParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters":{"role":"symbol","title":"Paths.CreatePlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreatePlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreatePlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/CreatePlaylistParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/CreatePlaylistParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createplaylistparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createprofile(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createprofile(_:).json new file mode 100644 index 000000000..843aaff56 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createprofile(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV","text":"DeviceProfile"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createprofile(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createProfile(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a profile."}],"kind":"symbol","metadata":{"role":"symbol","title":"createProfile(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createProfile"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13createProfiley3Get7RequestVyytGAA06DeviceE0VSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createProfile(_:)":{"role":"symbol","title":"createProfile(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createProfile"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Creates a profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createProfile(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createprofile(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createseriestimer(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createseriestimer(_:).json new file mode 100644 index 000000000..42ceb587e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createseriestimer(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV","text":"SeriesTimerInfoDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createseriestimer(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createSeriesTimer(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a live tv series timer."}],"kind":"symbol","metadata":{"role":"symbol","title":"createSeriesTimer(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createSeriesTimer"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17createSeriesTimery3Get7RequestVyytGAA0eF7InfoDtoVSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createSeriesTimer(_:)":{"role":"symbol","title":"createSeriesTimer(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createSeriesTimer"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Creates a live tv series timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createSeriesTimer(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createseriestimer(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createtimer(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createtimer(_:).json new file mode 100644 index 000000000..0fd4760bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createtimer(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV","text":"TimerInfoDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createtimer(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createTimer(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a live tv timer."}],"kind":"symbol","metadata":{"role":"symbol","title":"createTimer(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createTimer"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11createTimery3Get7RequestVyytGAA0E7InfoDtoVSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createTimer(_:)":{"role":"symbol","title":"createTimer(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createTimer"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Creates a live tv timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createTimer(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createtimer(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createuserbyname(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createuserbyname(_:).json new file mode 100644 index 000000000..dc9f80acf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/createuserbyname(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createUserByName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName","preciseIdentifier":"s:11JellyfinAPI16CreateUserByNameV","text":"CreateUserByName"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/createuserbyname(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createUserByName(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a user."}],"kind":"symbol","metadata":{"role":"symbol","title":"createUserByName(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createUserByName"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CreateUserByName","preciseIdentifier":"s:11JellyfinAPI16CreateUserByNameV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16createUserByNamey3Get7RequestVyAA0E3DtoVGAA06CreateefG0VFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/CreateUserByName":{"role":"symbol","title":"CreateUserByName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CreateUserByName"}],"abstract":[{"type":"text","text":"The create user by name request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CreateUserByName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CreateUserByName"}],"url":"\/documentation\/jellyfinapi\/createuserbyname"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/createUserByName(_:)":{"role":"symbol","title":"createUserByName(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createUserByName"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CreateUserByName","preciseIdentifier":"s:11JellyfinAPI16CreateUserByNameV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates a user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/createUserByName(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/createuserbyname(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletealternatesources(itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletealternatesources(itemid:).json new file mode 100644 index 000000000..d224d4941 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletealternatesources(itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteAlternateSources"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deletealternatesources(itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteAlternateSources(itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Removes alternate video sources."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteAlternateSources(itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteAlternateSources"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22deleteAlternateSources6itemID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteAlternateSources(itemID:)":{"role":"symbol","title":"deleteAlternateSources(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteAlternateSources"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Removes alternate video sources."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteAlternateSources(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletealternatesources(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletecustomsplashscreen.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletecustomsplashscreen.json new file mode 100644 index 000000000..857285b25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletecustomsplashscreen.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteCustomSplashscreen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deletecustomsplashscreen"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteCustomSplashscreen","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Delete a custom splashscreen."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteCustomSplashscreen","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteCustomSplashscreen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24deleteCustomSplashscreen3Get7RequestVyytGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteCustomSplashscreen":{"role":"symbol","title":"deleteCustomSplashscreen","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteCustomSplashscreen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete a custom splashscreen."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteCustomSplashscreen","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletecustomsplashscreen"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletedevice(id:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletedevice(id:).json new file mode 100644 index 000000000..d91c4915f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletedevice(id:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteDevice"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deletedevice(id:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteDevice(id:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes a device."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteDevice(id:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteDevice"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12deleteDevice2id3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteDevice(id:)":{"role":"symbol","title":"deleteDevice(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteDevice"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteDevice(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletedevice(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitem(itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitem(itemid:).json new file mode 100644 index 000000000..d5479bd55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitem(itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deleteitem(itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItem(itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes an item from the library and filesystem."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteItem(itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10deleteItem6itemID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteItem(itemID:)":{"role":"symbol","title":"deleteItem(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes an item from the library and filesystem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItem(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteitem(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitemimage(itemid:imagetype:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitemimage(itemid:imagetype:imageindex:).json new file mode 100644 index 000000000..436318a9b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitemimage(itemid:imagetype:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deleteitemimage(itemid:imagetype:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItemImage(itemID:imageType:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Delete an item’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteItemImage(itemID:imageType:imageIndex:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15deleteItemImage6itemID9imageType0I5Index3Get7RequestVyytGSS_SSs5Int32VSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteItemImage(itemID:imageType:imageIndex:)":{"role":"symbol","title":"deleteItemImage(itemID:imageType:imageIndex:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete an item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItemImage(itemID:imageType:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteitemimage(itemid:imagetype:imageindex:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitemimagebyindex(itemid:imagetype:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitemimagebyindex(itemid:imagetype:imageindex:).json new file mode 100644 index 000000000..f47a2350f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitemimagebyindex(itemid:imagetype:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deleteitemimagebyindex(itemid:imagetype:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItemImageByIndex(itemID:imageType:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Delete an item’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteItemImageByIndex(itemID:imageType:imageIndex:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22deleteItemImageByIndex6itemID9imageType0kH03Get7RequestVyytGSS_SSSitFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteItemImageByIndex(itemID:imageType:imageIndex:)":{"role":"symbol","title":"deleteItemImageByIndex(itemID:imageType:imageIndex:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete an item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItemImageByIndex(itemID:imageType:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteitemimagebyindex(itemid:imagetype:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitems(ids:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitems(ids:).json new file mode 100644 index 000000000..10f645831 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteitems(ids:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deleteitems(ids:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItems(ids:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes items from the library and filesystem."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteItems(ids:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11deleteItems3ids3Get7RequestVyytGSay10Foundation4UUIDVGSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteItems(ids:)":{"role":"symbol","title":"deleteItems(ids:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes items from the library and filesystem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteItems(ids:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteitems(ids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletelistingprovider(id:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletelistingprovider(id:).json new file mode 100644 index 000000000..f4712e0eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletelistingprovider(id:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteListingProvider"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deletelistingprovider(id:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteListingProvider(id:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Delete listing provider."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteListingProvider(id:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteListingProvider"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21deleteListingProvider2id3Get7RequestVyytGSSSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteListingProvider(id:)":{"role":"symbol","title":"deleteListingProvider(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteListingProvider"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete listing provider."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteListingProvider(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletelistingprovider(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteprofile(profileid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteprofile(profileid:).json new file mode 100644 index 000000000..c93587267 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteprofile(profileid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deleteprofile(profileid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteProfile(profileID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes a profile."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteProfile(profileID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13deleteProfile9profileID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteProfile(profileID:)":{"role":"symbol","title":"deleteProfile(profileID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes a profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteProfile(profileID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteprofile(profileid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleterecording(recordingid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleterecording(recordingid:).json new file mode 100644 index 000000000..a4fad7aa5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleterecording(recordingid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteRecording"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deleterecording(recordingid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteRecording(recordingID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes a live tv recording."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteRecording(recordingID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteRecording"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15deleteRecording11recordingID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteRecording(recordingID:)":{"role":"symbol","title":"deleteRecording(recordingID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteRecording"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes a live tv recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteRecording(recordingID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleterecording(recordingid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletesubtitle(itemid:index:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletesubtitle(itemid:index:).json new file mode 100644 index 000000000..d7fe7f2b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletesubtitle(itemid:index:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deletesubtitle(itemid:index:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteSubtitle(itemID:index:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes an external subtitle file."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteSubtitle(itemID:index:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14deleteSubtitle6itemID5index3Get7RequestVyytGSS_SitFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteSubtitle(itemID:index:)":{"role":"symbol","title":"deleteSubtitle(itemID:index:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes an external subtitle file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteSubtitle(itemID:index:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletesubtitle(itemid:index:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletetunerhost(id:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletetunerhost(id:).json new file mode 100644 index 000000000..362d1bf31 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deletetunerhost(id:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteTunerHost"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deletetunerhost(id:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteTunerHost(id:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes a tuner host."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteTunerHost(id:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteTunerHost"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15deleteTunerHost2id3Get7RequestVyytGSSSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteTunerHost(id:)":{"role":"symbol","title":"deleteTunerHost(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteTunerHost"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes a tuner host."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteTunerHost(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deletetunerhost(id:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuser(userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuser(userid:).json new file mode 100644 index 000000000..016f0b615 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuser(userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deleteuser(userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUser(userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes a user."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteUser(userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10deleteUser6userID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteUser(userID:)":{"role":"symbol","title":"deleteUser(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Deletes a user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUser(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteuser(userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuserimage(userid:imagetype:index:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuserimage(userid:imagetype:index:).json new file mode 100644 index 000000000..56e4a859a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuserimage(userid:imagetype:index:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deleteuserimage(userid:imagetype:index:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserImage(userID:imageType:index:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Delete the user’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteUserImage(userID:imageType:index:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15deleteUserImage6userID9imageType5index3Get7RequestVyytGSS_SSs5Int32VSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteUserImage(userID:imageType:index:)":{"role":"symbol","title":"deleteUserImage(userID:imageType:index:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete the user’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserImage(userID:imageType:index:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteuserimage(userid:imagetype:index:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuserimagebyindex(userid:imagetype:index:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuserimagebyindex(userid:imagetype:index:).json new file mode 100644 index 000000000..eebab5712 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuserimagebyindex(userid:imagetype:index:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deleteuserimagebyindex(userid:imagetype:index:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserImageByIndex(userID:imageType:index:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Delete the user’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteUserImageByIndex(userID:imageType:index:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22deleteUserImageByIndex6userID9imageType5index3Get7RequestVyytGSS_SSSitFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteUserImageByIndex(userID:imageType:index:)":{"role":"symbol","title":"deleteUserImageByIndex(userID:imageType:index:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Delete the user’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserImageByIndex(userID:imageType:index:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteuserimagebyindex(userid:imagetype:index:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuseritemrating(userid:itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuseritemrating(userid:itemid:).json new file mode 100644 index 000000000..8ad54e84d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/deleteuseritemrating(userid:itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserItemRating"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/deleteuseritemrating(userid:itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserItemRating(userID:itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes a user’s saved personal rating for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"deleteUserItemRating(userID:itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserItemRating"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20deleteUserItemRating6userID04itemI03Get7RequestVyAA0eF7DataDtoVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/deleteUserItemRating(userID:itemID:)":{"role":"symbol","title":"deleteUserItemRating(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteUserItemRating"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Deletes a user’s saved personal rating for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/deleteUserItemRating(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/deleteuseritemrating(userid:itemid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/disableplugin(pluginid:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/disableplugin(pluginid:version:).json new file mode 100644 index 000000000..0594291d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/disableplugin(pluginid:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"disablePlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/disableplugin(pluginid:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/disablePlugin(pluginID:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Disable a plugin."}],"kind":"symbol","metadata":{"role":"symbol","title":"disablePlugin(pluginID:version:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"disablePlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13disablePlugin8pluginID7version3Get7RequestVyytGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/disablePlugin(pluginID:version:)":{"role":"symbol","title":"disablePlugin(pluginID:version:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"disablePlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Disable a plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/disablePlugin(pluginID:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/disableplugin(pluginid:version:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/discovertuners(isnewdevicesonly:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/discovertuners(isnewdevicesonly:).json new file mode 100644 index 000000000..9b5ed3747 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/discovertuners(isnewdevicesonly:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverTuners"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isNewDevicesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV","text":"TunerHostInfo"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/discovertuners(isnewdevicesonly:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/discoverTuners(isNewDevicesOnly:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Discover tuners."}],"kind":"symbol","metadata":{"role":"symbol","title":"discoverTuners(isNewDevicesOnly:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverTuners"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isNewDevicesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14discoverTuners16isNewDevicesOnly3Get7RequestVySayAA13TunerHostInfoVGGSbSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/discoverTuners(isNewDevicesOnly:)":{"role":"symbol","title":"discoverTuners(isNewDevicesOnly:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverTuners"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isNewDevicesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Discover tuners."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/discoverTuners(isNewDevicesOnly:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/discovertuners(isnewdevicesonly:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/discvovertuners(isnewdevicesonly:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/discvovertuners(isnewdevicesonly:).json new file mode 100644 index 000000000..33ffc20a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/discvovertuners(isnewdevicesonly:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discvoverTuners"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isNewDevicesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV","text":"TunerHostInfo"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/discvovertuners(isnewdevicesonly:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/discvoverTuners(isNewDevicesOnly:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Discover tuners."}],"kind":"symbol","metadata":{"role":"symbol","title":"discvoverTuners(isNewDevicesOnly:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discvoverTuners"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isNewDevicesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15discvoverTuners16isNewDevicesOnly3Get7RequestVySayAA13TunerHostInfoVGGSbSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/discvoverTuners(isNewDevicesOnly:)":{"role":"symbol","title":"discvoverTuners(isNewDevicesOnly:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discvoverTuners"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isNewDevicesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TunerHostInfo","preciseIdentifier":"s:11JellyfinAPI13TunerHostInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Discover tuners."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/discvoverTuners(isNewDevicesOnly:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/discvovertuners(isnewdevicesonly:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontent(sessionid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontent(sessionid:parameters:).json new file mode 100644 index 000000000..b936c2fde --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontent(sessionid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayContent"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV","text":"DisplayContentParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/displaycontent(sessionid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/displayContent(sessionID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Instructs a session to browse to an item or view."}],"kind":"symbol","metadata":{"role":"symbol","title":"displayContent(sessionID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayContent"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DisplayContentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14displayContent9sessionID10parameters3Get7RequestVyytGSS_AC07DisplayE10ParametersVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/displayContent(sessionID:parameters:)":{"role":"symbol","title":"displayContent(sessionID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"displayContent"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DisplayContentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Instructs a session to browse to an item or view."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/displayContent(sessionID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontent(sessionid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters":{"role":"symbol","title":"Paths.DisplayContentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayContentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters.json new file mode 100644 index 000000000..ba1230bb2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/displaycontentparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"DisplayContentParameters"}],"role":"symbol","title":"Paths.DisplayContentParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24DisplayContentParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/init(itemType:itemID:itemName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemType-swift.property"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/ItemType-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/init(itemType:itemID:itemName:)":{"role":"symbol","title":"init(itemType:itemID:itemName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ItemType","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8ItemTypea"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/init(itemType:itemID:itemName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/init(itemtype:itemid:itemname:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters":{"role":"symbol","title":"Paths.DisplayContentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayContentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/ItemType-swift.typealias":{"role":"symbol","title":"Paths.DisplayContentParameters.ItemType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/ItemType-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemType"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemtype-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/itemType-swift.property":{"role":"symbol","title":"itemType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ItemType","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8ItemTypea"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemType-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemtype-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/itemName":{"role":"symbol","title":"itemName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/asquery.json new file mode 100644 index 000000000..68bb68968 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24DisplayContentParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters":{"role":"symbol","title":"Paths.DisplayContentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayContentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/init(itemtype:itemid:itemname:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/init(itemtype:itemid:itemname:).json new file mode 100644 index 000000000..2e29e43c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/init(itemtype:itemid:itemname:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/ItemType-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8ItemTypea","text":"ItemType"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/init(itemtype:itemid:itemname:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/init(itemType:itemID:itemName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ItemType","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8ItemTypea"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(itemType:itemID:itemName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8itemType0G2ID0G4NameAeA12BaseItemKindO_S2Stcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters":{"role":"symbol","title":"Paths.DisplayContentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayContentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/init(itemType:itemID:itemName:)":{"role":"symbol","title":"init(itemType:itemID:itemName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ItemType","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8ItemTypea"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/init(itemType:itemID:itemName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/init(itemtype:itemid:itemname:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/ItemType-swift.typealias":{"role":"symbol","title":"Paths.DisplayContentParameters.ItemType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/ItemType-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemType"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemtype-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemid.json new file mode 100644 index 000000000..d5ad507ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24DisplayContentParametersV6itemIDSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters":{"role":"symbol","title":"Paths.DisplayContentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayContentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemname.json new file mode 100644 index 000000000..83ebbe9d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"itemName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8itemNameSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/itemName":{"role":"symbol","title":"itemName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemname"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters":{"role":"symbol","title":"Paths.DisplayContentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayContentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemtype-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemtype-swift.property.json new file mode 100644 index 000000000..a63c657db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemtype-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/ItemType-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8ItemTypea","text":"ItemType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemtype-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemType-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The base item kind."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ItemType","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8ItemTypea"}],"title":"itemType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8itemTypeAA12BaseItemKindOvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/itemType-swift.property":{"role":"symbol","title":"itemType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ItemType","preciseIdentifier":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8ItemTypea"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/itemType-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemtype-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters":{"role":"symbol","title":"Paths.DisplayContentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayContentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/ItemType-swift.typealias":{"role":"symbol","title":"Paths.DisplayContentParameters.ItemType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/ItemType-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemType"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemtype-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemtype-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemtype-swift.typealias.json new file mode 100644 index 000000000..c02681271 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/displaycontentparameters/itemtype-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemType"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemtype-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/ItemType-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemType"}],"title":"Paths.DisplayContentParameters.ItemType","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24DisplayContentParametersV8ItemTypea","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ItemType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters":{"role":"symbol","title":"Paths.DisplayContentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayContentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayContentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DisplayContentParameters/ItemType-swift.typealias":{"role":"symbol","title":"Paths.DisplayContentParameters.ItemType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DisplayContentParameters\/ItemType-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemType"}],"url":"\/documentation\/jellyfinapi\/paths\/displaycontentparameters\/itemtype-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimage(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimage(itemid:parameters:).json new file mode 100644 index 000000000..2f0df8fdc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimage(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadRemoteImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV","text":"DownloadRemoteImageParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/downloadremoteimage(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/downloadRemoteImage(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Downloads a remote image for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"downloadRemoteImage(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadRemoteImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DownloadRemoteImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19downloadRemoteImage6itemID10parameters3Get7RequestVyytGSS_AC08DownloadeF10ParametersVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/downloadRemoteImage(itemID:parameters:)":{"role":"symbol","title":"downloadRemoteImage(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadRemoteImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DownloadRemoteImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Downloads a remote image for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/downloadRemoteImage(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimage(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters.json new file mode 100644 index 000000000..b3048d1e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"role":"symbol","title":"Paths.DownloadRemoteImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/init(type:imageURL:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/imageURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/type-swift.property"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/Type-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/init(type:imageURL:)":{"role":"symbol","title":"init(type:imageURL:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4Typea"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/init(type:imageURL:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/init(type:imageurl:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/imageURL":{"role":"symbol","title":"imageURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/imageURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/imageurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/type-swift.property":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4Typea"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/type-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/type-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/type-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/asquery.json new file mode 100644 index 000000000..44e5426f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/imageurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/imageurl.json new file mode 100644 index 000000000..fbb6b203c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/imageurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/imageurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/imageURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"imageURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV8imageURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/imageURL":{"role":"symbol","title":"imageURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/imageURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/imageurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/init(type:imageurl:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/init(type:imageurl:).json new file mode 100644 index 000000000..d9017851e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/init(type:imageurl:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/Type-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4Typea","text":"Type"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/init(type:imageurl:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/init(type:imageURL:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4Typea"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(type:imageURL:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4type8imageURLAeA0F4TypeO_SSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/init(type:imageURL:)":{"role":"symbol","title":"init(type:imageURL:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4Typea"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/init(type:imageURL:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/init(type:imageurl:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/type-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/type-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/type-swift.property.json new file mode 100644 index 000000000..50cf327fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/type-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/Type-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4Typea","text":"Type"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/type-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/type-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum ImageType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4Typea"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4typeAA0F4TypeOvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/type-swift.property":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4Typea"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/type-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/type-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/type-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/type-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/type-swift.typealias.json new file mode 100644 index 000000000..2ebb50f1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremoteimageparameters/type-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"`Type`"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/type-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/Type-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"title":"Paths.DownloadRemoteImageParameters.Type","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO29DownloadRemoteImageParametersV4Typea","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Type"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters\/type-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/DownloadRemoteImageParameters":{"role":"symbol","title":"Paths.DownloadRemoteImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/DownloadRemoteImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DownloadRemoteImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/downloadremoteimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremotesubtitles(itemid:subtitleid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremotesubtitles(itemid:subtitleid:).json new file mode 100644 index 000000000..3d005ed00 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/downloadremotesubtitles(itemid:subtitleid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"subtitleID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/downloadremotesubtitles(itemid:subtitleid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/downloadRemoteSubtitles(itemID:subtitleID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Downloads a remote subtitle."}],"kind":"symbol","metadata":{"role":"symbol","title":"downloadRemoteSubtitles(itemID:subtitleID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"subtitleID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO23downloadRemoteSubtitles6itemID08subtitleH03Get7RequestVyytGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/downloadRemoteSubtitles(itemID:subtitleID:)":{"role":"symbol","title":"downloadRemoteSubtitles(itemID:subtitleID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"subtitleID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Downloads a remote subtitle."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/downloadRemoteSubtitles(itemID:subtitleID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/downloadremotesubtitles(itemid:subtitleid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/enableplugin(pluginid:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/enableplugin(pluginid:version:).json new file mode 100644 index 000000000..b1993f884 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/enableplugin(pluginid:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/enableplugin(pluginid:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/enablePlugin(pluginID:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enables a disabled plugin."}],"kind":"symbol","metadata":{"role":"symbol","title":"enablePlugin(pluginID:version:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12enablePlugin8pluginID7version3Get7RequestVyytGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/enablePlugin(pluginID:version:)":{"role":"symbol","title":"enablePlugin(pluginID:version:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Enables a disabled plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/enablePlugin(pluginID:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/enableplugin(pluginid:version:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/forgotpassword(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/forgotpassword(_:).json new file mode 100644 index 000000000..9988a252c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/forgotpassword(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"forgotPassword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto","preciseIdentifier":"s:11JellyfinAPI17ForgotPasswordDtoV","text":"ForgotPasswordDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/forgotpassword(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/forgotPassword(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Initiates the forgot password process for a local user."}],"kind":"symbol","metadata":{"role":"symbol","title":"forgotPassword(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"forgotPassword"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ForgotPasswordDto","preciseIdentifier":"s:11JellyfinAPI17ForgotPasswordDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14forgotPasswordy3Get7RequestVyAA06ForgotE6ResultVGAA0hE3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordResult":{"role":"symbol","title":"ForgotPasswordResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordResult"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordDto":{"role":"symbol","title":"ForgotPasswordDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordDto"}],"abstract":[{"type":"text","text":"Forgot Password request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordDto"}],"url":"\/documentation\/jellyfinapi\/forgotpassworddto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/forgotPassword(_:)":{"role":"symbol","title":"forgotPassword(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"forgotPassword"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ForgotPasswordDto","preciseIdentifier":"s:11JellyfinAPI17ForgotPasswordDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Initiates the forgot password process for a local user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/forgotPassword(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/forgotpassword(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/forgotpasswordpin(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/forgotpasswordpin(_:).json new file mode 100644 index 000000000..89f760b1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/forgotpasswordpin(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"forgotPasswordPin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordPinDtoV","text":"ForgotPasswordPinDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/forgotpasswordpin(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/forgotPasswordPin(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Redeems a forgot password pin."}],"kind":"symbol","metadata":{"role":"symbol","title":"forgotPasswordPin(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"forgotPasswordPin"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ForgotPasswordPinDto","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordPinDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17forgotPasswordPiny3Get7RequestVyAA0F12RedeemResultVGAA06ForgoteF3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult":{"role":"symbol","title":"PinRedeemResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PinRedeemResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PinRedeemResult"}],"url":"\/documentation\/jellyfinapi\/pinredeemresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/forgotPasswordPin(_:)":{"role":"symbol","title":"forgotPasswordPin(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"forgotPasswordPin"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ForgotPasswordPinDto","preciseIdentifier":"s:11JellyfinAPI20ForgotPasswordPinDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Redeems a forgot password pin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/forgotPasswordPin(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/forgotpasswordpin(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ForgotPasswordPinDto":{"role":"symbol","title":"ForgotPasswordPinDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ForgotPasswordPinDto"}],"abstract":[{"type":"text","text":"Forgot Password Pin enter request body DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ForgotPasswordPinDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ForgotPasswordPinDto"}],"url":"\/documentation\/jellyfinapi\/forgotpasswordpindto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/get(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/get(parameters:).json new file mode 100644 index 000000000..45b5cc4e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/get(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO13GetParametersV","text":"GetParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/get(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/get(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the search hint result."}],"kind":"symbol","metadata":{"role":"symbol","title":"get(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO13GetParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO3get10parameters3Get7RequestVyAA16SearchHintResultVGAC0F10ParametersV_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/get(parameters:)":{"role":"symbol","title":"get(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO13GetParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the search hint result."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/get(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/get(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult":{"role":"symbol","title":"SearchHintResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHintResult"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHintResult"}],"url":"\/documentation\/jellyfinapi\/searchhintresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getadditionalpart(itemid:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getadditionalpart(itemid:userid:).json new file mode 100644 index 000000000..3a9fe553a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getadditionalpart(itemid:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAdditionalPart"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getadditionalpart(itemid:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAdditionalPart(itemID:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets additional parts for a video."}],"kind":"symbol","metadata":{"role":"symbol","title":"getAdditionalPart(itemID:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAdditionalPart"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17getAdditionalPart6itemID04userH03Get7RequestVyAA22BaseItemDtoQueryResultVGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAdditionalPart(itemID:userID:)":{"role":"symbol","title":"getAdditionalPart(itemID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAdditionalPart"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets additional parts for a video."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAdditionalPart(itemID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getadditionalpart(itemid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartists(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartists(parameters:).json new file mode 100644 index 000000000..e847b3c69 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartists(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAlbumArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV","text":"GetAlbumArtistsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartists(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAlbumArtists(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all album artists from a given item, folder, or the entire library."}],"kind":"symbol","metadata":{"role":"symbol","title":"getAlbumArtists(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAlbumArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetAlbumArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getAlbumArtists10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0heF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAlbumArtists(parameters:)":{"role":"symbol","title":"getAlbumArtists(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAlbumArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetAlbumArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all album artists from a given item, folder, or the entire library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAlbumArtists(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartists(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters.json new file mode 100644 index 000000000..9c3c556ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"role":"symbol","title":"Paths.GetAlbumArtistsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/filters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/genreIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/mediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/minCommunityRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameLessThan","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameStartsWith","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameStartsWithOrGreater","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/officialRatings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/person","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/personIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/personTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/studioIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/studios","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/tags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/userID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/years"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)":{"role":"symbol","title":"init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/personIDs":{"role":"symbol","title":"personIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/personIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/personids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/studioIDs":{"role":"symbol","title":"studioIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/studioIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/studioids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/years"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/minCommunityRating":{"role":"symbol","title":"minCommunityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/minCommunityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/mincommunityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/officialratings"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/person":{"role":"symbol","title":"person","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/person"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/parentid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/asquery.json new file mode 100644 index 000000000..237596744 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enableimages.json new file mode 100644 index 000000000..6c9387325 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enableimagetypes.json new file mode 100644 index 000000000..c56675fef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV16enableImageTypesSayAA0I4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..a86bff6d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enableuserdata.json new file mode 100644 index 000000000..e4ca3be2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/excludeitemtypes.json new file mode 100644 index 000000000..080051c34 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV16excludeItemTypesSayAA04BaseI4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/fields.json new file mode 100644 index 000000000..7d26fc92c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/filters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/filters.json new file mode 100644 index 000000000..7e92a2479 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/filters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/filters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/filters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"title":"filters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV7filtersSayAA10ItemFilterOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/filters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/genreids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/genreids.json new file mode 100644 index 000000000..52a42b132 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/genreids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/genreids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/genreIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"genreIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV8genreIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/genres.json new file mode 100644 index 000000000..d7493b32b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"genres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV6genresSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/imagetypelimit.json new file mode 100644 index 000000000..26d5ec0df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/includeitemtypes.json new file mode 100644 index 000000000..68099e5fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV16includeItemTypesSayAA04BaseI4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh.json new file mode 100644 index 000000000..b600221e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV18minCommunityRating10startIndex5limit10searchTerm8parentID6fields16excludeItemTypes07includetU07filters10isFavorite05mediaU06genres8genreIDs15officialRatings4tags5years14enableUserData14imageTypeLimit011enableImageU06person9personIDs06personU07studios9studioIDs04userQ023nameStartsWithOrGreater14nameStartsWith12nameLessThan6sortBy9sortOrder12enableImages22enableTotalRecordCountAESdSg_s5Int32VSgA13_SSSg10Foundation4UUIDVSgSayAA0T6FieldsOGSgSayAA04BaseT4KindOGSgA26_SayAA0T6FilterOGSgSbSgSaySSGSgA33_SayA17_GSgA33_A33_SayA12_GSgA31_A13_SayAA9ImageTypeOGSgA14_A35_A33_A33_A35_A18_A14_A14_A14_A33_SayAA9SortOrderOGSgA31_A31_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)":{"role":"symbol","title":"init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/isfavorite.json new file mode 100644 index 000000000..82ea39703 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/isfavorite"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/limit.json new file mode 100644 index 000000000..cfac6dd1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/mediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/mediatypes.json new file mode 100644 index 000000000..0b97f56b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/mediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/mediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/mediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV10mediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/mediatypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/mincommunityrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/mincommunityrating.json new file mode 100644 index 000000000..72f17d617 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/mincommunityrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/mincommunityrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/minCommunityRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"minCommunityRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV18minCommunityRatingSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/minCommunityRating":{"role":"symbol","title":"minCommunityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/minCommunityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/mincommunityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/namelessthan.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/namelessthan.json new file mode 100644 index 000000000..a74c8a3a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/namelessthan.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/namelessthan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameLessThan","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameLessThan","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV12nameLessThanSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/namelessthan"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/namestartswith.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/namestartswith.json new file mode 100644 index 000000000..06cde6262 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/namestartswith.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/namestartswith"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameStartsWith","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWith","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV14nameStartsWithSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/namestartswithorgreater.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/namestartswithorgreater.json new file mode 100644 index 000000000..19bb0c046 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/namestartswithorgreater.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/namestartswithorgreater"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameStartsWithOrGreater","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWithOrGreater","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV23nameStartsWithOrGreaterSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/officialratings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/officialratings.json new file mode 100644 index 000000000..c0f224b3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/officialratings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/officialratings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/officialRatings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"officialRatings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV15officialRatingsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/officialratings"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/parentid.json new file mode 100644 index 000000000..948a05e1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/parentid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/person.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/person.json new file mode 100644 index 000000000..6970f6af3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/person.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/person"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/person","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"person","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV6personSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/person":{"role":"symbol","title":"person","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/person"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/personids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/personids.json new file mode 100644 index 000000000..ba71bf323 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/personids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/personids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/personIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"personIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV9personIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/personIDs":{"role":"symbol","title":"personIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/personIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/personids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/persontypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/persontypes.json new file mode 100644 index 000000000..f998e34f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/persontypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/persontypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/personTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"personTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV11personTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/searchterm.json new file mode 100644 index 000000000..912cca584 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV10searchTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/searchterm"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/sortby.json new file mode 100644 index 000000000..a2b5c4719 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/sortorder.json new file mode 100644 index 000000000..b4202a9bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV9sortOrderSayAA04SortI0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/startindex.json new file mode 100644 index 000000000..4e2f96da7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/studioids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/studioids.json new file mode 100644 index 000000000..13aa9badb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/studioids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/studioids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/studioIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"studioIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV9studioIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/studioIDs":{"role":"symbol","title":"studioIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/studioIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/studioids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/studios.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/studios.json new file mode 100644 index 000000000..fda204ed8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/studios.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/studios"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/studios","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"studios","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV7studiosSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/tags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/tags.json new file mode 100644 index 000000000..3e7be3f63 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/tags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/tags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/tags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"tags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV4tagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/userid.json new file mode 100644 index 000000000..54a6640ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/years.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/years.json new file mode 100644 index 000000000..1daec5600 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getalbumartistsparameters/years.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/years"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/years","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"title":"years","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetAlbumArtistsParametersV5yearsSays5Int32VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters":{"role":"symbol","title":"Paths.GetAlbumArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAlbumArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAlbumArtistsParameters/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAlbumArtistsParameters\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getalbumartistsparameters\/years"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getallchannelfeatures.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getallchannelfeatures.json new file mode 100644 index 000000000..d40a2ee58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getallchannelfeatures.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAllChannelFeatures"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","preciseIdentifier":"s:11JellyfinAPI15ChannelFeaturesV","text":"ChannelFeatures"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getallchannelfeatures"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAllChannelFeatures","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get all channel features."}],"kind":"symbol","metadata":{"role":"symbol","title":"getAllChannelFeatures","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAllChannelFeatures"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ChannelFeatures","preciseIdentifier":"s:11JellyfinAPI15ChannelFeaturesV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21getAllChannelFeatures3Get7RequestVySayAA0fG0VGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAllChannelFeatures":{"role":"symbol","title":"getAllChannelFeatures","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAllChannelFeatures"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ChannelFeatures","preciseIdentifier":"s:11JellyfinAPI15ChannelFeaturesV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all channel features."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAllChannelFeatures","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getallchannelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getancestors(itemid:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getancestors(itemid:userid:).json new file mode 100644 index 000000000..8b66a85d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getancestors(itemid:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAncestors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getancestors(itemid:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAncestors(itemID:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all parents of an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getAncestors(itemID:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAncestors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12getAncestors6itemID04userG03Get7RequestVySayAA11BaseItemDtoVGGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAncestors(itemID:userID:)":{"role":"symbol","title":"getAncestors(itemID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAncestors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets all parents of an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAncestors(itemID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getancestors(itemid:userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistbyname(name:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistbyname(name:userid:).json new file mode 100644 index 000000000..e9f914e17 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistbyname(name:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtistByName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistbyname(name:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtistByName(name:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an artist by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getArtistByName(name:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtistByName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getArtistByName4name6userID3Get7RequestVyAA11BaseItemDtoVGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getArtistByName(name:userID:)":{"role":"symbol","title":"getArtistByName(name:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtistByName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets an artist by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtistByName(name:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistbyname(name:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimage(name:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimage(name:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..e777b3f47 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimage(name:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtistImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV","text":"GetArtistImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimage(name:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtistImage(name:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get artist image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getArtistImage(name:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtistImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetArtistImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getArtistImage4name9imageType0H5Index10parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC0leF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getArtistImage(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getArtistImage(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtistImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetArtistImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get artist image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtistImage(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimage(name:imagetype:imageindex:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters.json new file mode 100644 index 000000000..332effd99 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"role":"symbol","title":"Paths.GetArtistImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetArtistImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/asquery.json new file mode 100644 index 000000000..9f7d7dc79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/backgroundcolor.json new file mode 100644 index 000000000..3c82ec343 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/blur.json new file mode 100644 index 000000000..09bfc29fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/blur"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/fillheight.json new file mode 100644 index 000000000..b44734ceb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/fillwidth.json new file mode 100644 index 000000000..a96ed1f4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/foregroundlayer.json new file mode 100644 index 000000000..6074276aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/foregroundlayer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/format-swift.property.json new file mode 100644 index 000000000..4ec57853d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetArtistImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..0c7c49998 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetArtistImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetArtistImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/height.json new file mode 100644 index 000000000..0b6fcc442 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..f89bd1487 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV3tag6format8maxWidth0J6Height13percentPlayed13unplayedCount5width6height7quality04fillK00tL016isCropWhitespace0u3AddN9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0F6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetArtistImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..f1c75cf2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..4fd16cab0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/maxheight.json new file mode 100644 index 000000000..cf871d286 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/maxwidth.json new file mode 100644 index 000000000..6fd43a700 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/percentplayed.json new file mode 100644 index 000000000..3cfa97721 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/quality.json new file mode 100644 index 000000000..55af7d92b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/tag.json new file mode 100644 index 000000000..c72e12180 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/tag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/unplayedcount.json new file mode 100644 index 000000000..172a4896c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/width.json new file mode 100644 index 000000000..cba4c5270 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetArtistImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistImageParameters":{"role":"symbol","title":"Paths.GetArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartists(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartists(parameters:).json new file mode 100644 index 000000000..4e4e5e196 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartists(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetArtistsParametersV","text":"GetArtistsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartists(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtists(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all artists from a given item, folder, or the entire library."}],"kind":"symbol","metadata":{"role":"symbol","title":"getArtists(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10getArtists10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getArtists(parameters:)":{"role":"symbol","title":"getArtists(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all artists from a given item, folder, or the entire library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getArtists(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartists(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters.json new file mode 100644 index 000000000..67a494e8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"role":"symbol","title":"Paths.GetArtistsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/filters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/genreIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/mediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/minCommunityRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameLessThan","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameStartsWith","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameStartsWithOrGreater","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/officialRatings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/person","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/personIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/personTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/studioIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/studios","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/tags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/userID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/years"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/years"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/personIDs":{"role":"symbol","title":"personIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/personIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/personids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/person":{"role":"symbol","title":"person","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/person"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/studioIDs":{"role":"symbol","title":"studioIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/studioIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/studioids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/minCommunityRating":{"role":"symbol","title":"minCommunityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/minCommunityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/mincommunityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)":{"role":"symbol","title":"init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/officialratings"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/mediatypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/asquery.json new file mode 100644 index 000000000..37d61592a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enableimages.json new file mode 100644 index 000000000..0e5d0fe8d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enableimagetypes.json new file mode 100644 index 000000000..0d7bfe352 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV16enableImageTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..ba3450cb4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enableuserdata.json new file mode 100644 index 000000000..109eb9097 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/excludeitemtypes.json new file mode 100644 index 000000000..918f33030 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV16excludeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/excludeitemtypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/fields.json new file mode 100644 index 000000000..560713120 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/filters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/filters.json new file mode 100644 index 000000000..e7ccdcae3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/filters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/filters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/filters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"title":"filters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV7filtersSayAA10ItemFilterOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/genreids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/genreids.json new file mode 100644 index 000000000..0635a79e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/genreids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/genreids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/genreIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"genreIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV8genreIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/genreids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/genres.json new file mode 100644 index 000000000..d7abe0d72 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"genres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV6genresSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/imagetypelimit.json new file mode 100644 index 000000000..da72b7690 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/includeitemtypes.json new file mode 100644 index 000000000..46ba7b68b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV16includeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh.json new file mode 100644 index 000000000..10b6d3fe1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV18minCommunityRating10startIndex5limit10searchTerm8parentID6fields16excludeItemTypes07includesT07filters10isFavorite05mediaT06genres8genreIDs15officialRatings4tags5years14enableUserData14imageTypeLimit011enableImageT06person9personIDs06personT07studios9studioIDs04userP023nameStartsWithOrGreater14nameStartsWith12nameLessThan6sortBy9sortOrder12enableImages22enableTotalRecordCountAESdSg_s5Int32VSgA13_SSSg10Foundation4UUIDVSgSayAA0S6FieldsOGSgSayAA04BaseS4KindOGSgA26_SayAA0S6FilterOGSgSbSgSaySSGSgA33_SayA17_GSgA33_A33_SayA12_GSgA31_A13_SayAA9ImageTypeOGSgA14_A35_A33_A33_A35_A18_A14_A14_A14_A33_SayAA9SortOrderOGSgA31_A31_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)":{"role":"symbol","title":"init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/init(minCommunityRating:startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:genres:genreIDs:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:studioIDs:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/init(mincommunityrating:startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:filters:isfavorite:mediatypes:genres:genreids:officialratings:tags:years:enableuserdata:imagetypelimit:enableimagetypes:person:personids:p-1j3bh"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/isfavorite.json new file mode 100644 index 000000000..dd14310bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/isfavorite"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/limit.json new file mode 100644 index 000000000..3059b460a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/mediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/mediatypes.json new file mode 100644 index 000000000..4d9e9a1ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/mediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/mediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/mediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV10mediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/mincommunityrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/mincommunityrating.json new file mode 100644 index 000000000..9a2c2fb90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/mincommunityrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/mincommunityrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/minCommunityRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"minCommunityRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV18minCommunityRatingSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/minCommunityRating":{"role":"symbol","title":"minCommunityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/minCommunityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/mincommunityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/namelessthan.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/namelessthan.json new file mode 100644 index 000000000..8823b8f51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/namelessthan.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/namelessthan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameLessThan","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameLessThan","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV12nameLessThanSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/namelessthan"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/namestartswith.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/namestartswith.json new file mode 100644 index 000000000..537546970 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/namestartswith.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/namestartswith"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameStartsWith","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWith","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV14nameStartsWithSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/namestartswithorgreater.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/namestartswithorgreater.json new file mode 100644 index 000000000..900861d5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/namestartswithorgreater.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/namestartswithorgreater"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameStartsWithOrGreater","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWithOrGreater","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV23nameStartsWithOrGreaterSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/officialratings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/officialratings.json new file mode 100644 index 000000000..48cfbb98c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/officialratings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/officialratings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/officialRatings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"officialRatings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV15officialRatingsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/officialratings"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/parentid.json new file mode 100644 index 000000000..6e0d5f9f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/person.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/person.json new file mode 100644 index 000000000..8add0a048 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/person.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/person"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/person","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"person","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV6personSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/person":{"role":"symbol","title":"person","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/person"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/personids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/personids.json new file mode 100644 index 000000000..707954f7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/personids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/personids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/personIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"personIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV9personIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/personIDs":{"role":"symbol","title":"personIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/personIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/personids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/persontypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/persontypes.json new file mode 100644 index 000000000..d6b729400 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/persontypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/persontypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/personTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"personTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV11personTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/searchterm.json new file mode 100644 index 000000000..b23ae688b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV10searchTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/sortby.json new file mode 100644 index 000000000..1883a80d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/sortby"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/sortorder.json new file mode 100644 index 000000000..7736bf3c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV9sortOrderSayAA04SortH0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/startindex.json new file mode 100644 index 000000000..dde51edaa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/studioids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/studioids.json new file mode 100644 index 000000000..acd7994b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/studioids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/studioids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/studioIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"studioIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV9studioIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/studioIDs":{"role":"symbol","title":"studioIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/studioIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/studioids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/studios.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/studios.json new file mode 100644 index 000000000..8b8fba7dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/studios.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/studios"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/studios","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"studios","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV7studiosSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/tags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/tags.json new file mode 100644 index 000000000..289465c2a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/tags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/tags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/tags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"tags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV4tagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/userid.json new file mode 100644 index 000000000..8ebc8c4ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/years.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/years.json new file mode 100644 index 000000000..5845f0353 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getartistsparameters/years.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getartistsparameters\/years"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/years","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"title":"years","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetArtistsParametersV5yearsSays5Int32VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters\/years"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetArtistsParameters":{"role":"symbol","title":"Paths.GetArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getattachment(videoid:mediasourceid:index:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getattachment(videoid:mediasourceid:index:).json new file mode 100644 index 000000000..9c20ffab1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getattachment(videoid:mediasourceid:index:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAttachment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"videoID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getattachment(videoid:mediasourceid:index:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAttachment(videoID:mediaSourceID:index:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get video attachment."}],"kind":"symbol","metadata":{"role":"symbol","title":"getAttachment(videoID:mediaSourceID:index:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAttachment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"videoID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getAttachment7videoID011mediaSourceG05index3Get7RequestVy10Foundation4DataVGSS_SSSitFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAttachment(videoID:mediaSourceID:index:)":{"role":"symbol","title":"getAttachment(videoID:mediaSourceID:index:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAttachment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"videoID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get video attachment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAttachment(videoID:mediaSourceID:index:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getattachment(videoid:mediasourceid:index:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostream(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostream(itemid:parameters:).json new file mode 100644 index 000000000..4d143000f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostream(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV","text":"GetAudioStreamParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostream(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAudioStream(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an audio stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"getAudioStream(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getAudioStream6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAudioStream(itemID:parameters:)":{"role":"symbol","title":"getAudioStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAudioStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainer(itemid:container:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainer(itemid:container:parameters:).json new file mode 100644 index 000000000..a88d3d2ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainer(itemid:container:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAudioStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV","text":"GetAudioStreamByContainerParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainer(itemid:container:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAudioStreamByContainer(itemID:container:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an audio stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"getAudioStreamByContainer(itemID:container:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAudioStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetAudioStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO25getAudioStreamByContainer6itemID9container10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC0mefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAudioStreamByContainer(itemID:container:parameters:)":{"role":"symbol","title":"getAudioStreamByContainer(itemID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAudioStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetAudioStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAudioStreamByContainer(itemID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainer(itemid:container:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters.json new file mode 100644 index 000000000..ffc2f18a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxframerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..0b3ac8bdc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV05alloweF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..24250187b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV010allowVideoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/asquery.json new file mode 100644 index 000000000..d797863e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiobitrate.json new file mode 100644 index 000000000..63c6814f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiochannels.json new file mode 100644 index 000000000..31e6b827f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiocodec.json new file mode 100644 index 000000000..3c9ac7d82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiosamplerate.json new file mode 100644 index 000000000..562cc63bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiostreamindex.json new file mode 100644 index 000000000..14a25d1b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV05audioF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/context-swift.property.json new file mode 100644 index 000000000..2d3916b13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/context-swift.typealias.json new file mode 100644 index 000000000..48411c127 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetAudioStreamByContainerParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/cpucorelimit.json new file mode 100644 index 000000000..f2fa88bcf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/deviceid.json new file mode 100644 index 000000000..de2fdd99c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/deviceprofileid.json new file mode 100644 index 000000000..d4aaab13f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/deviceprofileid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/enableautostreamcopy.json new file mode 100644 index 000000000..94ff9c600 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV010enableAutoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..1fe45fc61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/enablempegtsm2tsmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/framerate.json new file mode 100644 index 000000000..7c10ffdac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/framerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/height.json new file mode 100644 index 000000000..9bcbe36b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5.json new file mode 100644 index 000000000..fe71208b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV8isStatic6params3tag15deviceProfileID011playSessionP007segmentH00S6Length11minSegments011mediaSourceP00nP010audioCodec010enableAutoF4Copy010allowVideoF4Copy05alloweF4Copy0J19BreakOnNonKeyFrames0Y10SampleRate03maxE8BitDepth0Y7BitRate0Y8Channels03maxE8Channels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height12videoBitRate08subtitleF5Index14subtitleMethod12maxRefFrames16maxVideoBitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic014transcodingMaxE8Channels12cpuCoreLimit04livefP020enableMpegtsM2TsMode05videoZ008subtitleZ016transcodeReasons0yF5Index05videoF5Index7context13streamOptionsAESbSg_SSSgA26_A26_A26_A26_s5Int32VSgA29_A26_A26_A26_A25_A25_A25_A25_A29_A29_A29_A29_A29_A26_A26_SfSgA30_A25_s5Int64VSgA29_A29_A29_A29_AA22SubtitleDeliveryMethodOSgA29_A29_A25_A25_A25_A29_A29_A26_A25_A26_A26_A26_A29_A29_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..bcb7008fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/isbreakonnonkeyframes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/iscopytimestamps.json new file mode 100644 index 000000000..2115fd623 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/iscopytimestamps"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/isdeinterlace.json new file mode 100644 index 000000000..435cb3a23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/isstatic.json new file mode 100644 index 000000000..6703b3529 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/isstatic"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/level.json new file mode 100644 index 000000000..c4cc32c47 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/level"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/livestreamid.json new file mode 100644 index 000000000..61c80688d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV04liveF2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/livestreamid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..a84af343e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV03maxE8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxaudiobitdepth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxaudiochannels.json new file mode 100644 index 000000000..019009449 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV03maxE8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxframerate.json new file mode 100644 index 000000000..5d475a626 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxframerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxrefframes.json new file mode 100644 index 000000000..a50c6aec6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxvideobitdepth.json new file mode 100644 index 000000000..ff0e98022 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV16maxVideoBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/mediasourceid.json new file mode 100644 index 000000000..2eed6f4e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/minsegments.json new file mode 100644 index 000000000..dd85dee83 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/params.json new file mode 100644 index 000000000..8efb0f75e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/playsessionid.json new file mode 100644 index 000000000..31bc20ac9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/profile.json new file mode 100644 index 000000000..9b6b9425b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/profile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/requireavc.json new file mode 100644 index 000000000..bc047c96d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/requirenonanamorphic.json new file mode 100644 index 000000000..eb15107b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/segmentcontainer.json new file mode 100644 index 000000000..f15d428d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV07segmentH0SSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/segmentlength.json new file mode 100644 index 000000000..57ec2e4bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/starttimeticks.json new file mode 100644 index 000000000..5b0d75e9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..b6056d5ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..ae39320e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetAudioStreamByContainerParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV0F7Optionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlecodec.json new file mode 100644 index 000000000..1ccd7c382 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..343d410b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14subtitleMethodAA016SubtitleDeliveryK0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..a7891ee3c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetAudioStreamByContainerParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlestreamindex.json new file mode 100644 index 000000000..a37929c55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV08subtitleF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/subtitlestreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/tag.json new file mode 100644 index 000000000..3f47f103a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/transcodereasons.json new file mode 100644 index 000000000..10d5feca5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/transcodereasons"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..98185ddd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV014transcodingMaxE8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/videobitrate.json new file mode 100644 index 000000000..26ddd5a3f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/videocodec.json new file mode 100644 index 000000000..27bda6322 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/videostreamindex.json new file mode 100644 index 000000000..1aeaaca98 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV05videoF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/width.json new file mode 100644 index 000000000..c31e16c58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreambycontainerparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetAudioStreamByContainerParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.GetAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamByContainerParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamByContainerParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreambycontainerparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters.json new file mode 100644 index 000000000..22e15fa7e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"role":"symbol","title":"Paths.GetAudioStreamParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/deviceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..bcbcd7d85 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV05alloweF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..93849b1c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV010allowVideoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/asquery.json new file mode 100644 index 000000000..aede3416f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiobitrate.json new file mode 100644 index 000000000..c35458e0f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiochannels.json new file mode 100644 index 000000000..f879d635d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiocodec.json new file mode 100644 index 000000000..87ca757ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiosamplerate.json new file mode 100644 index 000000000..6582b0b7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiostreamindex.json new file mode 100644 index 000000000..9ad596763 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV05audioF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/container.json new file mode 100644 index 000000000..15a17cc41 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/context-swift.property.json new file mode 100644 index 000000000..76fb8a13e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/context-swift.typealias.json new file mode 100644 index 000000000..74d8c4b82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetAudioStreamParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/cpucorelimit.json new file mode 100644 index 000000000..e40d3eed3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/deviceid.json new file mode 100644 index 000000000..c50f540f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/deviceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/deviceprofileid.json new file mode 100644 index 000000000..5425ab84b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/enableautostreamcopy.json new file mode 100644 index 000000000..2b971f1c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV010enableAutoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..0d18855f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/framerate.json new file mode 100644 index 000000000..77ca903d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/height.json new file mode 100644 index 000000000..0fd830e49 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr.json new file mode 100644 index 000000000..1e2a966f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV9container8isStatic6params3tag15deviceProfileID011playSessionO016segmentContainer0R6Length11minSegments011mediaSourceO00mO010audioCodec010enableAutoF4Copy010allowVideoF4Copy05alloweF4Copy0I19BreakOnNonKeyFrames0Y10SampleRate03maxE8BitDepth0Y7BitRate0Y8Channels03maxE8Channels7profile5level9framerate12maxFramerate0I14CopyTimestamps14startTimeTicks5width6height12videoBitRate08subtitleF5Index14subtitleMethod12maxRefFrames16maxVideoBitDepth10requireAvc0I11DeInterlace20requireNonAnamorphic014transcodingMaxE8Channels12cpuCoreLimit04livefO020enableMpegtsM2TsMode05videoZ008subtitleZ016transcodeReasons0yF5Index05videoF5Index7context13streamOptionsAESSSg_SbSgA26_A26_A26_A26_A26_s5Int32VSgA30_A26_A26_A26_A27_A27_A27_A27_A30_A30_A30_A30_A30_A26_A26_SfSgA31_A27_s5Int64VSgA30_A30_A30_A30_AA22SubtitleDeliveryMethodOSgA30_A30_A27_A27_A27_A30_A30_A26_A27_A26_A26_A26_A30_A30_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..0755fbe9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/isbreakonnonkeyframes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/iscopytimestamps.json new file mode 100644 index 000000000..5c9d9433a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/isdeinterlace.json new file mode 100644 index 000000000..543d92e98 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/isstatic.json new file mode 100644 index 000000000..6e0520f0c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/level.json new file mode 100644 index 000000000..b4b6fc859 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/livestreamid.json new file mode 100644 index 000000000..a619adcd4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV04liveF2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..eed02cfeb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV03maxE8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxaudiochannels.json new file mode 100644 index 000000000..8b658005f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV03maxE8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxframerate.json new file mode 100644 index 000000000..4a773f64e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxrefframes.json new file mode 100644 index 000000000..6c067982f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxvideobitdepth.json new file mode 100644 index 000000000..81865c91c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV16maxVideoBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/mediasourceid.json new file mode 100644 index 000000000..5293a9351 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/minsegments.json new file mode 100644 index 000000000..950dcc16c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/params.json new file mode 100644 index 000000000..7de61d12f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/playsessionid.json new file mode 100644 index 000000000..70559171e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/profile.json new file mode 100644 index 000000000..bfa5639f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/requireavc.json new file mode 100644 index 000000000..3f79770af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/requirenonanamorphic.json new file mode 100644 index 000000000..e9525af88 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/segmentcontainer.json new file mode 100644 index 000000000..ac059fcc0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/segmentlength.json new file mode 100644 index 000000000..0d00b428a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/starttimeticks.json new file mode 100644 index 000000000..e2a51d171 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..6f0231620 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..0fa2b3939 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetAudioStreamParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV0F7Optionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlecodec.json new file mode 100644 index 000000000..6c3daec3a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..3a9688ee6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14subtitleMethodAA016SubtitleDeliveryI0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlemethod-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..02cb7b578 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetAudioStreamParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetAudioStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlestreamindex.json new file mode 100644 index 000000000..1bca277b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV08subtitleF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/subtitlestreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/tag.json new file mode 100644 index 000000000..af964794e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/transcodereasons.json new file mode 100644 index 000000000..786ebe0ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..2126ecc22 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV014transcodingMaxE8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/transcodingmaxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/videobitrate.json new file mode 100644 index 000000000..4efb44d88 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/videocodec.json new file mode 100644 index 000000000..644f2e986 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/videostreamindex.json new file mode 100644 index 000000000..99f4f97ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV05videoF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/width.json new file mode 100644 index 000000000..0885ef435 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getaudiostreamparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetAudioStreamParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetAudioStreamParameters":{"role":"symbol","title":"Paths.GetAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getauthproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getauthproviders.json new file mode 100644 index 000000000..c9b5e1e75 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getauthproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAuthProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV","text":"NameIDPair"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getauthproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAuthProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get all auth providers."}],"kind":"symbol","metadata":{"role":"symbol","title":"getAuthProviders","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAuthProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO16getAuthProviders3Get7RequestVySayAA10NameIDPairVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getAuthProviders":{"role":"symbol","title":"getAuthProviders","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getAuthProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all auth providers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getAuthProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getauthproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbitratetestbytes(size:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbitratetestbytes(size:).json new file mode 100644 index 000000000..03dadd227 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbitratetestbytes(size:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBitrateTestBytes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getbitratetestbytes(size:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBitrateTestBytes(size:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tests the network with a request with the size of the bitrate."}],"kind":"symbol","metadata":{"role":"symbol","title":"getBitrateTestBytes(size:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBitrateTestBytes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19getBitrateTestBytes4size3Get7RequestVy10Foundation4DataVGs5Int32VSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBitrateTestBytes(size:)":{"role":"symbol","title":"getBitrateTestBytes(size:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBitrateTestBytes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Tests the network with a request with the size of the bitrate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBitrateTestBytes(size:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getbitratetestbytes(size:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbookremotesearchresults(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbookremotesearchresults(_:).json new file mode 100644 index 000000000..b8e574687 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbookremotesearchresults(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBookRemoteSearchResults"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV","text":"BookInfoRemoteSearchQuery"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getbookremotesearchresults(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBookRemoteSearchResults(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get book remote search."}],"kind":"symbol","metadata":{"role":"symbol","title":"getBookRemoteSearchResults(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBookRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BookInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26getBookRemoteSearchResultsy3Get7RequestVySayAA0fG6ResultCGGAA0e4InfofG5QueryVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBookRemoteSearchResults(_:)":{"role":"symbol","title":"getBookRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBookRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BookInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI25BookInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get book remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBookRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getbookremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BookInfoRemoteSearchQuery":{"role":"symbol","title":"BookInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BookInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BookInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/bookinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getboxsetremotesearchresults(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getboxsetremotesearchresults(_:).json new file mode 100644 index 000000000..c3125874d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getboxsetremotesearchresults(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBoxSetRemoteSearchResults"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV","text":"BoxSetInfoRemoteSearchQuery"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getboxsetremotesearchresults(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBoxSetRemoteSearchResults(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get box set remote search."}],"kind":"symbol","metadata":{"role":"symbol","title":"getBoxSetRemoteSearchResults(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBoxSetRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BoxSetInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO28getBoxSetRemoteSearchResultsy3Get7RequestVySayAA0gH6ResultCGGAA0ef4InfogH5QueryVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/BoxSetInfoRemoteSearchQuery":{"role":"symbol","title":"BoxSetInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BoxSetInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BoxSetInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/boxsetinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBoxSetRemoteSearchResults(_:)":{"role":"symbol","title":"getBoxSetRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBoxSetRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BoxSetInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27BoxSetInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get box set remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBoxSetRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getboxsetremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbrandingcss.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbrandingcss.json new file mode 100644 index 000000000..67afc34a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbrandingcss.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getbrandingcss"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingCss","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets branding css."}],"kind":"symbol","metadata":{"role":"symbol","title":"getBrandingCss","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14getBrandingCss3Get7RequestVySSGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBrandingCss":{"role":"symbol","title":"getBrandingCss","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingCss"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets branding css."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingCss","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getbrandingcss"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbrandingcss2.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbrandingcss2.json new file mode 100644 index 000000000..ead0a6baa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbrandingcss2.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingCss2"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getbrandingcss2"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingCss2","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets branding css."}],"kind":"symbol","metadata":{"role":"symbol","title":"getBrandingCss2","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingCss2"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO15getBrandingCss23Get7RequestVySSGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBrandingCss2":{"role":"symbol","title":"getBrandingCss2","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingCss2"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets branding css."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingCss2","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getbrandingcss2"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbrandingoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbrandingoptions.json new file mode 100644 index 000000000..2e0fc18f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getbrandingoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getbrandingoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets branding configuration."}],"kind":"symbol","metadata":{"role":"symbol","title":"getBrandingOptions","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18getBrandingOptions3Get7RequestVyAA0eF0VGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BrandingOptions":{"role":"symbol","title":"BrandingOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BrandingOptions"}],"abstract":[{"type":"text","text":"The branding options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BrandingOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BrandingOptions"}],"url":"\/documentation\/jellyfinapi\/brandingoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getBrandingOptions":{"role":"symbol","title":"getBrandingOptions","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getBrandingOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets branding configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getBrandingOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getbrandingoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannel(channelid:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannel(channelid:userid:).json new file mode 100644 index 000000000..1cad57140 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannel(channelid:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannel"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannel(channelid:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannel(channelID:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a live tv channel."}],"kind":"symbol","metadata":{"role":"symbol","title":"getChannel(channelID:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannel"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10getChannel9channelID04userG03Get7RequestVyAA11BaseItemDtoVGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getChannel(channelID:userID:)":{"role":"symbol","title":"getChannel(channelID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannel"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a live tv channel."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannel(channelID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannel(channelid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelfeatures(channelid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelfeatures(channelid:).json new file mode 100644 index 000000000..1abe52a0d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelfeatures(channelid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelFeatures"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelfeatures(channelid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelFeatures(channelID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get channel features."}],"kind":"symbol","metadata":{"role":"symbol","title":"getChannelFeatures(channelID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelFeatures"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getChannelFeatures9channelID3Get7RequestVyAA0eF0VGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelFeatures":{"role":"symbol","title":"ChannelFeatures","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelFeatures"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelFeatures","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelFeatures"}],"url":"\/documentation\/jellyfinapi\/channelfeatures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getChannelFeatures(channelID:)":{"role":"symbol","title":"getChannelFeatures(channelID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelFeatures"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get channel features."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelFeatures(channelID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelfeatures(channelid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitems(channelid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitems(channelid:parameters:).json new file mode 100644 index 000000000..4b72898d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitems(channelid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV","text":"GetChannelItemsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitems(channelid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelItems(channelID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get channel items."}],"kind":"symbol","metadata":{"role":"symbol","title":"getChannelItems(channelID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetChannelItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getChannelItems9channelID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getChannelItems(channelID:parameters:)":{"role":"symbol","title":"getChannelItems(channelID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetChannelItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get channel items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelItems(channelID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitems(channelid:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters.json new file mode 100644 index 000000000..93c0a9545 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"role":"symbol","title":"Paths.GetChannelItemsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/init(folderID:userID:startIndex:limit:sortOrder:filters:sortBy:fields:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/filters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/folderID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/init(folderID:userID:startIndex:limit:sortOrder:filters:sortBy:fields:)":{"role":"symbol","title":"init(folderID:userID:startIndex:limit:sortOrder:filters:sortBy:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"folderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/init(folderID:userID:startIndex:limit:sortOrder:filters:sortBy:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/init(folderid:userid:startindex:limit:sortorder:filters:sortby:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/folderID":{"role":"symbol","title":"folderID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"folderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/folderID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/folderid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/asquery.json new file mode 100644 index 000000000..9e554d580 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/fields.json new file mode 100644 index 000000000..d38f7182b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/filters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/filters.json new file mode 100644 index 000000000..424fb4227 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/filters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/filters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/filters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"title":"filters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV7filtersSayAA10ItemFilterOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/folderid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/folderid.json new file mode 100644 index 000000000..737601144 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/folderid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"folderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/folderid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/folderID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"folderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"folderID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV8folderID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/folderID":{"role":"symbol","title":"folderID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"folderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/folderID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/folderid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/init(folderid:userid:startindex:limit:sortorder:filters:sortby:fields:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/init(folderid:userid:startindex:limit:sortorder:filters:sortby:fields:).json new file mode 100644 index 000000000..5cadd5c08 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/init(folderid:userid:startindex:limit:sortorder:filters:sortby:fields:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"folderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/init(folderid:userid:startindex:limit:sortorder:filters:sortby:fields:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/init(folderID:userID:startIndex:limit:sortOrder:filters:sortBy:fields:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"folderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"title":"init(folderID:userID:startIndex:limit:sortOrder:filters:sortBy:fields:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV8folderID04userI010startIndex5limit9sortOrder7filters0N2By6fieldsAE10Foundation4UUIDVSg_AQs5Int32VSgATSayAA04SortO0OGSgSayAA10ItemFilterOGSgSaySSGSgSayAA0W6FieldsOGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/init(folderID:userID:startIndex:limit:sortOrder:filters:sortBy:fields:)":{"role":"symbol","title":"init(folderID:userID:startIndex:limit:sortOrder:filters:sortBy:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"folderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/init(folderID:userID:startIndex:limit:sortOrder:filters:sortBy:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/init(folderid:userid:startindex:limit:sortorder:filters:sortby:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/limit.json new file mode 100644 index 000000000..dd7df02cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/sortby.json new file mode 100644 index 000000000..a0f8e9001 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/sortorder.json new file mode 100644 index 000000000..982b39c30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV9sortOrderSayAA04SortI0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/startindex.json new file mode 100644 index 000000000..4f39379c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/startindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/userid.json new file mode 100644 index 000000000..a04ce2fd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelitemsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetChannelItemsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelItemsParameters":{"role":"symbol","title":"Paths.GetChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelmappingoptions(providerid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelmappingoptions(providerid:).json new file mode 100644 index 000000000..d60750c65 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelmappingoptions(providerid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelMappingOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelmappingoptions(providerid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelMappingOptions(providerID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get channel mapping options."}],"kind":"symbol","metadata":{"role":"symbol","title":"getChannelMappingOptions(providerID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelMappingOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO24getChannelMappingOptions10providerID3Get7RequestVyAA0efG3DtoVGSSSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getChannelMappingOptions(providerID:)":{"role":"symbol","title":"getChannelMappingOptions(providerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannelMappingOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get channel mapping options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannelMappingOptions(providerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelmappingoptions(providerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelMappingOptionsDto":{"role":"symbol","title":"ChannelMappingOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"abstract":[{"type":"text","text":"Channel mapping options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelMappingOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelMappingOptionsDto"}],"url":"\/documentation\/jellyfinapi\/channelmappingoptionsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannels(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannels(parameters:).json new file mode 100644 index 000000000..09fe4ffd4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannels(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannels"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetChannelsParametersV","text":"GetChannelsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannels(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannels(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available channels."}],"kind":"symbol","metadata":{"role":"symbol","title":"getChannels(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannels"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetChannelsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetChannelsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11getChannels10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getChannels(parameters:)":{"role":"symbol","title":"getChannels(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getChannels"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetChannelsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetChannelsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getChannels(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannels(parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters.json new file mode 100644 index 000000000..9d27fdd76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"role":"symbol","title":"Paths.GetChannelsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO21GetChannelsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/init(userID:startIndex:limit:isSupportsLatestItems:isSupportsMediaDeletion:isFavorite:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isSupportsLatestItems","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isSupportsMediaDeletion","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/init(userID:startIndex:limit:isSupportsLatestItems:isSupportsMediaDeletion:isFavorite:)":{"role":"symbol","title":"init(userID:startIndex:limit:isSupportsLatestItems:isSupportsMediaDeletion:isFavorite:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsLatestItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsMediaDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/init(userID:startIndex:limit:isSupportsLatestItems:isSupportsMediaDeletion:isFavorite:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/init(userid:startindex:limit:issupportslatestitems:issupportsmediadeletion:isfavorite:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/isSupportsLatestItems":{"role":"symbol","title":"isSupportsLatestItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLatestItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isSupportsLatestItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/issupportslatestitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/isSupportsMediaDeletion":{"role":"symbol","title":"isSupportsMediaDeletion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isSupportsMediaDeletion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/issupportsmediadeletion"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/asquery.json new file mode 100644 index 000000000..8c2e8b00d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetChannelsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/init(userid:startindex:limit:issupportslatestitems:issupportsmediadeletion:isfavorite:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/init(userid:startindex:limit:issupportslatestitems:issupportsmediadeletion:isfavorite:).json new file mode 100644 index 000000000..4fbf97c9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/init(userid:startindex:limit:issupportslatestitems:issupportsmediadeletion:isfavorite:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsLatestItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsMediaDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/init(userid:startindex:limit:issupportslatestitems:issupportsmediadeletion:isfavorite:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/init(userID:startIndex:limit:isSupportsLatestItems:isSupportsMediaDeletion:isFavorite:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsLatestItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsMediaDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(userID:startIndex:limit:isSupportsLatestItems:isSupportsMediaDeletion:isFavorite:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO21GetChannelsParametersV6userID10startIndex5limit21isSupportsLatestItems0lM13MediaDeletion0L8FavoriteAE10Foundation4UUIDVSg_s5Int32VSgARSbSgA2Stcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/init(userID:startIndex:limit:isSupportsLatestItems:isSupportsMediaDeletion:isFavorite:)":{"role":"symbol","title":"init(userID:startIndex:limit:isSupportsLatestItems:isSupportsMediaDeletion:isFavorite:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsLatestItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsMediaDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/init(userID:startIndex:limit:isSupportsLatestItems:isSupportsMediaDeletion:isFavorite:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/init(userid:startindex:limit:issupportslatestitems:issupportsmediadeletion:isfavorite:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/isfavorite.json new file mode 100644 index 000000000..d452adf73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetChannelsParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/issupportslatestitems.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/issupportslatestitems.json new file mode 100644 index 000000000..6ce2f987f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/issupportslatestitems.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLatestItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/issupportslatestitems"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isSupportsLatestItems","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLatestItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsLatestItems","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetChannelsParametersV21isSupportsLatestItemsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/isSupportsLatestItems":{"role":"symbol","title":"isSupportsLatestItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLatestItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isSupportsLatestItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/issupportslatestitems"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/issupportsmediadeletion.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/issupportsmediadeletion.json new file mode 100644 index 000000000..57414927b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/issupportsmediadeletion.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/issupportsmediadeletion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isSupportsMediaDeletion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsMediaDeletion","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetChannelsParametersV23isSupportsMediaDeletionSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/isSupportsMediaDeletion":{"role":"symbol","title":"isSupportsMediaDeletion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/isSupportsMediaDeletion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/issupportsmediadeletion"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/limit.json new file mode 100644 index 000000000..09d2aa5f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetChannelsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/startindex.json new file mode 100644 index 000000000..52e331afa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetChannelsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/userid.json new file mode 100644 index 000000000..9e2722368 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getchannelsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetChannelsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters":{"role":"symbol","title":"Paths.GetChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetChannelsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetChannelsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getchannelsparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconfiguration.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconfiguration.json new file mode 100644 index 000000000..28ebdf3b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconfiguration.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getconfiguration"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConfiguration","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets application configuration."}],"kind":"symbol","metadata":{"role":"symbol","title":"getConfiguration","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO16getConfiguration3Get7RequestVyAA06ServerE0VGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getConfiguration":{"role":"symbol","title":"getConfiguration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets application configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConfiguration","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconfigurationpages(enableinmainmenu:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconfigurationpages(enableinmainmenu:).json new file mode 100644 index 000000000..4bda1b10d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconfigurationpages(enableinmainmenu:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConfigurationPages"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","preciseIdentifier":"s:11JellyfinAPI21ConfigurationPageInfoV","text":"ConfigurationPageInfo"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getconfigurationpages(enableinmainmenu:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConfigurationPages(enableInMainMenu:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the configuration pages."}],"kind":"symbol","metadata":{"role":"symbol","title":"getConfigurationPages(enableInMainMenu:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConfigurationPages"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ConfigurationPageInfo","preciseIdentifier":"s:11JellyfinAPI21ConfigurationPageInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getConfigurationPages16enableInMainMenu3Get7RequestVySayAA0E8PageInfoVGGSbSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getConfigurationPages(enableInMainMenu:)":{"role":"symbol","title":"getConfigurationPages(enableInMainMenu:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConfigurationPages"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableInMainMenu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ConfigurationPageInfo","preciseIdentifier":"s:11JellyfinAPI21ConfigurationPageInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets the configuration pages."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConfigurationPages(enableInMainMenu:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getconfigurationpages(enableinmainmenu:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigurationPageInfo":{"role":"symbol","title":"ConfigurationPageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigurationPageInfo"}],"abstract":[{"type":"text","text":"The configuration page info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigurationPageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigurationPageInfo"}],"url":"\/documentation\/jellyfinapi\/configurationpageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconnectionmanager(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconnectionmanager(serverid:).json new file mode 100644 index 000000000..4f21edf76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconnectionmanager(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getconnectionmanager(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getConnectionManager(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20getConnectionManager8serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getConnectionManager(serverID:)":{"role":"symbol","title":"getConnectionManager(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getconnectionmanager(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconnectionmanager2(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconnectionmanager2(serverid:).json new file mode 100644 index 000000000..972f7fabd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconnectionmanager2(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getconnectionmanager2(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager2(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getConnectionManager2(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getConnectionManager28serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getConnectionManager2(serverID:)":{"role":"symbol","title":"getConnectionManager2(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager2(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getconnectionmanager2(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconnectionmanager3(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconnectionmanager3(serverid:).json new file mode 100644 index 000000000..3f51d3cb5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getconnectionmanager3(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getconnectionmanager3(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager3(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getConnectionManager3(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getConnectionManager38serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getConnectionManager3(serverID:)":{"role":"symbol","title":"getConnectionManager3(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getConnectionManager3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getConnectionManager3(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getconnectionmanager3(serverid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcontentdirectory(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcontentdirectory(serverid:).json new file mode 100644 index 000000000..cf5fb4f5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcontentdirectory(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getcontentdirectory(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets Dlna content directory xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getContentDirectory(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19getContentDirectory8serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getContentDirectory(serverID:)":{"role":"symbol","title":"getContentDirectory(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna content directory xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcontentdirectory(serverid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcontentdirectory2(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcontentdirectory2(serverid:).json new file mode 100644 index 000000000..c8efe17e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcontentdirectory2(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getcontentdirectory2(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory2(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets Dlna content directory xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getContentDirectory2(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20getContentDirectory28serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getContentDirectory2(serverID:)":{"role":"symbol","title":"getContentDirectory2(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna content directory xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory2(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcontentdirectory2(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcontentdirectory3(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcontentdirectory3(serverid:).json new file mode 100644 index 000000000..312ad7950 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcontentdirectory3(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getcontentdirectory3(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory3(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets Dlna content directory xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getContentDirectory3(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20getContentDirectory38serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getContentDirectory3(serverID:)":{"role":"symbol","title":"getContentDirectory3(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getContentDirectory3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna content directory xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getContentDirectory3(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcontentdirectory3(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcountries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcountries.json new file mode 100644 index 000000000..9a0ac60aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcountries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCountries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV","text":"CountryInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getcountries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCountries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets known countries."}],"kind":"symbol","metadata":{"role":"symbol","title":"getCountries","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCountries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO12getCountries3Get7RequestVySayAA11CountryInfoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getCountries":{"role":"symbol","title":"getCountries","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCountries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CountryInfo","preciseIdentifier":"s:11JellyfinAPI11CountryInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets known countries."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCountries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcountries"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/CountryInfo":{"role":"symbol","title":"CountryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CountryInfo"}],"abstract":[{"type":"text","text":"Class CountryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CountryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CountryInfo"}],"url":"\/documentation\/jellyfinapi\/countryinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcriticreviews(itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcriticreviews(itemid:).json new file mode 100644 index 000000000..af3b53884 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcriticreviews(itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCriticReviews"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getcriticreviews(itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCriticReviews(itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets critic review for an item."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"getCriticReviews(itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCriticReviews"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16getCriticReviews6itemID3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_tFZ","extendedModule":"JellyfinAPI","platforms":[]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated"}]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getCriticReviews(itemID:)":{"role":"symbol","title":"getCriticReviews(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCriticReviews"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets critic review for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCriticReviews(itemID:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getcriticreviews(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcultures.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcultures.json new file mode 100644 index 000000000..ceac4e97b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcultures.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCultures"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV","text":"CultureDto"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getcultures"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCultures","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets known cultures."}],"kind":"symbol","metadata":{"role":"symbol","title":"getCultures","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCultures"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO11getCultures3Get7RequestVySayAA10CultureDtoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getCultures":{"role":"symbol","title":"getCultures","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCultures"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"CultureDto","preciseIdentifier":"s:11JellyfinAPI10CultureDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets known cultures."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCultures","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcultures"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CultureDto":{"role":"symbol","title":"CultureDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CultureDto"}],"abstract":[{"type":"text","text":"Class CultureDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CultureDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CultureDto"}],"url":"\/documentation\/jellyfinapi\/culturedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcurrentuser.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcurrentuser.json new file mode 100644 index 000000000..7e390e5c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getcurrentuser.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCurrentUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getcurrentuser"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCurrentUser","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the user based on auth token."}],"kind":"symbol","metadata":{"role":"symbol","title":"getCurrentUser","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCurrentUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14getCurrentUser3Get7RequestVyAA0F3DtoVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getCurrentUser":{"role":"symbol","title":"getCurrentUser","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getCurrentUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the user based on auth token."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getCurrentUser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getcurrentuser"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdashboardconfigurationpage(name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdashboardconfigurationpage(name:).json new file mode 100644 index 000000000..9c89bc205 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdashboardconfigurationpage(name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDashboardConfigurationPage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdashboardconfigurationpage(name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDashboardConfigurationPage(name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a dashboard configuration page."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDashboardConfigurationPage(name:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDashboardConfigurationPage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO29getDashboardConfigurationPage4name3Get7RequestVySSGSSSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDashboardConfigurationPage(name:)":{"role":"symbol","title":"getDashboardConfigurationPage(name:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDashboardConfigurationPage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a dashboard configuration page."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDashboardConfigurationPage(name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdashboardconfigurationpage(name:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultdirectorybrowser.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultdirectorybrowser.json new file mode 100644 index 000000000..2862cb865 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultdirectorybrowser.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultDirectoryBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdefaultdirectorybrowser"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultDirectoryBrowser","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get Default directory browser."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDefaultDirectoryBrowser","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultDirectoryBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26getDefaultDirectoryBrowser3Get7RequestVyAA0efG7InfoDtoVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDefaultDirectoryBrowser":{"role":"symbol","title":"getDefaultDirectoryBrowser","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultDirectoryBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get Default directory browser."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultDirectoryBrowser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdefaultdirectorybrowser"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/DefaultDirectoryBrowserInfoDto":{"role":"symbol","title":"DefaultDirectoryBrowserInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"abstract":[{"type":"text","text":"Default directory browser info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DefaultDirectoryBrowserInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDirectoryBrowserInfoDto"}],"url":"\/documentation\/jellyfinapi\/defaultdirectorybrowserinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultlistingprovider.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultlistingprovider.json new file mode 100644 index 000000000..7ada03a7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultlistingprovider.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultListingProvider"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdefaultlistingprovider"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultListingProvider","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets default listings provider info."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDefaultListingProvider","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultListingProvider"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25getDefaultListingProvider3Get7RequestVyAA08ListingsG4InfoVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDefaultListingProvider":{"role":"symbol","title":"getDefaultListingProvider","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultListingProvider"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets default listings provider info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultListingProvider","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdefaultlistingprovider"},"doc://JellyfinAPI/documentation/JellyfinAPI/ListingsProviderInfo":{"role":"symbol","title":"ListingsProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ListingsProviderInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ListingsProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ListingsProviderInfo"}],"url":"\/documentation\/jellyfinapi\/listingsproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultmetadataoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultmetadataoptions.json new file mode 100644 index 000000000..0244dab79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultmetadataoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultMetadataOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdefaultmetadataoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultMetadataOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a default MetadataOptions object."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDefaultMetadataOptions","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultMetadataOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25getDefaultMetadataOptions3Get7RequestVyAA0fG0VGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDefaultMetadataOptions":{"role":"symbol","title":"getDefaultMetadataOptions","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultMetadataOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a default MetadataOptions object."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultMetadataOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdefaultmetadataoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultprofile.json new file mode 100644 index 000000000..1b298c16e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaultprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdefaultprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the default profile."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDefaultProfile","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO17getDefaultProfile3Get7RequestVyAA06DeviceF0VGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDefaultProfile":{"role":"symbol","title":"getDefaultProfile","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the default profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdefaultprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaulttimer(programid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaulttimer(programid:).json new file mode 100644 index 000000000..27b304ba1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdefaulttimer(programid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdefaulttimer(programid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultTimer(programID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the default values for a new timer."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDefaultTimer(programID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getDefaultTimer9programID3Get7RequestVyAA06SeriesF7InfoDtoVGSSSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDefaultTimer(programID:)":{"role":"symbol","title":"getDefaultTimer(programID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDefaultTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the default values for a new timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDefaultTimer(programID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdefaulttimer(programid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdescriptionxml(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdescriptionxml(serverid:).json new file mode 100644 index 000000000..2fea00f8d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdescriptionxml(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDescriptionXml"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdescriptionxml(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDescriptionXml(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get Description Xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDescriptionXml(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDescriptionXml"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17getDescriptionXml8serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDescriptionXml(serverID:)":{"role":"symbol","title":"getDescriptionXml(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDescriptionXml"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get Description Xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDescriptionXml(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdescriptionxml(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdescriptionxml2(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdescriptionxml2(serverid:).json new file mode 100644 index 000000000..7a2357507 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdescriptionxml2(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDescriptionXml2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdescriptionxml2(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDescriptionXml2(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get Description Xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDescriptionXml2(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDescriptionXml2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getDescriptionXml28serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDescriptionXml2(serverID:)":{"role":"symbol","title":"getDescriptionXml2(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDescriptionXml2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get Description Xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDescriptionXml2(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdescriptionxml2(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdeviceinfo(id:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdeviceinfo(id:).json new file mode 100644 index 000000000..4fac46a26 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdeviceinfo(id:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDeviceInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdeviceinfo(id:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDeviceInfo(id:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get info for a device."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDeviceInfo(id:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDeviceInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getDeviceInfo2id3Get7RequestVyAA0eF0VGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDeviceInfo(id:)":{"role":"symbol","title":"getDeviceInfo(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDeviceInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get info for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDeviceInfo(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdeviceinfo(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfo":{"role":"symbol","title":"DeviceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfo"}],"url":"\/documentation\/jellyfinapi\/deviceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdeviceoptions(id:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdeviceoptions(id:).json new file mode 100644 index 000000000..4a25bf372 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdeviceoptions(id:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDeviceOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdeviceoptions(id:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDeviceOptions(id:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get options for a device."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDeviceOptions(id:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDeviceOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16getDeviceOptions2id3Get7RequestVyAA0eF0VGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptions":{"role":"symbol","title":"DeviceOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptions"}],"abstract":[{"type":"text","text":"An entity representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptions"}],"url":"\/documentation\/jellyfinapi\/deviceoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDeviceOptions(id:)":{"role":"symbol","title":"getDeviceOptions(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDeviceOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDeviceOptions(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdeviceoptions(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdevices(issupportssync:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdevices(issupportssync:userid:).json new file mode 100644 index 000000000..11d417f00 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdevices(issupportssync:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDevices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdevices(issupportssync:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDevices(isSupportsSync:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get Devices."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDevices(isSupportsSync:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDevices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10getDevices14isSupportsSync6userID3Get7RequestVyAA21DeviceInfoQueryResultVGSbSg_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDevices(isSupportsSync:userID:)":{"role":"symbol","title":"getDevices(isSupportsSync:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDevices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get Devices."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDevices(isSupportsSync:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdevices(issupportssync:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceInfoQueryResult":{"role":"symbol","title":"DeviceInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/deviceinfoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontents(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontents(parameters:).json new file mode 100644 index 000000000..80e0e0204 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontents(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDirectoryContents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetDirectoryContentsParametersV","text":"GetDirectoryContentsParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV","text":"FileSystemEntryInfo"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdirectorycontents(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDirectoryContents(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the contents of a given directory in the file system."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDirectoryContents(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDirectoryContents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetDirectoryContentsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetDirectoryContentsParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20getDirectoryContents10parameters3Get7RequestVySayAA19FileSystemEntryInfoVGGAC0heF10ParametersV_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters":{"role":"symbol","title":"Paths.GetDirectoryContentsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDirectoryContents(parameters:)":{"role":"symbol","title":"getDirectoryContents(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDirectoryContents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetDirectoryContentsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetDirectoryContentsParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets the contents of a given directory in the file system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDirectoryContents(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontents(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo":{"role":"symbol","title":"FileSystemEntryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}],"url":"\/documentation\/jellyfinapi\/filesystementryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters.json new file mode 100644 index 000000000..2a03d950a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"role":"symbol","title":"Paths.GetDirectoryContentsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO30GetDirectoryContentsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/init(path:isIncludeFiles:isIncludeDirectories:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/isIncludeDirectories","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/isIncludeFiles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/path"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters/init(path:isIncludeFiles:isIncludeDirectories:)":{"role":"symbol","title":"init(path:isIncludeFiles:isIncludeDirectories:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isIncludeFiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeDirectories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/init(path:isIncludeFiles:isIncludeDirectories:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/init(path:isincludefiles:isincludedirectories:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters":{"role":"symbol","title":"Paths.GetDirectoryContentsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters/isIncludeFiles":{"role":"symbol","title":"isIncludeFiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeFiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/isIncludeFiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/isincludefiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters/isIncludeDirectories":{"role":"symbol","title":"isIncludeDirectories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDirectories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/isIncludeDirectories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/isincludedirectories"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/asquery.json new file mode 100644 index 000000000..916891896 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetDirectoryContentsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters":{"role":"symbol","title":"Paths.GetDirectoryContentsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/init(path:isincludefiles:isincludedirectories:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/init(path:isincludefiles:isincludedirectories:).json new file mode 100644 index 000000000..b1e670c51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/init(path:isincludefiles:isincludedirectories:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isIncludeFiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIncludeDirectories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/init(path:isincludefiles:isincludedirectories:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/init(path:isIncludeFiles:isIncludeDirectories:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isIncludeFiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeDirectories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(path:isIncludeFiles:isIncludeDirectories:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO30GetDirectoryContentsParametersV4path14isIncludeFiles0iJ11DirectoriesAESS_SbSgAItcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters":{"role":"symbol","title":"Paths.GetDirectoryContentsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters/init(path:isIncludeFiles:isIncludeDirectories:)":{"role":"symbol","title":"init(path:isIncludeFiles:isIncludeDirectories:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isIncludeFiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeDirectories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/init(path:isIncludeFiles:isIncludeDirectories:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/init(path:isincludefiles:isincludedirectories:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/isincludedirectories.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/isincludedirectories.json new file mode 100644 index 000000000..dd473bf5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/isincludedirectories.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDirectories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/isincludedirectories"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/isIncludeDirectories","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDirectories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeDirectories","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetDirectoryContentsParametersV20isIncludeDirectoriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters":{"role":"symbol","title":"Paths.GetDirectoryContentsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters/isIncludeDirectories":{"role":"symbol","title":"isIncludeDirectories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDirectories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/isIncludeDirectories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/isincludedirectories"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/isincludefiles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/isincludefiles.json new file mode 100644 index 000000000..d8ede12c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/isincludefiles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeFiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/isincludefiles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/isIncludeFiles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeFiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeFiles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetDirectoryContentsParametersV14isIncludeFilesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters/isIncludeFiles":{"role":"symbol","title":"isIncludeFiles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeFiles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/isIncludeFiles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/isincludefiles"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters":{"role":"symbol","title":"Paths.GetDirectoryContentsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/path.json new file mode 100644 index 000000000..d5bdf1008 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdirectorycontentsparameters/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetDirectoryContentsParametersV4pathSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters":{"role":"symbol","title":"Paths.GetDirectoryContentsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetDirectoryContentsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetDirectoryContentsParameters/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetDirectoryContentsParameters\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdirectorycontentsparameters\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdisplaypreferences(displaypreferencesid:userid:client:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdisplaypreferences(displaypreferencesid:userid:client:).json new file mode 100644 index 000000000..2bc9c0e99 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdisplaypreferences(displaypreferencesid:userid:client:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDisplayPreferences"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdisplaypreferences(displaypreferencesid:userid:client:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDisplayPreferences(displayPreferencesID:userID:client:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get Display Preferences."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDisplayPreferences(displayPreferencesID:userID:client:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDisplayPreferences"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getDisplayPreferences07displayF2ID04userH06client3Get7RequestVyAA0eF3DtoVGSS_10Foundation4UUIDVSStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDisplayPreferences(displayPreferencesID:userID:client:)":{"role":"symbol","title":"getDisplayPreferences(displayPreferencesID:userID:client:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDisplayPreferences"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get Display Preferences."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDisplayPreferences(displayPreferencesID:userID:client:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdisplaypreferences(displaypreferencesid:userid:client:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdownload(itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdownload(itemid:).json new file mode 100644 index 000000000..7cfd1716d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdownload(itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDownload"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdownload(itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDownload(itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Downloads item media."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDownload(itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDownload"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11getDownload6itemID3Get7RequestVy10Foundation4DataVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDownload(itemID:)":{"role":"symbol","title":"getDownload(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDownload"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Downloads item media."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDownload(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdownload(itemid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdrives.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdrives.json new file mode 100644 index 000000000..d27f13b6c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getdrives.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDrives"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV","text":"FileSystemEntryInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getdrives"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDrives","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available drives from the server’s file system."}],"kind":"symbol","metadata":{"role":"symbol","title":"getDrives","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDrives"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO9getDrives3Get7RequestVySayAA19FileSystemEntryInfoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo":{"role":"symbol","title":"FileSystemEntryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}],"url":"\/documentation\/jellyfinapi\/filesystementryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getDrives":{"role":"symbol","title":"getDrives","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getDrives"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets available drives from the server’s file system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getDrives","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getdrives"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getenabled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getenabled.json new file mode 100644 index 000000000..bd5864463 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getenabled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getenabled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEnabled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the current quick connect state."}],"kind":"symbol","metadata":{"role":"symbol","title":"getEnabled","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO10getEnabled3Get7RequestVy10Foundation4DataVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getEnabled":{"role":"symbol","title":"getEnabled","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the current quick connect state."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getenabled"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getendpointinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getendpointinfo.json new file mode 100644 index 000000000..31235a304 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getendpointinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEndpointInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getendpointinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEndpointInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets information about the request endpoint."}],"kind":"symbol","metadata":{"role":"symbol","title":"getEndpointInfo","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEndpointInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO15getEndpointInfo3Get7RequestVyAA08EndPointF0VGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getEndpointInfo":{"role":"symbol","title":"getEndpointInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEndpointInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets information about the request endpoint."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEndpointInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getendpointinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/EndPointInfo":{"role":"symbol","title":"EndPointInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"EndPointInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EndPointInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EndPointInfo"}],"url":"\/documentation\/jellyfinapi\/endpointinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodes(seriesid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodes(seriesid:parameters:).json new file mode 100644 index 000000000..47ffd09f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodes(seriesid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEpisodes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV","text":"GetEpisodesParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodes(seriesid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEpisodes(seriesID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets episodes for a tv season."}],"kind":"symbol","metadata":{"role":"symbol","title":"getEpisodes(seriesID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEpisodes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetEpisodesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11getEpisodes8seriesID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0iE10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getEpisodes(seriesID:parameters:)":{"role":"symbol","title":"getEpisodes(seriesID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getEpisodes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetEpisodesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets episodes for a tv season."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getEpisodes(seriesID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodes(seriesid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters.json new file mode 100644 index 000000000..ea6d89f6c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"role":"symbol","title":"Paths.GetEpisodesParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/init(userID:fields:season:seasonID:isMissing:adjacentTo:startItemID:startIndex:limit:enableImages:imageTypeLimit:enableImageTypes:enableUserData:sortBy:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/adjacentTo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/isMissing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/season","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/seasonID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/startItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/season":{"role":"symbol","title":"season","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/season","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/season"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/adjacentTo":{"role":"symbol","title":"adjacentTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/adjacentTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/adjacentto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/init(userID:fields:season:seasonID:isMissing:adjacentTo:startItemID:startIndex:limit:enableImages:imageTypeLimit:enableImageTypes:enableUserData:sortBy:)":{"role":"symbol","title":"init(userID:fields:season:seasonID:isMissing:adjacentTo:startItemID:startIndex:limit:enableImages:imageTypeLimit:enableImageTypes:enableUserData:sortBy:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"season"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/init(userID:fields:season:seasonID:isMissing:adjacentTo:startItemID:startIndex:limit:enableImages:imageTypeLimit:enableImageTypes:enableUserData:sortBy:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/init(userid:fields:season:seasonid:ismissing:adjacentto:startitemid:startindex:limit:enableimages:imagetypelimit:enableimagetypes:enableuserdata:sortby:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/seasonID":{"role":"symbol","title":"seasonID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/seasonID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/seasonid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/startItemID":{"role":"symbol","title":"startItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/startItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/startitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/isMissing":{"role":"symbol","title":"isMissing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/isMissing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/ismissing"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/adjacentto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/adjacentto.json new file mode 100644 index 000000000..bdb3e7690 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/adjacentto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/adjacentto"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/adjacentTo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"adjacentTo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV10adjacentToSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/adjacentTo":{"role":"symbol","title":"adjacentTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/adjacentTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/adjacentto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/asquery.json new file mode 100644 index 000000000..83728d7c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/enableimages.json new file mode 100644 index 000000000..1b573458f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/enableimagetypes.json new file mode 100644 index 000000000..b7f0237b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV16enableImageTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/enableuserdata.json new file mode 100644 index 000000000..5bb59c0f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/enableuserdata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/fields.json new file mode 100644 index 000000000..09b24930f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/imagetypelimit.json new file mode 100644 index 000000000..8784ea4d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/init(userid:fields:season:seasonid:ismissing:adjacentto:startitemid:startindex:limit:enableimages:imagetypelimit:enableimagetypes:enableuserdata:sortby:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/init(userid:fields:season:seasonid:ismissing:adjacentto:startitemid:startindex:limit:enableimages:imagetypelimit:enableimagetypes:enableuserdata:sortby:).json new file mode 100644 index 000000000..2f38571b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/init(userid:fields:season:seasonid:ismissing:adjacentto:startitemid:startindex:limit:enableimages:imagetypelimit:enableimagetypes:enableuserdata:sortby:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"season"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/init(userid:fields:season:seasonid:ismissing:adjacentto:startitemid:startindex:limit:enableimages:imagetypelimit:enableimagetypes:enableuserdata:sortby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/init(userID:fields:season:seasonID:isMissing:adjacentTo:startItemID:startIndex:limit:enableImages:imageTypeLimit:enableImageTypes:enableUserData:sortBy:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"season"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(userID:fields:season:seasonID:isMissing:adjacentTo:startItemID:startIndex:limit:enableImages:imageTypeLimit:enableImageTypes:enableUserData:sortBy:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV6userID6fields6season0jH09isMissing10adjacentTo09startItemH00O5Index5limit12enableImages14imageTypeLimit0S10ImageTypes0S8UserData6sortByAE10Foundation4UUIDVSg_SayAA0P6FieldsOGSgs5Int32VSgAWSbSgSSSgAWA2_A2_A3_A2_SayAA0xV0OGSgA3_A4_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/init(userID:fields:season:seasonID:isMissing:adjacentTo:startItemID:startIndex:limit:enableImages:imageTypeLimit:enableImageTypes:enableUserData:sortBy:)":{"role":"symbol","title":"init(userID:fields:season:seasonID:isMissing:adjacentTo:startItemID:startIndex:limit:enableImages:imageTypeLimit:enableImageTypes:enableUserData:sortBy:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"season"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/init(userID:fields:season:seasonID:isMissing:adjacentTo:startItemID:startIndex:limit:enableImages:imageTypeLimit:enableImageTypes:enableUserData:sortBy:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/init(userid:fields:season:seasonid:ismissing:adjacentto:startitemid:startindex:limit:enableimages:imagetypelimit:enableimagetypes:enableuserdata:sortby:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/ismissing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/ismissing.json new file mode 100644 index 000000000..6ca5da42b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/ismissing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/ismissing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/isMissing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMissing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV9isMissingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/isMissing":{"role":"symbol","title":"isMissing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/isMissing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/ismissing"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/limit.json new file mode 100644 index 000000000..04fd233f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/season.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/season.json new file mode 100644 index 000000000..17d13caed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/season.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/season"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/season","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"season","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV6seasons5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/season":{"role":"symbol","title":"season","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"season"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/season","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/season"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/seasonid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/seasonid.json new file mode 100644 index 000000000..ef9ae5b67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/seasonid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/seasonid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/seasonID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"seasonID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV8seasonID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/seasonID":{"role":"symbol","title":"seasonID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seasonID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/seasonID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/seasonid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/sortby.json new file mode 100644 index 000000000..dc3c53a1c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV6sortBySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/startindex.json new file mode 100644 index 000000000..1b88e1f03 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/startitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/startitemid.json new file mode 100644 index 000000000..1e8a37ad0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/startitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/startitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/startItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"startItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV11startItemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/startItemID":{"role":"symbol","title":"startItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/startItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/startitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/userid.json new file mode 100644 index 000000000..360afecf0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getepisodesparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetEpisodesParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters":{"role":"symbol","title":"Paths.GetEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetEpisodesParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetEpisodesParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getepisodesparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getexternalidinfos(itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getexternalidinfos(itemid:).json new file mode 100644 index 000000000..abbe82632 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getexternalidinfos(itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getExternalIDInfos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV","text":"ExternalIDInfo"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getexternalidinfos(itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getExternalIDInfos(itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get the item’s external id info."}],"kind":"symbol","metadata":{"role":"symbol","title":"getExternalIDInfos(itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getExternalIDInfos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getExternalIDInfos6itemID3Get7RequestVySayAA0E6IDInfoVGGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getExternalIDInfos(itemID:)":{"role":"symbol","title":"getExternalIDInfos(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getExternalIDInfos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExternalIDInfo","preciseIdentifier":"s:11JellyfinAPI14ExternalIDInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get the item’s external id info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getExternalIDInfos(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getexternalidinfos(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ExternalIDInfo":{"role":"symbol","title":"ExternalIDInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExternalIDInfo"}],"abstract":[{"type":"text","text":"Represents the external id information for serialization to the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ExternalIDInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExternalIDInfo"}],"url":"\/documentation\/jellyfinapi\/externalidinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfallbackfont(name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfallbackfont(name:).json new file mode 100644 index 000000000..d1c6766ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfallbackfont(name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFallbackFont"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getfallbackfont(name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFallbackFont(name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a fallback font file."}],"kind":"symbol","metadata":{"role":"symbol","title":"getFallbackFont(name:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFallbackFont"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getFallbackFont4name3Get7RequestVy10Foundation4DataVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getFallbackFont(name:)":{"role":"symbol","title":"getFallbackFont(name:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFallbackFont"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a fallback font file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFallbackFont(name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getfallbackfont(name:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfallbackfontlist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfallbackfontlist.json new file mode 100644 index 000000000..551eeef95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfallbackfontlist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFallbackFontList"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","preciseIdentifier":"s:11JellyfinAPI8FontFileV","text":"FontFile"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getfallbackfontlist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFallbackFontList","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a list of available fallback font files."}],"kind":"symbol","metadata":{"role":"symbol","title":"getFallbackFontList","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFallbackFontList"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FontFile","preciseIdentifier":"s:11JellyfinAPI8FontFileV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19getFallbackFontList3Get7RequestVySayAA0F4FileVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/FontFile":{"role":"symbol","title":"FontFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FontFile"}],"abstract":[{"type":"text","text":"Class FontFile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FontFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FontFile"}],"url":"\/documentation\/jellyfinapi\/fontfile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getFallbackFontList":{"role":"symbol","title":"getFallbackFontList","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFallbackFontList"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FontFile","preciseIdentifier":"s:11JellyfinAPI8FontFileV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of available fallback font files."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFallbackFontList","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getfallbackfontlist"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfile(itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfile(itemid:).json new file mode 100644 index 000000000..c743ea99a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfile(itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getfile(itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFile(itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get the original file of an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getFile(itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO7getFile6itemID3Get7RequestVy10Foundation4DataVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getFile(itemID:)":{"role":"symbol","title":"getFile(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get the original file of an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFile(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getfile(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfirstuser.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfirstuser.json new file mode 100644 index 000000000..ef9ec9924 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfirstuser.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFirstUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getfirstuser"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFirstUser","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the first user."}],"kind":"symbol","metadata":{"role":"symbol","title":"getFirstUser","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFirstUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO12getFirstUser3Get7RequestVyAA07StartupF3DtoVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getFirstUser":{"role":"symbol","title":"getFirstUser","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFirstUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the first user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFirstUser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getfirstuser"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto":{"role":"symbol","title":"StartupUserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"abstract":[{"type":"text","text":"The startup user DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupUserDto"}],"url":"\/documentation\/jellyfinapi\/startupuserdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfirstuser2.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfirstuser2.json new file mode 100644 index 000000000..38dc96229 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getfirstuser2.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFirstUser2"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getfirstuser2"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFirstUser2","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the first user."}],"kind":"symbol","metadata":{"role":"symbol","title":"getFirstUser2","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFirstUser2"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13getFirstUser23Get7RequestVyAA14StartupUserDtoVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto":{"role":"symbol","title":"StartupUserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"abstract":[{"type":"text","text":"The startup user DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupUserDto"}],"url":"\/documentation\/jellyfinapi\/startupuserdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getFirstUser2":{"role":"symbol","title":"getFirstUser2","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getFirstUser2"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the first user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getFirstUser2","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getfirstuser2"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgeneralimage(name:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgeneralimage(name:type:).json new file mode 100644 index 000000000..f3c100458 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgeneralimage(name:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGeneralImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgeneralimage(name:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGeneralImage(name:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get General Image."}],"kind":"symbol","metadata":{"role":"symbol","title":"getGeneralImage(name:type:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGeneralImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getGeneralImage4name4type3Get7RequestVy10Foundation4DataVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGeneralImage(name:type:)":{"role":"symbol","title":"getGeneralImage(name:type:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGeneralImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get General Image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGeneralImage(name:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgeneralimage(name:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgeneralimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgeneralimages.json new file mode 100644 index 000000000..a59c378c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgeneralimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGeneralImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV","text":"ImageByNameInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgeneralimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGeneralImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get all general images."}],"kind":"symbol","metadata":{"role":"symbol","title":"getGeneralImages","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGeneralImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO16getGeneralImages3Get7RequestVySayAA15ImageByNameInfoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGeneralImages":{"role":"symbol","title":"getGeneralImages","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGeneralImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all general images."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGeneralImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgeneralimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenre(genrename:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenre(genrename:userid:).json new file mode 100644 index 000000000..06775a1c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenre(genrename:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenre"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genreName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenre(genrename:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenre(genreName:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a genre, by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getGenre(genreName:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenre"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genreName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO8getGenre9genreName6userID3Get7RequestVyAA11BaseItemDtoVGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGenre(genreName:userID:)":{"role":"symbol","title":"getGenre(genreName:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenre"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genreName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a genre, by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenre(genreName:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenre(genrename:userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimage(name:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimage(name:imagetype:parameters:).json new file mode 100644 index 000000000..ac77029ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimage(name:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV","text":"GetGenreImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimage(name:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenreImage(name:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get genre image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getGenreImage(name:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getGenreImage4name9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC0keF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGenreImage(name:imageType:parameters:)":{"role":"symbol","title":"getGenreImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenreImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindex(name:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindex(name:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..d094c643b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindex(name:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV","text":"GetGenreImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindex(name:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenreImageByIndex(name:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get genre image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getGenreImageByIndex(name:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20getGenreImageByIndex4name9imageType0jH010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC0mefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGenreImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getGenreImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenreImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindex(name:imagetype:imageindex:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters.json new file mode 100644 index 000000000..afd3fc3ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/iscropwhitespace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/asquery.json new file mode 100644 index 000000000..2fc55b52f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..59dc01df5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/blur.json new file mode 100644 index 000000000..4e1048149 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..b02bc5afe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..ad548a40e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..ce6595b03 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..c56f13f6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..ec21236b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetGenreImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/height.json new file mode 100644 index 000000000..34d11d6d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..bd54df2c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV3tag6format8maxWidth0L6Height13percentPlayed13unplayedCount5width6height7quality04fillM00vN016isCropWhitespace0w3AddP9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0F6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..3582065bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..c9d5f2c30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..3cc7e6070 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..fcd3af24f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/maxwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..36b68c91e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/quality.json new file mode 100644 index 000000000..efec8fe17 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/tag.json new file mode 100644 index 000000000..419aee816 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/tag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..abacd9f04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/unplayedcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/width.json new file mode 100644 index 000000000..26dbd84cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetGenreImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters.json new file mode 100644 index 000000000..f599e7730 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"role":"symbol","title":"Paths.GetGenreImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/asquery.json new file mode 100644 index 000000000..a32f5bbdc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/backgroundcolor.json new file mode 100644 index 000000000..a470c9f6e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/blur.json new file mode 100644 index 000000000..9b4bd2ce0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/fillheight.json new file mode 100644 index 000000000..fb7998eb6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/fillheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/fillwidth.json new file mode 100644 index 000000000..d33941ad1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/foregroundlayer.json new file mode 100644 index 000000000..48ea12e2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/format-swift.property.json new file mode 100644 index 000000000..aef145d82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/format-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..5419ba36f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetGenreImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/height.json new file mode 100644 index 000000000..3b40d2dff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/imageindex.json new file mode 100644 index 000000000..f55de9a9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..ed0579a77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV3tag6format8maxWidth0J6Height13percentPlayed13unplayedCount5width6height7quality04fillK00tL016isCropWhitespace0u3AddN9Indicator4blur15backgroundColor15foregroundLayer10imageIndexAESSSg_AA0F6FormatOSgs5Int32VSgA1_SdSgA1_A1_A1_A1_A1_A1_SbSgA3_A1_A2WA1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..bec281431 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..c4564490a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/maxheight.json new file mode 100644 index 000000000..411d9acbf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/maxwidth.json new file mode 100644 index 000000000..12464f1b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/percentplayed.json new file mode 100644 index 000000000..57fcc0464 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/percentplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/quality.json new file mode 100644 index 000000000..520a1107a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/tag.json new file mode 100644 index 000000000..eec11bbde --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/unplayedcount.json new file mode 100644 index 000000000..6e5134bab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/width.json new file mode 100644 index 000000000..667528409 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenreimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetGenreImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters":{"role":"symbol","title":"Paths.GetGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenreImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenreImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenreimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenres(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenres(parameters:).json new file mode 100644 index 000000000..edf602784 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenres(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenres"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetGenresParametersV","text":"GetGenresParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenres(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenres(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all genres from a given item, folder, or the entire library."}],"kind":"symbol","metadata":{"role":"symbol","title":"getGenres(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenres"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetGenresParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetGenresParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9getGenres10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGenres(parameters:)":{"role":"symbol","title":"getGenres(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGenres"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetGenresParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetGenresParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all genres from a given item, folder, or the entire library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGenres(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenres(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters.json new file mode 100644 index 000000000..c11ecb009 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"role":"symbol","title":"Paths.GetGenresParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameLessThan","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameStartsWith","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameStartsWithOrGreater","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)":{"role":"symbol","title":"init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/asquery.json new file mode 100644 index 000000000..95addbdfd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/enableimages.json new file mode 100644 index 000000000..e46ad8ba6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/enableimagetypes.json new file mode 100644 index 000000000..2f806114e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV16enableImageTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..e568f81fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/excludeitemtypes.json new file mode 100644 index 000000000..7359950e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV16excludeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/fields.json new file mode 100644 index 000000000..52085ce7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/imagetypelimit.json new file mode 100644 index 000000000..dee116337 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/includeitemtypes.json new file mode 100644 index 000000000..d2f1fc892 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV16includeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:).json new file mode 100644 index 000000000..1027427ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV10startIndex5limit10searchTerm8parentID6fields16excludeItemTypes07includepQ010isFavorite14imageTypeLimit011enableImageQ004userM023nameStartsWithOrGreater14nameStartsWith12nameLessThan6sortBy9sortOrder0X6Images0X16TotalRecordCountAEs5Int32VSg_AZSSSg10Foundation4UUIDVSgSayAA0P6FieldsOGSgSayAA04BaseP4KindOGSgA11_SbSgAZSayAA0yV0OGSgA3_A_A_A_SaySSGSgSayAA9SortOrderOGSgA12_A12_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)":{"role":"symbol","title":"init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/isfavorite.json new file mode 100644 index 000000000..5de13b471 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/limit.json new file mode 100644 index 000000000..775f71d18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/namelessthan.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/namelessthan.json new file mode 100644 index 000000000..f4b8d1e18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/namelessthan.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/namelessthan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameLessThan","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameLessThan","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV12nameLessThanSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/namestartswith.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/namestartswith.json new file mode 100644 index 000000000..e204c3445 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/namestartswith.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/namestartswith"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameStartsWith","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWith","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV14nameStartsWithSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/namestartswithorgreater.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/namestartswithorgreater.json new file mode 100644 index 000000000..b040f613c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/namestartswithorgreater.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/namestartswithorgreater"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameStartsWithOrGreater","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWithOrGreater","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV23nameStartsWithOrGreaterSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/parentid.json new file mode 100644 index 000000000..f3b3f7884 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/searchterm.json new file mode 100644 index 000000000..29582c650 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV10searchTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/sortby.json new file mode 100644 index 000000000..ec988de20 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/sortby"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/sortorder.json new file mode 100644 index 000000000..ff232185a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV9sortOrderSayAA04SortH0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/startindex.json new file mode 100644 index 000000000..aec64017c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/userid.json new file mode 100644 index 000000000..d23ebf1bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgenresparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgenresparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetGenresParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetGenresParameters":{"role":"symbol","title":"Paths.GetGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgroupingoptions(userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgroupingoptions(userid:).json new file mode 100644 index 000000000..2e9cd10a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getgroupingoptions(userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGroupingOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","preciseIdentifier":"s:11JellyfinAPI20SpecialViewOptionDtoV","text":"SpecialViewOptionDto"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getgroupingoptions(userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGroupingOptions(userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get user view grouping options."}],"kind":"symbol","metadata":{"role":"symbol","title":"getGroupingOptions(userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGroupingOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SpecialViewOptionDto","preciseIdentifier":"s:11JellyfinAPI20SpecialViewOptionDtoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getGroupingOptions6userID3Get7RequestVySayAA20SpecialViewOptionDtoVGGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto":{"role":"symbol","title":"SpecialViewOptionDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"abstract":[{"type":"text","text":"Special view option dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SpecialViewOptionDto"}],"url":"\/documentation\/jellyfinapi\/specialviewoptiondto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGroupingOptions(userID:)":{"role":"symbol","title":"getGroupingOptions(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGroupingOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SpecialViewOptionDto","preciseIdentifier":"s:11JellyfinAPI20SpecialViewOptionDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get user view grouping options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGroupingOptions(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getgroupingoptions(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getguideinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getguideinfo.json new file mode 100644 index 000000000..b56f2c191 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getguideinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGuideInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getguideinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGuideInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get guid info."}],"kind":"symbol","metadata":{"role":"symbol","title":"getGuideInfo","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGuideInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO12getGuideInfo3Get7RequestVyAA0eF0VGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GuideInfo":{"role":"symbol","title":"GuideInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GuideInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GuideInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GuideInfo"}],"url":"\/documentation\/jellyfinapi\/guideinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getGuideInfo":{"role":"symbol","title":"getGuideInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getGuideInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get guid info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getGuideInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getguideinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegment(itemid:playlistid:segmentid:container:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegment(itemid:playlistid:segmentid:container:parameters:).json new file mode 100644 index 000000000..63664e132 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegment(itemid:playlistid:segmentid:container:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV","text":"GetHlsAudioSegmentParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegment(itemid:playlistid:segmentid:container:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegment(itemID:playlistID:segmentID:container:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a video stream using HTTP live streaming."}],"kind":"symbol","metadata":{"role":"symbol","title":"getHlsAudioSegment(itemID:playlistID:segmentID:container:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetHlsAudioSegmentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getHlsAudioSegment6itemID08playlistI007segmentI09container10parameters3Get7RequestVy10Foundation4DataVGSS_SSSiSSAC0nefG10ParametersVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsAudioSegment(itemID:playlistID:segmentID:container:parameters:)":{"role":"symbol","title":"getHlsAudioSegment(itemID:playlistID:segmentID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetHlsAudioSegmentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream using HTTP live streaming."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegment(itemID:playlistID:segmentID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegment(itemid:playlistid:segmentid:container:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentlegacyaac(itemid:segmentid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentlegacyaac(itemid:segmentid:).json new file mode 100644 index 000000000..94a7d233c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentlegacyaac(itemid:segmentid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegmentLegacyAac"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentlegacyaac(itemid:segmentid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegmentLegacyAac(itemID:segmentID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the specified audio segment for an audio item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getHlsAudioSegmentLegacyAac(itemID:segmentID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegmentLegacyAac"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO27getHlsAudioSegmentLegacyAac6itemID07segmentK03Get7RequestVy10Foundation4DataVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsAudioSegmentLegacyAac(itemID:segmentID:)":{"role":"symbol","title":"getHlsAudioSegmentLegacyAac(itemID:segmentID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegmentLegacyAac"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the specified audio segment for an audio item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegmentLegacyAac(itemID:segmentID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentlegacyaac(itemid:segmentid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentlegacymp3(itemid:segmentid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentlegacymp3(itemid:segmentid:).json new file mode 100644 index 000000000..df13c6691 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentlegacymp3(itemid:segmentid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegmentLegacyMp3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentlegacymp3(itemid:segmentid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegmentLegacyMp3(itemID:segmentID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the specified audio segment for an audio item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getHlsAudioSegmentLegacyMp3(itemID:segmentID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegmentLegacyMp3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO27getHlsAudioSegmentLegacyMp36itemID07segmentK03Get7RequestVy10Foundation4DataVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsAudioSegmentLegacyMp3(itemID:segmentID:)":{"role":"symbol","title":"getHlsAudioSegmentLegacyMp3(itemID:segmentID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsAudioSegmentLegacyMp3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the specified audio segment for an audio item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsAudioSegmentLegacyMp3(itemID:segmentID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentlegacymp3(itemid:segmentid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters.json new file mode 100644 index 000000000..67a1b1613 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/actualSegmentLengthTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/runtimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-8v5zk"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/actualSegmentLengthTicks":{"role":"symbol","title":"actualSegmentLengthTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/actualSegmentLengthTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/actualsegmentlengthticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/runtimeTicks":{"role":"symbol","title":"runtimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/runtimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/runtimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlemethod-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/actualsegmentlengthticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/actualsegmentlengthticks.json new file mode 100644 index 000000000..2dc5340db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/actualsegmentlengthticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/actualsegmentlengthticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/actualSegmentLengthTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"title":"actualSegmentLengthTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV06actualG11LengthTickss5Int64Vvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/actualSegmentLengthTicks":{"role":"symbol","title":"actualSegmentLengthTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/actualSegmentLengthTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/actualsegmentlengthticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..9a01f1365 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV05allowF10StreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..0c5570012 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV20allowVideoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/asquery.json new file mode 100644 index 000000000..bcc854002 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiobitrate.json new file mode 100644 index 000000000..4cf7050ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiobitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiochannels.json new file mode 100644 index 000000000..af90ce8bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiocodec.json new file mode 100644 index 000000000..fdbf4458e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiosamplerate.json new file mode 100644 index 000000000..a294e4e94 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiostreamindex.json new file mode 100644 index 000000000..1f7e73946 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/context-swift.property.json new file mode 100644 index 000000000..57ac4b330 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/context-swift.typealias.json new file mode 100644 index 000000000..068480dbd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetHlsAudioSegmentParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/cpucorelimit.json new file mode 100644 index 000000000..bcdeef72a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/cpucorelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/deviceid.json new file mode 100644 index 000000000..9627d1441 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/deviceprofileid.json new file mode 100644 index 000000000..94b822e2c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/enableautostreamcopy.json new file mode 100644 index 000000000..e1f950182 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV20enableAutoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/enableautostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..42e64345d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/framerate.json new file mode 100644 index 000000000..879875685 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/height.json new file mode 100644 index 000000000..6ff3c49bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-8v5zk.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-8v5zk.json new file mode 100644 index 000000000..7220bcfc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-8v5zk.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-8v5zk"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"title":"init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV12runtimeTicks06actualg6LengthJ08isStatic6params3tag15deviceProfileID011playSessionS016segmentContainer0vL011minSegments011mediaSourceS00qS010audioCodec20enableAutoStreamCopy20allowVideoStreamCopy05allowF10StreamCopy0M19BreakOnNonKeyFrames15audioSampleRate03maxF8BitDepth19maxStreamingBitrate12audioBitRate13audioChannels03maxF8Channels7profile5level9framerate12maxFramerate0M14CopyTimestamps09startTimeJ05width6height12videoBitRate19subtitleStreamIndex14subtitleMethod12maxRefFrames16maxVideoBitDepth10requireAvc0M11DeInterlace20requireNonAnamorphic014transcodingMaxF8Channels12cpuCoreLimit010liveStreamS020enableMpegtsM2TsMode10videoCodec13subtitleCodec16transcodeReasons16audioStreamIndex16videoStreamIndex7context13streamOptionsAEs5Int64V_A29_SbSgSSSgA31_A31_A31_A31_s5Int32VSgA34_A31_A31_A31_A30_A30_A30_A30_A34_A34_A34_A34_A34_A34_A31_A31_SfSgA35_A30_A29_SgA34_A34_A34_A34_AA22SubtitleDeliveryMethodOSgA34_A34_A30_A30_A30_A34_A34_A31_A30_A31_A31_A31_A34_A34_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-8v5zk"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..c6030cfb4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/iscopytimestamps.json new file mode 100644 index 000000000..58cb8d203 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/isdeinterlace.json new file mode 100644 index 000000000..0188f2dc4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/isstatic.json new file mode 100644 index 000000000..63b0113ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/level.json new file mode 100644 index 000000000..2b1648c5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/livestreamid.json new file mode 100644 index 000000000..6c836545b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..d30f3ecc3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV03maxF8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxaudiochannels.json new file mode 100644 index 000000000..7f35af351 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV03maxF8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxframerate.json new file mode 100644 index 000000000..732b2e11a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxrefframes.json new file mode 100644 index 000000000..f92e705ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxstreamingbitrate.json new file mode 100644 index 000000000..7100f1b81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxvideobitdepth.json new file mode 100644 index 000000000..b50d2fe15 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV16maxVideoBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/maxvideobitdepth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/mediasourceid.json new file mode 100644 index 000000000..f3cc542f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/mediasourceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/minsegments.json new file mode 100644 index 000000000..0a5070a75 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/minsegments"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/params.json new file mode 100644 index 000000000..cdce41190 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/playsessionid.json new file mode 100644 index 000000000..63a66eadb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/profile.json new file mode 100644 index 000000000..45312c804 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/requireavc.json new file mode 100644 index 000000000..37dad6668 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/requirenonanamorphic.json new file mode 100644 index 000000000..166826f02 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/runtimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/runtimeticks.json new file mode 100644 index 000000000..2a8b58bc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/runtimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/runtimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/runtimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"title":"runtimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV12runtimeTickss5Int64Vvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/runtimeTicks":{"role":"symbol","title":"runtimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/runtimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/runtimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/segmentcontainer.json new file mode 100644 index 000000000..24ce978d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/segmentlength.json new file mode 100644 index 000000000..e349ea931 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/starttimeticks.json new file mode 100644 index 000000000..c4b80050a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..ac5ef3a81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..1c413093f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetHlsAudioSegmentParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13StreamOptionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlecodec.json new file mode 100644 index 000000000..bf6c88795 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..b541d036c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14subtitleMethodAA016SubtitleDeliveryJ0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..7f159ade8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetHlsAudioSegmentParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlestreamindex.json new file mode 100644 index 000000000..83dcbc473 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/tag.json new file mode 100644 index 000000000..41472193b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/transcodereasons.json new file mode 100644 index 000000000..2264383a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/transcodereasons"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..deb2f1a5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV014transcodingMaxF8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/videobitrate.json new file mode 100644 index 000000000..2edcb8ee3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/videocodec.json new file mode 100644 index 000000000..d0783a45c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/videostreamindex.json new file mode 100644 index 000000000..90ffea7aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV16videoStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/width.json new file mode 100644 index 000000000..62359b332 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsaudiosegmentparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsAudioSegmentParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters":{"role":"symbol","title":"Paths.GetHlsAudioSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsAudioSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsAudioSegmentParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsAudioSegmentParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsaudiosegmentparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsplaylistlegacy(itemid:playlistid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsplaylistlegacy(itemid:playlistid:).json new file mode 100644 index 000000000..7e86ed1a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsplaylistlegacy(itemid:playlistid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsPlaylistLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsplaylistlegacy(itemid:playlistid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsPlaylistLegacy(itemID:playlistID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a hls video playlist."}],"kind":"symbol","metadata":{"role":"symbol","title":"getHlsPlaylistLegacy(itemID:playlistID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsPlaylistLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20getHlsPlaylistLegacy6itemID08playlistI03Get7RequestVy10Foundation4DataVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsPlaylistLegacy(itemID:playlistID:)":{"role":"symbol","title":"getHlsPlaylistLegacy(itemID:playlistID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsPlaylistLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a hls video playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsPlaylistLegacy(itemID:playlistID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsplaylistlegacy(itemid:playlistid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegment(itemid:playlistid:segmentid:container:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegment(itemid:playlistid:segmentid:container:parameters:).json new file mode 100644 index 000000000..da2c59751 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegment(itemid:playlistid:segmentid:container:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsVideoSegment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV","text":"GetHlsVideoSegmentParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegment(itemid:playlistid:segmentid:container:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsVideoSegment(itemID:playlistID:segmentID:container:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a video stream using HTTP live streaming."}],"kind":"symbol","metadata":{"role":"symbol","title":"getHlsVideoSegment(itemID:playlistID:segmentID:container:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsVideoSegment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetHlsVideoSegmentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getHlsVideoSegment6itemID08playlistI007segmentI09container10parameters3Get7RequestVy10Foundation4DataVGSS_SSSiSSAC0nefG10ParametersVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsVideoSegment(itemID:playlistID:segmentID:container:parameters:)":{"role":"symbol","title":"getHlsVideoSegment(itemID:playlistID:segmentID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsVideoSegment"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetHlsVideoSegmentParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream using HTTP live streaming."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsVideoSegment(itemID:playlistID:segmentID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegment(itemid:playlistid:segmentid:container:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentlegacy(itemid:playlistid:segmentid:segmentcontainer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentlegacy(itemid:playlistid:segmentid:segmentcontainer:).json new file mode 100644 index 000000000..0478ab3ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentlegacy(itemid:playlistid:segmentid:segmentcontainer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsVideoSegmentLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentlegacy(itemid:playlistid:segmentid:segmentcontainer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsVideoSegmentLegacy(itemID:playlistID:segmentID:segmentContainer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a hls video segment."}],"kind":"symbol","metadata":{"role":"symbol","title":"getHlsVideoSegmentLegacy(itemID:playlistID:segmentID:segmentContainer:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsVideoSegmentLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO24getHlsVideoSegmentLegacy6itemID08playlistJ007segmentJ00L9Container3Get7RequestVy10Foundation4DataVGSS_S3StFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getHlsVideoSegmentLegacy(itemID:playlistID:segmentID:segmentContainer:)":{"role":"symbol","title":"getHlsVideoSegmentLegacy(itemID:playlistID:segmentID:segmentContainer:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getHlsVideoSegmentLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a hls video segment."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getHlsVideoSegmentLegacy(itemID:playlistID:segmentID:segmentContainer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentlegacy(itemid:playlistid:segmentid:segmentcontainer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters.json new file mode 100644 index 000000000..b62b73833 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/actualSegmentLengthTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/runtimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/runtimeTicks":{"role":"symbol","title":"runtimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/runtimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/runtimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-9abn0"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/actualSegmentLengthTicks":{"role":"symbol","title":"actualSegmentLengthTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/actualSegmentLengthTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/actualsegmentlengthticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/isbreakonnonkeyframes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/actualsegmentlengthticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/actualsegmentlengthticks.json new file mode 100644 index 000000000..78af2c97d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/actualsegmentlengthticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/actualsegmentlengthticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/actualSegmentLengthTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"title":"actualSegmentLengthTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV06actualG11LengthTickss5Int64Vvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/actualSegmentLengthTicks":{"role":"symbol","title":"actualSegmentLengthTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/actualSegmentLengthTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/actualsegmentlengthticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..a4f782079 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV20allowAudioStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..0de106ddf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV05allowF10StreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/asquery.json new file mode 100644 index 000000000..e0c7e69c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiobitrate.json new file mode 100644 index 000000000..8945f4c57 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiochannels.json new file mode 100644 index 000000000..a05a991b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiocodec.json new file mode 100644 index 000000000..42abe3ec2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiocodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiosamplerate.json new file mode 100644 index 000000000..68cd6795c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiostreamindex.json new file mode 100644 index 000000000..85faf5401 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/context-swift.property.json new file mode 100644 index 000000000..887177cc8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/context-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/context-swift.typealias.json new file mode 100644 index 000000000..64234bb6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetHlsVideoSegmentParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/cpucorelimit.json new file mode 100644 index 000000000..f35a939ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/deviceid.json new file mode 100644 index 000000000..66ba41ad0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/deviceprofileid.json new file mode 100644 index 000000000..ed39bc492 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/enableautostreamcopy.json new file mode 100644 index 000000000..cc373d809 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV20enableAutoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/enableautostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..ca7f87445 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/framerate.json new file mode 100644 index 000000000..27f8699e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/framerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/height.json new file mode 100644 index 000000000..7b7ba9a3f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-9abn0.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-9abn0.json new file mode 100644 index 000000000..f54abaa3f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-9abn0.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-9abn0"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"title":"init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV12runtimeTicks06actualg6LengthJ08isStatic6params3tag15deviceProfileID011playSessionS016segmentContainer0vL011minSegments011mediaSourceS00qS010audioCodec20enableAutoStreamCopy05allowF10StreamCopy20allowAudioStreamCopy0M19BreakOnNonKeyFrames15audioSampleRate16maxAudioBitDepth12audioBitRate13audioChannels16maxAudioChannels7profile5level9framerate12maxFramerate0M14CopyTimestamps09startTimeJ05width6height8maxWidth9maxHeight12videoBitRate19subtitleStreamIndex14subtitleMethod12maxRefFrames03maxF8BitDepth10requireAvc0M11DeInterlace20requireNonAnamorphic27transcodingMaxAudioChannels12cpuCoreLimit010liveStreamS020enableMpegtsM2TsMode10videoCodec13subtitleCodec16transcodeReasons16audioStreamIndex16videoStreamIndex7context13streamOptionsAEs5Int64V_A30_SbSgSSSgA32_A32_A32_A32_s5Int32VSgA35_A32_A32_A32_A31_A31_A31_A31_A35_A35_A35_A35_A35_A32_A32_SfSgA36_A31_A30_SgA35_A35_A35_A35_A35_A35_AA22SubtitleDeliveryMethodOSgA35_A35_A31_A31_A31_A35_A35_A32_A31_A32_A32_A32_A35_A35_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actualSegmentLengthTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/init(runtimeTicks:actualSegmentLengthTicks:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/init(runtimeticks:actualsegmentlengthticks:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreak-9abn0"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..9cef649fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/iscopytimestamps.json new file mode 100644 index 000000000..c1c52d5e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/iscopytimestamps"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/isdeinterlace.json new file mode 100644 index 000000000..336254478 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/isstatic.json new file mode 100644 index 000000000..b35e61387 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/isstatic"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/level.json new file mode 100644 index 000000000..3c9610fcb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/level"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/livestreamid.json new file mode 100644 index 000000000..6f4506acb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..18c13da18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV16maxAudioBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxaudiobitdepth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxaudiochannels.json new file mode 100644 index 000000000..7826def60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxframerate.json new file mode 100644 index 000000000..08df713d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxheight.json new file mode 100644 index 000000000..bebf3cb38 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxrefframes.json new file mode 100644 index 000000000..0f2dc1eb1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxvideobitdepth.json new file mode 100644 index 000000000..96b2062d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV03maxF8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxwidth.json new file mode 100644 index 000000000..90fae8d4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/maxwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/mediasourceid.json new file mode 100644 index 000000000..92a58e443 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/minsegments.json new file mode 100644 index 000000000..c19afc268 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/params.json new file mode 100644 index 000000000..ba007b0f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/playsessionid.json new file mode 100644 index 000000000..9de97c435 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/playsessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/profile.json new file mode 100644 index 000000000..64dd8471a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/requireavc.json new file mode 100644 index 000000000..e180472ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/requirenonanamorphic.json new file mode 100644 index 000000000..2f1ca1c81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/runtimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/runtimeticks.json new file mode 100644 index 000000000..dabe2908e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/runtimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/runtimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/runtimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"title":"runtimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV12runtimeTickss5Int64Vvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/runtimeTicks":{"role":"symbol","title":"runtimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runtimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/runtimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/runtimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/segmentcontainer.json new file mode 100644 index 000000000..20aba8cc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/segmentlength.json new file mode 100644 index 000000000..c460c97ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/starttimeticks.json new file mode 100644 index 000000000..b952f455d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..83d48a0bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/streamoptions-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..a245f5153 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetHlsVideoSegmentParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13StreamOptionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlecodec.json new file mode 100644 index 000000000..a120ede20 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..78c5b13c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14subtitleMethodAA016SubtitleDeliveryJ0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..b6c16b43d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetHlsVideoSegmentParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlestreamindex.json new file mode 100644 index 000000000..a30a1a455 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/tag.json new file mode 100644 index 000000000..060f0c683 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/tag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/transcodereasons.json new file mode 100644 index 000000000..2aec00333 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..0921cc1b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV27transcodingMaxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/transcodingmaxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/videobitrate.json new file mode 100644 index 000000000..a806df1ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/videocodec.json new file mode 100644 index 000000000..c05f3761a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/videocodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/videostreamindex.json new file mode 100644 index 000000000..5e89cb4df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV16videoStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/width.json new file mode 100644 index 000000000..061b3e7df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gethlsvideosegmentparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetHlsVideoSegmentParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters":{"role":"symbol","title":"Paths.GetHlsVideoSegmentParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetHlsVideoSegmentParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetHlsVideoSegmentParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetHlsVideoSegmentParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gethlsvideosegmentparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/geticon(filename:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/geticon(filename:).json new file mode 100644 index 000000000..f80ea0069 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/geticon(filename:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIcon"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/geticon(filename:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIcon(fileName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a server icon."}],"kind":"symbol","metadata":{"role":"symbol","title":"getIcon(fileName:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIcon"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO7getIcon8fileName3Get7RequestVy10Foundation4DataVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getIcon(fileName:)":{"role":"symbol","title":"getIcon(fileName:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIcon"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a server icon."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIcon(fileName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/geticon(filename:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/geticonid(serverid:filename:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/geticonid(serverid:filename:).json new file mode 100644 index 000000000..6fae43a92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/geticonid(serverid:filename:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIconID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/geticonid(serverid:filename:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIconID(serverID:fileName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a server icon."}],"kind":"symbol","metadata":{"role":"symbol","title":"getIconID(serverID:fileName:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIconID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9getIconID06serverF08fileName3Get7RequestVy10Foundation4DataVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getIconID(serverID:fileName:)":{"role":"symbol","title":"getIconID(serverID:fileName:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIconID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a server icon."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIconID(serverID:fileName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/geticonid(serverid:filename:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbum(id:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbum(id:parameters:).json new file mode 100644 index 000000000..ea474b369 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbum(id:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromAlbum"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV","text":"GetInstantMixFromAlbumParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbum(id:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromAlbum(id:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an instant playlist based on a given album."}],"kind":"symbol","metadata":{"role":"symbol","title":"getInstantMixFromAlbum(id:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromAlbum"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromAlbumParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22getInstantMixFromAlbum2id10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0kefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromAlbum(id:parameters:)":{"role":"symbol","title":"getInstantMixFromAlbum(id:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromAlbum"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromAlbumParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given album."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromAlbum(id:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbum(id:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters.json new file mode 100644 index 000000000..65740f0bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/asquery.json new file mode 100644 index 000000000..c5daf22ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/enableimages.json new file mode 100644 index 000000000..b4e6f1447 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/enableimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/enableimagetypes.json new file mode 100644 index 000000000..bc4ba43c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV16enableImageTypesSayAA0K4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/enableuserdata.json new file mode 100644 index 000000000..c5318b247 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/fields.json new file mode 100644 index 000000000..40f97744d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/imagetypelimit.json new file mode 100644 index 000000000..8f00e29fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json new file mode 100644 index 000000000..68661a3ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV6userID5limit6fields12enableImages0N8UserData14imageTypeLimit0N10ImageTypesAE10Foundation4UUIDVSg_s5Int32VSgSayAA10ItemFieldsOGSgSbSgAxSSayAA0uS0OGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/limit.json new file mode 100644 index 000000000..ca963d0ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/userid.json new file mode 100644 index 000000000..ac1a6b369 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromalbumparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetInstantMixFromAlbumParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters":{"role":"symbol","title":"Paths.GetInstantMixFromAlbumParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromAlbumParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromAlbumParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromAlbumParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromalbumparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists(id:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists(id:parameters:).json new file mode 100644 index 000000000..63892ee8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists(id:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV","text":"GetInstantMixFromArtistsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists(id:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromArtists(id:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an instant playlist based on a given artist."}],"kind":"symbol","metadata":{"role":"symbol","title":"getInstantMixFromArtists(id:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO24getInstantMixFromArtists2id10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0kefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromArtists(id:parameters:)":{"role":"symbol","title":"getInstantMixFromArtists(id:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given artist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromArtists(id:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists(id:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2(parameters:).json new file mode 100644 index 000000000..04ca0458b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromArtists2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV","text":"GetInstantMixFromArtists2Parameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromArtists2(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an instant playlist based on a given artist."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"getInstantMixFromArtists2(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromArtists2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromArtists2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO25getInstantMixFromArtists210parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0jefgH10ParametersV_tFZ","extendedModule":"JellyfinAPI","platforms":[]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated"}]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromArtists2(parameters:)":{"role":"symbol","title":"getInstantMixFromArtists2(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromArtists2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromArtists2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given artist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromArtists2(parameters:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters.json new file mode 100644 index 000000000..bfa981be4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/id","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/id":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/id","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/id"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/asquery.json new file mode 100644 index 000000000..008c18bdc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/enableimages.json new file mode 100644 index 000000000..cac13be27 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/enableimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/enableimagetypes.json new file mode 100644 index 000000000..c71c5f670 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV16enableImageTypesSayAA0K4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/enableuserdata.json new file mode 100644 index 000000000..6b8876a30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/fields.json new file mode 100644 index 000000000..22c199e1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/id.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/id.json new file mode 100644 index 000000000..2af0e95a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/id.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/id"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/id","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV2id10Foundation4UUIDVvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/id":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/id","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/id"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/imagetypelimit.json new file mode 100644 index 000000000..3f7fefc8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json new file mode 100644 index 000000000..e42c9406f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"title":"init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV2id6userID5limit6fields12enableImages0O8UserData14imageTypeLimit0O10ImageTypesAE10Foundation4UUIDV_APSgs5Int32VSgSayAA10ItemFieldsOGSgSbSgAyTSayAA0vT0OGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/limit.json new file mode 100644 index 000000000..7c37caa2a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/userid.json new file mode 100644 index 000000000..090fe821d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartists2parameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromArtists2ParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtists2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtists2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtists2Parameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtists2Parameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartists2parameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters.json new file mode 100644 index 000000000..7f4c505e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/asquery.json new file mode 100644 index 000000000..ed2854007 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/enableimages.json new file mode 100644 index 000000000..f380f2181 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/enableimagetypes.json new file mode 100644 index 000000000..02e3317dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV16enableImageTypesSayAA0K4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/enableuserdata.json new file mode 100644 index 000000000..e20581426 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/enableuserdata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/fields.json new file mode 100644 index 000000000..c1a6de139 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/imagetypelimit.json new file mode 100644 index 000000000..7ce6dc946 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json new file mode 100644 index 000000000..d36ec59f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV6userID5limit6fields12enableImages0N8UserData14imageTypeLimit0N10ImageTypesAE10Foundation4UUIDVSg_s5Int32VSgSayAA10ItemFieldsOGSgSbSgAxSSayAA0uS0OGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/limit.json new file mode 100644 index 000000000..c393dedbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/userid.json new file mode 100644 index 000000000..8b3a1f2b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromartistsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34GetInstantMixFromArtistsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters":{"role":"symbol","title":"Paths.GetInstantMixFromArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromArtistsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromArtistsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromartistsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitem(id:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitem(id:parameters:).json new file mode 100644 index 000000000..bab005a62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitem(id:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV","text":"GetInstantMixFromItemParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitem(id:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromItem(id:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an instant playlist based on a given item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getInstantMixFromItem(id:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromItemParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getInstantMixFromItem2id10parameters3Get7RequestVyAA04BaseH14DtoQueryResultVGSS_AC0kefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromItem(id:parameters:)":{"role":"symbol","title":"getInstantMixFromItem(id:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromItemParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromItem(id:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitem(id:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters.json new file mode 100644 index 000000000..e8ceb5504 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/asquery.json new file mode 100644 index 000000000..171d80a3b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/enableimages.json new file mode 100644 index 000000000..83be14174 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/enableimagetypes.json new file mode 100644 index 000000000..5d9f9b8ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV16enableImageTypesSayAA0K4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/enableuserdata.json new file mode 100644 index 000000000..8a6321862 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/fields.json new file mode 100644 index 000000000..20f8df3da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV6fieldsSayAA0H6FieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/imagetypelimit.json new file mode 100644 index 000000000..298a456d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json new file mode 100644 index 000000000..8bcc39706 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV6userID5limit6fields12enableImages0N8UserData14imageTypeLimit0N10ImageTypesAE10Foundation4UUIDVSg_s5Int32VSgSayAA0H6FieldsOGSgSbSgAxSSayAA0uS0OGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/limit.json new file mode 100644 index 000000000..0a35cb4f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/userid.json new file mode 100644 index 000000000..19f0b3168 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromitemparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromItemParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters":{"role":"symbol","title":"Paths.GetInstantMixFromItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromItemParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromItemParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromitemparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyid(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyid(parameters:).json new file mode 100644 index 000000000..a0bfc4e4e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyid(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromMusicGenreByID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV","text":"GetInstantMixFromMusicGenreByIDParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyid(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromMusicGenreByID(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an instant playlist based on a given genre."}],"kind":"symbol","metadata":{"role":"symbol","title":"getInstantMixFromMusicGenreByID(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromMusicGenreByID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromMusicGenreByIDParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO31getInstantMixFromMusicGenreByID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0mefghiJ12IDParametersV_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromMusicGenreByID(parameters:)":{"role":"symbol","title":"getInstantMixFromMusicGenreByID(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromMusicGenreByID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromMusicGenreByIDParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given genre."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromMusicGenreByID(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyid(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters.json new file mode 100644 index 000000000..8f4be0773 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/id","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/id":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/id","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/id"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/asquery.json new file mode 100644 index 000000000..80c1777b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/enableimages.json new file mode 100644 index 000000000..d6483911d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/enableimagetypes.json new file mode 100644 index 000000000..e1834b387 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV16enableImageTypesSayAA0M4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/enableuserdata.json new file mode 100644 index 000000000..50845fb13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/fields.json new file mode 100644 index 000000000..5d4e88b76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/id.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/id.json new file mode 100644 index 000000000..8e4552d00 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/id.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/id"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/id","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV2id10Foundation4UUIDVvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/id":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/id","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/id"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/imagetypelimit.json new file mode 100644 index 000000000..d4460727d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json new file mode 100644 index 000000000..4ba8cef6c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"title":"init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV2id6userID5limit6fields12enableImages0Q8UserData14imageTypeLimit0Q10ImageTypesAE10Foundation4UUIDV_APSgs5Int32VSgSayAA10ItemFieldsOGSgSbSgAyTSayAA0xV0OGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/init(id:userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/init(id:userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/limit.json new file mode 100644 index 000000000..82edd21f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/userid.json new file mode 100644 index 000000000..8160f4ed5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyidparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO41GetInstantMixFromMusicGenreByIDParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByIDParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyidparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyname(name:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyname(name:parameters:).json new file mode 100644 index 000000000..dd94dac64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebyname(name:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromMusicGenreByName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV","text":"GetInstantMixFromMusicGenreByNameParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyname(name:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromMusicGenreByName(name:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an instant playlist based on a given genre."}],"kind":"symbol","metadata":{"role":"symbol","title":"getInstantMixFromMusicGenreByName(name:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromMusicGenreByName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromMusicGenreByNameParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO33getInstantMixFromMusicGenreByName4name10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0nefghijK10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromMusicGenreByName(name:parameters:)":{"role":"symbol","title":"getInstantMixFromMusicGenreByName(name:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromMusicGenreByName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromMusicGenreByNameParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given genre."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromMusicGenreByName(name:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebyname(name:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters.json new file mode 100644 index 000000000..f6659fe03 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/enableimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/asquery.json new file mode 100644 index 000000000..e77524009 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/enableimages.json new file mode 100644 index 000000000..e38eae683 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/enableimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/enableimagetypes.json new file mode 100644 index 000000000..326695940 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV16enableImageTypesSayAA0N4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/enableuserdata.json new file mode 100644 index 000000000..595b527c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/fields.json new file mode 100644 index 000000000..f222a53f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/imagetypelimit.json new file mode 100644 index 000000000..3890be1ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json new file mode 100644 index 000000000..9570a28d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV6userID5limit6fields12enableImages0Q8UserData14imageTypeLimit0Q10ImageTypesAE10Foundation4UUIDVSg_s5Int32VSgSayAA10ItemFieldsOGSgSbSgAxSSayAA0xV0OGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/limit.json new file mode 100644 index 000000000..ece88b8a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/userid.json new file mode 100644 index 000000000..7b65a0269 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfrommusicgenrebynameparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO43GetInstantMixFromMusicGenreByNameParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromMusicGenreByNameParameters":{"role":"symbol","title":"Paths.GetInstantMixFromMusicGenreByNameParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromMusicGenreByNameParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromMusicGenreByNameParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfrommusicgenrebynameparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylist(id:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylist(id:parameters:).json new file mode 100644 index 000000000..92d355123 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylist(id:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV","text":"GetInstantMixFromPlaylistParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylist(id:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromPlaylist(id:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an instant playlist based on a given playlist."}],"kind":"symbol","metadata":{"role":"symbol","title":"getInstantMixFromPlaylist(id:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO25getInstantMixFromPlaylist2id10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0kefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromPlaylist(id:parameters:)":{"role":"symbol","title":"getInstantMixFromPlaylist(id:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromPlaylist(id:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylist(id:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters.json new file mode 100644 index 000000000..5f48f2937 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/enableimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/asquery.json new file mode 100644 index 000000000..460d15d60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/enableimages.json new file mode 100644 index 000000000..24a2b2a85 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/enableimagetypes.json new file mode 100644 index 000000000..8cc838a35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV16enableImageTypesSayAA0K4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/enableuserdata.json new file mode 100644 index 000000000..fd52015a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/fields.json new file mode 100644 index 000000000..537015655 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/imagetypelimit.json new file mode 100644 index 000000000..9e426b1c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json new file mode 100644 index 000000000..e4690bd0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV6userID5limit6fields12enableImages0N8UserData14imageTypeLimit0N10ImageTypesAE10Foundation4UUIDVSg_s5Int32VSgSayAA10ItemFieldsOGSgSbSgAxSSayAA0uS0OGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/limit.json new file mode 100644 index 000000000..f17672dc5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/userid.json new file mode 100644 index 000000000..33253ffe0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromplaylistparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetInstantMixFromPlaylistParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromPlaylistParameters":{"role":"symbol","title":"Paths.GetInstantMixFromPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsong(id:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsong(id:parameters:).json new file mode 100644 index 000000000..931d140d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsong(id:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromSong"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV","text":"GetInstantMixFromSongParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsong(id:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromSong(id:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an instant playlist based on a given song."}],"kind":"symbol","metadata":{"role":"symbol","title":"getInstantMixFromSong(id:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromSong"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromSongParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getInstantMixFromSong2id10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0kefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getInstantMixFromSong(id:parameters:)":{"role":"symbol","title":"getInstantMixFromSong(id:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getInstantMixFromSong"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetInstantMixFromSongParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Creates an instant playlist based on a given song."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getInstantMixFromSong(id:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsong(id:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters.json new file mode 100644 index 000000000..be83644c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/asquery.json new file mode 100644 index 000000000..2260f10eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/enableimages.json new file mode 100644 index 000000000..58ae1921c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/enableimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/enableimagetypes.json new file mode 100644 index 000000000..4ebcd9339 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV16enableImageTypesSayAA0K4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/enableuserdata.json new file mode 100644 index 000000000..035e7abd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/fields.json new file mode 100644 index 000000000..a8002a7a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/imagetypelimit.json new file mode 100644 index 000000000..35061efef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json new file mode 100644 index 000000000..1331beb50 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV6userID5limit6fields12enableImages0N8UserData14imageTypeLimit0N10ImageTypesAE10Foundation4UUIDVSg_s5Int32VSgSayAA10ItemFieldsOGSgSbSgAxSSayAA0uS0OGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/init(userID:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/init(userid:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/limit.json new file mode 100644 index 000000000..31ee2edde --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/userid.json new file mode 100644 index 000000000..a4bc6ddfb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getinstantmixfromsongparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetInstantMixFromSongParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters":{"role":"symbol","title":"Paths.GetInstantMixFromSongParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetInstantMixFromSongParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetInstantMixFromSongParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetInstantMixFromSongParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getinstantmixfromsongparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getintros(userid:itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getintros(userid:itemid:).json new file mode 100644 index 000000000..5cc2cf154 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getintros(userid:itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIntros"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getintros(userid:itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIntros(userID:itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets intros to play before the main media item plays."}],"kind":"symbol","metadata":{"role":"symbol","title":"getIntros(userID:itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIntros"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9getIntros6userID04itemG03Get7RequestVyAA22BaseItemDtoQueryResultVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getIntros(userID:itemID:)":{"role":"symbol","title":"getIntros(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getIntros"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets intros to play before the main media item plays."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getIntros(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getintros(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitem(userid:itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitem(userid:itemid:).json new file mode 100644 index 000000000..b5f2656ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitem(userid:itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitem(userid:itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItem(userID:itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an item from a user’s library."}],"kind":"symbol","metadata":{"role":"symbol","title":"getItem(userID:itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO7getItem6userID04itemG03Get7RequestVyAA04BaseE3DtoVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItem(userID:itemID:)":{"role":"symbol","title":"getItem(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets an item from a user’s library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItem(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitem(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemcounts(userid:isfavorite:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemcounts(userid:isfavorite:).json new file mode 100644 index 000000000..6ba455400 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemcounts(userid:isfavorite:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemCounts"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemcounts(userid:isfavorite:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemCounts(userID:isFavorite:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get item counts."}],"kind":"symbol","metadata":{"role":"symbol","title":"getItemCounts(userID:isFavorite:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemCounts"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getItemCounts6userID10isFavorite3Get7RequestVyAA0eF0VG10Foundation4UUIDVSg_SbSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemCounts":{"role":"symbol","title":"ItemCounts","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemCounts"}],"abstract":[{"type":"text","text":"Class LibrarySummary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemCounts","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemCounts"}],"url":"\/documentation\/jellyfinapi\/itemcounts"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemCounts(userID:isFavorite:)":{"role":"symbol","title":"getItemCounts(userID:isFavorite:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemCounts"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get item counts."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemCounts(userID:isFavorite:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemcounts(userid:isfavorite:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage(itemid:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage(itemid:imagetype:parameters:).json new file mode 100644 index 000000000..207bac5c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage(itemid:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV","text":"GetItemImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage(itemid:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImage(itemID:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the item’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"getItemImage(itemID:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12getItemImage6itemID9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC0leF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemImage(itemID:imageType:parameters:)":{"role":"symbol","title":"getItemImage(itemID:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImage(itemID:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage(itemid:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:).json new file mode 100644 index 000000000..7de03585d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImage2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV","text":"GetItemImage2Parameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the item’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"getItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImage2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemImage2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getItemImage26itemID9imageType8maxWidth0K6Height3tag6format13percentPlayed13unplayedCount0I5Index10parameters3Get7RequestVy10Foundation4DataVGSS_SSS2iS3SS2iAC0veF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)":{"role":"symbol","title":"getItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImage2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemImage2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters.json new file mode 100644 index 000000000..a6f978af4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"role":"symbol","title":"Paths.GetItemImage2Parameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/width"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/fillwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/asquery.json new file mode 100644 index 000000000..45b13e2f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/backgroundcolor.json new file mode 100644 index 000000000..a866a05e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/blur.json new file mode 100644 index 000000000..b385a1d53 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/fillheight.json new file mode 100644 index 000000000..b56a7d1be --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/fillheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/fillwidth.json new file mode 100644 index 000000000..ea446e2a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/foregroundlayer.json new file mode 100644 index 000000000..0c12efdab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/height.json new file mode 100644 index 000000000..41069d7cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..ab13b6f2c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV5width6height7quality9fillWidth0K6Height16isCropWhitespace0N18AddPlayedIndicator4blur15backgroundColor15foregroundLayerAEs5Int32VSg_A4RSbSgAsRSSSgATtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/isaddplayedindicator.json new file mode 100644 index 000000000..5dc08413c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/iscropwhitespace.json new file mode 100644 index 000000000..06341bdca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/quality.json new file mode 100644 index 000000000..28a641023 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/width.json new file mode 100644 index 000000000..1ab13905f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimage2parameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetItemImage2ParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters":{"role":"symbol","title":"Paths.GetItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImage2Parameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImage2Parameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimage2parameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindex(itemid:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindex(itemid:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..ae64eeba2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindex(itemid:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV","text":"GetItemImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindex(itemid:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImageByIndex(itemID:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the item’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"getItemImageByIndex(itemID:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19getItemImageByIndex6itemID9imageType0kH010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC0nefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemImageByIndex(itemID:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getItemImageByIndex(itemID:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImageByIndex(itemID:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindex(itemid:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters.json new file mode 100644 index 000000000..24b58fe86 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"role":"symbol","title":"Paths.GetItemImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/maxwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/asquery.json new file mode 100644 index 000000000..f71931b92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..3eec5c005 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/blur.json new file mode 100644 index 000000000..b47251542 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..53da84efa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..69a127bdc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/fillwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..cc63d318f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..4c41f0141 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..167084242 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetItemImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/height.json new file mode 100644 index 000000000..61594830c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..346076fca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV8maxWidth0J6Height5width6height7quality04fillK00pL03tag16isCropWhitespace6format0R18AddPlayedIndicator07percentW013unplayedCount4blur15backgroundColor15foregroundLayerAEs5Int32VSg_A6XSSSgSbSgAA0F6FormatOSgAZSdSgA2x2Ytcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..a40a3d512 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/isaddplayedindicator"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..b1988041c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..26486c47d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..76578e1b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..9a259bf38 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/quality.json new file mode 100644 index 000000000..b09ee637a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/tag.json new file mode 100644 index 000000000..84ee3a6e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/tag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..092e1b4f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/width.json new file mode 100644 index 000000000..97e1ee053 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetItemImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters":{"role":"symbol","title":"Paths.GetItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimagebyindexparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageinfos(itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageinfos(itemid:).json new file mode 100644 index 000000000..20f75579f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageinfos(itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImageInfos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","preciseIdentifier":"s:11JellyfinAPI9ImageInfoV","text":"ImageInfo"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageinfos(itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImageInfos(itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get item image infos."}],"kind":"symbol","metadata":{"role":"symbol","title":"getItemImageInfos(itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImageInfos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageInfo","preciseIdentifier":"s:11JellyfinAPI9ImageInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17getItemImageInfos6itemID3Get7RequestVySayAA0F4InfoVGGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemImageInfos(itemID:)":{"role":"symbol","title":"getItemImageInfos(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemImageInfos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageInfo","preciseIdentifier":"s:11JellyfinAPI9ImageInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get item image infos."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemImageInfos(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageinfos(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageInfo":{"role":"symbol","title":"ImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageInfo"}],"abstract":[{"type":"text","text":"Class ImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageInfo"}],"url":"\/documentation\/jellyfinapi\/imageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters.json new file mode 100644 index 000000000..af01763c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"role":"symbol","title":"Paths.GetItemImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetItemImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/asquery.json new file mode 100644 index 000000000..5b3f102cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/backgroundcolor.json new file mode 100644 index 000000000..0ef774121 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/blur.json new file mode 100644 index 000000000..fcba8d318 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/blur"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/fillheight.json new file mode 100644 index 000000000..fbda09d21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/fillwidth.json new file mode 100644 index 000000000..22642b00a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/fillwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/foregroundlayer.json new file mode 100644 index 000000000..8fdf90663 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/format-swift.property.json new file mode 100644 index 000000000..66c607df2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetItemImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..504cc4b48 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetItemImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetItemImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/height.json new file mode 100644 index 000000000..b9d09c23f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/imageindex.json new file mode 100644 index 000000000..837927b05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/imageindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..472944e59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV8maxWidth0H6Height5width6height7quality04fillI00nJ03tag16isCropWhitespace6format0P18AddPlayedIndicator07percentU013unplayedCount4blur15backgroundColor15foregroundLayer10imageIndexAEs5Int32VSg_A6YSSSgSbSgAA0F6FormatOSgA_SdSgA2y2zYtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetItemImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetItemImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..a4c97ff09 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..2a8587a52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/maxheight.json new file mode 100644 index 000000000..a216c8a66 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/maxwidth.json new file mode 100644 index 000000000..00dcaa487 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/percentplayed.json new file mode 100644 index 000000000..3fc14aa9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/quality.json new file mode 100644 index 000000000..bdc303ac1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/tag.json new file mode 100644 index 000000000..2c409639b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/unplayedcount.json new file mode 100644 index 000000000..bb5b9f42b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/width.json new file mode 100644 index 000000000..64fa9c656 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetItemImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemImageParameters":{"role":"symbol","title":"Paths.GetItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitems(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitems(parameters:).json new file mode 100644 index 000000000..ca8305f0e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitems(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO18GetItemsParametersV","text":"GetItemsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitems(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItems(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets items based on a query."}],"kind":"symbol","metadata":{"role":"symbol","title":"getItems(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO18GetItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO8getItems10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItems(parameters:)":{"role":"symbol","title":"getItems(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO18GetItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets items based on a query."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItems(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitems(parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuserid(userid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuserid(userid:parameters:).json new file mode 100644 index 000000000..4377f272a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuserid(userid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemsByUserID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV","text":"GetItemsByUserIDParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuserid(userid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemsByUserID(userID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets items based on a query."}],"kind":"symbol","metadata":{"role":"symbol","title":"getItemsByUserID(userID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemsByUserID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemsByUserIDParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16getItemsByUserID04userH010parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0kefG12IDParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getItemsByUserID(userID:parameters:)":{"role":"symbol","title":"getItemsByUserID(userID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getItemsByUserID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetItemsByUserIDParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets items based on a query."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getItemsByUserID(userID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuserid(userid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters.json new file mode 100644 index 000000000..005f65ae8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"role":"symbol","title":"Paths.GetItemsByUserIDParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/init(maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/adjacentTo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albumArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albumIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albums","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/artistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/artists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/contributingArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeItemIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeLocationTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/filters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/genreIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasImdbID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasOfficialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasOverview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasParentalRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasSpecialFeature","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasSubtitles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasThemeSong","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasThemeVideo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTmdbID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTrailer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTvdbID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/ids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/imageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isCollapseBoxSetItems","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isHd","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isIs3D","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isIs4K","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isLocked","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isMissing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isPlaceHolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isRecursive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isUnaired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/locationTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxOfficialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxPremiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/mediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minCommunityRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minCriticRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minDateLastSaved","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minDateLastSavedForUser","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minOfficialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minPremiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameLessThan","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameStartsWith","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameStartsWithOrGreater","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/officialRatings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/person","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/personIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/personTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/seriesStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/studioIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/studios","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/tags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/videoTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/years"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isUnaired":{"role":"symbol","title":"isUnaired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isUnaired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isunaired"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/seriesStatus":{"role":"symbol","title":"seriesStatus","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/seriesStatus","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/albumArtistIDs":{"role":"symbol","title":"albumArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albumArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/albumartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/excludeItemIDs":{"role":"symbol","title":"excludeItemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeItemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludeitemids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/studioIDs":{"role":"symbol","title":"studioIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/studioIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/studioids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/excludeLocationTypes":{"role":"symbol","title":"excludeLocationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeLocationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludelocationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isIs3D":{"role":"symbol","title":"isIs3D","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isIs3D","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isis3d"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasSpecialFeature":{"role":"symbol","title":"hasSpecialFeature","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasSpecialFeature","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasspecialfeature"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minCriticRating":{"role":"symbol","title":"minCriticRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minCriticRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mincriticrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/officialratings"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/years"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/init(maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)":{"role":"symbol","title":"init(maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/init(maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/init(maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriticrating-8ez5u"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasOverview":{"role":"symbol","title":"hasOverview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasOverview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasoverview"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minDateLastSavedForUser":{"role":"symbol","title":"minDateLastSavedForUser","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minDateLastSavedForUser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mindatelastsavedforuser"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minWidth":{"role":"symbol","title":"minWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasTmdbID":{"role":"symbol","title":"hasTmdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTmdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hastmdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasTvdbID":{"role":"symbol","title":"hasTvdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTvdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hastvdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/maxOfficialRating":{"role":"symbol","title":"maxOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minDateLastSaved":{"role":"symbol","title":"minDateLastSaved","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minDateLastSaved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mindatelastsaved"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minCommunityRating":{"role":"symbol","title":"minCommunityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minCommunityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mincommunityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/person":{"role":"symbol","title":"person","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/person"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/contributingArtistIDs":{"role":"symbol","title":"contributingArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/contributingArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/contributingartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/maxPremiereDate":{"role":"symbol","title":"maxPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minPremiereDate":{"role":"symbol","title":"minPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isPlaceHolder":{"role":"symbol","title":"isPlaceHolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isPlaceHolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isplaceholder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/albums":{"role":"symbol","title":"albums","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albums","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/albums"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/videoTypes":{"role":"symbol","title":"videoTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/videoTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/videotypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasSubtitles":{"role":"symbol","title":"hasSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hassubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minOfficialRating":{"role":"symbol","title":"minOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isIs4K":{"role":"symbol","title":"isIs4K","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isIs4K","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isis4k"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/artistIDs":{"role":"symbol","title":"artistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/artistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/artistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minHeight":{"role":"symbol","title":"minHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/locationTypes":{"role":"symbol","title":"locationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/locationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/locationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isHd":{"role":"symbol","title":"isHd","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isHd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/imageTypes":{"role":"symbol","title":"imageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/imageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/imagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasImdbID":{"role":"symbol","title":"hasImdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasImdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasimdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isLocked":{"role":"symbol","title":"isLocked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isLocked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/islocked"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/adjacentTo":{"role":"symbol","title":"adjacentTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/adjacentTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/adjacentto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/albumIDs":{"role":"symbol","title":"albumIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albumIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/albumids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasTrailer":{"role":"symbol","title":"hasTrailer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTrailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hastrailer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasOfficialRating":{"role":"symbol","title":"hasOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isCollapseBoxSetItems":{"role":"symbol","title":"isCollapseBoxSetItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isCollapseBoxSetItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/iscollapseboxsetitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isMissing":{"role":"symbol","title":"isMissing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isMissing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ismissing"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasParentalRating":{"role":"symbol","title":"hasParentalRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasParentalRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasparentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasThemeSong":{"role":"symbol","title":"hasThemeSong","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasThemeSong","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasthemesong"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/personIDs":{"role":"symbol","title":"personIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/personIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/personids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isRecursive":{"role":"symbol","title":"isRecursive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isRecursive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isrecursive"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasThemeVideo":{"role":"symbol","title":"hasThemeVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasThemeVideo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasthemevideo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isPlayed":{"role":"symbol","title":"isPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/adjacentto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/adjacentto.json new file mode 100644 index 000000000..f015cfa2c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/adjacentto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/adjacentto"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/adjacentTo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"adjacentTo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV10adjacentToSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/adjacentTo":{"role":"symbol","title":"adjacentTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/adjacentTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/adjacentto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/albumartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/albumartistids.json new file mode 100644 index 000000000..7edbcea6e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/albumartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/albumartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albumArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"albumArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV14albumArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/albumArtistIDs":{"role":"symbol","title":"albumArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albumArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/albumartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/albumids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/albumids.json new file mode 100644 index 000000000..e05010ba8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/albumids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/albumids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albumIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"albumIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV8albumIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/albumIDs":{"role":"symbol","title":"albumIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albumIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/albumids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/albums.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/albums.json new file mode 100644 index 000000000..059ab7841 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/albums.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/albums"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albums","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"albums","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV6albumsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/albums":{"role":"symbol","title":"albums","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/albums","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/albums"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/artistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/artistids.json new file mode 100644 index 000000000..c74332572 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/artistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/artistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/artistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"artistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9artistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/artistIDs":{"role":"symbol","title":"artistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/artistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/artistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/artists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/artists.json new file mode 100644 index 000000000..046188ee9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/artists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/artists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/artists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"artists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV7artistsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/asquery.json new file mode 100644 index 000000000..1913307d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/contributingartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/contributingartistids.json new file mode 100644 index 000000000..24d06c684 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/contributingartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/contributingartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/contributingArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"contributingArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV21contributingArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/contributingArtistIDs":{"role":"symbol","title":"contributingArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/contributingArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/contributingartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enableimages.json new file mode 100644 index 000000000..462092fe5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enableimagetypes.json new file mode 100644 index 000000000..68b3ea7b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV16enableImageTypesSayAA0J4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..7cffcd84b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enableuserdata.json new file mode 100644 index 000000000..507939b45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV06enableG4DataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludeartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludeartistids.json new file mode 100644 index 000000000..6f71dc006 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludeartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludeartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV16excludeArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludeitemids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludeitemids.json new file mode 100644 index 000000000..c866b5a67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludeitemids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludeitemids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeItemIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeItemIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV14excludeItemIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/excludeItemIDs":{"role":"symbol","title":"excludeItemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeItemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludeitemids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludeitemtypes.json new file mode 100644 index 000000000..4822054c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV16excludeItemTypesSayAA04BaseJ4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludeitemtypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludelocationtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludelocationtypes.json new file mode 100644 index 000000000..7671ae0c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/excludelocationtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludelocationtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeLocationTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"title":"excludeLocationTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV20excludeLocationTypesSayAA0J4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/excludeLocationTypes":{"role":"symbol","title":"excludeLocationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/excludeLocationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/excludelocationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/fields.json new file mode 100644 index 000000000..4b18388bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/filters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/filters.json new file mode 100644 index 000000000..0bae10d1c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/filters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/filters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/filters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"title":"filters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV7filtersSayAA10ItemFilterOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/genreids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/genreids.json new file mode 100644 index 000000000..5ef8cd613 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/genreids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/genreids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/genreIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"genreIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV8genreIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/genres.json new file mode 100644 index 000000000..180c31502 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"genres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV6genresSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasimdbid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasimdbid.json new file mode 100644 index 000000000..69d2ed498 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasimdbid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasimdbid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasImdbID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasImdbID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9hasImdbIDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasImdbID":{"role":"symbol","title":"hasImdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasImdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasimdbid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasofficialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasofficialrating.json new file mode 100644 index 000000000..d46577906 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasofficialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasofficialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasOfficialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasOfficialRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV17hasOfficialRatingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasOfficialRating":{"role":"symbol","title":"hasOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasoverview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasoverview.json new file mode 100644 index 000000000..b56686383 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasoverview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasoverview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasOverview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasOverview","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV11hasOverviewSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasOverview":{"role":"symbol","title":"hasOverview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasOverview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasoverview"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasparentalrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasparentalrating.json new file mode 100644 index 000000000..78545d6fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasparentalrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasparentalrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasParentalRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasParentalRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV17hasParentalRatingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasParentalRating":{"role":"symbol","title":"hasParentalRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasParentalRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasparentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasspecialfeature.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasspecialfeature.json new file mode 100644 index 000000000..c6d0a3de1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasspecialfeature.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasspecialfeature"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasSpecialFeature","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasSpecialFeature","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV17hasSpecialFeatureSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasSpecialFeature":{"role":"symbol","title":"hasSpecialFeature","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasSpecialFeature","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasspecialfeature"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hassubtitles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hassubtitles.json new file mode 100644 index 000000000..9612fc848 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hassubtitles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hassubtitles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasSubtitles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasSubtitles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV12hasSubtitlesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasSubtitles":{"role":"symbol","title":"hasSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hassubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasthemesong.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasthemesong.json new file mode 100644 index 000000000..fcc051e78 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasthemesong.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasthemesong"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasThemeSong","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasThemeSong","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV12hasThemeSongSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasThemeSong":{"role":"symbol","title":"hasThemeSong","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasThemeSong","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasthemesong"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasthemevideo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasthemevideo.json new file mode 100644 index 000000000..aaabadaa6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hasthemevideo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasthemevideo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasThemeVideo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasThemeVideo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV13hasThemeVideoSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasThemeVideo":{"role":"symbol","title":"hasThemeVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasThemeVideo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hasthemevideo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hastmdbid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hastmdbid.json new file mode 100644 index 000000000..1d2a7bf23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hastmdbid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hastmdbid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTmdbID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasTmdbID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9hasTmdbIDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasTmdbID":{"role":"symbol","title":"hasTmdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTmdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hastmdbid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hastrailer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hastrailer.json new file mode 100644 index 000000000..aaa879acb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hastrailer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hastrailer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTrailer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasTrailer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV10hasTrailerSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasTrailer":{"role":"symbol","title":"hasTrailer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTrailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hastrailer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hastvdbid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hastvdbid.json new file mode 100644 index 000000000..e3bb7a33c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/hastvdbid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hastvdbid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTvdbID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasTvdbID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9hasTvdbIDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/hasTvdbID":{"role":"symbol","title":"hasTvdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/hasTvdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/hastvdbid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ids.json new file mode 100644 index 000000000..8034f4675 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/ids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"ids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV3idsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/imagetypelimit.json new file mode 100644 index 000000000..1549b9676 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/imagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/imagetypes.json new file mode 100644 index 000000000..b2a667052 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/imagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/imagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/imageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"imageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV10imageTypesSayAA9ImageTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/imageTypes":{"role":"symbol","title":"imageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/imageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/imagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/includeitemtypes.json new file mode 100644 index 000000000..89e0c8e5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV16includeItemTypesSayAA04BaseJ4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/init(maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriticrating-8ez5u.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/init(maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriticrating-8ez5u.json new file mode 100644 index 000000000..f5a4f6ffd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/init(maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriticrating-8ez5u.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO","text":"VideoType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO","text":"SeriesStatus"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/init(maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriticrating-8ez5u"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/init(maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV17maxOfficialRating12hasThemeSong0lM5Video0L9Subtitles0L14SpecialFeature0L7Trailer10adjacentTo17parentIndexNumber0l8ParentalK04isHd0Z4Is4K13locationTypes20excludeLocationTypes0Z7Missing0Z7Unaired012minCommunityK009minCriticK015minPremiereDate16minDateLastSaved019minDateLastSavedForG00I12PremiereDate0L8Overview0L6ImdbID0L6TmdbID0L6TvdbID0Z5Movie0Z6Series0Z4News0Z4Kids0Z6Sports14excludeItemIDs05startW05limit0Z9Recursive10searchTerm9sortOrder0V2ID6fields16excludeItemTypes16includeItemTypes7filters0Z8Favorite10mediaTypes10imageTypes04sortF00Z6Played6genres15officialRatings4tags5years06enableG4Data14imageTypeLimit16enableImageTypes6person9personIDs11personTypes7studios7artists16excludeArtistIDs9artistIDs14albumArtistIDs21contributingArtistIDs6albums8albumIDs3ids10videoTypes03minjK00Z6Locked0Z11PlaceHolder0ljK00z14CollapseBoxSetE08minWidth9minHeight0I5Width0I6Height0Z4Is3D12seriesStatus23nameStartsWithOrGreater14nameStartsWith12nameLessThan9studioIDs8genreIDs22enableTotalRecordCount12enableImagesAESSSg_SbSgA63_A63_A63_A63_A62_s5Int32VSgA63_A63_A63_SayAA12LocationTypeOGSgA70_A63_A63_SdSgA71_10Foundation4DateVSgA75_A75_A75_A63_A63_A63_A63_A63_A63_A63_A63_A63_SayA72_4UUIDVGSgA66_A66_A63_A62_SayAA9SortOrderOGSgA77_SgSayAA10ItemFieldsOGSgSayAA12BaseItemKindOGSgA92_SayAA10ItemFilterOGSgA63_SaySSGSgSayAA9ImageTypeOGSgA98_A63_A98_A98_A98_SayA65_GSgA63_A66_A102_A62_A79_A98_A98_A98_A79_A79_A79_A79_A98_A79_A79_SayAA0O4TypeOGSgA62_A63_A63_A63_A63_A66_A66_A66_A66_A63_SayAA12SeriesStatusOGSgA62_A62_A62_A79_A79_A63_A63_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/init(maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)":{"role":"symbol","title":"init(maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/init(maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/init(maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriticrating-8ez5u"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/iscollapseboxsetitems.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/iscollapseboxsetitems.json new file mode 100644 index 000000000..5da0e9089 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/iscollapseboxsetitems.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/iscollapseboxsetitems"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isCollapseBoxSetItems","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCollapseBoxSetItems","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV016isCollapseBoxSetE0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isCollapseBoxSetItems":{"role":"symbol","title":"isCollapseBoxSetItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isCollapseBoxSetItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/iscollapseboxsetitems"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isfavorite.json new file mode 100644 index 000000000..b73fec61e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ishd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ishd.json new file mode 100644 index 000000000..fdb5846e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ishd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ishd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isHd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isHd","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV4isHdSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isHd":{"role":"symbol","title":"isHd","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isHd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isis3d.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isis3d.json new file mode 100644 index 000000000..a1dbffc88 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isis3d.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isis3d"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isIs3D","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIs3D","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV6isIs3DSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isIs3D":{"role":"symbol","title":"isIs3D","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isIs3D","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isis3d"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isis4k.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isis4k.json new file mode 100644 index 000000000..36944174f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isis4k.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isis4k"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isIs4K","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIs4K","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV6isIs4KSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isIs4K":{"role":"symbol","title":"isIs4K","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isIs4K","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isis4k"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/iskids.json new file mode 100644 index 000000000..867112a23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/islocked.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/islocked.json new file mode 100644 index 000000000..3e003863a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/islocked.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/islocked"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isLocked","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isLocked","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV8isLockedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isLocked":{"role":"symbol","title":"isLocked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isLocked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/islocked"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ismissing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ismissing.json new file mode 100644 index 000000000..409b560b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ismissing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ismissing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isMissing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMissing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9isMissingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isMissing":{"role":"symbol","title":"isMissing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isMissing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ismissing"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ismovie.json new file mode 100644 index 000000000..cda323cb2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isnews.json new file mode 100644 index 000000000..5451fae90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isplaceholder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isplaceholder.json new file mode 100644 index 000000000..6e1b736e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isplaceholder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isplaceholder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isPlaceHolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlaceHolder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV13isPlaceHolderSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isPlaceHolder":{"role":"symbol","title":"isPlaceHolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isPlaceHolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isplaceholder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isplayed.json new file mode 100644 index 000000000..91706e3d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV8isPlayedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isPlayed":{"role":"symbol","title":"isPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isrecursive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isrecursive.json new file mode 100644 index 000000000..ba4cf80f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isrecursive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isrecursive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isRecursive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRecursive","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV11isRecursiveSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isRecursive":{"role":"symbol","title":"isRecursive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isRecursive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isrecursive"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isseries.json new file mode 100644 index 000000000..ae2f392be --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/issports.json new file mode 100644 index 000000000..74bbda365 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isunaired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isunaired.json new file mode 100644 index 000000000..0a234d1bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/isunaired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isunaired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isUnaired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isUnaired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9isUnairedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/isUnaired":{"role":"symbol","title":"isUnaired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/isUnaired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/isunaired"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/limit.json new file mode 100644 index 000000000..0c7847e24 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/locationtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/locationtypes.json new file mode 100644 index 000000000..bbb50d5b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/locationtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/locationtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/locationTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"title":"locationTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV13locationTypesSayAA12LocationTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/locationTypes":{"role":"symbol","title":"locationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/locationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/locationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxheight.json new file mode 100644 index 000000000..f6f66a7cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxofficialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxofficialrating.json new file mode 100644 index 000000000..6478d12bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxofficialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxofficialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxOfficialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"maxOfficialRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV17maxOfficialRatingSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/maxOfficialRating":{"role":"symbol","title":"maxOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxpremieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxpremieredate.json new file mode 100644 index 000000000..08bfc91a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxpremieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxpremieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxPremiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"maxPremiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV15maxPremiereDate10Foundation0K0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/maxPremiereDate":{"role":"symbol","title":"maxPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxwidth.json new file mode 100644 index 000000000..4a1e92b61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mediatypes.json new file mode 100644 index 000000000..b235f4664 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/mediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV10mediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mincommunityrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mincommunityrating.json new file mode 100644 index 000000000..a61e2289e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mincommunityrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mincommunityrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minCommunityRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"minCommunityRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV18minCommunityRatingSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minCommunityRating":{"role":"symbol","title":"minCommunityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minCommunityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mincommunityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mincriticrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mincriticrating.json new file mode 100644 index 000000000..377aee317 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mincriticrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mincriticrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minCriticRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"minCriticRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV15minCriticRatingSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minCriticRating":{"role":"symbol","title":"minCriticRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minCriticRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mincriticrating"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mindatelastsaved.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mindatelastsaved.json new file mode 100644 index 000000000..82f146519 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mindatelastsaved.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mindatelastsaved"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minDateLastSaved","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minDateLastSaved","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV16minDateLastSaved10Foundation0J0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minDateLastSaved":{"role":"symbol","title":"minDateLastSaved","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minDateLastSaved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mindatelastsaved"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mindatelastsavedforuser.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mindatelastsavedforuser.json new file mode 100644 index 000000000..d32598871 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/mindatelastsavedforuser.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mindatelastsavedforuser"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minDateLastSavedForUser","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minDateLastSavedForUser","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV019minDateLastSavedForG010Foundation0J0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minDateLastSavedForUser":{"role":"symbol","title":"minDateLastSavedForUser","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minDateLastSavedForUser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/mindatelastsavedforuser"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minheight.json new file mode 100644 index 000000000..f3213df5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9minHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minHeight":{"role":"symbol","title":"minHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minofficialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minofficialrating.json new file mode 100644 index 000000000..738f0bce3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minofficialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minofficialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minOfficialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"minOfficialRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV17minOfficialRatingSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minOfficialRating":{"role":"symbol","title":"minOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minofficialrating"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minpremieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minpremieredate.json new file mode 100644 index 000000000..8a9a65449 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minpremieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minpremieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minPremiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minPremiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV15minPremiereDate10Foundation0K0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minPremiereDate":{"role":"symbol","title":"minPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minwidth.json new file mode 100644 index 000000000..8b1e0c712 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/minwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV8minWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/minWidth":{"role":"symbol","title":"minWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/minWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/minwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/namelessthan.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/namelessthan.json new file mode 100644 index 000000000..0b12cff13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/namelessthan.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/namelessthan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameLessThan","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameLessThan","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV12nameLessThanSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/namelessthan"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/namestartswith.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/namestartswith.json new file mode 100644 index 000000000..2a54db583 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/namestartswith.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/namestartswith"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameStartsWith","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWith","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV14nameStartsWithSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/namestartswithorgreater.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/namestartswithorgreater.json new file mode 100644 index 000000000..e6981361d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/namestartswithorgreater.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/namestartswithorgreater"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameStartsWithOrGreater","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWithOrGreater","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV23nameStartsWithOrGreaterSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/officialratings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/officialratings.json new file mode 100644 index 000000000..98405e4a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/officialratings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/officialratings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/officialRatings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"officialRatings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV15officialRatingsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/officialratings"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/parentid.json new file mode 100644 index 000000000..4a0bb0d04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/parentid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/parentindexnumber.json new file mode 100644 index 000000000..6b800f9dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/person.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/person.json new file mode 100644 index 000000000..d39e98183 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/person.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/person"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/person","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"person","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV6personSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/person":{"role":"symbol","title":"person","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/person"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/personids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/personids.json new file mode 100644 index 000000000..d6ea0ce8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/personids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/personids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/personIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"personIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9personIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/personIDs":{"role":"symbol","title":"personIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/personIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/personids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/persontypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/persontypes.json new file mode 100644 index 000000000..e71b89f8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/persontypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/persontypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/personTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"personTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV11personTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/searchterm.json new file mode 100644 index 000000000..4079e5fb6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV10searchTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/seriesstatus.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/seriesstatus.json new file mode 100644 index 000000000..ea2c460f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/seriesstatus.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO","text":"SeriesStatus"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/seriesstatus"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/seriesStatus","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?"}],"title":"seriesStatus","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV12seriesStatusSayAA06SeriesJ0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/seriesStatus":{"role":"symbol","title":"seriesStatus","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/seriesStatus","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/sortby.json new file mode 100644 index 000000000..5dc0ba85a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV04sortF0SaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/sortorder.json new file mode 100644 index 000000000..7545b7a60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9sortOrderSayAA04SortJ0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/sortorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/startindex.json new file mode 100644 index 000000000..61f035e39 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/studioids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/studioids.json new file mode 100644 index 000000000..6f6137553 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/studioids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/studioids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/studioIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"studioIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV9studioIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/studioIDs":{"role":"symbol","title":"studioIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/studioIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/studioids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/studios.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/studios.json new file mode 100644 index 000000000..995ae3ab9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/studios.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/studios"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/studios","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"studios","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV7studiosSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/tags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/tags.json new file mode 100644 index 000000000..d03ad80fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/tags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/tags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/tags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"tags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV4tagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/tags"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/videotypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/videotypes.json new file mode 100644 index 000000000..179957bf5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/videotypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO","text":"VideoType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/videotypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/videoTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?"}],"title":"videoTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV10videoTypesSayAA9VideoTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/videoTypes":{"role":"symbol","title":"videoTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/videoTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/videotypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/years.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/years.json new file mode 100644 index 000000000..db0bf2dda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsbyuseridparameters/years.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/years"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/years","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"title":"years","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetItemsByUserIDParametersV5yearsSays5Int32VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters":{"role":"symbol","title":"Paths.GetItemsByUserIDParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsByUserIDParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsByUserIDParameters/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsByUserIDParameters\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsbyuseridparameters\/years"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters.json new file mode 100644 index 000000000..ed45d748e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"role":"symbol","title":"Paths.GetItemsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/adjacentTo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albumArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albumIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albums","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/artistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/artists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/contributingArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeItemIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeLocationTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/filters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/genreIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasImdbID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasOfficialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasOverview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasParentalRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasSpecialFeature","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasSubtitles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasThemeSong","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasThemeVideo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTmdbID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTrailer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTvdbID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/ids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/imageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isCollapseBoxSetItems","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isHd","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isIs3D","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isIs4K","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isLocked","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isMissing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isPlaceHolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isRecursive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isUnaired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/locationTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxOfficialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxPremiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/mediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minCommunityRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minCriticRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minDateLastSaved","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minDateLastSavedForUser","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minOfficialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minPremiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameLessThan","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameStartsWith","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameStartsWithOrGreater","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/officialRatings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/person","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/personIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/personTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/seriesStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/studioIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/studios","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/tags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/userID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/videoTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/years"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minDateLastSaved":{"role":"symbol","title":"minDateLastSaved","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minDateLastSaved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mindatelastsaved"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isIs3D":{"role":"symbol","title":"isIs3D","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isIs3D","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isis3d"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minCommunityRating":{"role":"symbol","title":"minCommunityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minCommunityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mincommunityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isHd":{"role":"symbol","title":"isHd","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isHd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minCriticRating":{"role":"symbol","title":"minCriticRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minCriticRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mincriticrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/locationTypes":{"role":"symbol","title":"locationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/locationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/locationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasTvdbID":{"role":"symbol","title":"hasTvdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTvdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hastvdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/contributingArtistIDs":{"role":"symbol","title":"contributingArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/contributingArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/contributingartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/years"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/officialratings"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/albums":{"role":"symbol","title":"albums","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albums","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/albums"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minWidth":{"role":"symbol","title":"minWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isPlaceHolder":{"role":"symbol","title":"isPlaceHolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isPlaceHolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isplaceholder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isIs4K":{"role":"symbol","title":"isIs4K","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isIs4K","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isis4k"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/adjacentTo":{"role":"symbol","title":"adjacentTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/adjacentTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/adjacentto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minHeight":{"role":"symbol","title":"minHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isMissing":{"role":"symbol","title":"isMissing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isMissing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ismissing"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasThemeVideo":{"role":"symbol","title":"hasThemeVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasThemeVideo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasthemevideo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasTmdbID":{"role":"symbol","title":"hasTmdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTmdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hastmdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/imageTypes":{"role":"symbol","title":"imageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/imageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/imagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/person":{"role":"symbol","title":"person","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/person"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isUnaired":{"role":"symbol","title":"isUnaired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isUnaired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isunaired"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minDateLastSavedForUser":{"role":"symbol","title":"minDateLastSavedForUser","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minDateLastSavedForUser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mindatelastsavedforuser"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/personIDs":{"role":"symbol","title":"personIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/personIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/personids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasThemeSong":{"role":"symbol","title":"hasThemeSong","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasThemeSong","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasthemesong"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minOfficialRating":{"role":"symbol","title":"minOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)":{"role":"symbol","title":"init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-k4h9"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/studioIDs":{"role":"symbol","title":"studioIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/studioIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/studioids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/maxPremiereDate":{"role":"symbol","title":"maxPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasOverview":{"role":"symbol","title":"hasOverview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasOverview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasoverview"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isCollapseBoxSetItems":{"role":"symbol","title":"isCollapseBoxSetItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isCollapseBoxSetItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/iscollapseboxsetitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/excludeLocationTypes":{"role":"symbol","title":"excludeLocationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeLocationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludelocationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/videoTypes":{"role":"symbol","title":"videoTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/videoTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/videotypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isPlayed":{"role":"symbol","title":"isPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isRecursive":{"role":"symbol","title":"isRecursive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isRecursive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isrecursive"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasImdbID":{"role":"symbol","title":"hasImdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasImdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasimdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasSubtitles":{"role":"symbol","title":"hasSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hassubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isLocked":{"role":"symbol","title":"isLocked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isLocked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/islocked"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasOfficialRating":{"role":"symbol","title":"hasOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/albumIDs":{"role":"symbol","title":"albumIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albumIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/albumids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasTrailer":{"role":"symbol","title":"hasTrailer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTrailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hastrailer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/artistIDs":{"role":"symbol","title":"artistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/artistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/artistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasParentalRating":{"role":"symbol","title":"hasParentalRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasParentalRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasparentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/albumArtistIDs":{"role":"symbol","title":"albumArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albumArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/albumartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/maxOfficialRating":{"role":"symbol","title":"maxOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasSpecialFeature":{"role":"symbol","title":"hasSpecialFeature","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasSpecialFeature","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasspecialfeature"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/seriesStatus":{"role":"symbol","title":"seriesStatus","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/seriesStatus","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/excludeItemIDs":{"role":"symbol","title":"excludeItemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeItemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludeitemids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minPremiereDate":{"role":"symbol","title":"minPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enabletotalrecordcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/adjacentto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/adjacentto.json new file mode 100644 index 000000000..d2b6cd246 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/adjacentto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/adjacentto"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/adjacentTo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"adjacentTo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV10adjacentToSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/adjacentTo":{"role":"symbol","title":"adjacentTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/adjacentTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/adjacentto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/albumartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/albumartistids.json new file mode 100644 index 000000000..2fe35b007 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/albumartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/albumartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albumArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"albumArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV14albumArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/albumArtistIDs":{"role":"symbol","title":"albumArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albumArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/albumartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/albumids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/albumids.json new file mode 100644 index 000000000..129a7289e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/albumids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/albumids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albumIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"albumIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV8albumIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/albumIDs":{"role":"symbol","title":"albumIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albumIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/albumids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/albums.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/albums.json new file mode 100644 index 000000000..b11d51197 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/albums.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/albums"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albums","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"albums","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6albumsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/albums":{"role":"symbol","title":"albums","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/albums","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/albums"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/artistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/artistids.json new file mode 100644 index 000000000..865f81993 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/artistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/artistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/artistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"artistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9artistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/artistIDs":{"role":"symbol","title":"artistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/artistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/artistids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/artists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/artists.json new file mode 100644 index 000000000..e7772fd5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/artists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/artists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/artists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"artists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV7artistsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/asquery.json new file mode 100644 index 000000000..57ffb8e13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/contributingartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/contributingartistids.json new file mode 100644 index 000000000..81678dbac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/contributingartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/contributingartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/contributingArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"contributingArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV21contributingArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/contributingArtistIDs":{"role":"symbol","title":"contributingArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/contributingArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/contributingartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enableimages.json new file mode 100644 index 000000000..264955c6d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enableimagetypes.json new file mode 100644 index 000000000..7923fcf5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV16enableImageTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enableimagetypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..9a77b1626 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enableuserdata.json new file mode 100644 index 000000000..99974317d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludeartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludeartistids.json new file mode 100644 index 000000000..1173ba25b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludeartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludeartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV16excludeArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludeitemids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludeitemids.json new file mode 100644 index 000000000..aa4644265 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludeitemids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludeitemids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeItemIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeItemIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV14excludeItemIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/excludeItemIDs":{"role":"symbol","title":"excludeItemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeItemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludeitemids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludeitemtypes.json new file mode 100644 index 000000000..0359f49ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV16excludeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludeitemtypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludelocationtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludelocationtypes.json new file mode 100644 index 000000000..fa4ed4195 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/excludelocationtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludelocationtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeLocationTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"title":"excludeLocationTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV20excludeLocationTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/excludeLocationTypes":{"role":"symbol","title":"excludeLocationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/excludeLocationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/excludelocationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/fields.json new file mode 100644 index 000000000..4542f9840 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/filters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/filters.json new file mode 100644 index 000000000..73e007770 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/filters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/filters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/filters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"title":"filters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV7filtersSayAA10ItemFilterOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/genreids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/genreids.json new file mode 100644 index 000000000..9176e713b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/genreids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/genreids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/genreIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"genreIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV8genreIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/genreids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/genres.json new file mode 100644 index 000000000..90370a083 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"genres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6genresSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasimdbid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasimdbid.json new file mode 100644 index 000000000..5f3014c1c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasimdbid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasimdbid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasImdbID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasImdbID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9hasImdbIDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasImdbID":{"role":"symbol","title":"hasImdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasImdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasimdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasofficialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasofficialrating.json new file mode 100644 index 000000000..6c5e5ab1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasofficialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasofficialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasOfficialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasOfficialRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV17hasOfficialRatingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasOfficialRating":{"role":"symbol","title":"hasOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasoverview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasoverview.json new file mode 100644 index 000000000..0f3fd5895 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasoverview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasoverview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasOverview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasOverview","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV11hasOverviewSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasOverview":{"role":"symbol","title":"hasOverview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasOverview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasoverview"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasparentalrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasparentalrating.json new file mode 100644 index 000000000..43f674319 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasparentalrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasparentalrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasParentalRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasParentalRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV17hasParentalRatingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasParentalRating":{"role":"symbol","title":"hasParentalRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasParentalRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasparentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasspecialfeature.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasspecialfeature.json new file mode 100644 index 000000000..b6120e34b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasspecialfeature.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasspecialfeature"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasSpecialFeature","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasSpecialFeature","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV17hasSpecialFeatureSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasSpecialFeature":{"role":"symbol","title":"hasSpecialFeature","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasSpecialFeature","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasspecialfeature"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hassubtitles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hassubtitles.json new file mode 100644 index 000000000..df2207276 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hassubtitles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hassubtitles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasSubtitles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasSubtitles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV12hasSubtitlesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasSubtitles":{"role":"symbol","title":"hasSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hassubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasthemesong.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasthemesong.json new file mode 100644 index 000000000..82a6775a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasthemesong.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasthemesong"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasThemeSong","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasThemeSong","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV12hasThemeSongSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasThemeSong":{"role":"symbol","title":"hasThemeSong","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasThemeSong","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasthemesong"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasthemevideo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasthemevideo.json new file mode 100644 index 000000000..4e4bf3880 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hasthemevideo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasthemevideo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasThemeVideo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasThemeVideo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV13hasThemeVideoSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasThemeVideo":{"role":"symbol","title":"hasThemeVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasThemeVideo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hasthemevideo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hastmdbid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hastmdbid.json new file mode 100644 index 000000000..85edec285 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hastmdbid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hastmdbid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTmdbID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasTmdbID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9hasTmdbIDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasTmdbID":{"role":"symbol","title":"hasTmdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTmdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hastmdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hastrailer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hastrailer.json new file mode 100644 index 000000000..1ffc9cc71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hastrailer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hastrailer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTrailer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasTrailer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV10hasTrailerSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasTrailer":{"role":"symbol","title":"hasTrailer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTrailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hastrailer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hastvdbid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hastvdbid.json new file mode 100644 index 000000000..d3bad8ad9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/hastvdbid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hastvdbid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTvdbID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasTvdbID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9hasTvdbIDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/hasTvdbID":{"role":"symbol","title":"hasTvdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/hasTvdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/hastvdbid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ids.json new file mode 100644 index 000000000..5a6e84c11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/ids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"ids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV3idsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/imagetypelimit.json new file mode 100644 index 000000000..c10bff7b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/imagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/imagetypes.json new file mode 100644 index 000000000..4060eef29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/imagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/imagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/imageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"imageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV10imageTypesSayAA9ImageTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/imageTypes":{"role":"symbol","title":"imageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/imageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/imagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/includeitemtypes.json new file mode 100644 index 000000000..821b9f800 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV16includeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/includeitemtypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-k4h9.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-k4h9.json new file mode 100644 index 000000000..9cf6a12f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-k4h9.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO","text":"VideoType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO","text":"SeriesStatus"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-k4h9"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6userID17maxOfficialRating12hasThemeSong0lM5Video0L9Subtitles0L14SpecialFeature0L7Trailer10adjacentTo17parentIndexNumber0l8ParentalK04isHd0Z4Is4K13locationTypes20excludeLocationTypes0Z7Missing0Z7Unaired012minCommunityK009minCriticK015minPremiereDate16minDateLastSaved23minDateLastSavedForUser0I12PremiereDate0L8Overview0l4ImdbH00l4TmdbH00l4TvdbH00Z5Movie0Z6Series0Z4News0Z4Kids0Z6Sports14excludeItemIDs05startW05limit0Z9Recursive10searchTerm9sortOrder0vH06fields16excludeItemTypes16includeItemTypes7filters0Z8Favorite10mediaTypes10imageTypes6sortBy0Z6Played6genres15officialRatings4tags5years14enableUserData14imageTypeLimit16enableImageTypes6person9personIDs11personTypes7studios7artists16excludeArtistIDs9artistIDs14albumArtistIDs21contributingArtistIDs6albums8albumIDs3ids10videoTypes03minjK00Z6Locked0Z11PlaceHolder0ljK00z14CollapseBoxSetE08minWidth9minHeight0I5Width0I6Height0Z4Is3D12seriesStatus23nameStartsWithOrGreater14nameStartsWith12nameLessThan9studioIDs8genreIDs22enableTotalRecordCount12enableImagesAE10Foundation4UUIDVSg_SSSgSbSgA68_A68_A68_A68_A67_s5Int32VSgA68_A68_A68_SayAA12LocationTypeOGSgA75_A68_A68_SdSgA76_A63_4DateVSgA79_A79_A79_A68_A68_A68_A68_A68_A68_A68_A68_A68_SayA65_GSgA71_A71_A68_A67_SayAA9SortOrderOGSgA66_SayAA10ItemFieldsOGSgSayAA12BaseItemKindOGSgA93_SayAA10ItemFilterOGSgA68_SaySSGSgSayAA9ImageTypeOGSgA99_A68_A99_A99_A99_SayA70_GSgA68_A71_A103_A67_A81_A99_A99_A99_A81_A81_A81_A81_A99_A81_A81_SayAA0O4TypeOGSgA67_A68_A68_A68_A68_A71_A71_A71_A71_A68_SayAA12SeriesStatusOGSgA67_A67_A67_A81_A81_A68_A68_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)":{"role":"symbol","title":"init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-k4h9"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/iscollapseboxsetitems.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/iscollapseboxsetitems.json new file mode 100644 index 000000000..98133cea8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/iscollapseboxsetitems.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/iscollapseboxsetitems"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isCollapseBoxSetItems","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCollapseBoxSetItems","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV016isCollapseBoxSetE0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isCollapseBoxSetItems":{"role":"symbol","title":"isCollapseBoxSetItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isCollapseBoxSetItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/iscollapseboxsetitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isfavorite.json new file mode 100644 index 000000000..3adf51bbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ishd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ishd.json new file mode 100644 index 000000000..7c31f8b75 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ishd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ishd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isHd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isHd","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV4isHdSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isHd":{"role":"symbol","title":"isHd","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isHd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isis3d.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isis3d.json new file mode 100644 index 000000000..e2d9ab060 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isis3d.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isis3d"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isIs3D","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIs3D","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6isIs3DSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isIs3D":{"role":"symbol","title":"isIs3D","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isIs3D","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isis3d"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isis4k.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isis4k.json new file mode 100644 index 000000000..712366cce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isis4k.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isis4k"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isIs4K","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIs4K","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6isIs4KSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isIs4K":{"role":"symbol","title":"isIs4K","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isIs4K","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isis4k"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/iskids.json new file mode 100644 index 000000000..dfbfc9a5e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/islocked.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/islocked.json new file mode 100644 index 000000000..496a8126e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/islocked.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/islocked"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isLocked","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isLocked","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV8isLockedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isLocked":{"role":"symbol","title":"isLocked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isLocked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/islocked"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ismissing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ismissing.json new file mode 100644 index 000000000..83f7f27b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ismissing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ismissing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isMissing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMissing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9isMissingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isMissing":{"role":"symbol","title":"isMissing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isMissing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ismissing"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ismovie.json new file mode 100644 index 000000000..1baba203f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isnews.json new file mode 100644 index 000000000..3a7a2ab7f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isplaceholder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isplaceholder.json new file mode 100644 index 000000000..1c089c9a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isplaceholder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isplaceholder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isPlaceHolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlaceHolder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV13isPlaceHolderSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isPlaceHolder":{"role":"symbol","title":"isPlaceHolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isPlaceHolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isplaceholder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isplayed.json new file mode 100644 index 000000000..aca7233d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV8isPlayedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isPlayed":{"role":"symbol","title":"isPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isrecursive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isrecursive.json new file mode 100644 index 000000000..5898bdf8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isrecursive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isrecursive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isRecursive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRecursive","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV11isRecursiveSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isRecursive":{"role":"symbol","title":"isRecursive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isRecursive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isrecursive"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isseries.json new file mode 100644 index 000000000..8629c9591 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isseries"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/issports.json new file mode 100644 index 000000000..e2d7f2496 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isunaired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isunaired.json new file mode 100644 index 000000000..f8b6863c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/isunaired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isunaired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isUnaired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isUnaired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9isUnairedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/isUnaired":{"role":"symbol","title":"isUnaired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/isUnaired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/isunaired"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/limit.json new file mode 100644 index 000000000..a037185d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/locationtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/locationtypes.json new file mode 100644 index 000000000..0a9e135c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/locationtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/locationtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/locationTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"title":"locationTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV13locationTypesSayAA12LocationTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/locationTypes":{"role":"symbol","title":"locationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/locationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/locationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxheight.json new file mode 100644 index 000000000..3e08c5cdd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxofficialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxofficialrating.json new file mode 100644 index 000000000..1a2c0aa46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxofficialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxofficialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxOfficialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"maxOfficialRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV17maxOfficialRatingSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/maxOfficialRating":{"role":"symbol","title":"maxOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxpremieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxpremieredate.json new file mode 100644 index 000000000..699319763 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxpremieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxpremieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxPremiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"maxPremiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV15maxPremiereDate10Foundation0I0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/maxPremiereDate":{"role":"symbol","title":"maxPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxwidth.json new file mode 100644 index 000000000..f71492a2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mediatypes.json new file mode 100644 index 000000000..5c16e53c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/mediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV10mediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mincommunityrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mincommunityrating.json new file mode 100644 index 000000000..b033e11a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mincommunityrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mincommunityrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minCommunityRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"minCommunityRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV18minCommunityRatingSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minCommunityRating":{"role":"symbol","title":"minCommunityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minCommunityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mincommunityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mincriticrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mincriticrating.json new file mode 100644 index 000000000..b1fb30870 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mincriticrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mincriticrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minCriticRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"minCriticRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV15minCriticRatingSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minCriticRating":{"role":"symbol","title":"minCriticRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minCriticRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mincriticrating"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mindatelastsaved.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mindatelastsaved.json new file mode 100644 index 000000000..a7978063f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mindatelastsaved.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mindatelastsaved"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minDateLastSaved","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minDateLastSaved","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV16minDateLastSaved10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minDateLastSaved":{"role":"symbol","title":"minDateLastSaved","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minDateLastSaved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mindatelastsaved"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mindatelastsavedforuser.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mindatelastsavedforuser.json new file mode 100644 index 000000000..49cc78e1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/mindatelastsavedforuser.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mindatelastsavedforuser"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minDateLastSavedForUser","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minDateLastSavedForUser","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV23minDateLastSavedForUser10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minDateLastSavedForUser":{"role":"symbol","title":"minDateLastSavedForUser","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minDateLastSavedForUser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/mindatelastsavedforuser"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minheight.json new file mode 100644 index 000000000..b9e460751 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9minHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minHeight":{"role":"symbol","title":"minHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minofficialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minofficialrating.json new file mode 100644 index 000000000..9587ee966 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minofficialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minofficialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minOfficialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"minOfficialRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV17minOfficialRatingSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minOfficialRating":{"role":"symbol","title":"minOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minpremieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minpremieredate.json new file mode 100644 index 000000000..99815772d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minpremieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minpremieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minPremiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minPremiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV15minPremiereDate10Foundation0I0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minPremiereDate":{"role":"symbol","title":"minPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minwidth.json new file mode 100644 index 000000000..609996a61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/minwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV8minWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/minWidth":{"role":"symbol","title":"minWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/minWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/minwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/namelessthan.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/namelessthan.json new file mode 100644 index 000000000..de842f22b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/namelessthan.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/namelessthan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameLessThan","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameLessThan","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV12nameLessThanSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/namelessthan"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/namestartswith.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/namestartswith.json new file mode 100644 index 000000000..fd95b40c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/namestartswith.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/namestartswith"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameStartsWith","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWith","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV14nameStartsWithSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/namestartswithorgreater.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/namestartswithorgreater.json new file mode 100644 index 000000000..5905793d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/namestartswithorgreater.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/namestartswithorgreater"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameStartsWithOrGreater","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWithOrGreater","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV23nameStartsWithOrGreaterSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/officialratings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/officialratings.json new file mode 100644 index 000000000..fd34fed47 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/officialratings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/officialratings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/officialRatings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"officialRatings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV15officialRatingsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/officialratings"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/parentid.json new file mode 100644 index 000000000..5740ca638 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/parentindexnumber.json new file mode 100644 index 000000000..8c7bd2a71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/person.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/person.json new file mode 100644 index 000000000..2df4059a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/person.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/person"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/person","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"person","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6personSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/person":{"role":"symbol","title":"person","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/person"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/personids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/personids.json new file mode 100644 index 000000000..d39b1506d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/personids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/personids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/personIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"personIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9personIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/personIDs":{"role":"symbol","title":"personIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/personIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/personids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/persontypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/persontypes.json new file mode 100644 index 000000000..98e58dc28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/persontypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/persontypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/personTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"personTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV11personTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/searchterm.json new file mode 100644 index 000000000..a1f5a734e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV10searchTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/seriesstatus.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/seriesstatus.json new file mode 100644 index 000000000..0e19abe45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/seriesstatus.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO","text":"SeriesStatus"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/seriesstatus"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/seriesStatus","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?"}],"title":"seriesStatus","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV12seriesStatusSayAA06SeriesH0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/seriesStatus":{"role":"symbol","title":"seriesStatus","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/seriesStatus","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/sortby.json new file mode 100644 index 000000000..a1ebc5db2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/sortorder.json new file mode 100644 index 000000000..c6789e81a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9sortOrderSayAA04SortH0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/startindex.json new file mode 100644 index 000000000..e08051ddf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/studioids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/studioids.json new file mode 100644 index 000000000..49c8f5210 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/studioids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/studioids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/studioIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"studioIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV9studioIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/studioIDs":{"role":"symbol","title":"studioIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/studioIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/studioids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/studios.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/studios.json new file mode 100644 index 000000000..c608ce988 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/studios.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/studios"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/studios","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"studios","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV7studiosSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/tags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/tags.json new file mode 100644 index 000000000..0e5a8116c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/tags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/tags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/tags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"tags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV4tagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/userid.json new file mode 100644 index 000000000..78d25eb23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/videotypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/videotypes.json new file mode 100644 index 000000000..38153eb3d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/videotypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO","text":"VideoType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/videotypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/videoTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?"}],"title":"videoTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV10videoTypesSayAA9VideoTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/videoTypes":{"role":"symbol","title":"videoTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/videoTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/videotypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/years.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/years.json new file mode 100644 index 000000000..558885a58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getitemsparameters/years.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getitemsparameters\/years"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/years","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"title":"years","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetItemsParametersV5yearsSays5Int32VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters\/years"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetItemsParameters":{"role":"symbol","title":"Paths.GetItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getkeys.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getkeys.json new file mode 100644 index 000000000..1502b22a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getkeys.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getKeys"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getkeys"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getKeys","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get all keys."}],"kind":"symbol","metadata":{"role":"symbol","title":"getKeys","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getKeys"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO7getKeys3Get7RequestVyAA29AuthenticationInfoQueryResultVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getKeys":{"role":"symbol","title":"getKeys","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getKeys"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get all keys."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getKeys","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getkeys"},"doc://JellyfinAPI/documentation/JellyfinAPI/AuthenticationInfoQueryResult":{"role":"symbol","title":"AuthenticationInfoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AuthenticationInfoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AuthenticationInfoQueryResult"}],"url":"\/documentation\/jellyfinapi\/authenticationinfoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitems(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitems(parameters:).json new file mode 100644 index 000000000..d72a40505 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitems(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLatestChannelItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV","text":"GetLatestChannelItemsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestchannelitems(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLatestChannelItems(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets latest channel items."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLatestChannelItems(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLatestChannelItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLatestChannelItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getLatestChannelItems10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0iefG10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLatestChannelItems(parameters:)":{"role":"symbol","title":"getLatestChannelItems(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLatestChannelItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLatestChannelItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets latest channel items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLatestChannelItems(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitems(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters.json new file mode 100644 index 000000000..cb2436750 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/init(userID:startIndex:limit:filters:fields:channelIDs:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/channelIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/filters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/init(userID:startIndex:limit:filters:fields:channelIDs:)":{"role":"symbol","title":"init(userID:startIndex:limit:filters:fields:channelIDs:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/init(userID:startIndex:limit:filters:fields:channelIDs:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/init(userid:startindex:limit:filters:fields:channelids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/channelIDs":{"role":"symbol","title":"channelIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/channelIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/channelids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/asquery.json new file mode 100644 index 000000000..599a04c5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/channelids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/channelids.json new file mode 100644 index 000000000..5b1ed60c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/channelids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/channelids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/channelIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"channelIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV10channelIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/channelIDs":{"role":"symbol","title":"channelIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/channelIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/channelids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/fields.json new file mode 100644 index 000000000..051b82b0f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/filters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/filters.json new file mode 100644 index 000000000..f61a7586e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/filters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/filters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/filters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"title":"filters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV7filtersSayAA10ItemFilterOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/init(userid:startindex:limit:filters:fields:channelids:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/init(userid:startindex:limit:filters:fields:channelids:).json new file mode 100644 index 000000000..6e3d64205 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/init(userid:startindex:limit:filters:fields:channelids:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/init(userid:startindex:limit:filters:fields:channelids:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/init(userID:startIndex:limit:filters:fields:channelIDs:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?)"}],"title":"init(userID:startIndex:limit:filters:fields:channelIDs:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV6userID10startIndex5limit7filters6fields10channelIDsAE10Foundation4UUIDVSg_s5Int32VSgARSayAA10ItemFilterOGSgSayAA0U6FieldsOGSgSayANGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/init(userID:startIndex:limit:filters:fields:channelIDs:)":{"role":"symbol","title":"init(userID:startIndex:limit:filters:fields:channelIDs:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/init(userID:startIndex:limit:filters:fields:channelIDs:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/init(userid:startindex:limit:filters:fields:channelids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/limit.json new file mode 100644 index 000000000..4979cdd8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/startindex.json new file mode 100644 index 000000000..253dc2020 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/userid.json new file mode 100644 index 000000000..a731cef9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestchannelitemsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetLatestChannelItemsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestChannelItemsParameters":{"role":"symbol","title":"Paths.GetLatestChannelItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestChannelItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestChannelItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestchannelitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmedia(userid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmedia(userid:parameters:).json new file mode 100644 index 000000000..313a28d9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmedia(userid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLatestMedia"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV","text":"GetLatestMediaParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmedia(userid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLatestMedia(userID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets latest media."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLatestMedia(userID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLatestMedia"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLatestMediaParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getLatestMedia6userID10parameters3Get7RequestVySayAA11BaseItemDtoVGGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLatestMedia(userID:parameters:)":{"role":"symbol","title":"getLatestMedia(userID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLatestMedia"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLatestMediaParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets latest media."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLatestMedia(userID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmedia(userid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters.json new file mode 100644 index 000000000..5d0242a4b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"role":"symbol","title":"Paths.GetLatestMediaParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/init(parentID:fields:includeItemTypes:isPlayed:enableImages:imageTypeLimit:enableImageTypes:enableUserData:limit:isGroupItems:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/isGroupItems","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/isPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/parentID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/isGroupItems":{"role":"symbol","title":"isGroupItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isGroupItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/isGroupItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/isgroupitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/init(parentID:fields:includeItemTypes:isPlayed:enableImages:imageTypeLimit:enableImageTypes:enableUserData:limit:isGroupItems:)":{"role":"symbol","title":"init(parentID:fields:includeItemTypes:isPlayed:enableImages:imageTypeLimit:enableImageTypes:enableUserData:limit:isGroupItems:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isGroupItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/init(parentID:fields:includeItemTypes:isPlayed:enableImages:imageTypeLimit:enableImageTypes:enableUserData:limit:isGroupItems:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/init(parentid:fields:includeitemtypes:isplayed:enableimages:imagetypelimit:enableimagetypes:enableuserdata:limit:isgroupitems:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/isPlayed":{"role":"symbol","title":"isPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/isplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/asquery.json new file mode 100644 index 000000000..3b6d88c9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/enableimages.json new file mode 100644 index 000000000..bb9eaaf99 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/enableimagetypes.json new file mode 100644 index 000000000..da4b664e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV16enableImageTypesSayAA0I4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/enableimagetypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/enableuserdata.json new file mode 100644 index 000000000..7038c71be --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/fields.json new file mode 100644 index 000000000..d8de004f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/imagetypelimit.json new file mode 100644 index 000000000..a9ca126c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/includeitemtypes.json new file mode 100644 index 000000000..f65a18e58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV16includeItemTypesSayAA04BaseI4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/init(parentid:fields:includeitemtypes:isplayed:enableimages:imagetypelimit:enableimagetypes:enableuserdata:limit:isgroupitems:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/init(parentid:fields:includeitemtypes:isplayed:enableimages:imagetypelimit:enableimagetypes:enableuserdata:limit:isgroupitems:).json new file mode 100644 index 000000000..2618fbe48 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/init(parentid:fields:includeitemtypes:isplayed:enableimages:imagetypelimit:enableimagetypes:enableuserdata:limit:isgroupitems:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isGroupItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/init(parentid:fields:includeitemtypes:isplayed:enableimages:imagetypelimit:enableimagetypes:enableuserdata:limit:isgroupitems:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/init(parentID:fields:includeItemTypes:isPlayed:enableImages:imageTypeLimit:enableImageTypes:enableUserData:limit:isGroupItems:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isGroupItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(parentID:fields:includeItemTypes:isPlayed:enableImages:imageTypeLimit:enableImageTypes:enableUserData:limit:isGroupItems:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV8parentID6fields16includeItemTypes8isPlayed12enableImages14imageTypeLimit0p5ImageM00P8UserData5limit0N10GroupItemsAE10Foundation4UUIDVSg_SayAA0L6FieldsOGSgSayAA04BaseL4KindOGSgSbSgA0_s5Int32VSgSayAA0uS0OGSgA0_A3_A0_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/init(parentID:fields:includeItemTypes:isPlayed:enableImages:imageTypeLimit:enableImageTypes:enableUserData:limit:isGroupItems:)":{"role":"symbol","title":"init(parentID:fields:includeItemTypes:isPlayed:enableImages:imageTypeLimit:enableImageTypes:enableUserData:limit:isGroupItems:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isGroupItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/init(parentID:fields:includeItemTypes:isPlayed:enableImages:imageTypeLimit:enableImageTypes:enableUserData:limit:isGroupItems:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/init(parentid:fields:includeitemtypes:isplayed:enableimages:imagetypelimit:enableimagetypes:enableuserdata:limit:isgroupitems:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/isgroupitems.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/isgroupitems.json new file mode 100644 index 000000000..6cad80832 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/isgroupitems.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isGroupItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/isgroupitems"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/isGroupItems","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isGroupItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isGroupItems","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV12isGroupItemsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/isGroupItems":{"role":"symbol","title":"isGroupItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isGroupItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/isGroupItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/isgroupitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/isplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/isplayed.json new file mode 100644 index 000000000..1826f1ff3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/isplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/isplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/isPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV8isPlayedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/isPlayed":{"role":"symbol","title":"isPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/isplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/limit.json new file mode 100644 index 000000000..2506700e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/parentid.json new file mode 100644 index 000000000..5cd61848c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlatestmediaparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetLatestMediaParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters":{"role":"symbol","title":"Paths.GetLatestMediaParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLatestMediaParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLatestMediaParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLatestMediaParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLatestMediaParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlatestmediaparameters\/parentid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlibraryoptionsinfo(librarycontenttype:isnewlibrary:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlibraryoptionsinfo(librarycontenttype:isnewlibrary:).json new file mode 100644 index 000000000..8e6f52f11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlibraryoptionsinfo(librarycontenttype:isnewlibrary:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLibraryOptionsInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"libraryContentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNewLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlibraryoptionsinfo(librarycontenttype:isnewlibrary:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLibraryOptionsInfo(libraryContentType:isNewLibrary:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the library options info."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLibraryOptionsInfo(libraryContentType:isNewLibrary:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLibraryOptionsInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"libraryContentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNewLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getLibraryOptionsInfo18libraryContentType05isNewE03Get7RequestVyAA0eF9ResultDtoVGSSSg_SbSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLibraryOptionsInfo(libraryContentType:isNewLibrary:)":{"role":"symbol","title":"getLibraryOptionsInfo(libraryContentType:isNewLibrary:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLibraryOptionsInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"libraryContentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNewLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the library options info."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLibraryOptionsInfo(libraryContentType:isNewLibrary:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlibraryoptionsinfo(librarycontenttype:isnewlibrary:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptionsResultDto":{"role":"symbol","title":"LibraryOptionsResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptionsResultDto"}],"abstract":[{"type":"text","text":"Library options result dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptionsResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptionsResultDto"}],"url":"\/documentation\/jellyfinapi\/libraryoptionsresultdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineups(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineups(parameters:).json new file mode 100644 index 000000000..ed082face --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineups(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLineups"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetLineupsParametersV","text":"GetLineupsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV","text":"NameIDPair"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlineups(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLineups(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available lineups."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLineups(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLineups"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLineupsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetLineupsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10getLineups10parameters3Get7RequestVySayAA10NameIDPairVGGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters":{"role":"symbol","title":"Paths.GetLineupsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLineupsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLineups(parameters:)":{"role":"symbol","title":"getLineups(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLineups"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLineupsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetLineupsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets available lineups."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLineups(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineups(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters.json new file mode 100644 index 000000000..5533cf0d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlineupsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetLineupsParameters"}],"role":"symbol","title":"Paths.GetLineupsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO20GetLineupsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/init(id:type:location:country:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/country","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/id","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/location","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/type"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/country":{"role":"symbol","title":"country","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/country","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/country"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/location":{"role":"symbol","title":"location","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/location","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/location"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters":{"role":"symbol","title":"Paths.GetLineupsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLineupsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/init(id:type:location:country:)":{"role":"symbol","title":"init(id:type:location:country:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/init(id:type:location:country:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/init(id:type:location:country:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/id":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/id","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/id"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/asquery.json new file mode 100644 index 000000000..0053c3af1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetLineupsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters":{"role":"symbol","title":"Paths.GetLineupsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLineupsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/country.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/country.json new file mode 100644 index 000000000..dac226155 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/country.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/country"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/country","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"country","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetLineupsParametersV7countrySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters":{"role":"symbol","title":"Paths.GetLineupsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLineupsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/country":{"role":"symbol","title":"country","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/country","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/country"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/id.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/id.json new file mode 100644 index 000000000..7d5b8eab4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/id.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/id"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/id","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetLineupsParametersV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters":{"role":"symbol","title":"Paths.GetLineupsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLineupsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/id":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/id","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/id"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/init(id:type:location:country:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/init(id:type:location:country:).json new file mode 100644 index 000000000..7f7b821df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/init(id:type:location:country:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/init(id:type:location:country:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/init(id:type:location:country:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(id:type:location:country:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO20GetLineupsParametersV2id4type8location7countryAESSSg_A3Jtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/init(id:type:location:country:)":{"role":"symbol","title":"init(id:type:location:country:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"country"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/init(id:type:location:country:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/init(id:type:location:country:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters":{"role":"symbol","title":"Paths.GetLineupsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLineupsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/location.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/location.json new file mode 100644 index 000000000..d50ee6be3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/location.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/location"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/location","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"location","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetLineupsParametersV8locationSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters":{"role":"symbol","title":"Paths.GetLineupsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLineupsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/location":{"role":"symbol","title":"location","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/location","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/location"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/type.json new file mode 100644 index 000000000..30b0b09ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlineupsparameters/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetLineupsParametersV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters":{"role":"symbol","title":"Paths.GetLineupsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLineupsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLineupsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLineupsParameters/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLineupsParameters\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlineupsparameters\/type"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstream(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstream(itemid:parameters:).json new file mode 100644 index 000000000..72def034b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstream(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveHlsStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV","text":"GetLiveHlsStreamParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstream(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveHlsStream(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a hls live stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLiveHlsStream(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveHlsStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLiveHlsStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16getLiveHlsStream6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC0kefG10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveHlsStream(itemID:parameters:)":{"role":"symbol","title":"getLiveHlsStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveHlsStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLiveHlsStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a hls live stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveHlsStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters.json new file mode 100644 index 000000000..519b34de1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:maxWidth:maxHeight:enableSubtitlesInManifest:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableSubtitlesInManifest","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:maxWidth:maxHeight:enableSubtitlesInManifest:)":{"role":"symbol","title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:maxWidth:maxHeight:enableSubtitlesInManifest:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV0G7Optionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:maxWidth:maxHeight:enableSubtitlesInManifest:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-1byt1"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV0G7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/enableSubtitlesInManifest":{"role":"symbol","title":"enableSubtitlesInManifest","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableSubtitlesInManifest","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/enablesubtitlesinmanifest"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/transcodingmaxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..f541fa080 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV010allowAudioG4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..d35550f68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV010allowVideoG4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/asquery.json new file mode 100644 index 000000000..8d37f6e5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiobitrate.json new file mode 100644 index 000000000..012a12260 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiochannels.json new file mode 100644 index 000000000..6a641f901 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiocodec.json new file mode 100644 index 000000000..24af22998 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiosamplerate.json new file mode 100644 index 000000000..4486aaf0c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiostreamindex.json new file mode 100644 index 000000000..21c6136e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV05audioG5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/container.json new file mode 100644 index 000000000..7df3ba634 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/context-swift.property.json new file mode 100644 index 000000000..02320573d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/context-swift.typealias.json new file mode 100644 index 000000000..de92bc42a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetLiveHlsStreamParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/cpucorelimit.json new file mode 100644 index 000000000..b87e5903e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/deviceid.json new file mode 100644 index 000000000..92c91148a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/deviceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/deviceprofileid.json new file mode 100644 index 000000000..caf0ea1da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/enableautostreamcopy.json new file mode 100644 index 000000000..19f8e6b7f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV010enableAutoG4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..431c206a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/enablesubtitlesinmanifest.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/enablesubtitlesinmanifest.json new file mode 100644 index 000000000..36c8fc6e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/enablesubtitlesinmanifest.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/enablesubtitlesinmanifest"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableSubtitlesInManifest","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableSubtitlesInManifest","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV25enableSubtitlesInManifestSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/enableSubtitlesInManifest":{"role":"symbol","title":"enableSubtitlesInManifest","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/enableSubtitlesInManifest","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/enablesubtitlesinmanifest"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/framerate.json new file mode 100644 index 000000000..7a1eb3b2a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/height.json new file mode 100644 index 000000000..9755994e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-1byt1.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-1byt1.json new file mode 100644 index 000000000..81ecb189b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-1byt1.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV0G7Optionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-1byt1"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:maxWidth:maxHeight:enableSubtitlesInManifest:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV0G7Optionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:maxWidth:maxHeight:enableSubtitlesInManifest:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV9container8isStatic6params3tag15deviceProfileID011playSessionP016segmentContainer0S6Length11minSegments011mediaSourceP00nP010audioCodec010enableAutoG4Copy010allowVideoG4Copy010allowAudioG4Copy0J19BreakOnNonKeyFrames0Z10SampleRate16maxAudioBitDepth0Z7BitRate0Z8Channels16maxAudioChannels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height12videoBitRate08subtitleG5Index14subtitleMethod12maxRefFrames16maxVideoBitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic27transcodingMaxAudioChannels12cpuCoreLimit04livegP020enableMpegtsM2TsMode10videoCodec13subtitleCodec16transcodeReasons0zG5Index05videoG5Index7context13streamOptions8maxWidth9maxHeight25enableSubtitlesInManifestAESSSg_SbSgA29_A29_A29_A29_A29_s5Int32VSgA33_A29_A29_A29_A30_A30_A30_A30_A33_A33_A33_A33_A33_A29_A29_SfSgA34_A30_s5Int64VSgA33_A33_A33_A33_AA22SubtitleDeliveryMethodOSgA33_A33_A30_A30_A30_A33_A33_A29_A30_A29_A29_A29_A33_A33_AA15EncodingContextOSgSDyS2SGSgA33_A33_A30_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:maxWidth:maxHeight:enableSubtitlesInManifest:)":{"role":"symbol","title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:maxWidth:maxHeight:enableSubtitlesInManifest:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV0G7Optionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:maxWidth:maxHeight:enableSubtitlesInManifest:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-1byt1"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..a22ad68fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/iscopytimestamps.json new file mode 100644 index 000000000..21e1f1be4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/isdeinterlace.json new file mode 100644 index 000000000..9a30fbd60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/isdeinterlace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/isstatic.json new file mode 100644 index 000000000..14e018772 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/level.json new file mode 100644 index 000000000..30519de7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/livestreamid.json new file mode 100644 index 000000000..b0b958940 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV04liveG2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..3c0b7d7e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV16maxAudioBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxaudiochannels.json new file mode 100644 index 000000000..cffc3cac3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxframerate.json new file mode 100644 index 000000000..4300246bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxheight.json new file mode 100644 index 000000000..97c3035a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxrefframes.json new file mode 100644 index 000000000..aa00cf8e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxvideobitdepth.json new file mode 100644 index 000000000..39cc6daee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV16maxVideoBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxvideobitdepth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxwidth.json new file mode 100644 index 000000000..23e7563bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/maxwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/mediasourceid.json new file mode 100644 index 000000000..75f093cd8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/minsegments.json new file mode 100644 index 000000000..16f0a2a20 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/params.json new file mode 100644 index 000000000..94072b559 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/playsessionid.json new file mode 100644 index 000000000..f18923125 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/profile.json new file mode 100644 index 000000000..560d589f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/requireavc.json new file mode 100644 index 000000000..22c145db6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/requirenonanamorphic.json new file mode 100644 index 000000000..02cbbc9cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/segmentcontainer.json new file mode 100644 index 000000000..737ac35e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/segmentlength.json new file mode 100644 index 000000000..70ac484ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/starttimeticks.json new file mode 100644 index 000000000..ddcdeb712 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/starttimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..b8f1b94f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV0G7Optionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV0G7Optionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV0G7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..5420094ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetLiveHlsStreamParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV0G7Optionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlecodec.json new file mode 100644 index 000000000..05bb1eb61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlecodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..fe5f30d9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14subtitleMethodAA016SubtitleDeliveryJ0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlemethod-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..2cec60f25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetLiveHlsStreamParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlestreamindex.json new file mode 100644 index 000000000..6769fa19e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV08subtitleG5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/tag.json new file mode 100644 index 000000000..46963c600 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/transcodereasons.json new file mode 100644 index 000000000..9641ce88d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..235068564 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV27transcodingMaxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/transcodingmaxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/videobitrate.json new file mode 100644 index 000000000..e56589917 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/videobitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/videocodec.json new file mode 100644 index 000000000..2d1fae839 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/videostreamindex.json new file mode 100644 index 000000000..4b34919a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV05videoG5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/width.json new file mode 100644 index 000000000..f57291841 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivehlsstreamparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetLiveHlsStreamParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveHlsStreamParameters":{"role":"symbol","title":"Paths.GetLiveHlsStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveHlsStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveHlsStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivehlsstreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getliverecordingfile(recordingid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getliverecordingfile(recordingid:).json new file mode 100644 index 000000000..ddc4bc276 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getliverecordingfile(recordingid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveRecordingFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getliverecordingfile(recordingid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveRecordingFile(recordingID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a live tv recording stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLiveRecordingFile(recordingID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveRecordingFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20getLiveRecordingFile11recordingID3Get7RequestVy10Foundation4DataVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveRecordingFile(recordingID:)":{"role":"symbol","title":"getLiveRecordingFile(recordingID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveRecordingFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a live tv recording stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveRecordingFile(recordingID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getliverecordingfile(recordingid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivestreamfile(streamid:container:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivestreamfile(streamid:container:).json new file mode 100644 index 000000000..47088880e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivestreamfile(streamid:container:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveStreamFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"streamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivestreamfile(streamid:container:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveStreamFile(streamID:container:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a live tv channel stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLiveStreamFile(streamID:container:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveStreamFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"streamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17getLiveStreamFile8streamID9container3Get7RequestVy10Foundation4DataVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveStreamFile(streamID:container:)":{"role":"symbol","title":"getLiveStreamFile(streamID:container:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveStreamFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"streamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a live tv channel stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveStreamFile(streamID:container:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivestreamfile(streamid:container:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannels(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannels(parameters:).json new file mode 100644 index 000000000..49338a3e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannels(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvChannels"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV","text":"GetLiveTvChannelsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannels(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvChannels(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available live tv channels."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLiveTvChannels(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvChannels"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLiveTvChannelsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17getLiveTvChannels10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0iefG10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveTvChannels(parameters:)":{"role":"symbol","title":"getLiveTvChannels(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvChannels"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLiveTvChannelsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available live tv channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvChannels(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannels(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters.json new file mode 100644 index 000000000..f30500439 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/init(type:userID:startIndex:isMovie:isSeries:isNews:isKids:isSports:limit:isFavorite:isLiked:isDisliked:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:sortBy:sortOrder:enableFavoriteSorting:isAddCurrentProgram:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableFavoriteSorting","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isAddCurrentProgram","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isDisliked","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isLiked","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/sortOrder-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/type-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/userID"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/SortOrder-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/Type-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/sortOrder-swift.property":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV9SortOrdera"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/sortOrder-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortorder-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/SortOrder-swift.typealias":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters.SortOrder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/SortOrder-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortorder-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isLiked":{"role":"symbol","title":"isLiked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLiked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isLiked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isliked"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/enableFavoriteSorting":{"role":"symbol","title":"enableFavoriteSorting","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFavoriteSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableFavoriteSorting","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enablefavoritesorting"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/init(type:userID:startIndex:isMovie:isSeries:isNews:isKids:isSports:limit:isFavorite:isLiked:isDisliked:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:sortBy:sortOrder:enableFavoriteSorting:isAddCurrentProgram:)":{"role":"symbol","title":"init(type:userID:startIndex:isMovie:isSeries:isNews:isKids:isSports:limit:isFavorite:isLiked:isDisliked:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:sortBy:sortOrder:enableFavoriteSorting:isAddCurrentProgram:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4Typea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLiked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisliked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV9SortOrdera"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableFavoriteSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddCurrentProgram"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/init(type:userID:startIndex:isMovie:isSeries:isNews:isKids:isSports:limit:isFavorite:isLiked:isDisliked:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:sortBy:sortOrder:enableFavoriteSorting:isAddCurrentProgram:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/init(type:userid:startindex:ismovie:isseries:isnews:iskids:issports:limit:isfavorite:isliked:isdisliked:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:sortby:sortorder:enablefavoritesorting:isaddcurrentprogram:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isDisliked":{"role":"symbol","title":"isDisliked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisliked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isDisliked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isdisliked"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isAddCurrentProgram":{"role":"symbol","title":"isAddCurrentProgram","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddCurrentProgram"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isAddCurrentProgram","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isaddcurrentprogram"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/type-swift.property":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4Typea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/type-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/type-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/type-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/asquery.json new file mode 100644 index 000000000..44af367ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enablefavoritesorting.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enablefavoritesorting.json new file mode 100644 index 000000000..b9ec4d988 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enablefavoritesorting.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFavoriteSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enablefavoritesorting"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableFavoriteSorting","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFavoriteSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableFavoriteSorting","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV21enableFavoriteSortingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/enableFavoriteSorting":{"role":"symbol","title":"enableFavoriteSorting","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFavoriteSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableFavoriteSorting","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enablefavoritesorting"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enableimages.json new file mode 100644 index 000000000..6c0e9325c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enableimagetypes.json new file mode 100644 index 000000000..8328a2010 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV16enableImageTypesSayAA0J4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enableuserdata.json new file mode 100644 index 000000000..fd1c62335 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/enableuserdata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/fields.json new file mode 100644 index 000000000..5fbb339ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/imagetypelimit.json new file mode 100644 index 000000000..6b4b97275 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/init(type:userid:startindex:ismovie:isseries:isnews:iskids:issports:limit:isfavorite:isliked:isdisliked:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:sortby:sortorder:enablefavoritesorting:isaddcurrentprogram:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/init(type:userid:startindex:ismovie:isseries:isnews:iskids:issports:limit:isfavorite:isliked:isdisliked:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:sortby:sortorder:enablefavoritesorting:isaddcurrentprogram:).json new file mode 100644 index 000000000..efb4a7286 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/init(type:userid:startindex:ismovie:isseries:isnews:iskids:issports:limit:isfavorite:isliked:isdisliked:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:sortby:sortorder:enablefavoritesorting:isaddcurrentprogram:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/Type-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4Typea","text":"Type"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isLiked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDisliked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/SortOrder-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV9SortOrdera","text":"SortOrder"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableFavoriteSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddCurrentProgram"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/init(type:userid:startindex:ismovie:isseries:isnews:iskids:issports:limit:isfavorite:isliked:isdisliked:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:sortby:sortorder:enablefavoritesorting:isaddcurrentprogram:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/init(type:userID:startIndex:isMovie:isSeries:isNews:isKids:isSports:limit:isFavorite:isLiked:isDisliked:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:sortBy:sortOrder:enableFavoriteSorting:isAddCurrentProgram:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4Typea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLiked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisliked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV9SortOrdera"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableFavoriteSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddCurrentProgram"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(type:userID:startIndex:isMovie:isSeries:isNews:isKids:isSports:limit:isFavorite:isLiked:isDisliked:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:sortBy:sortOrder:enableFavoriteSorting:isAddCurrentProgram:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4type6userID10startIndex7isMovie0N6Series0N4News0N4Kids0N6Sports5limit0N8Favorite0N5Liked0N8Disliked12enableImages14imageTypeLimit0X10ImageTypes6fields0X8UserData6sortBy9sortOrder0xU7Sorting0N17AddCurrentProgramAeA11ChannelTypeOSg_10Foundation4UUIDVSgs5Int32VSgSbSgA9_A9_A9_A9_A8_A9_A9_A9_A9_A8_SayAA9ImageTypeOGSgSayAA10ItemFieldsOGSgA9_SaySSGSgAA9SortOrderOSgA9_A9_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/type-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/SortOrder-swift.typealias":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters.SortOrder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/SortOrder-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortorder-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/init(type:userID:startIndex:isMovie:isSeries:isNews:isKids:isSports:limit:isFavorite:isLiked:isDisliked:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:sortBy:sortOrder:enableFavoriteSorting:isAddCurrentProgram:)":{"role":"symbol","title":"init(type:userID:startIndex:isMovie:isSeries:isNews:isKids:isSports:limit:isFavorite:isLiked:isDisliked:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:sortBy:sortOrder:enableFavoriteSorting:isAddCurrentProgram:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4Typea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLiked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisliked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV9SortOrdera"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableFavoriteSorting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddCurrentProgram"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/init(type:userID:startIndex:isMovie:isSeries:isNews:isKids:isSports:limit:isFavorite:isLiked:isDisliked:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:sortBy:sortOrder:enableFavoriteSorting:isAddCurrentProgram:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/init(type:userid:startindex:ismovie:isseries:isnews:iskids:issports:limit:isfavorite:isliked:isdisliked:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:sortby:sortorder:enablefavoritesorting:isaddcurrentprogram:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isaddcurrentprogram.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isaddcurrentprogram.json new file mode 100644 index 000000000..575621a28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isaddcurrentprogram.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddCurrentProgram"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isaddcurrentprogram"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isAddCurrentProgram","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddCurrentProgram"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddCurrentProgram","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV19isAddCurrentProgramSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isAddCurrentProgram":{"role":"symbol","title":"isAddCurrentProgram","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddCurrentProgram"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isAddCurrentProgram","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isaddcurrentprogram"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isdisliked.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isdisliked.json new file mode 100644 index 000000000..f2fe6b7c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isdisliked.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisliked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isdisliked"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isDisliked","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisliked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDisliked","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV10isDislikedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isDisliked":{"role":"symbol","title":"isDisliked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisliked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isDisliked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isdisliked"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isfavorite.json new file mode 100644 index 000000000..58f830071 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/iskids.json new file mode 100644 index 000000000..4a62870b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isliked.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isliked.json new file mode 100644 index 000000000..52d08fadd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isliked.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLiked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isliked"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isLiked","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLiked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isLiked","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV7isLikedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isLiked":{"role":"symbol","title":"isLiked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLiked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isLiked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isliked"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/ismovie.json new file mode 100644 index 000000000..0b0ee18da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isnews.json new file mode 100644 index 000000000..d7fa5b877 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isseries.json new file mode 100644 index 000000000..541403a6f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/issports.json new file mode 100644 index 000000000..82a495c2f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/limit.json new file mode 100644 index 000000000..9b33d0807 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/sortby.json new file mode 100644 index 000000000..b33b123e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/sortorder-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/sortorder-swift.property.json new file mode 100644 index 000000000..eac181b19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/sortorder-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/SortOrder-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV9SortOrdera","text":"SortOrder"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortorder-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/sortOrder-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV9SortOrdera"},{"kind":"text","text":"?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV9sortOrderAA04SortJ0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/sortOrder-swift.property":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV9SortOrdera"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/sortOrder-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortorder-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/SortOrder-swift.typealias":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters.SortOrder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/SortOrder-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortorder-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/sortorder-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/sortorder-swift.typealias.json new file mode 100644 index 000000000..8949f8384 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/sortorder-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortorder-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/SortOrder-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"title":"Paths.GetLiveTvChannelsParameters.SortOrder","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV9SortOrdera","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SortOrder"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/SortOrder-swift.typealias":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters.SortOrder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/SortOrder-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/sortorder-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/startindex.json new file mode 100644 index 000000000..55bd41ba3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/type-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/type-swift.property.json new file mode 100644 index 000000000..414c739c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/type-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/Type-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4Typea","text":"Type"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/type-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/type-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4Typea"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4typeAA11ChannelTypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/type-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/type-swift.property":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4Typea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/type-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/type-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/type-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/type-swift.typealias.json new file mode 100644 index 000000000..281f290ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/type-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"`Type`"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","preciseIdentifier":"s:11JellyfinAPI11ChannelTypeO","text":"ChannelType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/type-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/Type-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"title":"Paths.GetLiveTvChannelsParameters.Type","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV4Typea","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Type"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ChannelType":{"role":"symbol","title":"ChannelType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ChannelType"}],"abstract":[{"type":"text","text":"Enum ChannelType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ChannelType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ChannelType"}],"url":"\/documentation\/jellyfinapi\/channeltype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/type-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/userid.json new file mode 100644 index 000000000..c44a266ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvchannelsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvChannelsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvChannelsParameters":{"role":"symbol","title":"Paths.GetLiveTvChannelsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvChannelsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvChannelsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvchannelsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvinfo.json new file mode 100644 index 000000000..b294715ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available live tv services."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLiveTvInfo","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13getLiveTvInfo3Get7RequestVyAA0efG0VGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveTvInfo":{"role":"symbol","title":"getLiveTvInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available live tv services."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveTvInfo":{"role":"symbol","title":"LiveTvInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveTvInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveTvInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveTvInfo"}],"url":"\/documentation\/jellyfinapi\/livetvinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprograms(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprograms(parameters:).json new file mode 100644 index 000000000..25a5383e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprograms(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvPrograms"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV","text":"GetLiveTvProgramsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprograms(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvPrograms(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available live tv epgs."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLiveTvPrograms(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvPrograms"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLiveTvProgramsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17getLiveTvPrograms10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0iefG10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLiveTvPrograms(parameters:)":{"role":"symbol","title":"getLiveTvPrograms(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLiveTvPrograms"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLiveTvProgramsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available live tv epgs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLiveTvPrograms(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprograms(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters.json new file mode 100644 index 000000000..87da73e12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/init(channelIDs:userID:minStartDate:hasAired:isAiring:maxStartDate:minEndDate:maxEndDate:isMovie:isSeries:isNews:isKids:isSports:startIndex:limit:sortBy:sortOrder:genres:genreIDs:enableImages:imageTypeLimit:enableImageTypes:enableUserData:seriesTimerID:librarySeriesID:fields:enableTotalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/channelIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/genreIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/hasAired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isAiring","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/librarySeriesID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/maxEndDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/maxStartDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/minEndDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/minStartDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/seriesTimerID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isAiring":{"role":"symbol","title":"isAiring","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isAiring","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/isairing"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/maxStartDate":{"role":"symbol","title":"maxStartDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/maxStartDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/maxstartdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/hasAired":{"role":"symbol","title":"hasAired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/hasAired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/hasaired"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/minEndDate":{"role":"symbol","title":"minEndDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/minEndDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/minenddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/init(channelIDs:userID:minStartDate:hasAired:isAiring:maxStartDate:minEndDate:maxEndDate:isMovie:isSeries:isNews:isKids:isSports:startIndex:limit:sortBy:sortOrder:genres:genreIDs:enableImages:imageTypeLimit:enableImageTypes:enableUserData:seriesTimerID:librarySeriesID:fields:enableTotalRecordCount:)":{"role":"symbol","title":"init(channelIDs:userID:minStartDate:hasAired:isAiring:maxStartDate:minEndDate:maxEndDate:isMovie:isSeries:isNews:isKids:isSports:startIndex:limit:sortBy:sortOrder:genres:genreIDs:enableImages:imageTypeLimit:enableImageTypes:enableUserData:seriesTimerID:librarySeriesID:fields:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/init(channelIDs:userID:minStartDate:hasAired:isAiring:maxStartDate:minEndDate:maxEndDate:isMovie:isSeries:isNews:isKids:isSports:startIndex:limit:sortBy:sortOrder:genres:genreIDs:enableImages:imageTypeLimit:enableImageTypes:enableUserData:seriesTimerID:librarySeriesID:fields:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/init(channelids:userid:minstartdate:hasaired:isairing:maxstartdate:minenddate:maxenddate:ismovie:isseries:isnews:iskids:issports:startindex:limit:sortby:sortorder:genres:genreids:enableimages:imagetypelimit:enableimagetypes:enableuserdata:s-6smh6"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/minStartDate":{"role":"symbol","title":"minStartDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/minStartDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/minstartdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/channelIDs":{"role":"symbol","title":"channelIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/channelIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/channelids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/maxEndDate":{"role":"symbol","title":"maxEndDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/maxEndDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/maxenddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/librarySeriesID":{"role":"symbol","title":"librarySeriesID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/librarySeriesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/libraryseriesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enabletotalrecordcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/asquery.json new file mode 100644 index 000000000..667f965c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/channelids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/channelids.json new file mode 100644 index 000000000..80d013048 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/channelids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/channelids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/channelIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"channelIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV10channelIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/channelIDs":{"role":"symbol","title":"channelIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/channelIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/channelids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enableimages.json new file mode 100644 index 000000000..110b430ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enableimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enableimagetypes.json new file mode 100644 index 000000000..20a4a0426 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV16enableImageTypesSayAA0J4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..38bdee214 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enabletotalrecordcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enableuserdata.json new file mode 100644 index 000000000..9fab91dbb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/fields.json new file mode 100644 index 000000000..d1071102b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/genreids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/genreids.json new file mode 100644 index 000000000..a8228619d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/genreids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/genreids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/genreIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"genreIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV8genreIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/genres.json new file mode 100644 index 000000000..c75b5ec86 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"genres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV6genresSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/hasaired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/hasaired.json new file mode 100644 index 000000000..8e918d15f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/hasaired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/hasaired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/hasAired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasAired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV8hasAiredSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/hasAired":{"role":"symbol","title":"hasAired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/hasAired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/hasaired"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/imagetypelimit.json new file mode 100644 index 000000000..150c6e610 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/init(channelids:userid:minstartdate:hasaired:isairing:maxstartdate:minenddate:maxenddate:ismovie:isseries:isnews:iskids:issports:startindex:limit:sortby:sortorder:genres:genreids:enableimages:imagetypelimit:enableimagetypes:enableuserdata:s-6smh6.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/init(channelids:userid:minstartdate:hasaired:isairing:maxstartdate:minenddate:maxenddate:ismovie:isseries:isnews:iskids:issports:startindex:limit:sortby:sortorder:genres:genreids:enableimages:imagetypelimit:enableimagetypes:enableuserdata:s-6smh6.json new file mode 100644 index 000000000..467205e17 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/init(channelids:userid:minstartdate:hasaired:isairing:maxstartdate:minenddate:maxenddate:ismovie:isseries:isnews:iskids:issports:startindex:limit:sortby:sortorder:genres:genreids:enableimages:imagetypelimit:enableimagetypes:enableuserdata:s-6smh6.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/init(channelids:userid:minstartdate:hasaired:isairing:maxstartdate:minenddate:maxenddate:ismovie:isseries:isnews:iskids:issports:startindex:limit:sortby:sortorder:genres:genreids:enableimages:imagetypelimit:enableimagetypes:enableuserdata:s-6smh6"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/init(channelIDs:userID:minStartDate:hasAired:isAiring:maxStartDate:minEndDate:maxEndDate:isMovie:isSeries:isNews:isKids:isSports:startIndex:limit:sortBy:sortOrder:genres:genreIDs:enableImages:imageTypeLimit:enableImageTypes:enableUserData:seriesTimerID:librarySeriesID:fields:enableTotalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(channelIDs:userID:minStartDate:hasAired:isAiring:maxStartDate:minEndDate:maxEndDate:isMovie:isSeries:isNews:isKids:isSports:startIndex:limit:sortBy:sortOrder:genres:genreIDs:enableImages:imageTypeLimit:enableImageTypes:enableUserData:seriesTimerID:librarySeriesID:fields:enableTotalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV10channelIDs6userID12minStartDate8hasAired8isAiring03maxnO00m3EndO00tuO00R5Movie0R6Series0R4News0R4Kids0R6Sports10startIndex5limit6sortBy9sortOrder6genres05genreJ012enableImages14imageTypeLimit16enableImageTypes14enableUserData011seriesTimerL007librarywL06fields22enableTotalRecordCountAESay10Foundation4UUIDVGSg_A7_SgA5_0O0VSgSbSgA14_A13_A13_A13_A14_A14_A14_A14_A14_s5Int32VSgA17_SaySSGSgSayAA9SortOrderOGSgA19_A9_A14_A17_SayAA9ImageTypeOGSgA14_SSSgA10_SayAA10ItemFieldsOGSgA14_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/init(channelIDs:userID:minStartDate:hasAired:isAiring:maxStartDate:minEndDate:maxEndDate:isMovie:isSeries:isNews:isKids:isSports:startIndex:limit:sortBy:sortOrder:genres:genreIDs:enableImages:imageTypeLimit:enableImageTypes:enableUserData:seriesTimerID:librarySeriesID:fields:enableTotalRecordCount:)":{"role":"symbol","title":"init(channelIDs:userID:minStartDate:hasAired:isAiring:maxStartDate:minEndDate:maxEndDate:isMovie:isSeries:isNews:isKids:isSports:startIndex:limit:sortBy:sortOrder:genres:genreIDs:enableImages:imageTypeLimit:enableImageTypes:enableUserData:seriesTimerID:librarySeriesID:fields:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/init(channelIDs:userID:minStartDate:hasAired:isAiring:maxStartDate:minEndDate:maxEndDate:isMovie:isSeries:isNews:isKids:isSports:startIndex:limit:sortBy:sortOrder:genres:genreIDs:enableImages:imageTypeLimit:enableImageTypes:enableUserData:seriesTimerID:librarySeriesID:fields:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/init(channelids:userid:minstartdate:hasaired:isairing:maxstartdate:minenddate:maxenddate:ismovie:isseries:isnews:iskids:issports:startindex:limit:sortby:sortorder:genres:genreids:enableimages:imagetypelimit:enableimagetypes:enableuserdata:s-6smh6"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/isairing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/isairing.json new file mode 100644 index 000000000..2830c6874 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/isairing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/isairing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isAiring","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAiring","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV8isAiringSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isAiring":{"role":"symbol","title":"isAiring","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isAiring","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/isairing"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/iskids.json new file mode 100644 index 000000000..afc104dfa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/iskids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/ismovie.json new file mode 100644 index 000000000..51676798c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/isnews.json new file mode 100644 index 000000000..b949788d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/isseries.json new file mode 100644 index 000000000..b78bd6862 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/issports.json new file mode 100644 index 000000000..a64d6cf96 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/libraryseriesid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/libraryseriesid.json new file mode 100644 index 000000000..b01166872 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/libraryseriesid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/libraryseriesid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/librarySeriesID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"librarySeriesID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV15librarySeriesID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/librarySeriesID":{"role":"symbol","title":"librarySeriesID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"librarySeriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/librarySeriesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/libraryseriesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/limit.json new file mode 100644 index 000000000..4d44c5480 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/maxenddate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/maxenddate.json new file mode 100644 index 000000000..c4a7d6e42 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/maxenddate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/maxenddate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/maxEndDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"maxEndDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV10maxEndDate10Foundation0K0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/maxEndDate":{"role":"symbol","title":"maxEndDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/maxEndDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/maxenddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/maxstartdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/maxstartdate.json new file mode 100644 index 000000000..9e7a54842 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/maxstartdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/maxstartdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/maxStartDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"maxStartDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV12maxStartDate10Foundation0K0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/maxStartDate":{"role":"symbol","title":"maxStartDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/maxStartDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/maxstartdate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/minenddate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/minenddate.json new file mode 100644 index 000000000..ad7937939 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/minenddate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/minenddate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/minEndDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minEndDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV10minEndDate10Foundation0K0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/minEndDate":{"role":"symbol","title":"minEndDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minEndDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/minEndDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/minenddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/minstartdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/minstartdate.json new file mode 100644 index 000000000..9e6d50bad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/minstartdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/minstartdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/minStartDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minStartDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV12minStartDate10Foundation0K0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/minStartDate":{"role":"symbol","title":"minStartDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minStartDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/minStartDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/minstartdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/seriestimerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/seriestimerid.json new file mode 100644 index 000000000..f52f78403 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/seriestimerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/seriestimerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/seriesTimerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesTimerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV13seriesTimerIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/sortby.json new file mode 100644 index 000000000..6d7786e33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/sortorder.json new file mode 100644 index 000000000..34e1fc9b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV9sortOrderSayAA04SortJ0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/startindex.json new file mode 100644 index 000000000..a23d5ea8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/startindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/userid.json new file mode 100644 index 000000000..0cd463c5e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlivetvprogramsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetLiveTvProgramsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLiveTvProgramsParameters":{"role":"symbol","title":"Paths.GetLiveTvProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLiveTvProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLiveTvProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlivetvprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlocalizationoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlocalizationoptions.json new file mode 100644 index 000000000..5160d1f6d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlocalizationoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLocalizationOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption","preciseIdentifier":"s:11JellyfinAPI18LocalizationOptionV","text":"LocalizationOption"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlocalizationoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLocalizationOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets localization options."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLocalizationOptions","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLocalizationOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocalizationOption","preciseIdentifier":"s:11JellyfinAPI18LocalizationOptionV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22getLocalizationOptions3Get7RequestVySayAA0E6OptionVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLocalizationOptions":{"role":"symbol","title":"getLocalizationOptions","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLocalizationOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocalizationOption","preciseIdentifier":"s:11JellyfinAPI18LocalizationOptionV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets localization options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLocalizationOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlocalizationoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocalizationOption":{"role":"symbol","title":"LocalizationOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocalizationOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocalizationOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocalizationOption"}],"url":"\/documentation\/jellyfinapi\/localizationoption"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlocaltrailers(userid:itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlocaltrailers(userid:itemid:).json new file mode 100644 index 000000000..22bf8cb21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlocaltrailers(userid:itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLocalTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlocaltrailers(userid:itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLocalTrailers(userID:itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets local trailers for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLocalTrailers(userID:itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLocalTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16getLocalTrailers6userID04itemH03Get7RequestVySayAA11BaseItemDtoVGGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLocalTrailers(userID:itemID:)":{"role":"symbol","title":"getLocalTrailers(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLocalTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets local trailers for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLocalTrailers(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlocaltrailers(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentries(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentries(parameters:).json new file mode 100644 index 000000000..20019d64d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentries(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLogEntries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV","text":"GetLogEntriesParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlogentries(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLogEntries(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets activity log entries."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLogEntries(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLogEntries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLogEntriesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getLogEntries10parameters3Get7RequestVyAA08ActivityE16EntryQueryResultVGAC0heF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLogEntries(parameters:)":{"role":"symbol","title":"getLogEntries(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLogEntries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetLogEntriesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets activity log entries."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLogEntries(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentries(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ActivityLogEntryQueryResult":{"role":"symbol","title":"ActivityLogEntryQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ActivityLogEntryQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ActivityLogEntryQueryResult"}],"url":"\/documentation\/jellyfinapi\/activitylogentryqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters":{"role":"symbol","title":"Paths.GetLogEntriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLogEntriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters.json new file mode 100644 index 000000000..46c53eed4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlogentriesparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetLogEntriesParameters"}],"role":"symbol","title":"Paths.GetLogEntriesParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/init(startIndex:limit:minDate:hasUserID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/hasUserID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/minDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/startIndex"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/init(startIndex:limit:minDate:hasUserID:)":{"role":"symbol","title":"init(startIndex:limit:minDate:hasUserID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/init(startIndex:limit:minDate:hasUserID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/init(startindex:limit:mindate:hasuserid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/minDate":{"role":"symbol","title":"minDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/minDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/mindate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/hasUserID":{"role":"symbol","title":"hasUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/hasUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/hasuserid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters":{"role":"symbol","title":"Paths.GetLogEntriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLogEntriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/startindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/asquery.json new file mode 100644 index 000000000..16dcf3253 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters":{"role":"symbol","title":"Paths.GetLogEntriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLogEntriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/hasuserid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/hasuserid.json new file mode 100644 index 000000000..6a2339c57 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/hasuserid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/hasuserid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/hasUserID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasUserID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV9hasUserIDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/hasUserID":{"role":"symbol","title":"hasUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/hasUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/hasuserid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters":{"role":"symbol","title":"Paths.GetLogEntriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLogEntriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/init(startindex:limit:mindate:hasuserid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/init(startindex:limit:mindate:hasuserid:).json new file mode 100644 index 000000000..545428e98 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/init(startindex:limit:mindate:hasuserid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/init(startindex:limit:mindate:hasuserid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/init(startIndex:limit:minDate:hasUserID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(startIndex:limit:minDate:hasUserID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV10startIndex5limit7minDate9hasUserIDAEs5Int32VSg_AL10Foundation0L0VSgSbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/init(startIndex:limit:minDate:hasUserID:)":{"role":"symbol","title":"init(startIndex:limit:minDate:hasUserID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/init(startIndex:limit:minDate:hasUserID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/init(startindex:limit:mindate:hasuserid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters":{"role":"symbol","title":"Paths.GetLogEntriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLogEntriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/limit.json new file mode 100644 index 000000000..3f197dd28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters":{"role":"symbol","title":"Paths.GetLogEntriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLogEntriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/mindate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/mindate.json new file mode 100644 index 000000000..d78572f38 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/mindate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/mindate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/minDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV7minDate10Foundation0I0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/minDate":{"role":"symbol","title":"minDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/minDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/mindate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters":{"role":"symbol","title":"Paths.GetLogEntriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLogEntriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/startindex.json new file mode 100644 index 000000000..5178e63ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogentriesparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetLogEntriesParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters":{"role":"symbol","title":"Paths.GetLogEntriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetLogEntriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetLogEntriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetLogEntriesParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetLogEntriesParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogentriesparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogfile(name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogfile(name:).json new file mode 100644 index 000000000..1d278d4b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getlogfile(name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLogFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getlogfile(name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLogFile(name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a log file."}],"kind":"symbol","metadata":{"role":"symbol","title":"getLogFile(name:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLogFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10getLogFile4name3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getLogFile(name:)":{"role":"symbol","title":"getLogFile(name:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getLogFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a log file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getLogFile(name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getlogfile(name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylist(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylist(itemid:parameters:).json new file mode 100644 index 000000000..0250f0c03 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylist(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMasterHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV","text":"GetMasterHlsAudioPlaylistParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylist(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMasterHlsAudioPlaylist(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an audio hls playlist stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMasterHlsAudioPlaylist(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMasterHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMasterHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO25getMasterHlsAudioPlaylist6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC0lefgH10ParametersVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMasterHlsAudioPlaylist(itemID:parameters:)":{"role":"symbol","title":"getMasterHlsAudioPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMasterHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMasterHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio hls playlist stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMasterHlsAudioPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylist(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters.json new file mode 100644 index 000000000..a4de417f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableAdaptiveBitrateStreaming","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/enableAdaptiveBitrateStreaming":{"role":"symbol","title":"enableAdaptiveBitrateStreaming","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableAdaptiveBitrateStreaming","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/enableadaptivebitratestreaming"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxframerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..b05fdebcb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV05allowG10StreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..b8a12a464 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV20allowVideoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/allowvideostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/asquery.json new file mode 100644 index 000000000..4b3edaf50 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiobitrate.json new file mode 100644 index 000000000..709c8dbe9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiochannels.json new file mode 100644 index 000000000..3f6b9a0de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiocodec.json new file mode 100644 index 000000000..61cb6a3f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiosamplerate.json new file mode 100644 index 000000000..65bcd0f3b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiostreamindex.json new file mode 100644 index 000000000..fc0fd67f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/context-swift.property.json new file mode 100644 index 000000000..95ce1fce2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/context-swift.typealias.json new file mode 100644 index 000000000..06835d7ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetMasterHlsAudioPlaylistParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/cpucorelimit.json new file mode 100644 index 000000000..a0ea08c7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/cpucorelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/deviceid.json new file mode 100644 index 000000000..c491df108 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/deviceprofileid.json new file mode 100644 index 000000000..7aca06788 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/deviceprofileid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/enableadaptivebitratestreaming.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/enableadaptivebitratestreaming.json new file mode 100644 index 000000000..829bb7961 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/enableadaptivebitratestreaming.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/enableadaptivebitratestreaming"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableAdaptiveBitrateStreaming","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAdaptiveBitrateStreaming","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV30enableAdaptiveBitrateStreamingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/enableAdaptiveBitrateStreaming":{"role":"symbol","title":"enableAdaptiveBitrateStreaming","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableAdaptiveBitrateStreaming","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/enableadaptivebitratestreaming"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/enableautostreamcopy.json new file mode 100644 index 000000000..74705758a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV20enableAutoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..914ed25cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/framerate.json new file mode 100644 index 000000000..ace017e28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/height.json new file mode 100644 index 000000000..0b6775cf1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp.json new file mode 100644 index 000000000..d116c953e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV8isStatic6params3tag15deviceProfileID011playSessionP016segmentContainer0S6Length11minSegments011mediaSourceP00nP010audioCodec20enableAutoStreamCopy20allowVideoStreamCopy05allowG10StreamCopy0J19BreakOnNonKeyFrames0Z10SampleRate03maxG8BitDepth19maxStreamingBitrate0Z7BitRate0Z8Channels03maxG8Channels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height12videoBitRate19subtitleStreamIndex14subtitleMethod12maxRefFrames16maxVideoBitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic014transcodingMaxG8Channels12cpuCoreLimit010liveStreamP020enableMpegtsM2TsMode10videoCodec13subtitleCodec16transcodeReasons0Z11StreamIndex16videoStreamIndex7context13streamOptions30enableAdaptiveBitrateStreamingAESbSg_SSSgA28_A28_A28_A28_s5Int32VSgA31_SSA28_A28_A27_A27_A27_A27_A31_A31_A31_A31_A31_A31_A28_A28_SfSgA32_A27_s5Int64VSgA31_A31_A31_A31_AA22SubtitleDeliveryMethodOSgA31_A31_A27_A27_A27_A31_A31_A28_A27_A28_A28_A28_A31_A31_AA15EncodingContextOSgSDyS2SGSgA27_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..dec94c04a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/isbreakonnonkeyframes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/iscopytimestamps.json new file mode 100644 index 000000000..04b0cb20e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/isdeinterlace.json new file mode 100644 index 000000000..d7eee5ce1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/isstatic.json new file mode 100644 index 000000000..1bacea9de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/isstatic"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/level.json new file mode 100644 index 000000000..34396bb0c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/livestreamid.json new file mode 100644 index 000000000..039aaea96 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/livestreamid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..bd8913ad8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV03maxG8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxaudiobitdepth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxaudiochannels.json new file mode 100644 index 000000000..ffc4ec890 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV03maxG8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxframerate.json new file mode 100644 index 000000000..fd899f54e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxrefframes.json new file mode 100644 index 000000000..f84b5ede0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxrefframes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxstreamingbitrate.json new file mode 100644 index 000000000..22e6582ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxstreamingbitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxvideobitdepth.json new file mode 100644 index 000000000..d70f47f5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV16maxVideoBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/maxvideobitdepth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/mediasourceid.json new file mode 100644 index 000000000..91d183ef8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13mediaSourceIDSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/mediasourceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/minsegments.json new file mode 100644 index 000000000..0983bbe41 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/params.json new file mode 100644 index 000000000..10ae086ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/params"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/playsessionid.json new file mode 100644 index 000000000..63b3af4ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/playsessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/profile.json new file mode 100644 index 000000000..e8bc82f1c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/requireavc.json new file mode 100644 index 000000000..382a00c91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/requirenonanamorphic.json new file mode 100644 index 000000000..a67faea5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/segmentcontainer.json new file mode 100644 index 000000000..ba8706eec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/segmentcontainer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/segmentlength.json new file mode 100644 index 000000000..3cd05eb1e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/starttimeticks.json new file mode 100644 index 000000000..b62cf21bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/starttimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..5d37e10a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..e11243336 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetMasterHlsAudioPlaylistParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13StreamOptionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlecodec.json new file mode 100644 index 000000000..b43cecbc2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlecodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..f11c49a7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14subtitleMethodAA016SubtitleDeliveryK0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlemethod-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..f8b974282 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetMasterHlsAudioPlaylistParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlestreamindex.json new file mode 100644 index 000000000..39f284aee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/tag.json new file mode 100644 index 000000000..a918d7fec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/tag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/transcodereasons.json new file mode 100644 index 000000000..99e115a4f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..851637d42 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV014transcodingMaxG8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/videobitrate.json new file mode 100644 index 000000000..f186b374d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/videocodec.json new file mode 100644 index 000000000..fbf705068 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/videostreamindex.json new file mode 100644 index 000000000..c284f8272 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV16videoStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/videostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/width.json new file mode 100644 index 000000000..79125f6d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsaudioplaylistparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsAudioPlaylistParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsAudioPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsAudioPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsaudioplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylist(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylist(itemid:parameters:).json new file mode 100644 index 000000000..c2a62055b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylist(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMasterHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV","text":"GetMasterHlsVideoPlaylistParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylist(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMasterHlsVideoPlaylist(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a video hls playlist stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMasterHlsVideoPlaylist(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMasterHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMasterHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO25getMasterHlsVideoPlaylist6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC0lefgH10ParametersVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMasterHlsVideoPlaylist(itemID:parameters:)":{"role":"symbol","title":"getMasterHlsVideoPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMasterHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMasterHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video hls playlist stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMasterHlsVideoPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylist(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters.json new file mode 100644 index 000000000..ba2aaa613 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableAdaptiveBitrateStreaming","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/enableAdaptiveBitrateStreaming":{"role":"symbol","title":"enableAdaptiveBitrateStreaming","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableAdaptiveBitrateStreaming","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/enableadaptivebitratestreaming"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..dd026ce9c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV20allowAudioStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..06597734a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV05allowG10StreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/asquery.json new file mode 100644 index 000000000..9da5f5472 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiobitrate.json new file mode 100644 index 000000000..16128a528 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiochannels.json new file mode 100644 index 000000000..ad7b6f7da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiocodec.json new file mode 100644 index 000000000..ff8463c44 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiosamplerate.json new file mode 100644 index 000000000..68f5a464e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiostreamindex.json new file mode 100644 index 000000000..a0bc316a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/audiostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/context-swift.property.json new file mode 100644 index 000000000..7111135cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/context-swift.typealias.json new file mode 100644 index 000000000..46fb9d091 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetMasterHlsVideoPlaylistParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/cpucorelimit.json new file mode 100644 index 000000000..9150ad75e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/deviceid.json new file mode 100644 index 000000000..3078e5623 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/deviceprofileid.json new file mode 100644 index 000000000..3ebd31e68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/enableadaptivebitratestreaming.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/enableadaptivebitratestreaming.json new file mode 100644 index 000000000..26bf396d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/enableadaptivebitratestreaming.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/enableadaptivebitratestreaming"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableAdaptiveBitrateStreaming","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAdaptiveBitrateStreaming","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV30enableAdaptiveBitrateStreamingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/enableAdaptiveBitrateStreaming":{"role":"symbol","title":"enableAdaptiveBitrateStreaming","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableAdaptiveBitrateStreaming","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/enableadaptivebitratestreaming"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/enableautostreamcopy.json new file mode 100644 index 000000000..b050fe09e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV20enableAutoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/enableautostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..d3ff52a16 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/enablempegtsm2tsmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/framerate.json new file mode 100644 index 000000000..621c47296 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/height.json new file mode 100644 index 000000000..87ce930db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r.json new file mode 100644 index 000000000..174895229 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV8isStatic6params3tag15deviceProfileID011playSessionP016segmentContainer0S6Length11minSegments011mediaSourceP00nP010audioCodec20enableAutoStreamCopy05allowG10StreamCopy20allowAudioStreamCopy0J19BreakOnNonKeyFrames0Z10SampleRate16maxAudioBitDepth0Z7BitRate0Z8Channels16maxAudioChannels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height8maxWidth9maxHeight12videoBitRate19subtitleStreamIndex14subtitleMethod12maxRefFrames03maxG8BitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic27transcodingMaxAudioChannels12cpuCoreLimit010liveStreamP020enableMpegtsM2TsMode10videoCodec13subtitleCodec16transcodeReasons0Z11StreamIndex16videoStreamIndex7context13streamOptions30enableAdaptiveBitrateStreamingAESbSg_SSSgA29_A29_A29_A29_s5Int32VSgA32_SSA29_A29_A28_A28_A28_A28_A32_A32_A32_A32_A32_A29_A29_SfSgA33_A28_s5Int64VSgA32_A32_A32_A32_A32_A32_AA22SubtitleDeliveryMethodOSgA32_A32_A28_A28_A28_A32_A32_A29_A28_A29_A29_A29_A32_A32_AA15EncodingContextOSgSDyS2SGSgA28_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..2f2a3b925 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/iscopytimestamps.json new file mode 100644 index 000000000..b1e0f2e9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/isdeinterlace.json new file mode 100644 index 000000000..df60c386b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/isdeinterlace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/isstatic.json new file mode 100644 index 000000000..874960bac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/level.json new file mode 100644 index 000000000..f6a3dd3be --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/livestreamid.json new file mode 100644 index 000000000..cb0c5958b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/livestreamid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..c22d139e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV16maxAudioBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxaudiobitdepth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxaudiochannels.json new file mode 100644 index 000000000..46f5f1df4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxframerate.json new file mode 100644 index 000000000..d666bf118 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxheight.json new file mode 100644 index 000000000..aa055cf14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxrefframes.json new file mode 100644 index 000000000..631631b91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxvideobitdepth.json new file mode 100644 index 000000000..0c24c0ca0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV03maxG8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxwidth.json new file mode 100644 index 000000000..a01da0a4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/mediasourceid.json new file mode 100644 index 000000000..6ec4f2d30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13mediaSourceIDSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/minsegments.json new file mode 100644 index 000000000..b7383b35e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/params.json new file mode 100644 index 000000000..a36348bc3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/playsessionid.json new file mode 100644 index 000000000..e4d1bf1ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/profile.json new file mode 100644 index 000000000..86f7dc530 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/requireavc.json new file mode 100644 index 000000000..fc815ae07 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/requirenonanamorphic.json new file mode 100644 index 000000000..7f9d1cd17 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/segmentcontainer.json new file mode 100644 index 000000000..64f0672b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/segmentcontainer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/segmentlength.json new file mode 100644 index 000000000..c5ca3cf51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/starttimeticks.json new file mode 100644 index 000000000..8e288a7a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/starttimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..2e3a6178f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..3684c2288 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetMasterHlsVideoPlaylistParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13StreamOptionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlecodec.json new file mode 100644 index 000000000..3d6db7b16 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlecodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..cf9c6d760 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14subtitleMethodAA016SubtitleDeliveryK0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..f03599a28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetMasterHlsVideoPlaylistParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlestreamindex.json new file mode 100644 index 000000000..7fae75d93 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/tag.json new file mode 100644 index 000000000..f2f733fc5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/transcodereasons.json new file mode 100644 index 000000000..0c8f0dc45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..899c70058 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV27transcodingMaxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/videobitrate.json new file mode 100644 index 000000000..b30fca0e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/videobitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/videocodec.json new file mode 100644 index 000000000..c5d228469 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/videostreamindex.json new file mode 100644 index 000000000..7f07810ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV16videoStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/width.json new file mode 100644 index 000000000..fda751425 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmasterhlsvideoplaylistparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMasterHlsVideoPlaylistParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediafolders(ishidden:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediafolders(ishidden:).json new file mode 100644 index 000000000..56668979b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediafolders(ishidden:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaFolders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmediafolders(ishidden:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaFolders(isHidden:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all user media folders."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMediaFolders(isHidden:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaFolders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getMediaFolders8isHidden3Get7RequestVyAA22BaseItemDtoQueryResultVGSbSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaFolders(isHidden:)":{"role":"symbol","title":"getMediaFolders(isHidden:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaFolders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all user media folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaFolders(isHidden:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediafolders(ishidden:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediainfoimage(theme:name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediainfoimage(theme:name:).json new file mode 100644 index 000000000..e492ce719 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediainfoimage(theme:name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaInfoImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmediainfoimage(theme:name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaInfoImage(theme:name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get media info image."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMediaInfoImage(theme:name:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaInfoImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17getMediaInfoImage5theme4name3Get7RequestVy10Foundation4DataVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaInfoImage(theme:name:)":{"role":"symbol","title":"getMediaInfoImage(theme:name:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaInfoImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get media info image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaInfoImage(theme:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediainfoimage(theme:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediainfoimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediainfoimages.json new file mode 100644 index 000000000..3cea8744f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediainfoimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaInfoImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV","text":"ImageByNameInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmediainfoimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaInfoImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get all media info images."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMediaInfoImages","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaInfoImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18getMediaInfoImages3Get7RequestVySayAA011ImageByNameF0VGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaInfoImages":{"role":"symbol","title":"getMediaInfoImages","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaInfoImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all media info images."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaInfoImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediainfoimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediareceiverregistrar(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediareceiverregistrar(serverid:).json new file mode 100644 index 000000000..d09a89e52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediareceiverregistrar(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmediareceiverregistrar(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMediaReceiverRegistrar(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO25getMediaReceiverRegistrar8serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaReceiverRegistrar(serverID:)":{"role":"symbol","title":"getMediaReceiverRegistrar(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediareceiverregistrar(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediareceiverregistrar2(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediareceiverregistrar2(serverid:).json new file mode 100644 index 000000000..92c9defb2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediareceiverregistrar2(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmediareceiverregistrar2(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar2(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMediaReceiverRegistrar2(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26getMediaReceiverRegistrar28serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaReceiverRegistrar2(serverID:)":{"role":"symbol","title":"getMediaReceiverRegistrar2(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar2(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediareceiverregistrar2(serverid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediareceiverregistrar3(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediareceiverregistrar3(serverid:).json new file mode 100644 index 000000000..02cb4a6e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmediareceiverregistrar3(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmediareceiverregistrar3(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar3(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMediaReceiverRegistrar3(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26getMediaReceiverRegistrar38serverID3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMediaReceiverRegistrar3(serverID:)":{"role":"symbol","title":"getMediaReceiverRegistrar3(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMediaReceiverRegistrar3"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets Dlna media receiver registrar xml."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMediaReceiverRegistrar3(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmediareceiverregistrar3(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmetadataeditorinfo(itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmetadataeditorinfo(itemid:).json new file mode 100644 index 000000000..4c43279ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmetadataeditorinfo(itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMetadataEditorInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmetadataeditorinfo(itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMetadataEditorInfo(itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets metadata editor info for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMetadataEditorInfo(itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMetadataEditorInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getMetadataEditorInfo6itemID3Get7RequestVyAA0efG0VGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMetadataEditorInfo(itemID:)":{"role":"symbol","title":"getMetadataEditorInfo(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMetadataEditorInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets metadata editor info for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMetadataEditorInfo(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmetadataeditorinfo(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataEditorInfo":{"role":"symbol","title":"MetadataEditorInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataEditorInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataEditorInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataEditorInfo"}],"url":"\/documentation\/jellyfinapi\/metadataeditorinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendations(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendations(parameters:).json new file mode 100644 index 000000000..ee4cfc4a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendations(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMovieRecommendations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV","text":"GetMovieRecommendationsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","preciseIdentifier":"s:11JellyfinAPI17RecommendationDtoV","text":"RecommendationDto"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmovierecommendations(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMovieRecommendations(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets movie recommendations."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMovieRecommendations(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMovieRecommendations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMovieRecommendationsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RecommendationDto","preciseIdentifier":"s:11JellyfinAPI17RecommendationDtoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO23getMovieRecommendations10parameters3Get7RequestVySayAA17RecommendationDtoVGGAC0heF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters":{"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMovieRecommendations(parameters:)":{"role":"symbol","title":"getMovieRecommendations(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMovieRecommendations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMovieRecommendationsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RecommendationDto","preciseIdentifier":"s:11JellyfinAPI17RecommendationDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets movie recommendations."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMovieRecommendations(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendations(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto":{"role":"symbol","title":"RecommendationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationDto"}],"url":"\/documentation\/jellyfinapi\/recommendationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters.json new file mode 100644 index 000000000..adebf8e1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/init(userID:parentID:fields:categoryLimit:itemLimit:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/categoryLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/itemLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/categoryLimit":{"role":"symbol","title":"categoryLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"categoryLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/categoryLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/categorylimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/itemLimit":{"role":"symbol","title":"itemLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/itemLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/itemlimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters":{"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/init(userID:parentID:fields:categoryLimit:itemLimit:)":{"role":"symbol","title":"init(userID:parentID:fields:categoryLimit:itemLimit:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"categoryLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/init(userID:parentID:fields:categoryLimit:itemLimit:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/init(userid:parentid:fields:categorylimit:itemlimit:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/asquery.json new file mode 100644 index 000000000..ef12c101f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters":{"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/categorylimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/categorylimit.json new file mode 100644 index 000000000..d354bb059 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/categorylimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"categoryLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/categorylimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/categoryLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"categoryLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"categoryLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV13categoryLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters":{"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/categoryLimit":{"role":"symbol","title":"categoryLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"categoryLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/categoryLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/categorylimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/fields.json new file mode 100644 index 000000000..3a11c2280 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters":{"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/init(userid:parentid:fields:categorylimit:itemlimit:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/init(userid:parentid:fields:categorylimit:itemlimit:).json new file mode 100644 index 000000000..5c2ec5df7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/init(userid:parentid:fields:categorylimit:itemlimit:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"categoryLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/init(userid:parentid:fields:categorylimit:itemlimit:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/init(userID:parentID:fields:categoryLimit:itemLimit:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"categoryLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(userID:parentID:fields:categoryLimit:itemLimit:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV6userID06parentI06fields13categoryLimit04itemM0AE10Foundation4UUIDVSg_ANSayAA10ItemFieldsOGSgs5Int32VSgAUtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/init(userID:parentID:fields:categoryLimit:itemLimit:)":{"role":"symbol","title":"init(userID:parentID:fields:categoryLimit:itemLimit:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"categoryLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/init(userID:parentID:fields:categoryLimit:itemLimit:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/init(userid:parentid:fields:categorylimit:itemlimit:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters":{"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/itemlimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/itemlimit.json new file mode 100644 index 000000000..efd55e528 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/itemlimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/itemlimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/itemLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"itemLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV9itemLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/itemLimit":{"role":"symbol","title":"itemLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/itemLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/itemlimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters":{"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/parentid.json new file mode 100644 index 000000000..fd67860c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters":{"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/userid.json new file mode 100644 index 000000000..4f12dfcb7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovierecommendationsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetMovieRecommendationsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMovieRecommendationsParameters":{"role":"symbol","title":"Paths.GetMovieRecommendationsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMovieRecommendationsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMovieRecommendationsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmovierecommendationsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovieremotesearchresults(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovieremotesearchresults(_:).json new file mode 100644 index 000000000..01a993981 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmovieremotesearchresults(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMovieRemoteSearchResults"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV","text":"MovieInfoRemoteSearchQuery"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmovieremotesearchresults(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMovieRemoteSearchResults(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get movie remote search."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMovieRemoteSearchResults(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMovieRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MovieInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO27getMovieRemoteSearchResultsy3Get7RequestVySayAA0fG6ResultCGGAA0e4InfofG5QueryVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MovieInfoRemoteSearchQuery":{"role":"symbol","title":"MovieInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovieInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovieInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/movieinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMovieRemoteSearchResults(_:)":{"role":"symbol","title":"getMovieRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMovieRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MovieInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI26MovieInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get movie remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMovieRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmovieremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicalbumremotesearchresults(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicalbumremotesearchresults(_:).json new file mode 100644 index 000000000..cd92764a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicalbumremotesearchresults(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicAlbumRemoteSearchResults"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV","text":"AlbumInfoRemoteSearchQuery"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicalbumremotesearchresults(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicAlbumRemoteSearchResults(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get music album remote search."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMusicAlbumRemoteSearchResults(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicAlbumRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AlbumInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO32getMusicAlbumRemoteSearchResultsy3Get7RequestVySayAA0gH6ResultCGGAA0f4InfogH5QueryVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/AlbumInfoRemoteSearchQuery":{"role":"symbol","title":"AlbumInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AlbumInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AlbumInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/albuminforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicAlbumRemoteSearchResults(_:)":{"role":"symbol","title":"getMusicAlbumRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicAlbumRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"AlbumInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI26AlbumInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get music album remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicAlbumRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicalbumremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicartistremotesearchresults(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicartistremotesearchresults(_:).json new file mode 100644 index 000000000..c6598078d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicartistremotesearchresults(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicArtistRemoteSearchResults"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV","text":"ArtistInfoRemoteSearchQuery"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicartistremotesearchresults(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicArtistRemoteSearchResults(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get music artist remote search."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMusicArtistRemoteSearchResults(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicArtistRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ArtistInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO33getMusicArtistRemoteSearchResultsy3Get7RequestVySayAA0gH6ResultCGGAA0f4InfogH5QueryVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ArtistInfoRemoteSearchQuery":{"role":"symbol","title":"ArtistInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ArtistInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ArtistInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/artistinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicArtistRemoteSearchResults(_:)":{"role":"symbol","title":"getMusicArtistRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicArtistRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ArtistInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27ArtistInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get music artist remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicArtistRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicartistremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenre(genrename:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenre(genrename:userid:).json new file mode 100644 index 000000000..bc2388140 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenre(genrename:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenre"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genreName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenre(genrename:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenre(genreName:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a music genre, by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMusicGenre(genreName:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenre"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genreName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getMusicGenre9genreName6userID3Get7RequestVyAA11BaseItemDtoVGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicGenre(genreName:userID:)":{"role":"symbol","title":"getMusicGenre(genreName:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenre"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genreName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a music genre, by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenre(genreName:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenre(genrename:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimage(name:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimage(name:imagetype:parameters:).json new file mode 100644 index 000000000..c1001a0dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimage(name:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV","text":"GetMusicGenreImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimage(name:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenreImage(name:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get music genre image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMusicGenreImage(name:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMusicGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getMusicGenreImage4name9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC0lefG10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicGenreImage(name:imageType:parameters:)":{"role":"symbol","title":"getMusicGenreImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMusicGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get music genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenreImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindex(name:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindex(name:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..776c69efe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindex(name:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV","text":"GetMusicGenreImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindex(name:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get music genre image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMusicGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO25getMusicGenreImageByIndex4name9imageType0kI010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC0nefghI10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMusicGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get music genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters.json new file mode 100644 index 000000000..bc4fea6b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/asquery.json new file mode 100644 index 000000000..dcbc8c698 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..00a0a6e45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/blur.json new file mode 100644 index 000000000..d3c4081d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..7672444aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/fillheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..d56fe6b83 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/fillwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..5f41c4a29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..93dd0ab8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6formatAA0G6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..9bb506fae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetMusicGenreImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/height.json new file mode 100644 index 000000000..2036b33f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..623762bf4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV3tag6format8maxWidth0M6Height13percentPlayed13unplayedCount5width6height7quality04fillN00wO016isCropWhitespace0x3AddQ9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0G6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..c60670072 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..a32025690 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..05dea6d75 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..7f190d85d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/maxwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..3ce0a60f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/quality.json new file mode 100644 index 000000000..70f8d33b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/tag.json new file mode 100644 index 000000000..6f2c26dcd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/tag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..7d1c27a88 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/width.json new file mode 100644 index 000000000..cc8cdec6d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetMusicGenreImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters.json new file mode 100644 index 000000000..b11c22ff7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"role":"symbol","title":"Paths.GetMusicGenreImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/tag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/asquery.json new file mode 100644 index 000000000..3356277a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/backgroundcolor.json new file mode 100644 index 000000000..77d9b0256 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/blur.json new file mode 100644 index 000000000..8ea4f3b72 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/blur"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/fillheight.json new file mode 100644 index 000000000..dae3b1ff0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/fillwidth.json new file mode 100644 index 000000000..9597047bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/foregroundlayer.json new file mode 100644 index 000000000..cb5d35a37 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/format-swift.property.json new file mode 100644 index 000000000..dd767806d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6formatAA0G6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..12cee5c58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetMusicGenreImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/height.json new file mode 100644 index 000000000..683d3bf45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/imageindex.json new file mode 100644 index 000000000..48a478c56 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..8ce3cdcdf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV3tag6format8maxWidth0K6Height13percentPlayed13unplayedCount5width6height7quality04fillL00uM016isCropWhitespace0v3AddO9Indicator4blur15backgroundColor15foregroundLayer10imageIndexAESSSg_AA0G6FormatOSgs5Int32VSgA1_SdSgA1_A1_A1_A1_A1_A1_SbSgA3_A1_A2WA1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..1d69de8b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..05606509b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/maxheight.json new file mode 100644 index 000000000..c6c171659 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/maxwidth.json new file mode 100644 index 000000000..97a2786b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/percentplayed.json new file mode 100644 index 000000000..fa186d3cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/quality.json new file mode 100644 index 000000000..cdbb05a40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/tag.json new file mode 100644 index 000000000..3018fd576 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/unplayedcount.json new file mode 100644 index 000000000..99c67db8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/width.json new file mode 100644 index 000000000..f266adc70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenreimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetMusicGenreImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters":{"role":"symbol","title":"Paths.GetMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenreImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenreImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenreimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenres(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenres(parameters:).json new file mode 100644 index 000000000..c620a1bf9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenres(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenres"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV","text":"GetMusicGenresParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenres(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenres(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all music genres from a given item, folder, or the entire library."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"getMusicGenres(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenres"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMusicGenresParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getMusicGenres10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0heF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","platforms":[]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated"}]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicGenres(parameters:)":{"role":"symbol","title":"getMusicGenres(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicGenres"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetMusicGenresParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all music genres from a given item, folder, or the entire library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicGenres(parameters:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenres(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters.json new file mode 100644 index 000000000..1aee155ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"role":"symbol","title":"Paths.GetMusicGenresParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameLessThan","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameStartsWith","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameStartsWithOrGreater","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)":{"role":"symbol","title":"init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/excludeitemtypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/asquery.json new file mode 100644 index 000000000..c87d7916d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/enableimages.json new file mode 100644 index 000000000..de7c8adaa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/enableimagetypes.json new file mode 100644 index 000000000..443578b5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV16enableImageTypesSayAA0I4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..a13b0f606 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/excludeitemtypes.json new file mode 100644 index 000000000..a4ffa650e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV16excludeItemTypesSayAA04BaseI4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/fields.json new file mode 100644 index 000000000..768d55c8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/imagetypelimit.json new file mode 100644 index 000000000..289735ef2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/includeitemtypes.json new file mode 100644 index 000000000..3fa5c69eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV16includeItemTypesSayAA04BaseI4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:).json new file mode 100644 index 000000000..0a330452b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV10startIndex5limit10searchTerm8parentID6fields16excludeItemTypes07includeqR010isFavorite14imageTypeLimit011enableImageR004userN023nameStartsWithOrGreater14nameStartsWith12nameLessThan6sortBy9sortOrder0Y6Images0Y16TotalRecordCountAEs5Int32VSg_AZSSSg10Foundation4UUIDVSgSayAA0Q6FieldsOGSgSayAA04BaseQ4KindOGSgA11_SbSgAZSayAA0zW0OGSgA3_A_A_A_SaySSGSgSayAA9SortOrderOGSgA12_A12_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)":{"role":"symbol","title":"init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:sortBy:sortOrder:enableImages:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:sortby:sortorder:enableimages:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/isfavorite.json new file mode 100644 index 000000000..e8b045e83 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/limit.json new file mode 100644 index 000000000..df59c8333 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/namelessthan.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/namelessthan.json new file mode 100644 index 000000000..ff66dbc2d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/namelessthan.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/namelessthan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameLessThan","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameLessThan","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV12nameLessThanSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/namestartswith.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/namestartswith.json new file mode 100644 index 000000000..9c1192cd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/namestartswith.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/namestartswith"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameStartsWith","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWith","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV14nameStartsWithSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/namestartswithorgreater.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/namestartswithorgreater.json new file mode 100644 index 000000000..65e655d2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/namestartswithorgreater.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/namestartswithorgreater"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameStartsWithOrGreater","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWithOrGreater","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV23nameStartsWithOrGreaterSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/parentid.json new file mode 100644 index 000000000..f52bc3078 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/searchterm.json new file mode 100644 index 000000000..67399a325 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV10searchTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/sortby.json new file mode 100644 index 000000000..858022cbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/sortorder.json new file mode 100644 index 000000000..705a70069 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV9sortOrderSayAA04SortI0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/startindex.json new file mode 100644 index 000000000..b7c7cdbb6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/userid.json new file mode 100644 index 000000000..91aa4eb69 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicgenresparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetMusicGenresParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters":{"role":"symbol","title":"Paths.GetMusicGenresParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetMusicGenresParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetMusicGenresParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetMusicGenresParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetMusicGenresParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicgenresparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicvideoremotesearchresults(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicvideoremotesearchresults(_:).json new file mode 100644 index 000000000..44ed28fc0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getmusicvideoremotesearchresults(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicVideoRemoteSearchResults"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV","text":"MusicVideoInfoRemoteSearchQuery"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getmusicvideoremotesearchresults(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicVideoRemoteSearchResults(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get music video remote search."}],"kind":"symbol","metadata":{"role":"symbol","title":"getMusicVideoRemoteSearchResults(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicVideoRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MusicVideoInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO32getMusicVideoRemoteSearchResultsy3Get7RequestVySayAA0gH6ResultCGGAA0ef4InfogH5QueryVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/MusicVideoInfoRemoteSearchQuery":{"role":"symbol","title":"MusicVideoInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MusicVideoInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MusicVideoInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/musicvideoinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getMusicVideoRemoteSearchResults(_:)":{"role":"symbol","title":"getMusicVideoRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getMusicVideoRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MusicVideoInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI31MusicVideoInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get music video remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getMusicVideoRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getmusicvideoremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnamedconfiguration(key:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnamedconfiguration(key:).json new file mode 100644 index 000000000..c4c903765 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnamedconfiguration(key:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNamedConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnamedconfiguration(key:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNamedConfiguration(key:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a named configuration."}],"kind":"symbol","metadata":{"role":"symbol","title":"getNamedConfiguration(key:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNamedConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getNamedConfiguration3key3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNamedConfiguration(key:)":{"role":"symbol","title":"getNamedConfiguration(key:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNamedConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a named configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNamedConfiguration(key:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnamedconfiguration(key:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnetworkshares.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnetworkshares.json new file mode 100644 index 000000000..ad0a5724b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnetworkshares.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNetworkShares"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV","text":"FileSystemEntryInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnetworkshares"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNetworkShares","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets network paths."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"getNetworkShares","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNetworkShares"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO16getNetworkShares3Get7RequestVySayAA19FileSystemEntryInfoVGGvpZ","extendedModule":"JellyfinAPI","platforms":[]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated"}]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNetworkShares":{"role":"symbol","title":"getNetworkShares","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNetworkShares"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"FileSystemEntryInfo","preciseIdentifier":"s:11JellyfinAPI19FileSystemEntryInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets network paths."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNetworkShares","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getnetworkshares"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/FileSystemEntryInfo":{"role":"symbol","title":"FileSystemEntryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSystemEntryInfo"}],"abstract":[{"type":"text","text":"Class FileSystemEntryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FileSystemEntryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSystemEntryInfo"}],"url":"\/documentation\/jellyfinapi\/filesystementryinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextup(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextup(parameters:).json new file mode 100644 index 000000000..d3258abe0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextup(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNextUp"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetNextUpParametersV","text":"GetNextUpParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextup(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNextUp(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a list of next up episodes."}],"kind":"symbol","metadata":{"role":"symbol","title":"getNextUp(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNextUp"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetNextUpParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetNextUpParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9getNextUp10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0heF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNextUp(parameters:)":{"role":"symbol","title":"getNextUp(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNextUp"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetNextUpParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetNextUpParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a list of next up episodes."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNextUp(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextup(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters.json new file mode 100644 index 000000000..51df4f1f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"role":"symbol","title":"Paths.GetNextUpParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/init(userID:startIndex:limit:fields:seriesID:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:nextUpDateCutoff:enableTotalRecordCount:isDisableFirstEpisode:enableRewatching:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableRewatching","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/isDisableFirstEpisode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/nextUpDateCutoff","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/seriesID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/init(userID:startIndex:limit:fields:seriesID:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:nextUpDateCutoff:enableTotalRecordCount:isDisableFirstEpisode:enableRewatching:)":{"role":"symbol","title":"init(userID:startIndex:limit:fields:seriesID:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:nextUpDateCutoff:enableTotalRecordCount:isDisableFirstEpisode:enableRewatching:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nextUpDateCutoff"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisableFirstEpisode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRewatching"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/init(userID:startIndex:limit:fields:seriesID:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:nextUpDateCutoff:enableTotalRecordCount:isDisableFirstEpisode:enableRewatching:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/init(userid:startindex:limit:fields:seriesid:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:nextupdatecutoff:enabletotalrecordcount:isdisablefirstepisode:enablerewatching:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/enableRewatching":{"role":"symbol","title":"enableRewatching","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRewatching"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableRewatching","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enablerewatching"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/seriesID":{"role":"symbol","title":"seriesID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/seriesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/seriesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/nextUpDateCutoff":{"role":"symbol","title":"nextUpDateCutoff","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextUpDateCutoff"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/nextUpDateCutoff","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/nextupdatecutoff"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/isDisableFirstEpisode":{"role":"symbol","title":"isDisableFirstEpisode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisableFirstEpisode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/isDisableFirstEpisode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/isdisablefirstepisode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/asquery.json new file mode 100644 index 000000000..8fe2c4566 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enableimages.json new file mode 100644 index 000000000..7be8f9785 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enableimagetypes.json new file mode 100644 index 000000000..4b2da8212 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV16enableImageTypesSayAA0I4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enablerewatching.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enablerewatching.json new file mode 100644 index 000000000..15b9c208f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enablerewatching.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRewatching"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enablerewatching"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableRewatching","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRewatching"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableRewatching","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV16enableRewatchingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/enableRewatching":{"role":"symbol","title":"enableRewatching","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRewatching"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableRewatching","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enablerewatching"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..b514731b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enableuserdata.json new file mode 100644 index 000000000..bf2bf9798 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/enableuserdata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/fields.json new file mode 100644 index 000000000..3fd004353 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/imagetypelimit.json new file mode 100644 index 000000000..38b42a078 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/init(userid:startindex:limit:fields:seriesid:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:nextupdatecutoff:enabletotalrecordcount:isdisablefirstepisode:enablerewatching:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/init(userid:startindex:limit:fields:seriesid:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:nextupdatecutoff:enabletotalrecordcount:isdisablefirstepisode:enablerewatching:).json new file mode 100644 index 000000000..279bc901b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/init(userid:startindex:limit:fields:seriesid:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:nextupdatecutoff:enabletotalrecordcount:isdisablefirstepisode:enablerewatching:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nextUpDateCutoff"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDisableFirstEpisode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableRewatching"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/init(userid:startindex:limit:fields:seriesid:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:nextupdatecutoff:enabletotalrecordcount:isdisablefirstepisode:enablerewatching:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/init(userID:startIndex:limit:fields:seriesID:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:nextUpDateCutoff:enableTotalRecordCount:isDisableFirstEpisode:enableRewatching:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nextUpDateCutoff"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisableFirstEpisode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRewatching"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(userID:startIndex:limit:fields:seriesID:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:nextUpDateCutoff:enableTotalRecordCount:isDisableFirstEpisode:enableRewatching:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV6userID10startIndex5limit6fields06seriesI006parentI012enableImages14imageTypeLimit0P10ImageTypes0P8UserData04nextF10DateCutoff0P16TotalRecordCount21isDisableFirstEpisode0P10RewatchingAE10Foundation4UUIDVSg_s5Int32VSgAZSayAA10ItemFieldsOGSgSSSgAWSbSgAZSayAA0uS0OGSgA4_AT0Z0VSgA4_A4_A4_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/init(userID:startIndex:limit:fields:seriesID:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:nextUpDateCutoff:enableTotalRecordCount:isDisableFirstEpisode:enableRewatching:)":{"role":"symbol","title":"init(userID:startIndex:limit:fields:seriesID:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:nextUpDateCutoff:enableTotalRecordCount:isDisableFirstEpisode:enableRewatching:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nextUpDateCutoff"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisableFirstEpisode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRewatching"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/init(userID:startIndex:limit:fields:seriesID:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:nextUpDateCutoff:enableTotalRecordCount:isDisableFirstEpisode:enableRewatching:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/init(userid:startindex:limit:fields:seriesid:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:nextupdatecutoff:enabletotalrecordcount:isdisablefirstepisode:enablerewatching:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/isdisablefirstepisode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/isdisablefirstepisode.json new file mode 100644 index 000000000..ee2fe9eed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/isdisablefirstepisode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisableFirstEpisode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/isdisablefirstepisode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/isDisableFirstEpisode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisableFirstEpisode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDisableFirstEpisode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV21isDisableFirstEpisodeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/isDisableFirstEpisode":{"role":"symbol","title":"isDisableFirstEpisode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisableFirstEpisode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/isDisableFirstEpisode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/isdisablefirstepisode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/limit.json new file mode 100644 index 000000000..0d627baa1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/nextupdatecutoff.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/nextupdatecutoff.json new file mode 100644 index 000000000..c2b032b2c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/nextupdatecutoff.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextUpDateCutoff"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/nextupdatecutoff"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/nextUpDateCutoff","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextUpDateCutoff"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"nextUpDateCutoff","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV04nextF10DateCutoff10Foundation0I0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/nextUpDateCutoff":{"role":"symbol","title":"nextUpDateCutoff","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextUpDateCutoff"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/nextUpDateCutoff","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/nextupdatecutoff"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/parentid.json new file mode 100644 index 000000000..4e2288539 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/seriesid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/seriesid.json new file mode 100644 index 000000000..4a1817204 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/seriesid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/seriesid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/seriesID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV8seriesIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/seriesID":{"role":"symbol","title":"seriesID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/seriesID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/seriesid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/startindex.json new file mode 100644 index 000000000..9a0e617a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/startindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/userid.json new file mode 100644 index 000000000..0e352f126 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnextupparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnextupparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetNextUpParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetNextUpParameters":{"role":"symbol","title":"Paths.GetNextUpParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetNextUpParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetNextUpParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetNextUpParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getnextupparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotifications(userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotifications(userid:).json new file mode 100644 index 000000000..d1059c956 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotifications(userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotifications"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnotifications(userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotifications(userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a user’s notifications."}],"kind":"symbol","metadata":{"role":"symbol","title":"getNotifications(userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotifications"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16getNotifications6userID3Get7RequestVyAA21NotificationResultDtoVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationResultDto":{"role":"symbol","title":"NotificationResultDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationResultDto"}],"abstract":[{"type":"text","text":"A list of notifications with the total record count for pagination."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationResultDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationResultDto"}],"url":"\/documentation\/jellyfinapi\/notificationresultdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNotifications(userID:)":{"role":"symbol","title":"getNotifications(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotifications"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a user’s notifications."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotifications(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnotifications(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotificationservices.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotificationservices.json new file mode 100644 index 000000000..192816072 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotificationservices.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV","text":"NameIDPair"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnotificationservices"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationServices","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets notification services."}],"kind":"symbol","metadata":{"role":"symbol","title":"getNotificationServices","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23getNotificationServices3Get7RequestVySayAA10NameIDPairVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNotificationServices":{"role":"symbol","title":"getNotificationServices","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets notification services."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationServices","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnotificationservices"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotificationssummary(userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotificationssummary(userid:).json new file mode 100644 index 000000000..d527be999 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotificationssummary(userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationsSummary"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnotificationssummary(userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationsSummary(userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a user’s notification summary."}],"kind":"symbol","metadata":{"role":"symbol","title":"getNotificationsSummary(userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationsSummary"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO23getNotificationsSummary6userID3Get7RequestVyAA0eF3DtoVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNotificationsSummary(userID:)":{"role":"symbol","title":"getNotificationsSummary(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationsSummary"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a user’s notification summary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationsSummary(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnotificationssummary(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationsSummaryDto":{"role":"symbol","title":"NotificationsSummaryDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationsSummaryDto"}],"abstract":[{"type":"text","text":"The notification summary DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationsSummaryDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationsSummaryDto"}],"url":"\/documentation\/jellyfinapi\/notificationssummarydto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotificationtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotificationtypes.json new file mode 100644 index 000000000..ebfa58b46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getnotificationtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","preciseIdentifier":"s:11JellyfinAPI20NotificationTypeInfoV","text":"NotificationTypeInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getnotificationtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets notification types."}],"kind":"symbol","metadata":{"role":"symbol","title":"getNotificationTypes","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NotificationTypeInfo","preciseIdentifier":"s:11JellyfinAPI20NotificationTypeInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20getNotificationTypes3Get7RequestVySayAA0E8TypeInfoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NotificationTypeInfo":{"role":"symbol","title":"NotificationTypeInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NotificationTypeInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NotificationTypeInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NotificationTypeInfo"}],"url":"\/documentation\/jellyfinapi\/notificationtypeinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getNotificationTypes":{"role":"symbol","title":"getNotificationTypes","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getNotificationTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NotificationTypeInfo","preciseIdentifier":"s:11JellyfinAPI20NotificationTypeInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets notification types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getNotificationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getnotificationtypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpackageinfo(name:assemblyguid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpackageinfo(name:assemblyguid:).json new file mode 100644 index 000000000..da7d04704 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpackageinfo(name:assemblyguid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPackageInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpackageinfo(name:assemblyguid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPackageInfo(name:assemblyGuid:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a package by name or assembly GUID."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPackageInfo(name:assemblyGuid:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPackageInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getPackageInfo4name12assemblyGuid3Get7RequestVyAA0eF0VGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPackageInfo(name:assemblyGuid:)":{"role":"symbol","title":"getPackageInfo(name:assemblyGuid:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPackageInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a package by name or assembly GUID."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPackageInfo(name:assemblyGuid:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpackageinfo(name:assemblyguid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpackages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpackages.json new file mode 100644 index 000000000..9744581ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpackages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPackages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV","text":"PackageInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpackages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPackages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available packages."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPackages","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPackages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO11getPackages3Get7RequestVySayAA11PackageInfoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPackages":{"role":"symbol","title":"getPackages","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPackages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PackageInfo","preciseIdentifier":"s:11JellyfinAPI11PackageInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets available packages."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPackages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpackages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/PackageInfo":{"role":"symbol","title":"PackageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PackageInfo"}],"abstract":[{"type":"text","text":"Class PackageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PackageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PackageInfo"}],"url":"\/documentation\/jellyfinapi\/packageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters.json new file mode 100644 index 000000000..e5ac21985 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"role":"symbol","title":"Paths.GetParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO13GetParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/init(startIndex:limit:userID:searchTerm:includeItemTypes:excludeItemTypes:mediaTypes:parentID:isMovie:isSeries:isNews:isKids:isSports:isIncludePeople:isIncludeMedia:isIncludeGenres:isIncludeStudios:isIncludeArtists:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeArtists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeGenres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeMedia","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludePeople","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeStudios","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/mediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/init(startIndex:limit:userID:searchTerm:includeItemTypes:excludeItemTypes:mediaTypes:parentID:isMovie:isSeries:isNews:isKids:isSports:isIncludePeople:isIncludeMedia:isIncludeGenres:isIncludeStudios:isIncludeArtists:)":{"role":"symbol","title":"init(startIndex:limit:userID:searchTerm:includeItemTypes:excludeItemTypes:mediaTypes:parentID:isMovie:isSeries:isNews:isKids:isSports:isIncludePeople:isIncludeMedia:isIncludeGenres:isIncludeStudios:isIncludeArtists:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludePeople"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeGenres"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeStudios"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeArtists"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/init(startIndex:limit:userID:searchTerm:includeItemTypes:excludeItemTypes:mediaTypes:parentID:isMovie:isSeries:isNews:isKids:isSports:isIncludePeople:isIncludeMedia:isIncludeGenres:isIncludeStudios:isIncludeArtists:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/init(startindex:limit:userid:searchterm:includeitemtypes:excludeitemtypes:mediatypes:parentid:ismovie:isseries:isnews:iskids:issports:isincludepeople:isincludemedia:isincludegenres:isincludestudios:isincludeartists:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isIncludePeople":{"role":"symbol","title":"isIncludePeople","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludePeople"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludePeople","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isincludepeople"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isIncludeStudios":{"role":"symbol","title":"isIncludeStudios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeStudios"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeStudios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isincludestudios"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isIncludeGenres":{"role":"symbol","title":"isIncludeGenres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeGenres"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeGenres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isincludegenres"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isIncludeArtists":{"role":"symbol","title":"isIncludeArtists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeArtists"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeArtists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isincludeartists"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isIncludeMedia":{"role":"symbol","title":"isIncludeMedia","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeMedia","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isincludemedia"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/asquery.json new file mode 100644 index 000000000..011bbb86f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/excludeitemtypes.json new file mode 100644 index 000000000..c80e3f33f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV16excludeItemTypesSayAA04BaseG4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/includeitemtypes.json new file mode 100644 index 000000000..8cf25af1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV16includeItemTypesSayAA04BaseG4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/init(startindex:limit:userid:searchterm:includeitemtypes:excludeitemtypes:mediatypes:parentid:ismovie:isseries:isnews:iskids:issports:isincludepeople:isincludemedia:isincludegenres:isincludestudios:isincludeartists:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/init(startindex:limit:userid:searchterm:includeitemtypes:excludeitemtypes:mediatypes:parentid:ismovie:isseries:isnews:iskids:issports:isincludepeople:isincludemedia:isincludegenres:isincludestudios:isincludeartists:).json new file mode 100644 index 000000000..e96fef37f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/init(startindex:limit:userid:searchterm:includeitemtypes:excludeitemtypes:mediatypes:parentid:ismovie:isseries:isnews:iskids:issports:isincludepeople:isincludemedia:isincludegenres:isincludestudios:isincludeartists:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIncludePeople"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIncludeMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIncludeGenres"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIncludeStudios"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIncludeArtists"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/init(startindex:limit:userid:searchterm:includeitemtypes:excludeitemtypes:mediatypes:parentid:ismovie:isseries:isnews:iskids:issports:isincludepeople:isincludemedia:isincludegenres:isincludestudios:isincludeartists:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/init(startIndex:limit:userID:searchTerm:includeItemTypes:excludeItemTypes:mediaTypes:parentID:isMovie:isSeries:isNews:isKids:isSports:isIncludePeople:isIncludeMedia:isIncludeGenres:isIncludeStudios:isIncludeArtists:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludePeople"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeGenres"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeStudios"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeArtists"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(startIndex:limit:userID:searchTerm:includeItemTypes:excludeItemTypes:mediaTypes:parentID:isMovie:isSeries:isNews:isKids:isSports:isIncludePeople:isIncludeMedia:isIncludeGenres:isIncludeStudios:isIncludeArtists:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO13GetParametersV10startIndex5limit6userID10searchTerm16includeItemTypes07excludenO005mediaO006parentJ07isMovie0S6Series0S4News0S4Kids0S6Sports0S13IncludePeople0sY5Media0sY6Genres0sY7Studios0sY7ArtistsAEs5Int32VSg_AZ10Foundation4UUIDVSgSSSayAA04BaseN4KindOGSgA6_SaySSGSgA2_SbSgA9_A9_A9_A9_A9_A9_A9_A9_A9_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/init(startIndex:limit:userID:searchTerm:includeItemTypes:excludeItemTypes:mediaTypes:parentID:isMovie:isSeries:isNews:isKids:isSports:isIncludePeople:isIncludeMedia:isIncludeGenres:isIncludeStudios:isIncludeArtists:)":{"role":"symbol","title":"init(startIndex:limit:userID:searchTerm:includeItemTypes:excludeItemTypes:mediaTypes:parentID:isMovie:isSeries:isNews:isKids:isSports:isIncludePeople:isIncludeMedia:isIncludeGenres:isIncludeStudios:isIncludeArtists:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludePeople"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeGenres"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeStudios"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeArtists"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/init(startIndex:limit:userID:searchTerm:includeItemTypes:excludeItemTypes:mediaTypes:parentID:isMovie:isSeries:isNews:isKids:isSports:isIncludePeople:isIncludeMedia:isIncludeGenres:isIncludeStudios:isIncludeArtists:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/init(startindex:limit:userid:searchterm:includeitemtypes:excludeitemtypes:mediatypes:parentid:ismovie:isseries:isnews:iskids:issports:isincludepeople:isincludemedia:isincludegenres:isincludestudios:isincludeartists:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludeartists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludeartists.json new file mode 100644 index 000000000..532542eda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludeartists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeArtists"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/isincludeartists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeArtists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeArtists"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeArtists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV16isIncludeArtistsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isIncludeArtists":{"role":"symbol","title":"isIncludeArtists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeArtists"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeArtists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isincludeartists"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludegenres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludegenres.json new file mode 100644 index 000000000..d308b1d03 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludegenres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeGenres"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/isincludegenres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeGenres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeGenres"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeGenres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV15isIncludeGenresSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isIncludeGenres":{"role":"symbol","title":"isIncludeGenres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeGenres"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeGenres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isincludegenres"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludemedia.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludemedia.json new file mode 100644 index 000000000..4622c3367 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludemedia.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/isincludemedia"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeMedia","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeMedia","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV14isIncludeMediaSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isIncludeMedia":{"role":"symbol","title":"isIncludeMedia","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeMedia","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isincludemedia"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludepeople.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludepeople.json new file mode 100644 index 000000000..c9df845b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludepeople.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludePeople"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/isincludepeople"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludePeople","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludePeople"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludePeople","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV15isIncludePeopleSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isIncludePeople":{"role":"symbol","title":"isIncludePeople","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludePeople"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludePeople","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isincludepeople"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludestudios.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludestudios.json new file mode 100644 index 000000000..cb312d935 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isincludestudios.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeStudios"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/isincludestudios"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeStudios","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeStudios"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeStudios","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV16isIncludeStudiosSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isIncludeStudios":{"role":"symbol","title":"isIncludeStudios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeStudios"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isIncludeStudios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isincludestudios"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/iskids.json new file mode 100644 index 000000000..7a7dbf37a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/ismovie.json new file mode 100644 index 000000000..246cdc58b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isnews.json new file mode 100644 index 000000000..5c369faae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isseries.json new file mode 100644 index 000000000..44ccc9d21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/issports.json new file mode 100644 index 000000000..e225b4120 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/issports"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/limit.json new file mode 100644 index 000000000..2ab40a74b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/mediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/mediatypes.json new file mode 100644 index 000000000..643c3effb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/mediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/mediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/mediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV10mediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/parentid.json new file mode 100644 index 000000000..667b2b3a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/parentid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/searchterm.json new file mode 100644 index 000000000..6781083da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV10searchTermSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/startindex.json new file mode 100644 index 000000000..f0904be2f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/startindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/userid.json new file mode 100644 index 000000000..d33065a9b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13GetParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetParameters":{"role":"symbol","title":"Paths.GetParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparentalratings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparentalratings.json new file mode 100644 index 000000000..24a63e4e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparentalratings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getParentalRatings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV","text":"ParentalRating"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparentalratings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getParentalRatings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets known parental ratings."}],"kind":"symbol","metadata":{"role":"symbol","title":"getParentalRatings","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getParentalRatings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18getParentalRatings3Get7RequestVySayAA0E6RatingVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ParentalRating":{"role":"symbol","title":"ParentalRating","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ParentalRating"}],"abstract":[{"type":"text","text":"Class ParentalRating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ParentalRating","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ParentalRating"}],"url":"\/documentation\/jellyfinapi\/parentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getParentalRatings":{"role":"symbol","title":"getParentalRatings","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getParentalRatings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ParentalRating","preciseIdentifier":"s:11JellyfinAPI14ParentalRatingV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets known parental ratings."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getParentalRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparentalratings"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparentpath(path:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparentpath(path:).json new file mode 100644 index 000000000..f4d64b1f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getparentpath(path:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getParentPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getparentpath(path:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getParentPath(path:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the parent path of a given path."}],"kind":"symbol","metadata":{"role":"symbol","title":"getParentPath(path:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getParentPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getParentPath4path3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getParentPath(path:)":{"role":"symbol","title":"getParentPath(path:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getParentPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the parent path of a given path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getParentPath(path:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getparentpath(path:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpasswordresetproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpasswordresetproviders.json new file mode 100644 index 000000000..df641cbed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpasswordresetproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPasswordResetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV","text":"NameIDPair"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpasswordresetproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPasswordResetProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get all password reset providers."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPasswordResetProviders","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPasswordResetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25getPasswordResetProviders3Get7RequestVySayAA10NameIDPairVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPasswordResetProviders":{"role":"symbol","title":"getPasswordResetProviders","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPasswordResetProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all password reset providers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPasswordResetProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpasswordresetproviders"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getperson(name:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getperson(name:userid:).json new file mode 100644 index 000000000..ec24394e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getperson(name:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPerson"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getperson(name:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPerson(name:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get person by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPerson(name:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPerson"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9getPerson4name6userID3Get7RequestVyAA11BaseItemDtoVGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPerson(name:userID:)":{"role":"symbol","title":"getPerson(name:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPerson"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get person by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPerson(name:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getperson(name:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimage(name:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimage(name:imagetype:parameters:).json new file mode 100644 index 000000000..aadad7d1b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimage(name:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV","text":"GetPersonImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimage(name:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonImage(name:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get person image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPersonImage(name:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPersonImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getPersonImage4name9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC0keF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPersonImage(name:imageType:parameters:)":{"role":"symbol","title":"getPersonImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPersonImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get person image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindex(name:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindex(name:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..8a0c91e77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindex(name:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV","text":"GetPersonImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindex(name:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonImageByIndex(name:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get person image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPersonImageByIndex(name:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPersonImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getPersonImageByIndex4name9imageType0jH010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC0mefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPersonImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getPersonImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPersonImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get person image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindex(name:imagetype:imageindex:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters.json new file mode 100644 index 000000000..b597e350a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/blur"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/asquery.json new file mode 100644 index 000000000..4fbc951f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..ca24efbd8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/blur.json new file mode 100644 index 000000000..a2a552ed1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..25bb6b637 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..86f05200b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..b71431c59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..194a66164 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..be15d696c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetPersonImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/height.json new file mode 100644 index 000000000..71d465417 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..1c7a44672 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV3tag6format8maxWidth0L6Height13percentPlayed13unplayedCount5width6height7quality04fillM00vN016isCropWhitespace0w3AddP9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0F6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..0c6ceac75 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..83a1a4baa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..94fbdd176 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..c07c31a56 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..a5135df07 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/percentplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/quality.json new file mode 100644 index 000000000..b5877163f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/tag.json new file mode 100644 index 000000000..a5a141249 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..e9c32f6bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/unplayedcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/width.json new file mode 100644 index 000000000..106be5c58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPersonImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters":{"role":"symbol","title":"Paths.GetPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters.json new file mode 100644 index 000000000..d856d66ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"role":"symbol","title":"Paths.GetPersonImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetPersonImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/asquery.json new file mode 100644 index 000000000..6163677eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/backgroundcolor.json new file mode 100644 index 000000000..e6e850a9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/blur.json new file mode 100644 index 000000000..b9f26f573 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/fillheight.json new file mode 100644 index 000000000..0f7cacf18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/fillwidth.json new file mode 100644 index 000000000..4fd1a6ef3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/fillwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/foregroundlayer.json new file mode 100644 index 000000000..6e726c30e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/format-swift.property.json new file mode 100644 index 000000000..b20577f1e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetPersonImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..f2facd906 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetPersonImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetPersonImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/height.json new file mode 100644 index 000000000..b21753a95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/imageindex.json new file mode 100644 index 000000000..29646972e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..a45fa1826 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV3tag6format8maxWidth0J6Height13percentPlayed13unplayedCount5width6height7quality04fillK00tL016isCropWhitespace0u3AddN9Indicator4blur15backgroundColor15foregroundLayer10imageIndexAESSSg_AA0F6FormatOSgs5Int32VSgA1_SdSgA1_A1_A1_A1_A1_A1_SbSgA3_A1_A2WA1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetPersonImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..78405834a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/isaddplayedindicator"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..18948450a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/iscropwhitespace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/maxheight.json new file mode 100644 index 000000000..8d71fad71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/maxwidth.json new file mode 100644 index 000000000..5ba7ea56e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/percentplayed.json new file mode 100644 index 000000000..dded4344b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/percentplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/quality.json new file mode 100644 index 000000000..852d1c899 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/tag.json new file mode 100644 index 000000000..d53623af3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/unplayedcount.json new file mode 100644 index 000000000..04a48b4ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/width.json new file mode 100644 index 000000000..0fec30f47 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetPersonImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters":{"role":"symbol","title":"Paths.GetPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonimageparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonremotesearchresults(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonremotesearchresults(_:).json new file mode 100644 index 000000000..5b08c470c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonremotesearchresults(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonRemoteSearchResults"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV","text":"PersonLookupInfoRemoteSearchQuery"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonremotesearchresults(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonRemoteSearchResults(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get person remote search."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPersonRemoteSearchResults(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PersonLookupInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO28getPersonRemoteSearchResultsy3Get7RequestVySayAA0fG6ResultCGGAA0e10LookupInfofG5QueryVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPersonRemoteSearchResults(_:)":{"role":"symbol","title":"getPersonRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersonRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PersonLookupInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get person remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersonRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery":{"role":"symbol","title":"PersonLookupInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersons(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersons(parameters:).json new file mode 100644 index 000000000..f9f9907fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersons(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersons"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetPersonsParametersV","text":"GetPersonsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersons(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersons(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all persons."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPersons(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersons"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPersonsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetPersonsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10getPersons10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPersons(parameters:)":{"role":"symbol","title":"getPersons(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPersons"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPersonsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetPersonsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all persons."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPersons(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersons(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters.json new file mode 100644 index 000000000..26205eb93 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"role":"symbol","title":"Paths.GetPersonsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/init(limit:searchTerm:fields:filters:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:excludePersonTypes:personTypes:appearsInItemID:userID:enableImages:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/appearsInItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/excludePersonTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/filters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/personTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/excludePersonTypes":{"role":"symbol","title":"excludePersonTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludePersonTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/excludePersonTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/excludepersontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/appearsInItemID":{"role":"symbol","title":"appearsInItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appearsInItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/appearsInItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/appearsinitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/init(limit:searchTerm:fields:filters:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:excludePersonTypes:personTypes:appearsInItemID:userID:enableImages:)":{"role":"symbol","title":"init(limit:searchTerm:fields:filters:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:excludePersonTypes:personTypes:appearsInItemID:userID:enableImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludePersonTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"appearsInItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/init(limit:searchTerm:fields:filters:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:excludePersonTypes:personTypes:appearsInItemID:userID:enableImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/init(limit:searchterm:fields:filters:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:excludepersontypes:persontypes:appearsinitemid:userid:enableimages:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/appearsinitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/appearsinitemid.json new file mode 100644 index 000000000..0a885ba70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/appearsinitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appearsInItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/appearsinitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/appearsInItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appearsInItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"appearsInItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV15appearsInItemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/appearsInItemID":{"role":"symbol","title":"appearsInItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appearsInItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/appearsInItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/appearsinitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/asquery.json new file mode 100644 index 000000000..085c47d49 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/enableimages.json new file mode 100644 index 000000000..4944dc6ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/enableimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/enableimagetypes.json new file mode 100644 index 000000000..efb5b73c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV16enableImageTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/enableuserdata.json new file mode 100644 index 000000000..bae9548f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/excludepersontypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/excludepersontypes.json new file mode 100644 index 000000000..53c58f665 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/excludepersontypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludePersonTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/excludepersontypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/excludePersonTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludePersonTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"excludePersonTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV18excludePersonTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/excludePersonTypes":{"role":"symbol","title":"excludePersonTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludePersonTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/excludePersonTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/excludepersontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/fields.json new file mode 100644 index 000000000..da5d09a4b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/filters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/filters.json new file mode 100644 index 000000000..ae20adcc2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/filters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/filters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/filters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"title":"filters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV7filtersSayAA10ItemFilterOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/imagetypelimit.json new file mode 100644 index 000000000..8bde418c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/init(limit:searchterm:fields:filters:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:excludepersontypes:persontypes:appearsinitemid:userid:enableimages:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/init(limit:searchterm:fields:filters:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:excludepersontypes:persontypes:appearsinitemid:userid:enableimages:).json new file mode 100644 index 000000000..293861939 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/init(limit:searchterm:fields:filters:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:excludepersontypes:persontypes:appearsinitemid:userid:enableimages:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludePersonTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"appearsInItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/init(limit:searchterm:fields:filters:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:excludepersontypes:persontypes:appearsinitemid:userid:enableimages:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/init(limit:searchTerm:fields:filters:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:excludePersonTypes:personTypes:appearsInItemID:userID:enableImages:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludePersonTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"appearsInItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(limit:searchTerm:fields:filters:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:excludePersonTypes:personTypes:appearsInItemID:userID:enableImages:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV5limit10searchTerm6fields7filters10isFavorite14enableUserData14imageTypeLimit0N10ImageTypes013excludePersonU006personU015appearsInItemID6userID0N6ImagesAEs5Int32VSg_SSSgSayAA10ItemFieldsOGSgSayAA10ItemFilterOGSgSbSgA3_AUSayAA0tR0OGSgSaySSGSgA9_10Foundation4UUIDVSgA13_A3_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/init(limit:searchTerm:fields:filters:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:excludePersonTypes:personTypes:appearsInItemID:userID:enableImages:)":{"role":"symbol","title":"init(limit:searchTerm:fields:filters:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:excludePersonTypes:personTypes:appearsInItemID:userID:enableImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludePersonTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"appearsInItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/init(limit:searchTerm:fields:filters:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:excludePersonTypes:personTypes:appearsInItemID:userID:enableImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/init(limit:searchterm:fields:filters:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:excludepersontypes:persontypes:appearsinitemid:userid:enableimages:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/isfavorite.json new file mode 100644 index 000000000..e3cf0ce82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/isfavorite"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/limit.json new file mode 100644 index 000000000..e9083b2ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/persontypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/persontypes.json new file mode 100644 index 000000000..2014baa04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/persontypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/persontypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/personTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"personTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV11personTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/searchterm.json new file mode 100644 index 000000000..ee0d4318c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV10searchTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/userid.json new file mode 100644 index 000000000..9d3875d78 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpersonsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetPersonsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters":{"role":"symbol","title":"Paths.GetPersonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPersonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPersonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPersonsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPersonsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpersonsparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getphysicalpaths.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getphysicalpaths.json new file mode 100644 index 000000000..2cc13cf1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getphysicalpaths.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPhysicalPaths"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getphysicalpaths"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPhysicalPaths","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a list of physical paths from virtual folders."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPhysicalPaths","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPhysicalPaths"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO011getPhysicalC03Get7RequestVySaySSGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPhysicalPaths":{"role":"symbol","title":"getPhysicalPaths","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPhysicalPaths"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of physical paths from virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPhysicalPaths","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getphysicalpaths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpingsystem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpingsystem.json new file mode 100644 index 000000000..5cf016004 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpingsystem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpingsystem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPingSystem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Pings the system."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPingSystem","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13getPingSystem3Get7RequestVySSGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPingSystem":{"role":"symbol","title":"getPingSystem","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Pings the system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPingSystem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpingsystem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaybackinfo(itemid:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaybackinfo(itemid:userid:).json new file mode 100644 index 000000000..8d6722ff9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaybackinfo(itemid:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlaybackInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaybackinfo(itemid:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlaybackInfo(itemID:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets live playback media info for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPlaybackInfo(itemID:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlaybackInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getPlaybackInfo6itemID04userH03Get7RequestVyAA0eF8ResponseVGSS_10Foundation4UUIDVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse":{"role":"symbol","title":"PlaybackInfoResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"abstract":[{"type":"text","text":"Class PlaybackInfoResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoResponse"}],"url":"\/documentation\/jellyfinapi\/playbackinforesponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPlaybackInfo(itemID:userID:)":{"role":"symbol","title":"getPlaybackInfo(itemID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlaybackInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live playback media info for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlaybackInfo(itemID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaybackinfo(itemid:userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitems(playlistid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitems(playlistid:parameters:).json new file mode 100644 index 000000000..88798d340 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitems(playlistid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlaylistItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV","text":"GetPlaylistItemsParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitems(playlistid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlaylistItems(playlistID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the original items of a playlist."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPlaylistItems(playlistID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlaylistItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPlaylistItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16getPlaylistItems10playlistID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0jeF10ParametersVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPlaylistItems(playlistID:parameters:)":{"role":"symbol","title":"getPlaylistItems(playlistID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlaylistItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPlaylistItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the original items of a playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlaylistItems(playlistID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitems(playlistid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters.json new file mode 100644 index 000000000..2e1cb6b21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"role":"symbol","title":"Paths.GetPlaylistItemsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/init(userID:startIndex:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/init(userID:startIndex:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:startIndex:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/init(userID:startIndex:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/init(userid:startindex:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/asquery.json new file mode 100644 index 000000000..6575fd3d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/enableimages.json new file mode 100644 index 000000000..2cc9e5976 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/enableimagetypes.json new file mode 100644 index 000000000..ec4bedb4a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV16enableImageTypesSayAA0I4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/enableuserdata.json new file mode 100644 index 000000000..72163f868 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/fields.json new file mode 100644 index 000000000..710789cd5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/imagetypelimit.json new file mode 100644 index 000000000..bd09ec727 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/init(userid:startindex:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/init(userid:startindex:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json new file mode 100644 index 000000000..a7554e919 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/init(userid:startindex:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/init(userid:startindex:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/init(userID:startIndex:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"title":"init(userID:startIndex:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV6userID10startIndex5limit6fields12enableImages0N8UserData14imageTypeLimit0N10ImageTypesAE10Foundation4UUIDV_s5Int32VSgASSayAA10ItemFieldsOGSgSbSgAxSSayAA0uS0OGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/init(userID:startIndex:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)":{"role":"symbol","title":"init(userID:startIndex:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/init(userID:startIndex:limit:fields:enableImages:enableUserData:imageTypeLimit:enableImageTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/init(userid:startindex:limit:fields:enableimages:enableuserdata:imagetypelimit:enableimagetypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/limit.json new file mode 100644 index 000000000..ba09bbf23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/startindex.json new file mode 100644 index 000000000..0b2d0d66a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/userid.json new file mode 100644 index 000000000..137d2771a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplaylistitemsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetPlaylistItemsParametersV6userID10Foundation4UUIDVvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPlaylistItemsParameters":{"role":"symbol","title":"Paths.GetPlaylistItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPlaylistItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPlaylistItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getplaylistitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpluginconfiguration(pluginid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpluginconfiguration(pluginid:).json new file mode 100644 index 000000000..979737118 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpluginconfiguration(pluginid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpluginconfiguration(pluginid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginConfiguration(pluginID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets plugin configuration."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPluginConfiguration(pluginID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22getPluginConfiguration8pluginID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPluginConfiguration(pluginID:)":{"role":"symbol","title":"getPluginConfiguration(pluginID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets plugin configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginConfiguration(pluginID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpluginconfiguration(pluginid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpluginimage(pluginid:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpluginimage(pluginid:version:).json new file mode 100644 index 000000000..20f2dc22f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpluginimage(pluginid:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpluginimage(pluginid:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginImage(pluginID:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a plugin’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPluginImage(pluginID:version:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getPluginImage8pluginID7version3Get7RequestVy10Foundation4DataVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPluginImage(pluginID:version:)":{"role":"symbol","title":"getPluginImage(pluginID:version:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a plugin’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginImage(pluginID:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpluginimage(pluginid:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpluginmanifest(pluginid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpluginmanifest(pluginid:).json new file mode 100644 index 000000000..da68efdc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpluginmanifest(pluginid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginManifest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpluginmanifest(pluginid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginManifest(pluginID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a plugin’s manifest."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPluginManifest(pluginID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginManifest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17getPluginManifest8pluginID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPluginManifest(pluginID:)":{"role":"symbol","title":"getPluginManifest(pluginID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPluginManifest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a plugin’s manifest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPluginManifest(pluginID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpluginmanifest(pluginid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplugins.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplugins.json new file mode 100644 index 000000000..fc3abbca9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getplugins.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","preciseIdentifier":"s:11JellyfinAPI10PluginInfoV","text":"PluginInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getplugins"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlugins","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a list of currently installed plugins."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPlugins","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PluginInfo","preciseIdentifier":"s:11JellyfinAPI10PluginInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO10getPlugins3Get7RequestVySayAA10PluginInfoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPlugins":{"role":"symbol","title":"getPlugins","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PluginInfo","preciseIdentifier":"s:11JellyfinAPI10PluginInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of currently installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPlugins","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getplugins"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfo(itemid:parameters:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfo(itemid:parameters:_:).json new file mode 100644 index 000000000..f5b948bfd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfo(itemid:parameters:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPostedPlaybackInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV","text":"GetPostedPlaybackInfoParameters"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","preciseIdentifier":"s:11JellyfinAPI15PlaybackInfoDtoV","text":"PlaybackInfoDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Query parameters are obsolete."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfo(itemid:parameters:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPostedPlaybackInfo(itemID:parameters:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets live playback media info for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPostedPlaybackInfo(itemID:parameters:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPostedPlaybackInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPostedPlaybackInfoParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackInfoDto","preciseIdentifier":"s:11JellyfinAPI15PlaybackInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getPostedPlaybackInfo6itemID10parameters_3Get7RequestVyAA0fG8ResponseVGSS_AC0kefG10ParametersVSgAA0fG3DtoVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse":{"role":"symbol","title":"PlaybackInfoResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"abstract":[{"type":"text","text":"Class PlaybackInfoResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoResponse"}],"url":"\/documentation\/jellyfinapi\/playbackinforesponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPostedPlaybackInfo(itemID:parameters:_:)":{"role":"symbol","title":"getPostedPlaybackInfo(itemID:parameters:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPostedPlaybackInfo"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetPostedPlaybackInfoParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackInfoDto","preciseIdentifier":"s:11JellyfinAPI15PlaybackInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live playback media info for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPostedPlaybackInfo(itemID:parameters:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfo(itemid:parameters:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters.json new file mode 100644 index 000000000..a977b348f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/init(userID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:mediaSourceID:liveStreamID:isAutoOpenLiveStream:enableDirectPlay:enableDirectStream:enableTranscoding:allowVideoStreamCopy:allowAudioStreamCopy:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableDirectPlay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableDirectStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableTranscoding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/isAutoOpenLiveStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/enableTranscoding":{"role":"symbol","title":"enableTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/enabletranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/isAutoOpenLiveStream":{"role":"symbol","title":"isAutoOpenLiveStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/isAutoOpenLiveStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/isautoopenlivestream"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/enableDirectStream":{"role":"symbol","title":"enableDirectStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableDirectStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/enabledirectstream"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/init(userID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:mediaSourceID:liveStreamID:isAutoOpenLiveStream:enableDirectPlay:enableDirectStream:enableTranscoding:allowVideoStreamCopy:allowAudioStreamCopy:)":{"role":"symbol","title":"init(userID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:mediaSourceID:liveStreamID:isAutoOpenLiveStream:enableDirectPlay:enableDirectStream:enableTranscoding:allowVideoStreamCopy:allowAudioStreamCopy:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/init(userID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:mediaSourceID:liveStreamID:isAutoOpenLiveStream:enableDirectPlay:enableDirectStream:enableTranscoding:allowVideoStreamCopy:allowAudioStreamCopy:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/init(userid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:mediasourceid:livestreamid:isautoopenlivestream:enabledirectplay:enabledirectstream:enabletranscoding:allowvideostreamcopy:allowaudiostream-36wpa"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/enableDirectPlay":{"role":"symbol","title":"enableDirectPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableDirectPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/enabledirectplay"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/mediasourceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..4c0d98c68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV20allowAudioStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/allowaudiostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..434a5f647 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV20allowVideoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/asquery.json new file mode 100644 index 000000000..2dbe1ebdb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/audiostreamindex.json new file mode 100644 index 000000000..47dd2db33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/enabledirectplay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/enabledirectplay.json new file mode 100644 index 000000000..8d31b97bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/enabledirectplay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/enabledirectplay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableDirectPlay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDirectPlay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV16enableDirectPlaySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/enableDirectPlay":{"role":"symbol","title":"enableDirectPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableDirectPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/enabledirectplay"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/enabledirectstream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/enabledirectstream.json new file mode 100644 index 000000000..21f0b7636 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/enabledirectstream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/enabledirectstream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableDirectStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDirectStream","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV18enableDirectStreamSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/enableDirectStream":{"role":"symbol","title":"enableDirectStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableDirectStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/enabledirectstream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/enabletranscoding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/enabletranscoding.json new file mode 100644 index 000000000..6a89d12f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/enabletranscoding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/enabletranscoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableTranscoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTranscoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV17enableTranscodingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/enableTranscoding":{"role":"symbol","title":"enableTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/enableTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/enabletranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/init(userid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:mediasourceid:livestreamid:isautoopenlivestream:enabledirectplay:enabledirectstream:enabletranscoding:allowvideostreamcopy:allowaudiostream-36wpa.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/init(userid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:mediasourceid:livestreamid:isautoopenlivestream:enabledirectplay:enabledirectstream:enabletranscoding:allowvideostreamcopy:allowaudiostream-36wpa.json new file mode 100644 index 000000000..340a47530 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/init(userid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:mediasourceid:livestreamid:isautoopenlivestream:enabledirectplay:enabledirectstream:enabletranscoding:allowvideostreamcopy:allowaudiostream-36wpa.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/init(userid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:mediasourceid:livestreamid:isautoopenlivestream:enabledirectplay:enabledirectstream:enabletranscoding:allowvideostreamcopy:allowaudiostream-36wpa"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/init(userID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:mediaSourceID:liveStreamID:isAutoOpenLiveStream:enableDirectPlay:enableDirectStream:enableTranscoding:allowVideoStreamCopy:allowAudioStreamCopy:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(userID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:mediaSourceID:liveStreamID:isAutoOpenLiveStream:enableDirectPlay:enableDirectStream:enableTranscoding:allowVideoStreamCopy:allowAudioStreamCopy:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV6userID19maxStreamingBitrate14startTimeTicks16audioStreamIndex08subtitlerS00K13AudioChannels011mediaSourceJ004liverJ0014isAutoOpenLiveR016enableDirectPlay012enableDirectR017enableTranscoding010allowVideoR4Copy05allowuR4CopyAE10Foundation4UUIDVSg_s5Int32VSgs5Int64VSgA3ZSSSgA2_SbSgA3_A3_A3_A3_A3_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/init(userID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:mediaSourceID:liveStreamID:isAutoOpenLiveStream:enableDirectPlay:enableDirectStream:enableTranscoding:allowVideoStreamCopy:allowAudioStreamCopy:)":{"role":"symbol","title":"init(userID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:mediaSourceID:liveStreamID:isAutoOpenLiveStream:enableDirectPlay:enableDirectStream:enableTranscoding:allowVideoStreamCopy:allowAudioStreamCopy:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/init(userID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:mediaSourceID:liveStreamID:isAutoOpenLiveStream:enableDirectPlay:enableDirectStream:enableTranscoding:allowVideoStreamCopy:allowAudioStreamCopy:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/init(userid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:mediasourceid:livestreamid:isautoopenlivestream:enabledirectplay:enabledirectstream:enabletranscoding:allowvideostreamcopy:allowaudiostream-36wpa"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/isautoopenlivestream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/isautoopenlivestream.json new file mode 100644 index 000000000..a1c35ec61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/isautoopenlivestream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/isautoopenlivestream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/isAutoOpenLiveStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutoOpenLiveStream","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV20isAutoOpenLiveStreamSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/isAutoOpenLiveStream":{"role":"symbol","title":"isAutoOpenLiveStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/isAutoOpenLiveStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/isautoopenlivestream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/livestreamid.json new file mode 100644 index 000000000..e8b9e7b03 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/maxaudiochannels.json new file mode 100644 index 000000000..cdf071556 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/maxstreamingbitrate.json new file mode 100644 index 000000000..2ac16cb29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/mediasourceid.json new file mode 100644 index 000000000..21ebee7d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/starttimeticks.json new file mode 100644 index 000000000..39f15e401 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/subtitlestreamindex.json new file mode 100644 index 000000000..abf6760a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/userid.json new file mode 100644 index 000000000..12bd124a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpostedplaybackinfoparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetPostedPlaybackInfoParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetPostedPlaybackInfoParameters":{"role":"symbol","title":"Paths.GetPostedPlaybackInfoParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetPostedPlaybackInfoParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetPostedPlaybackInfoParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getpostedplaybackinfoparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprofile(profileid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprofile(profileid:).json new file mode 100644 index 000000000..2062cc91a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprofile(profileid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getprofile(profileid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProfile(profileID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a single profile."}],"kind":"symbol","metadata":{"role":"symbol","title":"getProfile(profileID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10getProfile9profileID3Get7RequestVyAA06DeviceE0VGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getProfile(profileID:)":{"role":"symbol","title":"getProfile(profileID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a single profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProfile(profileID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getprofile(profileid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprofileinfos.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprofileinfos.json new file mode 100644 index 000000000..cce29c273 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprofileinfos.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProfileInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileInfoV","text":"DeviceProfileInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getprofileinfos"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProfileInfos","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get profile infos."}],"kind":"symbol","metadata":{"role":"symbol","title":"getProfileInfos","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProfileInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceProfileInfo","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO15getProfileInfos3Get7RequestVySayAA06DeviceE4InfoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getProfileInfos":{"role":"symbol","title":"getProfileInfos","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProfileInfos"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceProfileInfo","preciseIdentifier":"s:11JellyfinAPI17DeviceProfileInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get profile infos."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProfileInfos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getprofileinfos"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfileInfo":{"role":"symbol","title":"DeviceProfileInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfileInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfileInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfileInfo"}],"url":"\/documentation\/jellyfinapi\/deviceprofileinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprogram(programid:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprogram(programid:userid:).json new file mode 100644 index 000000000..989955706 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprogram(programid:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProgram"},{"kind":"text","text":"("},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getprogram(programid:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProgram(programID:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a live tv program."}],"kind":"symbol","metadata":{"role":"symbol","title":"getProgram(programID:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProgram"},{"kind":"text","text":"("},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10getProgram9programID04userG03Get7RequestVyAA11BaseItemDtoVGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getProgram(programID:userID:)":{"role":"symbol","title":"getProgram(programID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getProgram"},{"kind":"text","text":"("},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a live tv program."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getProgram(programID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getprogram(programid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprograms(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprograms(_:).json new file mode 100644 index 000000000..921003925 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getprograms(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPrograms"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","preciseIdentifier":"s:11JellyfinAPI14GetProgramsDtoV","text":"GetProgramsDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getprograms(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPrograms(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available live tv epgs."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPrograms(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPrograms"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GetProgramsDto","preciseIdentifier":"s:11JellyfinAPI14GetProgramsDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11getProgramsy3Get7RequestVyAA22BaseItemDtoQueryResultVGAA0feJ0VSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GetProgramsDto":{"role":"symbol","title":"GetProgramsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetProgramsDto"}],"abstract":[{"type":"text","text":"Get programs dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GetProgramsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetProgramsDto"}],"url":"\/documentation\/jellyfinapi\/getprogramsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPrograms(_:)":{"role":"symbol","title":"getPrograms(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPrograms"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GetProgramsDto","preciseIdentifier":"s:11JellyfinAPI14GetProgramsDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available live tv epgs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPrograms(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getprograms(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpublicsysteminfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpublicsysteminfo.json new file mode 100644 index 000000000..e1a4c3d1c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpublicsysteminfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPublicSystemInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpublicsysteminfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPublicSystemInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets public information about the server."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPublicSystemInfo","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPublicSystemInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19getPublicSystemInfo3Get7RequestVyAA0efG0VGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPublicSystemInfo":{"role":"symbol","title":"getPublicSystemInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPublicSystemInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets public information about the server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPublicSystemInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpublicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpublicusers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpublicusers.json new file mode 100644 index 000000000..22c0628f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getpublicusers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPublicUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV","text":"UserDto"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getpublicusers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPublicUsers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a list of publicly visible users for display on a login screen."}],"kind":"symbol","metadata":{"role":"symbol","title":"getPublicUsers","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPublicUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14getPublicUsers3Get7RequestVySayAA7UserDtoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getPublicUsers":{"role":"symbol","title":"getPublicUsers","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getPublicUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of publicly visible users for display on a login screen."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getPublicUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getpublicusers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilters(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilters(parameters:).json new file mode 100644 index 000000000..528e8e08c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilters(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getQueryFilters"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV","text":"GetQueryFiltersParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfilters(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getQueryFilters(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets query filters."}],"kind":"symbol","metadata":{"role":"symbol","title":"getQueryFilters(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getQueryFilters"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetQueryFiltersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getQueryFilters10parameters3Get7RequestVyAA0eF0VGAC0heF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters":{"role":"symbol","title":"QueryFilters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFilters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFilters"}],"url":"\/documentation\/jellyfinapi\/queryfilters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getQueryFilters(parameters:)":{"role":"symbol","title":"getQueryFilters(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getQueryFilters"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetQueryFiltersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets query filters."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getQueryFilters(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilters(parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacy(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacy(parameters:).json new file mode 100644 index 000000000..d03ca4787 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacy(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getQueryFiltersLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV","text":"GetQueryFiltersLegacyParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacy(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getQueryFiltersLegacy(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets legacy query filters."}],"kind":"symbol","metadata":{"role":"symbol","title":"getQueryFiltersLegacy(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getQueryFiltersLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetQueryFiltersLegacyParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getQueryFiltersLegacy10parameters3Get7RequestVyAA0efG0VGAC0iefG10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getQueryFiltersLegacy(parameters:)":{"role":"symbol","title":"getQueryFiltersLegacy(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getQueryFiltersLegacy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetQueryFiltersLegacyParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets legacy query filters."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getQueryFiltersLegacy(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacy(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters":{"role":"symbol","title":"Paths.GetQueryFiltersLegacyParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy":{"role":"symbol","title":"QueryFiltersLegacy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFiltersLegacy"}],"url":"\/documentation\/jellyfinapi\/queryfilterslegacy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters.json new file mode 100644 index 000000000..510db066e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"role":"symbol","title":"Paths.GetQueryFiltersLegacyParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/init(userID:parentID:includeItemTypes:mediaTypes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/mediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters":{"role":"symbol","title":"Paths.GetQueryFiltersLegacyParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/init(userID:parentID:includeItemTypes:mediaTypes:)":{"role":"symbol","title":"init(userID:parentID:includeItemTypes:mediaTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/init(userID:parentID:includeItemTypes:mediaTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/init(userid:parentid:includeitemtypes:mediatypes:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/asquery.json new file mode 100644 index 000000000..e5d430715 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV02asE0SaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters":{"role":"symbol","title":"Paths.GetQueryFiltersLegacyParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/includeitemtypes.json new file mode 100644 index 000000000..45fb78e6e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV16includeItemTypesSayAA04BaseJ4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters":{"role":"symbol","title":"Paths.GetQueryFiltersLegacyParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/init(userid:parentid:includeitemtypes:mediatypes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/init(userid:parentid:includeitemtypes:mediatypes:).json new file mode 100644 index 000000000..7b8ffd0a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/init(userid:parentid:includeitemtypes:mediatypes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/init(userid:parentid:includeitemtypes:mediatypes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/init(userID:parentID:includeItemTypes:mediaTypes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"title":"init(userID:parentID:includeItemTypes:mediaTypes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV6userID06parentJ016includeItemTypes05mediaN0AE10Foundation4UUIDVSg_AMSayAA04BaseM4KindOGSgSaySSGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/init(userID:parentID:includeItemTypes:mediaTypes:)":{"role":"symbol","title":"init(userID:parentID:includeItemTypes:mediaTypes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/init(userID:parentID:includeItemTypes:mediaTypes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/init(userid:parentid:includeitemtypes:mediatypes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters":{"role":"symbol","title":"Paths.GetQueryFiltersLegacyParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/mediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/mediatypes.json new file mode 100644 index 000000000..63d2750a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/mediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/mediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/mediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV10mediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters":{"role":"symbol","title":"Paths.GetQueryFiltersLegacyParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/parentid.json new file mode 100644 index 000000000..0928c224a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters":{"role":"symbol","title":"Paths.GetQueryFiltersLegacyParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/userid.json new file mode 100644 index 000000000..6c30d8a41 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfilterslegacyparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetQueryFiltersLegacyParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersLegacyParameters":{"role":"symbol","title":"Paths.GetQueryFiltersLegacyParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersLegacyParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersLegacyParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfilterslegacyparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters.json new file mode 100644 index 000000000..99ab4b699 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"role":"symbol","title":"Paths.GetQueryFiltersParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/init(userID:parentID:includeItemTypes:isAiring:isMovie:isSports:isKids:isNews:isSeries:isRecursive:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isAiring","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isRecursive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/init(userID:parentID:includeItemTypes:isAiring:isMovie:isSports:isKids:isNews:isSeries:isRecursive:)":{"role":"symbol","title":"init(userID:parentID:includeItemTypes:isAiring:isMovie:isSports:isKids:isNews:isSeries:isRecursive:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/init(userID:parentID:includeItemTypes:isAiring:isMovie:isSports:isKids:isNews:isSeries:isRecursive:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/init(userid:parentid:includeitemtypes:isairing:ismovie:issports:iskids:isnews:isseries:isrecursive:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isAiring":{"role":"symbol","title":"isAiring","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isAiring","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isairing"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isRecursive":{"role":"symbol","title":"isRecursive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isRecursive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isrecursive"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/asquery.json new file mode 100644 index 000000000..21883c2b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV02asE0SaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/includeitemtypes.json new file mode 100644 index 000000000..982f7d7ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV16includeItemTypesSayAA04BaseI4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/includeitemtypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/init(userid:parentid:includeitemtypes:isairing:ismovie:issports:iskids:isnews:isseries:isrecursive:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/init(userid:parentid:includeitemtypes:isairing:ismovie:issports:iskids:isnews:isseries:isrecursive:).json new file mode 100644 index 000000000..d28bf69a4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/init(userid:parentid:includeitemtypes:isairing:ismovie:issports:iskids:isnews:isseries:isrecursive:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/init(userid:parentid:includeitemtypes:isairing:ismovie:issports:iskids:isnews:isseries:isrecursive:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/init(userID:parentID:includeItemTypes:isAiring:isMovie:isSports:isKids:isNews:isSeries:isRecursive:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(userID:parentID:includeItemTypes:isAiring:isMovie:isSports:isKids:isNews:isSeries:isRecursive:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV6userID06parentI016includeItemTypes8isAiring0N5Movie0N6Sports0N4Kids0N4News0N6Series0N9RecursiveAE10Foundation4UUIDVSg_ASSayAA04BaseL4KindOGSgSbSgA6Xtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/init(userID:parentID:includeItemTypes:isAiring:isMovie:isSports:isKids:isNews:isSeries:isRecursive:)":{"role":"symbol","title":"init(userID:parentID:includeItemTypes:isAiring:isMovie:isSports:isKids:isNews:isSeries:isRecursive:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/init(userID:parentID:includeItemTypes:isAiring:isMovie:isSports:isKids:isNews:isSeries:isRecursive:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/init(userid:parentid:includeitemtypes:isairing:ismovie:issports:iskids:isnews:isseries:isrecursive:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isairing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isairing.json new file mode 100644 index 000000000..d51c493e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isairing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isairing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isAiring","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAiring","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV8isAiringSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isAiring":{"role":"symbol","title":"isAiring","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isAiring","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isairing"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/iskids.json new file mode 100644 index 000000000..b13282207 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/ismovie.json new file mode 100644 index 000000000..0e199f19a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isnews.json new file mode 100644 index 000000000..bea1fd7e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isnews"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isrecursive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isrecursive.json new file mode 100644 index 000000000..aa8f3efba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isrecursive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isrecursive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isRecursive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRecursive","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV11isRecursiveSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isRecursive":{"role":"symbol","title":"isRecursive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isRecursive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isrecursive"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isseries.json new file mode 100644 index 000000000..fe9579478 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/issports.json new file mode 100644 index 000000000..55638a3f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/issports"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/parentid.json new file mode 100644 index 000000000..0be439723 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/userid.json new file mode 100644 index 000000000..92082b578 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getqueryfiltersparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetQueryFiltersParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetQueryFiltersParameters":{"role":"symbol","title":"Paths.GetQueryFiltersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetQueryFiltersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetQueryFiltersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetQueryFiltersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getqueryfiltersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getratingimage(theme:name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getratingimage(theme:name:).json new file mode 100644 index 000000000..d9b24ffa4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getratingimage(theme:name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRatingImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getratingimage(theme:name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRatingImage(theme:name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get rating image."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRatingImage(theme:name:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRatingImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getRatingImage5theme4name3Get7RequestVy10Foundation4DataVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRatingImage(theme:name:)":{"role":"symbol","title":"getRatingImage(theme:name:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRatingImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"theme"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get rating image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRatingImage(theme:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getratingimage(theme:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getratingimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getratingimages.json new file mode 100644 index 000000000..e599543bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getratingimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRatingImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV","text":"ImageByNameInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getratingimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRatingImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get all general images."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRatingImages","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRatingImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO15getRatingImages3Get7RequestVySayAA15ImageByNameInfoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRatingImages":{"role":"symbol","title":"getRatingImages","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRatingImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageByNameInfo","preciseIdentifier":"s:11JellyfinAPI15ImageByNameInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get all general images."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRatingImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getratingimages"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageByNameInfo":{"role":"symbol","title":"ImageByNameInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageByNameInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageByNameInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageByNameInfo"}],"url":"\/documentation\/jellyfinapi\/imagebynameinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprograms(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprograms(parameters:).json new file mode 100644 index 000000000..dcd4c1951 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprograms(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecommendedPrograms"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV","text":"GetRecommendedProgramsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprograms(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecommendedPrograms(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets recommended live tv epgs."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRecommendedPrograms(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecommendedPrograms"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRecommendedProgramsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22getRecommendedPrograms10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0heF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecommendedPrograms(parameters:)":{"role":"symbol","title":"getRecommendedPrograms(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecommendedPrograms"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRecommendedProgramsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets recommended live tv epgs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecommendedPrograms(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprograms(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters.json new file mode 100644 index 000000000..bb2e207dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/init(userID:limit:isAiring:hasAired:isSeries:isMovie:isNews:isKids:isSports:enableImages:imageTypeLimit:enableImageTypes:genreIDs:fields:enableUserData:enableTotalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/genreIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/hasAired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isAiring","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/init(userID:limit:isAiring:hasAired:isSeries:isMovie:isNews:isKids:isSports:enableImages:imageTypeLimit:enableImageTypes:genreIDs:fields:enableUserData:enableTotalRecordCount:)":{"role":"symbol","title":"init(userID:limit:isAiring:hasAired:isSeries:isMovie:isNews:isKids:isSports:enableImages:imageTypeLimit:enableImageTypes:genreIDs:fields:enableUserData:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/init(userID:limit:isAiring:hasAired:isSeries:isMovie:isNews:isKids:isSports:enableImages:imageTypeLimit:enableImageTypes:genreIDs:fields:enableUserData:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/init(userid:limit:isairing:hasaired:isseries:ismovie:isnews:iskids:issports:enableimages:imagetypelimit:enableimagetypes:genreids:fields:enableuserdata:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isAiring":{"role":"symbol","title":"isAiring","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isAiring","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/isairing"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/hasAired":{"role":"symbol","title":"hasAired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/hasAired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/hasaired"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/asquery.json new file mode 100644 index 000000000..c95cfa497 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enableimages.json new file mode 100644 index 000000000..a9b047c95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enableimagetypes.json new file mode 100644 index 000000000..f9193097f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV16enableImageTypesSayAA0I4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..baeaf0654 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enableuserdata.json new file mode 100644 index 000000000..3c15c60b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/fields.json new file mode 100644 index 000000000..40180d560 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/genreids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/genreids.json new file mode 100644 index 000000000..e5f95b20e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/genreids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/genreids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/genreIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"genreIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV8genreIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/hasaired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/hasaired.json new file mode 100644 index 000000000..5273be498 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/hasaired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/hasaired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/hasAired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasAired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV8hasAiredSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/hasAired":{"role":"symbol","title":"hasAired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/hasAired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/hasaired"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/imagetypelimit.json new file mode 100644 index 000000000..bc055b5ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/init(userid:limit:isairing:hasaired:isseries:ismovie:isnews:iskids:issports:enableimages:imagetypelimit:enableimagetypes:genreids:fields:enableuserdata:enabletotalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/init(userid:limit:isairing:hasaired:isseries:ismovie:isnews:iskids:issports:enableimages:imagetypelimit:enableimagetypes:genreids:fields:enableuserdata:enabletotalrecordcount:).json new file mode 100644 index 000000000..4d3281a5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/init(userid:limit:isairing:hasaired:isseries:ismovie:isnews:iskids:issports:enableimages:imagetypelimit:enableimagetypes:genreids:fields:enableuserdata:enabletotalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/init(userid:limit:isairing:hasaired:isseries:ismovie:isnews:iskids:issports:enableimages:imagetypelimit:enableimagetypes:genreids:fields:enableuserdata:enabletotalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/init(userID:limit:isAiring:hasAired:isSeries:isMovie:isNews:isKids:isSports:enableImages:imageTypeLimit:enableImageTypes:genreIDs:fields:enableUserData:enableTotalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(userID:limit:isAiring:hasAired:isSeries:isMovie:isNews:isKids:isSports:enableImages:imageTypeLimit:enableImageTypes:genreIDs:fields:enableUserData:enableTotalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV6userID5limit8isAiring8hasAired0K6Series0K5Movie0K4News0K4Kids0K6Sports12enableImages14imageTypeLimit0T10ImageTypes8genreIDs6fields0T8UserData0T16TotalRecordCountAE10Foundation4UUIDVSg_s5Int32VSgSbSgA1_A1_A1_A1_A1_A1_A1_A0_SayAA0yW0OGSgSayAXGSgSayAA10ItemFieldsOGSgA1_A1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/init(userID:limit:isAiring:hasAired:isSeries:isMovie:isNews:isKids:isSports:enableImages:imageTypeLimit:enableImageTypes:genreIDs:fields:enableUserData:enableTotalRecordCount:)":{"role":"symbol","title":"init(userID:limit:isAiring:hasAired:isSeries:isMovie:isNews:isKids:isSports:enableImages:imageTypeLimit:enableImageTypes:genreIDs:fields:enableUserData:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasAired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/init(userID:limit:isAiring:hasAired:isSeries:isMovie:isNews:isKids:isSports:enableImages:imageTypeLimit:enableImageTypes:genreIDs:fields:enableUserData:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/init(userid:limit:isairing:hasaired:isseries:ismovie:isnews:iskids:issports:enableimages:imagetypelimit:enableimagetypes:genreids:fields:enableuserdata:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/isairing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/isairing.json new file mode 100644 index 000000000..99ecbeccb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/isairing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/isairing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isAiring","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAiring","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV8isAiringSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isAiring":{"role":"symbol","title":"isAiring","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAiring"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isAiring","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/isairing"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/iskids.json new file mode 100644 index 000000000..012fcd023 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/ismovie.json new file mode 100644 index 000000000..e893619aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/isnews.json new file mode 100644 index 000000000..e6b14fc50 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/isseries.json new file mode 100644 index 000000000..a10bbcde3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/issports.json new file mode 100644 index 000000000..2474d93d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/limit.json new file mode 100644 index 000000000..a76f0d6cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/userid.json new file mode 100644 index 000000000..310d1f06e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecommendedprogramsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32GetRecommendedProgramsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecommendedProgramsParameters":{"role":"symbol","title":"Paths.GetRecommendedProgramsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecommendedProgramsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecommendedProgramsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecommendedprogramsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecording(recordingid:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecording(recordingid:userid:).json new file mode 100644 index 000000000..d08a00853 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecording(recordingid:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecording"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecording(recordingid:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecording(recordingID:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a live tv recording."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRecording(recordingID:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecording"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12getRecording11recordingID04userG03Get7RequestVyAA11BaseItemDtoVGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecording(recordingID:userID:)":{"role":"symbol","title":"getRecording(recordingID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecording"},{"kind":"text","text":"("},{"kind":"externalParam","text":"recordingID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a live tv recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecording(recordingID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecording(recordingid:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingfolders(userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingfolders(userid:).json new file mode 100644 index 000000000..c8302a8d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingfolders(userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingFolders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingfolders(userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingFolders(userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets recording folders."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRecordingFolders(userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingFolders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19getRecordingFolders6userID3Get7RequestVyAA22BaseItemDtoQueryResultVG10Foundation4UUIDVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecordingFolders(userID:)":{"role":"symbol","title":"getRecordingFolders(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingFolders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets recording folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingFolders(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingfolders(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordinggroup(groupid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordinggroup(groupid:).json new file mode 100644 index 000000000..fe4f6f08c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordinggroup(groupid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingGroup"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordinggroup(groupid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingGroup(groupID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get recording group."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"getRecordingGroup(groupID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingGroup"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17getRecordingGroup7groupID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","platforms":[]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated"}]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecordingGroup(groupID:)":{"role":"symbol","title":"getRecordingGroup(groupID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingGroup"},{"kind":"text","text":"("},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get recording group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingGroup(groupID:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getrecordinggroup(groupid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordinggroups(userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordinggroups(userid:).json new file mode 100644 index 000000000..bddd57eb3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordinggroups(userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingGroups"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordinggroups(userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingGroups(userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets live tv recording groups."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"getRecordingGroups(userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingGroups"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getRecordingGroups6userID3Get7RequestVyAA22BaseItemDtoQueryResultVG10Foundation4UUIDVSg_tFZ","extendedModule":"JellyfinAPI","platforms":[]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated"}]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecordingGroups(userID:)":{"role":"symbol","title":"getRecordingGroups(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingGroups"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live tv recording groups."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingGroups(userID:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getrecordinggroups(userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordings(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordings(parameters:).json new file mode 100644 index 000000000..384dfe689 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordings(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordings"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV","text":"GetRecordingsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordings(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordings(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets live tv recordings."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRecordings(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordings"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRecordingsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getRecordings10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecordings(parameters:)":{"role":"symbol","title":"getRecordings(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordings"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRecordingsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live tv recordings."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordings(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordings(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters.json new file mode 100644 index 000000000..8e46046af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"role":"symbol","title":"Paths.GetRecordingsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/init(channelID:userID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:isMovie:isSeries:isKids:isSports:isNews:isLibraryItem:enableTotalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/channelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isInProgress","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isLibraryItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/seriesTimerID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/status-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/userID"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/Status-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/init(channelID:userID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:isMovie:isSeries:isKids:isSports:isNews:isLibraryItem:enableTotalRecordCount:)":{"role":"symbol","title":"init(channelID:userID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:isMovie:isSeries:isKids:isSports:isNews:isLibraryItem:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6Statusa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLibraryItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/init(channelID:userID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:isMovie:isSeries:isKids:isSports:isNews:isLibraryItem:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/init(channelid:userid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:ismovie:isseries:iskids:issports:isnews:islibraryitem:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isLibraryItem":{"role":"symbol","title":"isLibraryItem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLibraryItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isLibraryItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/islibraryitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/status-swift.property":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6Statusa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/status-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/status-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/Status-swift.typealias":{"role":"symbol","title":"Paths.GetRecordingsParameters.Status","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/Status-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/status-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isInProgress":{"role":"symbol","title":"isInProgress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isInProgress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/isinprogress"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/isseries"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/asquery.json new file mode 100644 index 000000000..15be0e76e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/channelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/channelid.json new file mode 100644 index 000000000..afe2e62ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/channelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/channelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/channelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV9channelIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enableimages.json new file mode 100644 index 000000000..857df2b6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enableimagetypes.json new file mode 100644 index 000000000..435392e0c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV16enableImageTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enableimagetypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..1213cc10b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enableuserdata.json new file mode 100644 index 000000000..1f4ad4dd7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/enableuserdata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/fields.json new file mode 100644 index 000000000..40f7c9483 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/imagetypelimit.json new file mode 100644 index 000000000..7e7eec5a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/init(channelid:userid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:ismovie:isseries:iskids:issports:isnews:islibraryitem:enabletotalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/init(channelid:userid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:ismovie:isseries:iskids:issports:isnews:islibraryitem:enabletotalrecordcount:).json new file mode 100644 index 000000000..5b4bafd70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/init(channelid:userid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:ismovie:isseries:iskids:issports:isnews:islibraryitem:enabletotalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/Status-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6Statusa","text":"Status"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isLibraryItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/init(channelid:userid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:ismovie:isseries:iskids:issports:isnews:islibraryitem:enabletotalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/init(channelID:userID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:isMovie:isSeries:isKids:isSports:isNews:isLibraryItem:enableTotalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6Statusa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLibraryItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(channelID:userID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:isMovie:isSeries:isKids:isSports:isNews:isLibraryItem:enableTotalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV9channelID04userH010startIndex5limit6status12isInProgress011seriesTimerH012enableImages14imageTypeLimit0S10ImageTypes6fields0S8UserData0N5Movie0N6Series0N4Kids0N6Sports0N4News0N11LibraryItem0S16TotalRecordCountAESSSg_10Foundation4UUIDVSgs5Int32VSgA4_AA15RecordingStatusOSgSbSgAYA8_A4_SayAA0xV0OGSgSayAA10ItemFieldsOGSgA8_A8_A8_A8_A8_A8_A8_A8_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/init(channelID:userID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:isMovie:isSeries:isKids:isSports:isNews:isLibraryItem:enableTotalRecordCount:)":{"role":"symbol","title":"init(channelID:userID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:isMovie:isSeries:isKids:isSports:isNews:isLibraryItem:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6Statusa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLibraryItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/init(channelID:userID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:isMovie:isSeries:isKids:isSports:isNews:isLibraryItem:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/init(channelid:userid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:ismovie:isseries:iskids:issports:isnews:islibraryitem:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/Status-swift.typealias":{"role":"symbol","title":"Paths.GetRecordingsParameters.Status","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/Status-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/status-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/isinprogress.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/isinprogress.json new file mode 100644 index 000000000..1169c7f34 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/isinprogress.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/isinprogress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isInProgress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isInProgress","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV12isInProgressSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isInProgress":{"role":"symbol","title":"isInProgress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isInProgress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/isinprogress"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/iskids.json new file mode 100644 index 000000000..605217846 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/islibraryitem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/islibraryitem.json new file mode 100644 index 000000000..80aafc382 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/islibraryitem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLibraryItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/islibraryitem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isLibraryItem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLibraryItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isLibraryItem","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV13isLibraryItemSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isLibraryItem":{"role":"symbol","title":"isLibraryItem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLibraryItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isLibraryItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/islibraryitem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/ismovie.json new file mode 100644 index 000000000..28e2a4560 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/isnews.json new file mode 100644 index 000000000..e6f7a02ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/isseries.json new file mode 100644 index 000000000..f106958c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/issports.json new file mode 100644 index 000000000..3ec2fbc5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/limit.json new file mode 100644 index 000000000..9e894a268 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/seriestimerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/seriestimerid.json new file mode 100644 index 000000000..10d60f6a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/seriestimerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/seriestimerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/seriesTimerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesTimerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV13seriesTimerIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/startindex.json new file mode 100644 index 000000000..9b098384d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/status-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/status-swift.property.json new file mode 100644 index 000000000..5b7ab6a83 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/status-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/Status-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6Statusa","text":"Status"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/status-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/status-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6Statusa"},{"kind":"text","text":"?"}],"title":"status","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6statusAA15RecordingStatusOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/status-swift.property":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6Statusa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/status-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/status-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/Status-swift.typealias":{"role":"symbol","title":"Paths.GetRecordingsParameters.Status","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/Status-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/status-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/status-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/status-swift.typealias.json new file mode 100644 index 000000000..6accc64c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/status-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","preciseIdentifier":"s:11JellyfinAPI15RecordingStatusO","text":"RecordingStatus"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/status-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/Status-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"title":"Paths.GetRecordingsParameters.Status","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6Statusa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Status"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/Status-swift.typealias":{"role":"symbol","title":"Paths.GetRecordingsParameters.Status","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/Status-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/status-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/userid.json new file mode 100644 index 000000000..c0595665c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23GetRecordingsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters":{"role":"symbol","title":"Paths.GetRecordingsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseries(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseries(parameters:).json new file mode 100644 index 000000000..eb07b121d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseries(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingsSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV","text":"GetRecordingsSeriesParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseries(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingsSeries(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets live tv recording series."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"getRecordingsSeries(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingsSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRecordingsSeriesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19getRecordingsSeries10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0heF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","platforms":[]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated"}]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRecordingsSeries(parameters:)":{"role":"symbol","title":"getRecordingsSeries(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRecordingsSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRecordingsSeriesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live tv recording series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRecordingsSeries(parameters:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseries(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters.json new file mode 100644 index 000000000..f85770718 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/init(channelID:userID:groupID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:enableTotalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/channelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/groupID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/isInProgress","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/seriesTimerID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/status-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/userID"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/Status-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/Status-swift.typealias":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters.Status","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/Status-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/status-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/init(channelID:userID:groupID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:enableTotalRecordCount:)":{"role":"symbol","title":"init(channelID:userID:groupID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6Statusa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/init(channelID:userID:groupID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/init(channelid:userid:groupid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/groupID":{"role":"symbol","title":"groupID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/groupID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/groupid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/status-swift.property":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6Statusa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/status-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/status-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/isInProgress":{"role":"symbol","title":"isInProgress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/isInProgress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/isinprogress"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/channelid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/asquery.json new file mode 100644 index 000000000..9b9518867 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/channelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/channelid.json new file mode 100644 index 000000000..f9bdd7eaa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/channelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/channelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/channelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV9channelIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enableimages.json new file mode 100644 index 000000000..44aeb4271 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enableimages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enableimagetypes.json new file mode 100644 index 000000000..d8d50978e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV16enableImageTypesSayAA0I4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..090e1a1fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enableuserdata.json new file mode 100644 index 000000000..245913542 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/fields.json new file mode 100644 index 000000000..4ad5d7a70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/groupid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/groupid.json new file mode 100644 index 000000000..8282ea435 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/groupid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/groupid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/groupID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"groupID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV7groupIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/groupID":{"role":"symbol","title":"groupID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/groupID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/groupid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/imagetypelimit.json new file mode 100644 index 000000000..71ff5d492 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/init(channelid:userid:groupid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:enabletotalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/init(channelid:userid:groupid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:enabletotalrecordcount:).json new file mode 100644 index 000000000..5f7e0baed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/init(channelid:userid:groupid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:enabletotalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/Status-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6Statusa","text":"Status"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/init(channelid:userid:groupid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:enabletotalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/init(channelID:userID:groupID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:enableTotalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6Statusa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(channelID:userID:groupID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:enableTotalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV9channelID04userI005groupI010startIndex5limit6status12isInProgress011seriesTimerI012enableImages14imageTypeLimit0U10ImageTypes6fields0U8UserData0U16TotalRecordCountAESSSg_10Foundation4UUIDVSgATs5Int32VSgA_AA15RecordingStatusOSgSbSgATA3_A_SayAA0zX0OGSgSayAA10ItemFieldsOGSgA3_A3_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/init(channelID:userID:groupID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:enableTotalRecordCount:)":{"role":"symbol","title":"init(channelID:userID:groupID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6Statusa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/init(channelID:userID:groupID:startIndex:limit:status:isInProgress:seriesTimerID:enableImages:imageTypeLimit:enableImageTypes:fields:enableUserData:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/init(channelid:userid:groupid:startindex:limit:status:isinprogress:seriestimerid:enableimages:imagetypelimit:enableimagetypes:fields:enableuserdata:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/Status-swift.typealias":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters.Status","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/Status-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/status-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/isinprogress.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/isinprogress.json new file mode 100644 index 000000000..0681fb06a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/isinprogress.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/isinprogress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/isInProgress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isInProgress","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV12isInProgressSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/isInProgress":{"role":"symbol","title":"isInProgress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/isInProgress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/isinprogress"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/limit.json new file mode 100644 index 000000000..80d3a4140 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/seriestimerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/seriestimerid.json new file mode 100644 index 000000000..e491f8532 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/seriestimerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/seriestimerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/seriesTimerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesTimerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV13seriesTimerIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/startindex.json new file mode 100644 index 000000000..8a388aee0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/status-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/status-swift.property.json new file mode 100644 index 000000000..cbf4706cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/status-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/Status-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6Statusa","text":"Status"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/status-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/status-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6Statusa"},{"kind":"text","text":"?"}],"title":"status","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6statusAA15RecordingStatusOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/status-swift.property":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6Statusa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/status-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/status-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/Status-swift.typealias":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters.Status","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/Status-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/status-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/status-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/status-swift.typealias.json new file mode 100644 index 000000000..080d4750c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/status-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","preciseIdentifier":"s:11JellyfinAPI15RecordingStatusO","text":"RecordingStatus"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/status-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/Status-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"title":"Paths.GetRecordingsSeriesParameters.Status","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6Statusa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Status"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/Status-swift.typealias":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters.Status","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/Status-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/status-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/userid.json new file mode 100644 index 000000000..da0a7a70c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrecordingsseriesparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetRecordingsSeriesParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters":{"role":"symbol","title":"Paths.GetRecordingsSeriesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRecordingsSeriesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRecordingsSeriesParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRecordingsSeriesParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrecordingsseriesparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimageproviders(itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimageproviders(itemid:).json new file mode 100644 index 000000000..2dd9310a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimageproviders(itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteImageProviders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo","preciseIdentifier":"s:11JellyfinAPI17ImageProviderInfoV","text":"ImageProviderInfo"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimageproviders(itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteImageProviders(itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available remote image providers for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRemoteImageProviders(itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteImageProviders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageProviderInfo","preciseIdentifier":"s:11JellyfinAPI17ImageProviderInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO23getRemoteImageProviders6itemID3Get7RequestVySayAA0F12ProviderInfoVGGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRemoteImageProviders(itemID:)":{"role":"symbol","title":"getRemoteImageProviders(itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteImageProviders"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageProviderInfo","preciseIdentifier":"s:11JellyfinAPI17ImageProviderInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets available remote image providers for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteImageProviders(itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimageproviders(itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageProviderInfo":{"role":"symbol","title":"ImageProviderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageProviderInfo"}],"abstract":[{"type":"text","text":"Class ImageProviderInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageProviderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageProviderInfo"}],"url":"\/documentation\/jellyfinapi\/imageproviderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimages(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimages(itemid:parameters:).json new file mode 100644 index 000000000..75209193b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimages(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteImages"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV","text":"GetRemoteImagesParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimages(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteImages(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available remote images for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRemoteImages(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteImages"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRemoteImagesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getRemoteImages6itemID10parameters3Get7RequestVyAA0E11ImageResultVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRemoteImages(itemID:parameters:)":{"role":"symbol","title":"getRemoteImages(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteImages"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetRemoteImagesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets available remote images for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteImages(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimages(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult":{"role":"symbol","title":"RemoteImageResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageResult"}],"abstract":[{"type":"text","text":"Class RemoteImageResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageResult"}],"url":"\/documentation\/jellyfinapi\/remoteimageresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters.json new file mode 100644 index 000000000..79abc7690 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"role":"symbol","title":"Paths.GetRemoteImagesParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/init(type:startIndex:limit:providerName:isIncludeAllLanguages:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/isIncludeAllLanguages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/providerName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/type-swift.property"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/Type-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/providerName":{"role":"symbol","title":"providerName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/providerName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/providername"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/type-swift.property":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4Typea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/type-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/type-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.GetRemoteImagesParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/type-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/init(type:startIndex:limit:providerName:isIncludeAllLanguages:)":{"role":"symbol","title":"init(type:startIndex:limit:providerName:isIncludeAllLanguages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4Typea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeAllLanguages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/init(type:startIndex:limit:providerName:isIncludeAllLanguages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/init(type:startindex:limit:providername:isincludealllanguages:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/isIncludeAllLanguages":{"role":"symbol","title":"isIncludeAllLanguages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeAllLanguages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/isIncludeAllLanguages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/isincludealllanguages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/asquery.json new file mode 100644 index 000000000..38cf482bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/init(type:startindex:limit:providername:isincludealllanguages:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/init(type:startindex:limit:providername:isincludealllanguages:).json new file mode 100644 index 000000000..7289c8ae5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/init(type:startindex:limit:providername:isincludealllanguages:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/Type-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4Typea","text":"Type"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIncludeAllLanguages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/init(type:startindex:limit:providername:isincludealllanguages:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/init(type:startIndex:limit:providerName:isIncludeAllLanguages:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4Typea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeAllLanguages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(type:startIndex:limit:providerName:isIncludeAllLanguages:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4type10startIndex5limit12providerName21isIncludeAllLanguagesAeA9ImageTypeOSg_s5Int32VSgAPSSSgSbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/init(type:startIndex:limit:providerName:isIncludeAllLanguages:)":{"role":"symbol","title":"init(type:startIndex:limit:providerName:isIncludeAllLanguages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4Typea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIncludeAllLanguages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/init(type:startIndex:limit:providerName:isIncludeAllLanguages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/init(type:startindex:limit:providername:isincludealllanguages:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.GetRemoteImagesParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/type-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/isincludealllanguages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/isincludealllanguages.json new file mode 100644 index 000000000..45b30b25a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/isincludealllanguages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeAllLanguages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/isincludealllanguages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/isIncludeAllLanguages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeAllLanguages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeAllLanguages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV21isIncludeAllLanguagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/isIncludeAllLanguages":{"role":"symbol","title":"isIncludeAllLanguages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeAllLanguages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/isIncludeAllLanguages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/isincludealllanguages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/limit.json new file mode 100644 index 000000000..1ce0bcfd1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/providername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/providername.json new file mode 100644 index 000000000..d2259f403 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/providername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/providername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/providerName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"providerName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV12providerNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/providerName":{"role":"symbol","title":"providerName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/providerName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/providername"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/startindex.json new file mode 100644 index 000000000..dda2da659 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/type-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/type-swift.property.json new file mode 100644 index 000000000..aa1830261 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/type-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/Type-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4Typea","text":"Type"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/type-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/type-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4Typea"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4typeAA9ImageTypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/type-swift.property":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Type","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4Typea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/type-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/type-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.GetRemoteImagesParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/type-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/type-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/type-swift.typealias.json new file mode 100644 index 000000000..79fee342f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremoteimagesparameters/type-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"`Type`"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/type-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/Type-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"title":"Paths.GetRemoteImagesParameters.Type","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25GetRemoteImagesParametersV4Typea","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Type"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters/Type-swift.typealias":{"role":"symbol","title":"Paths.GetRemoteImagesParameters.Type","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Type"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters\/Type-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Type"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters\/type-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetRemoteImagesParameters":{"role":"symbol","title":"Paths.GetRemoteImagesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetRemoteImagesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetRemoteImagesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetRemoteImagesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getremoteimagesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremotesubtitles(id:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremotesubtitles(id:).json new file mode 100644 index 000000000..521ea70e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getremotesubtitles(id:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getremotesubtitles(id:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteSubtitles(id:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the remote subtitles."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRemoteSubtitles(id:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getRemoteSubtitles2id3Get7RequestVySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRemoteSubtitles(id:)":{"role":"symbol","title":"getRemoteSubtitles(id:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the remote subtitles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRemoteSubtitles(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getremotesubtitles(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrepositories.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrepositories.json new file mode 100644 index 000000000..c2779f5a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrepositories.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRepositories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV","text":"RepositoryInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrepositories"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRepositories","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all package repositories."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRepositories","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRepositories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO15getRepositories3Get7RequestVySayAA14RepositoryInfoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRepositories":{"role":"symbol","title":"getRepositories","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRepositories"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets all package repositories."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRepositories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrepositories"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitems(userid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitems(userid:parameters:).json new file mode 100644 index 000000000..ffed3010d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitems(userid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getResumeItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV","text":"GetResumeItemsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitems(userid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getResumeItems(userID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets items based on a query."}],"kind":"symbol","metadata":{"role":"symbol","title":"getResumeItems(userID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getResumeItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetResumeItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getResumeItems6userID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getResumeItems(userID:parameters:)":{"role":"symbol","title":"getResumeItems(userID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getResumeItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetResumeItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets items based on a query."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getResumeItems(userID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitems(userid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters.json new file mode 100644 index 000000000..162b856f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"role":"symbol","title":"Paths.GetResumeItemsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/init(startIndex:limit:searchTerm:parentID:fields:mediaTypes:enableUserData:imageTypeLimit:enableImageTypes:excludeItemTypes:includeItemTypes:enableTotalRecordCount:enableImages:excludeActiveSessions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/excludeActiveSessions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/mediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/startIndex"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/excludeActiveSessions":{"role":"symbol","title":"excludeActiveSessions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/excludeActiveSessions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/excludeactivesessions"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/init(startIndex:limit:searchTerm:parentID:fields:mediaTypes:enableUserData:imageTypeLimit:enableImageTypes:excludeItemTypes:includeItemTypes:enableTotalRecordCount:enableImages:excludeActiveSessions:)":{"role":"symbol","title":"init(startIndex:limit:searchTerm:parentID:fields:mediaTypes:enableUserData:imageTypeLimit:enableImageTypes:excludeItemTypes:includeItemTypes:enableTotalRecordCount:enableImages:excludeActiveSessions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/init(startIndex:limit:searchTerm:parentID:fields:mediaTypes:enableUserData:imageTypeLimit:enableImageTypes:excludeItemTypes:includeItemTypes:enableTotalRecordCount:enableImages:excludeActiveSessions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/init(startindex:limit:searchterm:parentid:fields:mediatypes:enableuserdata:imagetypelimit:enableimagetypes:excludeitemtypes:includeitemtypes:enabletotalrecordcount:enableimages:excludeactivesessions:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enableuserdata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/asquery.json new file mode 100644 index 000000000..61d13ab7d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enableimages.json new file mode 100644 index 000000000..77193904c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enableimagetypes.json new file mode 100644 index 000000000..fa008130c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV16enableImageTypesSayAA0I4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..5537d8d22 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enableuserdata.json new file mode 100644 index 000000000..e5fa455e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/enableuserdata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/excludeactivesessions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/excludeactivesessions.json new file mode 100644 index 000000000..3e51cc1a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/excludeactivesessions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/excludeactivesessions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/excludeActiveSessions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"excludeActiveSessions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV21excludeActiveSessionsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/excludeActiveSessions":{"role":"symbol","title":"excludeActiveSessions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/excludeActiveSessions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/excludeactivesessions"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/excludeitemtypes.json new file mode 100644 index 000000000..36a20b5f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV16excludeItemTypesSayAA04BaseI4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/fields.json new file mode 100644 index 000000000..e37976d8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/imagetypelimit.json new file mode 100644 index 000000000..029e5e4d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/includeitemtypes.json new file mode 100644 index 000000000..2fd261f73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV16includeItemTypesSayAA04BaseI4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/init(startindex:limit:searchterm:parentid:fields:mediatypes:enableuserdata:imagetypelimit:enableimagetypes:excludeitemtypes:includeitemtypes:enabletotalrecordcount:enableimages:excludeactivesessions:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/init(startindex:limit:searchterm:parentid:fields:mediatypes:enableuserdata:imagetypelimit:enableimagetypes:excludeitemtypes:includeitemtypes:enabletotalrecordcount:enableimages:excludeactivesessions:).json new file mode 100644 index 000000000..89a9d8e8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/init(startindex:limit:searchterm:parentid:fields:mediatypes:enableuserdata:imagetypelimit:enableimagetypes:excludeitemtypes:includeitemtypes:enabletotalrecordcount:enableimages:excludeactivesessions:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"excludeActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/init(startindex:limit:searchterm:parentid:fields:mediatypes:enableuserdata:imagetypelimit:enableimagetypes:excludeitemtypes:includeitemtypes:enabletotalrecordcount:enableimages:excludeactivesessions:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/init(startIndex:limit:searchTerm:parentID:fields:mediaTypes:enableUserData:imageTypeLimit:enableImageTypes:excludeItemTypes:includeItemTypes:enableTotalRecordCount:enableImages:excludeActiveSessions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(startIndex:limit:searchTerm:parentID:fields:mediaTypes:enableUserData:imageTypeLimit:enableImageTypes:excludeItemTypes:includeItemTypes:enableTotalRecordCount:enableImages:excludeActiveSessions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV10startIndex5limit10searchTerm8parentID6fields10mediaTypes14enableUserData14imageTypeLimit0r5ImageQ0011excludeItemQ007includezQ00R16TotalRecordCount0R6Images0Y14ActiveSessionsAEs5Int32VSg_AVSSSg10Foundation4UUIDVSgSayAA0Z6FieldsOGSgSaySSGSgSbSgAVSayAA0xV0OGSgSayAA04BaseZ4KindOGSgA14_A6_A6_A6_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/init(startIndex:limit:searchTerm:parentID:fields:mediaTypes:enableUserData:imageTypeLimit:enableImageTypes:excludeItemTypes:includeItemTypes:enableTotalRecordCount:enableImages:excludeActiveSessions:)":{"role":"symbol","title":"init(startIndex:limit:searchTerm:parentID:fields:mediaTypes:enableUserData:imageTypeLimit:enableImageTypes:excludeItemTypes:includeItemTypes:enableTotalRecordCount:enableImages:excludeActiveSessions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/init(startIndex:limit:searchTerm:parentID:fields:mediaTypes:enableUserData:imageTypeLimit:enableImageTypes:excludeItemTypes:includeItemTypes:enableTotalRecordCount:enableImages:excludeActiveSessions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/init(startindex:limit:searchterm:parentid:fields:mediatypes:enableuserdata:imagetypelimit:enableimagetypes:excludeitemtypes:includeitemtypes:enabletotalrecordcount:enableimages:excludeactivesessions:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/limit.json new file mode 100644 index 000000000..1c455b2af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/mediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/mediatypes.json new file mode 100644 index 000000000..3b84fe44a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/mediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/mediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/mediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV10mediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/mediatypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/parentid.json new file mode 100644 index 000000000..4a3ec9c64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/searchterm.json new file mode 100644 index 000000000..b7ed551b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV10searchTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/startindex.json new file mode 100644 index 000000000..867b4b8ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getresumeitemsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetResumeItemsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters":{"role":"symbol","title":"Paths.GetResumeItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetResumeItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetResumeItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetResumeItemsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetResumeItemsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getresumeitemsparameters\/startindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrootfolder(userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrootfolder(userid:).json new file mode 100644 index 000000000..20f0b1a1e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getrootfolder(userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRootFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getrootfolder(userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRootFolder(userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the root folder from a user’s library."}],"kind":"symbol","metadata":{"role":"symbol","title":"getRootFolder(userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRootFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getRootFolder6userID3Get7RequestVyAA11BaseItemDtoVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getRootFolder(userID:)":{"role":"symbol","title":"getRootFolder(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRootFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the root folder from a user’s library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getRootFolder(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getrootfolder(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getschedulesdirectcountries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getschedulesdirectcountries.json new file mode 100644 index 000000000..85dec9e19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getschedulesdirectcountries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSchedulesDirectCountries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getschedulesdirectcountries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSchedulesDirectCountries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets available countries."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSchedulesDirectCountries","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSchedulesDirectCountries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27getSchedulesDirectCountries3Get7RequestVySSGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSchedulesDirectCountries":{"role":"symbol","title":"getSchedulesDirectCountries","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSchedulesDirectCountries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets available countries."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSchedulesDirectCountries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getschedulesdirectcountries"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasons(seriesid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasons(seriesid:parameters:).json new file mode 100644 index 000000000..c99c2df5e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasons(seriesid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeasons"},{"kind":"text","text":"("},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV","text":"GetSeasonsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasons(seriesid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeasons(seriesID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets seasons for a tv series."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSeasons(seriesID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeasons"},{"kind":"text","text":"("},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSeasonsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10getSeasons8seriesID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0iE10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSeasons(seriesID:parameters:)":{"role":"symbol","title":"getSeasons(seriesID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeasons"},{"kind":"text","text":"("},{"kind":"externalParam","text":"seriesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSeasonsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets seasons for a tv series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeasons(seriesID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasons(seriesid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters.json new file mode 100644 index 000000000..55911c7e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"role":"symbol","title":"Paths.GetSeasonsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/init(userID:fields:isSpecialSeason:isMissing:adjacentTo:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/adjacentTo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/isMissing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/isSpecialSeason","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/isMissing":{"role":"symbol","title":"isMissing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/isMissing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/ismissing"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/adjacentTo":{"role":"symbol","title":"adjacentTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/adjacentTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/adjacentto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/init(userID:fields:isSpecialSeason:isMissing:adjacentTo:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)":{"role":"symbol","title":"init(userID:fields:isSpecialSeason:isMissing:adjacentTo:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSpecialSeason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/init(userID:fields:isSpecialSeason:isMissing:adjacentTo:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/init(userid:fields:isspecialseason:ismissing:adjacentto:enableimages:imagetypelimit:enableimagetypes:enableuserdata:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/isSpecialSeason":{"role":"symbol","title":"isSpecialSeason","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSpecialSeason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/isSpecialSeason","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/isspecialseason"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/enableuserdata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/adjacentto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/adjacentto.json new file mode 100644 index 000000000..4e2239031 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/adjacentto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/adjacentto"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/adjacentTo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"adjacentTo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV10adjacentToSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/adjacentTo":{"role":"symbol","title":"adjacentTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/adjacentTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/adjacentto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/asquery.json new file mode 100644 index 000000000..b0f8d5f39 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/enableimages.json new file mode 100644 index 000000000..6f1533f26 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/enableimagetypes.json new file mode 100644 index 000000000..08a45fe40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV16enableImageTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/enableuserdata.json new file mode 100644 index 000000000..8d1091e67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/enableuserdata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/fields.json new file mode 100644 index 000000000..4deb81d63 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/imagetypelimit.json new file mode 100644 index 000000000..db4131d62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/imagetypelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/init(userid:fields:isspecialseason:ismissing:adjacentto:enableimages:imagetypelimit:enableimagetypes:enableuserdata:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/init(userid:fields:isspecialseason:ismissing:adjacentto:enableimages:imagetypelimit:enableimagetypes:enableuserdata:).json new file mode 100644 index 000000000..05c805a59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/init(userid:fields:isspecialseason:ismissing:adjacentto:enableimages:imagetypelimit:enableimagetypes:enableuserdata:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isSpecialSeason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/init(userid:fields:isspecialseason:ismissing:adjacentto:enableimages:imagetypelimit:enableimagetypes:enableuserdata:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/init(userID:fields:isSpecialSeason:isMissing:adjacentTo:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSpecialSeason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(userID:fields:isSpecialSeason:isMissing:adjacentTo:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV6userID6fields15isSpecialSeason0J7Missing10adjacentTo12enableImages14imageTypeLimit0P10ImageTypes0P8UserDataAE10Foundation4UUIDVSg_SayAA10ItemFieldsOGSgSbSgAWSSSgAWs5Int32VSgSayAA0uS0OGSgAWtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/init(userID:fields:isSpecialSeason:isMissing:adjacentTo:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)":{"role":"symbol","title":"init(userID:fields:isSpecialSeason:isMissing:adjacentTo:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSpecialSeason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/init(userID:fields:isSpecialSeason:isMissing:adjacentTo:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/init(userid:fields:isspecialseason:ismissing:adjacentto:enableimages:imagetypelimit:enableimagetypes:enableuserdata:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/ismissing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/ismissing.json new file mode 100644 index 000000000..133495f20 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/ismissing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/ismissing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/isMissing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMissing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV9isMissingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/isMissing":{"role":"symbol","title":"isMissing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/isMissing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/ismissing"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/isspecialseason.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/isspecialseason.json new file mode 100644 index 000000000..17a54fe6e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/isspecialseason.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSpecialSeason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/isspecialseason"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/isSpecialSeason","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSpecialSeason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSpecialSeason","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV15isSpecialSeasonSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/isSpecialSeason":{"role":"symbol","title":"isSpecialSeason","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSpecialSeason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/isSpecialSeason","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/isspecialseason"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/userid.json new file mode 100644 index 000000000..ec32e574a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseasonsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetSeasonsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters":{"role":"symbol","title":"Paths.GetSeasonsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeasonsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeasonsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeasonsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeasonsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseasonsparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriesremotesearchresults(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriesremotesearchresults(_:).json new file mode 100644 index 000000000..f89a68844 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriesremotesearchresults(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesRemoteSearchResults"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV","text":"SeriesInfoRemoteSearchQuery"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseriesremotesearchresults(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesRemoteSearchResults(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get series remote search."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSeriesRemoteSearchResults(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO28getSeriesRemoteSearchResultsy3Get7RequestVySayAA0fG6ResultCGGAA0e4InfofG5QueryVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSeriesRemoteSearchResults(_:)":{"role":"symbol","title":"getSeriesRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get series remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriesremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery":{"role":"symbol","title":"SeriesInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimer(timerid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimer(timerid:).json new file mode 100644 index 000000000..50445f4e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimer(timerid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseriestimer(timerid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesTimer(timerID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a live tv series timer."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSeriesTimer(timerID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getSeriesTimer7timerID3Get7RequestVyAA0eF7InfoDtoVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSeriesTimer(timerID:)":{"role":"symbol","title":"getSeriesTimer(timerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a live tv series timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesTimer(timerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimer(timerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimers(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimers(parameters:).json new file mode 100644 index 000000000..a023f8ce2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimers(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesTimers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV","text":"GetSeriesTimersParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseriestimers(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesTimers(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets live tv series timers."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSeriesTimers(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesTimers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSeriesTimersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getSeriesTimers10parameters3Get7RequestVyAA0E23TimerInfoDtoQueryResultVGAC0heF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters":{"role":"symbol","title":"Paths.GetSeriesTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeriesTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeriesTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSeriesTimers(parameters:)":{"role":"symbol","title":"getSeriesTimers(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSeriesTimers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSeriesTimersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets live tv series timers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSeriesTimers(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimers(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult":{"role":"symbol","title":"SeriesTimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters.json new file mode 100644 index 000000000..a5b22f6e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeriesTimersParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseriestimersparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSeriesTimersParameters"}],"role":"symbol","title":"Paths.GetSeriesTimersParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeriesTimersParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/init(sortBy:sortOrder:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/sortOrder-swift.property"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/SortOrder-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/init(sortBy:sortOrder:)":{"role":"symbol","title":"init(sortBy:sortOrder:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV9SortOrdera"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/init(sortBy:sortOrder:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/init(sortby:sortorder:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/sortOrder-swift.property":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV9SortOrdera"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/sortOrder-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortorder-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/SortOrder-swift.typealias":{"role":"symbol","title":"Paths.GetSeriesTimersParameters.SortOrder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/SortOrder-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortorder-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters":{"role":"symbol","title":"Paths.GetSeriesTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeriesTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeriesTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/asquery.json new file mode 100644 index 000000000..de427f457 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters":{"role":"symbol","title":"Paths.GetSeriesTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeriesTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeriesTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/init(sortby:sortorder:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/init(sortby:sortorder:).json new file mode 100644 index 000000000..df140caa8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/init(sortby:sortorder:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/SortOrder-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV9SortOrdera","text":"SortOrder"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/init(sortby:sortorder:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/init(sortBy:sortOrder:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV9SortOrdera"},{"kind":"text","text":"?)"}],"title":"init(sortBy:sortOrder:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV6sortBy0H5OrderAESSSg_AA04SortJ0OSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/SortOrder-swift.typealias":{"role":"symbol","title":"Paths.GetSeriesTimersParameters.SortOrder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/SortOrder-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortorder-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/init(sortBy:sortOrder:)":{"role":"symbol","title":"init(sortBy:sortOrder:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV9SortOrdera"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/init(sortBy:sortOrder:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/init(sortby:sortorder:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters":{"role":"symbol","title":"Paths.GetSeriesTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeriesTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeriesTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/sortby.json new file mode 100644 index 000000000..ad1afbc3f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV6sortBySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters":{"role":"symbol","title":"Paths.GetSeriesTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeriesTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeriesTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortby"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/sortorder-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/sortorder-swift.property.json new file mode 100644 index 000000000..9452b0b61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/sortorder-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/SortOrder-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV9SortOrdera","text":"SortOrder"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortorder-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/sortOrder-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV9SortOrdera"},{"kind":"text","text":"?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV9sortOrderAA04SortI0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/sortOrder-swift.property":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV9SortOrdera"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/sortOrder-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortorder-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters":{"role":"symbol","title":"Paths.GetSeriesTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeriesTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeriesTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/SortOrder-swift.typealias":{"role":"symbol","title":"Paths.GetSeriesTimersParameters.SortOrder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/SortOrder-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortorder-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/sortorder-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/sortorder-swift.typealias.json new file mode 100644 index 000000000..8bb28c0a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getseriestimersparameters/sortorder-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortorder-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/SortOrder-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"title":"Paths.GetSeriesTimersParameters.SortOrder","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25GetSeriesTimersParametersV9SortOrdera","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SortOrder"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters/SortOrder-swift.typealias":{"role":"symbol","title":"Paths.GetSeriesTimersParameters.SortOrder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters\/SortOrder-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters\/sortorder-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSeriesTimersParameters":{"role":"symbol","title":"Paths.GetSeriesTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSeriesTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSeriesTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSeriesTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getseriestimersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getserverlogs.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getserverlogs.json new file mode 100644 index 000000000..d0cb55c59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getserverlogs.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getServerLogs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","preciseIdentifier":"s:11JellyfinAPI7LogFileV","text":"LogFile"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getserverlogs"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getServerLogs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a list of available server log files."}],"kind":"symbol","metadata":{"role":"symbol","title":"getServerLogs","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getServerLogs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LogFile","preciseIdentifier":"s:11JellyfinAPI7LogFileV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13getServerLogs3Get7RequestVySayAA7LogFileVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getServerLogs":{"role":"symbol","title":"getServerLogs","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getServerLogs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LogFile","preciseIdentifier":"s:11JellyfinAPI7LogFileV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of available server log files."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getServerLogs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getserverlogs"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/LogFile":{"role":"symbol","title":"LogFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LogFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LogFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LogFile"}],"url":"\/documentation\/jellyfinapi\/logfile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessions(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessions(parameters:).json new file mode 100644 index 000000000..18274068c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessions(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSessions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetSessionsParametersV","text":"GetSessionsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV","text":"SessionInfo"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsessions(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSessions(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a list of sessions."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSessions(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSessions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSessionsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetSessionsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11getSessions10parameters3Get7RequestVySayAA11SessionInfoVGGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSessions(parameters:)":{"role":"symbol","title":"getSessions(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSessions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSessionsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetSessionsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SessionInfo","preciseIdentifier":"s:11JellyfinAPI11SessionInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of sessions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSessions(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessions(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters":{"role":"symbol","title":"Paths.GetSessionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSessionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSessionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters.json new file mode 100644 index 000000000..f86f901ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSessionsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsessionsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSessionsParameters"}],"role":"symbol","title":"Paths.GetSessionsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSessionsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO21GetSessionsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/init(controllableByUserID:deviceID:activeWithinSeconds:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/activeWithinSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/controllableByUserID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/deviceID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters/activeWithinSeconds":{"role":"symbol","title":"activeWithinSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"activeWithinSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/activeWithinSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/activewithinseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters":{"role":"symbol","title":"Paths.GetSessionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSessionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSessionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters/init(controllableByUserID:deviceID:activeWithinSeconds:)":{"role":"symbol","title":"init(controllableByUserID:deviceID:activeWithinSeconds:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"controllableByUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"activeWithinSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/init(controllableByUserID:deviceID:activeWithinSeconds:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/init(controllablebyuserid:deviceid:activewithinseconds:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters/controllableByUserID":{"role":"symbol","title":"controllableByUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllableByUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/controllableByUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/controllablebyuserid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/deviceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/activewithinseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/activewithinseconds.json new file mode 100644 index 000000000..d809f7634 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/activewithinseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"activeWithinSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/activewithinseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/activeWithinSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"activeWithinSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"activeWithinSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSessionsParametersV19activeWithinSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters":{"role":"symbol","title":"Paths.GetSessionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSessionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSessionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters/activeWithinSeconds":{"role":"symbol","title":"activeWithinSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"activeWithinSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/activeWithinSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/activewithinseconds"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/asquery.json new file mode 100644 index 000000000..e675b5861 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSessionsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters":{"role":"symbol","title":"Paths.GetSessionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSessionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSessionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/controllablebyuserid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/controllablebyuserid.json new file mode 100644 index 000000000..96500f98c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/controllablebyuserid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllableByUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/controllablebyuserid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/controllableByUserID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllableByUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"controllableByUserID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSessionsParametersV20controllableByUserID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters/controllableByUserID":{"role":"symbol","title":"controllableByUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllableByUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/controllableByUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/controllablebyuserid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters":{"role":"symbol","title":"Paths.GetSessionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSessionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSessionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/deviceid.json new file mode 100644 index 000000000..b51b23c32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSessionsParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters":{"role":"symbol","title":"Paths.GetSessionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSessionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSessionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/deviceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/init(controllablebyuserid:deviceid:activewithinseconds:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/init(controllablebyuserid:deviceid:activewithinseconds:).json new file mode 100644 index 000000000..6ce17a686 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsessionsparameters/init(controllablebyuserid:deviceid:activewithinseconds:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"controllableByUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"activeWithinSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/init(controllablebyuserid:deviceid:activewithinseconds:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/init(controllableByUserID:deviceID:activeWithinSeconds:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"controllableByUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"activeWithinSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(controllableByUserID:deviceID:activeWithinSeconds:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO21GetSessionsParametersV20controllableByUserID06deviceJ019activeWithinSecondsAE10Foundation4UUIDVSg_SSSgs5Int32VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters":{"role":"symbol","title":"Paths.GetSessionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSessionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSessionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSessionsParameters/init(controllableByUserID:deviceID:activeWithinSeconds:)":{"role":"symbol","title":"init(controllableByUserID:deviceID:activeWithinSeconds:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"controllableByUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"activeWithinSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSessionsParameters\/init(controllableByUserID:deviceID:activeWithinSeconds:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsessionsparameters\/init(controllablebyuserid:deviceid:activewithinseconds:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbums(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbums(itemid:parameters:).json new file mode 100644 index 000000000..e356e81f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbums(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarAlbums"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV","text":"GetSimilarAlbumsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaralbums(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarAlbums(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets similar items."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSimilarAlbums(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarAlbums"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarAlbumsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16getSimilarAlbums6itemID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters":{"role":"symbol","title":"Paths.GetSimilarAlbumsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarAlbums(itemID:parameters:)":{"role":"symbol","title":"getSimilarAlbums(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarAlbums"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarAlbumsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarAlbums(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbums(itemid:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters.json new file mode 100644 index 000000000..d863362e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"role":"symbol","title":"Paths.GetSimilarAlbumsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/init(excludeArtistIDs:userID:limit:fields:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/excludeArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters":{"role":"symbol","title":"Paths.GetSimilarAlbumsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/asquery.json new file mode 100644 index 000000000..39a119c41 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters":{"role":"symbol","title":"Paths.GetSimilarAlbumsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/excludeartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/excludeartistids.json new file mode 100644 index 000000000..bdb3c2732 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/excludeartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/excludeartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/excludeArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV16excludeArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters":{"role":"symbol","title":"Paths.GetSimilarAlbumsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/fields.json new file mode 100644 index 000000000..94b80050b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters":{"role":"symbol","title":"Paths.GetSimilarAlbumsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/init(excludeartistids:userid:limit:fields:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/init(excludeartistids:userid:limit:fields:).json new file mode 100644 index 000000000..304c907d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/init(excludeartistids:userid:limit:fields:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/init(excludeartistids:userid:limit:fields:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/init(excludeArtistIDs:userID:limit:fields:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"title":"init(excludeArtistIDs:userID:limit:fields:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV16excludeArtistIDs6userID5limit6fieldsAESay10Foundation4UUIDVGSg_ALSgs5Int32VSgSayAA10ItemFieldsOGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters":{"role":"symbol","title":"Paths.GetSimilarAlbumsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/limit.json new file mode 100644 index 000000000..4930dd905 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters":{"role":"symbol","title":"Paths.GetSimilarAlbumsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/limit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/userid.json new file mode 100644 index 000000000..ccd3c68e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaralbumsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetSimilarAlbumsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters":{"role":"symbol","title":"Paths.GetSimilarAlbumsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarAlbumsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarAlbumsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarAlbumsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaralbumsparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartists(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartists(itemid:parameters:).json new file mode 100644 index 000000000..d27434dfa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartists(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV","text":"GetSimilarArtistsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarartists(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarArtists(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets similar items."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSimilarArtists(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17getSimilarArtists6itemID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarArtists(itemID:parameters:)":{"role":"symbol","title":"getSimilarArtists(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarArtists"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarArtistsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarArtists(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartists(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters":{"role":"symbol","title":"Paths.GetSimilarArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters.json new file mode 100644 index 000000000..eda6ebc33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"role":"symbol","title":"Paths.GetSimilarArtistsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/init(excludeArtistIDs:userID:limit:fields:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/excludeArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters":{"role":"symbol","title":"Paths.GetSimilarArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/asquery.json new file mode 100644 index 000000000..c1c89e5ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters":{"role":"symbol","title":"Paths.GetSimilarArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/excludeartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/excludeartistids.json new file mode 100644 index 000000000..9691564df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/excludeartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/excludeartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/excludeArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV16excludeArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters":{"role":"symbol","title":"Paths.GetSimilarArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/fields.json new file mode 100644 index 000000000..0f9430a16 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters":{"role":"symbol","title":"Paths.GetSimilarArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/init(excludeartistids:userid:limit:fields:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/init(excludeartistids:userid:limit:fields:).json new file mode 100644 index 000000000..4637abcc0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/init(excludeartistids:userid:limit:fields:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/init(excludeartistids:userid:limit:fields:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/init(excludeArtistIDs:userID:limit:fields:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"title":"init(excludeArtistIDs:userID:limit:fields:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV16excludeArtistIDs6userID5limit6fieldsAESay10Foundation4UUIDVGSg_ALSgs5Int32VSgSayAA10ItemFieldsOGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters":{"role":"symbol","title":"Paths.GetSimilarArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/limit.json new file mode 100644 index 000000000..070c27e3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters":{"role":"symbol","title":"Paths.GetSimilarArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/userid.json new file mode 100644 index 000000000..b43715554 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarartistsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27GetSimilarArtistsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters":{"role":"symbol","title":"Paths.GetSimilarArtistsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarArtistsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarArtistsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarArtistsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarartistsparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritems(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritems(itemid:parameters:).json new file mode 100644 index 000000000..04859baa3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritems(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV","text":"GetSimilarItemsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaritems(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarItems(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets similar items."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSimilarItems(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getSimilarItems6itemID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters":{"role":"symbol","title":"Paths.GetSimilarItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarItems(itemID:parameters:)":{"role":"symbol","title":"getSimilarItems(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarItems"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarItemsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarItems(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritems(itemid:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters.json new file mode 100644 index 000000000..32095519f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSimilarItemsParameters"}],"role":"symbol","title":"Paths.GetSimilarItemsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/init(excludeArtistIDs:userID:limit:fields:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/excludeArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters":{"role":"symbol","title":"Paths.GetSimilarItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/asquery.json new file mode 100644 index 000000000..1fb95fb32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters":{"role":"symbol","title":"Paths.GetSimilarItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/excludeartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/excludeartistids.json new file mode 100644 index 000000000..df3aa0ecb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/excludeartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/excludeartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/excludeArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV16excludeArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters":{"role":"symbol","title":"Paths.GetSimilarItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/fields.json new file mode 100644 index 000000000..c31a89e79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters":{"role":"symbol","title":"Paths.GetSimilarItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/init(excludeartistids:userid:limit:fields:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/init(excludeartistids:userid:limit:fields:).json new file mode 100644 index 000000000..8b1344ce5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/init(excludeartistids:userid:limit:fields:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/init(excludeartistids:userid:limit:fields:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/init(excludeArtistIDs:userID:limit:fields:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"title":"init(excludeArtistIDs:userID:limit:fields:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV16excludeArtistIDs6userID5limit6fieldsAESay10Foundation4UUIDVGSg_ALSgs5Int32VSgSayAA10ItemFieldsOGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters":{"role":"symbol","title":"Paths.GetSimilarItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/limit.json new file mode 100644 index 000000000..cff03e2bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters":{"role":"symbol","title":"Paths.GetSimilarItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/userid.json new file mode 100644 index 000000000..609221168 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilaritemsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSimilarItemsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters":{"role":"symbol","title":"Paths.GetSimilarItemsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarItemsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarItemsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarItemsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarItemsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilaritemsparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmovies(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmovies(itemid:parameters:).json new file mode 100644 index 000000000..4c8896ec4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmovies(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV","text":"GetSimilarMoviesParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarmovies(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarMovies(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets similar items."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSimilarMovies(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarMoviesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16getSimilarMovies6itemID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters":{"role":"symbol","title":"Paths.GetSimilarMoviesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarMovies(itemID:parameters:)":{"role":"symbol","title":"getSimilarMovies(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarMoviesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarMovies(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmovies(itemid:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters.json new file mode 100644 index 000000000..503f0d6fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"role":"symbol","title":"Paths.GetSimilarMoviesParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/init(excludeArtistIDs:userID:limit:fields:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/excludeArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters":{"role":"symbol","title":"Paths.GetSimilarMoviesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/asquery.json new file mode 100644 index 000000000..9972dcc16 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters":{"role":"symbol","title":"Paths.GetSimilarMoviesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/excludeartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/excludeartistids.json new file mode 100644 index 000000000..e837be3c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/excludeartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/excludeartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/excludeArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV16excludeArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters":{"role":"symbol","title":"Paths.GetSimilarMoviesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/fields.json new file mode 100644 index 000000000..30fdcd2cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters":{"role":"symbol","title":"Paths.GetSimilarMoviesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/init(excludeartistids:userid:limit:fields:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/init(excludeartistids:userid:limit:fields:).json new file mode 100644 index 000000000..0945725aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/init(excludeartistids:userid:limit:fields:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/init(excludeartistids:userid:limit:fields:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/init(excludeArtistIDs:userID:limit:fields:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"title":"init(excludeArtistIDs:userID:limit:fields:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV16excludeArtistIDs6userID5limit6fieldsAESay10Foundation4UUIDVGSg_ALSgs5Int32VSgSayAA10ItemFieldsOGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters":{"role":"symbol","title":"Paths.GetSimilarMoviesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/limit.json new file mode 100644 index 000000000..0bf2c2816 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters":{"role":"symbol","title":"Paths.GetSimilarMoviesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/userid.json new file mode 100644 index 000000000..96fab4f94 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarmoviesparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26GetSimilarMoviesParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarMoviesParameters":{"role":"symbol","title":"Paths.GetSimilarMoviesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarMoviesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarMoviesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarmoviesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshows(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshows(itemid:parameters:).json new file mode 100644 index 000000000..f2dd572cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshows(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarShows"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV","text":"GetSimilarShowsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarshows(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarShows(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets similar items."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSimilarShows(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarShows"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarShowsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getSimilarShows6itemID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarShows(itemID:parameters:)":{"role":"symbol","title":"getSimilarShows(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarShows"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarShowsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarShows(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshows(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters":{"role":"symbol","title":"Paths.GetSimilarShowsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarShowsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters.json new file mode 100644 index 000000000..b558b8a37 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSimilarShowsParameters"}],"role":"symbol","title":"Paths.GetSimilarShowsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/init(excludeArtistIDs:userID:limit:fields:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/excludeArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters":{"role":"symbol","title":"Paths.GetSimilarShowsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarShowsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/asquery.json new file mode 100644 index 000000000..cd8011652 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters":{"role":"symbol","title":"Paths.GetSimilarShowsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarShowsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/excludeartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/excludeartistids.json new file mode 100644 index 000000000..ca750f857 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/excludeartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/excludeartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/excludeArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV16excludeArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters":{"role":"symbol","title":"Paths.GetSimilarShowsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarShowsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/excludeartistids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/fields.json new file mode 100644 index 000000000..edbf70c3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters":{"role":"symbol","title":"Paths.GetSimilarShowsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarShowsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/init(excludeartistids:userid:limit:fields:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/init(excludeartistids:userid:limit:fields:).json new file mode 100644 index 000000000..2f97d0227 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/init(excludeartistids:userid:limit:fields:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/init(excludeartistids:userid:limit:fields:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/init(excludeArtistIDs:userID:limit:fields:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"title":"init(excludeArtistIDs:userID:limit:fields:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV16excludeArtistIDs6userID5limit6fieldsAESay10Foundation4UUIDVGSg_ALSgs5Int32VSgSayAA10ItemFieldsOGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters":{"role":"symbol","title":"Paths.GetSimilarShowsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarShowsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/init(excludeartistids:userid:limit:fields:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/limit.json new file mode 100644 index 000000000..3f08daaaf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters":{"role":"symbol","title":"Paths.GetSimilarShowsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarShowsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/userid.json new file mode 100644 index 000000000..a1c909745 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilarshowsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSimilarShowsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarShowsParameters":{"role":"symbol","title":"Paths.GetSimilarShowsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarShowsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarShowsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarShowsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilarshowsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailers(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailers(itemid:parameters:).json new file mode 100644 index 000000000..e2b544ead --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailers(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV","text":"GetSimilarTrailersParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilartrailers(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarTrailers(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets similar items."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSimilarTrailers(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarTrailersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getSimilarTrailers6itemID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters":{"role":"symbol","title":"Paths.GetSimilarTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSimilarTrailers(itemID:parameters:)":{"role":"symbol","title":"getSimilarTrailers(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSimilarTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSimilarTrailersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets similar items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSimilarTrailers(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailers(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters.json new file mode 100644 index 000000000..eed642375 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"role":"symbol","title":"Paths.GetSimilarTrailersParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/init(excludeArtistIDs:userID:limit:fields:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/excludeArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters":{"role":"symbol","title":"Paths.GetSimilarTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/asquery.json new file mode 100644 index 000000000..b25aba8c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters":{"role":"symbol","title":"Paths.GetSimilarTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/excludeartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/excludeartistids.json new file mode 100644 index 000000000..4989db815 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/excludeartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/excludeartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/excludeArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV16excludeArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters":{"role":"symbol","title":"Paths.GetSimilarTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/fields.json new file mode 100644 index 000000000..b70d874f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters":{"role":"symbol","title":"Paths.GetSimilarTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/init(excludeartistids:userid:limit:fields:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/init(excludeartistids:userid:limit:fields:).json new file mode 100644 index 000000000..2beebbcad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/init(excludeartistids:userid:limit:fields:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/init(excludeartistids:userid:limit:fields:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/init(excludeArtistIDs:userID:limit:fields:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"title":"init(excludeArtistIDs:userID:limit:fields:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV16excludeArtistIDs6userID5limit6fieldsAESay10Foundation4UUIDVGSg_ALSgs5Int32VSgSayAA10ItemFieldsOGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters":{"role":"symbol","title":"Paths.GetSimilarTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/init(excludeArtistIDs:userID:limit:fields:)":{"role":"symbol","title":"init(excludeArtistIDs:userID:limit:fields:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/init(excludeArtistIDs:userID:limit:fields:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/init(excludeartistids:userid:limit:fields:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/limit.json new file mode 100644 index 000000000..e4c3f1be8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters":{"role":"symbol","title":"Paths.GetSimilarTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/userid.json new file mode 100644 index 000000000..0d31ea6de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsimilartrailersparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28GetSimilarTrailersParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters":{"role":"symbol","title":"Paths.GetSimilarTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSimilarTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSimilarTrailersParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSimilarTrailersParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsimilartrailersparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getspecialfeatures(userid:itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getspecialfeatures(userid:itemid:).json new file mode 100644 index 000000000..a717c549a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getspecialfeatures(userid:itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSpecialFeatures"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getspecialfeatures(userid:itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSpecialFeatures(userID:itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets special features for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSpecialFeatures(userID:itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSpecialFeatures"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18getSpecialFeatures6userID04itemH03Get7RequestVySayAA11BaseItemDtoVGGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSpecialFeatures(userID:itemID:)":{"role":"symbol","title":"getSpecialFeatures(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSpecialFeatures"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets special features for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSpecialFeatures(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getspecialfeatures(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreen(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreen(parameters:).json new file mode 100644 index 000000000..db33c0696 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreen(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSplashscreen"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV","text":"GetSplashscreenParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreen(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSplashscreen(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Generates or gets the splashscreen."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSplashscreen(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSplashscreen"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSplashscreenParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15getSplashscreen10parameters3Get7RequestVy10Foundation4DataVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSplashscreen(parameters:)":{"role":"symbol","title":"getSplashscreen(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSplashscreen"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSplashscreenParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Generates or gets the splashscreen."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSplashscreen(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreen(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters.json new file mode 100644 index 000000000..116f3aebb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"role":"symbol","title":"Paths.GetSplashscreenParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/init(tag:format:maxWidth:maxHeight:width:height:fillWidth:fillHeight:blur:backgroundColor:foregroundLayer:quality:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/init(tag:format:maxWidth:maxHeight:width:height:fillWidth:fillHeight:blur:backgroundColor:foregroundLayer:quality:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:width:height:fillWidth:fillHeight:blur:backgroundColor:foregroundLayer:quality:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/init(tag:format:maxWidth:maxHeight:width:height:fillWidth:fillHeight:blur:backgroundColor:foregroundLayer:quality:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/init(tag:format:maxwidth:maxheight:width:height:fillwidth:fillheight:blur:backgroundcolor:foregroundlayer:quality:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetSplashscreenParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/format-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/asquery.json new file mode 100644 index 000000000..646aa6b64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/backgroundcolor.json new file mode 100644 index 000000000..578cb3834 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/blur.json new file mode 100644 index 000000000..db06f69dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/blur"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/fillheight.json new file mode 100644 index 000000000..8eb0b94a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/fillwidth.json new file mode 100644 index 000000000..8475eb11e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/fillwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/foregroundlayer.json new file mode 100644 index 000000000..fee2d6623 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/foregroundlayer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/format-swift.property.json new file mode 100644 index 000000000..7651c7553 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6formatAA11ImageFormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetSplashscreenParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/format-swift.typealias.json new file mode 100644 index 000000000..6ca3c218b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetSplashscreenParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetSplashscreenParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/height.json new file mode 100644 index 000000000..37e91f723 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/init(tag:format:maxwidth:maxheight:width:height:fillwidth:fillheight:blur:backgroundcolor:foregroundlayer:quality:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/init(tag:format:maxwidth:maxheight:width:height:fillwidth:fillheight:blur:backgroundcolor:foregroundlayer:quality:).json new file mode 100644 index 000000000..1c617290b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/init(tag:format:maxwidth:maxheight:width:height:fillwidth:fillheight:blur:backgroundcolor:foregroundlayer:quality:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/init(tag:format:maxwidth:maxheight:width:height:fillwidth:fillheight:blur:backgroundcolor:foregroundlayer:quality:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/init(tag:format:maxWidth:maxHeight:width:height:fillWidth:fillHeight:blur:backgroundColor:foregroundLayer:quality:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:width:height:fillWidth:fillHeight:blur:backgroundColor:foregroundLayer:quality:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV3tag6format8maxWidth0I6Height5width6height04fillJ00nK04blur15backgroundColor15foregroundLayer7qualityAESSSg_AA11ImageFormatOSgs5Int32VSgA6x2rXtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetSplashscreenParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/init(tag:format:maxWidth:maxHeight:width:height:fillWidth:fillHeight:blur:backgroundColor:foregroundLayer:quality:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:width:height:fillWidth:fillHeight:blur:backgroundColor:foregroundLayer:quality:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/init(tag:format:maxWidth:maxHeight:width:height:fillWidth:fillHeight:blur:backgroundColor:foregroundLayer:quality:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/init(tag:format:maxwidth:maxheight:width:height:fillwidth:fillheight:blur:backgroundcolor:foregroundlayer:quality:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/maxheight.json new file mode 100644 index 000000000..e74d36da2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/maxwidth.json new file mode 100644 index 000000000..5f0577d82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/quality.json new file mode 100644 index 000000000..e8e1e82e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/tag.json new file mode 100644 index 000000000..4536658de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/width.json new file mode 100644 index 000000000..870139967 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsplashscreenparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25GetSplashscreenParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters":{"role":"symbol","title":"Paths.GetSplashscreenParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSplashscreenParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSplashscreenParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSplashscreenParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSplashscreenParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsplashscreenparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstartupconfiguration.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstartupconfiguration.json new file mode 100644 index 000000000..0fa4079ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstartupconfiguration.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStartupConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstartupconfiguration"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStartupConfiguration","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the initial startup wizard configuration."}],"kind":"symbol","metadata":{"role":"symbol","title":"getStartupConfiguration","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStartupConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23getStartupConfiguration3Get7RequestVyAA0eF3DtoVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getStartupConfiguration":{"role":"symbol","title":"getStartupConfiguration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStartupConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the initial startup wizard configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStartupConfiguration","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstartupconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto":{"role":"symbol","title":"StartupConfigurationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"abstract":[{"type":"text","text":"The startup configuration DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupConfigurationDto"}],"url":"\/documentation\/jellyfinapi\/startupconfigurationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudio(name:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudio(name:userid:).json new file mode 100644 index 000000000..6f16e719e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudio(name:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudio"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudio(name:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudio(name:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a studio by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getStudio(name:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudio"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9getStudio4name6userID3Get7RequestVyAA11BaseItemDtoVGSS_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getStudio(name:userID:)":{"role":"symbol","title":"getStudio(name:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudio"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a studio by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudio(name:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudio(name:userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimage(name:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimage(name:imagetype:parameters:).json new file mode 100644 index 000000000..c28b70582 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimage(name:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudioImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV","text":"GetStudioImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimage(name:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudioImage(name:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get studio image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getStudioImage(name:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudioImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetStudioImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getStudioImage4name9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC0keF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getStudioImage(name:imageType:parameters:)":{"role":"symbol","title":"getStudioImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudioImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetStudioImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get studio image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudioImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimage(name:imagetype:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindex(name:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindex(name:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..b89016147 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindex(name:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudioImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV","text":"GetStudioImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindex(name:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudioImageByIndex(name:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get studio image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"getStudioImageByIndex(name:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudioImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetStudioImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21getStudioImageByIndex4name9imageType0jH010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC0mefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getStudioImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getStudioImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudioImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetStudioImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get studio image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudioImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters.json new file mode 100644 index 000000000..9a0b19769 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/fillheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/asquery.json new file mode 100644 index 000000000..76c5fa8ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..f4b015be6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/blur.json new file mode 100644 index 000000000..5ebaf443d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/blur"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..8909d9b78 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..e210c4bf1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..bd7ac59f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/foregroundlayer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..a195b967c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..affb3b369 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetStudioImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/height.json new file mode 100644 index 000000000..ab2097a05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..c116768dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV3tag6format8maxWidth0L6Height13percentPlayed13unplayedCount5width6height7quality04fillM00vN016isCropWhitespace0w3AddP9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0F6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..01c0d1fb5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..f652d08fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..988a1f307 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..82ccefab0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..2a0669ee5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/quality.json new file mode 100644 index 000000000..c75938487 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/tag.json new file mode 100644 index 000000000..5c5fea7c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/tag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..9c4556681 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/width.json new file mode 100644 index 000000000..6880d5dde --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31GetStudioImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters":{"role":"symbol","title":"Paths.GetStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimagebyindexparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters.json new file mode 100644 index 000000000..3ae275fd5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"role":"symbol","title":"Paths.GetStudioImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetStudioImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/isaddplayedindicator"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/asquery.json new file mode 100644 index 000000000..2a18af0c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/backgroundcolor.json new file mode 100644 index 000000000..e84b7ffe1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/blur.json new file mode 100644 index 000000000..6372f3caf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/fillheight.json new file mode 100644 index 000000000..d2602681c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/fillwidth.json new file mode 100644 index 000000000..2500e20dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/foregroundlayer.json new file mode 100644 index 000000000..5a8d9c170 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/format-swift.property.json new file mode 100644 index 000000000..da7fad275 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetStudioImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..2cb3d4b13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetStudioImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetStudioImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/height.json new file mode 100644 index 000000000..aedea67e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/imageindex.json new file mode 100644 index 000000000..54114f042 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..98b86c1d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV3tag6format8maxWidth0J6Height13percentPlayed13unplayedCount5width6height7quality04fillK00tL016isCropWhitespace0u3AddN9Indicator4blur15backgroundColor15foregroundLayer10imageIndexAESSSg_AA0F6FormatOSgs5Int32VSgA1_SdSgA1_A1_A1_A1_A1_A1_SbSgA3_A1_A2WA1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetStudioImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..7e5037290 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..70b7d1d7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/maxheight.json new file mode 100644 index 000000000..fd2c99c4b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/maxwidth.json new file mode 100644 index 000000000..421cce541 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/percentplayed.json new file mode 100644 index 000000000..5370d71b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/quality.json new file mode 100644 index 000000000..92d9a62dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/tag.json new file mode 100644 index 000000000..780b134ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/unplayedcount.json new file mode 100644 index 000000000..9e995c95d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/width.json new file mode 100644 index 000000000..455c142b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudioimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetStudioImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudioImageParameters":{"role":"symbol","title":"Paths.GetStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudios(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudios(parameters:).json new file mode 100644 index 000000000..e5bfdbdcf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudios(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudios"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetStudiosParametersV","text":"GetStudiosParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudios(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudios(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all studios from a given item, folder, or the entire library."}],"kind":"symbol","metadata":{"role":"symbol","title":"getStudios(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudios"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetStudiosParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetStudiosParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10getStudios10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getStudios(parameters:)":{"role":"symbol","title":"getStudios(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getStudios"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetStudiosParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO20GetStudiosParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets all studios from a given item, folder, or the entire library."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getStudios(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudios(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters.json new file mode 100644 index 000000000..e78e14519 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"role":"symbol","title":"Paths.GetStudiosParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:enableImages:enableTotalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameLessThan","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameStartsWith","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameStartsWithOrGreater","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:enableImages:enableTotalRecordCount:)":{"role":"symbol","title":"init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:enableImages:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:enableImages:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:enableimages:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/asquery.json new file mode 100644 index 000000000..4ecb08050 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enableimages.json new file mode 100644 index 000000000..cb456f804 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enableimagetypes.json new file mode 100644 index 000000000..7dd81cd73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV16enableImageTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..fc72b3c68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enabletotalrecordcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enableuserdata.json new file mode 100644 index 000000000..3870a7496 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/excludeitemtypes.json new file mode 100644 index 000000000..3e30b3d8f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV16excludeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/excludeitemtypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/fields.json new file mode 100644 index 000000000..c753ad7a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/imagetypelimit.json new file mode 100644 index 000000000..88717b24d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/includeitemtypes.json new file mode 100644 index 000000000..b39e29fd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV16includeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:enableimages:enabletotalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:enableimages:enabletotalrecordcount:).json new file mode 100644 index 000000000..9399c4b4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:enableimages:enabletotalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:enableimages:enabletotalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:enableImages:enableTotalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:enableImages:enableTotalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV10startIndex5limit10searchTerm8parentID6fields16excludeItemTypes07includepQ010isFavorite14enableUserData14imageTypeLimit0u5ImageQ004userM023nameStartsWithOrGreater14nameStartsWith12nameLessThan0U6Images0U16TotalRecordCountAEs5Int32VSg_AYSSSg10Foundation4UUIDVSgSayAA0P6FieldsOGSgSayAA04BaseP4KindOGSgA10_SbSgA11_AYSayAA05ImageY0OGSgA2_A3ZA11_A11_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:enableImages:enableTotalRecordCount:)":{"role":"symbol","title":"init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:enableImages:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/init(startIndex:limit:searchTerm:parentID:fields:excludeItemTypes:includeItemTypes:isFavorite:enableUserData:imageTypeLimit:enableImageTypes:userID:nameStartsWithOrGreater:nameStartsWith:nameLessThan:enableImages:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/init(startindex:limit:searchterm:parentid:fields:excludeitemtypes:includeitemtypes:isfavorite:enableuserdata:imagetypelimit:enableimagetypes:userid:namestartswithorgreater:namestartswith:namelessthan:enableimages:enabletotalrecordcount:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/isfavorite.json new file mode 100644 index 000000000..d40cb73fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/isfavorite"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/limit.json new file mode 100644 index 000000000..bfa2f063c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/namelessthan.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/namelessthan.json new file mode 100644 index 000000000..d61ce9020 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/namelessthan.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/namelessthan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameLessThan","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameLessThan","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV12nameLessThanSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/namestartswith.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/namestartswith.json new file mode 100644 index 000000000..593a9f633 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/namestartswith.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/namestartswith"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameStartsWith","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWith","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV14nameStartsWithSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/namestartswith"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/namestartswithorgreater.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/namestartswithorgreater.json new file mode 100644 index 000000000..f7532af15 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/namestartswithorgreater.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/namestartswithorgreater"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameStartsWithOrGreater","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWithOrGreater","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV23nameStartsWithOrGreaterSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/namestartswithorgreater"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/parentid.json new file mode 100644 index 000000000..f08421a9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/searchterm.json new file mode 100644 index 000000000..0e60f60e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV10searchTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/startindex.json new file mode 100644 index 000000000..a3973e938 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/userid.json new file mode 100644 index 000000000..98cd57df1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getstudiosparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO20GetStudiosParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters":{"role":"symbol","title":"Paths.GetStudiosParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetStudiosParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetStudiosParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetStudiosParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetStudiosParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getstudiosparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitle(routeitemid:routemediasourceid:routeindex:routeformat:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitle(routeitemid:routemediasourceid:routeindex:routeformat:parameters:).json new file mode 100644 index 000000000..011641bea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitle(routeitemid:routemediasourceid:routeindex:routeformat:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"routeItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeMediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV","text":"GetSubtitleParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitle(routeitemid:routemediasourceid:routeindex:routeformat:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitle(routeItemID:routeMediaSourceID:routeIndex:routeFormat:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets subtitles in a specified format."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSubtitle(routeItemID:routeMediaSourceID:routeIndex:routeFormat:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"routeItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeMediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSubtitleParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11getSubtitle11routeItemID0f11MediaSourceH00F5Index0F6Format10parameters3Get7RequestVySSGSS_SSSiSSAC0nE10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSubtitle(routeItemID:routeMediaSourceID:routeIndex:routeFormat:parameters:)":{"role":"symbol","title":"getSubtitle(routeItemID:routeMediaSourceID:routeIndex:routeFormat:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"routeItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeMediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSubtitleParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets subtitles in a specified format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitle(routeItemID:routeMediaSourceID:routeIndex:routeFormat:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitle(routeitemid:routemediasourceid:routeindex:routeformat:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters.json new file mode 100644 index 000000000..9ba884099 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"role":"symbol","title":"Paths.GetSubtitleParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/init(itemID:mediaSourceID:index:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:startPositionTicks:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/endPositionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/format","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/index","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/isAddVttTimeMap","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/startPositionTicks"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/format"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/startpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/endPositionTicks":{"role":"symbol","title":"endPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/endPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/endpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/index","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/index"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/isAddVttTimeMap":{"role":"symbol","title":"isAddVttTimeMap","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/isAddVttTimeMap","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/isaddvtttimemap"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/init(itemID:mediaSourceID:index:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:startPositionTicks:)":{"role":"symbol","title":"init(itemID:mediaSourceID:index:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:startPositionTicks:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/init(itemID:mediaSourceID:index:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:startPositionTicks:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/init(itemid:mediasourceid:index:format:endpositionticks:iscopytimestamps:isaddvtttimemap:startpositionticks:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/itemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/asquery.json new file mode 100644 index 000000000..60597c146 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/endpositionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/endpositionticks.json new file mode 100644 index 000000000..7d7789df7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/endpositionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/endpositionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/endPositionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"endPositionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV16endPositionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/endPositionTicks":{"role":"symbol","title":"endPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/endPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/endpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/format.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/format.json new file mode 100644 index 000000000..0ca3c4b74 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/format.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/format"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/format","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV6formatSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/format"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/index.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/index.json new file mode 100644 index 000000000..f45c019a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/index.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/index"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/index","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"index","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV5indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/index","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/index"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/init(itemid:mediasourceid:index:format:endpositionticks:iscopytimestamps:isaddvtttimemap:startpositionticks:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/init(itemid:mediasourceid:index:format:endpositionticks:iscopytimestamps:isaddvtttimemap:startpositionticks:).json new file mode 100644 index 000000000..fef8cc68a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/init(itemid:mediasourceid:index:format:endpositionticks:iscopytimestamps:isaddvtttimemap:startpositionticks:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/init(itemid:mediasourceid:index:format:endpositionticks:iscopytimestamps:isaddvtttimemap:startpositionticks:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/init(itemID:mediaSourceID:index:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:startPositionTicks:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"title":"init(itemID:mediaSourceID:index:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:startPositionTicks:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV6itemID011mediaSourceH05index6format16endPositionTicks16isCopyTimestamps0P13AddVttTimeMap05startnO0AE10Foundation4UUIDVSg_SSSgs5Int32VSgARs5Int64VSgSbSgAyXtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/init(itemID:mediaSourceID:index:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:startPositionTicks:)":{"role":"symbol","title":"init(itemID:mediaSourceID:index:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:startPositionTicks:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/init(itemID:mediaSourceID:index:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:startPositionTicks:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/init(itemid:mediasourceid:index:format:endpositionticks:iscopytimestamps:isaddvtttimemap:startpositionticks:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/isaddvtttimemap.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/isaddvtttimemap.json new file mode 100644 index 000000000..0d188e79d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/isaddvtttimemap.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/isaddvtttimemap"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/isAddVttTimeMap","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddVttTimeMap","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV15isAddVttTimeMapSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/isAddVttTimeMap":{"role":"symbol","title":"isAddVttTimeMap","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/isAddVttTimeMap","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/isaddvtttimemap"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/iscopytimestamps.json new file mode 100644 index 000000000..3ceff2975 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/iscopytimestamps"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/itemid.json new file mode 100644 index 000000000..0916eb482 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/itemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/mediasourceid.json new file mode 100644 index 000000000..234233b05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/startpositionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/startpositionticks.json new file mode 100644 index 000000000..10f9c251d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleparameters/startpositionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/startpositionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/startPositionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startPositionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetSubtitleParametersV18startPositionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters\/startpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleParameters":{"role":"symbol","title":"Paths.GetSubtitleParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitleparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleplaylist(itemid:index:mediasourceid:segmentlength:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleplaylist(itemid:index:mediasourceid:segmentlength:).json new file mode 100644 index 000000000..14b1aff05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitleplaylist(itemid:index:mediasourceid:segmentlength:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitlePlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitleplaylist(itemid:index:mediasourceid:segmentlength:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitlePlaylist(itemID:index:mediaSourceID:segmentLength:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an HLS subtitle playlist."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSubtitlePlaylist(itemID:index:mediaSourceID:segmentLength:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitlePlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19getSubtitlePlaylist6itemID5index011mediaSourceH013segmentLength3Get7RequestVy10Foundation4DataVGSS_SiSSs5Int32VtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSubtitlePlaylist(itemID:index:mediaSourceID:segmentLength:)":{"role":"symbol","title":"getSubtitlePlaylist(itemID:index:mediaSourceID:segmentLength:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitlePlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an HLS subtitle playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitlePlaylist(itemID:index:mediaSourceID:segmentLength:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitleplaylist(itemid:index:mediasourceid:segmentlength:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticks(routeitemid:routemediasourceid:routeindex:routestartpositionticks:routeformat:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticks(routeitemid:routemediasourceid:routeindex:routestartpositionticks:routeformat:parameters:).json new file mode 100644 index 000000000..9de3c3ba0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticks(routeitemid:routemediasourceid:routeindex:routestartpositionticks:routeformat:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitleWithTicks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"routeItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeMediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeStartPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV","text":"GetSubtitleWithTicksParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticks(routeitemid:routemediasourceid:routeindex:routestartpositionticks:routeformat:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitleWithTicks(routeItemID:routeMediaSourceID:routeIndex:routeStartPositionTicks:routeFormat:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets subtitles in a specified format."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSubtitleWithTicks(routeItemID:routeMediaSourceID:routeIndex:routeStartPositionTicks:routeFormat:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitleWithTicks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"routeItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeMediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeStartPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSubtitleWithTicksParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20getSubtitleWithTicks11routeItemID0h11MediaSourceJ00H5Index0h13StartPositionG00H6Format10parameters3Get7RequestVySSGSS_SSS2iSSAC0refG10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSubtitleWithTicks(routeItemID:routeMediaSourceID:routeIndex:routeStartPositionTicks:routeFormat:parameters:)":{"role":"symbol","title":"getSubtitleWithTicks(routeItemID:routeMediaSourceID:routeIndex:routeStartPositionTicks:routeFormat:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSubtitleWithTicks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"routeItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeMediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeStartPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"routeFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSubtitleWithTicksParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets subtitles in a specified format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSubtitleWithTicks(routeItemID:routeMediaSourceID:routeIndex:routeStartPositionTicks:routeFormat:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticks(routeitemid:routemediasourceid:routeindex:routestartpositionticks:routeformat:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters.json new file mode 100644 index 000000000..40fb3e130 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/init(itemID:mediaSourceID:index:startPositionTicks:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/endPositionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/format","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/index","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/isAddVttTimeMap","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/startPositionTicks"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/startpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/init(itemID:mediaSourceID:index:startPositionTicks:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:)":{"role":"symbol","title":"init(itemID:mediaSourceID:index:startPositionTicks:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/init(itemID:mediaSourceID:index:startPositionTicks:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/init(itemid:mediasourceid:index:startpositionticks:format:endpositionticks:iscopytimestamps:isaddvtttimemap:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/index","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/index"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/format"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/isAddVttTimeMap":{"role":"symbol","title":"isAddVttTimeMap","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/isAddVttTimeMap","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/isaddvtttimemap"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/endPositionTicks":{"role":"symbol","title":"endPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/endPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/endpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/asquery.json new file mode 100644 index 000000000..72b822d51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/endpositionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/endpositionticks.json new file mode 100644 index 000000000..85a54f32e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/endpositionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/endpositionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/endPositionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"endPositionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV011endPositionG0s5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/endPositionTicks":{"role":"symbol","title":"endPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/endPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/endpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/format.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/format.json new file mode 100644 index 000000000..12bf39ee0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/format.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/format"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/format","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV6formatSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/format"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/index.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/index.json new file mode 100644 index 000000000..8034e5eb3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/index.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/index"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/index","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"index","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV5indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/index","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/index"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/init(itemid:mediasourceid:index:startpositionticks:format:endpositionticks:iscopytimestamps:isaddvtttimemap:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/init(itemid:mediasourceid:index:startpositionticks:format:endpositionticks:iscopytimestamps:isaddvtttimemap:).json new file mode 100644 index 000000000..81f0b8960 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/init(itemid:mediasourceid:index:startpositionticks:format:endpositionticks:iscopytimestamps:isaddvtttimemap:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/init(itemid:mediasourceid:index:startpositionticks:format:endpositionticks:iscopytimestamps:isaddvtttimemap:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/init(itemID:mediaSourceID:index:startPositionTicks:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(itemID:mediaSourceID:index:startPositionTicks:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV6itemID011mediaSourceJ05index013startPositionG06format03endoG016isCopyTimestamps0R13AddVttTimeMapAE10Foundation4UUIDVSg_SSSgs5Int32VSgs5Int64VSgArXSbSgAYtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/init(itemID:mediaSourceID:index:startPositionTicks:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:)":{"role":"symbol","title":"init(itemID:mediaSourceID:index:startPositionTicks:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/init(itemID:mediaSourceID:index:startPositionTicks:format:endPositionTicks:isCopyTimestamps:isAddVttTimeMap:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/init(itemid:mediasourceid:index:startpositionticks:format:endpositionticks:iscopytimestamps:isaddvtttimemap:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/isaddvtttimemap.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/isaddvtttimemap.json new file mode 100644 index 000000000..4f6612187 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/isaddvtttimemap.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/isaddvtttimemap"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/isAddVttTimeMap","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddVttTimeMap","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV15isAddVttTimeMapSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/isAddVttTimeMap":{"role":"symbol","title":"isAddVttTimeMap","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddVttTimeMap"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/isAddVttTimeMap","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/isaddvtttimemap"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/iscopytimestamps.json new file mode 100644 index 000000000..65267abec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/itemid.json new file mode 100644 index 000000000..a7fb8008f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/itemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/mediasourceid.json new file mode 100644 index 000000000..eaadcfd1b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/startpositionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/startpositionticks.json new file mode 100644 index 000000000..409062a5a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsubtitlewithticksparameters/startpositionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/startpositionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/startPositionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startPositionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30GetSubtitleWithTicksParametersV013startPositionG0s5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters":{"role":"symbol","title":"Paths.GetSubtitleWithTicksParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSubtitleWithTicksParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSubtitleWithTicksParameters/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSubtitleWithTicksParameters\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsubtitlewithticksparameters\/startpositionticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestions(userid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestions(userid:parameters:).json new file mode 100644 index 000000000..a45e8a4d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestions(userid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSuggestions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV","text":"GetSuggestionsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsuggestions(userid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSuggestions(userID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets suggestions."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSuggestions(userID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSuggestions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSuggestionsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getSuggestions6userID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0iE10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters":{"role":"symbol","title":"Paths.GetSuggestionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSuggestions(userID:parameters:)":{"role":"symbol","title":"getSuggestions(userID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSuggestions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetSuggestionsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets suggestions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSuggestions(userID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestions(userid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters.json new file mode 100644 index 000000000..5f930bd5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"role":"symbol","title":"Paths.GetSuggestionsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/init(mediaType:type:startIndex:limit:enableTotalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/mediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/type"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters":{"role":"symbol","title":"Paths.GetSuggestionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/init(mediaType:type:startIndex:limit:enableTotalRecordCount:)":{"role":"symbol","title":"init(mediaType:type:startIndex:limit:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/init(mediaType:type:startIndex:limit:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/init(mediatype:type:startindex:limit:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/mediaType":{"role":"symbol","title":"mediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/mediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/mediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/asquery.json new file mode 100644 index 000000000..b7e15e527 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters":{"role":"symbol","title":"Paths.GetSuggestionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..c2037f3b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters":{"role":"symbol","title":"Paths.GetSuggestionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/init(mediatype:type:startindex:limit:enabletotalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/init(mediatype:type:startindex:limit:enabletotalrecordcount:).json new file mode 100644 index 000000000..88b931e95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/init(mediatype:type:startindex:limit:enabletotalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/init(mediatype:type:startindex:limit:enabletotalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/init(mediaType:type:startIndex:limit:enableTotalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(mediaType:type:startIndex:limit:enableTotalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV9mediaType4type10startIndex5limit22enableTotalRecordCountAESaySSGSg_SayAA12BaseItemKindOGSgs5Int32VSgASSbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters":{"role":"symbol","title":"Paths.GetSuggestionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/init(mediaType:type:startIndex:limit:enableTotalRecordCount:)":{"role":"symbol","title":"init(mediaType:type:startIndex:limit:enableTotalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/init(mediaType:type:startIndex:limit:enableTotalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/init(mediatype:type:startindex:limit:enabletotalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/limit.json new file mode 100644 index 000000000..89553f6cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters":{"role":"symbol","title":"Paths.GetSuggestionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/mediatype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/mediatype.json new file mode 100644 index 000000000..b21addfca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/mediatype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/mediatype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/mediaType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV9mediaTypeSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters":{"role":"symbol","title":"Paths.GetSuggestionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/mediaType":{"role":"symbol","title":"mediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/mediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/mediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/startindex.json new file mode 100644 index 000000000..7e4061f2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters":{"role":"symbol","title":"Paths.GetSuggestionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/type.json new file mode 100644 index 000000000..c65ce0135 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsuggestionsparameters/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetSuggestionsParametersV4typeSayAA12BaseItemKindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetSuggestionsParameters":{"role":"symbol","title":"Paths.GetSuggestionsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetSuggestionsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetSuggestionsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetSuggestionsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getsuggestionsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsysteminfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsysteminfo.json new file mode 100644 index 000000000..74228edaf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getsysteminfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSystemInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getsysteminfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSystemInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets information about the server."}],"kind":"symbol","metadata":{"role":"symbol","title":"getSystemInfo","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSystemInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13getSystemInfo3Get7RequestVyAA0eF0VGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getSystemInfo":{"role":"symbol","title":"getSystemInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getSystemInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets information about the server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getSystemInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettask(taskid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettask(taskid:).json new file mode 100644 index 000000000..6c7a0833f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettask(taskid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettask(taskid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTask(taskID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get task by id."}],"kind":"symbol","metadata":{"role":"symbol","title":"getTask(taskID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO7getTask6taskID3Get7RequestVyAA0E4InfoVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTask(taskID:)":{"role":"symbol","title":"getTask(taskID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get task by id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTask(taskID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettask(taskid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettasks(ishidden:isenabled:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettasks(ishidden:isenabled:).json new file mode 100644 index 000000000..d097284ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettasks(ishidden:isenabled:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTasks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","preciseIdentifier":"s:11JellyfinAPI8TaskInfoV","text":"TaskInfo"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettasks(ishidden:isenabled:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTasks(isHidden:isEnabled:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get tasks."}],"kind":"symbol","metadata":{"role":"symbol","title":"getTasks(isHidden:isEnabled:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTasks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TaskInfo","preciseIdentifier":"s:11JellyfinAPI8TaskInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO8getTasks8isHidden0F7Enabled3Get7RequestVySayAA8TaskInfoVGGSbSg_ANtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTasks(isHidden:isEnabled:)":{"role":"symbol","title":"getTasks(isHidden:isEnabled:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTasks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TaskInfo","preciseIdentifier":"s:11JellyfinAPI8TaskInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get tasks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTasks(isHidden:isEnabled:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettasks(ishidden:isenabled:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getthememedia(itemid:userid:isinheritfromparent:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getthememedia(itemid:userid:isinheritfromparent:).json new file mode 100644 index 000000000..c8ee31a46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getthememedia(itemid:userid:isinheritfromparent:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeMedia"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getthememedia(itemid:userid:isinheritfromparent:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeMedia(itemID:userID:isInheritFromParent:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get theme songs and videos for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getThemeMedia(itemID:userID:isInheritFromParent:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeMedia"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getThemeMedia6itemID04userH019isInheritFromParent3Get7RequestVyAA03AlleF6ResultVGSS_10Foundation4UUIDVSgSbSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AllThemeMediaResult":{"role":"symbol","title":"AllThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AllThemeMediaResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AllThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AllThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/allthememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getThemeMedia(itemID:userID:isInheritFromParent:)":{"role":"symbol","title":"getThemeMedia(itemID:userID:isInheritFromParent:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeMedia"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get theme songs and videos for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeMedia(itemID:userID:isInheritFromParent:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getthememedia(itemid:userid:isinheritfromparent:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getthemesongs(itemid:userid:isinheritfromparent:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getthemesongs(itemid:userid:isinheritfromparent:).json new file mode 100644 index 000000000..1d6145f92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getthemesongs(itemid:userid:isinheritfromparent:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeSongs"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getthemesongs(itemid:userid:isinheritfromparent:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeSongs(itemID:userID:isInheritFromParent:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get theme songs for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getThemeSongs(itemID:userID:isInheritFromParent:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeSongs"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13getThemeSongs6itemID04userH019isInheritFromParent3Get7RequestVyAA0E11MediaResultVGSS_10Foundation4UUIDVSgSbSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getThemeSongs(itemID:userID:isInheritFromParent:)":{"role":"symbol","title":"getThemeSongs(itemID:userID:isInheritFromParent:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeSongs"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get theme songs for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeSongs(itemID:userID:isInheritFromParent:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getthemesongs(itemid:userid:isinheritfromparent:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getthemevideos(itemid:userid:isinheritfromparent:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getthemevideos(itemid:userid:isinheritfromparent:).json new file mode 100644 index 000000000..f8effac08 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getthemevideos(itemid:userid:isinheritfromparent:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeVideos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getthemevideos(itemid:userid:isinheritfromparent:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeVideos(itemID:userID:isInheritFromParent:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get theme videos for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"getThemeVideos(itemID:userID:isInheritFromParent:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeVideos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getThemeVideos6itemID04userH019isInheritFromParent3Get7RequestVyAA0E11MediaResultVGSS_10Foundation4UUIDVSgSbSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getThemeVideos(itemID:userID:isInheritFromParent:)":{"role":"symbol","title":"getThemeVideos(itemID:userID:isInheritFromParent:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getThemeVideos"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isInheritFromParent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get theme videos for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getThemeVideos(itemID:userID:isInheritFromParent:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getthemevideos(itemid:userid:isinheritfromparent:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimer(timerid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimer(timerid:).json new file mode 100644 index 000000000..e972dcb05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimer(timerid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettimer(timerid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTimer(timerID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a timer."}],"kind":"symbol","metadata":{"role":"symbol","title":"getTimer(timerID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO8getTimer7timerID3Get7RequestVyAA0E7InfoDtoVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTimer(timerID:)":{"role":"symbol","title":"getTimer(timerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTimer(timerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimer(timerid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimers(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimers(parameters:).json new file mode 100644 index 000000000..d11b2308a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimers(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTimers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetTimersParametersV","text":"GetTimersParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettimers(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTimers(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the live tv timers."}],"kind":"symbol","metadata":{"role":"symbol","title":"getTimers(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTimers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetTimersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetTimersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9getTimers10parameters3Get7RequestVyAA23TimerInfoDtoQueryResultVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult":{"role":"symbol","title":"TimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTimers(parameters:)":{"role":"symbol","title":"getTimers(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTimers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetTimersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO19GetTimersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the live tv timers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTimers(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimers(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters":{"role":"symbol","title":"Paths.GetTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters.json new file mode 100644 index 000000000..398128db0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettimersparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetTimersParameters"}],"role":"symbol","title":"Paths.GetTimersParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO19GetTimersParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/init(channelID:seriesTimerID:isActive:isScheduled:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/channelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/isActive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/isScheduled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/seriesTimerID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/isScheduled":{"role":"symbol","title":"isScheduled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScheduled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/isScheduled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/isscheduled"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/init(channelID:seriesTimerID:isActive:isScheduled:)":{"role":"symbol","title":"init(channelID:seriesTimerID:isActive:isScheduled:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isScheduled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/init(channelID:seriesTimerID:isActive:isScheduled:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/init(channelid:seriestimerid:isactive:isscheduled:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/isActive":{"role":"symbol","title":"isActive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/isActive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/isactive"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters":{"role":"symbol","title":"Paths.GetTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/asquery.json new file mode 100644 index 000000000..623e07c8d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettimersparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetTimersParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters":{"role":"symbol","title":"Paths.GetTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/channelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/channelid.json new file mode 100644 index 000000000..7ba81fbbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/channelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettimersparameters\/channelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/channelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetTimersParametersV9channelIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters":{"role":"symbol","title":"Paths.GetTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/channelid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/init(channelid:seriestimerid:isactive:isscheduled:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/init(channelid:seriestimerid:isactive:isscheduled:).json new file mode 100644 index 000000000..7ae5abdbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/init(channelid:seriestimerid:isactive:isscheduled:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isScheduled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettimersparameters\/init(channelid:seriestimerid:isactive:isscheduled:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/init(channelID:seriesTimerID:isActive:isScheduled:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isScheduled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(channelID:seriesTimerID:isActive:isScheduled:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO19GetTimersParametersV9channelID011seriesTimerH08isActive0K9ScheduledAESSSg_AJSbSgAKtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters":{"role":"symbol","title":"Paths.GetTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/init(channelID:seriesTimerID:isActive:isScheduled:)":{"role":"symbol","title":"init(channelID:seriesTimerID:isActive:isScheduled:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isScheduled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/init(channelID:seriesTimerID:isActive:isScheduled:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/init(channelid:seriestimerid:isactive:isscheduled:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/isactive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/isactive.json new file mode 100644 index 000000000..e96237579 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/isactive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettimersparameters\/isactive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/isActive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isActive","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetTimersParametersV8isActiveSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters":{"role":"symbol","title":"Paths.GetTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/isActive":{"role":"symbol","title":"isActive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/isActive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/isactive"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/isscheduled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/isscheduled.json new file mode 100644 index 000000000..459cc94b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/isscheduled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScheduled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettimersparameters\/isscheduled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/isScheduled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScheduled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isScheduled","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetTimersParametersV11isScheduledSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/isScheduled":{"role":"symbol","title":"isScheduled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScheduled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/isScheduled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/isscheduled"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters":{"role":"symbol","title":"Paths.GetTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/seriestimerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/seriestimerid.json new file mode 100644 index 000000000..2a1a1786b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettimersparameters/seriestimerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettimersparameters\/seriestimerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/seriesTimerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesTimerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19GetTimersParametersV13seriesTimerIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters":{"role":"symbol","title":"Paths.GetTimersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTimersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTimersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTimersParameters/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTimersParameters\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettimersparameters\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailerremotesearchresults(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailerremotesearchresults(_:).json new file mode 100644 index 000000000..56d8983f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailerremotesearchresults(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTrailerRemoteSearchResults"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV","text":"TrailerInfoRemoteSearchQuery"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailerremotesearchresults(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTrailerRemoteSearchResults(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get trailer remote search."}],"kind":"symbol","metadata":{"role":"symbol","title":"getTrailerRemoteSearchResults(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTrailerRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TrailerInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO29getTrailerRemoteSearchResultsy3Get7RequestVySayAA0fG6ResultCGGAA0e4InfofG5QueryVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTrailerRemoteSearchResults(_:)":{"role":"symbol","title":"getTrailerRemoteSearchResults(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTrailerRemoteSearchResults"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TrailerInfoRemoteSearchQuery","preciseIdentifier":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get trailer remote search."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTrailerRemoteSearchResults(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailerremotesearchresults(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery":{"role":"symbol","title":"TrailerInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailers(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailers(parameters:).json new file mode 100644 index 000000000..baf27a31d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailers(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetTrailersParametersV","text":"GetTrailersParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailers(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTrailers(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Finds movies and trailers similar to a given trailer."}],"kind":"symbol","metadata":{"role":"symbol","title":"getTrailers(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetTrailersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetTrailersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11getTrailers10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTrailers(parameters:)":{"role":"symbol","title":"getTrailers(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTrailers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetTrailersParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21GetTrailersParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Finds movies and trailers similar to a given trailer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTrailers(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailers(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters.json new file mode 100644 index 000000000..7459fdb4e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"role":"symbol","title":"Paths.GetTrailersParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/adjacentTo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albumArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albumIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albums","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/artistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/artists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/contributingArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableTotalRecordCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeArtistIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeItemIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeLocationTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/filters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/genreIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasImdbID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasOfficialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasOverview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasParentalRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasSpecialFeature","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasSubtitles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasThemeSong","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasThemeVideo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTmdbID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTrailer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTvdbID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/ids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/imageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isCollapseBoxSetItems","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isHd","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isIs3D","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isIs4K","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isKids","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isLocked","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isMissing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isMovie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isNews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isPlaceHolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isRecursive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isSeries","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isSports","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isUnaired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/locationTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxOfficialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxPremiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/mediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minCommunityRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minCriticRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minDateLastSaved","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minDateLastSavedForUser","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minOfficialRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minPremiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameLessThan","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameStartsWith","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameStartsWithOrGreater","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/officialRatings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/person","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/personIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/personTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/searchTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/seriesStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/studioIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/studios","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/tags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/userID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/videoTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/years"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasSpecialFeature":{"role":"symbol","title":"hasSpecialFeature","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasSpecialFeature","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasspecialfeature"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/years"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasImdbID":{"role":"symbol","title":"hasImdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasImdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasimdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/studioIDs":{"role":"symbol","title":"studioIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/studioIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/studioids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/excludeItemIDs":{"role":"symbol","title":"excludeItemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeItemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludeitemids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minDateLastSaved":{"role":"symbol","title":"minDateLastSaved","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minDateLastSaved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mindatelastsaved"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludeartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minDateLastSavedForUser":{"role":"symbol","title":"minDateLastSavedForUser","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minDateLastSavedForUser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mindatelastsavedforuser"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasSubtitles":{"role":"symbol","title":"hasSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hassubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minWidth":{"role":"symbol","title":"minWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/videoTypes":{"role":"symbol","title":"videoTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/videoTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/videotypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/personIDs":{"role":"symbol","title":"personIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/personIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/personids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasOverview":{"role":"symbol","title":"hasOverview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasOverview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasoverview"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enabletotalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/excludeLocationTypes":{"role":"symbol","title":"excludeLocationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeLocationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludelocationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/maxOfficialRating":{"role":"symbol","title":"maxOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minOfficialRating":{"role":"symbol","title":"minOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isLocked":{"role":"symbol","title":"isLocked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isLocked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/islocked"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/genreids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isCollapseBoxSetItems":{"role":"symbol","title":"isCollapseBoxSetItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isCollapseBoxSetItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/iscollapseboxsetitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/contributingArtistIDs":{"role":"symbol","title":"contributingArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/contributingArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/contributingartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/albumArtistIDs":{"role":"symbol","title":"albumArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albumArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/albumartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minPremiereDate":{"role":"symbol","title":"minPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasTvdbID":{"role":"symbol","title":"hasTvdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTvdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hastvdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/locationTypes":{"role":"symbol","title":"locationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/locationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/locationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/iskids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/albumIDs":{"role":"symbol","title":"albumIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albumIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/albumids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/officialratings"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/adjacentTo":{"role":"symbol","title":"adjacentTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/adjacentTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/adjacentto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasTmdbID":{"role":"symbol","title":"hasTmdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTmdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hastmdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasOfficialRating":{"role":"symbol","title":"hasOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/albums":{"role":"symbol","title":"albums","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albums","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/albums"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minCommunityRating":{"role":"symbol","title":"minCommunityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minCommunityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mincommunityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasThemeVideo":{"role":"symbol","title":"hasThemeVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasThemeVideo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasthemevideo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/person":{"role":"symbol","title":"person","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/person"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/artistIDs":{"role":"symbol","title":"artistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/artistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/artistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isHd":{"role":"symbol","title":"isHd","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isHd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isUnaired":{"role":"symbol","title":"isUnaired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isUnaired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isunaired"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isPlaceHolder":{"role":"symbol","title":"isPlaceHolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isPlaceHolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isplaceholder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/namestartswith"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minHeight":{"role":"symbol","title":"minHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasTrailer":{"role":"symbol","title":"hasTrailer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTrailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hastrailer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minCriticRating":{"role":"symbol","title":"minCriticRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minCriticRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mincriticrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/imageTypes":{"role":"symbol","title":"imageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/imageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/imagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isMissing":{"role":"symbol","title":"isMissing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isMissing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ismissing"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isIs4K":{"role":"symbol","title":"isIs4K","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isIs4K","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isis4k"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/maxPremiereDate":{"role":"symbol","title":"maxPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isRecursive":{"role":"symbol","title":"isRecursive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isRecursive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isrecursive"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isPlayed":{"role":"symbol","title":"isPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasThemeSong":{"role":"symbol","title":"hasThemeSong","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasThemeSong","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasthemesong"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/namelessthan"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)":{"role":"symbol","title":"init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-61xpr"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isIs3D":{"role":"symbol","title":"isIs3D","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isIs3D","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isis3d"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasParentalRating":{"role":"symbol","title":"hasParentalRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasParentalRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasparentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/seriesStatus":{"role":"symbol","title":"seriesStatus","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/seriesStatus","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/seriesstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/adjacentto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/adjacentto.json new file mode 100644 index 000000000..3a9c65a93 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/adjacentto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/adjacentto"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/adjacentTo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"adjacentTo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV10adjacentToSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/adjacentTo":{"role":"symbol","title":"adjacentTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/adjacentTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/adjacentto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/albumartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/albumartistids.json new file mode 100644 index 000000000..d347a9bf0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/albumartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/albumartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albumArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"albumArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV14albumArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/albumArtistIDs":{"role":"symbol","title":"albumArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albumArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/albumartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/albumids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/albumids.json new file mode 100644 index 000000000..9bbb6810d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/albumids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/albumids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albumIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"albumIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV8albumIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/albumIDs":{"role":"symbol","title":"albumIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albumIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/albumids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/albums.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/albums.json new file mode 100644 index 000000000..794f321c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/albums.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/albums"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albums","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"albums","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6albumsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/albums":{"role":"symbol","title":"albums","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/albums","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/albums"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/artistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/artistids.json new file mode 100644 index 000000000..4ae8fefd7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/artistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/artistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/artistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"artistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9artistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/artistIDs":{"role":"symbol","title":"artistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/artistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/artistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/artists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/artists.json new file mode 100644 index 000000000..401119e4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/artists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/artists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/artists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"artists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV7artistsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/artists"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/asquery.json new file mode 100644 index 000000000..a315c8b30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/contributingartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/contributingartistids.json new file mode 100644 index 000000000..d6d8fb7dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/contributingartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/contributingartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/contributingArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"contributingArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV21contributingArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/contributingArtistIDs":{"role":"symbol","title":"contributingArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/contributingArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/contributingartistids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enableimages.json new file mode 100644 index 000000000..58c5867a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enableimagetypes.json new file mode 100644 index 000000000..cf26cd144 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV16enableImageTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enabletotalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enabletotalrecordcount.json new file mode 100644 index 000000000..b5953c4f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enabletotalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enabletotalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableTotalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTotalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV22enableTotalRecordCountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/enableTotalRecordCount":{"role":"symbol","title":"enableTotalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableTotalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enabletotalrecordcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enableuserdata.json new file mode 100644 index 000000000..db80abfec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/enableuserdata"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludeartistids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludeartistids.json new file mode 100644 index 000000000..553bee4b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludeartistids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludeartistids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeArtistIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeArtistIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV16excludeArtistIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/excludeArtistIDs":{"role":"symbol","title":"excludeArtistIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeArtistIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludeartistids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludeitemids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludeitemids.json new file mode 100644 index 000000000..7a6f2d9f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludeitemids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludeitemids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeItemIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"excludeItemIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV14excludeItemIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/excludeItemIDs":{"role":"symbol","title":"excludeItemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeItemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludeitemids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludeitemtypes.json new file mode 100644 index 000000000..2726d8198 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV16excludeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludelocationtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludelocationtypes.json new file mode 100644 index 000000000..6eb014609 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/excludelocationtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludelocationtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeLocationTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"title":"excludeLocationTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV20excludeLocationTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/excludeLocationTypes":{"role":"symbol","title":"excludeLocationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/excludeLocationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/excludelocationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/fields.json new file mode 100644 index 000000000..ea030c019 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/filters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/filters.json new file mode 100644 index 000000000..ac454c06b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/filters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/filters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/filters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"title":"filters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV7filtersSayAA10ItemFilterOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/filters":{"role":"symbol","title":"filters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/filters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/filters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/genreids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/genreids.json new file mode 100644 index 000000000..992ea1a50 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/genreids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/genreids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/genreIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"genreIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV8genreIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/genreIDs":{"role":"symbol","title":"genreIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/genreIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/genreids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/genres.json new file mode 100644 index 000000000..9143d1b19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"genres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6genresSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasimdbid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasimdbid.json new file mode 100644 index 000000000..176015565 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasimdbid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasimdbid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasImdbID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasImdbID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9hasImdbIDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasImdbID":{"role":"symbol","title":"hasImdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasImdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasimdbid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasofficialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasofficialrating.json new file mode 100644 index 000000000..dd8cc392c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasofficialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasofficialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasOfficialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasOfficialRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV17hasOfficialRatingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasOfficialRating":{"role":"symbol","title":"hasOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasoverview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasoverview.json new file mode 100644 index 000000000..e681afbfc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasoverview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasoverview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasOverview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasOverview","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV11hasOverviewSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasOverview":{"role":"symbol","title":"hasOverview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasOverview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasoverview"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasparentalrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasparentalrating.json new file mode 100644 index 000000000..ec28e7e1c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasparentalrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasparentalrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasParentalRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasParentalRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV17hasParentalRatingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasParentalRating":{"role":"symbol","title":"hasParentalRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasParentalRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasparentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasspecialfeature.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasspecialfeature.json new file mode 100644 index 000000000..34282c31d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasspecialfeature.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasspecialfeature"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasSpecialFeature","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasSpecialFeature","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV17hasSpecialFeatureSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasSpecialFeature":{"role":"symbol","title":"hasSpecialFeature","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasSpecialFeature","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasspecialfeature"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hassubtitles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hassubtitles.json new file mode 100644 index 000000000..4a1754926 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hassubtitles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hassubtitles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasSubtitles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasSubtitles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV12hasSubtitlesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasSubtitles":{"role":"symbol","title":"hasSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hassubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasthemesong.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasthemesong.json new file mode 100644 index 000000000..1eb5446c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasthemesong.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasthemesong"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasThemeSong","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasThemeSong","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV12hasThemeSongSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasThemeSong":{"role":"symbol","title":"hasThemeSong","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasThemeSong","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasthemesong"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasthemevideo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasthemevideo.json new file mode 100644 index 000000000..16972a430 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hasthemevideo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasthemevideo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasThemeVideo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasThemeVideo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV13hasThemeVideoSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasThemeVideo":{"role":"symbol","title":"hasThemeVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasThemeVideo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hasthemevideo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hastmdbid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hastmdbid.json new file mode 100644 index 000000000..731562394 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hastmdbid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hastmdbid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTmdbID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasTmdbID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9hasTmdbIDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasTmdbID":{"role":"symbol","title":"hasTmdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTmdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hastmdbid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hastrailer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hastrailer.json new file mode 100644 index 000000000..ba6369b4a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hastrailer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hastrailer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTrailer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasTrailer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV10hasTrailerSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasTrailer":{"role":"symbol","title":"hasTrailer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTrailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hastrailer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hastvdbid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hastvdbid.json new file mode 100644 index 000000000..3d295bc07 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/hastvdbid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hastvdbid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTvdbID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasTvdbID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9hasTvdbIDSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/hasTvdbID":{"role":"symbol","title":"hasTvdbID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/hasTvdbID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/hastvdbid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ids.json new file mode 100644 index 000000000..6450fe494 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/ids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"ids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV3idsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/ids":{"role":"symbol","title":"ids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/ids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/imagetypelimit.json new file mode 100644 index 000000000..513b641eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/imagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/imagetypes.json new file mode 100644 index 000000000..271fe10c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/imagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/imagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/imageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"imageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV10imageTypesSayAA9ImageTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/imageTypes":{"role":"symbol","title":"imageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/imageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/imagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-61xpr.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-61xpr.json new file mode 100644 index 000000000..07cde5059 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-61xpr.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO","text":"ItemFilter"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO","text":"VideoType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO","text":"SeriesStatus"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-61xpr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6userID17maxOfficialRating12hasThemeSong0lM5Video0L9Subtitles0L14SpecialFeature0L7Trailer10adjacentTo17parentIndexNumber0l8ParentalK04isHd0Z4Is4K13locationTypes20excludeLocationTypes0Z7Missing0Z7Unaired012minCommunityK009minCriticK015minPremiereDate16minDateLastSaved23minDateLastSavedForUser0I12PremiereDate0L8Overview0l4ImdbH00l4TmdbH00l4TvdbH00Z5Movie0Z6Series0Z4News0Z4Kids0Z6Sports14excludeItemIDs05startW05limit0Z9Recursive10searchTerm9sortOrder0vH06fields16excludeItemTypes7filters0Z8Favorite10mediaTypes10imageTypes6sortBy0Z6Played6genres15officialRatings4tags5years14enableUserData14imageTypeLimit16enableImageTypes6person9personIDs11personTypes7studios7artists16excludeArtistIDs9artistIDs14albumArtistIDs21contributingArtistIDs6albums8albumIDs3ids10videoTypes03minjK00Z6Locked0Z11PlaceHolder0ljK00Z19CollapseBoxSetItems8minWidth9minHeight0I5Width0I6Height0Z4Is3D12seriesStatus23nameStartsWithOrGreater14nameStartsWith12nameLessThan9studioIDs8genreIDs22enableTotalRecordCount12enableImagesAE10Foundation4UUIDVSg_SSSgSbSgA67_A67_A67_A67_A66_s5Int32VSgA67_A67_A67_SayAA12LocationTypeOGSgA74_A67_A67_SdSgA75_A62_4DateVSgA78_A78_A78_A67_A67_A67_A67_A67_A67_A67_A67_A67_SayA64_GSgA70_A70_A67_A66_SayAA9SortOrderOGSgA65_SayAA10ItemFieldsOGSgSayAA12BaseItemKindOGSgSayAA10ItemFilterOGSgA67_SaySSGSgSayAA9ImageTypeOGSgA98_A67_A98_A98_A98_SayA69_GSgA67_A70_A102_A66_A80_A98_A98_A98_A80_A80_A80_A80_A98_A80_A80_SayAA0O4TypeOGSgA66_A67_A67_A67_A67_A70_A70_A70_A70_A67_SayAA12SeriesStatusOGSgA66_A66_A66_A80_A80_A67_A67_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)":{"role":"symbol","title":"init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeSong"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasThemeVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasSpecialFeature"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTrailer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"adjacentTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeLocationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOverview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasTvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"excludeItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"filters"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFilter","preciseIdentifier":"s:11JellyfinAPI10ItemFilterO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contributingArtistIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albums"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"albumIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"genreIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableTotalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/init(userID:maxOfficialRating:hasThemeSong:hasThemeVideo:hasSubtitles:hasSpecialFeature:hasTrailer:adjacentTo:parentIndexNumber:hasParentalRating:isHd:isIs4K:locationTypes:excludeLocationTypes:isMissing:isUnaired:minCommunityRating:minCriticRating:minPremiereDate:minDateLastSaved:minDateLastSavedForUser:maxPremiereDate:hasOverview:hasImdbID:hasTmdbID:hasTvdbID:isMovie:isSeries:isNews:isKids:isSports:excludeItemIDs:startIndex:limit:isRecursive:searchTerm:sortOrder:parentID:fields:excludeItemTypes:filters:isFavorite:mediaTypes:imageTypes:sortBy:isPlayed:genres:officialRatings:tags:years:enableUserData:imageTypeLimit:enableImageTypes:person:personIDs:personTypes:studios:artists:excludeArtistIDs:artistIDs:albumArtistIDs:contributingArtistIDs:albums:albumIDs:ids:videoTypes:minOfficialRating:isLocked:isPlaceHolder:hasOfficialRating:isCollapseBoxSetItems:minWidth:minHeight:maxWidth:maxHeight:isIs3D:seriesStatus:nameStartsWithOrGreater:nameStartsWith:nameLessThan:studioIDs:genreIDs:enableTotalRecordCount:enableImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/init(userid:maxofficialrating:hasthemesong:hasthemevideo:hassubtitles:hasspecialfeature:hastrailer:adjacentto:parentindexnumber:hasparentalrating:ishd:isis4k:locationtypes:excludelocationtypes:ismissing:isunaired:mincommunityrating:mincriti-61xpr"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFilter":{"role":"symbol","title":"ItemFilter","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFilter"}],"abstract":[{"type":"text","text":"Enum ItemFilter."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFilter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFilter"}],"url":"\/documentation\/jellyfinapi\/itemfilter"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/iscollapseboxsetitems.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/iscollapseboxsetitems.json new file mode 100644 index 000000000..94405331b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/iscollapseboxsetitems.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/iscollapseboxsetitems"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isCollapseBoxSetItems","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCollapseBoxSetItems","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV21isCollapseBoxSetItemsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isCollapseBoxSetItems":{"role":"symbol","title":"isCollapseBoxSetItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCollapseBoxSetItems"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isCollapseBoxSetItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/iscollapseboxsetitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isfavorite.json new file mode 100644 index 000000000..8a739e78c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ishd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ishd.json new file mode 100644 index 000000000..f4ef87dd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ishd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ishd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isHd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isHd","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV4isHdSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isHd":{"role":"symbol","title":"isHd","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isHd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ishd"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isis3d.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isis3d.json new file mode 100644 index 000000000..c65b1c9ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isis3d.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isis3d"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isIs3D","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIs3D","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6isIs3DSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isIs3D":{"role":"symbol","title":"isIs3D","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs3D"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isIs3D","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isis3d"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isis4k.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isis4k.json new file mode 100644 index 000000000..810cddb3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isis4k.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isis4k"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isIs4K","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIs4K","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6isIs4KSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isIs4K":{"role":"symbol","title":"isIs4K","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIs4K"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isIs4K","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isis4k"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/iskids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/iskids.json new file mode 100644 index 000000000..9005f913d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/iskids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/iskids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isKids","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isKids","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6isKidsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isKids":{"role":"symbol","title":"isKids","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKids"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isKids","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/iskids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/islocked.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/islocked.json new file mode 100644 index 000000000..5e1732619 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/islocked.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/islocked"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isLocked","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isLocked","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV8isLockedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isLocked":{"role":"symbol","title":"isLocked","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLocked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isLocked","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/islocked"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ismissing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ismissing.json new file mode 100644 index 000000000..8a49546bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ismissing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ismissing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isMissing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMissing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9isMissingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isMissing":{"role":"symbol","title":"isMissing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMissing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isMissing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ismissing"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ismovie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ismovie.json new file mode 100644 index 000000000..f6fd1d9d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/ismovie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ismovie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isMovie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMovie","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV7isMovieSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isMovie":{"role":"symbol","title":"isMovie","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMovie"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isMovie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/ismovie"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isnews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isnews.json new file mode 100644 index 000000000..e91635c0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isnews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isnews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isNews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isNews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6isNewsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isNews":{"role":"symbol","title":"isNews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNews"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isNews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isnews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isplaceholder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isplaceholder.json new file mode 100644 index 000000000..b4d3a152d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isplaceholder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isplaceholder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isPlaceHolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlaceHolder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV13isPlaceHolderSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isPlaceHolder":{"role":"symbol","title":"isPlaceHolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaceHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isPlaceHolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isplaceholder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isplayed.json new file mode 100644 index 000000000..8f59943a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV8isPlayedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isPlayed":{"role":"symbol","title":"isPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isrecursive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isrecursive.json new file mode 100644 index 000000000..e5e182b2d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isrecursive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isrecursive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isRecursive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRecursive","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV11isRecursiveSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isRecursive":{"role":"symbol","title":"isRecursive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isRecursive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isrecursive"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isseries.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isseries.json new file mode 100644 index 000000000..4f584fa66 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isseries.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isseries"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isSeries","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSeries","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV8isSeriesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isSeries":{"role":"symbol","title":"isSeries","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSeries"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isSeries","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isseries"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/issports.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/issports.json new file mode 100644 index 000000000..a24b2e3ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/issports.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/issports"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isSports","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSports","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV8isSportsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isSports":{"role":"symbol","title":"isSports","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isSports","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/issports"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isunaired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isunaired.json new file mode 100644 index 000000000..9aaae7f71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/isunaired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isunaired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isUnaired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isUnaired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9isUnairedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/isUnaired":{"role":"symbol","title":"isUnaired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isUnaired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/isUnaired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/isunaired"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/limit.json new file mode 100644 index 000000000..fcae7d674 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/locationtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/locationtypes.json new file mode 100644 index 000000000..13e483435 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/locationtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO","text":"LocationType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/locationtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/locationTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"title":"locationTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV13locationTypesSayAA12LocationTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/LocationType":{"role":"symbol","title":"LocationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationType"}],"abstract":[{"type":"text","text":"Enum LocationType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LocationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationType"}],"url":"\/documentation\/jellyfinapi\/locationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/locationTypes":{"role":"symbol","title":"locationTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LocationType","preciseIdentifier":"s:11JellyfinAPI12LocationTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/locationTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/locationtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxheight.json new file mode 100644 index 000000000..bc0683fb9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxofficialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxofficialrating.json new file mode 100644 index 000000000..a9341c445 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxofficialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxofficialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxOfficialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"maxOfficialRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV17maxOfficialRatingSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/maxOfficialRating":{"role":"symbol","title":"maxOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxofficialrating"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxpremieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxpremieredate.json new file mode 100644 index 000000000..a58343a38 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxpremieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxpremieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxPremiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"maxPremiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV15maxPremiereDate10Foundation0I0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/maxPremiereDate":{"role":"symbol","title":"maxPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxwidth.json new file mode 100644 index 000000000..89b8ebb35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mediatypes.json new file mode 100644 index 000000000..7f6707a21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/mediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV10mediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mincommunityrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mincommunityrating.json new file mode 100644 index 000000000..6382996db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mincommunityrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mincommunityrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minCommunityRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"minCommunityRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV18minCommunityRatingSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minCommunityRating":{"role":"symbol","title":"minCommunityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCommunityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minCommunityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mincommunityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mincriticrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mincriticrating.json new file mode 100644 index 000000000..a2cd379c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mincriticrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mincriticrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minCriticRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"minCriticRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV15minCriticRatingSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minCriticRating":{"role":"symbol","title":"minCriticRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minCriticRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minCriticRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mincriticrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mindatelastsaved.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mindatelastsaved.json new file mode 100644 index 000000000..1302ae2c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mindatelastsaved.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mindatelastsaved"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minDateLastSaved","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minDateLastSaved","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV16minDateLastSaved10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minDateLastSaved":{"role":"symbol","title":"minDateLastSaved","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSaved"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minDateLastSaved","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mindatelastsaved"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mindatelastsavedforuser.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mindatelastsavedforuser.json new file mode 100644 index 000000000..73810067c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/mindatelastsavedforuser.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mindatelastsavedforuser"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minDateLastSavedForUser","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minDateLastSavedForUser","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV23minDateLastSavedForUser10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minDateLastSavedForUser":{"role":"symbol","title":"minDateLastSavedForUser","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minDateLastSavedForUser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minDateLastSavedForUser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/mindatelastsavedforuser"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minheight.json new file mode 100644 index 000000000..6055e1ff7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9minHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minHeight":{"role":"symbol","title":"minHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minofficialrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minofficialrating.json new file mode 100644 index 000000000..631be760e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minofficialrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minofficialrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minOfficialRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"minOfficialRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV17minOfficialRatingSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minOfficialRating":{"role":"symbol","title":"minOfficialRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minOfficialRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minOfficialRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minofficialrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minpremieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minpremieredate.json new file mode 100644 index 000000000..8d4a5f9cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minpremieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minpremieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minPremiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"minPremiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV15minPremiereDate10Foundation0I0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minPremiereDate":{"role":"symbol","title":"minPremiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minPremiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minPremiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minpremieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minwidth.json new file mode 100644 index 000000000..faf3f6e13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/minwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV8minWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/minWidth":{"role":"symbol","title":"minWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/minWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/minwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/namelessthan.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/namelessthan.json new file mode 100644 index 000000000..be82d3f2c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/namelessthan.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/namelessthan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameLessThan","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameLessThan","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV12nameLessThanSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/nameLessThan":{"role":"symbol","title":"nameLessThan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameLessThan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameLessThan","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/namelessthan"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/namestartswith.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/namestartswith.json new file mode 100644 index 000000000..6981d000a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/namestartswith.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/namestartswith"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameStartsWith","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWith","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV14nameStartsWithSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/nameStartsWith":{"role":"symbol","title":"nameStartsWith","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameStartsWith","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/namestartswith"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/namestartswithorgreater.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/namestartswithorgreater.json new file mode 100644 index 000000000..7d680a0da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/namestartswithorgreater.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/namestartswithorgreater"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameStartsWithOrGreater","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nameStartsWithOrGreater","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV23nameStartsWithOrGreaterSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/nameStartsWithOrGreater":{"role":"symbol","title":"nameStartsWithOrGreater","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nameStartsWithOrGreater"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/nameStartsWithOrGreater","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/namestartswithorgreater"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/officialratings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/officialratings.json new file mode 100644 index 000000000..633174f5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/officialratings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/officialratings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/officialRatings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"officialRatings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV15officialRatingsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/officialratings"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/parentid.json new file mode 100644 index 000000000..211550b71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/parentindexnumber.json new file mode 100644 index 000000000..20f5b3a07 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/person.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/person.json new file mode 100644 index 000000000..826d1b918 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/person.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/person"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/person","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"person","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6personSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/person":{"role":"symbol","title":"person","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"person"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/person","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/person"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/personids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/personids.json new file mode 100644 index 000000000..d3f78d943 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/personids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/personids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/personIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"personIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9personIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/personIDs":{"role":"symbol","title":"personIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/personIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/personids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/persontypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/persontypes.json new file mode 100644 index 000000000..7964e23b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/persontypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/persontypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/personTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"personTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV11personTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/personTypes":{"role":"symbol","title":"personTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"personTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/personTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/persontypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/searchterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/searchterm.json new file mode 100644 index 000000000..b4acd9373 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/searchterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/searchterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/searchTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV10searchTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/searchTerm":{"role":"symbol","title":"searchTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/searchTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/searchterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/seriesstatus.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/seriesstatus.json new file mode 100644 index 000000000..aaf487da3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/seriesstatus.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO","text":"SeriesStatus"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/seriesstatus"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/seriesStatus","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?"}],"title":"seriesStatus","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV12seriesStatusSayAA06SeriesH0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/seriesStatus":{"role":"symbol","title":"seriesStatus","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesStatus"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesStatus","preciseIdentifier":"s:11JellyfinAPI12SeriesStatusO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/seriesStatus","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/sortby.json new file mode 100644 index 000000000..19a9464a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/sortorder.json new file mode 100644 index 000000000..0118769a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9sortOrderSayAA04SortH0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/sortorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/startindex.json new file mode 100644 index 000000000..c6e2e40c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/studioids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/studioids.json new file mode 100644 index 000000000..ca908d11f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/studioids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/studioids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/studioIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"studioIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV9studioIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/studioIDs":{"role":"symbol","title":"studioIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studioIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/studioIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/studioids"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/studios.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/studios.json new file mode 100644 index 000000000..0df441f10 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/studios.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/studios"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/studios","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"studios","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV7studiosSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/studios":{"role":"symbol","title":"studios","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"studios"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/studios","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/studios"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/tags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/tags.json new file mode 100644 index 000000000..4300f43e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/tags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/tags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/tags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"tags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV4tagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/userid.json new file mode 100644 index 000000000..070e26f1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/videotypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/videotypes.json new file mode 100644 index 000000000..b83f74511 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/videotypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO","text":"VideoType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/videotypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/videoTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?"}],"title":"videoTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV10videoTypesSayAA9VideoTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/videoTypes":{"role":"symbol","title":"videoTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VideoType","preciseIdentifier":"s:11JellyfinAPI9VideoTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/videoTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/videotypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/years.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/years.json new file mode 100644 index 000000000..eb0a31e45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettrailersparameters/years.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/years"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/years","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"title":"years","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21GetTrailersParametersV5yearsSays5Int32VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters":{"role":"symbol","title":"Paths.GetTrailersParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetTrailersParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetTrailersParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetTrailersParameters/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetTrailersParameters\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettrailersparameters\/years"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettunerhosttypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettunerhosttypes.json new file mode 100644 index 000000000..a798bcec0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/gettunerhosttypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTunerHostTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV","text":"NameIDPair"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/gettunerhosttypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTunerHostTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get tuner host types."}],"kind":"symbol","metadata":{"role":"symbol","title":"getTunerHostTypes","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTunerHostTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO17getTunerHostTypes3Get7RequestVySayAA10NameIDPairVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameIDPair":{"role":"symbol","title":"NameIDPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameIDPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameIDPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameIDPair"}],"url":"\/documentation\/jellyfinapi\/nameidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getTunerHostTypes":{"role":"symbol","title":"getTunerHostTypes","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getTunerHostTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NameIDPair","preciseIdentifier":"s:11JellyfinAPI10NameIDPairV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Get tuner host types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getTunerHostTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/gettunerhosttypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostream(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostream(itemid:parameters:).json new file mode 100644 index 000000000..78814e323 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostream(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUniversalAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV","text":"GetUniversalAudioStreamParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostream(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUniversalAudioStream(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an audio stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"getUniversalAudioStream(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUniversalAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUniversalAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO23getUniversalAudioStream6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC0kefG10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUniversalAudioStream(itemID:parameters:)":{"role":"symbol","title":"getUniversalAudioStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUniversalAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUniversalAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUniversalAudioStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters.json new file mode 100644 index 000000000..eca12b4b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/enableRedirection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/enableRemoteMedia","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingProtocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/transcodingProtocol":{"role":"symbol","title":"transcodingProtocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingProtocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/transcodingprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/enableRedirection":{"role":"symbol","title":"enableRedirection","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/enableRedirection","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/enableredirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/transcodingAudioChannels":{"role":"symbol","title":"transcodingAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/transcodingaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/enableRemoteMedia":{"role":"symbol","title":"enableRemoteMedia","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/enableRemoteMedia","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/enableremotemedia"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/maxAudioSampleRate":{"role":"symbol","title":"maxAudioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxaudiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/transcodingContainer":{"role":"symbol","title":"transcodingContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/transcodingcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)":{"role":"symbol","title":"init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/asquery.json new file mode 100644 index 000000000..cffe3d6d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/audiobitrate.json new file mode 100644 index 000000000..470d1f177 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/audiocodec.json new file mode 100644 index 000000000..db835125a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/audiocodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/container.json new file mode 100644 index 000000000..7b25047f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV9containerSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/container"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/deviceid.json new file mode 100644 index 000000000..555bda757 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/enableredirection.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/enableredirection.json new file mode 100644 index 000000000..2a901e9ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/enableredirection.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/enableredirection"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/enableRedirection","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableRedirection","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV17enableRedirectionSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/enableRedirection":{"role":"symbol","title":"enableRedirection","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/enableRedirection","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/enableredirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/enableremotemedia.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/enableremotemedia.json new file mode 100644 index 000000000..e4ac25c41 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/enableremotemedia.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/enableremotemedia"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/enableRemoteMedia","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableRemoteMedia","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV17enableRemoteMediaSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/enableRemoteMedia":{"role":"symbol","title":"enableRemoteMedia","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/enableRemoteMedia","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/enableremotemedia"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0.json new file mode 100644 index 000000000..5afedcefb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV9container13mediaSourceID06deviceL004userL010audioCodec03maxF8Channels011transcodingfR00Q16StreamingBitrate0O7BitRate14startTimeTicks0S9Container0S8Protocol0qf6SampleW00qfV5Depth17enableRemoteMedia21isBreakOnNonKeyFrames17enableRedirectionAESaySSGSg_SSSgAY10Foundation4UUIDVSgAYs5Int32VSgA4_A4_A4_s5Int64VSgA2YA4_A4_SbSgA8_A8_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)":{"role":"symbol","title":"init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..f39919b9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..173e227e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV03maxF8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxaudiochannels.json new file mode 100644 index 000000000..4b94c0ccd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV03maxF8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxaudiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxaudiosamplerate.json new file mode 100644 index 000000000..5aa3d71a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxaudiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxaudiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV03maxF10SampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/maxAudioSampleRate":{"role":"symbol","title":"maxAudioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxAudioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxaudiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxstreamingbitrate.json new file mode 100644 index 000000000..2e969e3f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/maxstreamingbitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/mediasourceid.json new file mode 100644 index 000000000..11d88002f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/starttimeticks.json new file mode 100644 index 000000000..9ccc15d2e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/transcodingaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/transcodingaudiochannels.json new file mode 100644 index 000000000..73fb4744a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/transcodingaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/transcodingaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV011transcodingF8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/transcodingAudioChannels":{"role":"symbol","title":"transcodingAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/transcodingaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/transcodingcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/transcodingcontainer.json new file mode 100644 index 000000000..65561a7e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/transcodingcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/transcodingcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodingContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV20transcodingContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/transcodingContainer":{"role":"symbol","title":"transcodingContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/transcodingcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/transcodingprotocol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/transcodingprotocol.json new file mode 100644 index 000000000..3f50b1d78 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/transcodingprotocol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/transcodingprotocol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingProtocol","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodingProtocol","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV19transcodingProtocolSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/transcodingProtocol":{"role":"symbol","title":"transcodingProtocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/transcodingProtocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/transcodingprotocol"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/userid.json new file mode 100644 index 000000000..08925654a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuniversalaudiostreamparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO33GetUniversalAudioStreamParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.GetUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUniversalAudioStreamParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUniversalAudioStreamParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuniversalaudiostreamparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodes(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodes(parameters:).json new file mode 100644 index 000000000..22d6c0be3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodes(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUpcomingEpisodes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV","text":"GetUpcomingEpisodesParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodes(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUpcomingEpisodes(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a list of upcoming episodes."}],"kind":"symbol","metadata":{"role":"symbol","title":"getUpcomingEpisodes(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUpcomingEpisodes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUpcomingEpisodesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19getUpcomingEpisodes10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0heF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUpcomingEpisodes(parameters:)":{"role":"symbol","title":"getUpcomingEpisodes(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUpcomingEpisodes"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUpcomingEpisodesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a list of upcoming episodes."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUpcomingEpisodes(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodes(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters.json new file mode 100644 index 000000000..2bf3cb43c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/init(userID:startIndex:limit:fields:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/init(userID:startIndex:limit:fields:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)":{"role":"symbol","title":"init(userID:startIndex:limit:fields:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/init(userID:startIndex:limit:fields:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/init(userid:startindex:limit:fields:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/asquery.json new file mode 100644 index 000000000..ba538ffe3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/enableimages.json new file mode 100644 index 000000000..bfa75e6a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/enableimagetypes.json new file mode 100644 index 000000000..8e9d97e77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV16enableImageTypesSayAA0I4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/enableuserdata.json new file mode 100644 index 000000000..cc0b0dd60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/fields.json new file mode 100644 index 000000000..16da91f9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/imagetypelimit.json new file mode 100644 index 000000000..4b0381eb9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/init(userid:startindex:limit:fields:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/init(userid:startindex:limit:fields:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:).json new file mode 100644 index 000000000..925554d7f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/init(userid:startindex:limit:fields:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/init(userid:startindex:limit:fields:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/init(userID:startIndex:limit:fields:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(userID:startIndex:limit:fields:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV6userID10startIndex5limit6fields06parentI012enableImages14imageTypeLimit0O10ImageTypes0O8UserDataAE10Foundation4UUIDVSg_s5Int32VSgAUSayAA10ItemFieldsOGSgARSbSgAUSayAA0tR0OGSgAZtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/init(userID:startIndex:limit:fields:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)":{"role":"symbol","title":"init(userID:startIndex:limit:fields:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/init(userID:startIndex:limit:fields:parentID:enableImages:imageTypeLimit:enableImageTypes:enableUserData:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/init(userid:startindex:limit:fields:parentid:enableimages:imagetypelimit:enableimagetypes:enableuserdata:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/limit.json new file mode 100644 index 000000000..16aee06c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/parentid.json new file mode 100644 index 000000000..e733d8f61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/startindex.json new file mode 100644 index 000000000..c500d0578 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/userid.json new file mode 100644 index 000000000..f46e76ca3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getupcomingepisodesparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUpcomingEpisodesParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters":{"role":"symbol","title":"Paths.GetUpcomingEpisodesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUpcomingEpisodesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUpcomingEpisodesParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUpcomingEpisodesParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getupcomingepisodesparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserbyid(userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserbyid(userid:).json new file mode 100644 index 000000000..7b9111657 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserbyid(userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserByID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserbyid(userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserByID(userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a user by Id."}],"kind":"symbol","metadata":{"role":"symbol","title":"getUserByID(userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserByID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11getUserByID04userG03Get7RequestVyAA0E3DtoVGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUserByID(userID:)":{"role":"symbol","title":"getUserByID(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserByID"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a user by Id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserByID(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserbyid(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimage(userid:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimage(userid:imagetype:parameters:).json new file mode 100644 index 000000000..59595a72d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimage(userid:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV","text":"GetUserImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimage(userid:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserImage(userID:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get user profile image."}],"kind":"symbol","metadata":{"role":"symbol","title":"getUserImage(userID:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUserImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12getUserImage6userID9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC0leF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUserImage(userID:imageType:parameters:)":{"role":"symbol","title":"getUserImage(userID:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUserImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get user profile image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserImage(userID:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimage(userid:imagetype:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindex(userid:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindex(userid:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..1b3bcb4e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindex(userid:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV","text":"GetUserImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindex(userid:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserImageByIndex(userID:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get user profile image."}],"kind":"symbol","metadata":{"role":"symbol","title":"getUserImageByIndex(userID:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUserImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19getUserImageByIndex6userID9imageType0kH010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC0nefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUserImageByIndex(userID:imageType:imageIndex:parameters:)":{"role":"symbol","title":"getUserImageByIndex(userID:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUserImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get user profile image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserImageByIndex(userID:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindex(userid:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters.json new file mode 100644 index 000000000..1a3baae2f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"role":"symbol","title":"Paths.GetUserImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/isaddplayedindicator"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/asquery.json new file mode 100644 index 000000000..d97d812f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..d336caf05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/blur.json new file mode 100644 index 000000000..439aa0b8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..729856f7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..928365fe8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..dad65e823 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..9b313aa4e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..ad57ec31a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetUserImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/height.json new file mode 100644 index 000000000..8d45f7d22 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..e4530b214 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV3tag6format8maxWidth0L6Height13percentPlayed13unplayedCount5width6height7quality04fillM00vN016isCropWhitespace0w3AddP9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0F6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..6b8b1afb8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..cf666303b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..e0a9800eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..ea5c391b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/maxwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..b010703d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/quality.json new file mode 100644 index 000000000..23650b993 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/tag.json new file mode 100644 index 000000000..584492cf1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..b488895e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/width.json new file mode 100644 index 000000000..b69f7738c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29GetUserImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageByIndexParameters":{"role":"symbol","title":"Paths.GetUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters.json new file mode 100644 index 000000000..07ef24caa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"role":"symbol","title":"Paths.GetUserImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetUserImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/asquery.json new file mode 100644 index 000000000..396c4ca3f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/backgroundcolor.json new file mode 100644 index 000000000..3a3d45677 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/blur.json new file mode 100644 index 000000000..97a307eb9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/blur"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/fillheight.json new file mode 100644 index 000000000..7aeb1f039 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/fillwidth.json new file mode 100644 index 000000000..da53403ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/fillwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/foregroundlayer.json new file mode 100644 index 000000000..33bb3eaf8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/foregroundlayer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/format-swift.property.json new file mode 100644 index 000000000..0b31bbdf1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetUserImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..3cfc6032a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.GetUserImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetUserImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/height.json new file mode 100644 index 000000000..699e05a69 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/imageindex.json new file mode 100644 index 000000000..875c53a9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..88102eb3b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV3tag6format8maxWidth0J6Height13percentPlayed13unplayedCount5width6height7quality04fillK00tL016isCropWhitespace0u3AddN9Indicator4blur15backgroundColor15foregroundLayer10imageIndexAESSSg_AA0F6FormatOSgs5Int32VSgA1_SdSgA1_A1_A1_A1_A1_A1_SbSgA3_A1_A2WA1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.GetUserImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..646ccb3ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..59fbf4879 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/maxheight.json new file mode 100644 index 000000000..3a1327000 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/maxwidth.json new file mode 100644 index 000000000..47e3e0244 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/percentplayed.json new file mode 100644 index 000000000..88333bdea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/quality.json new file mode 100644 index 000000000..ac70820db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/tag.json new file mode 100644 index 000000000..9ab01745f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/unplayedcount.json new file mode 100644 index 000000000..e005f57f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/width.json new file mode 100644 index 000000000..699cfded0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters":{"role":"symbol","title":"Paths.GetUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserimageparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getusers(ishidden:isdisabled:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getusers(ishidden:isdisabled:).json new file mode 100644 index 000000000..2879b1a87 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getusers(ishidden:isdisabled:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUsers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV","text":"UserDto"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getusers(ishidden:isdisabled:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUsers(isHidden:isDisabled:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a list of users."}],"kind":"symbol","metadata":{"role":"symbol","title":"getUsers(isHidden:isDisabled:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUsers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO8getUsers8isHidden0F8Disabled3Get7RequestVySayAA7UserDtoVGGSbSg_ANtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUsers(isHidden:isDisabled:)":{"role":"symbol","title":"getUsers(isHidden:isDisabled:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUsers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets a list of users."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUsers(isHidden:isDisabled:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getusers(ishidden:isdisabled:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviews(userid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviews(userid:parameters:).json new file mode 100644 index 000000000..3478a9ed6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviews(userid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserViews"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserViewsParametersV","text":"GetUserViewsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserviews(userid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserViews(userID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get user views."}],"kind":"symbol","metadata":{"role":"symbol","title":"getUserViews(userID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserViews"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUserViewsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserViewsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12getUserViews6userID10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUserViews(userID:parameters:)":{"role":"symbol","title":"getUserViews(userID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUserViews"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetUserViewsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO22GetUserViewsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get user views."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUserViews(userID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviews(userid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters":{"role":"symbol","title":"Paths.GetUserViewsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserViewsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserViewsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters.json new file mode 100644 index 000000000..c2616d0c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserViewsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserviewsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetUserViewsParameters"}],"role":"symbol","title":"Paths.GetUserViewsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserViewsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO22GetUserViewsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/init(isIncludeExternalContent:presetViews:isIncludeHidden:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/isIncludeExternalContent","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/isIncludeHidden","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/presetViews"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters/isIncludeExternalContent":{"role":"symbol","title":"isIncludeExternalContent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeExternalContent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/isIncludeExternalContent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/isincludeexternalcontent"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters":{"role":"symbol","title":"Paths.GetUserViewsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserViewsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserViewsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters/presetViews":{"role":"symbol","title":"presetViews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"presetViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/presetViews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/presetviews"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters/isIncludeHidden":{"role":"symbol","title":"isIncludeHidden","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/isIncludeHidden","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/isincludehidden"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters/init(isIncludeExternalContent:presetViews:isIncludeHidden:)":{"role":"symbol","title":"init(isIncludeExternalContent:presetViews:isIncludeHidden:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeExternalContent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"presetViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isIncludeHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/init(isIncludeExternalContent:presetViews:isIncludeHidden:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/init(isincludeexternalcontent:presetviews:isincludehidden:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/asquery.json new file mode 100644 index 000000000..4cfafba98 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserViewsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters":{"role":"symbol","title":"Paths.GetUserViewsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserViewsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserViewsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/init(isincludeexternalcontent:presetviews:isincludehidden:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/init(isincludeexternalcontent:presetviews:isincludehidden:).json new file mode 100644 index 000000000..2977261e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/init(isincludeexternalcontent:presetviews:isincludehidden:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeExternalContent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"presetViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isIncludeHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/init(isincludeexternalcontent:presetviews:isincludehidden:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/init(isIncludeExternalContent:presetViews:isIncludeHidden:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeExternalContent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"presetViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isIncludeHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(isIncludeExternalContent:presetViews:isIncludeHidden:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO22GetUserViewsParametersV24isIncludeExternalContent06presetF00hI6HiddenAESbSg_SaySSGSgAItcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters/init(isIncludeExternalContent:presetViews:isIncludeHidden:)":{"role":"symbol","title":"init(isIncludeExternalContent:presetViews:isIncludeHidden:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeExternalContent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"presetViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isIncludeHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/init(isIncludeExternalContent:presetViews:isIncludeHidden:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/init(isincludeexternalcontent:presetviews:isincludehidden:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters":{"role":"symbol","title":"Paths.GetUserViewsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserViewsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserViewsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/isincludeexternalcontent.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/isincludeexternalcontent.json new file mode 100644 index 000000000..add6779ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/isincludeexternalcontent.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeExternalContent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/isincludeexternalcontent"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/isIncludeExternalContent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeExternalContent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeExternalContent","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserViewsParametersV24isIncludeExternalContentSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters":{"role":"symbol","title":"Paths.GetUserViewsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserViewsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserViewsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters/isIncludeExternalContent":{"role":"symbol","title":"isIncludeExternalContent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeExternalContent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/isIncludeExternalContent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/isincludeexternalcontent"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/isincludehidden.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/isincludehidden.json new file mode 100644 index 000000000..679e50974 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/isincludehidden.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/isincludehidden"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/isIncludeHidden","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeHidden","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserViewsParametersV15isIncludeHiddenSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters/isIncludeHidden":{"role":"symbol","title":"isIncludeHidden","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/isIncludeHidden","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/isincludehidden"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters":{"role":"symbol","title":"Paths.GetUserViewsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserViewsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserViewsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/presetviews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/presetviews.json new file mode 100644 index 000000000..9ab797ee0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getuserviewsparameters/presetviews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"presetViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/presetviews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/presetViews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"presetViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"presetViews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO22GetUserViewsParametersV06presetF0SaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters/presetViews":{"role":"symbol","title":"presetViews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"presetViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters\/presetViews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters\/presetviews"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetUserViewsParameters":{"role":"symbol","title":"Paths.GetUserViewsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetUserViewsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetUserViewsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetUserViewsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getuserviewsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getutctime.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getutctime.json new file mode 100644 index 000000000..7f792c72b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getutctime.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUtcTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getutctime"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUtcTime","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the current UTC time."}],"kind":"symbol","metadata":{"role":"symbol","title":"getUtcTime","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUtcTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO10getUtcTime3Get7RequestVyAA0eF8ResponseVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse":{"role":"symbol","title":"UtcTimeResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UtcTimeResponse"}],"abstract":[{"type":"text","text":"Class UtcTimeResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UtcTimeResponse"}],"url":"\/documentation\/jellyfinapi\/utctimeresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getUtcTime":{"role":"symbol","title":"getUtcTime","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getUtcTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the current UTC time."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getUtcTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getutctime"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylist(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylist(itemid:parameters:).json new file mode 100644 index 000000000..e19992204 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylist(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVariantHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV","text":"GetVariantHlsAudioPlaylistParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylist(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVariantHlsAudioPlaylist(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an audio stream using HTTP live streaming."}],"kind":"symbol","metadata":{"role":"symbol","title":"getVariantHlsAudioPlaylist(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVariantHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVariantHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26getVariantHlsAudioPlaylist6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC0lefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getVariantHlsAudioPlaylist(itemID:parameters:)":{"role":"symbol","title":"getVariantHlsAudioPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVariantHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVariantHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream using HTTP live streaming."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVariantHlsAudioPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylist(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters.json new file mode 100644 index 000000000..b8062c443 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-44yob"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/deviceprofileid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..2b6fb2552 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV05allowG10StreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/allowaudiostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..b5db27d71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV20allowVideoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/asquery.json new file mode 100644 index 000000000..21cb3970f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiobitrate.json new file mode 100644 index 000000000..58a83254e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiochannels.json new file mode 100644 index 000000000..b4a50e652 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiocodec.json new file mode 100644 index 000000000..a04e01011 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiocodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiosamplerate.json new file mode 100644 index 000000000..53a292df7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiostreamindex.json new file mode 100644 index 000000000..4fce6c9e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/context-swift.property.json new file mode 100644 index 000000000..607078194 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/context-swift.typealias.json new file mode 100644 index 000000000..a05d53bcd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetVariantHlsAudioPlaylistParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/cpucorelimit.json new file mode 100644 index 000000000..1ea1ada6a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/deviceid.json new file mode 100644 index 000000000..18c663206 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/deviceprofileid.json new file mode 100644 index 000000000..46e331057 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/enableautostreamcopy.json new file mode 100644 index 000000000..01ec54d32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV20enableAutoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/enableautostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..e7f9684ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/framerate.json new file mode 100644 index 000000000..86484ed7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/height.json new file mode 100644 index 000000000..bfd2ec2d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-44yob.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-44yob.json new file mode 100644 index 000000000..04525bd8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-44yob.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-44yob"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV8isStatic6params3tag15deviceProfileID011playSessionP016segmentContainer0S6Length11minSegments011mediaSourceP00nP010audioCodec20enableAutoStreamCopy20allowVideoStreamCopy05allowG10StreamCopy0J19BreakOnNonKeyFrames0Z10SampleRate03maxG8BitDepth19maxStreamingBitrate0Z7BitRate0Z8Channels03maxG8Channels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height12videoBitRate19subtitleStreamIndex14subtitleMethod12maxRefFrames16maxVideoBitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic014transcodingMaxG8Channels12cpuCoreLimit010liveStreamP020enableMpegtsM2TsMode10videoCodec13subtitleCodec16transcodeReasons0Z11StreamIndex16videoStreamIndex7context13streamOptionsAESbSg_SSSgA27_A27_A27_A27_s5Int32VSgA30_A27_A27_A27_A26_A26_A26_A26_A30_A30_A30_A30_A30_A30_A27_A27_SfSgA31_A26_s5Int64VSgA30_A30_A30_A30_AA22SubtitleDeliveryMethodOSgA30_A30_A26_A26_A26_A30_A30_A27_A26_A27_A27_A27_A30_A30_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-44yob"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..ac1aa20ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/iscopytimestamps.json new file mode 100644 index 000000000..b76d7b053 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/isdeinterlace.json new file mode 100644 index 000000000..397149d00 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/isstatic.json new file mode 100644 index 000000000..cc7106479 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/level.json new file mode 100644 index 000000000..1c9d96f30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/level"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/livestreamid.json new file mode 100644 index 000000000..0a073f50b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/livestreamid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..647090e4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV03maxG8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxaudiochannels.json new file mode 100644 index 000000000..f5b367d04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV03maxG8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxframerate.json new file mode 100644 index 000000000..dd8ca08d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxrefframes.json new file mode 100644 index 000000000..26c49b042 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxstreamingbitrate.json new file mode 100644 index 000000000..fb64b6b88 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxstreamingbitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxvideobitdepth.json new file mode 100644 index 000000000..1d907bbd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV16maxVideoBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/mediasourceid.json new file mode 100644 index 000000000..58187c8f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/minsegments.json new file mode 100644 index 000000000..661a03cf7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/minsegments"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/params.json new file mode 100644 index 000000000..5fd7809bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/playsessionid.json new file mode 100644 index 000000000..30e62f4c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/profile.json new file mode 100644 index 000000000..fedb9f5ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/profile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/requireavc.json new file mode 100644 index 000000000..cf80ac08b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/requirenonanamorphic.json new file mode 100644 index 000000000..94caecc89 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/segmentcontainer.json new file mode 100644 index 000000000..e6bea886d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/segmentcontainer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/segmentlength.json new file mode 100644 index 000000000..191154d33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/starttimeticks.json new file mode 100644 index 000000000..0b6700f4f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..53fe1efa5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..7ac763921 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetVariantHlsAudioPlaylistParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13StreamOptionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlecodec.json new file mode 100644 index 000000000..9a844f78c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..5f1b5c09d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14subtitleMethodAA016SubtitleDeliveryK0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..6d550dd74 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetVariantHlsAudioPlaylistParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlestreamindex.json new file mode 100644 index 000000000..d57710b29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/tag.json new file mode 100644 index 000000000..6cc3c425e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/transcodereasons.json new file mode 100644 index 000000000..5b5fbf5bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..06694f745 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV014transcodingMaxG8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/videobitrate.json new file mode 100644 index 000000000..fc01a44f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/videocodec.json new file mode 100644 index 000000000..156c4d4d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/videostreamindex.json new file mode 100644 index 000000000..5c3cd4a46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV16videoStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/width.json new file mode 100644 index 000000000..cd13d3ce3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsaudioplaylistparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsAudioPlaylistParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylist(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylist(itemid:parameters:).json new file mode 100644 index 000000000..e8e034fd1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylist(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVariantHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV","text":"GetVariantHlsVideoPlaylistParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylist(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVariantHlsVideoPlaylist(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a video stream using HTTP live streaming."}],"kind":"symbol","metadata":{"role":"symbol","title":"getVariantHlsVideoPlaylist(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVariantHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVariantHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26getVariantHlsVideoPlaylist6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC0lefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getVariantHlsVideoPlaylist(itemID:parameters:)":{"role":"symbol","title":"getVariantHlsVideoPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVariantHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVariantHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream using HTTP live streaming."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVariantHlsVideoPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylist(itemid:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters.json new file mode 100644 index 000000000..9bc78e935 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxrefframes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..4a0a8371a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV20allowAudioStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..92588b364 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV05allowG10StreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/asquery.json new file mode 100644 index 000000000..d67162b55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiobitrate.json new file mode 100644 index 000000000..6c6fd12e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiobitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiochannels.json new file mode 100644 index 000000000..990047616 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiocodec.json new file mode 100644 index 000000000..0fefc08fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiosamplerate.json new file mode 100644 index 000000000..dc3186b11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiosamplerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiostreamindex.json new file mode 100644 index 000000000..38ab32f1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/context-swift.property.json new file mode 100644 index 000000000..87d16bdcc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/context-swift.typealias.json new file mode 100644 index 000000000..3c4f13ce0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetVariantHlsVideoPlaylistParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/cpucorelimit.json new file mode 100644 index 000000000..b6e532f6f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/deviceid.json new file mode 100644 index 000000000..a89ef18d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/deviceprofileid.json new file mode 100644 index 000000000..25d026dad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/deviceprofileid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/enableautostreamcopy.json new file mode 100644 index 000000000..3522ab347 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV20enableAutoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..db6da2189 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/framerate.json new file mode 100644 index 000000000..d46674cde --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/height.json new file mode 100644 index 000000000..c24b527c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp.json new file mode 100644 index 000000000..40f3bd928 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV8isStatic6params3tag15deviceProfileID011playSessionP016segmentContainer0S6Length11minSegments011mediaSourceP00nP010audioCodec20enableAutoStreamCopy05allowG10StreamCopy20allowAudioStreamCopy0J19BreakOnNonKeyFrames0Z10SampleRate16maxAudioBitDepth0Z7BitRate0Z8Channels16maxAudioChannels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height8maxWidth9maxHeight12videoBitRate19subtitleStreamIndex14subtitleMethod12maxRefFrames03maxG8BitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic27transcodingMaxAudioChannels12cpuCoreLimit010liveStreamP020enableMpegtsM2TsMode10videoCodec13subtitleCodec16transcodeReasons0Z11StreamIndex16videoStreamIndex7context13streamOptionsAESbSg_SSSgA28_A28_A28_A28_s5Int32VSgA31_A28_A28_A28_A27_A27_A27_A27_A31_A31_A31_A31_A31_A28_A28_SfSgA32_A27_s5Int64VSgA31_A31_A31_A31_A31_A31_AA22SubtitleDeliveryMethodOSgA31_A31_A27_A27_A27_A31_A31_A28_A27_A28_A28_A28_A31_A31_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..0a07304f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/iscopytimestamps.json new file mode 100644 index 000000000..491a3b301 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/isdeinterlace.json new file mode 100644 index 000000000..bd96c9009 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/isstatic.json new file mode 100644 index 000000000..31bed4c17 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/level.json new file mode 100644 index 000000000..4f166f214 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/livestreamid.json new file mode 100644 index 000000000..5908ba47b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..35a5391fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV16maxAudioBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxaudiochannels.json new file mode 100644 index 000000000..5db2c14ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxframerate.json new file mode 100644 index 000000000..bfbd4307e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxheight.json new file mode 100644 index 000000000..29ddc57d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxrefframes.json new file mode 100644 index 000000000..132f8da91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxvideobitdepth.json new file mode 100644 index 000000000..15dc22fd7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV03maxG8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxvideobitdepth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxwidth.json new file mode 100644 index 000000000..d5ddde240 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/mediasourceid.json new file mode 100644 index 000000000..7b25126d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/minsegments.json new file mode 100644 index 000000000..dc38c1e81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/params.json new file mode 100644 index 000000000..6bbf0f531 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/playsessionid.json new file mode 100644 index 000000000..058e5fd4f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/playsessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/profile.json new file mode 100644 index 000000000..520fd5412 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/requireavc.json new file mode 100644 index 000000000..a32b78dc9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/requireavc"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/requirenonanamorphic.json new file mode 100644 index 000000000..1571bb690 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/segmentcontainer.json new file mode 100644 index 000000000..41c7069d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/segmentlength.json new file mode 100644 index 000000000..a782969bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/segmentlength"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/starttimeticks.json new file mode 100644 index 000000000..4b3dcf3f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/starttimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..b83078d73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/streamoptions-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..0aa8f22dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetVariantHlsVideoPlaylistParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13StreamOptionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlecodec.json new file mode 100644 index 000000000..6b7dfdfcb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..0dafb5d0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14subtitleMethodAA016SubtitleDeliveryK0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..6434cce1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetVariantHlsVideoPlaylistParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlestreamindex.json new file mode 100644 index 000000000..e24ad3bf8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/tag.json new file mode 100644 index 000000000..71072f328 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/transcodereasons.json new file mode 100644 index 000000000..d15b09ed9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..ce6244086 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV27transcodingMaxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/transcodingmaxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/videobitrate.json new file mode 100644 index 000000000..db4c6aa0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/videocodec.json new file mode 100644 index 000000000..45022002b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/videostreamindex.json new file mode 100644 index 000000000..50cae87b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV16videoStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/width.json new file mode 100644 index 000000000..4274263f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvarianthlsvideoplaylistparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36GetVariantHlsVideoPlaylistParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.GetVariantHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVariantHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVariantHlsVideoPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVariantHlsVideoPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvarianthlsvideoplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostream(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostream(itemid:parameters:).json new file mode 100644 index 000000000..01156960a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostream(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVideoStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV","text":"GetVideoStreamParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostream(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVideoStream(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a video stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"getVideoStream(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVideoStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVideoStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14getVideoStream6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC0jeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getVideoStream(itemID:parameters:)":{"role":"symbol","title":"getVideoStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVideoStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVideoStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVideoStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainer(itemid:container:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainer(itemid:container:parameters:).json new file mode 100644 index 000000000..229954cf7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainer(itemid:container:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVideoStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV","text":"GetVideoStreamByContainerParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainer(itemid:container:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVideoStreamByContainer(itemID:container:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a video stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"getVideoStreamByContainer(itemID:container:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVideoStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVideoStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO25getVideoStreamByContainer6itemID9container10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC0mefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getVideoStreamByContainer(itemID:container:parameters:)":{"role":"symbol","title":"getVideoStreamByContainer(itemID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVideoStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetVideoStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVideoStreamByContainer(itemID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainer(itemid:container:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters.json new file mode 100644 index 000000000..1e10fadaf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/framerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..b458575d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV010allowAudioF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..2b8832726 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV05alloweF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/asquery.json new file mode 100644 index 000000000..712d95dd6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiobitrate.json new file mode 100644 index 000000000..c344f4238 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiobitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiochannels.json new file mode 100644 index 000000000..93a9f8053 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiocodec.json new file mode 100644 index 000000000..2c77be69d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiosamplerate.json new file mode 100644 index 000000000..1ff01babd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiostreamindex.json new file mode 100644 index 000000000..1e996ecea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV05audioF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/audiostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/context-swift.property.json new file mode 100644 index 000000000..950f39503 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/context-swift.typealias.json new file mode 100644 index 000000000..f22b0d009 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetVideoStreamByContainerParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/cpucorelimit.json new file mode 100644 index 000000000..9cf0c3df1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/cpucorelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/deviceid.json new file mode 100644 index 000000000..a91799007 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/deviceprofileid.json new file mode 100644 index 000000000..d5d23dae4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/enableautostreamcopy.json new file mode 100644 index 000000000..10b3826d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV010enableAutoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..671d39291 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/framerate.json new file mode 100644 index 000000000..52560658f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/height.json new file mode 100644 index 000000000..3cbecc35c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp.json new file mode 100644 index 000000000..eb8fdcefb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV8isStatic6params3tag15deviceProfileID011playSessionP007segmentH00S6Length11minSegments011mediaSourceP00nP010audioCodec010enableAutoF4Copy05alloweF4Copy010allowAudioF4Copy0J19BreakOnNonKeyFrames0Y10SampleRate16maxAudioBitDepth0Y7BitRate0Y8Channels16maxAudioChannels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height8maxWidth9maxHeight12videoBitRate08subtitleF5Index14subtitleMethod12maxRefFrames03maxE8BitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic27transcodingMaxAudioChannels12cpuCoreLimit04livefP020enableMpegtsM2TsMode05videoZ008subtitleZ016transcodeReasons0yF5Index05videoF5Index7context13streamOptionsAESbSg_SSSgA28_A28_A28_A28_s5Int32VSgA31_A28_A28_A28_A27_A27_A27_A27_A31_A31_A31_A31_A31_A28_A28_SfSgA32_A27_s5Int64VSgA31_A31_A31_A31_A31_A31_AA22SubtitleDeliveryMethodOSgA31_A31_A27_A27_A27_A31_A31_A28_A27_A28_A28_A28_A31_A31_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..e420c8352 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/isbreakonnonkeyframes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/iscopytimestamps.json new file mode 100644 index 000000000..4e1e9f250 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/isdeinterlace.json new file mode 100644 index 000000000..c59cc38f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/isstatic.json new file mode 100644 index 000000000..632dcc370 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/level.json new file mode 100644 index 000000000..0b94b4eaa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/level"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/livestreamid.json new file mode 100644 index 000000000..6739d1e8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV04liveF2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..22d5d1a23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV16maxAudioBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxaudiochannels.json new file mode 100644 index 000000000..6efe5981d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxframerate.json new file mode 100644 index 000000000..9ac618329 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxheight.json new file mode 100644 index 000000000..7b406ada5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxrefframes.json new file mode 100644 index 000000000..a1fc8f4c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxvideobitdepth.json new file mode 100644 index 000000000..87e8ddc91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV03maxE8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxwidth.json new file mode 100644 index 000000000..28e6f13de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/mediasourceid.json new file mode 100644 index 000000000..28ba2e830 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/mediasourceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/minsegments.json new file mode 100644 index 000000000..e349ad560 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/params.json new file mode 100644 index 000000000..0ec18dbed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/playsessionid.json new file mode 100644 index 000000000..433fb4780 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/profile.json new file mode 100644 index 000000000..fef9ea1de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/requireavc.json new file mode 100644 index 000000000..e96640321 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/requirenonanamorphic.json new file mode 100644 index 000000000..3bfd1a7d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/segmentcontainer.json new file mode 100644 index 000000000..e86db6482 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV07segmentH0SSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/segmentlength.json new file mode 100644 index 000000000..d79cf3292 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/starttimeticks.json new file mode 100644 index 000000000..0a90a0b71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..48cad39eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..0ef42fdb7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetVideoStreamByContainerParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV0F7Optionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlecodec.json new file mode 100644 index 000000000..4a81c05f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..de836f421 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14subtitleMethodAA016SubtitleDeliveryK0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..2ae3a94d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetVideoStreamByContainerParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlestreamindex.json new file mode 100644 index 000000000..519349fd2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV08subtitleF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/tag.json new file mode 100644 index 000000000..23acbc178 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/transcodereasons.json new file mode 100644 index 000000000..204df0493 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..7706a15d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV27transcodingMaxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/transcodingmaxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/videobitrate.json new file mode 100644 index 000000000..252b02a67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/videocodec.json new file mode 100644 index 000000000..7e4106ebe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/videocodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/videostreamindex.json new file mode 100644 index 000000000..2533c9028 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV05videoF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/width.json new file mode 100644 index 000000000..e0486e026 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreambycontainerparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO35GetVideoStreamByContainerParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.GetVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters.json new file mode 100644 index 000000000..bfa402f93 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"role":"symbol","title":"Paths.GetVideoStreamParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..ffd5f8b1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV010allowAudioF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/allowaudiostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..44400eac5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV05alloweF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/allowvideostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/asquery.json new file mode 100644 index 000000000..298448031 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiobitrate.json new file mode 100644 index 000000000..70ffb9dfc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiochannels.json new file mode 100644 index 000000000..d8b6923c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiocodec.json new file mode 100644 index 000000000..ad5d6149d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiosamplerate.json new file mode 100644 index 000000000..287cd7f14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiosamplerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiostreamindex.json new file mode 100644 index 000000000..fbf0dc7e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV05audioF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/container.json new file mode 100644 index 000000000..434704d04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/context-swift.property.json new file mode 100644 index 000000000..c16bedfe0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/context-swift.typealias.json new file mode 100644 index 000000000..a576bd51a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.GetVideoStreamParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/cpucorelimit.json new file mode 100644 index 000000000..c126eac16 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/cpucorelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/deviceid.json new file mode 100644 index 000000000..9cc25d562 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/deviceprofileid.json new file mode 100644 index 000000000..7a4a65439 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/deviceprofileid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/enableautostreamcopy.json new file mode 100644 index 000000000..5de60f7e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV010enableAutoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/enableautostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..7254e99d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/framerate.json new file mode 100644 index 000000000..9808af5cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/height.json new file mode 100644 index 000000000..77c0276ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1.json new file mode 100644 index 000000000..864ff94a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV9container8isStatic6params3tag15deviceProfileID011playSessionO016segmentContainer0R6Length11minSegments011mediaSourceO00mO010audioCodec010enableAutoF4Copy05alloweF4Copy010allowAudioF4Copy0I19BreakOnNonKeyFrames0Y10SampleRate16maxAudioBitDepth0Y7BitRate0Y8Channels16maxAudioChannels7profile5level9framerate12maxFramerate0I14CopyTimestamps14startTimeTicks5width6height8maxWidth9maxHeight12videoBitRate08subtitleF5Index14subtitleMethod12maxRefFrames03maxE8BitDepth10requireAvc0I11DeInterlace20requireNonAnamorphic27transcodingMaxAudioChannels12cpuCoreLimit04livefO020enableMpegtsM2TsMode05videoZ008subtitleZ016transcodeReasons0yF5Index05videoF5Index7context13streamOptionsAESSSg_SbSgA28_A28_A28_A28_A28_s5Int32VSgA32_A28_A28_A28_A29_A29_A29_A29_A32_A32_A32_A32_A32_A28_A28_SfSgA33_A29_s5Int64VSgA32_A32_A32_A32_A32_A32_AA22SubtitleDeliveryMethodOSgA32_A32_A29_A29_A29_A32_A32_A28_A29_A28_A28_A28_A32_A32_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..6332caac9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/iscopytimestamps.json new file mode 100644 index 000000000..c32a12210 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/isdeinterlace.json new file mode 100644 index 000000000..3637a321d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/isdeinterlace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/isstatic.json new file mode 100644 index 000000000..c87b45d3c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/level.json new file mode 100644 index 000000000..edcc16875 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/livestreamid.json new file mode 100644 index 000000000..e5d36dfe6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV04liveF2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..7c331d055 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV16maxAudioBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxaudiochannels.json new file mode 100644 index 000000000..64a56fd24 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxframerate.json new file mode 100644 index 000000000..bcc21cc8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxheight.json new file mode 100644 index 000000000..5f5cbf0e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxrefframes.json new file mode 100644 index 000000000..8ce47cd02 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxvideobitdepth.json new file mode 100644 index 000000000..d3b807151 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV03maxE8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxwidth.json new file mode 100644 index 000000000..9dba55a30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/mediasourceid.json new file mode 100644 index 000000000..f45e9ca7f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/minsegments.json new file mode 100644 index 000000000..258c7d5db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/params.json new file mode 100644 index 000000000..3d4faf14c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/playsessionid.json new file mode 100644 index 000000000..d2be3a9e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/profile.json new file mode 100644 index 000000000..10b7d3689 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/requireavc.json new file mode 100644 index 000000000..18d0a7b74 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/requirenonanamorphic.json new file mode 100644 index 000000000..57f954583 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/segmentcontainer.json new file mode 100644 index 000000000..063253a87 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/segmentcontainer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/segmentlength.json new file mode 100644 index 000000000..25c812d6e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/starttimeticks.json new file mode 100644 index 000000000..82d3df814 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/starttimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..d0b787552 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..da3431b31 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.GetVideoStreamParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV0F7Optionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlecodec.json new file mode 100644 index 000000000..71327763d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..9aba823ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14subtitleMethodAA016SubtitleDeliveryI0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..3e8039d9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.GetVideoStreamParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.GetVideoStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlestreamindex.json new file mode 100644 index 000000000..3bdf58ea9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV08subtitleF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/tag.json new file mode 100644 index 000000000..775b8e656 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/transcodereasons.json new file mode 100644 index 000000000..f40f06a45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..462d5b5da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV27transcodingMaxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/videobitrate.json new file mode 100644 index 000000000..8a66fdb96 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/videocodec.json new file mode 100644 index 000000000..20af70484 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/videostreamindex.json new file mode 100644 index 000000000..8c7af14df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV05videoF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/width.json new file mode 100644 index 000000000..65507869e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvideostreamparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24GetVideoStreamParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters":{"role":"symbol","title":"Paths.GetVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetVideoStreamParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetVideoStreamParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvideostreamparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvirtualfolders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvirtualfolders.json new file mode 100644 index 000000000..d6cfd6429 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getvirtualfolders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVirtualFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","preciseIdentifier":"s:11JellyfinAPI17VirtualFolderInfoV","text":"VirtualFolderInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getvirtualfolders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVirtualFolders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all virtual folders."}],"kind":"symbol","metadata":{"role":"symbol","title":"getVirtualFolders","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVirtualFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VirtualFolderInfo","preciseIdentifier":"s:11JellyfinAPI17VirtualFolderInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO17getVirtualFolders3Get7RequestVySayAA0E10FolderInfoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getVirtualFolders":{"role":"symbol","title":"getVirtualFolders","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getVirtualFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"VirtualFolderInfo","preciseIdentifier":"s:11JellyfinAPI17VirtualFolderInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets all virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getVirtualFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getvirtualfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getwakeonlaninfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getwakeonlaninfo.json new file mode 100644 index 000000000..abec42cef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getwakeonlaninfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getWakeOnLanInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo","preciseIdentifier":"s:11JellyfinAPI13WakeOnLanInfoV","text":"WakeOnLanInfo"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getwakeonlaninfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getWakeOnLanInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets wake on lan information."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"getWakeOnLanInfo","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getWakeOnLanInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"WakeOnLanInfo","preciseIdentifier":"s:11JellyfinAPI13WakeOnLanInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO16getWakeOnLanInfo3Get7RequestVySayAA0efgH0VGGvpZ","extendedModule":"JellyfinAPI","platforms":[]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated"}]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getWakeOnLanInfo":{"role":"symbol","title":"getWakeOnLanInfo","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"getWakeOnLanInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"WakeOnLanInfo","preciseIdentifier":"s:11JellyfinAPI13WakeOnLanInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets wake on lan information."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getWakeOnLanInfo","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/getwakeonlaninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo":{"role":"symbol","title":"WakeOnLanInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"WakeOnLanInfo"}],"abstract":[{"type":"text","text":"Provides the MAC address and port for wake-on-LAN functionality."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"WakeOnLanInfo"}],"url":"\/documentation\/jellyfinapi\/wakeonlaninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyear(year:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyear(year:userid:).json new file mode 100644 index 000000000..fde48122c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyear(year:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getYear"},{"kind":"text","text":"("},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyear(year:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getYear(year:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a year."}],"kind":"symbol","metadata":{"role":"symbol","title":"getYear(year:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getYear"},{"kind":"text","text":"("},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO7getYear4year6userID3Get7RequestVyAA11BaseItemDtoVGSi_10Foundation4UUIDVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getYear(year:userID:)":{"role":"symbol","title":"getYear(year:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getYear"},{"kind":"text","text":"("},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets a year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getYear(year:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyear(year:userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyears(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyears(parameters:).json new file mode 100644 index 000000000..6dfd78b2d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyears(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getYears"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO18GetYearsParametersV","text":"GetYearsParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyears(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getYears(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get years."}],"kind":"symbol","metadata":{"role":"symbol","title":"getYears(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getYears"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetYearsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO18GetYearsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO8getYears10parameters3Get7RequestVyAA22BaseItemDtoQueryResultVGAC0gE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDtoQueryResult":{"role":"symbol","title":"BaseItemDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/baseitemdtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/getYears(parameters:)":{"role":"symbol","title":"getYears(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getYears"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GetYearsParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO18GetYearsParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Get years."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/getYears(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyears(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters.json new file mode 100644 index 000000000..9a0245e18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"role":"symbol","title":"Paths.GetYearsParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/init(startIndex:limit:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:mediaTypes:sortBy:enableUserData:imageTypeLimit:enableImageTypes:userID:isRecursive:enableImages:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableImageTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableUserData","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/excludeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/fields","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/imageTypeLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/includeItemTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/isRecursive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/limit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/mediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/parentID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/sortBy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/sortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/fields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/isRecursive":{"role":"symbol","title":"isRecursive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/isRecursive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/isrecursive"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/init(startIndex:limit:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:mediaTypes:sortBy:enableUserData:imageTypeLimit:enableImageTypes:userID:isRecursive:enableImages:)":{"role":"symbol","title":"init(startIndex:limit:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:mediaTypes:sortBy:enableUserData:imageTypeLimit:enableImageTypes:userID:isRecursive:enableImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/init(startIndex:limit:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:mediaTypes:sortBy:enableUserData:imageTypeLimit:enableImageTypes:userID:isRecursive:enableImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/init(startindex:limit:sortorder:parentid:fields:excludeitemtypes:includeitemtypes:mediatypes:sortby:enableuserdata:imagetypelimit:enableimagetypes:userid:isrecursive:enableimages:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/includeitemtypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/asquery.json new file mode 100644 index 000000000..964f96f00 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/enableimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/enableimages.json new file mode 100644 index 000000000..dd2fbb362 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/enableimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/enableimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV12enableImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/enableImages":{"role":"symbol","title":"enableImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/enableimages"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/enableimagetypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/enableimagetypes.json new file mode 100644 index 000000000..7eca1d9ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/enableimagetypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/enableimagetypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableImageTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"title":"enableImageTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV16enableImageTypesSayAA0H4TypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/enableImageTypes":{"role":"symbol","title":"enableImageTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableImageTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/enableimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/enableuserdata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/enableuserdata.json new file mode 100644 index 000000000..3a8ecf9c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/enableuserdata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/enableuserdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableUserData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV14enableUserDataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/enableUserData":{"role":"symbol","title":"enableUserData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/enableUserData","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/enableuserdata"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/excludeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/excludeitemtypes.json new file mode 100644 index 000000000..82969b6c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/excludeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/excludeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/excludeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"excludeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV16excludeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/excludeItemTypes":{"role":"symbol","title":"excludeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/excludeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/excludeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/fields.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/fields.json new file mode 100644 index 000000000..2b6735474 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/fields.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/fields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/fields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"title":"fields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV6fieldsSayAA10ItemFieldsOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/fields":{"role":"symbol","title":"fields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/fields","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/fields"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/imagetypelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/imagetypelimit.json new file mode 100644 index 000000000..8b303eb48 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/imagetypelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/imagetypelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/imageTypeLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageTypeLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV14imageTypeLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/imageTypeLimit":{"role":"symbol","title":"imageTypeLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/imageTypeLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/imagetypelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/includeitemtypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/includeitemtypes.json new file mode 100644 index 000000000..e342acadd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/includeitemtypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/includeitemtypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/includeItemTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"title":"includeItemTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV16includeItemTypesSayAA04BaseH4KindOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/includeItemTypes":{"role":"symbol","title":"includeItemTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/includeItemTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/includeitemtypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/init(startindex:limit:sortorder:parentid:fields:excludeitemtypes:includeitemtypes:mediatypes:sortby:enableuserdata:imagetypelimit:enableimagetypes:userid:isrecursive:enableimages:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/init(startindex:limit:sortorder:parentid:fields:excludeitemtypes:includeitemtypes:mediatypes:sortby:enableuserdata:imagetypelimit:enableimagetypes:userid:isrecursive:enableimages:).json new file mode 100644 index 000000000..707cfdcb5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/init(startindex:limit:sortorder:parentid:fields:excludeitemtypes:includeitemtypes:mediatypes:sortby:enableuserdata:imagetypelimit:enableimagetypes:userid:isrecursive:enableimages:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO","text":"ItemFields"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO","text":"BaseItemKind"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/init(startindex:limit:sortorder:parentid:fields:excludeitemtypes:includeitemtypes:mediatypes:sortby:enableuserdata:imagetypelimit:enableimagetypes:userid:isrecursive:enableimages:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/init(startIndex:limit:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:mediaTypes:sortBy:enableUserData:imageTypeLimit:enableImageTypes:userID:isRecursive:enableImages:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(startIndex:limit:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:mediaTypes:sortBy:enableUserData:imageTypeLimit:enableImageTypes:userID:isRecursive:enableImages:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV10startIndex5limit9sortOrder8parentID6fields16excludeItemTypes07includepQ005mediaQ00J2By14enableUserData14imageTypeLimit0u5ImageQ004userM011isRecursive0U6ImagesAEs5Int32VSg_AWSayAA04SortK0OGSg10Foundation4UUIDVSgSayAA0P6FieldsOGSgSayAA04BaseP4KindOGSgA11_SaySSGSgA13_SbSgAWSayAA05ImageY0OGSgA3_A14_A14_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemKind":{"role":"symbol","title":"BaseItemKind","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemKind"}],"abstract":[{"type":"text","text":"The base item kind."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemKind","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemKind"}],"url":"\/documentation\/jellyfinapi\/baseitemkind"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ItemFields":{"role":"symbol","title":"ItemFields","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ItemFields"}],"abstract":[{"type":"text","text":"Used to control the data that gets attached to DtoBaseItems."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ItemFields","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ItemFields"}],"url":"\/documentation\/jellyfinapi\/itemfields"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/init(startIndex:limit:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:mediaTypes:sortBy:enableUserData:imageTypeLimit:enableImageTypes:userID:isRecursive:enableImages:)":{"role":"symbol","title":"init(startIndex:limit:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:mediaTypes:sortBy:enableUserData:imageTypeLimit:enableImageTypes:userID:isRecursive:enableImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fields"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ItemFields","preciseIdentifier":"s:11JellyfinAPI10ItemFieldsO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"excludeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"includeItemTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemKind","preciseIdentifier":"s:11JellyfinAPI12BaseItemKindO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableUserData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTypeLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImageTypes"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/init(startIndex:limit:sortOrder:parentID:fields:excludeItemTypes:includeItemTypes:mediaTypes:sortBy:enableUserData:imageTypeLimit:enableImageTypes:userID:isRecursive:enableImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/init(startindex:limit:sortorder:parentid:fields:excludeitemtypes:includeitemtypes:mediatypes:sortby:enableuserdata:imagetypelimit:enableimagetypes:userid:isrecursive:enableimages:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/isrecursive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/isrecursive.json new file mode 100644 index 000000000..f1d1ef17b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/isrecursive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/isrecursive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/isRecursive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRecursive","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV11isRecursiveSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/isRecursive":{"role":"symbol","title":"isRecursive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecursive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/isRecursive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/isrecursive"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/limit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/limit.json new file mode 100644 index 000000000..9306bedb0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/limit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/limit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/limit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"limit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV5limits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/limit":{"role":"symbol","title":"limit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/limit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/limit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/mediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/mediatypes.json new file mode 100644 index 000000000..e04b828dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/mediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/mediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/mediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"mediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV10mediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/mediaTypes":{"role":"symbol","title":"mediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/mediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/mediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/parentid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/parentid.json new file mode 100644 index 000000000..31c8d3932 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/parentid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/parentid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/parentID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"parentID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV8parentID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/parentID":{"role":"symbol","title":"parentID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/parentID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/parentid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/sortby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/sortby.json new file mode 100644 index 000000000..c0af139d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/sortby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/sortby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/sortBy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortBy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV6sortBySaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/sortBy":{"role":"symbol","title":"sortBy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortBy"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/sortBy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/sortby"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/sortorder.json new file mode 100644 index 000000000..2a27136ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO","text":"SortOrder"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/sortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"title":"sortOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV9sortOrderSayAA04SortH0OGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/sortOrder":{"role":"symbol","title":"sortOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortOrder"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SortOrder","preciseIdentifier":"s:11JellyfinAPI9SortOrderO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/sortOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/startindex.json new file mode 100644 index 000000000..4abc69181 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/startindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/userid.json new file mode 100644 index 000000000..0c44f812e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/getyearsparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/getyearsparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18GetYearsParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/GetYearsParameters":{"role":"symbol","title":"Paths.GetYearsParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GetYearsParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/GetYearsParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GetYearsParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/getyearsparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimage(name:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimage(name:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..9576bf180 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimage(name:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headArtistImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV","text":"HeadArtistImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimage(name:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headArtistImage(name:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get artist image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"headArtistImage(name:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headArtistImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadArtistImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15headArtistImage4name9imageType0H5Index10parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC04HeadeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headArtistImage(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headArtistImage(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headArtistImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadArtistImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get artist image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headArtistImage(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimage(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters.json new file mode 100644 index 000000000..7ab51b479 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"role":"symbol","title":"Paths.HeadArtistImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadArtistImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/asquery.json new file mode 100644 index 000000000..ff197e24e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/backgroundcolor.json new file mode 100644 index 000000000..5be7f0dfc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/blur.json new file mode 100644 index 000000000..ec2104408 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/fillheight.json new file mode 100644 index 000000000..0e27713ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/fillwidth.json new file mode 100644 index 000000000..d67d978d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/foregroundlayer.json new file mode 100644 index 000000000..1fd7d49b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/format-swift.property.json new file mode 100644 index 000000000..7840abaf6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadArtistImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..3b606ad01 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadArtistImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadArtistImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/height.json new file mode 100644 index 000000000..bf16cded2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..fd2a15a6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV3tag6format8maxWidth0J6Height13percentPlayed13unplayedCount5width6height7quality04fillK00tL016isCropWhitespace0u3AddN9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0F6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadArtistImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..7370787b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..b4eb3a469 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/maxheight.json new file mode 100644 index 000000000..a9cee4d3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/maxwidth.json new file mode 100644 index 000000000..13018569e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/percentplayed.json new file mode 100644 index 000000000..6ffdfdd55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/quality.json new file mode 100644 index 000000000..65093721d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/tag.json new file mode 100644 index 000000000..2b844035b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/unplayedcount.json new file mode 100644 index 000000000..89eb20abc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/width.json new file mode 100644 index 000000000..e898f0e8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headartistimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadArtistImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadArtistImageParameters":{"role":"symbol","title":"Paths.HeadArtistImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadArtistImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadArtistImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadArtistImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headartistimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostream(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostream(itemid:parameters:).json new file mode 100644 index 000000000..1aaf771b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostream(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV","text":"HeadAudioStreamParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostream(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headAudioStream(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an audio stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"headAudioStream(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15headAudioStream6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC04HeadeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headAudioStream(itemID:parameters:)":{"role":"symbol","title":"headAudioStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headAudioStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainer(itemid:container:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainer(itemid:container:parameters:).json new file mode 100644 index 000000000..fdc9b6b40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainer(itemid:container:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headAudioStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV","text":"HeadAudioStreamByContainerParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainer(itemid:container:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headAudioStreamByContainer(itemID:container:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an audio stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"headAudioStreamByContainer(itemID:container:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headAudioStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadAudioStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26headAudioStreamByContainer6itemID9container10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC04HeadefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headAudioStreamByContainer(itemID:container:parameters:)":{"role":"symbol","title":"headAudioStreamByContainer(itemID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headAudioStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadAudioStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headAudioStreamByContainer(itemID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainer(itemid:container:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters.json new file mode 100644 index 000000000..f641c90f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxframerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..0f2434889 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV05alloweF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..9f2b19784 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV010allowVideoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/asquery.json new file mode 100644 index 000000000..e96be27d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiobitrate.json new file mode 100644 index 000000000..f3a567a5e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiochannels.json new file mode 100644 index 000000000..beab9dc08 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiocodec.json new file mode 100644 index 000000000..a8981f3fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiosamplerate.json new file mode 100644 index 000000000..867088657 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiosamplerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiostreamindex.json new file mode 100644 index 000000000..4be086e48 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV05audioF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/audiostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/context-swift.property.json new file mode 100644 index 000000000..dd07609d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/context-swift.typealias.json new file mode 100644 index 000000000..f177f4fd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.HeadAudioStreamByContainerParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/cpucorelimit.json new file mode 100644 index 000000000..8d4485c6e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/deviceid.json new file mode 100644 index 000000000..486ad35fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/deviceprofileid.json new file mode 100644 index 000000000..637f22c28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/enableautostreamcopy.json new file mode 100644 index 000000000..4388b2865 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV010enableAutoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..bd46e0ea2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/enablempegtsm2tsmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/framerate.json new file mode 100644 index 000000000..fb61b1bee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/framerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/height.json new file mode 100644 index 000000000..b0b9dd5e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5.json new file mode 100644 index 000000000..23bad4496 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV8isStatic6params3tag15deviceProfileID011playSessionP007segmentH00S6Length11minSegments011mediaSourceP00nP010audioCodec010enableAutoF4Copy010allowVideoF4Copy05alloweF4Copy0J19BreakOnNonKeyFrames0Y10SampleRate03maxE8BitDepth0Y7BitRate0Y8Channels03maxE8Channels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height12videoBitRate08subtitleF5Index14subtitleMethod12maxRefFrames16maxVideoBitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic014transcodingMaxE8Channels12cpuCoreLimit04livefP020enableMpegtsM2TsMode05videoZ008subtitleZ016transcodeReasons0yF5Index05videoF5Index7context13streamOptionsAESbSg_SSSgA26_A26_A26_A26_s5Int32VSgA29_A26_A26_A26_A25_A25_A25_A25_A29_A29_A29_A29_A29_A26_A26_SfSgA30_A25_s5Int64VSgA29_A29_A29_A29_AA22SubtitleDeliveryMethodOSgA29_A29_A25_A25_A25_A29_A29_A26_A25_A26_A26_A26_A29_A29_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-2ct5"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..354782b36 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/iscopytimestamps.json new file mode 100644 index 000000000..6d4b02148 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/isdeinterlace.json new file mode 100644 index 000000000..3f4fd09e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/isdeinterlace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/isstatic.json new file mode 100644 index 000000000..248de092d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/level.json new file mode 100644 index 000000000..c4890bd74 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/level"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/livestreamid.json new file mode 100644 index 000000000..19e5fb69d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV04liveF2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..bd5257bd4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV03maxE8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxaudiochannels.json new file mode 100644 index 000000000..af9536d12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV03maxE8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxframerate.json new file mode 100644 index 000000000..4865a1ef1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxrefframes.json new file mode 100644 index 000000000..8a02e8f3c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxvideobitdepth.json new file mode 100644 index 000000000..ded27d253 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV16maxVideoBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/mediasourceid.json new file mode 100644 index 000000000..c0b07836f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/minsegments.json new file mode 100644 index 000000000..8ba7c54ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/minsegments"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/params.json new file mode 100644 index 000000000..17c6acec4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/playsessionid.json new file mode 100644 index 000000000..be750bcdb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/playsessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/profile.json new file mode 100644 index 000000000..964ed63ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/requireavc.json new file mode 100644 index 000000000..842714d35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/requirenonanamorphic.json new file mode 100644 index 000000000..f34c9a6d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/segmentcontainer.json new file mode 100644 index 000000000..cb2e47c9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV07segmentH0SSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/segmentlength.json new file mode 100644 index 000000000..6fe8e434d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/starttimeticks.json new file mode 100644 index 000000000..0b1033ed0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..652c2a44b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..a37900484 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.HeadAudioStreamByContainerParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV0F7Optionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlecodec.json new file mode 100644 index 000000000..649b883f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..53c56904c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14subtitleMethodAA016SubtitleDeliveryK0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..11795fb0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.HeadAudioStreamByContainerParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlestreamindex.json new file mode 100644 index 000000000..c8de25db4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV08subtitleF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/tag.json new file mode 100644 index 000000000..cfe014fc3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/transcodereasons.json new file mode 100644 index 000000000..717696dc9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/transcodereasons"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..30a3a300e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV014transcodingMaxE8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/videobitrate.json new file mode 100644 index 000000000..f26837078 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/videobitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/videocodec.json new file mode 100644 index 000000000..fdb8b046c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/videocodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/videostreamindex.json new file mode 100644 index 000000000..2e50eb612 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV05videoF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/videostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/width.json new file mode 100644 index 000000000..8bb63427b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreambycontainerparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadAudioStreamByContainerParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadAudioStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamByContainerParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamByContainerParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreambycontainerparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters.json new file mode 100644 index 000000000..c7340b935 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"role":"symbol","title":"Paths.HeadAudioStreamParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/videobitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..2f1b9b24f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV05alloweF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/allowaudiostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..80dc19abd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV010allowVideoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/asquery.json new file mode 100644 index 000000000..11995f435 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiobitrate.json new file mode 100644 index 000000000..f522827b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiochannels.json new file mode 100644 index 000000000..528c26b48 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiocodec.json new file mode 100644 index 000000000..91f872a0e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiosamplerate.json new file mode 100644 index 000000000..71c6ad948 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiostreamindex.json new file mode 100644 index 000000000..a7b1da4f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV05audioF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/container.json new file mode 100644 index 000000000..f5da98de4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/container"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/context-swift.property.json new file mode 100644 index 000000000..16cdf58fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/context-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/context-swift.typealias.json new file mode 100644 index 000000000..81acee2b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.HeadAudioStreamParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/cpucorelimit.json new file mode 100644 index 000000000..050a8eca3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/deviceid.json new file mode 100644 index 000000000..85ae1d54a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/deviceprofileid.json new file mode 100644 index 000000000..5a70435cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/deviceprofileid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/enableautostreamcopy.json new file mode 100644 index 000000000..ec972bde6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV010enableAutoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..4855f199e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/framerate.json new file mode 100644 index 000000000..220ff6f1e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/height.json new file mode 100644 index 000000000..27c3d3bfa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr.json new file mode 100644 index 000000000..480ffe409 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV9container8isStatic6params3tag15deviceProfileID011playSessionO016segmentContainer0R6Length11minSegments011mediaSourceO00mO010audioCodec010enableAutoF4Copy010allowVideoF4Copy05alloweF4Copy0I19BreakOnNonKeyFrames0Y10SampleRate03maxE8BitDepth0Y7BitRate0Y8Channels03maxE8Channels7profile5level9framerate12maxFramerate0I14CopyTimestamps14startTimeTicks5width6height12videoBitRate08subtitleF5Index14subtitleMethod12maxRefFrames16maxVideoBitDepth10requireAvc0I11DeInterlace20requireNonAnamorphic014transcodingMaxE8Channels12cpuCoreLimit04livefO020enableMpegtsM2TsMode05videoZ008subtitleZ016transcodeReasons0yF5Index05videoF5Index7context13streamOptionsAESSSg_SbSgA26_A26_A26_A26_A26_s5Int32VSgA30_A26_A26_A26_A27_A27_A27_A27_A30_A30_A30_A30_A30_A26_A26_SfSgA31_A27_s5Int64VSgA30_A30_A30_A30_AA22SubtitleDeliveryMethodOSgA30_A30_A27_A27_A27_A30_A30_A26_A27_A26_A26_A26_A30_A30_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-89mr"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..acd92e235 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/iscopytimestamps.json new file mode 100644 index 000000000..3702977e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/isdeinterlace.json new file mode 100644 index 000000000..b5aec790e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/isstatic.json new file mode 100644 index 000000000..0842151f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/level.json new file mode 100644 index 000000000..35e92d499 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/level"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/livestreamid.json new file mode 100644 index 000000000..105c9c58d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV04liveF2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..da328f2fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV03maxE8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxaudiochannels.json new file mode 100644 index 000000000..758bba21f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV03maxE8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxframerate.json new file mode 100644 index 000000000..5d5c1aa35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxrefframes.json new file mode 100644 index 000000000..86376d69c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxvideobitdepth.json new file mode 100644 index 000000000..e28571729 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV16maxVideoBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/maxvideobitdepth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/mediasourceid.json new file mode 100644 index 000000000..f496704c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/minsegments.json new file mode 100644 index 000000000..d272a63a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/params.json new file mode 100644 index 000000000..7d1790a76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/playsessionid.json new file mode 100644 index 000000000..6dd6caf95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/profile.json new file mode 100644 index 000000000..6c2ac3084 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/requireavc.json new file mode 100644 index 000000000..9101fa282 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/requirenonanamorphic.json new file mode 100644 index 000000000..a5c69a50c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/segmentcontainer.json new file mode 100644 index 000000000..f46821fa4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/segmentlength.json new file mode 100644 index 000000000..a6f31dc4a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/starttimeticks.json new file mode 100644 index 000000000..f6bc92e62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..8e209be6c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..c5a0ca12d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.HeadAudioStreamParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV0F7Optionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlecodec.json new file mode 100644 index 000000000..4530cdb29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..09a047bd6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14subtitleMethodAA016SubtitleDeliveryI0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlemethod-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..17ce19d40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.HeadAudioStreamParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadAudioStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlestreamindex.json new file mode 100644 index 000000000..1eddc8734 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV08subtitleF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/tag.json new file mode 100644 index 000000000..19ee3a6fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/tag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/transcodereasons.json new file mode 100644 index 000000000..ef3da36cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..4d6d36723 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV014transcodingMaxE8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/videobitrate.json new file mode 100644 index 000000000..30dbbbe10 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/videobitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/videocodec.json new file mode 100644 index 000000000..33b8db8e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/videostreamindex.json new file mode 100644 index 000000000..ff7ddea44 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV05videoF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/videostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/width.json new file mode 100644 index 000000000..59697928e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headaudiostreamparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadAudioStreamParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters":{"role":"symbol","title":"Paths.HeadAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadAudioStreamParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadAudioStreamParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headaudiostreamparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimage(name:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimage(name:imagetype:parameters:).json new file mode 100644 index 000000000..44d9f4476 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimage(name:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV","text":"HeadGenreImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimage(name:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headGenreImage(name:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get genre image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"headGenreImage(name:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14headGenreImage4name9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC04HeadeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headGenreImage(name:imageType:parameters:)":{"role":"symbol","title":"headGenreImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headGenreImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimage(name:imagetype:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindex(name:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindex(name:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..a59008547 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindex(name:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV","text":"HeadGenreImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindex(name:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headGenreImageByIndex(name:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get genre image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"headGenreImageByIndex(name:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21headGenreImageByIndex4name9imageType0jH010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC04HeadefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headGenreImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headGenreImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headGenreImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters.json new file mode 100644 index 000000000..805aa1b1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/fillwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/asquery.json new file mode 100644 index 000000000..d64e04883 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..44e9fda5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/blur.json new file mode 100644 index 000000000..7c8cedc9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..af0187e38 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/fillheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..124174cc7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..2abaff471 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..a2aee2b60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/format-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..70bdc92f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadGenreImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/height.json new file mode 100644 index 000000000..4a342d3c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..53bbae1fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV3tag6format8maxWidth0L6Height13percentPlayed13unplayedCount5width6height7quality04fillM00vN016isCropWhitespace0w3AddP9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0F6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..c4bed89fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..867e0c26d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/iscropwhitespace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..edbfd4b62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..5fa7ede85 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/maxwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..3b101834a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/quality.json new file mode 100644 index 000000000..4945cde57 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/tag.json new file mode 100644 index 000000000..6131abd33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..9663648b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/width.json new file mode 100644 index 000000000..9b5e72714 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO31HeadGenreImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters.json new file mode 100644 index 000000000..628450e24 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"role":"symbol","title":"Paths.HeadGenreImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/foregroundlayer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/asquery.json new file mode 100644 index 000000000..3f4d73fbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/backgroundcolor.json new file mode 100644 index 000000000..9c0d2b17d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/blur.json new file mode 100644 index 000000000..b0b66d70a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/fillheight.json new file mode 100644 index 000000000..6e0653c6a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/fillwidth.json new file mode 100644 index 000000000..8c64cf250 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/foregroundlayer.json new file mode 100644 index 000000000..22ddb8683 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/format-swift.property.json new file mode 100644 index 000000000..e8917fc3f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..057a5bd54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadGenreImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/height.json new file mode 100644 index 000000000..6c3b7fdd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/imageindex.json new file mode 100644 index 000000000..c8a7ecf4a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..c0c324195 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV3tag6format8maxWidth0J6Height13percentPlayed13unplayedCount5width6height7quality04fillK00tL016isCropWhitespace0u3AddN9Indicator4blur15backgroundColor15foregroundLayer10imageIndexAESSSg_AA0F6FormatOSgs5Int32VSgA1_SdSgA1_A1_A1_A1_A1_A1_SbSgA3_A1_A2WA1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..8678992bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..d936077ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/maxheight.json new file mode 100644 index 000000000..9fab5fdff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/maxwidth.json new file mode 100644 index 000000000..f4c1a40bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/percentplayed.json new file mode 100644 index 000000000..7d5662b37 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/quality.json new file mode 100644 index 000000000..4cdb8d981 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/tag.json new file mode 100644 index 000000000..6dad8486d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/unplayedcount.json new file mode 100644 index 000000000..4f98e1be8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/unplayedcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/width.json new file mode 100644 index 000000000..5b6cd34fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headgenreimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadGenreImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadGenreImageParameters":{"role":"symbol","title":"Paths.HeadGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage(itemid:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage(itemid:imagetype:parameters:).json new file mode 100644 index 000000000..ce074521c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage(itemid:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV","text":"HeadItemImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage(itemid:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImage(itemID:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the item’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"headItemImage(itemID:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadItemImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13headItemImage6itemID9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC04HeadeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headItemImage(itemID:imageType:parameters:)":{"role":"symbol","title":"headItemImage(itemID:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadItemImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImage(itemID:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage(itemid:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:).json new file mode 100644 index 000000000..0e177bb51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImage2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV","text":"HeadItemImage2Parameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the item’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"headItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImage2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadItemImage2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14headItemImage26itemID9imageType8maxWidth0K6Height3tag6format13percentPlayed13unplayedCount0I5Index10parameters3Get7RequestVy10Foundation4DataVGSS_SSS2iS3SS2iAC04HeadeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)":{"role":"symbol","title":"headItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImage2"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadItemImage2Parameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImage2(itemID:imageType:maxWidth:maxHeight:tag:format:percentPlayed:unplayedCount:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2(itemid:imagetype:maxwidth:maxheight:tag:format:percentplayed:unplayedcount:imageindex:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters.json new file mode 100644 index 000000000..a7978d99e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"role":"symbol","title":"Paths.HeadItemImage2Parameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/width"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/asquery.json new file mode 100644 index 000000000..e621f4830 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/backgroundcolor.json new file mode 100644 index 000000000..51c0456b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/blur.json new file mode 100644 index 000000000..c2d37086b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/fillheight.json new file mode 100644 index 000000000..0b9c13325 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/fillwidth.json new file mode 100644 index 000000000..ea13fa36b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/foregroundlayer.json new file mode 100644 index 000000000..07f4e52d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/foregroundlayer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/height.json new file mode 100644 index 000000000..ccb289331 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..14f836a7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV5width6height7quality9fillWidth0K6Height16isCropWhitespace0N18AddPlayedIndicator4blur15backgroundColor15foregroundLayerAEs5Int32VSg_A4RSbSgAsRSSSgATtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/init(width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/init(width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/isaddplayedindicator.json new file mode 100644 index 000000000..9d4ba11ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/iscropwhitespace.json new file mode 100644 index 000000000..62c6be659 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/quality.json new file mode 100644 index 000000000..2e816b7ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/width.json new file mode 100644 index 000000000..2c3dd5644 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimage2parameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24HeadItemImage2ParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImage2Parameters":{"role":"symbol","title":"Paths.HeadItemImage2Parameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImage2Parameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImage2Parameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImage2Parameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimage2parameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindex(itemid:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindex(itemid:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..b651a465c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindex(itemid:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV","text":"HeadItemImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindex(itemid:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImageByIndex(itemID:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the item’s image."}],"kind":"symbol","metadata":{"role":"symbol","title":"headItemImageByIndex(itemID:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadItemImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20headItemImageByIndex6itemID9imageType0kH010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC04HeadefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headItemImageByIndex(itemID:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headItemImageByIndex(itemID:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadItemImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets the item’s image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headItemImageByIndex(itemID:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindex(itemid:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters.json new file mode 100644 index 000000000..ba1bc4736 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/asquery.json new file mode 100644 index 000000000..ffefd4f28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..40c931a10 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/blur.json new file mode 100644 index 000000000..726fb4fad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..d0ea64ac1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..6961ed37f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..a5db76e90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/foregroundlayer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..eb511c321 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..ed9821803 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadItemImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/height.json new file mode 100644 index 000000000..b8492b8ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..2c55302f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV8maxWidth0J6Height5width6height7quality04fillK00pL03tag16isCropWhitespace6format0R18AddPlayedIndicator07percentW013unplayedCount4blur15backgroundColor15foregroundLayerAEs5Int32VSg_A6XSSSgSbSgAA0F6FormatOSgAZSdSgA2x2Ytcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..9428a0f0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/isaddplayedindicator"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..a0f07e679 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/iscropwhitespace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..8fbccd617 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..f79ca7bad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/maxwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..bb60cdd06 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/percentplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/quality.json new file mode 100644 index 000000000..98ddcde11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/tag.json new file mode 100644 index 000000000..449cc23d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..cf2c62641 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/width.json new file mode 100644 index 000000000..c0c1c69b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadItemImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters":{"role":"symbol","title":"Paths.HeadItemImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters.json new file mode 100644 index 000000000..17660fc61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"role":"symbol","title":"Paths.HeadItemImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadItemImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/asquery.json new file mode 100644 index 000000000..5f26d2010 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/backgroundcolor.json new file mode 100644 index 000000000..a2b745d63 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/blur.json new file mode 100644 index 000000000..8d3b4d92e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/fillheight.json new file mode 100644 index 000000000..0c5d4a7ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/fillheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/fillwidth.json new file mode 100644 index 000000000..379f0cd25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/foregroundlayer.json new file mode 100644 index 000000000..42ba2b4b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/format-swift.property.json new file mode 100644 index 000000000..06e06b713 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadItemImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..f3dee6bef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadItemImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadItemImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/height.json new file mode 100644 index 000000000..895d01e23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/imageindex.json new file mode 100644 index 000000000..c27715ea3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..88e73f375 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV8maxWidth0H6Height5width6height7quality04fillI00nJ03tag16isCropWhitespace6format0P18AddPlayedIndicator07percentU013unplayedCount4blur15backgroundColor15foregroundLayer10imageIndexAEs5Int32VSg_A6YSSSgSbSgAA0F6FormatOSgA_SdSgA2y2zYtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadItemImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/init(maxWidth:maxHeight:width:height:quality:fillWidth:fillHeight:tag:isCropWhitespace:format:isAddPlayedIndicator:percentPlayed:unplayedCount:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/init(maxwidth:maxheight:width:height:quality:fillwidth:fillheight:tag:iscropwhitespace:format:isaddplayedindicator:percentplayed:unplayedcount:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..fdd6fa01e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..cd4540545 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/maxheight.json new file mode 100644 index 000000000..237d730de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/maxwidth.json new file mode 100644 index 000000000..2ec20b43e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/percentplayed.json new file mode 100644 index 000000000..fe1c8f310 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/percentplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/quality.json new file mode 100644 index 000000000..29dfe6231 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/tag.json new file mode 100644 index 000000000..36aacd0a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/unplayedcount.json new file mode 100644 index 000000000..99b67038b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/width.json new file mode 100644 index 000000000..91a13ab52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headitemimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadItemImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadItemImageParameters":{"role":"symbol","title":"Paths.HeadItemImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadItemImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadItemImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadItemImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headitemimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylist(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylist(itemid:parameters:).json new file mode 100644 index 000000000..b2fb42d8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylist(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMasterHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV","text":"HeadMasterHlsAudioPlaylistParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylist(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMasterHlsAudioPlaylist(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an audio hls playlist stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"headMasterHlsAudioPlaylist(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMasterHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMasterHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26headMasterHlsAudioPlaylist6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC04HeadefgH10ParametersVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headMasterHlsAudioPlaylist(itemID:parameters:)":{"role":"symbol","title":"headMasterHlsAudioPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMasterHlsAudioPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMasterHlsAudioPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio hls playlist stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMasterHlsAudioPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylist(itemid:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters.json new file mode 100644 index 000000000..ad0728dd7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableAdaptiveBitrateStreaming","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/enableAdaptiveBitrateStreaming":{"role":"symbol","title":"enableAdaptiveBitrateStreaming","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableAdaptiveBitrateStreaming","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/enableadaptivebitratestreaming"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/videostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..e9134fe34 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV05allowG10StreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..646cd6635 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV20allowVideoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/asquery.json new file mode 100644 index 000000000..ab003b916 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiobitrate.json new file mode 100644 index 000000000..7472292a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiochannels.json new file mode 100644 index 000000000..99725f2b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiocodec.json new file mode 100644 index 000000000..70104bb80 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiosamplerate.json new file mode 100644 index 000000000..f20bae1b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiosamplerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiostreamindex.json new file mode 100644 index 000000000..efb34bcf0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/context-swift.property.json new file mode 100644 index 000000000..7d30bc84a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/context-swift.typealias.json new file mode 100644 index 000000000..f1a9e7a8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.HeadMasterHlsAudioPlaylistParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/cpucorelimit.json new file mode 100644 index 000000000..fd09432a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/deviceid.json new file mode 100644 index 000000000..6bc792f1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/deviceprofileid.json new file mode 100644 index 000000000..963a668ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/enableadaptivebitratestreaming.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/enableadaptivebitratestreaming.json new file mode 100644 index 000000000..15f5e4e62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/enableadaptivebitratestreaming.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/enableadaptivebitratestreaming"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableAdaptiveBitrateStreaming","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAdaptiveBitrateStreaming","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV30enableAdaptiveBitrateStreamingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/enableAdaptiveBitrateStreaming":{"role":"symbol","title":"enableAdaptiveBitrateStreaming","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableAdaptiveBitrateStreaming","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/enableadaptivebitratestreaming"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/enableautostreamcopy.json new file mode 100644 index 000000000..11d962bc4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV20enableAutoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..0205c7b62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/framerate.json new file mode 100644 index 000000000..944120c66 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/height.json new file mode 100644 index 000000000..0a4f23b0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp.json new file mode 100644 index 000000000..c4f5f05f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV8isStatic6params3tag15deviceProfileID011playSessionP016segmentContainer0S6Length11minSegments011mediaSourceP00nP010audioCodec20enableAutoStreamCopy20allowVideoStreamCopy05allowG10StreamCopy0J19BreakOnNonKeyFrames0Z10SampleRate03maxG8BitDepth19maxStreamingBitrate0Z7BitRate0Z8Channels03maxG8Channels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height12videoBitRate19subtitleStreamIndex14subtitleMethod12maxRefFrames16maxVideoBitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic014transcodingMaxG8Channels12cpuCoreLimit010liveStreamP020enableMpegtsM2TsMode10videoCodec13subtitleCodec16transcodeReasons0Z11StreamIndex16videoStreamIndex7context13streamOptions30enableAdaptiveBitrateStreamingAESbSg_SSSgA28_A28_A28_A28_s5Int32VSgA31_SSA28_A28_A27_A27_A27_A27_A31_A31_A31_A31_A31_A31_A28_A28_SfSgA32_A27_s5Int64VSgA31_A31_A31_A31_AA22SubtitleDeliveryMethodOSgA31_A31_A27_A27_A27_A31_A31_A28_A27_A28_A28_A28_A31_A31_AA15EncodingContextOSgSDyS2SGSgA27_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:maxStreamingBitrate:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-5t2jp"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..f7a7217ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/isbreakonnonkeyframes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/iscopytimestamps.json new file mode 100644 index 000000000..f21604da6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/isdeinterlace.json new file mode 100644 index 000000000..e358c7eea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/isstatic.json new file mode 100644 index 000000000..1c1663bbf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/isstatic"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/level.json new file mode 100644 index 000000000..8684ea806 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/livestreamid.json new file mode 100644 index 000000000..813959690 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..b83e52a6d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV03maxG8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxaudiochannels.json new file mode 100644 index 000000000..2ac970e45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV03maxG8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxframerate.json new file mode 100644 index 000000000..098699964 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxrefframes.json new file mode 100644 index 000000000..0ec697463 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxstreamingbitrate.json new file mode 100644 index 000000000..74fafbbf8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxvideobitdepth.json new file mode 100644 index 000000000..af50081e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV16maxVideoBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/mediasourceid.json new file mode 100644 index 000000000..296aca948 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13mediaSourceIDSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/mediasourceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/minsegments.json new file mode 100644 index 000000000..cc18ce998 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/params.json new file mode 100644 index 000000000..c9bbd239a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/params"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/playsessionid.json new file mode 100644 index 000000000..af559c461 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/profile.json new file mode 100644 index 000000000..0df40d9a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/requireavc.json new file mode 100644 index 000000000..06b06740b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/requirenonanamorphic.json new file mode 100644 index 000000000..f16f7bb90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/segmentcontainer.json new file mode 100644 index 000000000..d7bf76f29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/segmentcontainer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/segmentlength.json new file mode 100644 index 000000000..b6611bf51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/starttimeticks.json new file mode 100644 index 000000000..7c7edd216 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/starttimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..82e311af0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/streamoptions-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..8099f2b06 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.HeadMasterHlsAudioPlaylistParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13StreamOptionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlecodec.json new file mode 100644 index 000000000..b279d3d33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..2cd54fe2a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14subtitleMethodAA016SubtitleDeliveryK0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..308ffd934 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.HeadMasterHlsAudioPlaylistParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlestreamindex.json new file mode 100644 index 000000000..a8f8b7f2c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/tag.json new file mode 100644 index 000000000..49cbd63ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/transcodereasons.json new file mode 100644 index 000000000..31dc499ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/transcodereasons"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..6b0510d36 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV014transcodingMaxG8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/transcodingmaxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/videobitrate.json new file mode 100644 index 000000000..4ef37d8f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/videocodec.json new file mode 100644 index 000000000..06121aede --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/videostreamindex.json new file mode 100644 index 000000000..044f18228 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV16videoStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/videostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/width.json new file mode 100644 index 000000000..231f0235f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsaudioplaylistparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsAudioPlaylistParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsAudioPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsAudioPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsAudioPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsAudioPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsaudioplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylist(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylist(itemid:parameters:).json new file mode 100644 index 000000000..3c302cf11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylist(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMasterHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV","text":"HeadMasterHlsVideoPlaylistParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylist(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMasterHlsVideoPlaylist(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a video hls playlist stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"headMasterHlsVideoPlaylist(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMasterHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMasterHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26headMasterHlsVideoPlaylist6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC04HeadefgH10ParametersVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headMasterHlsVideoPlaylist(itemID:parameters:)":{"role":"symbol","title":"headMasterHlsVideoPlaylist(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMasterHlsVideoPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMasterHlsVideoPlaylistParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video hls playlist stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMasterHlsVideoPlaylist(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylist(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters.json new file mode 100644 index 000000000..6bd825ed2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableAdaptiveBitrateStreaming","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/enableAdaptiveBitrateStreaming":{"role":"symbol","title":"enableAdaptiveBitrateStreaming","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableAdaptiveBitrateStreaming","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/enableadaptivebitratestreaming"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/allowvideostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..c02940fe2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV20allowAudioStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..bc15f1747 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV05allowG10StreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/asquery.json new file mode 100644 index 000000000..9879e6bfd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiobitrate.json new file mode 100644 index 000000000..f473d57f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiochannels.json new file mode 100644 index 000000000..65fe29710 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiocodec.json new file mode 100644 index 000000000..b6bc80ff2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiosamplerate.json new file mode 100644 index 000000000..e894c83e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiostreamindex.json new file mode 100644 index 000000000..7459217a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/context-swift.property.json new file mode 100644 index 000000000..9534a45b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/context-swift.typealias.json new file mode 100644 index 000000000..c5215b62d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.HeadMasterHlsVideoPlaylistParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/cpucorelimit.json new file mode 100644 index 000000000..d3dedfb1b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/deviceid.json new file mode 100644 index 000000000..2218316e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/deviceprofileid.json new file mode 100644 index 000000000..a125e48a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/enableadaptivebitratestreaming.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/enableadaptivebitratestreaming.json new file mode 100644 index 000000000..f9fa76b72 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/enableadaptivebitratestreaming.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/enableadaptivebitratestreaming"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableAdaptiveBitrateStreaming","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAdaptiveBitrateStreaming","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV30enableAdaptiveBitrateStreamingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/enableAdaptiveBitrateStreaming":{"role":"symbol","title":"enableAdaptiveBitrateStreaming","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableAdaptiveBitrateStreaming","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/enableadaptivebitratestreaming"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/enableautostreamcopy.json new file mode 100644 index 000000000..e133edf2f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV20enableAutoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/enableautostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..aca876661 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/framerate.json new file mode 100644 index 000000000..e20527060 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/height.json new file mode 100644 index 000000000..c3256ed29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r.json new file mode 100644 index 000000000..60a195296 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV8isStatic6params3tag15deviceProfileID011playSessionP016segmentContainer0S6Length11minSegments011mediaSourceP00nP010audioCodec20enableAutoStreamCopy05allowG10StreamCopy20allowAudioStreamCopy0J19BreakOnNonKeyFrames0Z10SampleRate16maxAudioBitDepth0Z7BitRate0Z8Channels16maxAudioChannels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height8maxWidth9maxHeight12videoBitRate19subtitleStreamIndex14subtitleMethod12maxRefFrames03maxG8BitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic27transcodingMaxAudioChannels12cpuCoreLimit010liveStreamP020enableMpegtsM2TsMode10videoCodec13subtitleCodec16transcodeReasons0Z11StreamIndex16videoStreamIndex7context13streamOptions30enableAdaptiveBitrateStreamingAESbSg_SSSgA29_A29_A29_A29_s5Int32VSgA32_SSA29_A29_A28_A28_A28_A28_A32_A32_A32_A32_A32_A29_A29_SfSgA33_A28_s5Int64VSgA32_A32_A32_A32_A32_A32_AA22SubtitleDeliveryMethodOSgA32_A32_A28_A28_A28_A32_A32_A29_A28_A29_A29_A29_A32_A32_AA15EncodingContextOSgSDyS2SGSgA28_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAdaptiveBitrateStreaming"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:enableAdaptiveBitrateStreaming:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-9kq5r"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..038c755f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/iscopytimestamps.json new file mode 100644 index 000000000..33d9be9aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/isdeinterlace.json new file mode 100644 index 000000000..a50fc4c5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/isstatic.json new file mode 100644 index 000000000..34e0f2470 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/level.json new file mode 100644 index 000000000..c9dcd1c45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/livestreamid.json new file mode 100644 index 000000000..c5cef3f4b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/livestreamid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..9ce398ad8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV16maxAudioBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxaudiochannels.json new file mode 100644 index 000000000..b5fe18413 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxframerate.json new file mode 100644 index 000000000..4b071244b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxframerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxheight.json new file mode 100644 index 000000000..39b362f6d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxrefframes.json new file mode 100644 index 000000000..633ce21e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxvideobitdepth.json new file mode 100644 index 000000000..36753dada --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV03maxG8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxwidth.json new file mode 100644 index 000000000..4f808b857 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/mediasourceid.json new file mode 100644 index 000000000..f24ddd133 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13mediaSourceIDSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/minsegments.json new file mode 100644 index 000000000..fa7f9ea97 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/params.json new file mode 100644 index 000000000..595297b3d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/playsessionid.json new file mode 100644 index 000000000..ca7c56605 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/playsessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/profile.json new file mode 100644 index 000000000..4b4a8a363 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/requireavc.json new file mode 100644 index 000000000..d5324954d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/requireavc"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/requirenonanamorphic.json new file mode 100644 index 000000000..dd8e2ddf5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/segmentcontainer.json new file mode 100644 index 000000000..b590045ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/segmentcontainer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/segmentlength.json new file mode 100644 index 000000000..03fec565f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/starttimeticks.json new file mode 100644 index 000000000..c119a9d1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..16bdf8833 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13StreamOptionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13StreamOptionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..77fe93658 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.HeadMasterHlsVideoPlaylistParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13StreamOptionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlecodec.json new file mode 100644 index 000000000..93c486411 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlecodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..6f38b66d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14subtitleMethodAA016SubtitleDeliveryK0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..28a1759c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.HeadMasterHlsVideoPlaylistParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlestreamindex.json new file mode 100644 index 000000000..c863226e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/tag.json new file mode 100644 index 000000000..d8a6e84d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/transcodereasons.json new file mode 100644 index 000000000..a2dd5d062 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..b619fb662 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV27transcodingMaxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/transcodingmaxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/videobitrate.json new file mode 100644 index 000000000..52a77758e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/videobitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/videocodec.json new file mode 100644 index 000000000..47e7b3cb5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/videocodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/videostreamindex.json new file mode 100644 index 000000000..0a026e4e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV16videoStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/videostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/width.json new file mode 100644 index 000000000..0c6562baa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmasterhlsvideoplaylistparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMasterHlsVideoPlaylistParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMasterHlsVideoPlaylistParameters":{"role":"symbol","title":"Paths.HeadMasterHlsVideoPlaylistParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMasterHlsVideoPlaylistParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMasterHlsVideoPlaylistParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmasterhlsvideoplaylistparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimage(name:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimage(name:imagetype:parameters:).json new file mode 100644 index 000000000..9dcfa1f0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimage(name:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMusicGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV","text":"HeadMusicGenreImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimage(name:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMusicGenreImage(name:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get music genre image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"headMusicGenreImage(name:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMusicGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMusicGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19headMusicGenreImage4name9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC04HeadefG10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headMusicGenreImage(name:imageType:parameters:)":{"role":"symbol","title":"headMusicGenreImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMusicGenreImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMusicGenreImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get music genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMusicGenreImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimage(name:imagetype:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindex(name:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindex(name:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..7c82e26c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindex(name:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMusicGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV","text":"HeadMusicGenreImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindex(name:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get music genre image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"headMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMusicGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMusicGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26headMusicGenreImageByIndex4name9imageType0kI010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC04HeadefghI10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headMusicGenreImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadMusicGenreImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get music genre image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headMusicGenreImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters.json new file mode 100644 index 000000000..bc92f04b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/asquery.json new file mode 100644 index 000000000..71d269383 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..c128a675d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/blur.json new file mode 100644 index 000000000..4f7953006 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/blur"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..7f9f2478a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..bb46de0c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..c7aa3629e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..945b8442a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6formatAA0G6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..f002408df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadMusicGenreImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/height.json new file mode 100644 index 000000000..329e885ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..08aa56e3c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV3tag6format8maxWidth0M6Height13percentPlayed13unplayedCount5width6height7quality04fillN00wO016isCropWhitespace0x3AddQ9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0G6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..c31dfa3d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/isaddplayedindicator"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..a2d87d770 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..03a1cd71f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..77d1ff8c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..1d9d086a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/quality.json new file mode 100644 index 000000000..bd35aae8d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/tag.json new file mode 100644 index 000000000..6e8d47066 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..147a85dae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/width.json new file mode 100644 index 000000000..83576142a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadMusicGenreImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageByIndexParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters.json new file mode 100644 index 000000000..3c7c830fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/fillheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/asquery.json new file mode 100644 index 000000000..03df0fbd1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/backgroundcolor.json new file mode 100644 index 000000000..71eef9975 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/blur.json new file mode 100644 index 000000000..a34025b45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/fillheight.json new file mode 100644 index 000000000..6358bff1c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/fillheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/fillwidth.json new file mode 100644 index 000000000..a2eefda80 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/foregroundlayer.json new file mode 100644 index 000000000..e5eae949f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/format-swift.property.json new file mode 100644 index 000000000..7f59478a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6formatAA0G6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/format-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..713851ad4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadMusicGenreImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/height.json new file mode 100644 index 000000000..363be135f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/imageindex.json new file mode 100644 index 000000000..1dafbf34f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..83fd04baa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV3tag6format8maxWidth0K6Height13percentPlayed13unplayedCount5width6height7quality04fillL00uM016isCropWhitespace0v3AddO9Indicator4blur15backgroundColor15foregroundLayer10imageIndexAESSSg_AA0G6FormatOSgs5Int32VSgA1_SdSgA1_A1_A1_A1_A1_A1_SbSgA3_A1_A2WA1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..001e2cf6f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..261d8cff7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/maxheight.json new file mode 100644 index 000000000..16036c843 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/maxwidth.json new file mode 100644 index 000000000..3ddd41837 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/percentplayed.json new file mode 100644 index 000000000..a8f9c7987 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/quality.json new file mode 100644 index 000000000..425b041a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/tag.json new file mode 100644 index 000000000..c71128174 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/unplayedcount.json new file mode 100644 index 000000000..d77d04459 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/unplayedcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/width.json new file mode 100644 index 000000000..18903fed2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headmusicgenreimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29HeadMusicGenreImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters":{"role":"symbol","title":"Paths.HeadMusicGenreImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadMusicGenreImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadMusicGenreImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadMusicGenreImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headmusicgenreimageparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimage(name:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimage(name:imagetype:parameters:).json new file mode 100644 index 000000000..5334a13e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimage(name:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headPersonImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV","text":"HeadPersonImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimage(name:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headPersonImage(name:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get person image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"headPersonImage(name:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headPersonImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadPersonImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15headPersonImage4name9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC04HeadeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headPersonImage(name:imageType:parameters:)":{"role":"symbol","title":"headPersonImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headPersonImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadPersonImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get person image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headPersonImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimage(name:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindex(name:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindex(name:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..f09f9c8b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindex(name:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headPersonImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV","text":"HeadPersonImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindex(name:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headPersonImageByIndex(name:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get person image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"headPersonImageByIndex(name:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headPersonImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadPersonImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22headPersonImageByIndex4name9imageType0jH010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC04HeadefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headPersonImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headPersonImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headPersonImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadPersonImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get person image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headPersonImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters.json new file mode 100644 index 000000000..9759e09fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/fillheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/asquery.json new file mode 100644 index 000000000..79f3e56dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..72165e738 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/blur.json new file mode 100644 index 000000000..e9ccffec5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..ed2172965 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..05a95c813 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..4ca347a6d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..7a3aca53f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..3b028a67b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadPersonImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/height.json new file mode 100644 index 000000000..d2219f84a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..cd4856570 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV3tag6format8maxWidth0L6Height13percentPlayed13unplayedCount5width6height7quality04fillM00vN016isCropWhitespace0w3AddP9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0F6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..4b98c49c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..8fdcdd318 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/iscropwhitespace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..7520df445 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..d4a9160b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..bf48973ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/quality.json new file mode 100644 index 000000000..f22a9d83e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/tag.json new file mode 100644 index 000000000..b259a4d17 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..2ea0f5060 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/width.json new file mode 100644 index 000000000..6fd4e9b8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadPersonImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageByIndexParameters":{"role":"symbol","title":"Paths.HeadPersonImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters.json new file mode 100644 index 000000000..560af958e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"role":"symbol","title":"Paths.HeadPersonImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadPersonImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/format-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/asquery.json new file mode 100644 index 000000000..f8b90c43d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/backgroundcolor.json new file mode 100644 index 000000000..60e1c96a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/blur.json new file mode 100644 index 000000000..1582fffca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/fillheight.json new file mode 100644 index 000000000..5be896b3d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/fillwidth.json new file mode 100644 index 000000000..cfdab5057 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/fillwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/foregroundlayer.json new file mode 100644 index 000000000..e7adace7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/format-swift.property.json new file mode 100644 index 000000000..16de9ab6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadPersonImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/format-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..9b9202a49 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadPersonImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadPersonImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/height.json new file mode 100644 index 000000000..cf864d97c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/imageindex.json new file mode 100644 index 000000000..bfbea6b47 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..cefa67eb9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV3tag6format8maxWidth0J6Height13percentPlayed13unplayedCount5width6height7quality04fillK00tL016isCropWhitespace0u3AddN9Indicator4blur15backgroundColor15foregroundLayer10imageIndexAESSSg_AA0F6FormatOSgs5Int32VSgA1_SdSgA1_A1_A1_A1_A1_A1_SbSgA3_A1_A2WA1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadPersonImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..996ab6112 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..147059d21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/iscropwhitespace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/maxheight.json new file mode 100644 index 000000000..530ec1d92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/maxwidth.json new file mode 100644 index 000000000..bb7f99de4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/percentplayed.json new file mode 100644 index 000000000..007236e77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/quality.json new file mode 100644 index 000000000..caa28b766 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/tag.json new file mode 100644 index 000000000..aa2f21d11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/unplayedcount.json new file mode 100644 index 000000000..3d7b4aed7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/width.json new file mode 100644 index 000000000..b52edf764 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headpersonimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadPersonImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters":{"role":"symbol","title":"Paths.HeadPersonImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadPersonImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadPersonImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadPersonImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadPersonImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headpersonimageparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimage(name:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimage(name:imagetype:parameters:).json new file mode 100644 index 000000000..82f8d4a4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimage(name:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headStudioImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV","text":"HeadStudioImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimage(name:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headStudioImage(name:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get studio image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"headStudioImage(name:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headStudioImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadStudioImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15headStudioImage4name9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC04HeadeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headStudioImage(name:imageType:parameters:)":{"role":"symbol","title":"headStudioImage(name:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headStudioImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadStudioImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get studio image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headStudioImage(name:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimage(name:imagetype:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindex(name:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindex(name:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..a21ded8ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindex(name:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headStudioImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV","text":"HeadStudioImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindex(name:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headStudioImageByIndex(name:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get studio image by name."}],"kind":"symbol","metadata":{"role":"symbol","title":"headStudioImageByIndex(name:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headStudioImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadStudioImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22headStudioImageByIndex4name9imageType0jH010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC04HeadefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headStudioImageByIndex(name:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headStudioImageByIndex(name:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headStudioImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadStudioImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get studio image by name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headStudioImageByIndex(name:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindex(name:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters.json new file mode 100644 index 000000000..4952f6596 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/fillheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/asquery.json new file mode 100644 index 000000000..46040fe8d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..43d305c9c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/blur.json new file mode 100644 index 000000000..36daab67c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..b5980345f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..36bc9ce76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..9e34e8c81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..8a2a34f12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..5e5bace05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadStudioImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/height.json new file mode 100644 index 000000000..ad37a3e18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..4cd0b5735 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV3tag6format8maxWidth0L6Height13percentPlayed13unplayedCount5width6height7quality04fillM00vN016isCropWhitespace0w3AddP9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0F6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..01c4641f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..c61a82d3b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..ec8bfdf76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..f43e58593 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..1111add12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/quality.json new file mode 100644 index 000000000..44e983441 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/quality"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/tag.json new file mode 100644 index 000000000..b97145e5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..72391a74f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/unplayedcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/width.json new file mode 100644 index 000000000..1219cfeaf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO32HeadStudioImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters":{"role":"symbol","title":"Paths.HeadStudioImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimagebyindexparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters.json new file mode 100644 index 000000000..a7c6b2f4b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"role":"symbol","title":"Paths.HeadStudioImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadStudioImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/asquery.json new file mode 100644 index 000000000..4dbab4fec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/backgroundcolor.json new file mode 100644 index 000000000..271157291 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/blur.json new file mode 100644 index 000000000..339a457b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/fillheight.json new file mode 100644 index 000000000..bb4c965a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/fillwidth.json new file mode 100644 index 000000000..d674e2f08 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/foregroundlayer.json new file mode 100644 index 000000000..29a753f35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/format-swift.property.json new file mode 100644 index 000000000..5a031522a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadStudioImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..fafe1e6b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadStudioImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadStudioImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/height.json new file mode 100644 index 000000000..97c2ae0b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/imageindex.json new file mode 100644 index 000000000..7aa3c72c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/imageindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..8ac419076 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV3tag6format8maxWidth0J6Height13percentPlayed13unplayedCount5width6height7quality04fillK00tL016isCropWhitespace0u3AddN9Indicator4blur15backgroundColor15foregroundLayer10imageIndexAESSSg_AA0F6FormatOSgs5Int32VSgA1_SdSgA1_A1_A1_A1_A1_A1_SbSgA3_A1_A2WA1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadStudioImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..04d0ef05d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/isaddplayedindicator"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..eae6ca6c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/maxheight.json new file mode 100644 index 000000000..aae935901 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/maxheight"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/maxwidth.json new file mode 100644 index 000000000..0efff095f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/maxwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/percentplayed.json new file mode 100644 index 000000000..f913a8d69 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/quality.json new file mode 100644 index 000000000..e93bbbded --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/tag.json new file mode 100644 index 000000000..3e7099eb8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/unplayedcount.json new file mode 100644 index 000000000..88e45b63c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/width.json new file mode 100644 index 000000000..dc90c2db9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headstudioimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadStudioImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters":{"role":"symbol","title":"Paths.HeadStudioImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadStudioImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadStudioImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadStudioImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadStudioImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headstudioimageparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostream(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostream(itemid:parameters:).json new file mode 100644 index 000000000..d975ed17d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostream(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUniversalAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV","text":"HeadUniversalAudioStreamParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostream(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUniversalAudioStream(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets an audio stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"headUniversalAudioStream(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUniversalAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadUniversalAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO24headUniversalAudioStream6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC04HeadefG10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headUniversalAudioStream(itemID:parameters:)":{"role":"symbol","title":"headUniversalAudioStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUniversalAudioStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadUniversalAudioStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets an audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUniversalAudioStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostream(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters.json new file mode 100644 index 000000000..89ebcc5db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/enableRedirection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/enableRemoteMedia","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingProtocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/enableRemoteMedia":{"role":"symbol","title":"enableRemoteMedia","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/enableRemoteMedia","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/enableremotemedia"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/enableRedirection":{"role":"symbol","title":"enableRedirection","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/enableRedirection","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/enableredirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/transcodingProtocol":{"role":"symbol","title":"transcodingProtocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingProtocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/transcodingprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/transcodingContainer":{"role":"symbol","title":"transcodingContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/transcodingcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)":{"role":"symbol","title":"init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/transcodingAudioChannels":{"role":"symbol","title":"transcodingAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/transcodingaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/maxAudioSampleRate":{"role":"symbol","title":"maxAudioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxaudiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/deviceid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/asquery.json new file mode 100644 index 000000000..4f3ddf325 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/audiobitrate.json new file mode 100644 index 000000000..809be002d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/audiocodec.json new file mode 100644 index 000000000..a9072f8f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/container.json new file mode 100644 index 000000000..b9796f638 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV9containerSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/deviceid.json new file mode 100644 index 000000000..b64195ffc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/enableredirection.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/enableredirection.json new file mode 100644 index 000000000..647b79e5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/enableredirection.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/enableredirection"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/enableRedirection","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableRedirection","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV17enableRedirectionSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/enableRedirection":{"role":"symbol","title":"enableRedirection","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/enableRedirection","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/enableredirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/enableremotemedia.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/enableremotemedia.json new file mode 100644 index 000000000..197b23dad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/enableremotemedia.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/enableremotemedia"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/enableRemoteMedia","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableRemoteMedia","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV17enableRemoteMediaSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/enableRemoteMedia":{"role":"symbol","title":"enableRemoteMedia","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/enableRemoteMedia","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/enableremotemedia"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0.json new file mode 100644 index 000000000..fdebfb5ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV9container13mediaSourceID06deviceL004userL010audioCodec03maxF8Channels011transcodingfR00Q16StreamingBitrate0O7BitRate14startTimeTicks0S9Container0S8Protocol0qf6SampleW00qfV5Depth17enableRemoteMedia21isBreakOnNonKeyFrames17enableRedirectionAESaySSGSg_SSSgAY10Foundation4UUIDVSgAYs5Int32VSgA4_A4_A4_s5Int64VSgA2YA4_A4_SbSgA8_A8_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)":{"role":"symbol","title":"init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteMedia"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRedirection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/init(container:mediaSourceID:deviceID:userID:audioCodec:maxAudioChannels:transcodingAudioChannels:maxStreamingBitrate:audioBitRate:startTimeTicks:transcodingContainer:transcodingProtocol:maxAudioSampleRate:maxAudioBitDepth:enableRemoteMedia:isBreakOnNonKeyFrames:enableRedirection:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/init(container:mediasourceid:deviceid:userid:audiocodec:maxaudiochannels:transcodingaudiochannels:maxstreamingbitrate:audiobitrate:starttimeticks:transcodingcontainer:transcodingprotocol:maxaudiosamplerate:maxaudiobitdepth:enableremotemedia-4gul0"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..e0d02c850 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..e3cc5bdd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV03maxF8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxaudiochannels.json new file mode 100644 index 000000000..bb788ebdb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV03maxF8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxaudiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxaudiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxaudiosamplerate.json new file mode 100644 index 000000000..4468d9b66 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxaudiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxaudiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV03maxF10SampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/maxAudioSampleRate":{"role":"symbol","title":"maxAudioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxAudioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxaudiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxstreamingbitrate.json new file mode 100644 index 000000000..fa54e77cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/mediasourceid.json new file mode 100644 index 000000000..c09b6bcf5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/starttimeticks.json new file mode 100644 index 000000000..24ebc166c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/starttimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/transcodingaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/transcodingaudiochannels.json new file mode 100644 index 000000000..e8c2534ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/transcodingaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/transcodingaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV011transcodingF8Channelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/transcodingAudioChannels":{"role":"symbol","title":"transcodingAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/transcodingaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/transcodingcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/transcodingcontainer.json new file mode 100644 index 000000000..710ad55b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/transcodingcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/transcodingcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodingContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV20transcodingContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/transcodingContainer":{"role":"symbol","title":"transcodingContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/transcodingcontainer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/transcodingprotocol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/transcodingprotocol.json new file mode 100644 index 000000000..659538d13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/transcodingprotocol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/transcodingprotocol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingProtocol","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodingProtocol","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV19transcodingProtocolSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/transcodingProtocol":{"role":"symbol","title":"transcodingProtocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingProtocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/transcodingProtocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/transcodingprotocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/userid.json new file mode 100644 index 000000000..8a2b8b1f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuniversalaudiostreamparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO34HeadUniversalAudioStreamParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters":{"role":"symbol","title":"Paths.HeadUniversalAudioStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUniversalAudioStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUniversalAudioStreamParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUniversalAudioStreamParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuniversalaudiostreamparameters\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimage(userid:imagetype:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimage(userid:imagetype:parameters:).json new file mode 100644 index 000000000..668df29c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimage(userid:imagetype:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV","text":"HeadUserImageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimage(userid:imagetype:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUserImage(userID:imageType:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get user profile image."}],"kind":"symbol","metadata":{"role":"symbol","title":"headUserImage(userID:imageType:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadUserImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13headUserImage6userID9imageType10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC04HeadeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headUserImage(userID:imageType:parameters:)":{"role":"symbol","title":"headUserImage(userID:imageType:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadUserImageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get user profile image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUserImage(userID:imageType:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimage(userid:imagetype:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindex(userid:imagetype:imageindex:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindex(userid:imagetype:imageindex:parameters:).json new file mode 100644 index 000000000..bacac18b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindex(userid:imagetype:imageindex:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV","text":"HeadUserImageByIndexParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindex(userid:imagetype:imageindex:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUserImageByIndex(userID:imageType:imageIndex:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Get user profile image."}],"kind":"symbol","metadata":{"role":"symbol","title":"headUserImageByIndex(userID:imageType:imageIndex:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadUserImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20headUserImageByIndex6userID9imageType0kH010parameters3Get7RequestVy10Foundation4DataVGSS_SSSiAC04HeadefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headUserImageByIndex(userID:imageType:imageIndex:parameters:)":{"role":"symbol","title":"headUserImageByIndex(userID:imageType:imageIndex:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadUserImageByIndexParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Get user profile image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headUserImageByIndex(userID:imageType:imageIndex:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindex(userid:imagetype:imageindex:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters.json new file mode 100644 index 000000000..a9bb203a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/foregroundlayer"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/asquery.json new file mode 100644 index 000000000..972ab99d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/backgroundcolor.json new file mode 100644 index 000000000..b446edd8f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/blur.json new file mode 100644 index 000000000..07b350bdd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/fillheight.json new file mode 100644 index 000000000..7bf976760 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/fillwidth.json new file mode 100644 index 000000000..e2b7d3b75 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/foregroundlayer.json new file mode 100644 index 000000000..a487f02b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/format-swift.property.json new file mode 100644 index 000000000..7863341b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/format-swift.typealias.json new file mode 100644 index 000000000..d714e1368 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadUserImageByIndexParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/height.json new file mode 100644 index 000000000..616beee34 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json new file mode 100644 index 000000000..86ffc18c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV3tag6format8maxWidth0L6Height13percentPlayed13unplayedCount5width6height7quality04fillM00vN016isCropWhitespace0w3AddP9Indicator4blur15backgroundColor15foregroundLayerAESSSg_AA0F6FormatOSgs5Int32VSgA0_SdSgA0_A0_A0_A0_A0_A0_SbSgA2_A0_A2Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/isaddplayedindicator.json new file mode 100644 index 000000000..4c18883d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/isaddplayedindicator"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/iscropwhitespace.json new file mode 100644 index 000000000..5abdf7f79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/iscropwhitespace"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/maxheight.json new file mode 100644 index 000000000..558f401b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/maxwidth.json new file mode 100644 index 000000000..a17c77d4e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/percentplayed.json new file mode 100644 index 000000000..4d5cfd208 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/quality.json new file mode 100644 index 000000000..775d3525b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/tag.json new file mode 100644 index 000000000..cfccd3e59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/unplayedcount.json new file mode 100644 index 000000000..fad5a78f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/unplayedcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/width.json new file mode 100644 index 000000000..dcffd2fc9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimagebyindexparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO30HeadUserImageByIndexParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageByIndexParameters":{"role":"symbol","title":"Paths.HeadUserImageByIndexParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageByIndexParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageByIndexParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimagebyindexparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters.json new file mode 100644 index 000000000..e2d99a795 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"role":"symbol","title":"Paths.HeadUserImageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/backgroundColor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/blur","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/fillHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/fillWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/foregroundLayer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/format-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/imageIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/isAddPlayedIndicator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/isCropWhitespace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/percentPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/quality","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/unplayedCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/Format-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadUserImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/backgroundcolor"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/asquery.json new file mode 100644 index 000000000..372da6805 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/backgroundcolor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/backgroundcolor.json new file mode 100644 index 000000000..983c33f4e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/backgroundcolor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/backgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/backgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backgroundColor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV15backgroundColorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/backgroundColor":{"role":"symbol","title":"backgroundColor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/backgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/backgroundcolor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/blur.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/blur.json new file mode 100644 index 000000000..ddaddbd68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/blur.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/blur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/blur","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"blur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV4blurs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/blur":{"role":"symbol","title":"blur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/blur","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/blur"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/fillheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/fillheight.json new file mode 100644 index 000000000..3c781083c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/fillheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/fillheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/fillHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV10fillHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/fillHeight":{"role":"symbol","title":"fillHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/fillHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/fillheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/fillwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/fillwidth.json new file mode 100644 index 000000000..1d0461a34 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/fillwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/fillwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/fillWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"fillWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV9fillWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/fillWidth":{"role":"symbol","title":"fillWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/fillWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/fillwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/foregroundlayer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/foregroundlayer.json new file mode 100644 index 000000000..935bd3c0d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/foregroundlayer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/foregroundlayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/foregroundLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"foregroundLayer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV15foregroundLayerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/foregroundLayer":{"role":"symbol","title":"foregroundLayer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/foregroundLayer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/foregroundlayer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/format-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/format-swift.property.json new file mode 100644 index 000000000..9ded6df86 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/format-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6Formata","text":"Format"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/format-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/format-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6Formata"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6formatAA0F6FormatOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/format-swift.property":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6Formata"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/format-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/format-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadUserImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/format-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/format-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/format-swift.typealias.json new file mode 100644 index 000000000..20dd54b0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/format-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","preciseIdentifier":"s:11JellyfinAPI11ImageFormatO","text":"ImageFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/format-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/Format-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"title":"Paths.HeadUserImageParameters.Format","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6Formata","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Format"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageFormat":{"role":"symbol","title":"ImageFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageFormat"}],"abstract":[{"type":"text","text":"Enum ImageOutputFormat."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageFormat"}],"url":"\/documentation\/jellyfinapi\/imageformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadUserImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/height.json new file mode 100644 index 000000000..0a967554b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/imageindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/imageindex.json new file mode 100644 index 000000000..1826e158a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/imageindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/imageindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/imageIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV10imageIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/imageIndex":{"role":"symbol","title":"imageIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/imageIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/imageindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json new file mode 100644 index 000000000..e798a99fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/Format-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6Formata","text":"Format"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV3tag6format8maxWidth0J6Height13percentPlayed13unplayedCount5width6height7quality04fillK00tL016isCropWhitespace0u3AddN9Indicator4blur15backgroundColor15foregroundLayer10imageIndexAESSSg_AA0F6FormatOSgs5Int32VSgA1_SdSgA1_A1_A1_A1_A1_A1_SbSgA3_A1_A2WA1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/Format-swift.typealias":{"role":"symbol","title":"Paths.HeadUserImageParameters.Format","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Format"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/Format-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Format"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/format-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)":{"role":"symbol","title":"init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Format","preciseIdentifier":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV6Formata"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fillHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"foregroundLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/init(tag:format:maxWidth:maxHeight:percentPlayed:unplayedCount:width:height:quality:fillWidth:fillHeight:isCropWhitespace:isAddPlayedIndicator:blur:backgroundColor:foregroundLayer:imageIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/init(tag:format:maxwidth:maxheight:percentplayed:unplayedcount:width:height:quality:fillwidth:fillheight:iscropwhitespace:isaddplayedindicator:blur:backgroundcolor:foregroundlayer:imageindex:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/isaddplayedindicator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/isaddplayedindicator.json new file mode 100644 index 000000000..67c2ea7d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/isaddplayedindicator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/isaddplayedindicator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/isAddPlayedIndicator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAddPlayedIndicator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV20isAddPlayedIndicatorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/isAddPlayedIndicator":{"role":"symbol","title":"isAddPlayedIndicator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAddPlayedIndicator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/isAddPlayedIndicator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/isaddplayedindicator"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/iscropwhitespace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/iscropwhitespace.json new file mode 100644 index 000000000..6e244e1d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/iscropwhitespace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/iscropwhitespace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/isCropWhitespace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCropWhitespace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV16isCropWhitespaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/isCropWhitespace":{"role":"symbol","title":"isCropWhitespace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCropWhitespace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/isCropWhitespace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/iscropwhitespace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/maxheight.json new file mode 100644 index 000000000..0b01a5f51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/maxwidth.json new file mode 100644 index 000000000..2ab335d58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/percentplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/percentplayed.json new file mode 100644 index 000000000..a77e2054b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/percentplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/percentplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/percentPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"percentPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV13percentPlayedSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/percentPlayed":{"role":"symbol","title":"percentPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"percentPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/percentPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/percentplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/quality.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/quality.json new file mode 100644 index 000000000..7f4e7d07b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/quality.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/quality"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/quality","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"quality","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV7qualitys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/quality":{"role":"symbol","title":"quality","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"quality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/quality","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/quality"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/tag.json new file mode 100644 index 000000000..29f8634eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/tag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/unplayedcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/unplayedcount.json new file mode 100644 index 000000000..05d57c02c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/unplayedcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/unplayedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/unplayedCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV13unplayedCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/unplayedCount":{"role":"symbol","title":"unplayedCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/unplayedCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/unplayedcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/width.json new file mode 100644 index 000000000..dd16710a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headuserimageparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23HeadUserImageParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters":{"role":"symbol","title":"Paths.HeadUserImageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadUserImageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadUserImageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadUserImageParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadUserImageParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headuserimageparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostream(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostream(itemid:parameters:).json new file mode 100644 index 000000000..1942a4184 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostream(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headVideoStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV","text":"HeadVideoStreamParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostream(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headVideoStream(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a video stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"headVideoStream(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headVideoStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadVideoStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15headVideoStream6itemID10parameters3Get7RequestVy10Foundation4DataVGSS_AC04HeadeF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headVideoStream(itemID:parameters:)":{"role":"symbol","title":"headVideoStream(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headVideoStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadVideoStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headVideoStream(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostream(itemid:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainer(itemid:container:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainer(itemid:container:parameters:).json new file mode 100644 index 000000000..af8fe9e65 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainer(itemid:container:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headVideoStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV","text":"HeadVideoStreamByContainerParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainer(itemid:container:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headVideoStreamByContainer(itemID:container:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a video stream."}],"kind":"symbol","metadata":{"role":"symbol","title":"headVideoStreamByContainer(itemID:container:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headVideoStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadVideoStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26headVideoStreamByContainer6itemID9container10parameters3Get7RequestVy10Foundation4DataVGSS_SSAC04HeadefgH10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/headVideoStreamByContainer(itemID:container:parameters:)":{"role":"symbol","title":"headVideoStreamByContainer(itemID:container:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"headVideoStreamByContainer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HeadVideoStreamByContainerParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Gets a video stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/headVideoStreamByContainer(itemID:container:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainer(itemid:container:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters.json new file mode 100644 index 000000000..c7758181d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..eec63805c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV010allowAudioF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/allowaudiostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..38b55057b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV05alloweF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/asquery.json new file mode 100644 index 000000000..87d482c9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiobitrate.json new file mode 100644 index 000000000..745e1895e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiobitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiochannels.json new file mode 100644 index 000000000..be219f0b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiocodec.json new file mode 100644 index 000000000..9da9b96fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiocodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiosamplerate.json new file mode 100644 index 000000000..74ec14f81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiostreamindex.json new file mode 100644 index 000000000..5818d5d05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV05audioF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/audiostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/context-swift.property.json new file mode 100644 index 000000000..645e271a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/context-swift.typealias.json new file mode 100644 index 000000000..88cff0b1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.HeadVideoStreamByContainerParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/cpucorelimit.json new file mode 100644 index 000000000..0fc132c4e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/cpucorelimit"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/deviceid.json new file mode 100644 index 000000000..343064b82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/deviceprofileid.json new file mode 100644 index 000000000..fdcea070d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/enableautostreamcopy.json new file mode 100644 index 000000000..db32f3a68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV010enableAutoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/enableautostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..41da7715b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/enablempegtsm2tsmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/framerate.json new file mode 100644 index 000000000..b4805c4cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/framerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/height.json new file mode 100644 index 000000000..58db45f76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/height"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp.json new file mode 100644 index 000000000..d4ccc8dd8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV8isStatic6params3tag15deviceProfileID011playSessionP007segmentH00S6Length11minSegments011mediaSourceP00nP010audioCodec010enableAutoF4Copy05alloweF4Copy010allowAudioF4Copy0J19BreakOnNonKeyFrames0Y10SampleRate16maxAudioBitDepth0Y7BitRate0Y8Channels16maxAudioChannels7profile5level9framerate12maxFramerate0J14CopyTimestamps14startTimeTicks5width6height8maxWidth9maxHeight12videoBitRate08subtitleF5Index14subtitleMethod12maxRefFrames03maxE8BitDepth10requireAvc0J11DeInterlace20requireNonAnamorphic27transcodingMaxAudioChannels12cpuCoreLimit04livefP020enableMpegtsM2TsMode05videoZ008subtitleZ016transcodeReasons0yF5Index05videoF5Index7context13streamOptionsAESbSg_SSSgA28_A28_A28_A28_s5Int32VSgA31_A28_A28_A28_A27_A27_A27_A27_A31_A31_A31_A31_A31_A28_A28_SfSgA32_A27_s5Int64VSgA31_A31_A31_A31_A31_A31_AA22SubtitleDeliveryMethodOSgA31_A31_A27_A27_A27_A31_A31_A28_A27_A28_A28_A28_A31_A31_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/init(isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/init(isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplerate:maxaudi-60amp"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..3171727d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/iscopytimestamps.json new file mode 100644 index 000000000..80fc8f51d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/isdeinterlace.json new file mode 100644 index 000000000..863e6dee5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/isstatic.json new file mode 100644 index 000000000..212d380ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/isstatic"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/level.json new file mode 100644 index 000000000..485f677fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/level"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/livestreamid.json new file mode 100644 index 000000000..03f9d0287 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV04liveF2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..f63d0bd98 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV16maxAudioBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxaudiochannels.json new file mode 100644 index 000000000..2201dbb2e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxframerate.json new file mode 100644 index 000000000..98a595d93 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxframerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxheight.json new file mode 100644 index 000000000..a6abb32d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxrefframes.json new file mode 100644 index 000000000..448c3104a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxvideobitdepth.json new file mode 100644 index 000000000..9dd7c4eff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV03maxE8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxwidth.json new file mode 100644 index 000000000..e0ab0d234 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/mediasourceid.json new file mode 100644 index 000000000..773c8bcaf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/minsegments.json new file mode 100644 index 000000000..dcec6ae01 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/params.json new file mode 100644 index 000000000..4d6c17d79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/playsessionid.json new file mode 100644 index 000000000..5864b0461 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/profile.json new file mode 100644 index 000000000..d3f1918cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/requireavc.json new file mode 100644 index 000000000..59de2df7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/requirenonanamorphic.json new file mode 100644 index 000000000..feca75795 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/segmentcontainer.json new file mode 100644 index 000000000..5f1c7fb5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV07segmentH0SSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/segmentlength.json new file mode 100644 index 000000000..84f06a1a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/starttimeticks.json new file mode 100644 index 000000000..92396bff2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..32b253637 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..bd0c1d830 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.HeadVideoStreamByContainerParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV0F7Optionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlecodec.json new file mode 100644 index 000000000..d4b0f8086 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..65fcda764 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14subtitleMethodAA016SubtitleDeliveryK0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..24245113c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.HeadVideoStreamByContainerParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlestreamindex.json new file mode 100644 index 000000000..284e377a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV08subtitleF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/tag.json new file mode 100644 index 000000000..063bdb6e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/transcodereasons.json new file mode 100644 index 000000000..692a1d13d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..63e841de8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV27transcodingMaxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/videobitrate.json new file mode 100644 index 000000000..a076af086 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/videocodec.json new file mode 100644 index 000000000..2c2271265 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/videostreamindex.json new file mode 100644 index 000000000..d457f5612 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV05videoF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/width.json new file mode 100644 index 000000000..ab48a1b01 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreambycontainerparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO36HeadVideoStreamByContainerParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters":{"role":"symbol","title":"Paths.HeadVideoStreamByContainerParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamByContainerParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamByContainerParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamByContainerParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreambycontainerparameters\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters.json new file mode 100644 index 000000000..f27459f1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"role":"symbol","title":"Paths.HeadVideoStreamParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/context-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/cpuCoreLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/deviceProfileID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/enableAutoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isDeInterlace","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isStatic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/level","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxAudioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxHeight","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxRefFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxVideoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxWidth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/params","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/profile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/requireAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/requireNonAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/segmentContainer","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/streamOptions-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/tag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/transcodeReasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/transcodingMaxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoBitRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/width"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/Context-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/StreamOptions-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/SubtitleMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxaudiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/minsegments"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/transcodereasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/context-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxwidth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/allowaudiostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/allowaudiostreamcopy.json new file mode 100644 index 000000000..5f322b451 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV010allowAudioF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/allowvideostreamcopy.json new file mode 100644 index 000000000..bc2c56337 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV05alloweF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/asquery.json new file mode 100644 index 000000000..f836f72a4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiobitrate.json new file mode 100644 index 000000000..081bf2e72 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV12audioBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/audioBitRate":{"role":"symbol","title":"audioBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiochannels.json new file mode 100644 index 000000000..c4a423195 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiochannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiocodec.json new file mode 100644 index 000000000..e3d885e07 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiocodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiosamplerate.json new file mode 100644 index 000000000..7b3bacbdd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioSampleRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV15audioSampleRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/audioSampleRate":{"role":"symbol","title":"audioSampleRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiostreamindex.json new file mode 100644 index 000000000..56bc898a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV05audioF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/container.json new file mode 100644 index 000000000..84c5e46bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/context-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/context-swift.property.json new file mode 100644 index 000000000..00e89ee8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/context-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7Contexta","text":"Context"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/context-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/context-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/context-swift.property":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7Contexta"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/context-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/context-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/context-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/context-swift.typealias.json new file mode 100644 index 000000000..a3e3a912d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/context-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/context-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/Context-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"title":"Paths.HeadVideoStreamParameters.Context","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7Contexta","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Context"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/context-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/cpucorelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/cpucorelimit.json new file mode 100644 index 000000000..193e9f358 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/cpucorelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/cpucorelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/cpuCoreLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"cpuCoreLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV12cpuCoreLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/cpuCoreLimit":{"role":"symbol","title":"cpuCoreLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/cpuCoreLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/cpucorelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/deviceid.json new file mode 100644 index 000000000..5c5227ab0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/deviceprofileid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/deviceprofileid.json new file mode 100644 index 000000000..62ff91833 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/deviceprofileid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/deviceprofileid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/deviceProfileID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceProfileID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV15deviceProfileIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/deviceProfileID":{"role":"symbol","title":"deviceProfileID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/deviceProfileID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/deviceprofileid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/enableautostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/enableautostreamcopy.json new file mode 100644 index 000000000..108598b09 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/enableautostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/enableautostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/enableAutoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV010enableAutoF4CopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/enableAutoStreamCopy":{"role":"symbol","title":"enableAutoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/enableAutoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/enableautostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/enablempegtsm2tsmode.json new file mode 100644 index 000000000..2589f316a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV20enableMpegtsM2TsModeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/framerate.json new file mode 100644 index 000000000..af4441fcf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/height.json new file mode 100644 index 000000000..b55c479bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1.json new file mode 100644 index 000000000..bc384dd93 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/Context-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7Contexta","text":"Context"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV9container8isStatic6params3tag15deviceProfileID011playSessionO016segmentContainer0R6Length11minSegments011mediaSourceO00mO010audioCodec010enableAutoF4Copy05alloweF4Copy010allowAudioF4Copy0I19BreakOnNonKeyFrames0Y10SampleRate16maxAudioBitDepth0Y7BitRate0Y8Channels16maxAudioChannels7profile5level9framerate12maxFramerate0I14CopyTimestamps14startTimeTicks5width6height8maxWidth9maxHeight12videoBitRate08subtitleF5Index14subtitleMethod12maxRefFrames03maxE8BitDepth10requireAvc0I11DeInterlace20requireNonAnamorphic27transcodingMaxAudioChannels12cpuCoreLimit04livefO020enableMpegtsM2TsMode05videoZ008subtitleZ016transcodeReasons0yF5Index05videoF5Index7context13streamOptionsAESSSg_SbSgA28_A28_A28_A28_A28_s5Int32VSgA32_A28_A28_A28_A29_A29_A29_A29_A32_A32_A32_A32_A32_A28_A28_SfSgA33_A29_s5Int64VSgA32_A32_A32_A32_A32_A32_AA22SubtitleDeliveryMethodOSgA32_A32_A29_A29_A29_A32_A32_A28_A29_A28_A28_A28_A32_A32_AA15EncodingContextOSgSDyS2SGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/Context-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.Context","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Context"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/Context-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Context"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/context-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlemethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)":{"role":"symbol","title":"init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioSampleRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cpuCoreLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Context","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7Contexta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/init(container:isStatic:params:tag:deviceProfileID:playSessionID:segmentContainer:segmentLength:minSegments:mediaSourceID:deviceID:audioCodec:enableAutoStreamCopy:allowVideoStreamCopy:allowAudioStreamCopy:isBreakOnNonKeyFrames:audioSampleRate:maxAudioBitDepth:audioBitRate:audioChannels:maxAudioChannels:profile:level:framerate:maxFramerate:isCopyTimestamps:startTimeTicks:width:height:maxWidth:maxHeight:videoBitRate:subtitleStreamIndex:subtitleMethod:maxRefFrames:maxVideoBitDepth:requireAvc:isDeInterlace:requireNonAnamorphic:transcodingMaxAudioChannels:cpuCoreLimit:liveStreamID:enableMpegtsM2TsMode:videoCodec:subtitleCodec:transcodeReasons:audioStreamIndex:videoStreamIndex:context:streamOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/init(container:isstatic:params:tag:deviceprofileid:playsessionid:segmentcontainer:segmentlength:minsegments:mediasourceid:deviceid:audiocodec:enableautostreamcopy:allowvideostreamcopy:allowaudiostreamcopy:isbreakonnonkeyframes:audiosamplera-22nf1"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/isbreakonnonkeyframes.json new file mode 100644 index 000000000..2c6346236 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV21isBreakOnNonKeyFramesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/iscopytimestamps.json new file mode 100644 index 000000000..ddf820079 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV16isCopyTimestampsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/iscopytimestamps"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/isdeinterlace.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/isdeinterlace.json new file mode 100644 index 000000000..6b530480a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/isdeinterlace.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/isdeinterlace"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isDeInterlace","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDeInterlace","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV13isDeInterlaceSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/isDeInterlace":{"role":"symbol","title":"isDeInterlace","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDeInterlace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isDeInterlace","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/isdeinterlace"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/isstatic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/isstatic.json new file mode 100644 index 000000000..13883aed1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/isstatic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/isstatic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isStatic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStatic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV8isStaticSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/isStatic":{"role":"symbol","title":"isStatic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStatic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/isStatic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/isstatic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/level.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/level.json new file mode 100644 index 000000000..9a0418304 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/level.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/level","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV5levelSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/level","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/level"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/livestreamid.json new file mode 100644 index 000000000..fdfac3e8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV04liveF2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/livestreamid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxaudiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxaudiobitdepth.json new file mode 100644 index 000000000..6879a4f18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxaudiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxaudiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxAudioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV16maxAudioBitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxAudioBitDepth":{"role":"symbol","title":"maxAudioBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxAudioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxaudiobitdepth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxaudiochannels.json new file mode 100644 index 000000000..7545832a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxframerate.json new file mode 100644 index 000000000..f29d27398 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"maxFramerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV12maxFramerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxFramerate":{"role":"symbol","title":"maxFramerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxFramerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxframerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxheight.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxheight.json new file mode 100644 index 000000000..4c4043f7d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxheight.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxheight"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxHeight","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxHeight","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV9maxHeights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxHeight":{"role":"symbol","title":"maxHeight","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxHeight"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxHeight","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxheight"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxrefframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxrefframes.json new file mode 100644 index 000000000..de900c67c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxrefframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxrefframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxRefFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxRefFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV12maxRefFramess5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxRefFrames":{"role":"symbol","title":"maxRefFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRefFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxRefFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxrefframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxvideobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxvideobitdepth.json new file mode 100644 index 000000000..fd080016e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxvideobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxvideobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxVideoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxVideoBitDepth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV03maxE8BitDepths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxVideoBitDepth":{"role":"symbol","title":"maxVideoBitDepth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxVideoBitDepth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxVideoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxvideobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxwidth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxwidth.json new file mode 100644 index 000000000..d6cdd79b0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/maxwidth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxWidth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxWidth","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV8maxWidths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/maxWidth":{"role":"symbol","title":"maxWidth","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/maxWidth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/maxwidth"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/mediasourceid.json new file mode 100644 index 000000000..dd5b02995 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/minsegments.json new file mode 100644 index 000000000..53c3a3440 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/minsegments"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/params.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/params.json new file mode 100644 index 000000000..6ce45a7d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/params.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/params"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/params","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"params","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV6paramsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/params":{"role":"symbol","title":"params","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"params"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/params","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/params"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/playsessionid.json new file mode 100644 index 000000000..e3c773b73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/profile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/profile.json new file mode 100644 index 000000000..6db24c526 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/profile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/profile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/profile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"profile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV7profileSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/profile":{"role":"symbol","title":"profile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/profile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/profile"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/requireavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/requireavc.json new file mode 100644 index 000000000..ab7934d1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/requireavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/requireavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/requireAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireAvc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV10requireAvcSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/requireAvc":{"role":"symbol","title":"requireAvc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireAvc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/requireAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/requireavc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/requirenonanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/requirenonanamorphic.json new file mode 100644 index 000000000..79ea00d19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/requirenonanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/requirenonanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/requireNonAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requireNonAnamorphic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV20requireNonAnamorphicSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/requireNonAnamorphic":{"role":"symbol","title":"requireNonAnamorphic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNonAnamorphic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/requireNonAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/requirenonanamorphic"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/segmentcontainer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/segmentcontainer.json new file mode 100644 index 000000000..a6c01426c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/segmentcontainer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/segmentcontainer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/segmentContainer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"segmentContainer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV16segmentContainerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/segmentContainer":{"role":"symbol","title":"segmentContainer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentContainer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/segmentContainer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/segmentcontainer"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/segmentlength.json new file mode 100644 index 000000000..cc12bdfc1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/starttimeticks.json new file mode 100644 index 000000000..bba2b34ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/streamoptions-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/streamoptions-swift.property.json new file mode 100644 index 000000000..5a2ae8795 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/streamoptions-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/StreamOptions-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV0F7Optionsa","text":"StreamOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/streamoptions-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/streamOptions-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"title":"streamOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV13streamOptionsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/streamOptions-swift.property":{"role":"symbol","title":"streamOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamOptions","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV0F7Optionsa"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/streamOptions-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/streamoptions-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/streamoptions-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/streamoptions-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/streamoptions-swift.typealias.json new file mode 100644 index 000000000..fc22fe496 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/streamoptions-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/streamoptions-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/StreamOptions-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"title":"Paths.HeadVideoStreamParameters.StreamOptions","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV0F7Optionsa","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/StreamOptions-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.StreamOptions","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StreamOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/StreamOptions-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StreamOptions"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/streamoptions-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlecodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlecodec.json new file mode 100644 index 000000000..07f765ad6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlecodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlecodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV13subtitleCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/subtitleCodec":{"role":"symbol","title":"subtitleCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlecodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlemethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlemethod-swift.property.json new file mode 100644 index 000000000..a28ebe7de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlemethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/SubtitleMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14SubtitleMethoda","text":"SubtitleMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlemethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"title":"subtitleMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14subtitleMethodAA016SubtitleDeliveryI0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/subtitleMethod-swift.property":{"role":"symbol","title":"subtitleMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14SubtitleMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlemethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlemethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlemethod-swift.typealias.json new file mode 100644 index 000000000..32941568a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlemethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlemethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/SubtitleMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"title":"Paths.HeadVideoStreamParameters.SubtitleMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV14SubtitleMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/SubtitleMethod-swift.typealias":{"role":"symbol","title":"Paths.HeadVideoStreamParameters.SubtitleMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/SubtitleMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlemethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlestreamindex.json new file mode 100644 index 000000000..2c16f27d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV08subtitleF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/tag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/tag.json new file mode 100644 index 000000000..42e64f8a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/tag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/tag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/tag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"tag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV3tagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/tag":{"role":"symbol","title":"tag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/tag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/tag"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/transcodereasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/transcodereasons.json new file mode 100644 index 000000000..4e300ca24 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/transcodereasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/transcodereasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/transcodeReasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV16transcodeReasonsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/transcodeReasons":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/transcodeReasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/transcodereasons"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/transcodingmaxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/transcodingmaxaudiochannels.json new file mode 100644 index 000000000..1c3ceddcc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/transcodingmaxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/transcodingmaxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/transcodingMaxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"transcodingMaxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV27transcodingMaxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/transcodingMaxAudioChannels":{"role":"symbol","title":"transcodingMaxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingMaxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/transcodingMaxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/transcodingmaxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/videobitrate.json new file mode 100644 index 000000000..273afac99 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoBitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoBitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV12videoBitRates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/videoBitRate":{"role":"symbol","title":"videoBitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoBitRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/videocodec.json new file mode 100644 index 000000000..6083acc14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/videostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/videostreamindex.json new file mode 100644 index 000000000..6ee016a2c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/videostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/videostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"videoStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV05videoF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/videoStreamIndex":{"role":"symbol","title":"videoStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/videoStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/videostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/width.json new file mode 100644 index 000000000..d619c24e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/headvideostreamparameters/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25HeadVideoStreamParametersV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/HeadVideoStreamParameters":{"role":"symbol","title":"Paths.HeadVideoStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HeadVideoStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/HeadVideoStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HeadVideoStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/headvideostreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/initiate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/initiate.json new file mode 100644 index 000000000..f96b8b57d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/initiate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"initiate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/initiate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/initiate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Initiate a new quick connect request."}],"kind":"symbol","metadata":{"role":"symbol","title":"initiate","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"initiate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO8initiate3Get7RequestVyAA18QuickConnectResultVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/initiate":{"role":"symbol","title":"initiate","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"initiate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Initiate a new quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/initiate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/initiate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackage(name:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackage(name:parameters:).json new file mode 100644 index 000000000..42ea7225c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackage(name:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"installPackage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24InstallPackageParametersV","text":"InstallPackageParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/installpackage(name:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/installPackage(name:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Installs a package."}],"kind":"symbol","metadata":{"role":"symbol","title":"installPackage(name:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"installPackage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"InstallPackageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24InstallPackageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14installPackage4name10parameters3Get7RequestVyytGSS_AC07InstallE10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/installPackage(name:parameters:)":{"role":"symbol","title":"installPackage(name:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"installPackage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"InstallPackageParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24InstallPackageParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Installs a package."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/installPackage(name:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackage(name:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters":{"role":"symbol","title":"Paths.InstallPackageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallPackageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallPackageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters.json new file mode 100644 index 000000000..f55286534 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallPackageParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/installpackageparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"InstallPackageParameters"}],"role":"symbol","title":"Paths.InstallPackageParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallPackageParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24InstallPackageParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/init(assemblyGuid:version:repositoryURL:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/assemblyGuid","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/repositoryURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/version"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters/assemblyGuid":{"role":"symbol","title":"assemblyGuid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/assemblyGuid","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters\/assemblyguid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters/init(assemblyGuid:version:repositoryURL:)":{"role":"symbol","title":"init(assemblyGuid:version:repositoryURL:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/init(assemblyGuid:version:repositoryURL:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters\/init(assemblyguid:version:repositoryurl:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters/repositoryURL":{"role":"symbol","title":"repositoryURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/repositoryURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters\/repositoryurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters":{"role":"symbol","title":"Paths.InstallPackageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallPackageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallPackageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters\/version"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/asquery.json new file mode 100644 index 000000000..3c085a9e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/installpackageparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24InstallPackageParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters":{"role":"symbol","title":"Paths.InstallPackageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallPackageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallPackageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/assemblyguid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/assemblyguid.json new file mode 100644 index 000000000..572f830e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/assemblyguid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/installpackageparameters\/assemblyguid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/assemblyGuid","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"assemblyGuid","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24InstallPackageParametersV12assemblyGuid10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters/assemblyGuid":{"role":"symbol","title":"assemblyGuid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/assemblyGuid","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters\/assemblyguid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters":{"role":"symbol","title":"Paths.InstallPackageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallPackageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallPackageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/init(assemblyguid:version:repositoryurl:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/init(assemblyguid:version:repositoryurl:).json new file mode 100644 index 000000000..cfead7174 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/init(assemblyguid:version:repositoryurl:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/installpackageparameters\/init(assemblyguid:version:repositoryurl:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/init(assemblyGuid:version:repositoryURL:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(assemblyGuid:version:repositoryURL:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24InstallPackageParametersV12assemblyGuid7version13repositoryURLAE10Foundation4UUIDVSg_SSSgAMtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters/init(assemblyGuid:version:repositoryURL:)":{"role":"symbol","title":"init(assemblyGuid:version:repositoryURL:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"assemblyGuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/init(assemblyGuid:version:repositoryURL:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters\/init(assemblyguid:version:repositoryurl:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters":{"role":"symbol","title":"Paths.InstallPackageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallPackageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallPackageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/repositoryurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/repositoryurl.json new file mode 100644 index 000000000..75fd2215d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/repositoryurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/installpackageparameters\/repositoryurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/repositoryURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"repositoryURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24InstallPackageParametersV13repositoryURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters":{"role":"symbol","title":"Paths.InstallPackageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallPackageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallPackageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters/repositoryURL":{"role":"symbol","title":"repositoryURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/repositoryURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters\/repositoryurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/version.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/version.json new file mode 100644 index 000000000..2734e0681 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/installpackageparameters/version.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/installpackageparameters\/version"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/version","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"version","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24InstallPackageParametersV7versionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/InstallPackageParameters":{"role":"symbol","title":"Paths.InstallPackageParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallPackageParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/InstallPackageParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallPackageParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/installpackageparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/logfile(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/logfile(_:).json new file mode 100644 index 000000000..e3d6c16f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/logfile(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"logFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/logfile(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/logFile(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Upload a document."}],"kind":"symbol","metadata":{"role":"symbol","title":"logFile(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"logFile"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO7logFiley3Get7RequestVyAA28ClientLogDocumentResponseDtoVGSSSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientLogDocumentResponseDto":{"role":"symbol","title":"ClientLogDocumentResponseDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"abstract":[{"type":"text","text":"Client log document response dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientLogDocumentResponseDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientLogDocumentResponseDto"}],"url":"\/documentation\/jellyfinapi\/clientlogdocumentresponsedto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/logFile(_:)":{"role":"symbol","title":"logFile(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"logFile"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Upload a document."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/logFile(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/logfile(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/markfavoriteitem(userid:itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/markfavoriteitem(userid:itemid:).json new file mode 100644 index 000000000..18fc16cbd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/markfavoriteitem(userid:itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markFavoriteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/markfavoriteitem(userid:itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markFavoriteItem(userID:itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Marks an item as a favorite."}],"kind":"symbol","metadata":{"role":"symbol","title":"markFavoriteItem(userID:itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markFavoriteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16markFavoriteItem6userID04itemH03Get7RequestVyAA04UserF7DataDtoVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/markFavoriteItem(userID:itemID:)":{"role":"symbol","title":"markFavoriteItem(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markFavoriteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Marks an item as a favorite."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markFavoriteItem(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/markfavoriteitem(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/markplayeditem(userid:itemid:dateplayed:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/markplayeditem(userid:itemid:dateplayed:).json new file mode 100644 index 000000000..f214b4a04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/markplayeditem(userid:itemid:dateplayed:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markPlayedItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"datePlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/markplayeditem(userid:itemid:dateplayed:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markPlayedItem(userID:itemID:datePlayed:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Marks an item as played for user."}],"kind":"symbol","metadata":{"role":"symbol","title":"markPlayedItem(userID:itemID:datePlayed:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markPlayedItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"datePlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14markPlayedItem6userID04itemH004dateE03Get7RequestVyAA04UserF7DataDtoVGSS_SS10Foundation4DateVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/markPlayedItem(userID:itemID:datePlayed:)":{"role":"symbol","title":"markPlayedItem(userID:itemID:datePlayed:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markPlayedItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"datePlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Marks an item as played for user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markPlayedItem(userID:itemID:datePlayed:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/markplayeditem(userid:itemid:dateplayed:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/markunplayeditem(userid:itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/markunplayeditem(userid:itemid:).json new file mode 100644 index 000000000..44d3e372c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/markunplayeditem(userid:itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markUnplayedItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/markunplayeditem(userid:itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markUnplayedItem(userID:itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Marks an item as unplayed for user."}],"kind":"symbol","metadata":{"role":"symbol","title":"markUnplayedItem(userID:itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markUnplayedItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16markUnplayedItem6userID04itemH03Get7RequestVyAA04UserF7DataDtoVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/markUnplayedItem(userID:itemID:)":{"role":"symbol","title":"markUnplayedItem(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"markUnplayedItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Marks an item as unplayed for user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/markUnplayedItem(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/markunplayeditem(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/mergeversions(ids:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/mergeversions(ids:).json new file mode 100644 index 000000000..ef0be334e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/mergeversions(ids:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mergeVersions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/mergeversions(ids:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/mergeVersions(ids:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Merges videos into a single record."}],"kind":"symbol","metadata":{"role":"symbol","title":"mergeVersions(ids:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mergeVersions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13mergeVersions3ids3Get7RequestVyytGSay10Foundation4UUIDVG_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/mergeVersions(ids:)":{"role":"symbol","title":"mergeVersions(ids:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mergeVersions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Merges videos into a single record."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/mergeVersions(ids:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/mergeversions(ids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/moveitem(playlistid:itemid:newindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/moveitem(playlistid:itemid:newindex:).json new file mode 100644 index 000000000..4bf44974c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/moveitem(playlistid:itemid:newindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/moveitem(playlistid:itemid:newindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/moveItem(playlistID:itemID:newIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Moves a playlist item."}],"kind":"symbol","metadata":{"role":"symbol","title":"moveItem(playlistID:itemID:newIndex:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO8moveItem10playlistID04itemG08newIndex3Get7RequestVyytGSS_SSSitFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/moveItem(playlistID:itemID:newIndex:)":{"role":"symbol","title":"moveItem(playlistID:itemID:newIndex:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Moves a playlist item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/moveItem(playlistID:itemID:newIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/moveitem(playlistid:itemid:newindex:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogress(userid:itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogress(userid:itemid:parameters:).json new file mode 100644 index 000000000..6a5fb82ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogress(userid:itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackProgress"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV","text":"OnPlaybackProgressParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogress(userid:itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackProgress(userID:itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports a user’s playback progress."}],"kind":"symbol","metadata":{"role":"symbol","title":"onPlaybackProgress(userID:itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackProgress"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OnPlaybackProgressParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18onPlaybackProgress6userID04itemH010parameters3Get7RequestVyytGSS_SSAC02OneF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/onPlaybackProgress(userID:itemID:parameters:)":{"role":"symbol","title":"onPlaybackProgress(userID:itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackProgress"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OnPlaybackProgressParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports a user’s playback progress."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackProgress(userID:itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogress(userid:itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters.json new file mode 100644 index 000000000..6df7b3b7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"role":"symbol","title":"Paths.OnPlaybackProgressParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/init(mediaSourceID:positionTicks:audioStreamIndex:subtitleStreamIndex:volumeLevel:playMethod:liveStreamID:playSessionID:repeatMode:isPaused:isMuted:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/isMuted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/isPaused","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/playMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/positionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/repeatMode-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/volumeLevel"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/PlayMethod-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/RepeatMode-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/repeatMode-swift.property":{"role":"symbol","title":"repeatMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10RepeatModea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/repeatMode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/repeatmode-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/volumeLevel":{"role":"symbol","title":"volumeLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/volumeLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/volumelevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/RepeatMode-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters.RepeatMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/RepeatMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/repeatmode-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/PlayMethod-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters.PlayMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/PlayMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playmethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/ispaused"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/init(mediaSourceID:positionTicks:audioStreamIndex:subtitleStreamIndex:volumeLevel:playMethod:liveStreamID:playSessionID:repeatMode:isPaused:isMuted:)":{"role":"symbol","title":"init(mediaSourceID:positionTicks:audioStreamIndex:subtitleStreamIndex:volumeLevel:playMethod:liveStreamID:playSessionID:repeatMode:isPaused:isMuted:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10PlayMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10RepeatModea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/init(mediaSourceID:positionTicks:audioStreamIndex:subtitleStreamIndex:volumeLevel:playMethod:liveStreamID:playSessionID:repeatMode:isPaused:isMuted:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/init(mediasourceid:positionticks:audiostreamindex:subtitlestreamindex:volumelevel:playmethod:livestreamid:playsessionid:repeatmode:ispaused:ismuted:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/isMuted":{"role":"symbol","title":"isMuted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/isMuted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/ismuted"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/playMethod-swift.property":{"role":"symbol","title":"playMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10PlayMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/playMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playmethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/positionticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/asquery.json new file mode 100644 index 000000000..ba22681b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/audiostreamindex.json new file mode 100644 index 000000000..926aff301 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/init(mediasourceid:positionticks:audiostreamindex:subtitlestreamindex:volumelevel:playmethod:livestreamid:playsessionid:repeatmode:ispaused:ismuted:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/init(mediasourceid:positionticks:audiostreamindex:subtitlestreamindex:volumelevel:playmethod:livestreamid:playsessionid:repeatmode:ispaused:ismuted:).json new file mode 100644 index 000000000..592591fdd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/init(mediasourceid:positionticks:audiostreamindex:subtitlestreamindex:volumelevel:playmethod:livestreamid:playsessionid:repeatmode:ispaused:ismuted:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/PlayMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10PlayMethoda","text":"PlayMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/RepeatMode-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10RepeatModea","text":"RepeatMode"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/init(mediasourceid:positionticks:audiostreamindex:subtitlestreamindex:volumelevel:playmethod:livestreamid:playsessionid:repeatmode:ispaused:ismuted:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/init(mediaSourceID:positionTicks:audioStreamIndex:subtitleStreamIndex:volumeLevel:playMethod:liveStreamID:playSessionID:repeatMode:isPaused:isMuted:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10PlayMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10RepeatModea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(mediaSourceID:positionTicks:audioStreamIndex:subtitleStreamIndex:volumeLevel:playMethod:liveStreamID:playSessionID:repeatMode:isPaused:isMuted:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV13mediaSourceID13positionTicks16audioStreamIndex08subtitlenO011volumeLevel10playMethod04livenJ00s7SessionJ010repeatMode8isPaused0Y5MutedAESSSg_s5Int64VSgs5Int32VSgA2wA04PlayT0OSgA2qA06RepeatX0OSgSbSgA2_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/RepeatMode-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters.RepeatMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/RepeatMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/repeatmode-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/init(mediaSourceID:positionTicks:audioStreamIndex:subtitleStreamIndex:volumeLevel:playMethod:liveStreamID:playSessionID:repeatMode:isPaused:isMuted:)":{"role":"symbol","title":"init(mediaSourceID:positionTicks:audioStreamIndex:subtitleStreamIndex:volumeLevel:playMethod:liveStreamID:playSessionID:repeatMode:isPaused:isMuted:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10PlayMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10RepeatModea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/init(mediaSourceID:positionTicks:audioStreamIndex:subtitleStreamIndex:volumeLevel:playMethod:liveStreamID:playSessionID:repeatMode:isPaused:isMuted:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/init(mediasourceid:positionticks:audiostreamindex:subtitlestreamindex:volumelevel:playmethod:livestreamid:playsessionid:repeatmode:ispaused:ismuted:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/PlayMethod-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters.PlayMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/PlayMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playmethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/ismuted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/ismuted.json new file mode 100644 index 000000000..4b3243ed6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/ismuted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/ismuted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/isMuted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMuted","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV7isMutedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/isMuted":{"role":"symbol","title":"isMuted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/isMuted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/ismuted"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/ispaused.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/ispaused.json new file mode 100644 index 000000000..cf6c107c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/ispaused.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/ispaused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/isPaused","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPaused","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV8isPausedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/ispaused"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/livestreamid.json new file mode 100644 index 000000000..2b01bee6d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/livestreamid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/mediasourceid.json new file mode 100644 index 000000000..098a4640d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/playmethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/playmethod-swift.property.json new file mode 100644 index 000000000..a4abec5d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/playmethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/PlayMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10PlayMethoda","text":"PlayMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playmethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/playMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10PlayMethoda"},{"kind":"text","text":"?"}],"title":"playMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10playMethodAA04PlayI0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/playMethod-swift.property":{"role":"symbol","title":"playMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10PlayMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/playMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playmethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/PlayMethod-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters.PlayMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/PlayMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playmethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/playmethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/playmethod-swift.typealias.json new file mode 100644 index 000000000..aeaca4d40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/playmethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO","text":"PlayMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playmethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/PlayMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"title":"Paths.OnPlaybackProgressParameters.PlayMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10PlayMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/PlayMethod-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters.PlayMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/PlayMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playmethod-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/playsessionid.json new file mode 100644 index 000000000..787024c73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/positionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/positionticks.json new file mode 100644 index 000000000..28f17a99e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/positionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/positionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/positionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"positionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV13positionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/repeatmode-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/repeatmode-swift.property.json new file mode 100644 index 000000000..d7abcf08f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/repeatmode-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/RepeatMode-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10RepeatModea","text":"RepeatMode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/repeatmode-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/repeatMode-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10RepeatModea"},{"kind":"text","text":"?"}],"title":"repeatMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10repeatModeAA06RepeatI0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/repeatMode-swift.property":{"role":"symbol","title":"repeatMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10RepeatModea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/repeatMode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/repeatmode-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/RepeatMode-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters.RepeatMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/RepeatMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/repeatmode-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/repeatmode-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/repeatmode-swift.typealias.json new file mode 100644 index 000000000..73535e547 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/repeatmode-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO","text":"RepeatMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/repeatmode-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/RepeatMode-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"title":"Paths.OnPlaybackProgressParameters.RepeatMode","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV10RepeatModea","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/RepeatMode-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters.RepeatMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/RepeatMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/repeatmode-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/subtitlestreamindex.json new file mode 100644 index 000000000..ea60ca647 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/volumelevel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/volumelevel.json new file mode 100644 index 000000000..bb6681ea9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackprogressparameters/volumelevel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/volumelevel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/volumeLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"volumeLevel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO28OnPlaybackProgressParametersV11volumeLevels5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters/volumeLevel":{"role":"symbol","title":"volumeLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters\/volumeLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters\/volumelevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackProgressParameters":{"role":"symbol","title":"Paths.OnPlaybackProgressParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackProgressParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackProgressParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackprogressparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstart(userid:itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstart(userid:itemid:parameters:).json new file mode 100644 index 000000000..139458756 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstart(userid:itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackStart"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV","text":"OnPlaybackStartParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstart(userid:itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackStart(userID:itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports that a user has begun playing an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"onPlaybackStart(userID:itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackStart"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OnPlaybackStartParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15onPlaybackStart6userID04itemH010parameters3Get7RequestVyytGSS_SSAC02OneF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/onPlaybackStart(userID:itemID:parameters:)":{"role":"symbol","title":"onPlaybackStart(userID:itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackStart"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OnPlaybackStartParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that a user has begun playing an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackStart(userID:itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstart(userid:itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters.json new file mode 100644 index 000000000..bb3836c13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"role":"symbol","title":"Paths.OnPlaybackStartParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/init(mediaSourceID:audioStreamIndex:subtitleStreamIndex:playMethod:liveStreamID:playSessionID:canSeek:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/canSeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/playMethod-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/subtitleStreamIndex"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/PlayMethod-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/playMethod-swift.property":{"role":"symbol","title":"playMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV10PlayMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/playMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playmethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/init(mediaSourceID:audioStreamIndex:subtitleStreamIndex:playMethod:liveStreamID:playSessionID:canSeek:)":{"role":"symbol","title":"init(mediaSourceID:audioStreamIndex:subtitleStreamIndex:playMethod:liveStreamID:playSessionID:canSeek:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV10PlayMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/init(mediaSourceID:audioStreamIndex:subtitleStreamIndex:playMethod:liveStreamID:playSessionID:canSeek:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/init(mediasourceid:audiostreamindex:subtitlestreamindex:playmethod:livestreamid:playsessionid:canseek:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/PlayMethod-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackStartParameters.PlayMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/PlayMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playmethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/canSeek":{"role":"symbol","title":"canSeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/canSeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/canseek"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/subtitlestreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/asquery.json new file mode 100644 index 000000000..4298d2d90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/audiostreamindex.json new file mode 100644 index 000000000..a103e2e2c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/audiostreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/canseek.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/canseek.json new file mode 100644 index 000000000..f4a1ffdb8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/canseek.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/canseek"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/canSeek","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canSeek","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV7canSeekSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/canSeek":{"role":"symbol","title":"canSeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/canSeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/canseek"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/init(mediasourceid:audiostreamindex:subtitlestreamindex:playmethod:livestreamid:playsessionid:canseek:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/init(mediasourceid:audiostreamindex:subtitlestreamindex:playmethod:livestreamid:playsessionid:canseek:).json new file mode 100644 index 000000000..6bfa7f92d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/init(mediasourceid:audiostreamindex:subtitlestreamindex:playmethod:livestreamid:playsessionid:canseek:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/PlayMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV10PlayMethoda","text":"PlayMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/init(mediasourceid:audiostreamindex:subtitlestreamindex:playmethod:livestreamid:playsessionid:canseek:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/init(mediaSourceID:audioStreamIndex:subtitleStreamIndex:playMethod:liveStreamID:playSessionID:canSeek:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV10PlayMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(mediaSourceID:audioStreamIndex:subtitleStreamIndex:playMethod:liveStreamID:playSessionID:canSeek:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV13mediaSourceID16audioStreamIndex08subtitlelM010playMethod04livelJ00o7SessionJ07canSeekAESSSg_s5Int32VSgApA04PlayP0OSgA2MSbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/PlayMethod-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackStartParameters.PlayMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/PlayMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playmethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/init(mediaSourceID:audioStreamIndex:subtitleStreamIndex:playMethod:liveStreamID:playSessionID:canSeek:)":{"role":"symbol","title":"init(mediaSourceID:audioStreamIndex:subtitleStreamIndex:playMethod:liveStreamID:playSessionID:canSeek:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV10PlayMethoda"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/init(mediaSourceID:audioStreamIndex:subtitleStreamIndex:playMethod:liveStreamID:playSessionID:canSeek:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/init(mediasourceid:audiostreamindex:subtitlestreamindex:playmethod:livestreamid:playsessionid:canseek:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/livestreamid.json new file mode 100644 index 000000000..8d4f06a33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/mediasourceid.json new file mode 100644 index 000000000..468d83584 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/playmethod-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/playmethod-swift.property.json new file mode 100644 index 000000000..43dbe6c64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/playmethod-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/PlayMethod-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV10PlayMethoda","text":"PlayMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playmethod-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/playMethod-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV10PlayMethoda"},{"kind":"text","text":"?"}],"title":"playMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV10playMethodAA04PlayI0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/playMethod-swift.property":{"role":"symbol","title":"playMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV10PlayMethoda"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/playMethod-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playmethod-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/PlayMethod-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackStartParameters.PlayMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/PlayMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playmethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/playmethod-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/playmethod-swift.typealias.json new file mode 100644 index 000000000..d4ecb776d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/playmethod-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO","text":"PlayMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playmethod-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/PlayMethod-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"title":"Paths.OnPlaybackStartParameters.PlayMethod","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV10PlayMethoda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/PlayMethod-swift.typealias":{"role":"symbol","title":"Paths.OnPlaybackStartParameters.PlayMethod","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/PlayMethod-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playmethod-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/playsessionid.json new file mode 100644 index 000000000..9cc1f98f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/subtitlestreamindex.json new file mode 100644 index 000000000..621e2d872 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstartparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25OnPlaybackStartParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters":{"role":"symbol","title":"Paths.OnPlaybackStartParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStartParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStartParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStartParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStartParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstartparameters\/subtitlestreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstopped(userid:itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstopped(userid:itemid:parameters:).json new file mode 100644 index 000000000..8b1299497 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstopped(userid:itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackStopped"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV","text":"OnPlaybackStoppedParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstopped(userid:itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackStopped(userID:itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports that a user has stopped playing an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"onPlaybackStopped(userID:itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackStopped"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OnPlaybackStoppedParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17onPlaybackStopped6userID04itemH010parameters3Get7RequestVyytGSS_SSAC02OneF10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters":{"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/onPlaybackStopped(userID:itemID:parameters:)":{"role":"symbol","title":"onPlaybackStopped(userID:itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onPlaybackStopped"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OnPlaybackStoppedParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that a user has stopped playing an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/onPlaybackStopped(userID:itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstopped(userid:itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters.json new file mode 100644 index 000000000..f884769d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/init(mediaSourceID:nextMediaType:positionTicks:liveStreamID:playSessionID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/nextMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/positionTicks"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters":{"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/init(mediaSourceID:nextMediaType:positionTicks:liveStreamID:playSessionID:)":{"role":"symbol","title":"init(mediaSourceID:nextMediaType:positionTicks:liveStreamID:playSessionID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/init(mediaSourceID:nextMediaType:positionTicks:liveStreamID:playSessionID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/init(mediasourceid:nextmediatype:positionticks:livestreamid:playsessionid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/nextMediaType":{"role":"symbol","title":"nextMediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/nextMediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/nextmediatype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/asquery.json new file mode 100644 index 000000000..1e1f81e9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters":{"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/init(mediasourceid:nextmediatype:positionticks:livestreamid:playsessionid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/init(mediasourceid:nextmediatype:positionticks:livestreamid:playsessionid:).json new file mode 100644 index 000000000..20d422a31 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/init(mediasourceid:nextmediatype:positionticks:livestreamid:playsessionid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/init(mediasourceid:nextmediatype:positionticks:livestreamid:playsessionid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/init(mediaSourceID:nextMediaType:positionTicks:liveStreamID:playSessionID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(mediaSourceID:nextMediaType:positionTicks:liveStreamID:playSessionID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV13mediaSourceID13nextMediaType13positionTicks010liveStreamJ0011playSessionJ0AESSSg_AKs5Int64VSgA2Ktcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/init(mediaSourceID:nextMediaType:positionTicks:liveStreamID:playSessionID:)":{"role":"symbol","title":"init(mediaSourceID:nextMediaType:positionTicks:liveStreamID:playSessionID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/init(mediaSourceID:nextMediaType:positionTicks:liveStreamID:playSessionID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/init(mediasourceid:nextmediatype:positionticks:livestreamid:playsessionid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters":{"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/livestreamid.json new file mode 100644 index 000000000..abc55d7c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters":{"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/mediasourceid.json new file mode 100644 index 000000000..f7bf10bf8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters":{"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/nextmediatype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/nextmediatype.json new file mode 100644 index 000000000..2cc075556 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/nextmediatype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/nextmediatype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/nextMediaType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nextMediaType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV13nextMediaTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/nextMediaType":{"role":"symbol","title":"nextMediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/nextMediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/nextmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters":{"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/playsessionid.json new file mode 100644 index 000000000..95166a2d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters":{"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/playsessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/positionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/positionticks.json new file mode 100644 index 000000000..b0bfebc3c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/onplaybackstoppedparameters/positionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/positionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/positionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"positionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO27OnPlaybackStoppedParametersV13positionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters":{"role":"symbol","title":"Paths.OnPlaybackStoppedParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OnPlaybackStoppedParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OnPlaybackStoppedParameters/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OnPlaybackStoppedParameters\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/onplaybackstoppedparameters\/positionticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestream(parameters:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestream(parameters:_:).json new file mode 100644 index 000000000..b1fc7657d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestream(parameters:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openLiveStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV","text":"OpenLiveStreamParameters"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","preciseIdentifier":"s:11JellyfinAPI17OpenLiveStreamDtoV","text":"OpenLiveStreamDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestream(parameters:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/openLiveStream(parameters:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Opens a media source."}],"kind":"symbol","metadata":{"role":"symbol","title":"openLiveStream(parameters:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openLiveStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OpenLiveStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"OpenLiveStreamDto","preciseIdentifier":"s:11JellyfinAPI17OpenLiveStreamDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14openLiveStream10parameters_3Get7RequestVyAA0eF8ResponseVGAC04OpeneF10ParametersVSg_AA0keF3DtoVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/OpenLiveStreamDto":{"role":"symbol","title":"OpenLiveStreamDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamDto"}],"abstract":[{"type":"text","text":"Open live stream dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/OpenLiveStreamDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamDto"}],"url":"\/documentation\/jellyfinapi\/openlivestreamdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LiveStreamResponse":{"role":"symbol","title":"LiveStreamResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LiveStreamResponse"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LiveStreamResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LiveStreamResponse"}],"url":"\/documentation\/jellyfinapi\/livestreamresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/openLiveStream(parameters:_:)":{"role":"symbol","title":"openLiveStream(parameters:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openLiveStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OpenLiveStreamParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"OpenLiveStreamDto","preciseIdentifier":"s:11JellyfinAPI17OpenLiveStreamDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Opens a media source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/openLiveStream(parameters:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestream(parameters:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters.json new file mode 100644 index 000000000..42648a01b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"role":"symbol","title":"Paths.OpenLiveStreamParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/init(openToken:userID:playSessionID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:itemID:enableDirectPlay:enableDirectStream:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/enableDirectPlay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/enableDirectStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/openToken","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/init(openToken:userID:playSessionID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:itemID:enableDirectPlay:enableDirectStream:)":{"role":"symbol","title":"init(openToken:userID:playSessionID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:itemID:enableDirectPlay:enableDirectStream:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/init(openToken:userID:playSessionID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:itemID:enableDirectPlay:enableDirectStream:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/init(opentoken:userid:playsessionid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:itemid:enabledirectplay:enabledirectstream:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/enableDirectPlay":{"role":"symbol","title":"enableDirectPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/enableDirectPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/enabledirectplay"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/enableDirectStream":{"role":"symbol","title":"enableDirectStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/enableDirectStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/enabledirectstream"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/openToken":{"role":"symbol","title":"openToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/openToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/opentoken"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/subtitlestreamindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/asquery.json new file mode 100644 index 000000000..4765b3300 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/audiostreamindex.json new file mode 100644 index 000000000..3808a9526 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV05audioF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/enabledirectplay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/enabledirectplay.json new file mode 100644 index 000000000..9615fadba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/enabledirectplay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/enabledirectplay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/enableDirectPlay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDirectPlay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV16enableDirectPlaySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/enableDirectPlay":{"role":"symbol","title":"enableDirectPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/enableDirectPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/enabledirectplay"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/enabledirectstream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/enabledirectstream.json new file mode 100644 index 000000000..bd596fe9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/enabledirectstream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/enabledirectstream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/enableDirectStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDirectStream","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV012enableDirectF0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/enableDirectStream":{"role":"symbol","title":"enableDirectStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/enableDirectStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/enabledirectstream"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/init(opentoken:userid:playsessionid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:itemid:enabledirectplay:enabledirectstream:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/init(opentoken:userid:playsessionid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:itemid:enabledirectplay:enabledirectstream:).json new file mode 100644 index 000000000..f171fa15a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/init(opentoken:userid:playsessionid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:itemid:enabledirectplay:enabledirectstream:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/init(opentoken:userid:playsessionid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:itemid:enabledirectplay:enabledirectstream:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/init(openToken:userID:playSessionID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:itemID:enableDirectPlay:enableDirectStream:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(openToken:userID:playSessionID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:itemID:enableDirectPlay:enableDirectStream:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV9openToken6userID011playSessionK019maxStreamingBitrate14startTimeTicks05audioF5Index08subtitlefU00N13AudioChannels04itemK016enableDirectPlay0z6DirectF0AESSSg_10Foundation4UUIDVSgAQs5Int32VSgs5Int64VSgA3xUSbSgA0_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/init(openToken:userID:playSessionID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:itemID:enableDirectPlay:enableDirectStream:)":{"role":"symbol","title":"init(openToken:userID:playSessionID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:itemID:enableDirectPlay:enableDirectStream:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/init(openToken:userID:playSessionID:maxStreamingBitrate:startTimeTicks:audioStreamIndex:subtitleStreamIndex:maxAudioChannels:itemID:enableDirectPlay:enableDirectStream:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/init(opentoken:userid:playsessionid:maxstreamingbitrate:starttimeticks:audiostreamindex:subtitlestreamindex:maxaudiochannels:itemid:enabledirectplay:enabledirectstream:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/itemid.json new file mode 100644 index 000000000..01b23f444 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/maxaudiochannels.json new file mode 100644 index 000000000..7858868e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/maxstreamingbitrate.json new file mode 100644 index 000000000..877de3dda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/opentoken.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/opentoken.json new file mode 100644 index 000000000..668775bdd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/opentoken.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/opentoken"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/openToken","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"openToken","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV9openTokenSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/openToken":{"role":"symbol","title":"openToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/openToken","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/opentoken"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/playsessionid.json new file mode 100644 index 000000000..e7da66c91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/starttimeticks.json new file mode 100644 index 000000000..64757a449 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/starttimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/subtitlestreamindex.json new file mode 100644 index 000000000..f851cbb21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV08subtitleF5Indexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/userid.json new file mode 100644 index 000000000..64f676f63 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/openlivestreamparameters/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO24OpenLiveStreamParametersV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/OpenLiveStreamParameters":{"role":"symbol","title":"Paths.OpenLiveStreamParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"OpenLiveStreamParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/OpenLiveStreamParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"OpenLiveStreamParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/openlivestreamparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/pingplaybacksession(playsessionid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/pingplaybacksession(playsessionid:).json new file mode 100644 index 000000000..c5ecd0386 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/pingplaybacksession(playsessionid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"pingPlaybackSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/pingplaybacksession(playsessionid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/pingPlaybackSession(playSessionID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Pings a playback session."}],"kind":"symbol","metadata":{"role":"symbol","title":"pingPlaybackSession(playSessionID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"pingPlaybackSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19pingPlaybackSession04playF2ID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/pingPlaybackSession(playSessionID:)":{"role":"symbol","title":"pingPlaybackSession(playSessionID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"pingPlaybackSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Pings a playback session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/pingPlaybackSession(playSessionID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/pingplaybacksession(playsessionid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/play(sessionid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/play(sessionid:parameters:).json new file mode 100644 index 000000000..3c0c0622f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/play(sessionid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV","text":"PlayParameters"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/play(sessionid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/play(sessionID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Instructs a session to play an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"play(sessionID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO4play9sessionID10parameters3Get7RequestVyytGSS_AC14PlayParametersVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/play(sessionID:parameters:)":{"role":"symbol","title":"play(sessionID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Instructs a session to play an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/play(sessionID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/play(sessionid:parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters.json new file mode 100644 index 000000000..98ae6da81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"role":"symbol","title":"Paths.PlayParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/init(playCommand:itemIDs:startPositionTicks:mediaSourceID:audioStreamIndex:subtitleStreamIndex:startIndex:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/itemIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/playCommand-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/startPositionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/subtitleStreamIndex"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/PlayCommand-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/startpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/PlayCommand-swift.typealias":{"role":"symbol","title":"Paths.PlayParameters.PlayCommand","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/PlayCommand-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters\/playcommand-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/init(playCommand:itemIDs:startPositionTicks:mediaSourceID:audioStreamIndex:subtitleStreamIndex:startIndex:)":{"role":"symbol","title":"init(playCommand:itemIDs:startPositionTicks:mediaSourceID:audioStreamIndex:subtitleStreamIndex:startIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV0D7Commanda"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/init(playCommand:itemIDs:startPositionTicks:mediaSourceID:audioStreamIndex:subtitleStreamIndex:startIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/init(playcommand:itemids:startpositionticks:mediasourceid:audiostreamindex:subtitlestreamindex:startindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/playCommand-swift.property":{"role":"symbol","title":"playCommand","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV0D7Commanda"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/playCommand-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/playcommand-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/itemIDs":{"role":"symbol","title":"itemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/itemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/itemids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/asquery.json new file mode 100644 index 000000000..0f5652ced --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/audiostreamindex.json new file mode 100644 index 000000000..9d872b910 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/init(playcommand:itemids:startpositionticks:mediasourceid:audiostreamindex:subtitlestreamindex:startindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/init(playcommand:itemids:startpositionticks:mediasourceid:audiostreamindex:subtitlestreamindex:startindex:).json new file mode 100644 index 000000000..65477fff9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/init(playcommand:itemids:startpositionticks:mediasourceid:audiostreamindex:subtitlestreamindex:startindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/PlayCommand-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV0D7Commanda","text":"PlayCommand"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters\/init(playcommand:itemids:startpositionticks:mediasourceid:audiostreamindex:subtitlestreamindex:startindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/init(playCommand:itemIDs:startPositionTicks:mediaSourceID:audioStreamIndex:subtitleStreamIndex:startIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV0D7Commanda"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(playCommand:itemIDs:startPositionTicks:mediaSourceID:audioStreamIndex:subtitleStreamIndex:startIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV11playCommand7itemIDs18startPositionTicks13mediaSourceID16audioStreamIndex08subtitleqR00jR0AeA0dG0O_Say10Foundation4UUIDVGs5Int64VSgSSSgs5Int32VSgA2Ytcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/init(playCommand:itemIDs:startPositionTicks:mediaSourceID:audioStreamIndex:subtitleStreamIndex:startIndex:)":{"role":"symbol","title":"init(playCommand:itemIDs:startPositionTicks:mediaSourceID:audioStreamIndex:subtitleStreamIndex:startIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV0D7Commanda"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/init(playCommand:itemIDs:startPositionTicks:mediaSourceID:audioStreamIndex:subtitleStreamIndex:startIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/init(playcommand:itemids:startpositionticks:mediasourceid:audiostreamindex:subtitlestreamindex:startindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/PlayCommand-swift.typealias":{"role":"symbol","title":"Paths.PlayParameters.PlayCommand","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/PlayCommand-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters\/playcommand-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/itemids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/itemids.json new file mode 100644 index 000000000..312f2f3c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/itemids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters\/itemids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/itemIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]"}],"title":"itemIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV7itemIDsSay10Foundation4UUIDVGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/itemIDs":{"role":"symbol","title":"itemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/itemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/itemids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/mediasourceid.json new file mode 100644 index 000000000..580d1f2a4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/playcommand-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/playcommand-swift.property.json new file mode 100644 index 000000000..cd6a1854a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/playcommand-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/PlayCommand-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV0D7Commanda","text":"PlayCommand"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters\/playcommand-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/playCommand-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum PlayCommand."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV0D7Commanda"}],"title":"playCommand","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV11playCommandAA0dG0Ovp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/playCommand-swift.property":{"role":"symbol","title":"playCommand","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI5PathsO14PlayParametersV0D7Commanda"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/playCommand-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/playcommand-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/PlayCommand-swift.typealias":{"role":"symbol","title":"Paths.PlayParameters.PlayCommand","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/PlayCommand-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters\/playcommand-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/playcommand-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/playcommand-swift.typealias.json new file mode 100644 index 000000000..6738ea5f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/playcommand-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","preciseIdentifier":"s:11JellyfinAPI11PlayCommandO","text":"PlayCommand"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters\/playcommand-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/PlayCommand-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"title":"Paths.PlayParameters.PlayCommand","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV0D7Commanda","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/PlayCommand-swift.typealias":{"role":"symbol","title":"Paths.PlayParameters.PlayCommand","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/PlayCommand-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters\/playcommand-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/startindex.json new file mode 100644 index 000000000..59f57d7c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/startpositionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/startpositionticks.json new file mode 100644 index 000000000..97027060f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/startpositionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters\/startpositionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/startPositionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startPositionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV18startPositionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/startpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/subtitlestreamindex.json new file mode 100644 index 000000000..84cab9afc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/playparameters/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/playparameters\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14PlayParametersV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters":{"role":"symbol","title":"Paths.PlayParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/playparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PlayParameters/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PlayParameters\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/playparameters\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postaddedmovies(tmdbid:imdbid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postaddedmovies(tmdbid:imdbid:).json new file mode 100644 index 000000000..c19b5d771 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postaddedmovies(tmdbid:imdbid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postAddedMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postaddedmovies(tmdbid:imdbid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postAddedMovies(tmdbID:imdbID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports that new movies have been added by an external source."}],"kind":"symbol","metadata":{"role":"symbol","title":"postAddedMovies(tmdbID:imdbID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postAddedMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15postAddedMovies6tmdbID04imdbH03Get7RequestVyytGSSSg_AKtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postAddedMovies(tmdbID:imdbID:)":{"role":"symbol","title":"postAddedMovies(tmdbID:imdbID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postAddedMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that new movies have been added by an external source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postAddedMovies(tmdbID:imdbID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postaddedmovies(tmdbid:imdbid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postaddedseries(tvdbid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postaddedseries(tvdbid:).json new file mode 100644 index 000000000..724f4d0e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postaddedseries(tvdbid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postAddedSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postaddedseries(tvdbid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postAddedSeries(tvdbID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports that new episodes of a series have been added by an external source."}],"kind":"symbol","metadata":{"role":"symbol","title":"postAddedSeries(tvdbID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postAddedSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15postAddedSeries6tvdbID3Get7RequestVyytGSSSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postAddedSeries(tvdbID:)":{"role":"symbol","title":"postAddedSeries(tvdbID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postAddedSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that new episodes of a series have been added by an external source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postAddedSeries(tvdbID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postaddedseries(tvdbid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilities(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilities(parameters:).json new file mode 100644 index 000000000..2aae28152 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilities(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postCapabilities"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV","text":"PostCapabilitiesParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postcapabilities(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postCapabilities(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates capabilities for a device."}],"kind":"symbol","metadata":{"role":"symbol","title":"postCapabilities(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postCapabilities"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PostCapabilitiesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16postCapabilities10parameters3Get7RequestVyytGAC04PostE10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postCapabilities(parameters:)":{"role":"symbol","title":"postCapabilities(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postCapabilities"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PostCapabilitiesParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates capabilities for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postCapabilities(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilities(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters.json new file mode 100644 index 000000000..66b31bef4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"role":"symbol","title":"Paths.PostCapabilitiesParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/init(id:playableMediaTypes:supportedCommands:isSupportsMediaControl:isSupportsSync:isSupportsPersistentIdentifier:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/id","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsMediaControl","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsPersistentIdentifier","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsSync","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/playableMediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/supportedCommands"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/id":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/id","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/id"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/isSupportsSync":{"role":"symbol","title":"isSupportsSync","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsSync","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/issupportssync"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/init(id:playableMediaTypes:supportedCommands:isSupportsMediaControl:isSupportsSync:isSupportsPersistentIdentifier:)":{"role":"symbol","title":"init(id:playableMediaTypes:supportedCommands:isSupportsMediaControl:isSupportsSync:isSupportsPersistentIdentifier:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/init(id:playableMediaTypes:supportedCommands:isSupportsMediaControl:isSupportsSync:isSupportsPersistentIdentifier:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/init(id:playablemediatypes:supportedcommands:issupportsmediacontrol:issupportssync:issupportspersistentidentifier:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/isSupportsPersistentIdentifier":{"role":"symbol","title":"isSupportsPersistentIdentifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsPersistentIdentifier","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/issupportspersistentidentifier"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/isSupportsMediaControl":{"role":"symbol","title":"isSupportsMediaControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsMediaControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/issupportsmediacontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/playableMediaTypes":{"role":"symbol","title":"playableMediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/playableMediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/playablemediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/supportedCommands":{"role":"symbol","title":"supportedCommands","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/supportedCommands","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/supportedcommands"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/asquery.json new file mode 100644 index 000000000..836f03f32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/id.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/id.json new file mode 100644 index 000000000..d89d2a2b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/id.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/id"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/id","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/id":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/id","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/id"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/init(id:playablemediatypes:supportedcommands:issupportsmediacontrol:issupportssync:issupportspersistentidentifier:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/init(id:playablemediatypes:supportedcommands:issupportsmediacontrol:issupportssync:issupportspersistentidentifier:).json new file mode 100644 index 000000000..d1d23d46c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/init(id:playablemediatypes:supportedcommands:issupportsmediacontrol:issupportssync:issupportspersistentidentifier:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO","text":"GeneralCommandType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/init(id:playablemediatypes:supportedcommands:issupportsmediacontrol:issupportssync:issupportspersistentidentifier:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/init(id:playableMediaTypes:supportedCommands:isSupportsMediaControl:isSupportsSync:isSupportsPersistentIdentifier:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(id:playableMediaTypes:supportedCommands:isSupportsMediaControl:isSupportsSync:isSupportsPersistentIdentifier:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV2id18playableMediaTypes17supportedCommands010isSupportsI7Control0mN4Sync0mN20PersistentIdentifierAESSSg_SaySSGSgSayAA18GeneralCommandTypeOGSgSbSgA2Stcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/init(id:playableMediaTypes:supportedCommands:isSupportsMediaControl:isSupportsSync:isSupportsPersistentIdentifier:)":{"role":"symbol","title":"init(id:playableMediaTypes:supportedCommands:isSupportsMediaControl:isSupportsSync:isSupportsPersistentIdentifier:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/init(id:playableMediaTypes:supportedCommands:isSupportsMediaControl:isSupportsSync:isSupportsPersistentIdentifier:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/init(id:playablemediatypes:supportedcommands:issupportsmediacontrol:issupportssync:issupportspersistentidentifier:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/issupportsmediacontrol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/issupportsmediacontrol.json new file mode 100644 index 000000000..114d05dce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/issupportsmediacontrol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/issupportsmediacontrol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsMediaControl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsMediaControl","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV22isSupportsMediaControlSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/isSupportsMediaControl":{"role":"symbol","title":"isSupportsMediaControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsMediaControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/issupportsmediacontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/issupportspersistentidentifier.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/issupportspersistentidentifier.json new file mode 100644 index 000000000..269859b19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/issupportspersistentidentifier.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/issupportspersistentidentifier"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsPersistentIdentifier","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsPersistentIdentifier","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV30isSupportsPersistentIdentifierSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/isSupportsPersistentIdentifier":{"role":"symbol","title":"isSupportsPersistentIdentifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsPersistentIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsPersistentIdentifier","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/issupportspersistentidentifier"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/issupportssync.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/issupportssync.json new file mode 100644 index 000000000..4b48287b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/issupportssync.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/issupportssync"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsSync","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsSync","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV14isSupportsSyncSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/isSupportsSync":{"role":"symbol","title":"isSupportsSync","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsSync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/isSupportsSync","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/issupportssync"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/playablemediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/playablemediatypes.json new file mode 100644 index 000000000..a7cc9575f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/playablemediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/playablemediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/playableMediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"playableMediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV18playableMediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/playableMediaTypes":{"role":"symbol","title":"playableMediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/playableMediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/playablemediatypes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/supportedcommands.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/supportedcommands.json new file mode 100644 index 000000000..786421e8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postcapabilitiesparameters/supportedcommands.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO","text":"GeneralCommandType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/supportedcommands"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/supportedCommands","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"title":"supportedCommands","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO26PostCapabilitiesParametersV17supportedCommandsSayAA18GeneralCommandTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters":{"role":"symbol","title":"Paths.PostCapabilitiesParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PostCapabilitiesParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PostCapabilitiesParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/PostCapabilitiesParameters/supportedCommands":{"role":"symbol","title":"supportedCommands","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/PostCapabilitiesParameters\/supportedCommands","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postcapabilitiesparameters\/supportedcommands"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postfullcapabilities(id:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postfullcapabilities(id:_:).json new file mode 100644 index 000000000..9190a0ecb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postfullcapabilities(id:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postFullCapabilities"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","preciseIdentifier":"s:11JellyfinAPI21ClientCapabilitiesDtoV","text":"ClientCapabilitiesDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postfullcapabilities(id:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postFullCapabilities(id:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates capabilities for a device."}],"kind":"symbol","metadata":{"role":"symbol","title":"postFullCapabilities(id:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postFullCapabilities"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ClientCapabilitiesDto","preciseIdentifier":"s:11JellyfinAPI21ClientCapabilitiesDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20postFullCapabilities2id_3Get7RequestVyytGSSSg_AA06ClientF3DtoVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilitiesDto":{"role":"symbol","title":"ClientCapabilitiesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilitiesDto"}],"abstract":[{"type":"text","text":"Client capabilities dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilitiesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilitiesDto"}],"url":"\/documentation\/jellyfinapi\/clientcapabilitiesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postFullCapabilities(id:_:)":{"role":"symbol","title":"postFullCapabilities(id:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postFullCapabilities"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ClientCapabilitiesDto","preciseIdentifier":"s:11JellyfinAPI21ClientCapabilitiesDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates capabilities for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postFullCapabilities(id:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postfullcapabilities(id:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postpingsystem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postpingsystem.json new file mode 100644 index 000000000..dfd5ecc94 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postpingsystem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postpingsystem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postPingSystem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Pings the system."}],"kind":"symbol","metadata":{"role":"symbol","title":"postPingSystem","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14postPingSystem3Get7RequestVySSGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postPingSystem":{"role":"symbol","title":"postPingSystem","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Pings the system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postPingSystem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postpingsystem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postupdatedmedia(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postupdatedmedia(_:).json new file mode 100644 index 000000000..6cc4d787e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postupdatedmedia(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedMedia"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto","preciseIdentifier":"s:11JellyfinAPI18MediaUpdateInfoDtoV","text":"MediaUpdateInfoDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postupdatedmedia(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedMedia(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports that new movies have been added by an external source."}],"kind":"symbol","metadata":{"role":"symbol","title":"postUpdatedMedia(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedMedia"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MediaUpdateInfoDto","preciseIdentifier":"s:11JellyfinAPI18MediaUpdateInfoDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16postUpdatedMediay3Get7RequestVyytGAA0F13UpdateInfoDtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postUpdatedMedia(_:)":{"role":"symbol","title":"postUpdatedMedia(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedMedia"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MediaUpdateInfoDto","preciseIdentifier":"s:11JellyfinAPI18MediaUpdateInfoDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that new movies have been added by an external source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedMedia(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postupdatedmedia(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaUpdateInfoDto":{"role":"symbol","title":"MediaUpdateInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaUpdateInfoDto"}],"abstract":[{"type":"text","text":"Media Update Info Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaUpdateInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaUpdateInfoDto"}],"url":"\/documentation\/jellyfinapi\/mediaupdateinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postupdatedmovies(tmdbid:imdbid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postupdatedmovies(tmdbid:imdbid:).json new file mode 100644 index 000000000..aa25a5e88 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postupdatedmovies(tmdbid:imdbid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postupdatedmovies(tmdbid:imdbid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedMovies(tmdbID:imdbID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports that new movies have been added by an external source."}],"kind":"symbol","metadata":{"role":"symbol","title":"postUpdatedMovies(tmdbID:imdbID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17postUpdatedMovies6tmdbID04imdbH03Get7RequestVyytGSSSg_AKtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postUpdatedMovies(tmdbID:imdbID:)":{"role":"symbol","title":"postUpdatedMovies(tmdbID:imdbID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedMovies"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tmdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that new movies have been added by an external source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedMovies(tmdbID:imdbID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postupdatedmovies(tmdbid:imdbid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postupdatedseries(tvdbid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postupdatedseries(tvdbid:).json new file mode 100644 index 000000000..607be9e85 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postupdatedseries(tvdbid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postupdatedseries(tvdbid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedSeries(tvdbID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports that new episodes of a series have been added by an external source."}],"kind":"symbol","metadata":{"role":"symbol","title":"postUpdatedSeries(tvdbID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17postUpdatedSeries6tvdbID3Get7RequestVyytGSSSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postUpdatedSeries(tvdbID:)":{"role":"symbol","title":"postUpdatedSeries(tvdbID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUpdatedSeries"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tvdbID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that new episodes of a series have been added by an external source."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUpdatedSeries(tvdbID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postupdatedseries(tvdbid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postuserimage(userid:imagetype:index:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postuserimage(userid:imagetype:index:_:).json new file mode 100644 index 000000000..c2b786ee8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postuserimage(userid:imagetype:index:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postuserimage(userid:imagetype:index:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUserImage(userID:imageType:index:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sets the user image."}],"kind":"symbol","metadata":{"role":"symbol","title":"postUserImage(userID:imageType:index:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13postUserImage6userID9imageType5index_3Get7RequestVyytGSS_SSs5Int32VSg10Foundation4DataVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postUserImage(userID:imageType:index:_:)":{"role":"symbol","title":"postUserImage(userID:imageType:index:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUserImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets the user image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUserImage(userID:imageType:index:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postuserimage(userid:imagetype:index:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postuserimagebyindex(userid:imagetype:index:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postuserimagebyindex(userid:imagetype:index:_:).json new file mode 100644 index 000000000..7588541ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/postuserimagebyindex(userid:imagetype:index:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/postuserimagebyindex(userid:imagetype:index:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUserImageByIndex(userID:imageType:index:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sets the user image."}],"kind":"symbol","metadata":{"role":"symbol","title":"postUserImageByIndex(userID:imageType:index:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20postUserImageByIndex6userID9imageType5index_3Get7RequestVyytGSS_SSSi10Foundation4DataVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/postUserImageByIndex(userID:imageType:index:_:)":{"role":"symbol","title":"postUserImageByIndex(userID:imageType:index:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"postUserImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets the user image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/postUserImageByIndex(userID:imageType:index:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/postuserimagebyindex(userid:imagetype:index:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/processconnectionmanagercontrolrequest(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/processconnectionmanagercontrolrequest(serverid:).json new file mode 100644 index 000000000..7f53866f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/processconnectionmanagercontrolrequest(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processConnectionManagerControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/processconnectionmanagercontrolrequest(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processConnectionManagerControlRequest(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Process a connection manager control request."}],"kind":"symbol","metadata":{"role":"symbol","title":"processConnectionManagerControlRequest(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processConnectionManagerControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO38processConnectionManagerControlRequest8serverID3Get0H0VySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/processConnectionManagerControlRequest(serverID:)":{"role":"symbol","title":"processConnectionManagerControlRequest(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processConnectionManagerControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Process a connection manager control request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processConnectionManagerControlRequest(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/processconnectionmanagercontrolrequest(serverid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/processcontentdirectorycontrolrequest(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/processcontentdirectorycontrolrequest(serverid:).json new file mode 100644 index 000000000..5bf08ed02 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/processcontentdirectorycontrolrequest(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processContentDirectoryControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/processcontentdirectorycontrolrequest(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processContentDirectoryControlRequest(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Process a content directory control request."}],"kind":"symbol","metadata":{"role":"symbol","title":"processContentDirectoryControlRequest(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processContentDirectoryControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO37processContentDirectoryControlRequest8serverID3Get0H0VySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/processContentDirectoryControlRequest(serverID:)":{"role":"symbol","title":"processContentDirectoryControlRequest(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processContentDirectoryControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Process a content directory control request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processContentDirectoryControlRequest(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/processcontentdirectorycontrolrequest(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/processmediareceiverregistrarcontrolrequest(serverid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/processmediareceiverregistrarcontrolrequest(serverid:).json new file mode 100644 index 000000000..aa91781d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/processmediareceiverregistrarcontrolrequest(serverid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processMediaReceiverRegistrarControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/processmediareceiverregistrarcontrolrequest(serverid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processMediaReceiverRegistrarControlRequest(serverID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Process a media receiver registrar control request."}],"kind":"symbol","metadata":{"role":"symbol","title":"processMediaReceiverRegistrarControlRequest(serverID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processMediaReceiverRegistrarControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO43processMediaReceiverRegistrarControlRequest8serverID3Get0I0VySSGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/processMediaReceiverRegistrarControlRequest(serverID:)":{"role":"symbol","title":"processMediaReceiverRegistrarControlRequest(serverID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"processMediaReceiverRegistrarControlRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Process a media receiver registrar control request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/processMediaReceiverRegistrarControlRequest(serverID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/processmediareceiverregistrarcontrolrequest(serverid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitem(itemid:parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitem(itemid:parameters:).json new file mode 100644 index 000000000..e4a5f24ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitem(itemid:parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV","text":"RefreshItemParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshitem(itemid:parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/refreshItem(itemID:parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Refreshes metadata for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"refreshItem(itemID:parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RefreshItemParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11refreshItem6itemID10parameters3Get7RequestVyytGSS_AC07RefreshE10ParametersVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/refreshItem(itemID:parameters:)":{"role":"symbol","title":"refreshItem(itemID:parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RefreshItemParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Refreshes metadata for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/refreshItem(itemID:parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitem(itemid:parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters.json new file mode 100644 index 000000000..a76d9ed26 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshitemparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"role":"symbol","title":"Paths.RefreshItemParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO21RefreshItemParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/init(metadataRefreshMode:imageRefreshMode:isReplaceAllMetadata:isReplaceAllImages:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/imageRefreshMode-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/isReplaceAllImages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/isReplaceAllMetadata","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/metadataRefreshMode-swift.property"]},{"title":"Type Aliases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/ImageRefreshMode-swift.typealias","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/MetadataRefreshMode-swift.typealias"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/init(metadataRefreshMode:imageRefreshMode:isReplaceAllMetadata:isReplaceAllImages:)":{"role":"symbol","title":"init(metadataRefreshMode:imageRefreshMode:isReplaceAllMetadata:isReplaceAllImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MetadataRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08MetadataD4Modea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV05ImageD4Modea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isReplaceAllMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/init(metadataRefreshMode:imageRefreshMode:isReplaceAllMetadata:isReplaceAllImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/init(metadatarefreshmode:imagerefreshmode:isreplaceallmetadata:isreplaceallimages:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/metadataRefreshMode-swift.property":{"role":"symbol","title":"metadataRefreshMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MetadataRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08MetadataD4Modea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/metadataRefreshMode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/metadatarefreshmode-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/isReplaceAllImages":{"role":"symbol","title":"isReplaceAllImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/isReplaceAllImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/isreplaceallimages"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/imageRefreshMode-swift.property":{"role":"symbol","title":"imageRefreshMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV05ImageD4Modea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/imageRefreshMode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/imagerefreshmode-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/isReplaceAllMetadata":{"role":"symbol","title":"isReplaceAllMetadata","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReplaceAllMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/isReplaceAllMetadata","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/isreplaceallmetadata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/ImageRefreshMode-swift.typealias":{"role":"symbol","title":"Paths.RefreshItemParameters.ImageRefreshMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/ImageRefreshMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageRefreshMode"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/imagerefreshmode-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/MetadataRefreshMode-swift.typealias":{"role":"symbol","title":"Paths.RefreshItemParameters.MetadataRefreshMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/MetadataRefreshMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/metadatarefreshmode-swift.typealias"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/asquery.json new file mode 100644 index 000000000..e613df046 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21RefreshItemParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/imagerefreshmode-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/imagerefreshmode-swift.property.json new file mode 100644 index 000000000..f85138195 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/imagerefreshmode-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/ImageRefreshMode-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV05ImageD4Modea","text":"ImageRefreshMode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/imagerefreshmode-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/imageRefreshMode-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV05ImageD4Modea"},{"kind":"text","text":"?"}],"title":"imageRefreshMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21RefreshItemParametersV05imageD4ModeAA08MetadatadH0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/imageRefreshMode-swift.property":{"role":"symbol","title":"imageRefreshMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV05ImageD4Modea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/imageRefreshMode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/imagerefreshmode-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/ImageRefreshMode-swift.typealias":{"role":"symbol","title":"Paths.RefreshItemParameters.ImageRefreshMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/ImageRefreshMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageRefreshMode"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/imagerefreshmode-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/imagerefreshmode-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/imagerefreshmode-swift.typealias.json new file mode 100644 index 000000000..7e754632a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/imagerefreshmode-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageRefreshMode"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","preciseIdentifier":"s:11JellyfinAPI19MetadataRefreshModeO","text":"MetadataRefreshMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/imagerefreshmode-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/ImageRefreshMode-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageRefreshMode"}],"title":"Paths.RefreshItemParameters.ImageRefreshMode","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO21RefreshItemParametersV05ImageD4Modea","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ImageRefreshMode"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/ImageRefreshMode-swift.typealias":{"role":"symbol","title":"Paths.RefreshItemParameters.ImageRefreshMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/ImageRefreshMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageRefreshMode"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/imagerefreshmode-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/init(metadatarefreshmode:imagerefreshmode:isreplaceallmetadata:isreplaceallimages:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/init(metadatarefreshmode:imagerefreshmode:isreplaceallmetadata:isreplaceallimages:).json new file mode 100644 index 000000000..88ce146d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/init(metadatarefreshmode:imagerefreshmode:isreplaceallmetadata:isreplaceallimages:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/MetadataRefreshMode-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08MetadataD4Modea","text":"MetadataRefreshMode"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/ImageRefreshMode-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV05ImageD4Modea","text":"ImageRefreshMode"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isReplaceAllMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/init(metadatarefreshmode:imagerefreshmode:isreplaceallmetadata:isreplaceallimages:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/init(metadataRefreshMode:imageRefreshMode:isReplaceAllMetadata:isReplaceAllImages:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MetadataRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08MetadataD4Modea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV05ImageD4Modea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isReplaceAllMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(metadataRefreshMode:imageRefreshMode:isReplaceAllMetadata:isReplaceAllImages:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08metadataD4Mode05imagedH020isReplaceAllMetadata0jkL6ImagesAeA0mdH0OSg_ALSbSgAMtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/ImageRefreshMode-swift.typealias":{"role":"symbol","title":"Paths.RefreshItemParameters.ImageRefreshMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/ImageRefreshMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageRefreshMode"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/imagerefreshmode-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/init(metadataRefreshMode:imageRefreshMode:isReplaceAllMetadata:isReplaceAllImages:)":{"role":"symbol","title":"init(metadataRefreshMode:imageRefreshMode:isReplaceAllMetadata:isReplaceAllImages:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MetadataRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08MetadataD4Modea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV05ImageD4Modea"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isReplaceAllMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/init(metadataRefreshMode:imageRefreshMode:isReplaceAllMetadata:isReplaceAllImages:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/init(metadatarefreshmode:imagerefreshmode:isreplaceallmetadata:isreplaceallimages:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/MetadataRefreshMode-swift.typealias":{"role":"symbol","title":"Paths.RefreshItemParameters.MetadataRefreshMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/MetadataRefreshMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/metadatarefreshmode-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/isreplaceallimages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/isreplaceallimages.json new file mode 100644 index 000000000..2ddf442b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/isreplaceallimages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/isreplaceallimages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/isReplaceAllImages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isReplaceAllImages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21RefreshItemParametersV18isReplaceAllImagesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/isReplaceAllImages":{"role":"symbol","title":"isReplaceAllImages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReplaceAllImages"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/isReplaceAllImages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/isreplaceallimages"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/isreplaceallmetadata.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/isreplaceallmetadata.json new file mode 100644 index 000000000..72adf55c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/isreplaceallmetadata.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReplaceAllMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/isreplaceallmetadata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/isReplaceAllMetadata","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReplaceAllMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isReplaceAllMetadata","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21RefreshItemParametersV20isReplaceAllMetadataSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/isReplaceAllMetadata":{"role":"symbol","title":"isReplaceAllMetadata","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReplaceAllMetadata"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/isReplaceAllMetadata","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/isreplaceallmetadata"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/metadatarefreshmode-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/metadatarefreshmode-swift.property.json new file mode 100644 index 000000000..2a7c121f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/metadatarefreshmode-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/MetadataRefreshMode-swift.typealias","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08MetadataD4Modea","text":"MetadataRefreshMode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/metadatarefreshmode-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/metadataRefreshMode-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MetadataRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08MetadataD4Modea"},{"kind":"text","text":"?"}],"title":"metadataRefreshMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08metadataD4ModeAA08MetadatadH0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/MetadataRefreshMode-swift.typealias":{"role":"symbol","title":"Paths.RefreshItemParameters.MetadataRefreshMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/MetadataRefreshMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/metadatarefreshmode-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/metadataRefreshMode-swift.property":{"role":"symbol","title":"metadataRefreshMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataRefreshMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MetadataRefreshMode","preciseIdentifier":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08MetadataD4Modea"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/metadataRefreshMode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/metadatarefreshmode-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/metadatarefreshmode-swift.typealias.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/metadatarefreshmode-swift.typealias.json new file mode 100644 index 000000000..cb50a5311 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshitemparameters/metadatarefreshmode-swift.typealias.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"},{"kind":"text","text":" = JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","preciseIdentifier":"s:11JellyfinAPI19MetadataRefreshModeO","text":"MetadataRefreshMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/metadatarefreshmode-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/MetadataRefreshMode-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"title":"Paths.RefreshItemParameters.MetadataRefreshMode","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:11JellyfinAPI5PathsO21RefreshItemParametersV08MetadataD4Modea","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters":{"role":"symbol","title":"Paths.RefreshItemParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RefreshItemParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RefreshItemParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataRefreshMode":{"role":"symbol","title":"MetadataRefreshMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataRefreshMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/metadatarefreshmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RefreshItemParameters/MetadataRefreshMode-swift.typealias":{"role":"symbol","title":"Paths.RefreshItemParameters.MetadataRefreshMode","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataRefreshMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RefreshItemParameters\/MetadataRefreshMode-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataRefreshMode"}],"url":"\/documentation\/jellyfinapi\/paths\/refreshitemparameters\/metadatarefreshmode-swift.typealias"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshlibrary.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshlibrary.json new file mode 100644 index 000000000..5e4972b0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/refreshlibrary.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/refreshlibrary"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/refreshLibrary","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Starts a library scan."}],"kind":"symbol","metadata":{"role":"symbol","title":"refreshLibrary","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO14refreshLibrary3Get7RequestVyytGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/refreshLibrary":{"role":"symbol","title":"refreshLibrary","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Starts a library scan."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/refreshLibrary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/refreshlibrary"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removefromcollection(collectionid:ids:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removefromcollection(collectionid:ids:).json new file mode 100644 index 000000000..f03e3eb5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removefromcollection(collectionid:ids:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removefromcollection(collectionid:ids:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeFromCollection(collectionID:ids:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Removes items from a collection."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromCollection(collectionID:ids:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20removeFromCollection12collectionID3ids3Get7RequestVyytGSS_Say10Foundation4UUIDVGtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/removeFromCollection(collectionID:ids:)":{"role":"symbol","title":"removeFromCollection(collectionID:ids:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromCollection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ids"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Removes items from a collection."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeFromCollection(collectionID:ids:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removefromcollection(collectionid:ids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removefromplaylist(playlistid:entryids:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removefromplaylist(playlistid:entryids:).json new file mode 100644 index 000000000..c0bf668c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removefromplaylist(playlistid:entryids:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"entryIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removefromplaylist(playlistid:entryids:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeFromPlaylist(playlistID:entryIDs:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Removes items from a playlist."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromPlaylist(playlistID:entryIDs:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"entryIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18removeFromPlaylist10playlistID8entryIDs3Get7RequestVyytGSS_SaySSGSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/removeFromPlaylist(playlistID:entryIDs:)":{"role":"symbol","title":"removeFromPlaylist(playlistID:entryIDs:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"entryIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Removes items from a playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeFromPlaylist(playlistID:entryIDs:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removefromplaylist(playlistid:entryids:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapath(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapath(parameters:).json new file mode 100644 index 000000000..cb615bb67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapath(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeMediaPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25RemoveMediaPathParametersV","text":"RemoveMediaPathParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removemediapath(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeMediaPath(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Remove a media path."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeMediaPath(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeMediaPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RemoveMediaPathParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25RemoveMediaPathParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15removeMediaPath10parameters3Get7RequestVyytGAC06RemoveeF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/removeMediaPath(parameters:)":{"role":"symbol","title":"removeMediaPath(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeMediaPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RemoveMediaPathParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO25RemoveMediaPathParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Remove a media path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeMediaPath(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapath(parameters:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters":{"role":"symbol","title":"Paths.RemoveMediaPathParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveMediaPathParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveMediaPathParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters.json new file mode 100644 index 000000000..fad860a83 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveMediaPathParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removemediapathparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"RemoveMediaPathParameters"}],"role":"symbol","title":"Paths.RemoveMediaPathParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveMediaPathParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO25RemoveMediaPathParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/init(name:path:isRefreshLibrary:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/isRefreshLibrary","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/path"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters/isRefreshLibrary":{"role":"symbol","title":"isRefreshLibrary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/isRefreshLibrary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/isrefreshlibrary"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters/init(name:path:isRefreshLibrary:)":{"role":"symbol","title":"init(name:path:isRefreshLibrary:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/init(name:path:isRefreshLibrary:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/init(name:path:isrefreshlibrary:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters":{"role":"symbol","title":"Paths.RemoveMediaPathParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveMediaPathParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveMediaPathParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/asquery.json new file mode 100644 index 000000000..25726b509 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25RemoveMediaPathParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters":{"role":"symbol","title":"Paths.RemoveMediaPathParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveMediaPathParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveMediaPathParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/init(name:path:isrefreshlibrary:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/init(name:path:isrefreshlibrary:).json new file mode 100644 index 000000000..991d38a5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/init(name:path:isrefreshlibrary:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/init(name:path:isrefreshlibrary:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/init(name:path:isRefreshLibrary:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(name:path:isRefreshLibrary:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO25RemoveMediaPathParametersV4name4path16isRefreshLibraryAESSSg_AISbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters/init(name:path:isRefreshLibrary:)":{"role":"symbol","title":"init(name:path:isRefreshLibrary:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/init(name:path:isRefreshLibrary:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/init(name:path:isrefreshlibrary:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters":{"role":"symbol","title":"Paths.RemoveMediaPathParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveMediaPathParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveMediaPathParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/isrefreshlibrary.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/isrefreshlibrary.json new file mode 100644 index 000000000..e1fc99e70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/isrefreshlibrary.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/isrefreshlibrary"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/isRefreshLibrary","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRefreshLibrary","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25RemoveMediaPathParametersV16isRefreshLibrarySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters":{"role":"symbol","title":"Paths.RemoveMediaPathParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveMediaPathParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveMediaPathParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters/isRefreshLibrary":{"role":"symbol","title":"isRefreshLibrary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/isRefreshLibrary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/isrefreshlibrary"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/name.json new file mode 100644 index 000000000..708922fba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25RemoveMediaPathParametersV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters":{"role":"symbol","title":"Paths.RemoveMediaPathParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveMediaPathParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveMediaPathParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/path.json new file mode 100644 index 000000000..4b8887c6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removemediapathparameters/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO25RemoveMediaPathParametersV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters":{"role":"symbol","title":"Paths.RemoveMediaPathParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveMediaPathParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveMediaPathParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RemoveMediaPathParameters/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RemoveMediaPathParameters\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removemediapathparameters\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removeuserfromsession(sessionid:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removeuserfromsession(sessionid:userid:).json new file mode 100644 index 000000000..15ae5911e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removeuserfromsession(sessionid:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeUserFromSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removeuserfromsession(sessionid:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeUserFromSession(sessionID:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Removes an additional user from a session."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeUserFromSession(sessionID:userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeUserFromSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21removeUserFromSession9sessionID04userI03Get7RequestVyytGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/removeUserFromSession(sessionID:userID:)":{"role":"symbol","title":"removeUserFromSession(sessionID:userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeUserFromSession"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Removes an additional user from a session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeUserFromSession(sessionID:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removeuserfromsession(sessionid:userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removevirtualfolder(name:isrefreshlibrary:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removevirtualfolder(name:isrefreshlibrary:).json new file mode 100644 index 000000000..fe69d9dfd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/removevirtualfolder(name:isrefreshlibrary:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/removevirtualfolder(name:isrefreshlibrary:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeVirtualFolder(name:isRefreshLibrary:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Removes a virtual folder."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeVirtualFolder(name:isRefreshLibrary:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19removeVirtualFolder4name16isRefreshLibrary3Get7RequestVyytGSSSg_SbSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/removeVirtualFolder(name:isRefreshLibrary:)":{"role":"symbol","title":"removeVirtualFolder(name:isRefreshLibrary:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Removes a virtual folder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/removeVirtualFolder(name:isRefreshLibrary:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/removevirtualfolder(name:isrefreshlibrary:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolder(parameters:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolder(parameters:).json new file mode 100644 index 000000000..b603fadcc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolder(parameters:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"renameVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29RenameVirtualFolderParametersV","text":"RenameVirtualFolderParameters"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/renamevirtualfolder(parameters:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/renameVirtualFolder(parameters:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Renames a virtual folder."}],"kind":"symbol","metadata":{"role":"symbol","title":"renameVirtualFolder(parameters:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"renameVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RenameVirtualFolderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29RenameVirtualFolderParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19renameVirtualFolder10parameters3Get7RequestVyytGAC06RenameeF10ParametersVSg_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters":{"role":"symbol","title":"Paths.RenameVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/renameVirtualFolder(parameters:)":{"role":"symbol","title":"renameVirtualFolder(parameters:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"renameVirtualFolder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"parameters"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RenameVirtualFolderParameters","preciseIdentifier":"s:11JellyfinAPI5PathsO29RenameVirtualFolderParametersV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Renames a virtual folder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/renameVirtualFolder(parameters:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolder(parameters:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters.json new file mode 100644 index 000000000..df5dc89af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"role":"symbol","title":"Paths.RenameVirtualFolderParameters","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"symbolKind":"struct","externalID":"s:11JellyfinAPI5PathsO29RenameVirtualFolderParametersV","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/init(name:newName:isRefreshLibrary:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/asQuery","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/isRefreshLibrary","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/newName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters":{"role":"symbol","title":"Paths.RenameVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/asquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters/isRefreshLibrary":{"role":"symbol","title":"isRefreshLibrary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/isRefreshLibrary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/isrefreshlibrary"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters/init(name:newName:isRefreshLibrary:)":{"role":"symbol","title":"init(name:newName:isRefreshLibrary:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/init(name:newName:isRefreshLibrary:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/init(name:newname:isrefreshlibrary:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters/newName":{"role":"symbol","title":"newName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/newName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/newname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/asquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/asquery.json new file mode 100644 index 000000000..575e8a21a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/asquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/asquery"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/asQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"title":"asQuery","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29RenameVirtualFolderParametersV7asQuerySaySS_SSSgtGvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters":{"role":"symbol","title":"Paths.RenameVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters/asQuery":{"role":"symbol","title":"asQuery","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asQuery"},{"kind":"text","text":": [("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)]"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/asQuery","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/asquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/init(name:newname:isrefreshlibrary:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/init(name:newname:isrefreshlibrary:).json new file mode 100644 index 000000000..7e8abd05a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/init(name:newname:isrefreshlibrary:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/init(name:newname:isrefreshlibrary:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/init(name:newName:isRefreshLibrary:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(name:newName:isRefreshLibrary:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI5PathsO29RenameVirtualFolderParametersV4name7newName16isRefreshLibraryAESSSg_AISbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters":{"role":"symbol","title":"Paths.RenameVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters/init(name:newName:isRefreshLibrary:)":{"role":"symbol","title":"init(name:newName:isRefreshLibrary:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/init(name:newName:isRefreshLibrary:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/init(name:newname:isrefreshlibrary:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/isrefreshlibrary.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/isrefreshlibrary.json new file mode 100644 index 000000000..c5d47423f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/isrefreshlibrary.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/isrefreshlibrary"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/isRefreshLibrary","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRefreshLibrary","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29RenameVirtualFolderParametersV16isRefreshLibrarySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters":{"role":"symbol","title":"Paths.RenameVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters/isRefreshLibrary":{"role":"symbol","title":"isRefreshLibrary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRefreshLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/isRefreshLibrary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/isrefreshlibrary"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/name.json new file mode 100644 index 000000000..030630406 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29RenameVirtualFolderParametersV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters":{"role":"symbol","title":"Paths.RenameVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/newname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/newname.json new file mode 100644 index 000000000..2d018d207 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/renamevirtualfolderparameters/newname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/newname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/newName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"newName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO29RenameVirtualFolderParametersV7newNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters":{"role":"symbol","title":"Paths.RenameVirtualFolderParameters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RenameVirtualFolderParameters"}],"url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/RenameVirtualFolderParameters/newName":{"role":"symbol","title":"newName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/RenameVirtualFolderParameters\/newName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/renamevirtualfolderparameters\/newname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportplaybackprogress(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportplaybackprogress(_:).json new file mode 100644 index 000000000..dd4242e57 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportplaybackprogress(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackProgress"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","preciseIdentifier":"s:11JellyfinAPI20PlaybackProgressInfoV","text":"PlaybackProgressInfo"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/reportplaybackprogress(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackProgress(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports playback progress within a session."}],"kind":"symbol","metadata":{"role":"symbol","title":"reportPlaybackProgress(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackProgress"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackProgressInfo","preciseIdentifier":"s:11JellyfinAPI20PlaybackProgressInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22reportPlaybackProgressy3Get7RequestVyytGAA0eF4InfoVSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/reportPlaybackProgress(_:)":{"role":"symbol","title":"reportPlaybackProgress(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackProgress"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackProgressInfo","preciseIdentifier":"s:11JellyfinAPI20PlaybackProgressInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports playback progress within a session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackProgress(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/reportplaybackprogress(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportplaybackstart(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportplaybackstart(_:).json new file mode 100644 index 000000000..162d9f649 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportplaybackstart(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackStart"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","preciseIdentifier":"s:11JellyfinAPI17PlaybackStartInfoV","text":"PlaybackStartInfo"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/reportplaybackstart(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackStart(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports playback has started within a session."}],"kind":"symbol","metadata":{"role":"symbol","title":"reportPlaybackStart(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackStart"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackStartInfo","preciseIdentifier":"s:11JellyfinAPI17PlaybackStartInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19reportPlaybackStarty3Get7RequestVyytGAA0eF4InfoVSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/reportPlaybackStart(_:)":{"role":"symbol","title":"reportPlaybackStart(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackStart"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackStartInfo","preciseIdentifier":"s:11JellyfinAPI17PlaybackStartInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports playback has started within a session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackStart(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/reportplaybackstart(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportplaybackstopped(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportplaybackstopped(_:).json new file mode 100644 index 000000000..c8e766a4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportplaybackstopped(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackStopped"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","preciseIdentifier":"s:11JellyfinAPI16PlaybackStopInfoV","text":"PlaybackStopInfo"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/reportplaybackstopped(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackStopped(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports playback has stopped within a session."}],"kind":"symbol","metadata":{"role":"symbol","title":"reportPlaybackStopped(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackStopped"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackStopInfo","preciseIdentifier":"s:11JellyfinAPI16PlaybackStopInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21reportPlaybackStoppedy3Get7RequestVyytGAA0E8StopInfoVSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/reportPlaybackStopped(_:)":{"role":"symbol","title":"reportPlaybackStopped(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportPlaybackStopped"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlaybackStopInfo","preciseIdentifier":"s:11JellyfinAPI16PlaybackStopInfoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports playback has stopped within a session."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportPlaybackStopped(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/reportplaybackstopped(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportsessionended.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportsessionended.json new file mode 100644 index 000000000..8c313414f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportsessionended.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportSessionEnded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/reportsessionended"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportSessionEnded","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports that a session has ended."}],"kind":"symbol","metadata":{"role":"symbol","title":"reportSessionEnded","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportSessionEnded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18reportSessionEnded3Get7RequestVyytGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/reportSessionEnded":{"role":"symbol","title":"reportSessionEnded","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportSessionEnded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that a session has ended."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportSessionEnded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/reportsessionended"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportviewing(sessionid:itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportviewing(sessionid:itemid:).json new file mode 100644 index 000000000..d8c8fee12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/reportviewing(sessionid:itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportViewing"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/reportviewing(sessionid:itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportViewing(sessionID:itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reports that a session is viewing an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"reportViewing(sessionID:itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportViewing"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13reportViewing9sessionID04itemG03Get7RequestVyytGSSSg_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/reportViewing(sessionID:itemID:)":{"role":"symbol","title":"reportViewing(sessionID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reportViewing"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Reports that a session is viewing an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/reportViewing(sessionID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/reportviewing(sessionid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/resettuner(tunerid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/resettuner(tunerid:).json new file mode 100644 index 000000000..28d20cdfd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/resettuner(tunerid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"resetTuner"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tunerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/resettuner(tunerid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/resetTuner(tunerID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Resets a tv tuner."}],"kind":"symbol","metadata":{"role":"symbol","title":"resetTuner(tunerID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"resetTuner"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tunerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10resetTuner7tunerID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/resetTuner(tunerID:)":{"role":"symbol","title":"resetTuner(tunerID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"resetTuner"},{"kind":"text","text":"("},{"kind":"externalParam","text":"tunerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Resets a tv tuner."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/resetTuner(tunerID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/resettuner(tunerid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/restartapplication.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/restartapplication.json new file mode 100644 index 000000000..bdf40e786 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/restartapplication.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"restartApplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/restartapplication"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/restartApplication","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Restarts the application."}],"kind":"symbol","metadata":{"role":"symbol","title":"restartApplication","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"restartApplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18restartApplication3Get7RequestVyytGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/restartApplication":{"role":"symbol","title":"restartApplication","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"restartApplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Restarts the application."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/restartApplication","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/restartapplication"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/revokekey(key:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/revokekey(key:).json new file mode 100644 index 000000000..58e522c06 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/revokekey(key:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"revokeKey"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/revokekey(key:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/revokeKey(key:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Remove an api key."}],"kind":"symbol","metadata":{"role":"symbol","title":"revokeKey(key:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"revokeKey"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9revokeKey3key3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/revokeKey(key:)":{"role":"symbol","title":"revokeKey(key:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"revokeKey"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Remove an api key."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/revokeKey(key:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/revokekey(key:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/searchremotesubtitles(itemid:language:isperfectmatch:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/searchremotesubtitles(itemid:language:isperfectmatch:).json new file mode 100644 index 000000000..8cc25f438 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/searchremotesubtitles(itemid:language:isperfectmatch:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","preciseIdentifier":"s:11JellyfinAPI18RemoteSubtitleInfoV","text":"RemoteSubtitleInfo"},{"kind":"text","text":"]>"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/searchremotesubtitles(itemid:language:isperfectmatch:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/searchRemoteSubtitles(itemID:language:isPerfectMatch:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Search remote subtitles."}],"kind":"symbol","metadata":{"role":"symbol","title":"searchRemoteSubtitles(itemID:language:isPerfectMatch:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSubtitleInfo","preciseIdentifier":"s:11JellyfinAPI18RemoteSubtitleInfoV"},{"kind":"text","text":"]>"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21searchRemoteSubtitles6itemID8language14isPerfectMatch3Get7RequestVySayAA0E12SubtitleInfoVGGSS_SSSbSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/searchRemoteSubtitles(itemID:language:isPerfectMatch:)":{"role":"symbol","title":"searchRemoteSubtitles(itemID:language:isPerfectMatch:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchRemoteSubtitles"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoteSubtitleInfo","preciseIdentifier":"s:11JellyfinAPI18RemoteSubtitleInfoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Search remote subtitles."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/searchRemoteSubtitles(itemID:language:isPerfectMatch:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/searchremotesubtitles(itemid:language:isperfectmatch:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendfullgeneralcommand(sessionid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendfullgeneralcommand(sessionid:_:).json new file mode 100644 index 000000000..92b8b63af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendfullgeneralcommand(sessionid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendFullGeneralCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","preciseIdentifier":"s:11JellyfinAPI14GeneralCommandV","text":"GeneralCommand"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/sendfullgeneralcommand(sessionid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendFullGeneralCommand(sessionID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Issues a full general command to a client."}],"kind":"symbol","metadata":{"role":"symbol","title":"sendFullGeneralCommand(sessionID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendFullGeneralCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GeneralCommand","preciseIdentifier":"s:11JellyfinAPI14GeneralCommandV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22sendFullGeneralCommand9sessionID_3Get7RequestVyytGSS_AA0fG0VtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/sendFullGeneralCommand(sessionID:_:)":{"role":"symbol","title":"sendFullGeneralCommand(sessionID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendFullGeneralCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GeneralCommand","preciseIdentifier":"s:11JellyfinAPI14GeneralCommandV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Issues a full general command to a client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendFullGeneralCommand(sessionID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/sendfullgeneralcommand(sessionid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommand":{"role":"symbol","title":"GeneralCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommand"}],"url":"\/documentation\/jellyfinapi\/generalcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendgeneralcommand(sessionid:command:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendgeneralcommand(sessionid:command:).json new file mode 100644 index 000000000..35977091f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendgeneralcommand(sessionid:command:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendGeneralCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/sendgeneralcommand(sessionid:command:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendGeneralCommand(sessionID:command:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Issues a general command to a client."}],"kind":"symbol","metadata":{"role":"symbol","title":"sendGeneralCommand(sessionID:command:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendGeneralCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18sendGeneralCommand9sessionID7command3Get7RequestVyytGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/sendGeneralCommand(sessionID:command:)":{"role":"symbol","title":"sendGeneralCommand(sessionID:command:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendGeneralCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Issues a general command to a client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendGeneralCommand(sessionID:command:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/sendgeneralcommand(sessionid:command:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendmessagecommand(sessionid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendmessagecommand(sessionid:_:).json new file mode 100644 index 000000000..f812e2667 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendmessagecommand(sessionid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendMessageCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","preciseIdentifier":"s:11JellyfinAPI14MessageCommandV","text":"MessageCommand"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/sendmessagecommand(sessionid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendMessageCommand(sessionID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Issues a command to a client to display a message to the user."}],"kind":"symbol","metadata":{"role":"symbol","title":"sendMessageCommand(sessionID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendMessageCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MessageCommand","preciseIdentifier":"s:11JellyfinAPI14MessageCommandV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18sendMessageCommand9sessionID_3Get7RequestVyytGSS_AA0eF0VtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MessageCommand":{"role":"symbol","title":"MessageCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MessageCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MessageCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MessageCommand"}],"url":"\/documentation\/jellyfinapi\/messagecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/sendMessageCommand(sessionID:_:)":{"role":"symbol","title":"sendMessageCommand(sessionID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendMessageCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MessageCommand","preciseIdentifier":"s:11JellyfinAPI14MessageCommandV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Issues a command to a client to display a message to the user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendMessageCommand(sessionID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/sendmessagecommand(sessionid:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendplaystatecommand(sessionid:command:seekpositionticks:controllinguserid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendplaystatecommand(sessionid:command:seekpositionticks:controllinguserid:).json new file mode 100644 index 000000000..b0cabffdb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendplaystatecommand(sessionid:command:seekpositionticks:controllinguserid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendPlaystateCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/sendplaystatecommand(sessionid:command:seekpositionticks:controllinguserid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendPlaystateCommand(sessionID:command:seekPositionTicks:controllingUserID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Issues a playstate command to a client."}],"kind":"symbol","metadata":{"role":"symbol","title":"sendPlaystateCommand(sessionID:command:seekPositionTicks:controllingUserID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendPlaystateCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20sendPlaystateCommand9sessionID7command17seekPositionTicks015controllingUserH03Get7RequestVyytGSS_SSs5Int64VSgSSSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/sendPlaystateCommand(sessionID:command:seekPositionTicks:controllingUserID:)":{"role":"symbol","title":"sendPlaystateCommand(sessionID:command:seekPositionTicks:controllingUserID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendPlaystateCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Issues a playstate command to a client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendPlaystateCommand(sessionID:command:seekPositionTicks:controllingUserID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/sendplaystatecommand(sessionid:command:seekpositionticks:controllinguserid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendsystemcommand(sessionid:command:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendsystemcommand(sessionid:command:).json new file mode 100644 index 000000000..13bd39215 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/sendsystemcommand(sessionid:command:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendSystemCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/sendsystemcommand(sessionid:command:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendSystemCommand(sessionID:command:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Issues a system command to a client."}],"kind":"symbol","metadata":{"role":"symbol","title":"sendSystemCommand(sessionID:command:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendSystemCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17sendSystemCommand9sessionID7command3Get7RequestVyytGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/sendSystemCommand(sessionID:command:)":{"role":"symbol","title":"sendSystemCommand(sessionID:command:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sendSystemCommand"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Issues a system command to a client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/sendSystemCommand(sessionID:command:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/sendsystemcommand(sessionid:command:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setchannelmapping(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setchannelmapping(_:).json new file mode 100644 index 000000000..ab93d5b42 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setchannelmapping(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setChannelMapping"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","preciseIdentifier":"s:11JellyfinAPI20SetChannelMappingDtoV","text":"SetChannelMappingDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/setchannelmapping(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setChannelMapping(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Set channel mappings."}],"kind":"symbol","metadata":{"role":"symbol","title":"setChannelMapping(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setChannelMapping"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetChannelMappingDto","preciseIdentifier":"s:11JellyfinAPI20SetChannelMappingDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17setChannelMappingy3Get7RequestVyAA05TunereF0VGAA03SeteF3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto":{"role":"symbol","title":"SetChannelMappingDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetChannelMappingDto"}],"abstract":[{"type":"text","text":"Set channel mapping dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetChannelMappingDto"}],"url":"\/documentation\/jellyfinapi\/setchannelmappingdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setChannelMapping(_:)":{"role":"symbol","title":"setChannelMapping(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setChannelMapping"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetChannelMappingDto","preciseIdentifier":"s:11JellyfinAPI20SetChannelMappingDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Set channel mappings."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setChannelMapping(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setchannelmapping(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setitemimage(itemid:imagetype:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setitemimage(itemid:imagetype:_:).json new file mode 100644 index 000000000..8fc70c9fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setitemimage(itemid:imagetype:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/setitemimage(itemid:imagetype:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setItemImage(itemID:imageType:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Set item image."}],"kind":"symbol","metadata":{"role":"symbol","title":"setItemImage(itemID:imageType:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12setItemImage6itemID9imageType_3Get7RequestVyytGSS_SS10Foundation4DataVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setItemImage(itemID:imageType:_:)":{"role":"symbol","title":"setItemImage(itemID:imageType:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setItemImage"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Set item image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setItemImage(itemID:imageType:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setitemimage(itemid:imagetype:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setitemimagebyindex(itemid:imagetype:imageindex:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setitemimagebyindex(itemid:imagetype:imageindex:_:).json new file mode 100644 index 000000000..8fb236a33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setitemimagebyindex(itemid:imagetype:imageindex:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/setitemimagebyindex(itemid:imagetype:imageindex:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setItemImageByIndex(itemID:imageType:imageIndex:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Set item image."}],"kind":"symbol","metadata":{"role":"symbol","title":"setItemImageByIndex(itemID:imageType:imageIndex:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19setItemImageByIndex6itemID9imageType0kH0_3Get7RequestVyytGSS_SSSi10Foundation4DataVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setItemImageByIndex(itemID:imageType:imageIndex:_:)":{"role":"symbol","title":"setItemImageByIndex(itemID:imageType:imageIndex:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setItemImageByIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Set item image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setItemImageByIndex(itemID:imageType:imageIndex:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setitemimagebyindex(itemid:imagetype:imageindex:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setread(userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setread(userid:).json new file mode 100644 index 000000000..ee2a9bce8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setread(userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRead"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/setread(userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRead(userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sets notifications as read."}],"kind":"symbol","metadata":{"role":"symbol","title":"setRead(userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRead"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO7setRead6userID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setRead(userID:)":{"role":"symbol","title":"setRead(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRead"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets notifications as read."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRead(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setread(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setremoteaccess(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setremoteaccess(_:).json new file mode 100644 index 000000000..f6f40c6e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setremoteaccess(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRemoteAccess"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto","preciseIdentifier":"s:11JellyfinAPI22StartupRemoteAccessDtoV","text":"StartupRemoteAccessDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/setremoteaccess(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRemoteAccess(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sets remote access and UPnP."}],"kind":"symbol","metadata":{"role":"symbol","title":"setRemoteAccess(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRemoteAccess"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StartupRemoteAccessDto","preciseIdentifier":"s:11JellyfinAPI22StartupRemoteAccessDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15setRemoteAccessy3Get7RequestVyytGAA07StartupeF3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setRemoteAccess(_:)":{"role":"symbol","title":"setRemoteAccess(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRemoteAccess"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StartupRemoteAccessDto","preciseIdentifier":"s:11JellyfinAPI22StartupRemoteAccessDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets remote access and UPnP."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRemoteAccess(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setremoteaccess(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto":{"role":"symbol","title":"StartupRemoteAccessDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupRemoteAccessDto"}],"abstract":[{"type":"text","text":"Startup remote access dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupRemoteAccessDto"}],"url":"\/documentation\/jellyfinapi\/startupremoteaccessdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setrepositories(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setrepositories(_:).json new file mode 100644 index 000000000..bd842df60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setrepositories(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRepositories"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV","text":"RepositoryInfo"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/setrepositories(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRepositories(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sets the enabled and existing package repositories."}],"kind":"symbol","metadata":{"role":"symbol","title":"setRepositories(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRepositories"},{"kind":"text","text":"([JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15setRepositoriesy3Get7RequestVyytGSayAA14RepositoryInfoVGFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setRepositories(_:)":{"role":"symbol","title":"setRepositories(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setRepositories"},{"kind":"text","text":"([JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets the enabled and existing package repositories."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setRepositories(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setrepositories(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setunread(userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setunread(userid:).json new file mode 100644 index 000000000..68396f599 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/setunread(userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setUnread"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/setunread(userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setUnread(userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sets notifications as unread."}],"kind":"symbol","metadata":{"role":"symbol","title":"setUnread(userID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setUnread"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9setUnread6userID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/setUnread(userID:)":{"role":"symbol","title":"setUnread(userID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setUnread"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets notifications as unread."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/setUnread(userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/setunread(userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/shutdownapplication.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/shutdownapplication.json new file mode 100644 index 000000000..13933fb78 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/shutdownapplication.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shutdownApplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/shutdownapplication"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/shutdownApplication","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Shuts down the application."}],"kind":"symbol","metadata":{"role":"symbol","title":"shutdownApplication","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shutdownApplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO19shutdownApplication3Get7RequestVyytGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/shutdownApplication":{"role":"symbol","title":"shutdownApplication","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"shutdownApplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Shuts down the application."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/shutdownApplication","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/shutdownapplication"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/starttask(taskid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/starttask(taskid:).json new file mode 100644 index 000000000..aa990f204 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/starttask(taskid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/starttask(taskid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/startTask(taskID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Start specified task."}],"kind":"symbol","metadata":{"role":"symbol","title":"startTask(taskID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO9startTask6taskID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/startTask(taskID:)":{"role":"symbol","title":"startTask(taskID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Start specified task."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/startTask(taskID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/starttask(taskid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/stopencodingprocess(deviceid:playsessionid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/stopencodingprocess(deviceid:playsessionid:).json new file mode 100644 index 000000000..db7af5a4d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/stopencodingprocess(deviceid:playsessionid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopEncodingProcess"},{"kind":"text","text":"("},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/stopencodingprocess(deviceid:playsessionid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/stopEncodingProcess(deviceID:playSessionID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Stops an active encoding."}],"kind":"symbol","metadata":{"role":"symbol","title":"stopEncodingProcess(deviceID:playSessionID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopEncodingProcess"},{"kind":"text","text":"("},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19stopEncodingProcess8deviceID011playSessionH03Get7RequestVyytGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/stopEncodingProcess(deviceID:playSessionID:)":{"role":"symbol","title":"stopEncodingProcess(deviceID:playSessionID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopEncodingProcess"},{"kind":"text","text":"("},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Stops an active encoding."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/stopEncodingProcess(deviceID:playSessionID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/stopencodingprocess(deviceid:playsessionid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/stoptask(taskid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/stoptask(taskid:).json new file mode 100644 index 000000000..1bd982f26 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/stoptask(taskid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/stoptask(taskid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/stopTask(taskID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Stop specified task."}],"kind":"symbol","metadata":{"role":"symbol","title":"stopTask(taskID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO8stopTask6taskID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/stopTask(taskID:)":{"role":"symbol","title":"stopTask(taskID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Stop specified task."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/stopTask(taskID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/stoptask(taskid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaybuffering(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaybuffering(_:).json new file mode 100644 index 000000000..9c6ce0a31 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaybuffering(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayBuffering"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","preciseIdentifier":"s:11JellyfinAPI16BufferRequestDtoV","text":"BufferRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaybuffering(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayBuffering(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Notify SyncPlay group that member is buffering."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayBuffering(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayBuffering"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BufferRequestDto","preciseIdentifier":"s:11JellyfinAPI16BufferRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17syncPlayBufferingy3Get7RequestVyytGAA06BufferH3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayBuffering(_:)":{"role":"symbol","title":"syncPlayBuffering(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayBuffering"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BufferRequestDto","preciseIdentifier":"s:11JellyfinAPI16BufferRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Notify SyncPlay group that member is buffering."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayBuffering(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaybuffering(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BufferRequestDto":{"role":"symbol","title":"BufferRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BufferRequestDto"}],"abstract":[{"type":"text","text":"Class BufferRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BufferRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BufferRequestDto"}],"url":"\/documentation\/jellyfinapi\/bufferrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaycreategroup(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaycreategroup(_:).json new file mode 100644 index 000000000..7633fde15 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaycreategroup(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayCreateGroup"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto","preciseIdentifier":"s:11JellyfinAPI18NewGroupRequestDtoV","text":"NewGroupRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaycreategroup(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayCreateGroup(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Create a new SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayCreateGroup(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayCreateGroup"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NewGroupRequestDto","preciseIdentifier":"s:11JellyfinAPI18NewGroupRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19syncPlayCreateGroupy3Get7RequestVyytGAA03NewgI3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayCreateGroup(_:)":{"role":"symbol","title":"syncPlayCreateGroup(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayCreateGroup"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NewGroupRequestDto","preciseIdentifier":"s:11JellyfinAPI18NewGroupRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Create a new SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayCreateGroup(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaycreategroup(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/NewGroupRequestDto":{"role":"symbol","title":"NewGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NewGroupRequestDto"}],"abstract":[{"type":"text","text":"Class NewGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NewGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NewGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/newgrouprequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaygetgroups.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaygetgroups.json new file mode 100644 index 000000000..628c039e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaygetgroups.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayGetGroups"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","preciseIdentifier":"s:11JellyfinAPI12GroupInfoDtoV","text":"GroupInfoDto"},{"kind":"text","text":"]> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaygetgroups"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayGetGroups","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets all SyncPlay groups."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayGetGroups","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayGetGroups"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GroupInfoDto","preciseIdentifier":"s:11JellyfinAPI12GroupInfoDtoV"},{"kind":"text","text":"]>"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO17syncPlayGetGroups0F07RequestVySayAA12GroupInfoDtoVGGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupInfoDto":{"role":"symbol","title":"GroupInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupInfoDto"}],"abstract":[{"type":"text","text":"Class GroupInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupInfoDto"}],"url":"\/documentation\/jellyfinapi\/groupinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayGetGroups":{"role":"symbol","title":"syncPlayGetGroups","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayGetGroups"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<[JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"GroupInfoDto","preciseIdentifier":"s:11JellyfinAPI12GroupInfoDtoV"},{"kind":"text","text":"]>"}],"abstract":[{"type":"text","text":"Gets all SyncPlay groups."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayGetGroups","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaygetgroups"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayjoingroup(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayjoingroup(_:).json new file mode 100644 index 000000000..8351d7334 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayjoingroup(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayJoinGroup"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto","preciseIdentifier":"s:11JellyfinAPI19JoinGroupRequestDtoV","text":"JoinGroupRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplayjoingroup(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayJoinGroup(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Join an existing SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayJoinGroup(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayJoinGroup"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"JoinGroupRequestDto","preciseIdentifier":"s:11JellyfinAPI19JoinGroupRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17syncPlayJoinGroupy3Get7RequestVyytGAA0fgI3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/JoinGroupRequestDto":{"role":"symbol","title":"JoinGroupRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"JoinGroupRequestDto"}],"abstract":[{"type":"text","text":"Class JoinGroupRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/JoinGroupRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"JoinGroupRequestDto"}],"url":"\/documentation\/jellyfinapi\/joingrouprequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayJoinGroup(_:)":{"role":"symbol","title":"syncPlayJoinGroup(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayJoinGroup"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"JoinGroupRequestDto","preciseIdentifier":"s:11JellyfinAPI19JoinGroupRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Join an existing SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayJoinGroup(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayjoingroup(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayleavegroup.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayleavegroup.json new file mode 100644 index 000000000..56a249dd8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayleavegroup.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayLeaveGroup"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplayleavegroup"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayLeaveGroup","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Leave the joined SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayLeaveGroup","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayLeaveGroup"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO18syncPlayLeaveGroup3Get7RequestVyytGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayLeaveGroup":{"role":"symbol","title":"syncPlayLeaveGroup","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayLeaveGroup"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Leave the joined SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayLeaveGroup","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayleavegroup"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaymoveplaylistitem(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaymoveplaylistitem(_:).json new file mode 100644 index 000000000..f88f97c2f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaymoveplaylistitem(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayMovePlaylistItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto","preciseIdentifier":"s:11JellyfinAPI26MovePlaylistItemRequestDtoV","text":"MovePlaylistItemRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaymoveplaylistitem(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayMovePlaylistItem(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request to move an item in the playlist in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayMovePlaylistItem(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayMovePlaylistItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MovePlaylistItemRequestDto","preciseIdentifier":"s:11JellyfinAPI26MovePlaylistItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO24syncPlayMovePlaylistItemy3Get7RequestVyytGAA0fghJ3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayMovePlaylistItem(_:)":{"role":"symbol","title":"syncPlayMovePlaylistItem(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayMovePlaylistItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MovePlaylistItemRequestDto","preciseIdentifier":"s:11JellyfinAPI26MovePlaylistItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to move an item in the playlist in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayMovePlaylistItem(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaymoveplaylistitem(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MovePlaylistItemRequestDto":{"role":"symbol","title":"MovePlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class MovePlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MovePlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovePlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/moveplaylistitemrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaynextitem(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaynextitem(_:).json new file mode 100644 index 000000000..55dfc68fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaynextitem(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayNextItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto","preciseIdentifier":"s:11JellyfinAPI18NextItemRequestDtoV","text":"NextItemRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaynextitem(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayNextItem(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request next item in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayNextItem(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayNextItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NextItemRequestDto","preciseIdentifier":"s:11JellyfinAPI18NextItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16syncPlayNextItemy3Get7RequestVyytGAA0fgI3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NextItemRequestDto":{"role":"symbol","title":"NextItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NextItemRequestDto"}],"abstract":[{"type":"text","text":"Class NextItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NextItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NextItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/nextitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayNextItem(_:)":{"role":"symbol","title":"syncPlayNextItem(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayNextItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"NextItemRequestDto","preciseIdentifier":"s:11JellyfinAPI18NextItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request next item in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayNextItem(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaynextitem(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaypause.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaypause.json new file mode 100644 index 000000000..09154218e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaypause.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaypause"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPause","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request pause in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayPause","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO13syncPlayPause3Get7RequestVyytGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayPause":{"role":"symbol","title":"syncPlayPause","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request pause in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaypause"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayping(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayping(_:).json new file mode 100644 index 000000000..1d85a0d2f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayping(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPing"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto","preciseIdentifier":"s:11JellyfinAPI14PingRequestDtoV","text":"PingRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplayping(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPing(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Update session ping."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayPing(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPing"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PingRequestDto","preciseIdentifier":"s:11JellyfinAPI14PingRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12syncPlayPingy3Get7RequestVyytGAA0fH3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayPing(_:)":{"role":"symbol","title":"syncPlayPing(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPing"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PingRequestDto","preciseIdentifier":"s:11JellyfinAPI14PingRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Update session ping."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPing(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayping(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto":{"role":"symbol","title":"PingRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PingRequestDto"}],"abstract":[{"type":"text","text":"Class PingRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PingRequestDto"}],"url":"\/documentation\/jellyfinapi\/pingrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaypreviousitem(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaypreviousitem(_:).json new file mode 100644 index 000000000..bda1de55d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaypreviousitem(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPreviousItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto","preciseIdentifier":"s:11JellyfinAPI22PreviousItemRequestDtoV","text":"PreviousItemRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaypreviousitem(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPreviousItem(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request previous item in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayPreviousItem(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPreviousItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PreviousItemRequestDto","preciseIdentifier":"s:11JellyfinAPI22PreviousItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20syncPlayPreviousItemy3Get7RequestVyytGAA0fgI3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayPreviousItem(_:)":{"role":"symbol","title":"syncPlayPreviousItem(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayPreviousItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PreviousItemRequestDto","preciseIdentifier":"s:11JellyfinAPI22PreviousItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request previous item in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayPreviousItem(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaypreviousitem(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto":{"role":"symbol","title":"PreviousItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PreviousItemRequestDto"}],"abstract":[{"type":"text","text":"Class PreviousItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PreviousItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/previousitemrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayqueue(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayqueue(_:).json new file mode 100644 index 000000000..7a51f178f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayqueue(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayQueue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto","preciseIdentifier":"s:11JellyfinAPI15QueueRequestDtoV","text":"QueueRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplayqueue(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayQueue(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request to queue items to the playlist of a SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayQueue(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayQueue"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"QueueRequestDto","preciseIdentifier":"s:11JellyfinAPI15QueueRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13syncPlayQueuey3Get7RequestVyytGAA0fH3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayQueue(_:)":{"role":"symbol","title":"syncPlayQueue(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayQueue"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"QueueRequestDto","preciseIdentifier":"s:11JellyfinAPI15QueueRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to queue items to the playlist of a SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayQueue(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayqueue(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto":{"role":"symbol","title":"QueueRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueRequestDto"}],"abstract":[{"type":"text","text":"Class QueueRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueRequestDto"}],"url":"\/documentation\/jellyfinapi\/queuerequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayready(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayready(_:).json new file mode 100644 index 000000000..fa7f0c0c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayready(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","preciseIdentifier":"s:11JellyfinAPI15ReadyRequestDtoV","text":"ReadyRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplayready(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayReady(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Notify SyncPlay group that member is ready for playback."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayReady(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayReady"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ReadyRequestDto","preciseIdentifier":"s:11JellyfinAPI15ReadyRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13syncPlayReadyy3Get7RequestVyytGAA0fH3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayReady(_:)":{"role":"symbol","title":"syncPlayReady(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayReady"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ReadyRequestDto","preciseIdentifier":"s:11JellyfinAPI15ReadyRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Notify SyncPlay group that member is ready for playback."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayReady(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayready(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto":{"role":"symbol","title":"ReadyRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"abstract":[{"type":"text","text":"Class ReadyRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ReadyRequestDto"}],"url":"\/documentation\/jellyfinapi\/readyrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayremovefromplaylist(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayremovefromplaylist(_:).json new file mode 100644 index 000000000..9e56be60b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayremovefromplaylist(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayRemoveFromPlaylist"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","preciseIdentifier":"s:11JellyfinAPI28RemoveFromPlaylistRequestDtoV","text":"RemoveFromPlaylistRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplayremovefromplaylist(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayRemoveFromPlaylist(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request to remove items from the playlist in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayRemoveFromPlaylist(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayRemoveFromPlaylist"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoveFromPlaylistRequestDto","preciseIdentifier":"s:11JellyfinAPI28RemoveFromPlaylistRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26syncPlayRemoveFromPlaylisty3Get7RequestVyytGAA0fghJ3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto":{"role":"symbol","title":"RemoveFromPlaylistRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"abstract":[{"type":"text","text":"Class RemoveFromPlaylistRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayRemoveFromPlaylist(_:)":{"role":"symbol","title":"syncPlayRemoveFromPlaylist(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayRemoveFromPlaylist"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"RemoveFromPlaylistRequestDto","preciseIdentifier":"s:11JellyfinAPI28RemoveFromPlaylistRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to remove items from the playlist in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayRemoveFromPlaylist(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayremovefromplaylist(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayseek(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayseek(_:).json new file mode 100644 index 000000000..6f143f2e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayseek(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySeek"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto","preciseIdentifier":"s:11JellyfinAPI14SeekRequestDtoV","text":"SeekRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplayseek(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySeek(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request seek in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlaySeek(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySeek"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeekRequestDto","preciseIdentifier":"s:11JellyfinAPI14SeekRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12syncPlaySeeky3Get7RequestVyytGAA0fH3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto":{"role":"symbol","title":"SeekRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeekRequestDto"}],"abstract":[{"type":"text","text":"Class SeekRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeekRequestDto"}],"url":"\/documentation\/jellyfinapi\/seekrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySeek(_:)":{"role":"symbol","title":"syncPlaySeek(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySeek"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeekRequestDto","preciseIdentifier":"s:11JellyfinAPI14SeekRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request seek in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySeek(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayseek(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetignorewait(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetignorewait(_:).json new file mode 100644 index 000000000..86e018533 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetignorewait(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetIgnoreWait"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto","preciseIdentifier":"s:11JellyfinAPI20IgnoreWaitRequestDtoV","text":"IgnoreWaitRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaysetignorewait(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetIgnoreWait(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request SyncPlay group to ignore member during group-wait."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlaySetIgnoreWait(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetIgnoreWait"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"IgnoreWaitRequestDto","preciseIdentifier":"s:11JellyfinAPI20IgnoreWaitRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21syncPlaySetIgnoreWaity3Get7RequestVyytGAA0ghJ3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/IgnoreWaitRequestDto":{"role":"symbol","title":"IgnoreWaitRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"abstract":[{"type":"text","text":"Class IgnoreWaitRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/IgnoreWaitRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IgnoreWaitRequestDto"}],"url":"\/documentation\/jellyfinapi\/ignorewaitrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySetIgnoreWait(_:)":{"role":"symbol","title":"syncPlaySetIgnoreWait(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetIgnoreWait"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"IgnoreWaitRequestDto","preciseIdentifier":"s:11JellyfinAPI20IgnoreWaitRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request SyncPlay group to ignore member during group-wait."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetIgnoreWait(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaysetignorewait(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetnewqueue(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetnewqueue(_:).json new file mode 100644 index 000000000..bcad34a5a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetnewqueue(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetNewQueue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","preciseIdentifier":"s:11JellyfinAPI14PlayRequestDtoV","text":"PlayRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaysetnewqueue(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetNewQueue(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request to set new playlist in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlaySetNewQueue(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetNewQueue"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlayRequestDto","preciseIdentifier":"s:11JellyfinAPI14PlayRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19syncPlaySetNewQueuey3Get7RequestVyytGAA0eJ3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto":{"role":"symbol","title":"PlayRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequestDto"}],"abstract":[{"type":"text","text":"Class PlayRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequestDto"}],"url":"\/documentation\/jellyfinapi\/playrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySetNewQueue(_:)":{"role":"symbol","title":"syncPlaySetNewQueue(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetNewQueue"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"PlayRequestDto","preciseIdentifier":"s:11JellyfinAPI14PlayRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to set new playlist in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetNewQueue(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaysetnewqueue(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetplaylistitem(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetplaylistitem(_:).json new file mode 100644 index 000000000..d0e3d641a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetplaylistitem(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetPlaylistItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto","preciseIdentifier":"s:11JellyfinAPI25SetPlaylistItemRequestDtoV","text":"SetPlaylistItemRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaysetplaylistitem(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetPlaylistItem(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request to change playlist item in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlaySetPlaylistItem(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetPlaylistItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetPlaylistItemRequestDto","preciseIdentifier":"s:11JellyfinAPI25SetPlaylistItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO23syncPlaySetPlaylistItemy3Get7RequestVyytGAA0fghJ3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto":{"role":"symbol","title":"SetPlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class SetPlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySetPlaylistItem(_:)":{"role":"symbol","title":"syncPlaySetPlaylistItem(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetPlaylistItem"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetPlaylistItemRequestDto","preciseIdentifier":"s:11JellyfinAPI25SetPlaylistItemRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to change playlist item in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetPlaylistItem(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaysetplaylistitem(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetrepeatmode(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetrepeatmode(_:).json new file mode 100644 index 000000000..9c8846727 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetrepeatmode(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetRepeatMode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto","preciseIdentifier":"s:11JellyfinAPI23SetRepeatModeRequestDtoV","text":"SetRepeatModeRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaysetrepeatmode(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetRepeatMode(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request to set repeat mode in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlaySetRepeatMode(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetRepeatMode"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetRepeatModeRequestDto","preciseIdentifier":"s:11JellyfinAPI23SetRepeatModeRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21syncPlaySetRepeatModey3Get7RequestVyytGAA0fghJ3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySetRepeatMode(_:)":{"role":"symbol","title":"syncPlaySetRepeatMode(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetRepeatMode"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetRepeatModeRequestDto","preciseIdentifier":"s:11JellyfinAPI23SetRepeatModeRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to set repeat mode in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetRepeatMode(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaysetrepeatmode(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto":{"role":"symbol","title":"SetRepeatModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetRepeatModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetshufflemode(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetshufflemode(_:).json new file mode 100644 index 000000000..b19641afa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaysetshufflemode(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetShuffleMode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto","preciseIdentifier":"s:11JellyfinAPI24SetShuffleModeRequestDtoV","text":"SetShuffleModeRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaysetshufflemode(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetShuffleMode(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request to set shuffle mode in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlaySetShuffleMode(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetShuffleMode"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetShuffleModeRequestDto","preciseIdentifier":"s:11JellyfinAPI24SetShuffleModeRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22syncPlaySetShuffleModey3Get7RequestVyytGAA0fghJ3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto":{"role":"symbol","title":"SetShuffleModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetShuffleModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlaySetShuffleMode(_:)":{"role":"symbol","title":"syncPlaySetShuffleMode(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlaySetShuffleMode"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SetShuffleModeRequestDto","preciseIdentifier":"s:11JellyfinAPI24SetShuffleModeRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request to set shuffle mode in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlaySetShuffleMode(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaysetshufflemode(_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaystop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaystop.json new file mode 100644 index 000000000..1dd5c1bd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplaystop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayStop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplaystop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayStop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request stop in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayStop","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayStop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO12syncPlayStop3Get7RequestVyytGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayStop":{"role":"symbol","title":"syncPlayStop","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayStop"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request stop in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayStop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplaystop"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayunpause.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayunpause.json new file mode 100644 index 000000000..7c37a7aac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/syncplayunpause.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayUnpause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/syncplayunpause"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayUnpause","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Request unpause in SyncPlay group."}],"kind":"symbol","metadata":{"role":"symbol","title":"syncPlayUnpause","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayUnpause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO15syncPlayUnpause3Get7RequestVyytGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/syncPlayUnpause":{"role":"symbol","title":"syncPlayUnpause","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayUnpause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Request unpause in SyncPlay group."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/syncPlayUnpause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/syncplayunpause"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/tmdbclientconfiguration.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/tmdbclientconfiguration.json new file mode 100644 index 000000000..fac07bde2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/tmdbclientconfiguration.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tmdbClientConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/tmdbclientconfiguration"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/tmdbClientConfiguration","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the TMDb image configuration options."}],"kind":"symbol","metadata":{"role":"symbol","title":"tmdbClientConfiguration","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tmdbClientConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"property","externalID":"s:11JellyfinAPI5PathsO23tmdbClientConfiguration3Get7RequestVyAA16ConfigImageTypesVGvpZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/tmdbClientConfiguration":{"role":"symbol","title":"tmdbClientConfiguration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tmdbClientConfiguration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Gets the TMDb image configuration options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/tmdbClientConfiguration","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/tmdbclientconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ConfigImageTypes":{"role":"symbol","title":"ConfigImageTypes","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ConfigImageTypes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ConfigImageTypes","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ConfigImageTypes"}],"url":"\/documentation\/jellyfinapi\/configimagetypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uninstallplugin(pluginid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uninstallplugin(pluginid:).json new file mode 100644 index 000000000..587cd87d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uninstallplugin(pluginid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uninstallPlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/uninstallplugin(pluginid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uninstallPlugin(pluginID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Uninstalls a plugin."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"uninstallPlugin(pluginID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uninstallPlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15uninstallPlugin8pluginID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","platforms":[]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated"}]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/uninstallPlugin(pluginID:)":{"role":"symbol","title":"uninstallPlugin(pluginID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uninstallPlugin"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Uninstalls a plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uninstallPlugin(pluginID:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/jellyfinapi\/paths\/uninstallplugin(pluginid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uninstallpluginbyversion(pluginid:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uninstallpluginbyversion(pluginid:version:).json new file mode 100644 index 000000000..2c09b0dfb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uninstallpluginbyversion(pluginid:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uninstallPluginByVersion"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/uninstallpluginbyversion(pluginid:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uninstallPluginByVersion(pluginID:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Uninstalls a plugin by version."}],"kind":"symbol","metadata":{"role":"symbol","title":"uninstallPluginByVersion(pluginID:version:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uninstallPluginByVersion"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO24uninstallPluginByVersion8pluginID7version3Get7RequestVyytGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/uninstallPluginByVersion(pluginID:version:)":{"role":"symbol","title":"uninstallPluginByVersion(pluginID:version:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uninstallPluginByVersion"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Uninstalls a plugin by version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uninstallPluginByVersion(pluginID:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/uninstallpluginbyversion(pluginid:version:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/unmarkfavoriteitem(userid:itemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/unmarkfavoriteitem(userid:itemid:).json new file mode 100644 index 000000000..1dbf266c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/unmarkfavoriteitem(userid:itemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unmarkFavoriteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/unmarkfavoriteitem(userid:itemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/unmarkFavoriteItem(userID:itemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Unmarks item as a favorite."}],"kind":"symbol","metadata":{"role":"symbol","title":"unmarkFavoriteItem(userID:itemID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unmarkFavoriteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18unmarkFavoriteItem6userID04itemH03Get7RequestVyAA04UserF7DataDtoVGSS_SStFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/unmarkFavoriteItem(userID:itemID:)":{"role":"symbol","title":"unmarkFavoriteItem(userID:itemID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unmarkFavoriteItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Unmarks item as a favorite."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/unmarkFavoriteItem(userID:itemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/unmarkfavoriteitem(userid:itemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateconfiguration(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateconfiguration(_:).json new file mode 100644 index 000000000..c990f55ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateconfiguration(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","preciseIdentifier":"s:11JellyfinAPI19ServerConfigurationV","text":"ServerConfiguration"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateconfiguration(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateConfiguration(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates application configuration."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateConfiguration(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateConfiguration"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ServerConfiguration","preciseIdentifier":"s:11JellyfinAPI19ServerConfigurationV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19updateConfigurationy3Get7RequestVyytGAA06ServerE0VFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateConfiguration(_:)":{"role":"symbol","title":"updateConfiguration(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateConfiguration"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ServerConfiguration","preciseIdentifier":"s:11JellyfinAPI19ServerConfigurationV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates application configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateConfiguration(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateconfiguration(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatedeviceoptions(id:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatedeviceoptions(id:_:).json new file mode 100644 index 000000000..52fb9883a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatedeviceoptions(id:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateDeviceOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","preciseIdentifier":"s:11JellyfinAPI16DeviceOptionsDtoV","text":"DeviceOptionsDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updatedeviceoptions(id:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateDeviceOptions(id:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Update device options."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateDeviceOptions(id:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateDeviceOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceOptionsDto","preciseIdentifier":"s:11JellyfinAPI16DeviceOptionsDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO19updateDeviceOptions2id_3Get7RequestVyytGSS_AA0eF3DtoVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateDeviceOptions(id:_:)":{"role":"symbol","title":"updateDeviceOptions(id:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateDeviceOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceOptionsDto","preciseIdentifier":"s:11JellyfinAPI16DeviceOptionsDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Update device options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateDeviceOptions(id:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatedeviceoptions(id:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceOptionsDto":{"role":"symbol","title":"DeviceOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceOptionsDto"}],"abstract":[{"type":"text","text":"A dto representing custom options for a device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceOptionsDto"}],"url":"\/documentation\/jellyfinapi\/deviceoptionsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatedisplaypreferences(displaypreferencesid:userid:client:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatedisplaypreferences(displaypreferencesid:userid:client:_:).json new file mode 100644 index 000000000..5099f06ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatedisplaypreferences(displaypreferencesid:userid:client:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateDisplayPreferences"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","preciseIdentifier":"s:11JellyfinAPI21DisplayPreferencesDtoV","text":"DisplayPreferencesDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updatedisplaypreferences(displaypreferencesid:userid:client:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateDisplayPreferences(displayPreferencesID:userID:client:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Update Display Preferences."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateDisplayPreferences(displayPreferencesID:userID:client:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateDisplayPreferences"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DisplayPreferencesDto","preciseIdentifier":"s:11JellyfinAPI21DisplayPreferencesDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO24updateDisplayPreferences07displayF2ID04userH06client_3Get7RequestVyytGSS_10Foundation4UUIDVSSAA0eF3DtoVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DisplayPreferencesDto":{"role":"symbol","title":"DisplayPreferencesDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DisplayPreferencesDto"}],"abstract":[{"type":"text","text":"Defines the display preferences for any item that supports them (usually Folders)."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DisplayPreferencesDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DisplayPreferencesDto"}],"url":"\/documentation\/jellyfinapi\/displaypreferencesdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateDisplayPreferences(displayPreferencesID:userID:client:_:)":{"role":"symbol","title":"updateDisplayPreferences(displayPreferencesID:userID:client:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateDisplayPreferences"},{"kind":"text","text":"("},{"kind":"externalParam","text":"displayPreferencesID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DisplayPreferencesDto","preciseIdentifier":"s:11JellyfinAPI21DisplayPreferencesDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Update Display Preferences."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateDisplayPreferences(displayPreferencesID:userID:client:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatedisplaypreferences(displaypreferencesid:userid:client:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateinitialconfiguration(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateinitialconfiguration(_:).json new file mode 100644 index 000000000..fe825747f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateinitialconfiguration(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateInitialConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","preciseIdentifier":"s:11JellyfinAPI23StartupConfigurationDtoV","text":"StartupConfigurationDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateinitialconfiguration(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateInitialConfiguration(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sets the initial startup wizard configuration."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateInitialConfiguration(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateInitialConfiguration"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StartupConfigurationDto","preciseIdentifier":"s:11JellyfinAPI23StartupConfigurationDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO26updateInitialConfigurationy3Get7RequestVyytGAA07StartupF3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateInitialConfiguration(_:)":{"role":"symbol","title":"updateInitialConfiguration(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateInitialConfiguration"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StartupConfigurationDto","preciseIdentifier":"s:11JellyfinAPI23StartupConfigurationDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets the initial startup wizard configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateInitialConfiguration(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateinitialconfiguration(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto":{"role":"symbol","title":"StartupConfigurationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"abstract":[{"type":"text","text":"The startup configuration DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupConfigurationDto"}],"url":"\/documentation\/jellyfinapi\/startupconfigurationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateitem(itemid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateitem(itemid:_:).json new file mode 100644 index 000000000..45b772c56 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateitem(itemid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateitem(itemid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItem(itemID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateItem(itemID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10updateItem6itemID_3Get7RequestVyytGSS_AA04BaseE3DtoVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateItem(itemID:_:)":{"role":"symbol","title":"updateItem(itemID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItem"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItem(itemID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateitem(itemid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateitemcontenttype(itemid:contenttype:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateitemcontenttype(itemid:contenttype:).json new file mode 100644 index 000000000..3305121eb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateitemcontenttype(itemid:contenttype:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItemContentType"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateitemcontenttype(itemid:contenttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItemContentType(itemID:contentType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates an item’s content type."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateItemContentType(itemID:contentType:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItemContentType"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO21updateItemContentType6itemID07contentG03Get7RequestVyytGSS_SSSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateItemContentType(itemID:contentType:)":{"role":"symbol","title":"updateItemContentType(itemID:contentType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItemContentType"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates an item’s content type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItemContentType(itemID:contentType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateitemcontenttype(itemid:contenttype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateitemimageindex(itemid:imagetype:imageindex:newindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateitemimageindex(itemid:imagetype:imageindex:newindex:).json new file mode 100644 index 000000000..961d73c5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateitemimageindex(itemid:imagetype:imageindex:newindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItemImageIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateitemimageindex(itemid:imagetype:imageindex:newindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItemImageIndex(itemID:imageType:imageIndex:newIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates the index for an item image."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateItemImageIndex(itemID:imageType:imageIndex:newIndex:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItemImageIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20updateItemImageIndex6itemID9imageType0jG003newG03Get7RequestVyytGSS_SSSis5Int32VtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateItemImageIndex(itemID:imageType:imageIndex:newIndex:)":{"role":"symbol","title":"updateItemImageIndex(itemID:imageType:imageIndex:newIndex:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateItemImageIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"imageIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"newIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates the index for an item image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateItemImageIndex(itemID:imageType:imageIndex:newIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateitemimageindex(itemid:imagetype:imageindex:newindex:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatelibraryoptions(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatelibraryoptions(_:).json new file mode 100644 index 000000000..b2f62d661 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatelibraryoptions(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateLibraryOptions"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","preciseIdentifier":"s:11JellyfinAPI23UpdateLibraryOptionsDtoV","text":"UpdateLibraryOptionsDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updatelibraryoptions(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateLibraryOptions(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Update library options."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateLibraryOptions(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateLibraryOptions"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateLibraryOptionsDto","preciseIdentifier":"s:11JellyfinAPI23UpdateLibraryOptionsDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20updateLibraryOptionsy3Get7RequestVyytGAA06UpdateeF3DtoVSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateLibraryOptions(_:)":{"role":"symbol","title":"updateLibraryOptions(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateLibraryOptions"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateLibraryOptionsDto","preciseIdentifier":"s:11JellyfinAPI23UpdateLibraryOptionsDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Update library options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateLibraryOptions(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatelibraryoptions(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto":{"role":"symbol","title":"UpdateLibraryOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatemediaencoderpath(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatemediaencoderpath(_:).json new file mode 100644 index 000000000..7aca5799b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatemediaencoderpath(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateMediaEncoderPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto","preciseIdentifier":"s:11JellyfinAPI19MediaEncoderPathDtoV","text":"MediaEncoderPathDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updatemediaencoderpath(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateMediaEncoderPath(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates the path to the media encoder."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateMediaEncoderPath(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateMediaEncoderPath"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MediaEncoderPathDto","preciseIdentifier":"s:11JellyfinAPI19MediaEncoderPathDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22updateMediaEncoderPathy3Get7RequestVyytGAA0efG3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateMediaEncoderPath(_:)":{"role":"symbol","title":"updateMediaEncoderPath(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateMediaEncoderPath"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"MediaEncoderPathDto","preciseIdentifier":"s:11JellyfinAPI19MediaEncoderPathDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates the path to the media encoder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateMediaEncoderPath(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatemediaencoderpath(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaEncoderPathDto":{"role":"symbol","title":"MediaEncoderPathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaEncoderPathDto"}],"abstract":[{"type":"text","text":"Media Encoder Path Dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaEncoderPathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaEncoderPathDto"}],"url":"\/documentation\/jellyfinapi\/mediaencoderpathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatemediapath(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatemediapath(_:).json new file mode 100644 index 000000000..72ebafd1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatemediapath(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateMediaPath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto","preciseIdentifier":"s:11JellyfinAPI25UpdateMediaPathRequestDtoV","text":"UpdateMediaPathRequestDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updatemediapath(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateMediaPath(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates a media path."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateMediaPath(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateMediaPath"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateMediaPathRequestDto","preciseIdentifier":"s:11JellyfinAPI25UpdateMediaPathRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO15updateMediaPathy3Get7RequestVyytGAA06UpdateefH3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto":{"role":"symbol","title":"UpdateMediaPathRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateMediaPath(_:)":{"role":"symbol","title":"updateMediaPath(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateMediaPath"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateMediaPathRequestDto","preciseIdentifier":"s:11JellyfinAPI25UpdateMediaPathRequestDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a media path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateMediaPath(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatemediapath(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatenamedconfiguration(key:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatenamedconfiguration(key:_:).json new file mode 100644 index 000000000..111656e15 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatenamedconfiguration(key:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateNamedConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO","text":"AnyJSON"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updatenamedconfiguration(key:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateNamedConfiguration(key:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates named configuration."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateNamedConfiguration(key:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateNamedConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO24updateNamedConfiguration3key_3Get7RequestVyytGSS_AA7AnyJSONOtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateNamedConfiguration(key:_:)":{"role":"symbol","title":"updateNamedConfiguration(key:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateNamedConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AnyJSON","preciseIdentifier":"s:11JellyfinAPI7AnyJSONO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates named configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateNamedConfiguration(key:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatenamedconfiguration(key:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/AnyJSON":{"role":"symbol","title":"AnyJSON","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyJSON"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AnyJSON","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyJSON"}],"url":"\/documentation\/jellyfinapi\/anyjson"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatepluginconfiguration(pluginid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatepluginconfiguration(pluginid:).json new file mode 100644 index 000000000..63969c880 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatepluginconfiguration(pluginid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updatePluginConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Accepts plugin configuration as JSON body."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updatepluginconfiguration(pluginid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updatePluginConfiguration(pluginID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates plugin configuration."}],"kind":"symbol","metadata":{"role":"symbol","title":"updatePluginConfiguration(pluginID:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updatePluginConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO25updatePluginConfiguration8pluginID3Get7RequestVyytGSS_tFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updatePluginConfiguration(pluginID:)":{"role":"symbol","title":"updatePluginConfiguration(pluginID:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updatePluginConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"pluginID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates plugin configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updatePluginConfiguration(pluginID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatepluginconfiguration(pluginid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateprofile(profileid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateprofile(profileid:_:).json new file mode 100644 index 000000000..09338e44a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateprofile(profileid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV","text":"DeviceProfile"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateprofile(profileid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateProfile(profileID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates a profile."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateProfile(profileID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO13updateProfile9profileID_3Get7RequestVyytGSS_AA06DeviceE0VSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateProfile(profileID:_:)":{"role":"symbol","title":"updateProfile(profileID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateProfile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"profileID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a profile."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateProfile(profileID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateprofile(profileid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateseriestimer(timerid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateseriestimer(timerid:_:).json new file mode 100644 index 000000000..2ab50523a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateseriestimer(timerid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV","text":"SeriesTimerInfoDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateseriestimer(timerid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateSeriesTimer(timerID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates a live tv series timer."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateSeriesTimer(timerID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17updateSeriesTimer7timerID_3Get7RequestVyytGSS_AA0eF7InfoDtoVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateSeriesTimer(timerID:_:)":{"role":"symbol","title":"updateSeriesTimer(timerID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateSeriesTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a live tv series timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateSeriesTimer(timerID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateseriestimer(timerid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatestartupuser(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatestartupuser(_:).json new file mode 100644 index 000000000..c71ccd682 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatestartupuser(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateStartupUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","preciseIdentifier":"s:11JellyfinAPI14StartupUserDtoV","text":"StartupUserDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updatestartupuser(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateStartupUser(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sets the user name and password."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateStartupUser(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateStartupUser"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StartupUserDto","preciseIdentifier":"s:11JellyfinAPI14StartupUserDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO17updateStartupUsery3Get7RequestVyytGAA0eF3DtoVSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateStartupUser(_:)":{"role":"symbol","title":"updateStartupUser(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateStartupUser"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StartupUserDto","preciseIdentifier":"s:11JellyfinAPI14StartupUserDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Sets the user name and password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateStartupUser(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatestartupuser(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto":{"role":"symbol","title":"StartupUserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"abstract":[{"type":"text","text":"The startup user DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupUserDto"}],"url":"\/documentation\/jellyfinapi\/startupuserdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatetask(taskid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatetask(taskid:_:).json new file mode 100644 index 000000000..a6c89f7ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatetask(taskid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV","text":"TaskTriggerInfo"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updatetask(taskid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateTask(taskID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Update specified task triggers."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateTask(taskID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10updateTask6taskID_3Get7RequestVyytGSS_SayAA0E11TriggerInfoVGtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateTask(taskID:_:)":{"role":"symbol","title":"updateTask(taskID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateTask"},{"kind":"text","text":"("},{"kind":"externalParam","text":"taskID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", [JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Update specified task triggers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateTask(taskID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatetask(taskid:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatetimer(timerid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatetimer(timerid:_:).json new file mode 100644 index 000000000..2fa8a6a13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updatetimer(timerid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV","text":"TimerInfoDto"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updatetimer(timerid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateTimer(timerID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates a live tv timer."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateTimer(timerID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO11updateTimer7timerID_3Get7RequestVyytGSS_AA0E7InfoDtoVSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateTimer(timerID:_:)":{"role":"symbol","title":"updateTimer(timerID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateTimer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a live tv timer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateTimer(timerID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updatetimer(timerid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuser(userid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuser(userid:_:).json new file mode 100644 index 000000000..6b5c2c97f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuser(userid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV","text":"UserDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateuser(userid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUser(userID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates a user."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateUser(userID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO10updateUser6userID_3Get7RequestVyytGSS_AA0E3DtoVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUser(userID:_:)":{"role":"symbol","title":"updateUser(userID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUser"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserDto","preciseIdentifier":"s:11JellyfinAPI7UserDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUser(userID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateuser(userid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuserconfiguration(userid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuserconfiguration(userid:_:).json new file mode 100644 index 000000000..66d2be163 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuserconfiguration(userid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV","text":"UserConfiguration"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateuserconfiguration(userid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserConfiguration(userID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates a user configuration."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateUserConfiguration(userID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO23updateUserConfiguration6userID_3Get7RequestVyytGSS_AA0eF0VtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUserConfiguration(userID:_:)":{"role":"symbol","title":"updateUserConfiguration(userID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserConfiguration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a user configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserConfiguration(userID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateuserconfiguration(userid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateusereasypassword(userid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateusereasypassword(userid:_:).json new file mode 100644 index 000000000..13cb974c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateusereasypassword(userid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserEasyPassword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","preciseIdentifier":"s:11JellyfinAPI22UpdateUserEasyPasswordV","text":"UpdateUserEasyPassword"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateusereasypassword(userid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserEasyPassword(userID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates a user’s easy password."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateUserEasyPassword(userID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserEasyPassword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateUserEasyPassword","preciseIdentifier":"s:11JellyfinAPI22UpdateUserEasyPasswordV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO22updateUserEasyPassword6userID_3Get7RequestVyytGSS_AA06UpdateefG0VtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword":{"role":"symbol","title":"UpdateUserEasyPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserEasyPassword"}],"abstract":[{"type":"text","text":"The update user easy password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserEasyPassword"}],"url":"\/documentation\/jellyfinapi\/updateusereasypassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUserEasyPassword(userID:_:)":{"role":"symbol","title":"updateUserEasyPassword(userID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserEasyPassword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateUserEasyPassword","preciseIdentifier":"s:11JellyfinAPI22UpdateUserEasyPasswordV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a user’s easy password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserEasyPassword(userID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateusereasypassword(userid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuseritemrating(userid:itemid:islikes:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuseritemrating(userid:itemid:islikes:).json new file mode 100644 index 000000000..6ad27129d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuseritemrating(userid:itemid:islikes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserItemRating"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateuseritemrating(userid:itemid:islikes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserItemRating(userID:itemID:isLikes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates a user’s rating for an item."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateUserItemRating(userID:itemID:isLikes:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserItemRating"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO20updateUserItemRating6userID04itemI07isLikes3Get7RequestVyAA0eF7DataDtoVGSS_SSSbSgtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUserItemRating(userID:itemID:isLikes:)":{"role":"symbol","title":"updateUserItemRating(userID:itemID:isLikes:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserItemRating"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":""}],"abstract":[{"type":"text","text":"Updates a user’s rating for an item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserItemRating(userID:itemID:isLikes:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateuseritemrating(userid:itemid:islikes:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuserpassword(userid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuserpassword(userid:_:).json new file mode 100644 index 000000000..4cf7b6353 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuserpassword(userid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserPassword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","preciseIdentifier":"s:11JellyfinAPI18UpdateUserPasswordV","text":"UpdateUserPassword"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateuserpassword(userid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserPassword(userID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates a user’s password."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateUserPassword(userID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserPassword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateUserPassword","preciseIdentifier":"s:11JellyfinAPI18UpdateUserPasswordV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO18updateUserPassword6userID_3Get7RequestVyytGSS_AA06UpdateeF0VtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUserPassword(userID:_:)":{"role":"symbol","title":"updateUserPassword(userID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserPassword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UpdateUserPassword","preciseIdentifier":"s:11JellyfinAPI18UpdateUserPasswordV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a user’s password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserPassword(userID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateuserpassword(userid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword":{"role":"symbol","title":"UpdateUserPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"abstract":[{"type":"text","text":"The update user password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserPassword"}],"url":"\/documentation\/jellyfinapi\/updateuserpassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuserpolicy(userid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuserpolicy(userid:_:).json new file mode 100644 index 000000000..3308ed4a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/updateuserpolicy(userid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserPolicy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV","text":"UserPolicy"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/updateuserpolicy(userid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserPolicy(userID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates a user policy."}],"kind":"symbol","metadata":{"role":"symbol","title":"updateUserPolicy(userID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserPolicy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO16updateUserPolicy6userID_3Get7RequestVyytGSS_AA0eF0VtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/updateUserPolicy(userID:_:)":{"role":"symbol","title":"updateUserPolicy(userID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"updateUserPolicy"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Updates a user policy."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/updateUserPolicy(userID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/updateuserpolicy(userid:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uploadcustomsplashscreen(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uploadcustomsplashscreen(_:).json new file mode 100644 index 000000000..4c7f6ebb9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uploadcustomsplashscreen(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uploadCustomSplashscreen"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"? = nil) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The body is expected to the image contents base64 encoded."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/uploadcustomsplashscreen(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uploadCustomSplashscreen(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Uploads a custom splashscreen."}],"kind":"symbol","metadata":{"role":"symbol","title":"uploadCustomSplashscreen(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uploadCustomSplashscreen"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO24uploadCustomSplashscreeny3Get7RequestVyytG10Foundation4DataVSgFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/uploadCustomSplashscreen(_:)":{"role":"symbol","title":"uploadCustomSplashscreen(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uploadCustomSplashscreen"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Uploads a custom splashscreen."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uploadCustomSplashscreen(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/uploadcustomsplashscreen(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uploadsubtitle(itemid:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uploadsubtitle(itemid:_:).json new file mode 100644 index 000000000..bba44ef37 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/uploadsubtitle(itemid:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uploadSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","preciseIdentifier":"s:11JellyfinAPI17UploadSubtitleDtoV","text":"UploadSubtitleDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/uploadsubtitle(itemid:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uploadSubtitle(itemID:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Upload an external subtitle file."}],"kind":"symbol","metadata":{"role":"symbol","title":"uploadSubtitle(itemID:_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uploadSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UploadSubtitleDto","preciseIdentifier":"s:11JellyfinAPI17UploadSubtitleDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO14uploadSubtitle6itemID_3Get7RequestVyytGSS_AA06UploadE3DtoVtFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto":{"role":"symbol","title":"UploadSubtitleDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"abstract":[{"type":"text","text":"Upload subtitles dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadSubtitleDto"}],"url":"\/documentation\/jellyfinapi\/uploadsubtitledto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/uploadSubtitle(itemID:_:)":{"role":"symbol","title":"uploadSubtitle(itemID:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"uploadSubtitle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"UploadSubtitleDto","preciseIdentifier":"s:11JellyfinAPI17UploadSubtitleDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Upload an external subtitle file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/uploadSubtitle(itemID:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/uploadsubtitle(itemid:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/validatepath(_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/validatepath(_:).json new file mode 100644 index 000000000..0f45ea590 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/paths/validatepath(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"validatePath"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","preciseIdentifier":"s:11JellyfinAPI15ValidatePathDtoV","text":"ValidatePathDto"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/paths\/validatepath(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/validatePath(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Validates path."}],"kind":"symbol","metadata":{"role":"symbol","title":"validatePath(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"validatePath"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ValidatePathDto","preciseIdentifier":"s:11JellyfinAPI15ValidatePathDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:11JellyfinAPI5PathsO12validatePathy3Get7RequestVyytGAA08ValidateE3DtoVFZ","extendedModule":"JellyfinAPI","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Paths/validatePath(_:)":{"role":"symbol","title":"validatePath(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"validatePath"},{"kind":"text","text":"(JellyfinAPI"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ValidatePathDto","preciseIdentifier":"s:11JellyfinAPI15ValidatePathDtoV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Request","preciseIdentifier":"s:3Get7RequestV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Validates path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths\/validatePath(_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/paths\/validatepath(_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Paths":{"role":"symbol","title":"Paths","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Paths"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Paths","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Paths"}],"url":"\/documentation\/jellyfinapi\/paths"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto":{"role":"symbol","title":"ValidatePathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ValidatePathDto"}],"abstract":[{"type":"text","text":"Validate path object."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ValidatePathDto"}],"url":"\/documentation\/jellyfinapi\/validatepathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution.json new file mode 100644 index 000000000..cebd33d9b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PathSubstitution"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pathsubstitution"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Configuration.PathSubstitution."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PathSubstitution"}],"title":"PathSubstitution","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16PathSubstitutionV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PathSubstitution"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/init(from:to:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/from","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/to"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution":{"role":"symbol","title":"PathSubstitution","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PathSubstitution"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Configuration.PathSubstitution."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PathSubstitution"}],"url":"\/documentation\/jellyfinapi\/pathsubstitution"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution/init(from:to:)":{"role":"symbol","title":"init(from:to:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/init(from:to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pathsubstitution\/init(from:to:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pathsubstitution\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution/to":{"role":"symbol","title":"to","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the value to substitution with."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/to","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pathsubstitution\/to"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution/from":{"role":"symbol","title":"from","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the value to substitute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/from","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pathsubstitution\/from"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/from.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/from.json new file mode 100644 index 000000000..71a9ca544 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/from.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pathsubstitution\/from"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/from","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the value to substitute."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"from","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PathSubstitutionV4fromSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution/from":{"role":"symbol","title":"from","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the value to substitute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/from","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pathsubstitution\/from"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution":{"role":"symbol","title":"PathSubstitution","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PathSubstitution"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Configuration.PathSubstitution."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PathSubstitution"}],"url":"\/documentation\/jellyfinapi\/pathsubstitution"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/init(from:).json new file mode 100644 index 000000000..27c1f5927 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pathsubstitution\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PathSubstitutionV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pathsubstitution\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution":{"role":"symbol","title":"PathSubstitution","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PathSubstitution"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Configuration.PathSubstitution."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PathSubstitution"}],"url":"\/documentation\/jellyfinapi\/pathsubstitution"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/init(from:to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/init(from:to:).json new file mode 100644 index 000000000..2b137f220 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/init(from:to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pathsubstitution\/init(from:to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/init(from:to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(from:to:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PathSubstitutionV4from2toACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution":{"role":"symbol","title":"PathSubstitution","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PathSubstitution"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Configuration.PathSubstitution."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PathSubstitution"}],"url":"\/documentation\/jellyfinapi\/pathsubstitution"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution/init(from:to:)":{"role":"symbol","title":"init(from:to:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/init(from:to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pathsubstitution\/init(from:to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/to.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/to.json new file mode 100644 index 000000000..42e6f2e04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pathsubstitution/to.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pathsubstitution\/to"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/to","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the value to substitution with."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"to","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PathSubstitutionV2toSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution":{"role":"symbol","title":"PathSubstitution","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PathSubstitution"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Configuration.PathSubstitution."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PathSubstitution"}],"url":"\/documentation\/jellyfinapi\/pathsubstitution"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution/to":{"role":"symbol","title":"to","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the value to substitution with."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution\/to","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pathsubstitution\/to"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo.json new file mode 100644 index 000000000..3cb818cce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"title":"PersonLookupInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16PersonLookupInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/isAutomated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/metadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/year"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/year"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/providerids"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/indexnumber.json new file mode 100644 index 000000000..4426a3357 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/init(from:).json new file mode 100644 index 000000000..10e6e6636 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PersonLookupInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json new file mode 100644 index 000000000..fa918b8c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PersonLookupInfoV11indexNumber11isAutomated19metadataCountryCode0J8Language4name13originalTitle011parentIndexG04path12premiereDate11providerIDs4yearACs5Int32VSg_SbSgSSSgA3sqS10Foundation0U0VSgSDyS2SGSgAQtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/isautomated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/isautomated.json new file mode 100644 index 000000000..2ba54e232 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/isautomated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/isautomated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/isAutomated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV11isAutomatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/isautomated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/metadatacountrycode.json new file mode 100644 index 000000000..a89a512be --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/metadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/metadatalanguage.json new file mode 100644 index 000000000..e602fdbe7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/metadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/metadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/metadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV16metadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/name.json new file mode 100644 index 000000000..8fa89fa54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/originaltitle.json new file mode 100644 index 000000000..839efa864 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the original title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/parentindexnumber.json new file mode 100644 index 000000000..902e59f52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/path.json new file mode 100644 index 000000000..b616d926a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/premieredate.json new file mode 100644 index 000000000..8e3d5da5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV12premiereDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/providerids.json new file mode 100644 index 000000000..ee1890ea3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/providerids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/year.json new file mode 100644 index 000000000..7bb35bfc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinfo/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinfo\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"year","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PersonLookupInfoV4years5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery.json new file mode 100644 index 000000000..5683f6e54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinforemotesearchquery"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"title":"PersonLookupInfoRemoteSearchQuery","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/isIncludeDisabledProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/searchInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/searchProviderName"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery":{"role":"symbol","title":"PersonLookupInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersonLookupInfo","preciseIdentifier":"s:11JellyfinAPI16PersonLookupInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersonLookupInfo","preciseIdentifier":"s:11JellyfinAPI16PersonLookupInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/isincludedisabledproviders"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/init(from:).json new file mode 100644 index 000000000..ffb3da16c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery":{"role":"symbol","title":"PersonLookupInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json new file mode 100644 index 000000000..64b0472df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","preciseIdentifier":"s:11JellyfinAPI16PersonLookupInfoV","text":"PersonLookupInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersonLookupInfo","preciseIdentifier":"s:11JellyfinAPI16PersonLookupInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV26isIncludeDisabledProviders6itemID06searchE00O12ProviderNameACSbSg_10Foundation4UUIDVSgAA0cdE0VSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery":{"role":"symbol","title":"PersonLookupInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersonLookupInfo","preciseIdentifier":"s:11JellyfinAPI16PersonLookupInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/isincludedisabledproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/isincludedisabledproviders.json new file mode 100644 index 000000000..1b88ca997 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/isincludedisabledproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/isincludedisabledproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/isIncludeDisabledProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeDisabledProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV26isIncludeDisabledProvidersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery":{"role":"symbol","title":"PersonLookupInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/itemid.json new file mode 100644 index 000000000..b8477b62f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery":{"role":"symbol","title":"PersonLookupInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/searchinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/searchinfo.json new file mode 100644 index 000000000..aeb7acc3b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/searchinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","preciseIdentifier":"s:11JellyfinAPI16PersonLookupInfoV","text":"PersonLookupInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/searchinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/searchInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersonLookupInfo","preciseIdentifier":"s:11JellyfinAPI16PersonLookupInfoV"},{"kind":"text","text":"?"}],"title":"searchInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV06searchE0AA0cdE0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery":{"role":"symbol","title":"PersonLookupInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersonLookupInfo","preciseIdentifier":"s:11JellyfinAPI16PersonLookupInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfo":{"role":"symbol","title":"PersonLookupInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfo"}],"url":"\/documentation\/jellyfinapi\/personlookupinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/searchprovidername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/searchprovidername.json new file mode 100644 index 000000000..dcb25b791 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/personlookupinforemotesearchquery/searchprovidername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/searchprovidername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/searchProviderName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchProviderName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI33PersonLookupInfoRemoteSearchQueryV18searchProviderNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/documentation/JellyfinAPI/PersonLookupInfoRemoteSearchQuery":{"role":"symbol","title":"PersonLookupInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PersonLookupInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersonLookupInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/personlookupinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto.json new file mode 100644 index 000000000..a36b18cf5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PingRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pingrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class PingRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PingRequestDto"}],"title":"PingRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14PingRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PingRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/init(ping:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/ping"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto/init(ping:)":{"role":"symbol","title":"init(ping:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/init(ping:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pingrequestdto\/init(ping:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto/ping":{"role":"symbol","title":"ping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ping time."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/ping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pingrequestdto\/ping"},"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pingrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto":{"role":"symbol","title":"PingRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PingRequestDto"}],"abstract":[{"type":"text","text":"Class PingRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PingRequestDto"}],"url":"\/documentation\/jellyfinapi\/pingrequestdto"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto/init(from:).json new file mode 100644 index 000000000..97e46ca32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pingrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14PingRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto":{"role":"symbol","title":"PingRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PingRequestDto"}],"abstract":[{"type":"text","text":"Class PingRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PingRequestDto"}],"url":"\/documentation\/jellyfinapi\/pingrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pingrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto/init(ping:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto/init(ping:).json new file mode 100644 index 000000000..7632fb1c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto/init(ping:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pingrequestdto\/init(ping:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/init(ping:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"title":"init(ping:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14PingRequestDtoV4pingACs5Int64VSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto/init(ping:)":{"role":"symbol","title":"init(ping:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/init(ping:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pingrequestdto\/init(ping:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto":{"role":"symbol","title":"PingRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PingRequestDto"}],"abstract":[{"type":"text","text":"Class PingRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PingRequestDto"}],"url":"\/documentation\/jellyfinapi\/pingrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto/ping.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto/ping.json new file mode 100644 index 000000000..900195b23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pingrequestdto/ping.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pingrequestdto\/ping"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/ping","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the ping time."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"ping","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14PingRequestDtoV4pings5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto/ping":{"role":"symbol","title":"ping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ping time."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto\/ping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pingrequestdto\/ping"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PingRequestDto":{"role":"symbol","title":"PingRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PingRequestDto"}],"abstract":[{"type":"text","text":"Class PingRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PingRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PingRequestDto"}],"url":"\/documentation\/jellyfinapi\/pingrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult.json new file mode 100644 index 000000000..bdd4d3813 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PinRedeemResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pinredeemresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PinRedeemResult"}],"title":"PinRedeemResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15PinRedeemResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PinRedeemResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/init(isSuccess:usersReset:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/isSuccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/usersReset"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult/usersReset":{"role":"symbol","title":"usersReset","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"usersReset"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the users reset."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/usersReset","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pinredeemresult\/usersreset"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult/init(isSuccess:usersReset:)":{"role":"symbol","title":"init(isSuccess:usersReset:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isSuccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"usersReset"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/init(isSuccess:usersReset:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pinredeemresult\/init(issuccess:usersreset:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult":{"role":"symbol","title":"PinRedeemResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PinRedeemResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PinRedeemResult"}],"url":"\/documentation\/jellyfinapi\/pinredeemresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult/isSuccess":{"role":"symbol","title":"isSuccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSuccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Users.PinRedeemResult is success."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/isSuccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pinredeemresult\/issuccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pinredeemresult\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/init(from:).json new file mode 100644 index 000000000..819ff3214 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pinredeemresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15PinRedeemResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pinredeemresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult":{"role":"symbol","title":"PinRedeemResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PinRedeemResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PinRedeemResult"}],"url":"\/documentation\/jellyfinapi\/pinredeemresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/init(issuccess:usersreset:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/init(issuccess:usersreset:).json new file mode 100644 index 000000000..4e7ea0ca7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/init(issuccess:usersreset:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isSuccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"usersReset"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pinredeemresult\/init(issuccess:usersreset:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/init(isSuccess:usersReset:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isSuccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"usersReset"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"title":"init(isSuccess:usersReset:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15PinRedeemResultV9isSuccess10usersResetACSbSg_SaySSGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult/init(isSuccess:usersReset:)":{"role":"symbol","title":"init(isSuccess:usersReset:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isSuccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"usersReset"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/init(isSuccess:usersReset:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pinredeemresult\/init(issuccess:usersreset:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult":{"role":"symbol","title":"PinRedeemResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PinRedeemResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PinRedeemResult"}],"url":"\/documentation\/jellyfinapi\/pinredeemresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/issuccess.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/issuccess.json new file mode 100644 index 000000000..e405b69a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/issuccess.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSuccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pinredeemresult\/issuccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/isSuccess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Users.PinRedeemResult is success."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSuccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSuccess","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PinRedeemResultV9isSuccessSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult":{"role":"symbol","title":"PinRedeemResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PinRedeemResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PinRedeemResult"}],"url":"\/documentation\/jellyfinapi\/pinredeemresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult/isSuccess":{"role":"symbol","title":"isSuccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSuccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Users.PinRedeemResult is success."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/isSuccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pinredeemresult\/issuccess"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/usersreset.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/usersreset.json new file mode 100644 index 000000000..429cf3938 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pinredeemresult/usersreset.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"usersReset"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pinredeemresult\/usersreset"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/usersReset","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the users reset."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"usersReset"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"usersReset","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PinRedeemResultV10usersResetSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult/usersReset":{"role":"symbol","title":"usersReset","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"usersReset"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the users reset."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult\/usersReset","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pinredeemresult\/usersreset"},"doc://JellyfinAPI/documentation/JellyfinAPI/PinRedeemResult":{"role":"symbol","title":"PinRedeemResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PinRedeemResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PinRedeemResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PinRedeemResult"}],"url":"\/documentation\/jellyfinapi\/pinredeemresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess.json new file mode 100644 index 000000000..fff709b25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"title":"PlayAccess","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI10PlayAccessO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/full","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/none"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/none":{"role":"symbol","title":"PlayAccess.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/none"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/full":{"role":"symbol","title":"PlayAccess.full","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"full"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/full","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/full"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/equatable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/!=(_:_:).json new file mode 100644 index 000000000..06c445947 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI10PlayAccessO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/encode(to:).json new file mode 100644 index 000000000..f7d9ede43 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI10PlayAccessO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/equatable-implementations.json new file mode 100644 index 000000000..510205f57 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/full.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/full.json new file mode 100644 index 000000000..faf06efde --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/full.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"full"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess\/full"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/full","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"full"}],"title":"PlayAccess.full","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10PlayAccessO4fullyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/full":{"role":"symbol","title":"PlayAccess.full","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"full"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/full","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/full"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/hash(into:).json new file mode 100644 index 000000000..765f9280f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI10PlayAccessO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/hashvalue.json new file mode 100644 index 000000000..e7e82405b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI10PlayAccessO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/init(from:).json new file mode 100644 index 000000000..21511bef9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI10PlayAccessO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/init(rawvalue:).json new file mode 100644 index 000000000..8a1ad47a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10PlayAccessO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/none.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/none.json new file mode 100644 index 000000000..1b89016d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/none.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess\/none"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/none","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"title":"PlayAccess.none","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10PlayAccessO4noneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/none":{"role":"symbol","title":"PlayAccess.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/none"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/rawrepresentable-implementations.json new file mode 100644 index 000000000..a70b304b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playaccess/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playaccess\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playaccess\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayAccess":{"role":"symbol","title":"PlayAccess","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayAccess"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayAccess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayAccess"}],"url":"\/documentation\/jellyfinapi\/playaccess"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode.json new file mode 100644 index 000000000..fe247bf14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"title":"PlaybackErrorCode","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI17PlaybackErrorCodeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/noCompatibleStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/notAllowed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/rateLimitExceeded"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/notAllowed":{"role":"symbol","title":"PlaybackErrorCode.notAllowed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notAllowed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/notAllowed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/notallowed"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/noCompatibleStream":{"role":"symbol","title":"PlaybackErrorCode.noCompatibleStream","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noCompatibleStream"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/noCompatibleStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/nocompatiblestream"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/rateLimitExceeded":{"role":"symbol","title":"PlaybackErrorCode.rateLimitExceeded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rateLimitExceeded"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/rateLimitExceeded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/ratelimitexceeded"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/!=(_:_:).json new file mode 100644 index 000000000..bfb0e2e05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI17PlaybackErrorCodeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/encode(to:).json new file mode 100644 index 000000000..9e8eff0b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI17PlaybackErrorCodeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/equatable-implementations.json new file mode 100644 index 000000000..932bb860f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/hash(into:).json new file mode 100644 index 000000000..59a819cc3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI17PlaybackErrorCodeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/hashvalue.json new file mode 100644 index 000000000..3b29e7163 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI17PlaybackErrorCodeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/init(from:).json new file mode 100644 index 000000000..cc5fd7cb6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI17PlaybackErrorCodeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/init(rawvalue:).json new file mode 100644 index 000000000..198e3ee89 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17PlaybackErrorCodeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/nocompatiblestream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/nocompatiblestream.json new file mode 100644 index 000000000..8b56d2599 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/nocompatiblestream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noCompatibleStream"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/nocompatiblestream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/noCompatibleStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noCompatibleStream"}],"title":"PlaybackErrorCode.noCompatibleStream","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI17PlaybackErrorCodeO18noCompatibleStreamyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/noCompatibleStream":{"role":"symbol","title":"PlaybackErrorCode.noCompatibleStream","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noCompatibleStream"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/noCompatibleStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/nocompatiblestream"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/notallowed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/notallowed.json new file mode 100644 index 000000000..86e3fbe79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/notallowed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notAllowed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/notallowed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/notAllowed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notAllowed"}],"title":"PlaybackErrorCode.notAllowed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI17PlaybackErrorCodeO10notAllowedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/notAllowed":{"role":"symbol","title":"PlaybackErrorCode.notAllowed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notAllowed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/notAllowed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/notallowed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/ratelimitexceeded.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/ratelimitexceeded.json new file mode 100644 index 000000000..d73477802 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/ratelimitexceeded.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rateLimitExceeded"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/ratelimitexceeded"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/rateLimitExceeded","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rateLimitExceeded"}],"title":"PlaybackErrorCode.rateLimitExceeded","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI17PlaybackErrorCodeO17rateLimitExceededyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/rateLimitExceeded":{"role":"symbol","title":"PlaybackErrorCode.rateLimitExceeded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rateLimitExceeded"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/rateLimitExceeded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/ratelimitexceeded"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/rawrepresentable-implementations.json new file mode 100644 index 000000000..42c9b4c24 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackerrorcode/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackerrorcode\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackerrorcode\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto.json new file mode 100644 index 000000000..c2bfddd05 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Plabyback info dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"title":"PlaybackInfoDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/init(allowAudioStreamCopy:allowVideoStreamCopy:audioStreamIndex:isAutoOpenLiveStream:deviceProfile:enableDirectPlay:enableDirectStream:enableTranscoding:liveStreamID:maxAudioChannels:maxStreamingBitrate:mediaSourceID:startTimeTicks:subtitleStreamIndex:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/allowAudioStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/allowVideoStreamCopy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/deviceProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableDirectPlay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableDirectStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableTranscoding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/isAutoOpenLiveStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/maxStreamingBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/startTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/init(allowAudioStreamCopy:allowVideoStreamCopy:audioStreamIndex:isAutoOpenLiveStream:deviceProfile:enableDirectPlay:enableDirectStream:enableTranscoding:liveStreamID:maxAudioChannels:maxStreamingBitrate:mediaSourceID:startTimeTicks:subtitleStreamIndex:userID:)":{"role":"symbol","title":"init(allowAudioStreamCopy:allowVideoStreamCopy:audioStreamIndex:isAutoOpenLiveStream:deviceProfile:enableDirectPlay:enableDirectStream:enableTranscoding:liveStreamID:maxAudioChannels:maxStreamingBitrate:mediaSourceID:startTimeTicks:subtitleStreamIndex:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/init(allowAudioStreamCopy:allowVideoStreamCopy:audioStreamIndex:isAutoOpenLiveStream:deviceProfile:enableDirectPlay:enableDirectStream:enableTranscoding:liveStreamID:maxAudioChannels:maxStreamingBitrate:mediaSourceID:startTimeTicks:subtitleStreamIndex:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/init(allowaudiostreamcopy:allowvideostreamcopy:audiostreamindex:isautoopenlivestream:deviceprofile:enabledirectplay:enabledirectstream:enabletranscoding:livestreamid:maxaudiochannels:maxstreamingbitrate:mediasourceid:starttimeticks:subtitle-6lu1o"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max audio channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max streaming bitrate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/maxstreamingbitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/isAutoOpenLiveStream":{"role":"symbol","title":"isAutoOpenLiveStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to auto open the live stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/isAutoOpenLiveStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/isautoopenlivestream"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playback userId."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable video stream copy."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/allowvideostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/enableTranscoding":{"role":"symbol","title":"enableTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable transcoding."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/enabletranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/enableDirectStream":{"role":"symbol","title":"enableDirectStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable direct stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableDirectStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/enabledirectstream"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/deviceProfile":{"role":"symbol","title":"deviceProfile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/deviceProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the live stream id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the media source id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle stream index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the audio stream index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start time in ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/starttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to allow audio stream copy."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/allowaudiostreamcopy"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/enableDirectPlay":{"role":"symbol","title":"enableDirectPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable direct play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableDirectPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/enabledirectplay"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/allowaudiostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/allowaudiostreamcopy.json new file mode 100644 index 000000000..89b7bca02 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/allowaudiostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/allowaudiostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/allowAudioStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to allow audio stream copy."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowAudioStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV20allowAudioStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/allowAudioStreamCopy":{"role":"symbol","title":"allowAudioStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to allow audio stream copy."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/allowAudioStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/allowaudiostreamcopy"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/allowvideostreamcopy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/allowvideostreamcopy.json new file mode 100644 index 000000000..257c863fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/allowvideostreamcopy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/allowvideostreamcopy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/allowVideoStreamCopy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable video stream copy."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowVideoStreamCopy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV20allowVideoStreamCopySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/allowVideoStreamCopy":{"role":"symbol","title":"allowVideoStreamCopy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable video stream copy."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/allowVideoStreamCopy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/allowvideostreamcopy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/audiostreamindex.json new file mode 100644 index 000000000..e476627f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the audio stream index."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the audio stream index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/deviceprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/deviceprofile.json new file mode 100644 index 000000000..249d53b93 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/deviceprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV","text":"DeviceProfile"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Specifically, it defines the supported "},{"type":"text","text":"containers"},{"type":"text","text":" and"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"codecs"},{"type":"text","text":" (video and\/or audio, including codec profiles and levels)"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"the device is able to direct play (without transcoding or remuxing),"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"as well as which "},{"type":"text","text":"containers\/codecs to transcode to"},{"type":"text","text":" in case it isn’t."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/deviceprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/deviceProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"title":"deviceProfile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV13deviceProfileAA06DeviceG0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/deviceProfile":{"role":"symbol","title":"deviceProfile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/deviceProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/deviceprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/enabledirectplay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/enabledirectplay.json new file mode 100644 index 000000000..e7d167dd1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/enabledirectplay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/enabledirectplay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableDirectPlay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable direct play."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDirectPlay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV16enableDirectPlaySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/enableDirectPlay":{"role":"symbol","title":"enableDirectPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable direct play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableDirectPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/enabledirectplay"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/enabledirectstream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/enabledirectstream.json new file mode 100644 index 000000000..e353a61a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/enabledirectstream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/enabledirectstream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableDirectStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable direct stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableDirectStream","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV18enableDirectStreamSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/enableDirectStream":{"role":"symbol","title":"enableDirectStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable direct stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableDirectStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/enabledirectstream"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/enabletranscoding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/enabletranscoding.json new file mode 100644 index 000000000..99e0a3e2a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/enabletranscoding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/enabletranscoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableTranscoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable transcoding."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableTranscoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV17enableTranscodingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/enableTranscoding":{"role":"symbol","title":"enableTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable transcoding."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/enableTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/enabletranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/init(allowaudiostreamcopy:allowvideostreamcopy:audiostreamindex:isautoopenlivestream:deviceprofile:enabledirectplay:enabledirectstream:enabletranscoding:livestreamid:maxaudiochannels:maxstreamingbitrate:mediasourceid:starttimeticks:subtitle-6lu1o.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/init(allowaudiostreamcopy:allowvideostreamcopy:audiostreamindex:isautoopenlivestream:deviceprofile:enabledirectplay:enabledirectstream:enabletranscoding:livestreamid:maxaudiochannels:maxstreamingbitrate:mediasourceid:starttimeticks:subtitle-6lu1o.json new file mode 100644 index 000000000..477e43145 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/init(allowaudiostreamcopy:allowvideostreamcopy:audiostreamindex:isautoopenlivestream:deviceprofile:enabledirectplay:enabledirectstream:enabletranscoding:livestreamid:maxaudiochannels:maxstreamingbitrate:mediasourceid:starttimeticks:subtitle-6lu1o.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV","text":"DeviceProfile"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/init(allowaudiostreamcopy:allowvideostreamcopy:audiostreamindex:isautoopenlivestream:deviceprofile:enabledirectplay:enabledirectstream:enabletranscoding:livestreamid:maxaudiochannels:maxstreamingbitrate:mediasourceid:starttimeticks:subtitle-6lu1o"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/init(allowAudioStreamCopy:allowVideoStreamCopy:audioStreamIndex:isAutoOpenLiveStream:deviceProfile:enableDirectPlay:enableDirectStream:enableTranscoding:liveStreamID:maxAudioChannels:maxStreamingBitrate:mediaSourceID:startTimeTicks:subtitleStreamIndex:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(allowAudioStreamCopy:allowVideoStreamCopy:audioStreamIndex:isAutoOpenLiveStream:deviceProfile:enableDirectPlay:enableDirectStream:enableTranscoding:liveStreamID:maxAudioChannels:maxStreamingBitrate:mediaSourceID:startTimeTicks:subtitleStreamIndex:userID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV20allowAudioStreamCopy0f5VideohI005audioH5Index014isAutoOpenLiveH013deviceProfile16enableDirectPlay0stH00S11Transcoding04liveH2ID03maxG8Channels0Y16StreamingBitrate011mediaSourceX014startTimeTicks08subtitlehL004userX0ACSbSg_ASs5Int32VSgAsA06DeviceR0VSgA3SSSSgA2vZs5Int64VSgAV10Foundation4UUIDVSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DeviceProfile":{"role":"symbol","title":"DeviceProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceProfile"}],"abstract":[{"type":"text","text":"A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DeviceProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceProfile"}],"url":"\/documentation\/jellyfinapi\/deviceprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/init(allowAudioStreamCopy:allowVideoStreamCopy:audioStreamIndex:isAutoOpenLiveStream:deviceProfile:enableDirectPlay:enableDirectStream:enableTranscoding:liveStreamID:maxAudioChannels:maxStreamingBitrate:mediaSourceID:startTimeTicks:subtitleStreamIndex:userID:)":{"role":"symbol","title":"init(allowAudioStreamCopy:allowVideoStreamCopy:audioStreamIndex:isAutoOpenLiveStream:deviceProfile:enableDirectPlay:enableDirectStream:enableTranscoding:liveStreamID:maxAudioChannels:maxStreamingBitrate:mediaSourceID:startTimeTicks:subtitleStreamIndex:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowAudioStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowVideoStreamCopy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceProfile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DeviceProfile","preciseIdentifier":"s:11JellyfinAPI13DeviceProfileV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableDirectStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/init(allowAudioStreamCopy:allowVideoStreamCopy:audioStreamIndex:isAutoOpenLiveStream:deviceProfile:enableDirectPlay:enableDirectStream:enableTranscoding:liveStreamID:maxAudioChannels:maxStreamingBitrate:mediaSourceID:startTimeTicks:subtitleStreamIndex:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/init(allowaudiostreamcopy:allowvideostreamcopy:audiostreamindex:isautoopenlivestream:deviceprofile:enabledirectplay:enabledirectstream:enabletranscoding:livestreamid:maxaudiochannels:maxstreamingbitrate:mediasourceid:starttimeticks:subtitle-6lu1o"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/init(from:).json new file mode 100644 index 000000000..041ee7cf9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/isautoopenlivestream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/isautoopenlivestream.json new file mode 100644 index 000000000..1eeacdcdb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/isautoopenlivestream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/isautoopenlivestream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/isAutoOpenLiveStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to auto open the live stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutoOpenLiveStream","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV20isAutoOpenLiveStreamSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/isAutoOpenLiveStream":{"role":"symbol","title":"isAutoOpenLiveStream","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutoOpenLiveStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to auto open the live stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/isAutoOpenLiveStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/isautoopenlivestream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/livestreamid.json new file mode 100644 index 000000000..4b7a98df2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the live stream id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the live stream id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/maxaudiochannels.json new file mode 100644 index 000000000..5ed671750 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the max audio channels."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV16maxAudioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max audio channels."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/maxstreamingbitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/maxstreamingbitrate.json new file mode 100644 index 000000000..66804c81e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/maxstreamingbitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/maxstreamingbitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/maxStreamingBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the max streaming bitrate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxStreamingBitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV19maxStreamingBitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/maxStreamingBitrate":{"role":"symbol","title":"maxStreamingBitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxStreamingBitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max streaming bitrate."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/maxStreamingBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/maxstreamingbitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/mediasourceid.json new file mode 100644 index 000000000..0920ce6fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the media source id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the media source id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/starttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/starttimeticks.json new file mode 100644 index 000000000..29c3ef637 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/starttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/starttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/startTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start time in ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV14startTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/startTimeTicks":{"role":"symbol","title":"startTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start time in ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/startTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/starttimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/subtitlestreamindex.json new file mode 100644 index 000000000..aaa34c225 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the subtitle stream index."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle stream index."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/userid.json new file mode 100644 index 000000000..f151ae86c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinfodto/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinfodto\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playback userId."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlaybackInfoDtoV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playback userId."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinfodto\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoDto":{"role":"symbol","title":"PlaybackInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoDto"}],"abstract":[{"type":"text","text":"Plabyback info dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoDto"}],"url":"\/documentation\/jellyfinapi\/playbackinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse.json new file mode 100644 index 000000000..760a1faf7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinforesponse"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class PlaybackInfoResponse."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"title":"PlaybackInfoResponse","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20PlaybackInfoResponseV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoResponse"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/init(errorCode:mediaSources:playSessionID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/errorCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/mediaSources","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/playSessionID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse/init(errorCode:mediaSources:playSessionID:)":{"role":"symbol","title":"init(errorCode:mediaSources:playSessionID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"errorCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaybackErrorCode","preciseIdentifier":"s:11JellyfinAPI17PlaybackErrorCodeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/init(errorCode:mediaSources:playSessionID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinforesponse\/init(errorcode:mediasources:playsessionid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse/mediaSources":{"role":"symbol","title":"mediaSources","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the media sources."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/mediaSources","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinforesponse\/mediasources"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinforesponse\/playsessionid"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinforesponse\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse":{"role":"symbol","title":"PlaybackInfoResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"abstract":[{"type":"text","text":"Class PlaybackInfoResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoResponse"}],"url":"\/documentation\/jellyfinapi\/playbackinforesponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse/errorCode":{"role":"symbol","title":"errorCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaybackErrorCode","preciseIdentifier":"s:11JellyfinAPI17PlaybackErrorCodeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the error code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/errorCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinforesponse\/errorcode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/errorcode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/errorcode.json new file mode 100644 index 000000000..098401192 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/errorcode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","preciseIdentifier":"s:11JellyfinAPI17PlaybackErrorCodeO","text":"PlaybackErrorCode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinforesponse\/errorcode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/errorCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the error code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaybackErrorCode","preciseIdentifier":"s:11JellyfinAPI17PlaybackErrorCodeO"},{"kind":"text","text":"?"}],"title":"errorCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackInfoResponseV9errorCodeAA0c5ErrorG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse":{"role":"symbol","title":"PlaybackInfoResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"abstract":[{"type":"text","text":"Class PlaybackInfoResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoResponse"}],"url":"\/documentation\/jellyfinapi\/playbackinforesponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse/errorCode":{"role":"symbol","title":"errorCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaybackErrorCode","preciseIdentifier":"s:11JellyfinAPI17PlaybackErrorCodeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the error code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/errorCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinforesponse\/errorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/init(errorcode:mediasources:playsessionid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/init(errorcode:mediasources:playsessionid:).json new file mode 100644 index 000000000..c91d4bf43 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/init(errorcode:mediasources:playsessionid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"errorCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","preciseIdentifier":"s:11JellyfinAPI17PlaybackErrorCodeO","text":"PlaybackErrorCode"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV","text":"MediaSourceInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinforesponse\/init(errorcode:mediasources:playsessionid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/init(errorCode:mediaSources:playSessionID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"errorCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaybackErrorCode","preciseIdentifier":"s:11JellyfinAPI17PlaybackErrorCodeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(errorCode:mediaSources:playSessionID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20PlaybackInfoResponseV9errorCode12mediaSources13playSessionIDAcA0c5ErrorG0OSg_SayAA011MediaSourceD0VGSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse":{"role":"symbol","title":"PlaybackInfoResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"abstract":[{"type":"text","text":"Class PlaybackInfoResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoResponse"}],"url":"\/documentation\/jellyfinapi\/playbackinforesponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackErrorCode":{"role":"symbol","title":"PlaybackErrorCode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackErrorCode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackErrorCode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackErrorCode"}],"url":"\/documentation\/jellyfinapi\/playbackerrorcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse/init(errorCode:mediaSources:playSessionID:)":{"role":"symbol","title":"init(errorCode:mediaSources:playSessionID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"errorCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaybackErrorCode","preciseIdentifier":"s:11JellyfinAPI17PlaybackErrorCodeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/init(errorCode:mediaSources:playSessionID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinforesponse\/init(errorcode:mediasources:playsessionid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/init(from:).json new file mode 100644 index 000000000..f08ff7173 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinforesponse\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20PlaybackInfoResponseV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse":{"role":"symbol","title":"PlaybackInfoResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"abstract":[{"type":"text","text":"Class PlaybackInfoResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoResponse"}],"url":"\/documentation\/jellyfinapi\/playbackinforesponse"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinforesponse\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/mediasources.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/mediasources.json new file mode 100644 index 000000000..cb21b8be4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/mediasources.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV","text":"MediaSourceInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinforesponse\/mediasources"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/mediaSources","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the media sources."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?"}],"title":"mediaSources","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackInfoResponseV12mediaSourcesSayAA011MediaSourceD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse/mediaSources":{"role":"symbol","title":"mediaSources","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSources"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MediaSourceInfo","preciseIdentifier":"s:11JellyfinAPI15MediaSourceInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the media sources."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/mediaSources","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinforesponse\/mediasources"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaSourceInfo":{"role":"symbol","title":"MediaSourceInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaSourceInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaSourceInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaSourceInfo"}],"url":"\/documentation\/jellyfinapi\/mediasourceinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse":{"role":"symbol","title":"PlaybackInfoResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"abstract":[{"type":"text","text":"Class PlaybackInfoResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoResponse"}],"url":"\/documentation\/jellyfinapi\/playbackinforesponse"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/playsessionid.json new file mode 100644 index 000000000..57b4e2bac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackinforesponse/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackinforesponse\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackInfoResponseV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse":{"role":"symbol","title":"PlaybackInfoResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackInfoResponse"}],"abstract":[{"type":"text","text":"Class PlaybackInfoResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackInfoResponse"}],"url":"\/documentation\/jellyfinapi\/playbackinforesponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackInfoResponse/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackInfoResponse\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackinforesponse\/playsessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo.json new file mode 100644 index 000000000..f99c78d26 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"title":"PlaybackProgressInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/aspectRatio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/brightness","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/canSeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/isMuted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/isPaused","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/item","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/nowPlayingQueue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playbackStartTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playlistItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/positionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/repeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/sessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/volumeLevel"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is paused."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/ispaused"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the subtitle stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/playlistitemid"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/sessionID":{"role":"symbol","title":"sessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the session id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/sessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/sessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the media version identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/isMuted":{"role":"symbol","title":"isMuted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is muted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/isMuted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/ismuted"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)":{"role":"symbol","title":"init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/aspectRatio":{"role":"symbol","title":"aspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/aspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/aspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/repeatMode":{"role":"symbol","title":"repeatMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the repeat mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/repeatMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/brightness":{"role":"symbol","title":"brightness","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/brightness","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/brightness"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/item":{"role":"symbol","title":"item","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/item","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/item"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/nowPlayingQueue":{"role":"symbol","title":"nowPlayingQueue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/nowPlayingQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/nowplayingqueue"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/playbackStartTimeTicks":{"role":"symbol","title":"playbackStartTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playbackStartTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/playbackstarttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/volumeLevel":{"role":"symbol","title":"volumeLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the volume level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/volumeLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/volumelevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/canSeek":{"role":"symbol","title":"canSeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can seek."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/canSeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/canseek"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/playMethod":{"role":"symbol","title":"playMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play method."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playMethod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the live stream identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/livestreamid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/aspectratio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/aspectratio.json new file mode 100644 index 000000000..ace76ec19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/aspectratio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/aspectratio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/aspectRatio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"aspectRatio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV11aspectRatioSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/aspectRatio":{"role":"symbol","title":"aspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/aspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/aspectratio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/audiostreamindex.json new file mode 100644 index 000000000..6f575e961 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the audio stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/brightness.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/brightness.json new file mode 100644 index 000000000..1c68842a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/brightness.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/brightness"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/brightness","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"brightness","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV10brightnesss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/brightness":{"role":"symbol","title":"brightness","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/brightness","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/brightness"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/canseek.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/canseek.json new file mode 100644 index 000000000..f6f839e70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/canseek.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/canseek"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/canSeek","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can seek."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canSeek","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV7canSeekSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/canSeek":{"role":"symbol","title":"canSeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can seek."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/canSeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/canseek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu.json new file mode 100644 index 000000000..556beb57d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV","text":"QueueItem"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO","text":"PlayMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO","text":"RepeatMode"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV11aspectRatio16audioStreamIndex10brightness7canSeek7isMuted0N6Paused4item0Q2ID04liveiR0011mediaSourceR015nowPlayingQueue10playMethod0y7SessionR022playbackStartTimeTicks012playlistItemR013positionTicks10repeatMode07sessionR008subtitleiJ011volumeLevelACSSSg_s5Int32VSgA_SbSgA0_A0_AA11BaseItemDtoVSg10Foundation4UUIDVSgA2XSayAA0X4ItemVGSgAA04PlayZ0OSgAXs5Int64VSgAXA17_AA10RepeatModeOSgAXA_A_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)":{"role":"symbol","title":"init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/init(from:).json new file mode 100644 index 000000000..211efd1c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/ismuted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/ismuted.json new file mode 100644 index 000000000..6f33725ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/ismuted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/ismuted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/isMuted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is muted."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMuted","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV7isMutedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/isMuted":{"role":"symbol","title":"isMuted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is muted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/isMuted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/ismuted"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/ispaused.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/ispaused.json new file mode 100644 index 000000000..0c388b48b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/ispaused.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/ispaused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/isPaused","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is paused."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPaused","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV8isPausedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is paused."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/ispaused"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/item.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/item.json new file mode 100644 index 000000000..4f02be59e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/item.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/item"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/item","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"title":"item","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV4itemAA11BaseItemDtoVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/item":{"role":"symbol","title":"item","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/item","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/item"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/itemid.json new file mode 100644 index 000000000..0b6f99cd6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/livestreamid.json new file mode 100644 index 000000000..f80602eee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the live stream identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the live stream identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/mediasourceid.json new file mode 100644 index 000000000..642be47e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the media version identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the media version identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/nowplayingqueue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/nowplayingqueue.json new file mode 100644 index 000000000..fd19f9cd5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/nowplayingqueue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV","text":"QueueItem"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/nowplayingqueue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/nowPlayingQueue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"title":"nowPlayingQueue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV15nowPlayingQueueSayAA0H4ItemVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/nowPlayingQueue":{"role":"symbol","title":"nowPlayingQueue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/nowPlayingQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/nowplayingqueue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playbackstarttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playbackstarttimeticks.json new file mode 100644 index 000000000..28265ce62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playbackstarttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/playbackstarttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playbackStartTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"playbackStartTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV22playbackStartTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/playbackStartTimeTicks":{"role":"symbol","title":"playbackStartTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playbackStartTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/playbackstarttimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playlistitemid.json new file mode 100644 index 000000000..3a4cabdca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV14playlistItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/playlistitemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playmethod.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playmethod.json new file mode 100644 index 000000000..e458fd7f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playmethod.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO","text":"PlayMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/playmethod"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playMethod","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?"}],"title":"playMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV10playMethodAA04PlayG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/playMethod":{"role":"symbol","title":"playMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play method."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playMethod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playsessionid.json new file mode 100644 index 000000000..541164dc4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/playsessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/positionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/positionticks.json new file mode 100644 index 000000000..e96a12f34 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/positionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/positionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/positionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"positionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV13positionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/positionticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/repeatmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/repeatmode.json new file mode 100644 index 000000000..fe424d9f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/repeatmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO","text":"RepeatMode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/repeatmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/repeatMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the repeat mode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?"}],"title":"repeatMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV10repeatModeAA06RepeatG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/repeatMode":{"role":"symbol","title":"repeatMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the repeat mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/repeatMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/sessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/sessionid.json new file mode 100644 index 000000000..6f3300614 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/sessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/sessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/sessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the session id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV9sessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/sessionID":{"role":"symbol","title":"sessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the session id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/sessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/sessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/subtitlestreamindex.json new file mode 100644 index 000000000..cfb398a24 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the subtitle stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the subtitle stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/volumelevel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/volumelevel.json new file mode 100644 index 000000000..1fdbc93c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackprogressinfo/volumelevel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackprogressinfo\/volumelevel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/volumeLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the volume level."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"volumeLevel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20PlaybackProgressInfoV11volumeLevels5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo/volumeLevel":{"role":"symbol","title":"volumeLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the volume level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo\/volumeLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackprogressinfo\/volumelevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackProgressInfo":{"role":"symbol","title":"PlaybackProgressInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackProgressInfo"}],"abstract":[{"type":"text","text":"Class PlaybackProgressInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackProgressInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackProgressInfo"}],"url":"\/documentation\/jellyfinapi\/playbackprogressinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo.json new file mode 100644 index 000000000..a9f848c18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"title":"PlaybackStartInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17PlaybackStartInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/aspectRatio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/brightness","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/canSeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/isMuted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/isPaused","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/item","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/nowPlayingQueue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playbackStartTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playlistItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/positionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/repeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/sessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/volumeLevel"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/volumeLevel":{"role":"symbol","title":"volumeLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the volume level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/volumeLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/volumelevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)":{"role":"symbol","title":"init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/canSeek":{"role":"symbol","title":"canSeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can seek."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/canSeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/canseek"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the media version identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/sessionID":{"role":"symbol","title":"sessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the session id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/sessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/sessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/nowPlayingQueue":{"role":"symbol","title":"nowPlayingQueue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/nowPlayingQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/nowplayingqueue"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/isMuted":{"role":"symbol","title":"isMuted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is muted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/isMuted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/ismuted"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/brightness":{"role":"symbol","title":"brightness","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/brightness","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/brightness"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/aspectRatio":{"role":"symbol","title":"aspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/aspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/aspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the live stream identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/repeatMode":{"role":"symbol","title":"repeatMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the repeat mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/repeatMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is paused."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/ispaused"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the subtitle stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/playMethod":{"role":"symbol","title":"playMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play method."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playMethod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/playbackStartTimeTicks":{"role":"symbol","title":"playbackStartTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playbackStartTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/playbackstarttimeticks"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/item":{"role":"symbol","title":"item","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/item","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/item"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/itemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/aspectratio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/aspectratio.json new file mode 100644 index 000000000..3eb9f6966 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/aspectratio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/aspectratio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/aspectRatio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"aspectRatio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV11aspectRatioSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/aspectRatio":{"role":"symbol","title":"aspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/aspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/aspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/audiostreamindex.json new file mode 100644 index 000000000..99e8fcbcc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the audio stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/brightness.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/brightness.json new file mode 100644 index 000000000..25d6f2e5e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/brightness.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/brightness"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/brightness","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"brightness","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV10brightnesss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/brightness":{"role":"symbol","title":"brightness","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/brightness","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/brightness"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/canseek.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/canseek.json new file mode 100644 index 000000000..8049102cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/canseek.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/canseek"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/canSeek","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can seek."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canSeek","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV7canSeekSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/canSeek":{"role":"symbol","title":"canSeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can seek."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/canSeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/canseek"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu.json new file mode 100644 index 000000000..30f55a2e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV","text":"QueueItem"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO","text":"PlayMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO","text":"RepeatMode"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17PlaybackStartInfoV11aspectRatio16audioStreamIndex10brightness7canSeek7isMuted0N6Paused4item0Q2ID04liveiR0011mediaSourceR015nowPlayingQueue10playMethod0y7SessionR008playbackD9TimeTicks012playlistItemR013positionTicks10repeatMode07sessionR008subtitleiJ011volumeLevelACSSSg_s5Int32VSgA_SbSgA0_A0_AA11BaseItemDtoVSg10Foundation4UUIDVSgA2XSayAA0X4ItemVGSgAA04PlayZ0OSgAXs5Int64VSgAXA17_AA10RepeatModeOSgAXA_A_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)":{"role":"symbol","title":"init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"brightness"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/init(aspectRatio:audioStreamIndex:brightness:canSeek:isMuted:isPaused:item:itemID:liveStreamID:mediaSourceID:nowPlayingQueue:playMethod:playSessionID:playbackStartTimeTicks:playlistItemID:positionTicks:repeatMode:sessionID:subtitleStreamIndex:volumeLevel:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/init(aspectratio:audiostreamindex:brightness:canseek:ismuted:ispaused:item:itemid:livestreamid:mediasourceid:nowplayingqueue:playmethod:playsessionid:playbackstarttimeticks:playlistitemid:positionticks:repeatmode:sessionid:subtitlestreamind-8sfvu"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/init(from:).json new file mode 100644 index 000000000..37f6d8d42 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17PlaybackStartInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/ismuted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/ismuted.json new file mode 100644 index 000000000..6afea2cd4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/ismuted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/ismuted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/isMuted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is muted."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMuted","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV7isMutedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/isMuted":{"role":"symbol","title":"isMuted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is muted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/isMuted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/ismuted"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/ispaused.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/ispaused.json new file mode 100644 index 000000000..a3bc2c5ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/ispaused.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/ispaused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/isPaused","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is paused."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPaused","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV8isPausedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is paused."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/ispaused"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/item.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/item.json new file mode 100644 index 000000000..2b95d0105 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/item.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/item"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/item","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"title":"item","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV4itemAA11BaseItemDtoVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/item":{"role":"symbol","title":"item","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/item","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/item"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/itemid.json new file mode 100644 index 000000000..19afcce3d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/itemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/livestreamid.json new file mode 100644 index 000000000..1b2805d2e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the live stream identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the live stream identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/mediasourceid.json new file mode 100644 index 000000000..ee54b4f54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the media version identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the media version identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/nowplayingqueue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/nowplayingqueue.json new file mode 100644 index 000000000..8eb18bb60 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/nowplayingqueue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV","text":"QueueItem"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/nowplayingqueue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/nowPlayingQueue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"title":"nowPlayingQueue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV15nowPlayingQueueSayAA0H4ItemVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/nowPlayingQueue":{"role":"symbol","title":"nowPlayingQueue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/nowPlayingQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/nowplayingqueue"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playbackstarttimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playbackstarttimeticks.json new file mode 100644 index 000000000..5e28cfe04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playbackstarttimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/playbackstarttimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playbackStartTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"playbackStartTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV08playbackD9TimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/playbackStartTimeTicks":{"role":"symbol","title":"playbackStartTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackStartTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playbackStartTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/playbackstarttimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playlistitemid.json new file mode 100644 index 000000000..f63cb8e2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV14playlistItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playmethod.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playmethod.json new file mode 100644 index 000000000..75d4b2203 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playmethod.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO","text":"PlayMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/playmethod"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playMethod","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?"}],"title":"playMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV10playMethodAA04PlayG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/playMethod":{"role":"symbol","title":"playMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play method."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playMethod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playsessionid.json new file mode 100644 index 000000000..ddd54a634 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/playsessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/positionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/positionticks.json new file mode 100644 index 000000000..69f52bbf2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/positionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/positionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/positionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"positionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV13positionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/repeatmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/repeatmode.json new file mode 100644 index 000000000..d5a9c2256 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/repeatmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO","text":"RepeatMode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/repeatmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/repeatMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the repeat mode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?"}],"title":"repeatMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV10repeatModeAA06RepeatG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/repeatMode":{"role":"symbol","title":"repeatMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the repeat mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/repeatMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/sessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/sessionid.json new file mode 100644 index 000000000..deb1a4710 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/sessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/sessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/sessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the session id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV9sessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/sessionID":{"role":"symbol","title":"sessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the session id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/sessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/sessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/subtitlestreamindex.json new file mode 100644 index 000000000..6152dc0cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the subtitle stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the subtitle stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/volumelevel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/volumelevel.json new file mode 100644 index 000000000..9bde46348 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstartinfo/volumelevel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstartinfo\/volumelevel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/volumeLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the volume level."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"volumeLevel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17PlaybackStartInfoV11volumeLevels5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo/volumeLevel":{"role":"symbol","title":"volumeLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the volume level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo\/volumeLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstartinfo\/volumelevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStartInfo":{"role":"symbol","title":"PlaybackStartInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStartInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStartInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStartInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStartInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstartinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo.json new file mode 100644 index 000000000..a4fdc474e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"title":"PlaybackStopInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16PlaybackStopInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/init(isFailed:item:itemID:liveStreamID:mediaSourceID:nextMediaType:nowPlayingQueue:playSessionID:playlistItemID:positionTicks:sessionID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/isFailed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/item","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/nextMediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/nowPlayingQueue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/playSessionID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/playlistItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/positionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/sessionID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/nextMediaType":{"role":"symbol","title":"nextMediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/nextMediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/nextmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/item":{"role":"symbol","title":"item","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/item","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/item"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/init(isFailed:item:itemID:liveStreamID:mediaSourceID:nextMediaType:nowPlayingQueue:playSessionID:playlistItemID:positionTicks:sessionID:)":{"role":"symbol","title":"init(isFailed:item:itemID:liveStreamID:mediaSourceID:nextMediaType:nowPlayingQueue:playSessionID:playlistItemID:positionTicks:sessionID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFailed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/init(isFailed:item:itemID:liveStreamID:mediaSourceID:nextMediaType:nowPlayingQueue:playSessionID:playlistItemID:positionTicks:sessionID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/init(isfailed:item:itemid:livestreamid:mediasourceid:nextmediatype:nowplayingqueue:playsessionid:playlistitemid:positionticks:sessionid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/isFailed":{"role":"symbol","title":"isFailed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFailed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/isFailed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/isfailed"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/nowPlayingQueue":{"role":"symbol","title":"nowPlayingQueue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/nowPlayingQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/nowplayingqueue"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/sessionID":{"role":"symbol","title":"sessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the session id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/sessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/sessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the live stream identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/positionticks"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the media version identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/playsessionid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/itemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/init(from:).json new file mode 100644 index 000000000..dbe98d5e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PlaybackStopInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/init(isfailed:item:itemid:livestreamid:mediasourceid:nextmediatype:nowplayingqueue:playsessionid:playlistitemid:positionticks:sessionid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/init(isfailed:item:itemid:livestreamid:mediasourceid:nextmediatype:nowplayingqueue:playsessionid:playlistitemid:positionticks:sessionid:).json new file mode 100644 index 000000000..a522bf175 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/init(isfailed:item:itemid:livestreamid:mediasourceid:nextmediatype:nowplayingqueue:playsessionid:playlistitemid:positionticks:sessionid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFailed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV","text":"QueueItem"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/init(isfailed:item:itemid:livestreamid:mediasourceid:nextmediatype:nowplayingqueue:playsessionid:playlistitemid:positionticks:sessionid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/init(isFailed:item:itemID:liveStreamID:mediaSourceID:nextMediaType:nowPlayingQueue:playSessionID:playlistItemID:positionTicks:sessionID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFailed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isFailed:item:itemID:liveStreamID:mediaSourceID:nextMediaType:nowPlayingQueue:playSessionID:playlistItemID:positionTicks:sessionID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PlaybackStopInfoV8isFailed4item0H2ID010liveStreamI0011mediaSourceI013nextMediaType15nowPlayingQueue011playSessionI0012playlistItemI013positionTicks07sessionI0ACSbSg_AA04BaseW3DtoVSg10Foundation4UUIDVSgSSSgA2WSayAA0sW0VGSgA2Ws5Int64VSgAWtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/init(isFailed:item:itemID:liveStreamID:mediaSourceID:nextMediaType:nowPlayingQueue:playSessionID:playlistItemID:positionTicks:sessionID:)":{"role":"symbol","title":"init(isFailed:item:itemID:liveStreamID:mediaSourceID:nextMediaType:nowPlayingQueue:playSessionID:playlistItemID:positionTicks:sessionID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFailed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/init(isFailed:item:itemID:liveStreamID:mediaSourceID:nextMediaType:nowPlayingQueue:playSessionID:playlistItemID:positionTicks:sessionID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/init(isfailed:item:itemid:livestreamid:mediasourceid:nextmediatype:nowplayingqueue:playsessionid:playlistitemid:positionticks:sessionid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/isfailed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/isfailed.json new file mode 100644 index 000000000..d1da82588 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/isfailed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFailed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/isfailed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/isFailed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFailed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFailed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV8isFailedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/isFailed":{"role":"symbol","title":"isFailed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFailed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/isFailed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/isfailed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/item.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/item.json new file mode 100644 index 000000000..f02e24be1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/item.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/item"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/item","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"title":"item","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV4itemAA11BaseItemDtoVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/item":{"role":"symbol","title":"item","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/item","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/item"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/itemid.json new file mode 100644 index 000000000..ab8a17227 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/livestreamid.json new file mode 100644 index 000000000..851ddfb45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the live stream identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the live stream identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/mediasourceid.json new file mode 100644 index 000000000..632f9fe32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the media version identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the media version identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/nextmediatype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/nextmediatype.json new file mode 100644 index 000000000..09dc9b123 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/nextmediatype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/nextmediatype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/nextMediaType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"nextMediaType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV13nextMediaTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/nextMediaType":{"role":"symbol","title":"nextMediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextMediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/nextMediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/nextmediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/nowplayingqueue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/nowplayingqueue.json new file mode 100644 index 000000000..b29eacb65 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/nowplayingqueue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV","text":"QueueItem"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/nowplayingqueue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/nowPlayingQueue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"title":"nowPlayingQueue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV15nowPlayingQueueSayAA0H4ItemVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/nowPlayingQueue":{"role":"symbol","title":"nowPlayingQueue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/nowPlayingQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/nowplayingqueue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/playlistitemid.json new file mode 100644 index 000000000..40e7d2ef1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV14playlistItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/playsessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/playsessionid.json new file mode 100644 index 000000000..75da3463a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/playsessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/playsessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/playSessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playSessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV13playSessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/playSessionID":{"role":"symbol","title":"playSessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playSessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play session identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/playSessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/playsessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/positionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/positionticks.json new file mode 100644 index 000000000..ba1080802 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/positionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/positionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/positionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"positionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV13positionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/positionticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/sessionid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/sessionid.json new file mode 100644 index 000000000..56e85518a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playbackstopinfo/sessionid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playbackstopinfo\/sessionid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/sessionID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the session id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sessionID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaybackStopInfoV9sessionIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo":{"role":"symbol","title":"PlaybackStopInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaybackStopInfo"}],"abstract":[{"type":"text","text":"Class PlaybackStopInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaybackStopInfo"}],"url":"\/documentation\/jellyfinapi\/playbackstopinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaybackStopInfo/sessionID":{"role":"symbol","title":"sessionID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the session id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaybackStopInfo\/sessionID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playbackstopinfo\/sessionid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand.json new file mode 100644 index 000000000..8c16647f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum PlayCommand."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"title":"PlayCommand","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI11PlayCommandO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playInstantMix","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playLast","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playNext","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playNow","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playShuffle"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/playNow":{"role":"symbol","title":"PlayCommand.playNow","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNow"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playNow","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/playnow"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/playShuffle":{"role":"symbol","title":"PlayCommand.playShuffle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playShuffle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playShuffle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/playshuffle"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/playNext":{"role":"symbol","title":"PlayCommand.playNext","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playNext","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/playnext"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/playInstantMix":{"role":"symbol","title":"PlayCommand.playInstantMix","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playInstantMix"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playInstantMix","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/playinstantmix"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/playLast":{"role":"symbol","title":"PlayCommand.playLast","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playLast"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playLast","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/playlast"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/!=(_:_:).json new file mode 100644 index 000000000..e6d1ce477 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI11PlayCommandO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/encode(to:).json new file mode 100644 index 000000000..c8fd13094 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI11PlayCommandO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/equatable-implementations.json new file mode 100644 index 000000000..b0bba68b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/hash(into:).json new file mode 100644 index 000000000..f8c7662c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI11PlayCommandO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/hashvalue.json new file mode 100644 index 000000000..10d84b236 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI11PlayCommandO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/init(from:).json new file mode 100644 index 000000000..6c96cfe22 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI11PlayCommandO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/init(rawvalue:).json new file mode 100644 index 000000000..5f9712c59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11PlayCommandO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playinstantmix.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playinstantmix.json new file mode 100644 index 000000000..7f449e060 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playinstantmix.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playInstantMix"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/playinstantmix"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playInstantMix","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playInstantMix"}],"title":"PlayCommand.playInstantMix","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11PlayCommandO14playInstantMixyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/playInstantMix":{"role":"symbol","title":"PlayCommand.playInstantMix","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playInstantMix"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playInstantMix","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/playinstantmix"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playlast.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playlast.json new file mode 100644 index 000000000..647545a33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playlast.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playLast"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/playlast"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playLast","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playLast"}],"title":"PlayCommand.playLast","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11PlayCommandO8playLastyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/playLast":{"role":"symbol","title":"PlayCommand.playLast","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playLast"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playLast","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/playlast"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playnext.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playnext.json new file mode 100644 index 000000000..32f7eabc7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playnext.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNext"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/playnext"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playNext","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNext"}],"title":"PlayCommand.playNext","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11PlayCommandO8playNextyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/playNext":{"role":"symbol","title":"PlayCommand.playNext","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playNext","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/playnext"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playnow.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playnow.json new file mode 100644 index 000000000..3042e1345 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playnow.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNow"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/playnow"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playNow","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNow"}],"title":"PlayCommand.playNow","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11PlayCommandO7playNowyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/playNow":{"role":"symbol","title":"PlayCommand.playNow","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNow"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playNow","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/playnow"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playshuffle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playshuffle.json new file mode 100644 index 000000000..2e25263df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/playshuffle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playShuffle"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/playshuffle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playShuffle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playShuffle"}],"title":"PlayCommand.playShuffle","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11PlayCommandO11playShuffleyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/playShuffle":{"role":"symbol","title":"PlayCommand.playShuffle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playShuffle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/playShuffle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/playshuffle"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/rawrepresentable-implementations.json new file mode 100644 index 000000000..15f41cdcd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playcommand/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playcommand\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playcommand\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo.json new file mode 100644 index 000000000..f41b00364 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"title":"PlayerStateInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15PlayerStateInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/init(audioStreamIndex:canSeek:isMuted:isPaused:liveStreamID:mediaSourceID:playMethod:positionTicks:repeatMode:subtitleStreamIndex:volumeLevel:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/canSeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/isMuted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/isPaused","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/liveStreamID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/playMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/positionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/repeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/subtitleStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/volumeLevel"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/canSeek":{"role":"symbol","title":"canSeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can seek."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/canSeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/canseek"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the now playing audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/init(audioStreamIndex:canSeek:isMuted:isPaused:liveStreamID:mediaSourceID:playMethod:positionTicks:repeatMode:subtitleStreamIndex:volumeLevel:)":{"role":"symbol","title":"init(audioStreamIndex:canSeek:isMuted:isPaused:liveStreamID:mediaSourceID:playMethod:positionTicks:repeatMode:subtitleStreamIndex:volumeLevel:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/init(audioStreamIndex:canSeek:isMuted:isPaused:liveStreamID:mediaSourceID:playMethod:positionTicks:repeatMode:subtitleStreamIndex:volumeLevel:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/init(audiostreamindex:canseek:ismuted:ispaused:livestreamid:mediasourceid:playmethod:positionticks:repeatmode:subtitlestreamindex:volumelevel:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/repeatMode":{"role":"symbol","title":"repeatMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the repeat mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/repeatMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/repeatmode"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/isMuted":{"role":"symbol","title":"isMuted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is muted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/isMuted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/ismuted"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the now playing media version identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the now playing live stream identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the now playing subtitle stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/playMethod":{"role":"symbol","title":"playMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play method."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/playMethod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the now playing position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/volumeLevel":{"role":"symbol","title":"volumeLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the volume level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/volumeLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/volumelevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is paused."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/ispaused"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/audiostreamindex.json new file mode 100644 index 000000000..c58f1e193 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the now playing audio stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the now playing audio stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/canseek.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/canseek.json new file mode 100644 index 000000000..47116b7a4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/canseek.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/canseek"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/canSeek","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can seek."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canSeek","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV7canSeekSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/canSeek":{"role":"symbol","title":"canSeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can seek."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/canSeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/canseek"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/init(audiostreamindex:canseek:ismuted:ispaused:livestreamid:mediasourceid:playmethod:positionticks:repeatmode:subtitlestreamindex:volumelevel:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/init(audiostreamindex:canseek:ismuted:ispaused:livestreamid:mediasourceid:playmethod:positionticks:repeatmode:subtitlestreamindex:volumelevel:).json new file mode 100644 index 000000000..f90d12359 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/init(audiostreamindex:canseek:ismuted:ispaused:livestreamid:mediasourceid:playmethod:positionticks:repeatmode:subtitlestreamindex:volumelevel:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO","text":"PlayMethod"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO","text":"RepeatMode"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/init(audiostreamindex:canseek:ismuted:ispaused:livestreamid:mediasourceid:playmethod:positionticks:repeatmode:subtitlestreamindex:volumelevel:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/init(audioStreamIndex:canSeek:isMuted:isPaused:liveStreamID:mediaSourceID:playMethod:positionTicks:repeatMode:subtitleStreamIndex:volumeLevel:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(audioStreamIndex:canSeek:isMuted:isPaused:liveStreamID:mediaSourceID:playMethod:positionTicks:repeatMode:subtitleStreamIndex:volumeLevel:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15PlayerStateInfoV16audioStreamIndex7canSeek7isMuted0K6Paused04liveG2ID011mediaSourceO010playMethod13positionTicks10repeatMode08subtitlegH011volumeLevelACs5Int32VSg_SbSgA2RSSSgAsA04PlayS0OSgs5Int64VSgAA06RepeatW0OSgA2Qtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/init(audioStreamIndex:canSeek:isMuted:isPaused:liveStreamID:mediaSourceID:playMethod:positionTicks:repeatMode:subtitleStreamIndex:volumeLevel:)":{"role":"symbol","title":"init(audioStreamIndex:canSeek:isMuted:isPaused:liveStreamID:mediaSourceID:playMethod:positionTicks:repeatMode:subtitleStreamIndex:volumeLevel:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/init(audioStreamIndex:canSeek:isMuted:isPaused:liveStreamID:mediaSourceID:playMethod:positionTicks:repeatMode:subtitleStreamIndex:volumeLevel:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/init(audiostreamindex:canseek:ismuted:ispaused:livestreamid:mediasourceid:playmethod:positionticks:repeatmode:subtitlestreamindex:volumelevel:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/init(from:).json new file mode 100644 index 000000000..c58312872 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15PlayerStateInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/ismuted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/ismuted.json new file mode 100644 index 000000000..e5609fa79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/ismuted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/ismuted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/isMuted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is muted."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isMuted","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV7isMutedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/isMuted":{"role":"symbol","title":"isMuted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMuted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is muted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/isMuted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/ismuted"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/ispaused.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/ispaused.json new file mode 100644 index 000000000..d23792e23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/ispaused.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/ispaused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/isPaused","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is paused."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPaused","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV8isPausedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is paused."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/ispaused"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/livestreamid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/livestreamid.json new file mode 100644 index 000000000..8e617df50 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/livestreamid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/livestreamid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/liveStreamID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the now playing live stream identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"liveStreamID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV12liveStreamIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/liveStreamID":{"role":"symbol","title":"liveStreamID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveStreamID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the now playing live stream identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/liveStreamID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/livestreamid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/mediasourceid.json new file mode 100644 index 000000000..580fbc81a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the now playing media version identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the now playing media version identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/playmethod.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/playmethod.json new file mode 100644 index 000000000..8da95b51b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/playmethod.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO","text":"PlayMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/playmethod"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/playMethod","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?"}],"title":"playMethod","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV10playMethodAA04PlayG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/playMethod":{"role":"symbol","title":"playMethod","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playMethod"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayMethod","preciseIdentifier":"s:11JellyfinAPI10PlayMethodO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play method."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/playMethod","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/playmethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/positionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/positionticks.json new file mode 100644 index 000000000..cb0ca7d7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/positionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/positionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/positionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the now playing position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"positionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV13positionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the now playing position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/repeatmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/repeatmode.json new file mode 100644 index 000000000..6b8bdd810 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/repeatmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO","text":"RepeatMode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/repeatmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/repeatMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the repeat mode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?"}],"title":"repeatMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV10repeatModeAA06RepeatG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/repeatMode":{"role":"symbol","title":"repeatMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RepeatMode","preciseIdentifier":"s:11JellyfinAPI10RepeatModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the repeat mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/repeatMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/subtitlestreamindex.json new file mode 100644 index 000000000..ee18e770a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the now playing subtitle stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the now playing subtitle stream."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/volumelevel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/volumelevel.json new file mode 100644 index 000000000..4f33e5ef7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playerstateinfo/volumelevel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playerstateinfo\/volumelevel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/volumeLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the volume level."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"volumeLevel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15PlayerStateInfoV11volumeLevels5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo/volumeLevel":{"role":"symbol","title":"volumeLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volumeLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the volume level."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo\/volumeLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playerstateinfo\/volumelevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult.json new file mode 100644 index 000000000..443d438ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaylistCreationResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playlistcreationresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaylistCreationResult"}],"title":"PlaylistCreationResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI22PlaylistCreationResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlaylistCreationResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/init(id:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/id-9jvaw"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult/id-9jvaw":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/id-9jvaw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playlistcreationresult\/id-9jvaw"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playlistcreationresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult":{"role":"symbol","title":"PlaylistCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaylistCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaylistCreationResult"}],"url":"\/documentation\/jellyfinapi\/playlistcreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playlistcreationresult\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult/init(id:)":{"role":"symbol","title":"init(id:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/init(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playlistcreationresult\/init(id:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/id-58y0y.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/id-58y0y.json new file mode 100644 index 000000000..44deaed1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/id-58y0y.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playlistcreationresult\/id-58y0y"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/id-58y0y","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI22PlaylistCreationResultV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult":{"role":"symbol","title":"PlaylistCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaylistCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaylistCreationResult"}],"url":"\/documentation\/jellyfinapi\/playlistcreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playlistcreationresult\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult/id-58y0y":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/id-58y0y","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playlistcreationresult\/id-58y0y"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/id-9jvaw.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/id-9jvaw.json new file mode 100644 index 000000000..e30c724a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/id-9jvaw.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playlistcreationresult\/id-9jvaw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/id-9jvaw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22PlaylistCreationResultV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult/id-9jvaw":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/id-9jvaw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playlistcreationresult\/id-9jvaw"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult":{"role":"symbol","title":"PlaylistCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaylistCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaylistCreationResult"}],"url":"\/documentation\/jellyfinapi\/playlistcreationresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/identifiable-implementations.json new file mode 100644 index 000000000..a08782aeb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playlistcreationresult\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/id-58y0y"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult/id-58y0y":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/id-58y0y","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playlistcreationresult\/id-58y0y"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult":{"role":"symbol","title":"PlaylistCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaylistCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaylistCreationResult"}],"url":"\/documentation\/jellyfinapi\/playlistcreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/init(from:).json new file mode 100644 index 000000000..a87dc7a71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playlistcreationresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22PlaylistCreationResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult":{"role":"symbol","title":"PlaylistCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaylistCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaylistCreationResult"}],"url":"\/documentation\/jellyfinapi\/playlistcreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playlistcreationresult\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/init(id:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/init(id:).json new file mode 100644 index 000000000..162af89df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playlistcreationresult/init(id:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playlistcreationresult\/init(id:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/init(id:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(id:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22PlaylistCreationResultV2idACSSSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult":{"role":"symbol","title":"PlaylistCreationResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaylistCreationResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaylistCreationResult"}],"url":"\/documentation\/jellyfinapi\/playlistcreationresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaylistCreationResult/init(id:)":{"role":"symbol","title":"init(id:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaylistCreationResult\/init(id:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playlistcreationresult\/init(id:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod.json new file mode 100644 index 000000000..c67515ff7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"title":"PlayMethod","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI10PlayMethodO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/directPlay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/directStream","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/transcode"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/transcode":{"role":"symbol","title":"PlayMethod.transcode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/transcode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/transcode"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/init(rawvalue:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/directStream":{"role":"symbol","title":"PlayMethod.directStream","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directStream"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/directStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/directstream"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/directPlay":{"role":"symbol","title":"PlayMethod.directPlay","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlay"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/directPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/directplay"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/!=(_:_:).json new file mode 100644 index 000000000..83233583b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI10PlayMethodO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/directplay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/directplay.json new file mode 100644 index 000000000..edee55ca3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/directplay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlay"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/directplay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/directPlay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlay"}],"title":"PlayMethod.directPlay","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10PlayMethodO06directC0yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/directPlay":{"role":"symbol","title":"PlayMethod.directPlay","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlay"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/directPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/directplay"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/directstream.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/directstream.json new file mode 100644 index 000000000..7fbb670ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/directstream.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directStream"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/directstream"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/directStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directStream"}],"title":"PlayMethod.directStream","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10PlayMethodO12directStreamyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/directStream":{"role":"symbol","title":"PlayMethod.directStream","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directStream"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/directStream","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/directstream"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/encode(to:).json new file mode 100644 index 000000000..ab6617d70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI10PlayMethodO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/equatable-implementations.json new file mode 100644 index 000000000..bea9fe825 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/hash(into:).json new file mode 100644 index 000000000..350a12aaf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI10PlayMethodO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/hashvalue.json new file mode 100644 index 000000000..24d17fce4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI10PlayMethodO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/init(from:).json new file mode 100644 index 000000000..7f76179a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI10PlayMethodO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/init(rawvalue:).json new file mode 100644 index 000000000..153995b5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10PlayMethodO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/rawrepresentable-implementations.json new file mode 100644 index 000000000..ab4b0f370 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/transcode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/transcode.json new file mode 100644 index 000000000..7cf68cb47 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playmethod/transcode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playmethod\/transcode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/transcode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcode"}],"title":"PlayMethod.transcode","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10PlayMethodO9transcodeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod/transcode":{"role":"symbol","title":"PlayMethod.transcode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod\/transcode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playmethod\/transcode"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayMethod":{"role":"symbol","title":"PlayMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayMethod"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayMethod"}],"url":"\/documentation\/jellyfinapi\/playmethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest.json new file mode 100644 index 000000000..c21b7922d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class PlayRequest."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"title":"PlayRequest","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11PlayRequestV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/init(audioStreamIndex:controllingUserID:itemIDs:mediaSourceID:playCommand:startIndex:startPositionTicks:subtitleStreamIndex:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/audioStreamIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/controllingUserID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/itemIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/mediaSourceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/playCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/startPositionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/subtitleStreamIndex"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/controllingUserID":{"role":"symbol","title":"controllingUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the controlling user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/controllingUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/controllinguserid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/playCommand":{"role":"symbol","title":"playCommand","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI11PlayCommandO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play command."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/playCommand","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start position ticks that the first item should be played at."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/startpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/init(audioStreamIndex:controllingUserID:itemIDs:mediaSourceID:playCommand:startIndex:startPositionTicks:subtitleStreamIndex:)":{"role":"symbol","title":"init(audioStreamIndex:controllingUserID:itemIDs:mediaSourceID:playCommand:startIndex:startPositionTicks:subtitleStreamIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI11PlayCommandO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/init(audioStreamIndex:controllingUserID:itemIDs:mediaSourceID:playCommand:startIndex:startPositionTicks:subtitleStreamIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/init(audiostreamindex:controllinguserid:itemids:mediasourceid:playcommand:startindex:startpositionticks:subtitlestreamindex:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/itemIDs":{"role":"symbol","title":"itemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the item ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/itemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/itemids"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/subtitlestreamindex"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/audiostreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/audiostreamindex.json new file mode 100644 index 000000000..47cf29902 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/audiostreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest\/audiostreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/audioStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PlayRequestV16audioStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/audioStreamIndex":{"role":"symbol","title":"audioStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/audioStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/audiostreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/controllinguserid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/controllinguserid.json new file mode 100644 index 000000000..59f3574a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/controllinguserid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest\/controllinguserid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/controllingUserID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the controlling user identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"controllingUserID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PlayRequestV17controllingUserID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/controllingUserID":{"role":"symbol","title":"controllingUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the controlling user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/controllingUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/controllinguserid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/init(audiostreamindex:controllinguserid:itemids:mediasourceid:playcommand:startindex:startpositionticks:subtitlestreamindex:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/init(audiostreamindex:controllinguserid:itemids:mediasourceid:playcommand:startindex:startpositionticks:subtitlestreamindex:).json new file mode 100644 index 000000000..cafcc6fe5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/init(audiostreamindex:controllinguserid:itemids:mediasourceid:playcommand:startindex:startpositionticks:subtitlestreamindex:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","preciseIdentifier":"s:11JellyfinAPI11PlayCommandO","text":"PlayCommand"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest\/init(audiostreamindex:controllinguserid:itemids:mediasourceid:playcommand:startindex:startpositionticks:subtitlestreamindex:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/init(audioStreamIndex:controllingUserID:itemIDs:mediaSourceID:playCommand:startIndex:startPositionTicks:subtitleStreamIndex:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI11PlayCommandO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(audioStreamIndex:controllingUserID:itemIDs:mediaSourceID:playCommand:startIndex:startPositionTicks:subtitleStreamIndex:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11PlayRequestV16audioStreamIndex17controllingUserID7itemIDs011mediaSourceJ011playCommand05startG00Q13PositionTicks08subtitlefG0ACs5Int32VSg_10Foundation4UUIDVSgSayAQGSgSSSgAA0cP0OSgANs5Int64VSgANtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/init(audioStreamIndex:controllingUserID:itemIDs:mediaSourceID:playCommand:startIndex:startPositionTicks:subtitleStreamIndex:)":{"role":"symbol","title":"init(audioStreamIndex:controllingUserID:itemIDs:mediaSourceID:playCommand:startIndex:startPositionTicks:subtitleStreamIndex:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI11PlayCommandO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/init(audioStreamIndex:controllingUserID:itemIDs:mediaSourceID:playCommand:startIndex:startPositionTicks:subtitleStreamIndex:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/init(audiostreamindex:controllinguserid:itemids:mediasourceid:playcommand:startindex:startpositionticks:subtitlestreamindex:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/init(from:).json new file mode 100644 index 000000000..8710a4483 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11PlayRequestV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/itemids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/itemids.json new file mode 100644 index 000000000..cfacc3c99 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/itemids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest\/itemids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/itemIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"itemIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PlayRequestV7itemIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/itemIDs":{"role":"symbol","title":"itemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the item ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/itemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/itemids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/mediasourceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/mediasourceid.json new file mode 100644 index 000000000..580ede07a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/mediasourceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest\/mediasourceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/mediaSourceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaSourceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PlayRequestV13mediaSourceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/mediaSourceID":{"role":"symbol","title":"mediaSourceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaSourceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/mediaSourceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/mediasourceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/playcommand.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/playcommand.json new file mode 100644 index 000000000..7945a324e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/playcommand.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","preciseIdentifier":"s:11JellyfinAPI11PlayCommandO","text":"PlayCommand"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest\/playcommand"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/playCommand","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play command."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI11PlayCommandO"},{"kind":"text","text":"?"}],"title":"playCommand","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PlayRequestV11playCommandAA0cF0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayCommand":{"role":"symbol","title":"PlayCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayCommand"}],"abstract":[{"type":"text","text":"Enum PlayCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayCommand"}],"url":"\/documentation\/jellyfinapi\/playcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/playCommand":{"role":"symbol","title":"playCommand","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCommand"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayCommand","preciseIdentifier":"s:11JellyfinAPI11PlayCommandO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play command."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/playCommand","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/playcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/startindex.json new file mode 100644 index 000000000..28b1cf581 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PlayRequestV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/startindex"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/startpositionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/startpositionticks.json new file mode 100644 index 000000000..fdcf1cf82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/startpositionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest\/startpositionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/startPositionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start position ticks that the first item should be played at."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startPositionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PlayRequestV18startPositionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start position ticks that the first item should be played at."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/startpositionticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/subtitlestreamindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/subtitlestreamindex.json new file mode 100644 index 000000000..3ee61466a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequest/subtitlestreamindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequest\/subtitlestreamindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/subtitleStreamIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"subtitleStreamIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11PlayRequestV19subtitleStreamIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest/subtitleStreamIndex":{"role":"symbol","title":"subtitleStreamIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleStreamIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest\/subtitleStreamIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequest\/subtitlestreamindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequest":{"role":"symbol","title":"PlayRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequest"}],"abstract":[{"type":"text","text":"Class PlayRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequest"}],"url":"\/documentation\/jellyfinapi\/playrequest"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto.json new file mode 100644 index 000000000..42664c6ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class PlayRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequestDto"}],"title":"PlayRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14PlayRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlayRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/init(playingItemPosition:playingQueue:startPositionTicks:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/playingItemPosition","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/playingQueue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/startPositionTicks"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequestdto\/startpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto/playingItemPosition":{"role":"symbol","title":"playingItemPosition","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playingItemPosition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position of the playing item in the queue."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/playingItemPosition","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequestdto\/playingitemposition"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto":{"role":"symbol","title":"PlayRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequestDto"}],"abstract":[{"type":"text","text":"Class PlayRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequestDto"}],"url":"\/documentation\/jellyfinapi\/playrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto/init(playingItemPosition:playingQueue:startPositionTicks:)":{"role":"symbol","title":"init(playingItemPosition:playingQueue:startPositionTicks:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playingItemPosition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/init(playingItemPosition:playingQueue:startPositionTicks:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequestdto\/init(playingitemposition:playingqueue:startpositionticks:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto/playingQueue":{"role":"symbol","title":"playingQueue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the playing queue."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/playingQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequestdto\/playingqueue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequestdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/init(from:).json new file mode 100644 index 000000000..2feb8862e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14PlayRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto":{"role":"symbol","title":"PlayRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequestDto"}],"abstract":[{"type":"text","text":"Class PlayRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequestDto"}],"url":"\/documentation\/jellyfinapi\/playrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequestdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/init(playingitemposition:playingqueue:startpositionticks:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/init(playingitemposition:playingqueue:startpositionticks:).json new file mode 100644 index 000000000..117b6398f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/init(playingitemposition:playingqueue:startpositionticks:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playingItemPosition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequestdto\/init(playingitemposition:playingqueue:startpositionticks:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/init(playingItemPosition:playingQueue:startPositionTicks:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playingItemPosition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"title":"init(playingItemPosition:playingQueue:startPositionTicks:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14PlayRequestDtoV19playingItemPosition0F5Queue05startH5TicksACs5Int32VSg_Say10Foundation4UUIDVGSgs5Int64VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto":{"role":"symbol","title":"PlayRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequestDto"}],"abstract":[{"type":"text","text":"Class PlayRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequestDto"}],"url":"\/documentation\/jellyfinapi\/playrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto/init(playingItemPosition:playingQueue:startPositionTicks:)":{"role":"symbol","title":"init(playingItemPosition:playingQueue:startPositionTicks:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playingItemPosition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/init(playingItemPosition:playingQueue:startPositionTicks:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequestdto\/init(playingitemposition:playingqueue:startpositionticks:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/playingitemposition.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/playingitemposition.json new file mode 100644 index 000000000..839284ac0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/playingitemposition.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playingItemPosition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequestdto\/playingitemposition"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/playingItemPosition","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the position of the playing item in the queue."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playingItemPosition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"playingItemPosition","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14PlayRequestDtoV19playingItemPositions5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto/playingItemPosition":{"role":"symbol","title":"playingItemPosition","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playingItemPosition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position of the playing item in the queue."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/playingItemPosition","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequestdto\/playingitemposition"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto":{"role":"symbol","title":"PlayRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequestDto"}],"abstract":[{"type":"text","text":"Class PlayRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequestDto"}],"url":"\/documentation\/jellyfinapi\/playrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/playingqueue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/playingqueue.json new file mode 100644 index 000000000..ab077f400 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/playingqueue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequestdto\/playingqueue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/playingQueue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playing queue."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"playingQueue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14PlayRequestDtoV12playingQueueSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto":{"role":"symbol","title":"PlayRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequestDto"}],"abstract":[{"type":"text","text":"Class PlayRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequestDto"}],"url":"\/documentation\/jellyfinapi\/playrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto/playingQueue":{"role":"symbol","title":"playingQueue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the playing queue."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/playingQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequestdto\/playingqueue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/startpositionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/startpositionticks.json new file mode 100644 index 000000000..4f8795d5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playrequestdto/startpositionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playrequestdto\/startpositionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/startPositionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"startPositionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14PlayRequestDtoV18startPositionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto":{"role":"symbol","title":"PlayRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayRequestDto"}],"abstract":[{"type":"text","text":"Class PlayRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayRequestDto"}],"url":"\/documentation\/jellyfinapi\/playrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayRequestDto/startPositionTicks":{"role":"symbol","title":"startPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayRequestDto\/startPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playrequestdto\/startpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand.json new file mode 100644 index 000000000..4fdf4bbc0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"title":"PlaystateCommand","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI16PlaystateCommandO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/fastForward","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/nextTrack","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/pause","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/playPause","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/previousTrack","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/rewind","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/seek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/stop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/unpause"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/pause":{"role":"symbol","title":"PlaystateCommand.pause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/pause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/pause"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/unpause":{"role":"symbol","title":"PlaystateCommand.unpause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpause"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/unpause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/unpause"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/playPause":{"role":"symbol","title":"PlaystateCommand.playPause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playPause"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/playPause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/playpause"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/stop":{"role":"symbol","title":"PlaystateCommand.stop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/stop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/stop"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/nextTrack":{"role":"symbol","title":"PlaystateCommand.nextTrack","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextTrack"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/nextTrack","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/nexttrack"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/fastForward":{"role":"symbol","title":"PlaystateCommand.fastForward","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fastForward"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/fastForward","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/fastforward"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/rewind":{"role":"symbol","title":"PlaystateCommand.rewind","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rewind"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/rewind","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/rewind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/seek":{"role":"symbol","title":"PlaystateCommand.seek","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/seek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/seek"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/previousTrack":{"role":"symbol","title":"PlaystateCommand.previousTrack","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousTrack"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/previousTrack","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/previoustrack"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/rawrepresentable-implementations"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/!=(_:_:).json new file mode 100644 index 000000000..48d757373 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI16PlaystateCommandO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/encode(to:).json new file mode 100644 index 000000000..968aabb8f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI16PlaystateCommandO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/equatable-implementations.json new file mode 100644 index 000000000..0f97ceb76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/fastforward.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/fastforward.json new file mode 100644 index 000000000..709de462b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/fastforward.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fastForward"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/fastforward"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/fastForward","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fastForward"}],"title":"PlaystateCommand.fastForward","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16PlaystateCommandO11fastForwardyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/fastForward":{"role":"symbol","title":"PlaystateCommand.fastForward","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fastForward"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/fastForward","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/fastforward"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/hash(into:).json new file mode 100644 index 000000000..453f2973c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI16PlaystateCommandO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/hashvalue.json new file mode 100644 index 000000000..fed266a53 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI16PlaystateCommandO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/init(from:).json new file mode 100644 index 000000000..7d66d0b9c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI16PlaystateCommandO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/init(rawvalue:).json new file mode 100644 index 000000000..4a6cc3f52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PlaystateCommandO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/nexttrack.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/nexttrack.json new file mode 100644 index 000000000..f00b0860d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/nexttrack.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextTrack"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/nexttrack"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/nextTrack","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextTrack"}],"title":"PlaystateCommand.nextTrack","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16PlaystateCommandO9nextTrackyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/nextTrack":{"role":"symbol","title":"PlaystateCommand.nextTrack","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nextTrack"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/nextTrack","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/nexttrack"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/pause.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/pause.json new file mode 100644 index 000000000..89d57223c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/pause.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/pause"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/pause","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"}],"title":"PlaystateCommand.pause","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16PlaystateCommandO5pauseyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/pause":{"role":"symbol","title":"PlaystateCommand.pause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/pause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/pause"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/playpause.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/playpause.json new file mode 100644 index 000000000..c370950c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/playpause.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playPause"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/playpause"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/playPause","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playPause"}],"title":"PlaystateCommand.playPause","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16PlaystateCommandO9playPauseyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/playPause":{"role":"symbol","title":"PlaystateCommand.playPause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playPause"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/playPause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/playpause"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/previoustrack.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/previoustrack.json new file mode 100644 index 000000000..6e8862bdb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/previoustrack.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousTrack"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/previoustrack"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/previousTrack","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousTrack"}],"title":"PlaystateCommand.previousTrack","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16PlaystateCommandO13previousTrackyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/previousTrack":{"role":"symbol","title":"PlaystateCommand.previousTrack","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousTrack"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/previousTrack","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/previoustrack"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/rawrepresentable-implementations.json new file mode 100644 index 000000000..85adf4b56 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/rewind.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/rewind.json new file mode 100644 index 000000000..367ae9a9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/rewind.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rewind"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/rewind"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/rewind","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rewind"}],"title":"PlaystateCommand.rewind","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16PlaystateCommandO6rewindyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/rewind":{"role":"symbol","title":"PlaystateCommand.rewind","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"rewind"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/rewind","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/rewind"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/seek.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/seek.json new file mode 100644 index 000000000..dbe887421 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/seek.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/seek"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/seek","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"}],"title":"PlaystateCommand.seek","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16PlaystateCommandO4seekyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/seek":{"role":"symbol","title":"PlaystateCommand.seek","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/seek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/seek"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/stop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/stop.json new file mode 100644 index 000000000..e09a93736 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/stop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/stop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/stop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"}],"title":"PlaystateCommand.stop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16PlaystateCommandO4stopyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/stop":{"role":"symbol","title":"PlaystateCommand.stop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/stop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/stop"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/unpause.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/unpause.json new file mode 100644 index 000000000..35d2ae97b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstatecommand/unpause.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpause"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstatecommand\/unpause"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/unpause","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpause"}],"title":"PlaystateCommand.unpause","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI16PlaystateCommandO7unpauseyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand/unpause":{"role":"symbol","title":"PlaystateCommand.unpause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpause"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand\/unpause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstatecommand\/unpause"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest.json new file mode 100644 index 000000000..f625534ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateRequest"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstaterequest"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateRequest"}],"title":"PlaystateRequest","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16PlaystateRequestV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PlaystateRequest"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/init(command:controllingUserID:seekPositionTicks:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/command","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/controllingUserID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/seekPositionTicks"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest/controllingUserID":{"role":"symbol","title":"controllingUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the controlling user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/controllingUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstaterequest\/controllinguserid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest/init(command:controllingUserID:seekPositionTicks:)":{"role":"symbol","title":"init(command:controllingUserID:seekPositionTicks:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaystateCommand","preciseIdentifier":"s:11JellyfinAPI16PlaystateCommandO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/init(command:controllingUserID:seekPositionTicks:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstaterequest\/init(command:controllinguserid:seekpositionticks:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstaterequest\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest/command":{"role":"symbol","title":"command","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaystateCommand","preciseIdentifier":"s:11JellyfinAPI16PlaystateCommandO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/command","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstaterequest\/command"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest/seekPositionTicks":{"role":"symbol","title":"seekPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/seekPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstaterequest\/seekpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest":{"role":"symbol","title":"PlaystateRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateRequest"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateRequest"}],"url":"\/documentation\/jellyfinapi\/playstaterequest"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/command.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/command.json new file mode 100644 index 000000000..54f4613fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/command.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","preciseIdentifier":"s:11JellyfinAPI16PlaystateCommandO","text":"PlaystateCommand"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstaterequest\/command"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/command","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaystateCommand","preciseIdentifier":"s:11JellyfinAPI16PlaystateCommandO"},{"kind":"text","text":"?"}],"title":"command","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaystateRequestV7commandAA0C7CommandOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest":{"role":"symbol","title":"PlaystateRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateRequest"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateRequest"}],"url":"\/documentation\/jellyfinapi\/playstaterequest"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest/command":{"role":"symbol","title":"command","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaystateCommand","preciseIdentifier":"s:11JellyfinAPI16PlaystateCommandO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/command","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstaterequest\/command"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/controllinguserid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/controllinguserid.json new file mode 100644 index 000000000..c719c7890 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/controllinguserid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstaterequest\/controllinguserid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/controllingUserID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the controlling user identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"controllingUserID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaystateRequestV17controllingUserIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest":{"role":"symbol","title":"PlaystateRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateRequest"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateRequest"}],"url":"\/documentation\/jellyfinapi\/playstaterequest"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest/controllingUserID":{"role":"symbol","title":"controllingUserID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the controlling user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/controllingUserID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstaterequest\/controllinguserid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/init(command:controllinguserid:seekpositionticks:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/init(command:controllinguserid:seekpositionticks:).json new file mode 100644 index 000000000..7d227da6b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/init(command:controllinguserid:seekpositionticks:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","preciseIdentifier":"s:11JellyfinAPI16PlaystateCommandO","text":"PlaystateCommand"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstaterequest\/init(command:controllinguserid:seekpositionticks:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/init(command:controllingUserID:seekPositionTicks:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaystateCommand","preciseIdentifier":"s:11JellyfinAPI16PlaystateCommandO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"title":"init(command:controllingUserID:seekPositionTicks:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PlaystateRequestV7command17controllingUserID17seekPositionTicksAcA0C7CommandOSg_SSSgs5Int64VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest/init(command:controllingUserID:seekPositionTicks:)":{"role":"symbol","title":"init(command:controllingUserID:seekPositionTicks:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlaystateCommand","preciseIdentifier":"s:11JellyfinAPI16PlaystateCommandO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"controllingUserID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/init(command:controllingUserID:seekPositionTicks:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstaterequest\/init(command:controllinguserid:seekpositionticks:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest":{"role":"symbol","title":"PlaystateRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateRequest"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateRequest"}],"url":"\/documentation\/jellyfinapi\/playstaterequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateCommand":{"role":"symbol","title":"PlaystateCommand","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateCommand"}],"abstract":[{"type":"text","text":"Enum PlaystateCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateCommand"}],"url":"\/documentation\/jellyfinapi\/playstatecommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/init(from:).json new file mode 100644 index 000000000..5aa4567b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstaterequest\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PlaystateRequestV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest":{"role":"symbol","title":"PlaystateRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateRequest"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateRequest"}],"url":"\/documentation\/jellyfinapi\/playstaterequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstaterequest\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/seekpositionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/seekpositionticks.json new file mode 100644 index 000000000..73bf4c9ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/playstaterequest/seekpositionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/playstaterequest\/seekpositionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/seekPositionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"seekPositionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PlaystateRequestV17seekPositionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest":{"role":"symbol","title":"PlaystateRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlaystateRequest"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlaystateRequest"}],"url":"\/documentation\/jellyfinapi\/playstaterequest"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlaystateRequest/seekPositionTicks":{"role":"symbol","title":"seekPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlaystateRequest\/seekPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/playstaterequest\/seekpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo.json new file mode 100644 index 000000000..6e0096791 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"title":"PluginInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10PluginInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/init(canUninstall:configurationFileName:description:hasImage:id:name:status:version:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/canUninstall","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/configurationFileName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/description","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/hasImage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/id-7kew6","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/status","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/version"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/identifiable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/init(canUninstall:configurationFileName:description:hasImage:id:name:status:version:)":{"role":"symbol","title":"init(canUninstall:configurationFileName:description:hasImage:id:name:status:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configurationFileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PluginStatus","preciseIdentifier":"s:11JellyfinAPI12PluginStatusO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/init(canUninstall:configurationFileName:description:hasImage:id:name:status:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/init(canuninstall:configurationfilename:description:hasimage:id:name:status:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/configurationFileName":{"role":"symbol","title":"configurationFileName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"configurationFileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the configuration file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/configurationFileName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/configurationfilename"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/hasImage":{"role":"symbol","title":"hasImage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this plugin has a valid image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/hasImage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/hasimage"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/id-7kew6":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the unique id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/id-7kew6","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/id-7kew6"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the description."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/description"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/canUninstall":{"role":"symbol","title":"canUninstall","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the plugin can be uninstalled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/canUninstall","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/canuninstall"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PluginStatus","preciseIdentifier":"s:11JellyfinAPI12PluginStatusO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating the status of the plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/status"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/canuninstall.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/canuninstall.json new file mode 100644 index 000000000..e176e2d49 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/canuninstall.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/canuninstall"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/canUninstall","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the plugin can be uninstalled."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canUninstall","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10PluginInfoV12canUninstallSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/canUninstall":{"role":"symbol","title":"canUninstall","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the plugin can be uninstalled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/canUninstall","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/canuninstall"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/configurationfilename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/configurationfilename.json new file mode 100644 index 000000000..31363bab2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/configurationfilename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"configurationFileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/configurationfilename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/configurationFileName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the configuration file."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"configurationFileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"configurationFileName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10PluginInfoV21configurationFileNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/configurationFileName":{"role":"symbol","title":"configurationFileName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"configurationFileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the configuration file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/configurationFileName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/configurationfilename"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/description.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/description.json new file mode 100644 index 000000000..51001dd52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/description.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the description."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10PluginInfoV11descriptionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the description."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/description"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/hasimage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/hasimage.json new file mode 100644 index 000000000..0eafe0e9d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/hasimage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/hasimage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/hasImage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this plugin has a valid image."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasImage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10PluginInfoV8hasImageSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/hasImage":{"role":"symbol","title":"hasImage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasImage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this plugin has a valid image."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/hasImage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/hasimage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/id-6cp03.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/id-6cp03.json new file mode 100644 index 000000000..6b87c4e5a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/id-6cp03.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/id-6cp03"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/id-6cp03","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI10PluginInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/id-6cp03":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/id-6cp03","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/id-6cp03"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/id-7kew6.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/id-7kew6.json new file mode 100644 index 000000000..257fc466a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/id-7kew6.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/id-7kew6"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/id-7kew6","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the unique id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10PluginInfoV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/id-7kew6":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the unique id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/id-7kew6","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/id-7kew6"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/identifiable-implementations.json new file mode 100644 index 000000000..000f114f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/id-6cp03"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/id-6cp03":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/id-6cp03","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/id-6cp03"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/init(canuninstall:configurationfilename:description:hasimage:id:name:status:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/init(canuninstall:configurationfilename:description:hasimage:id:name:status:version:).json new file mode 100644 index 000000000..840c08685 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/init(canuninstall:configurationfilename:description:hasimage:id:name:status:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"configurationFileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasImage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","preciseIdentifier":"s:11JellyfinAPI12PluginStatusO","text":"PluginStatus"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/init(canuninstall:configurationfilename:description:hasimage:id:name:status:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/init(canUninstall:configurationFileName:description:hasImage:id:name:status:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configurationFileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PluginStatus","preciseIdentifier":"s:11JellyfinAPI12PluginStatusO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(canUninstall:configurationFileName:description:hasImage:id:name:status:version:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10PluginInfoV12canUninstall21configurationFileName11description8hasImage2id4name6status7versionACSbSg_SSSgAmL10Foundation4UUIDVSgAmA0C6StatusOSgAMtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/init(canUninstall:configurationFileName:description:hasImage:id:name:status:version:)":{"role":"symbol","title":"init(canUninstall:configurationFileName:description:hasImage:id:name:status:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"canUninstall"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"configurationFileName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasImage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PluginStatus","preciseIdentifier":"s:11JellyfinAPI12PluginStatusO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/init(canUninstall:configurationFileName:description:hasImage:id:name:status:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/init(canuninstall:configurationfilename:description:hasimage:id:name:status:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/init(from:).json new file mode 100644 index 000000000..a9cfb6e47 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10PluginInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/name.json new file mode 100644 index 000000000..41310e297 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10PluginInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/status.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/status.json new file mode 100644 index 000000000..3d9ffe420 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/status.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","preciseIdentifier":"s:11JellyfinAPI12PluginStatusO","text":"PluginStatus"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/status"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/status","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating the status of the plugin."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PluginStatus","preciseIdentifier":"s:11JellyfinAPI12PluginStatusO"},{"kind":"text","text":"?"}],"title":"status","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10PluginInfoV6statusAA0C6StatusOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PluginStatus","preciseIdentifier":"s:11JellyfinAPI12PluginStatusO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating the status of the plugin."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/version.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/version.json new file mode 100644 index 000000000..16524ebc9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/plugininfo/version.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/plugininfo\/version"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/version","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"version","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10PluginInfoV7versionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/plugininfo\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginInfo":{"role":"symbol","title":"PluginInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginInfo"}],"abstract":[{"type":"text","text":"This is a serializable stub class that is used by the api to provide information about installed plugins."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginInfo"}],"url":"\/documentation\/jellyfinapi\/plugininfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus.json new file mode 100644 index 000000000..5d5711c22 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Plugin load status."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"title":"PluginStatus","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI12PluginStatusO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/active","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/deleted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/disabled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/malfunctioned","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/notSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/restart","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/superceded"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/notSupported":{"role":"symbol","title":"PluginStatus.notSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/notSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/notsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/disabled":{"role":"symbol","title":"PluginStatus.disabled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/disabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/disabled"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/equatable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/deleted":{"role":"symbol","title":"PluginStatus.deleted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/deleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/deleted"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/malfunctioned":{"role":"symbol","title":"PluginStatus.malfunctioned","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"malfunctioned"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/malfunctioned","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/malfunctioned"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/restart":{"role":"symbol","title":"PluginStatus.restart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"restart"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/restart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/restart"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/superceded":{"role":"symbol","title":"PluginStatus.superceded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"superceded"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/superceded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/superceded"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/active":{"role":"symbol","title":"PluginStatus.active","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"active"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/active","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/active"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/!=(_:_:).json new file mode 100644 index 000000000..502669062 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI12PluginStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/active.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/active.json new file mode 100644 index 000000000..63da7742c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/active.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"active"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/active"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/active","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"active"}],"title":"PluginStatus.active","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12PluginStatusO6activeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/active":{"role":"symbol","title":"PluginStatus.active","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"active"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/active","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/active"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/deleted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/deleted.json new file mode 100644 index 000000000..2f0d2911d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/deleted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleted"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/deleted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/deleted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleted"}],"title":"PluginStatus.deleted","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12PluginStatusO7deletedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/deleted":{"role":"symbol","title":"PluginStatus.deleted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/deleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/deleted"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/disabled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/disabled.json new file mode 100644 index 000000000..631a8fb89 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/disabled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabled"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/disabled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/disabled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabled"}],"title":"PluginStatus.disabled","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12PluginStatusO8disabledyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/disabled":{"role":"symbol","title":"PluginStatus.disabled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/disabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/disabled"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/encode(to:).json new file mode 100644 index 000000000..e4b2d0319 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI12PluginStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/equatable-implementations.json new file mode 100644 index 000000000..fa38a4502 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/hash(into:).json new file mode 100644 index 000000000..b6aeb80e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI12PluginStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/hashvalue.json new file mode 100644 index 000000000..68220d90a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI12PluginStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/init(from:).json new file mode 100644 index 000000000..129517283 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI12PluginStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/init(rawvalue:).json new file mode 100644 index 000000000..7fe90d5b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12PluginStatusO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/malfunctioned.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/malfunctioned.json new file mode 100644 index 000000000..f78aa2397 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/malfunctioned.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"malfunctioned"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/malfunctioned"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/malfunctioned","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"malfunctioned"}],"title":"PluginStatus.malfunctioned","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12PluginStatusO13malfunctionedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/malfunctioned":{"role":"symbol","title":"PluginStatus.malfunctioned","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"malfunctioned"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/malfunctioned","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/malfunctioned"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/notsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/notsupported.json new file mode 100644 index 000000000..a62b8ddfb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/notsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/notsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/notSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notSupported"}],"title":"PluginStatus.notSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12PluginStatusO12notSupportedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/notSupported":{"role":"symbol","title":"PluginStatus.notSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/notSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/notsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/rawrepresentable-implementations.json new file mode 100644 index 000000000..4d019e0a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/restart.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/restart.json new file mode 100644 index 000000000..29c746e69 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/restart.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"restart"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/restart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/restart","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"restart"}],"title":"PluginStatus.restart","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12PluginStatusO7restartyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/restart":{"role":"symbol","title":"PluginStatus.restart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"restart"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/restart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/restart"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/superceded.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/superceded.json new file mode 100644 index 000000000..f01a9eae1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/pluginstatus/superceded.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"superceded"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/pluginstatus\/superceded"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/superceded","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"superceded"}],"title":"PluginStatus.superceded","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12PluginStatusO10supercededyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus/superceded":{"role":"symbol","title":"PluginStatus.superceded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"superceded"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus\/superceded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/pluginstatus\/superceded"},"doc://JellyfinAPI/documentation/JellyfinAPI/PluginStatus":{"role":"symbol","title":"PluginStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PluginStatus"}],"abstract":[{"type":"text","text":"Plugin load status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PluginStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PluginStatus"}],"url":"\/documentation\/jellyfinapi\/pluginstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto.json new file mode 100644 index 000000000..5d3942034 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PreviousItemRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/previousitemrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class PreviousItemRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PreviousItemRequestDto"}],"title":"PreviousItemRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI22PreviousItemRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PreviousItemRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/init(playlistItemID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/playlistItemID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/previousitemrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto/init(playlistItemID:)":{"role":"symbol","title":"init(playlistItemID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/init(playlistItemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/previousitemrequestdto\/init(playlistitemid:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto":{"role":"symbol","title":"PreviousItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PreviousItemRequestDto"}],"abstract":[{"type":"text","text":"Class PreviousItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PreviousItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/previousitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playing item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/previousitemrequestdto\/playlistitemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto/init(from:).json new file mode 100644 index 000000000..b05a8c246 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/previousitemrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22PreviousItemRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/previousitemrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto":{"role":"symbol","title":"PreviousItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PreviousItemRequestDto"}],"abstract":[{"type":"text","text":"Class PreviousItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PreviousItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/previousitemrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto/init(playlistitemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto/init(playlistitemid:).json new file mode 100644 index 000000000..c8497a59c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto/init(playlistitemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/previousitemrequestdto\/init(playlistitemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/init(playlistItemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(playlistItemID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22PreviousItemRequestDtoV08playlistD2IDAC10Foundation4UUIDVSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto":{"role":"symbol","title":"PreviousItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PreviousItemRequestDto"}],"abstract":[{"type":"text","text":"Class PreviousItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PreviousItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/previousitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto/init(playlistItemID:)":{"role":"symbol","title":"init(playlistItemID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/init(playlistItemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/previousitemrequestdto\/init(playlistitemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto/playlistitemid.json new file mode 100644 index 000000000..023ec4d77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/previousitemrequestdto/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/previousitemrequestdto\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playing item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22PreviousItemRequestDtoV08playlistD2ID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playing item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/previousitemrequestdto\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/PreviousItemRequestDto":{"role":"symbol","title":"PreviousItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PreviousItemRequestDto"}],"abstract":[{"type":"text","text":"Class PreviousItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PreviousItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PreviousItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/previousitemrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition.json new file mode 100644 index 000000000..3fdeaedff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profilecondition"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"title":"ProfileCondition","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16ProfileConditionV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/init(condition:isRequired:property:value:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/condition","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/isRequired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/value"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/isRequired":{"role":"symbol","title":"isRequired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/isRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/isrequired"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/property":{"role":"symbol","title":"property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"property"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionValue","preciseIdentifier":"s:11JellyfinAPI21ProfileConditionValueO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/property"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/condition":{"role":"symbol","title":"condition","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"condition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionType","preciseIdentifier":"s:11JellyfinAPI20ProfileConditionTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/condition","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/condition"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/value"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/init(condition:isRequired:property:value:)":{"role":"symbol","title":"init(condition:isRequired:property:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"condition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionType","preciseIdentifier":"s:11JellyfinAPI20ProfileConditionTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"property"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionValue","preciseIdentifier":"s:11JellyfinAPI21ProfileConditionValueO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/init(condition:isRequired:property:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/init(condition:isrequired:property:value:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/condition.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/condition.json new file mode 100644 index 000000000..ed19a318e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/condition.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"condition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","preciseIdentifier":"s:11JellyfinAPI20ProfileConditionTypeO","text":"ProfileConditionType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profilecondition\/condition"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/condition","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"condition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionType","preciseIdentifier":"s:11JellyfinAPI20ProfileConditionTypeO"},{"kind":"text","text":"?"}],"title":"condition","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ProfileConditionV9conditionAA0cD4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/condition":{"role":"symbol","title":"condition","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"condition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionType","preciseIdentifier":"s:11JellyfinAPI20ProfileConditionTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/condition","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/condition"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/init(condition:isrequired:property:value:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/init(condition:isrequired:property:value:).json new file mode 100644 index 000000000..104bcd353 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/init(condition:isrequired:property:value:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"condition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","preciseIdentifier":"s:11JellyfinAPI20ProfileConditionTypeO","text":"ProfileConditionType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"property"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","preciseIdentifier":"s:11JellyfinAPI21ProfileConditionValueO","text":"ProfileConditionValue"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profilecondition\/init(condition:isrequired:property:value:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/init(condition:isRequired:property:value:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"condition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionType","preciseIdentifier":"s:11JellyfinAPI20ProfileConditionTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"property"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionValue","preciseIdentifier":"s:11JellyfinAPI21ProfileConditionValueO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(condition:isRequired:property:value:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ProfileConditionV9condition10isRequired8property5valueAcA0cD4TypeOSg_SbSgAA0cD5ValueOSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/init(condition:isRequired:property:value:)":{"role":"symbol","title":"init(condition:isRequired:property:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"condition"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionType","preciseIdentifier":"s:11JellyfinAPI20ProfileConditionTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"property"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionValue","preciseIdentifier":"s:11JellyfinAPI21ProfileConditionValueO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/init(condition:isRequired:property:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/init(condition:isrequired:property:value:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/init(from:).json new file mode 100644 index 000000000..e1e6434e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profilecondition\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ProfileConditionV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/isrequired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/isrequired.json new file mode 100644 index 000000000..c9668f7f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/isrequired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profilecondition\/isrequired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/isRequired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRequired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ProfileConditionV10isRequiredSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/isRequired":{"role":"symbol","title":"isRequired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/isRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/isrequired"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/property.json new file mode 100644 index 000000000..baf898091 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"property"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","preciseIdentifier":"s:11JellyfinAPI21ProfileConditionValueO","text":"ProfileConditionValue"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profilecondition\/property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"property"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionValue","preciseIdentifier":"s:11JellyfinAPI21ProfileConditionValueO"},{"kind":"text","text":"?"}],"title":"property","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ProfileConditionV8propertyAA0cD5ValueOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/property":{"role":"symbol","title":"property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"property"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ProfileConditionValue","preciseIdentifier":"s:11JellyfinAPI21ProfileConditionValueO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/property"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/value.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/value.json new file mode 100644 index 000000000..d56fe6be1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profilecondition/value.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profilecondition\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ProfileConditionV5valueSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profilecondition\/value"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype.json new file mode 100644 index 000000000..ae32c5edd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"title":"ProfileConditionType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI20ProfileConditionTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/equals","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/equalsAny","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/greaterThanEqual","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/lessThanEqual","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/notEquals"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/equals":{"role":"symbol","title":"ProfileConditionType.equals","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equals"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/equals","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/equals"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/greaterThanEqual":{"role":"symbol","title":"ProfileConditionType.greaterThanEqual","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"greaterThanEqual"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/greaterThanEqual","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/greaterthanequal"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/rawrepresentable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/equatable-implementations"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/lessThanEqual":{"role":"symbol","title":"ProfileConditionType.lessThanEqual","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lessThanEqual"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/lessThanEqual","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/lessthanequal"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/equalsAny":{"role":"symbol","title":"ProfileConditionType.equalsAny","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equalsAny"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/equalsAny","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/equalsany"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/notEquals":{"role":"symbol","title":"ProfileConditionType.notEquals","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notEquals"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/notEquals","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/notequals"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/!=(_:_:).json new file mode 100644 index 000000000..08d21ae95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI20ProfileConditionTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/encode(to:).json new file mode 100644 index 000000000..191110220 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI20ProfileConditionTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/equals.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/equals.json new file mode 100644 index 000000000..346f0b82f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/equals.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equals"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/equals"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/equals","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equals"}],"title":"ProfileConditionType.equals","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ProfileConditionTypeO6equalsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/equals":{"role":"symbol","title":"ProfileConditionType.equals","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equals"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/equals","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/equals"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/equalsany.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/equalsany.json new file mode 100644 index 000000000..919915cf9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/equalsany.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equalsAny"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/equalsany"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/equalsAny","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equalsAny"}],"title":"ProfileConditionType.equalsAny","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ProfileConditionTypeO9equalsAnyyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/equalsAny":{"role":"symbol","title":"ProfileConditionType.equalsAny","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"equalsAny"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/equalsAny","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/equalsany"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/equatable-implementations.json new file mode 100644 index 000000000..cdb3df53b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/greaterthanequal.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/greaterthanequal.json new file mode 100644 index 000000000..5cb091847 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/greaterthanequal.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"greaterThanEqual"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/greaterthanequal"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/greaterThanEqual","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"greaterThanEqual"}],"title":"ProfileConditionType.greaterThanEqual","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ProfileConditionTypeO16greaterThanEqualyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/greaterThanEqual":{"role":"symbol","title":"ProfileConditionType.greaterThanEqual","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"greaterThanEqual"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/greaterThanEqual","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/greaterthanequal"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/hash(into:).json new file mode 100644 index 000000000..753038d77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI20ProfileConditionTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/hashvalue.json new file mode 100644 index 000000000..456e1bff1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI20ProfileConditionTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/init(from:).json new file mode 100644 index 000000000..9d9c3ae6c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI20ProfileConditionTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/init(rawvalue:).json new file mode 100644 index 000000000..84e6b8ae1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20ProfileConditionTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/lessthanequal.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/lessthanequal.json new file mode 100644 index 000000000..dd01df6e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/lessthanequal.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lessThanEqual"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/lessthanequal"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/lessThanEqual","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lessThanEqual"}],"title":"ProfileConditionType.lessThanEqual","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ProfileConditionTypeO13lessThanEqualyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/lessThanEqual":{"role":"symbol","title":"ProfileConditionType.lessThanEqual","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lessThanEqual"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/lessThanEqual","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/lessthanequal"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/notequals.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/notequals.json new file mode 100644 index 000000000..7a5bf6cc9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/notequals.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notEquals"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/notequals"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/notEquals","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notEquals"}],"title":"ProfileConditionType.notEquals","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20ProfileConditionTypeO9notEqualsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/notEquals":{"role":"symbol","title":"ProfileConditionType.notEquals","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notEquals"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/notEquals","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/notequals"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/rawrepresentable-implementations.json new file mode 100644 index 000000000..31f59641d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditiontype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditiontype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType":{"role":"symbol","title":"ProfileConditionType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionType"}],"url":"\/documentation\/jellyfinapi\/profileconditiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditiontype\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue.json new file mode 100644 index 000000000..0abc303ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"title":"ProfileConditionValue","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI21ProfileConditionValueO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioSampleRate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/has64BitOffsets","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isAnamorphic","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isAvc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isInterlaced","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isSecondaryAudio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/numAudioStreams","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/numVideoStreams","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/packetLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/refFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoBitDepth","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoBitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoCodecTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoFramerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoLevel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoProfile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoRangeType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoTimestamp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/width"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/isInterlaced":{"role":"symbol","title":"ProfileConditionValue.isInterlaced","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInterlaced"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isInterlaced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/isinterlaced"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/isSecondaryAudio":{"role":"symbol","title":"ProfileConditionValue.isSecondaryAudio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSecondaryAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isSecondaryAudio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/issecondaryaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoCodecTag":{"role":"symbol","title":"ProfileConditionValue.videoCodecTag","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecTag"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoCodecTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videocodectag"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/audioChannels":{"role":"symbol","title":"ProfileConditionValue.audioChannels","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/audiochannels"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/numVideoStreams":{"role":"symbol","title":"ProfileConditionValue.numVideoStreams","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"numVideoStreams"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/numVideoStreams","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/numvideostreams"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoProfile":{"role":"symbol","title":"ProfileConditionValue.videoProfile","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videoprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoRangeType":{"role":"symbol","title":"ProfileConditionValue.videoRangeType","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoRangeType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videorangetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/audioBitrate":{"role":"symbol","title":"ProfileConditionValue.audioBitrate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitrate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/audiobitrate"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/audioBitDepth":{"role":"symbol","title":"ProfileConditionValue.audioBitDepth","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitDepth"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/audiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/numAudioStreams":{"role":"symbol","title":"ProfileConditionValue.numAudioStreams","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"numAudioStreams"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/numAudioStreams","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/numaudiostreams"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/has64BitOffsets":{"role":"symbol","title":"ProfileConditionValue.has64BitOffsets","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"has64BitOffsets"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/has64BitOffsets","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/has64bitoffsets"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoFramerate":{"role":"symbol","title":"ProfileConditionValue.videoFramerate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFramerate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videoframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/audioProfile":{"role":"symbol","title":"ProfileConditionValue.audioProfile","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/audioprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoBitrate":{"role":"symbol","title":"ProfileConditionValue.videoBitrate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitrate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoBitDepth":{"role":"symbol","title":"ProfileConditionValue.videoBitDepth","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitDepth"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/width":{"role":"symbol","title":"ProfileConditionValue.width","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoTimestamp":{"role":"symbol","title":"ProfileConditionValue.videoTimestamp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoTimestamp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videotimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/refFrames":{"role":"symbol","title":"ProfileConditionValue.refFrames","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFrames"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/refFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/refframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoLevel":{"role":"symbol","title":"ProfileConditionValue.videoLevel","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videolevel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/audioSampleRate":{"role":"symbol","title":"ProfileConditionValue.audioSampleRate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/audiosamplerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/packetLength":{"role":"symbol","title":"ProfileConditionValue.packetLength","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packetLength"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/packetLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/packetlength"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/height":{"role":"symbol","title":"ProfileConditionValue.height","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/isAnamorphic":{"role":"symbol","title":"ProfileConditionValue.isAnamorphic","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAnamorphic"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/isanamorphic"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/isAvc":{"role":"symbol","title":"ProfileConditionValue.isAvc","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAvc"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/isavc"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/!=(_:_:).json new file mode 100644 index 000000000..c8fef0ccd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI21ProfileConditionValueO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiobitdepth.json new file mode 100644 index 000000000..30d192950 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitDepth"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/audiobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitDepth"}],"title":"ProfileConditionValue.audioBitDepth","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO13audioBitDepthyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/audioBitDepth":{"role":"symbol","title":"ProfileConditionValue.audioBitDepth","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitDepth"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/audiobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiobitrate.json new file mode 100644 index 000000000..6844e8f8f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitrate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/audiobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitrate"}],"title":"ProfileConditionValue.audioBitrate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO12audioBitrateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/audioBitrate":{"role":"symbol","title":"ProfileConditionValue.audioBitrate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitrate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/audiobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiochannels.json new file mode 100644 index 000000000..511f50e0c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"}],"title":"ProfileConditionValue.audioChannels","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO13audioChannelsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/audioChannels":{"role":"symbol","title":"ProfileConditionValue.audioChannels","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audioprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audioprofile.json new file mode 100644 index 000000000..feb3b279b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audioprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioProfile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/audioprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioProfile"}],"title":"ProfileConditionValue.audioProfile","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO05audioC0yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/audioProfile":{"role":"symbol","title":"ProfileConditionValue.audioProfile","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/audioprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiosamplerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiosamplerate.json new file mode 100644 index 000000000..6b71981fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/audiosamplerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/audiosamplerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioSampleRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"}],"title":"ProfileConditionValue.audioSampleRate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO15audioSampleRateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/audioSampleRate":{"role":"symbol","title":"ProfileConditionValue.audioSampleRate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/audioSampleRate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/audiosamplerate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/encode(to:).json new file mode 100644 index 000000000..2b88d7543 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI21ProfileConditionValueO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/equatable-implementations.json new file mode 100644 index 000000000..3b94c260b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/has64bitoffsets.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/has64bitoffsets.json new file mode 100644 index 000000000..0c695f02c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/has64bitoffsets.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"has64BitOffsets"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/has64bitoffsets"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/has64BitOffsets","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"has64BitOffsets"}],"title":"ProfileConditionValue.has64BitOffsets","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO15has64BitOffsetsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/has64BitOffsets":{"role":"symbol","title":"ProfileConditionValue.has64BitOffsets","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"has64BitOffsets"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/has64BitOffsets","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/has64bitoffsets"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/hash(into:).json new file mode 100644 index 000000000..156b5e8b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI21ProfileConditionValueO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/hashvalue.json new file mode 100644 index 000000000..312858a20 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI21ProfileConditionValueO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/height.json new file mode 100644 index 000000000..9405dbe0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"}],"title":"ProfileConditionValue.height","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO6heightyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/height":{"role":"symbol","title":"ProfileConditionValue.height","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/init(from:).json new file mode 100644 index 000000000..acb5018a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI21ProfileConditionValueO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/init(rawvalue:).json new file mode 100644 index 000000000..7d0cc5877 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI21ProfileConditionValueO03rawE0ACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/isanamorphic.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/isanamorphic.json new file mode 100644 index 000000000..d92b83a4f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/isanamorphic.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAnamorphic"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/isanamorphic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isAnamorphic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAnamorphic"}],"title":"ProfileConditionValue.isAnamorphic","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO12isAnamorphicyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/isAnamorphic":{"role":"symbol","title":"ProfileConditionValue.isAnamorphic","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAnamorphic"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isAnamorphic","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/isanamorphic"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/isavc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/isavc.json new file mode 100644 index 000000000..f50ecd03d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/isavc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAvc"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/isavc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isAvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAvc"}],"title":"ProfileConditionValue.isAvc","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO5isAvcyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/isAvc":{"role":"symbol","title":"ProfileConditionValue.isAvc","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAvc"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isAvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/isavc"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/isinterlaced.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/isinterlaced.json new file mode 100644 index 000000000..fb51fc348 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/isinterlaced.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInterlaced"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/isinterlaced"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isInterlaced","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInterlaced"}],"title":"ProfileConditionValue.isInterlaced","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO12isInterlacedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/isInterlaced":{"role":"symbol","title":"ProfileConditionValue.isInterlaced","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isInterlaced"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isInterlaced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/isinterlaced"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/issecondaryaudio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/issecondaryaudio.json new file mode 100644 index 000000000..ce7e1bb7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/issecondaryaudio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSecondaryAudio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/issecondaryaudio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isSecondaryAudio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSecondaryAudio"}],"title":"ProfileConditionValue.isSecondaryAudio","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO16isSecondaryAudioyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/isSecondaryAudio":{"role":"symbol","title":"ProfileConditionValue.isSecondaryAudio","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSecondaryAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/isSecondaryAudio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/issecondaryaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/numaudiostreams.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/numaudiostreams.json new file mode 100644 index 000000000..a7f9d8b06 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/numaudiostreams.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"numAudioStreams"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/numaudiostreams"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/numAudioStreams","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"numAudioStreams"}],"title":"ProfileConditionValue.numAudioStreams","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO15numAudioStreamsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/numAudioStreams":{"role":"symbol","title":"ProfileConditionValue.numAudioStreams","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"numAudioStreams"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/numAudioStreams","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/numaudiostreams"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/numvideostreams.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/numvideostreams.json new file mode 100644 index 000000000..3ebfe1022 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/numvideostreams.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"numVideoStreams"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/numvideostreams"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/numVideoStreams","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"numVideoStreams"}],"title":"ProfileConditionValue.numVideoStreams","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO15numVideoStreamsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/numVideoStreams":{"role":"symbol","title":"ProfileConditionValue.numVideoStreams","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"numVideoStreams"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/numVideoStreams","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/numvideostreams"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/packetlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/packetlength.json new file mode 100644 index 000000000..4331a61e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/packetlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packetLength"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/packetlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/packetLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packetLength"}],"title":"ProfileConditionValue.packetLength","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO12packetLengthyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/packetLength":{"role":"symbol","title":"ProfileConditionValue.packetLength","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packetLength"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/packetLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/packetlength"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/rawrepresentable-implementations.json new file mode 100644 index 000000000..adced09d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/refframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/refframes.json new file mode 100644 index 000000000..292fd62a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/refframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFrames"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/refframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/refFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFrames"}],"title":"ProfileConditionValue.refFrames","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO9refFramesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/refFrames":{"role":"symbol","title":"ProfileConditionValue.refFrames","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFrames"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/refFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/refframes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videobitdepth.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videobitdepth.json new file mode 100644 index 000000000..0f98513ed --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videobitdepth.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitDepth"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/videobitdepth"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoBitDepth","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitDepth"}],"title":"ProfileConditionValue.videoBitDepth","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO13videoBitDepthyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoBitDepth":{"role":"symbol","title":"ProfileConditionValue.videoBitDepth","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitDepth"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoBitDepth","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videobitdepth"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videobitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videobitrate.json new file mode 100644 index 000000000..b47677194 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videobitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitrate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/videobitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoBitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitrate"}],"title":"ProfileConditionValue.videoBitrate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO12videoBitrateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoBitrate":{"role":"symbol","title":"ProfileConditionValue.videoBitrate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitrate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoBitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videobitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videocodectag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videocodectag.json new file mode 100644 index 000000000..7d456246c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videocodectag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecTag"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/videocodectag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoCodecTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecTag"}],"title":"ProfileConditionValue.videoCodecTag","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO13videoCodecTagyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoCodecTag":{"role":"symbol","title":"ProfileConditionValue.videoCodecTag","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecTag"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoCodecTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videocodectag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videoframerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videoframerate.json new file mode 100644 index 000000000..cbd1cd75e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videoframerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFramerate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/videoframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoFramerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFramerate"}],"title":"ProfileConditionValue.videoFramerate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO14videoFramerateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoFramerate":{"role":"symbol","title":"ProfileConditionValue.videoFramerate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFramerate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoFramerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videoframerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videolevel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videolevel.json new file mode 100644 index 000000000..65b117d42 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videolevel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoLevel"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/videolevel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoLevel"}],"title":"ProfileConditionValue.videoLevel","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO10videoLevelyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoLevel":{"role":"symbol","title":"ProfileConditionValue.videoLevel","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoLevel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoLevel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videolevel"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videoprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videoprofile.json new file mode 100644 index 000000000..a3aa11fb8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videoprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoProfile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/videoprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoProfile"}],"title":"ProfileConditionValue.videoProfile","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO05videoC0yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoProfile":{"role":"symbol","title":"ProfileConditionValue.videoProfile","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoProfile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videoprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videorangetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videorangetype.json new file mode 100644 index 000000000..712e424e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videorangetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/videorangetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoRangeType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeType"}],"title":"ProfileConditionValue.videoRangeType","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO14videoRangeTypeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoRangeType":{"role":"symbol","title":"ProfileConditionValue.videoRangeType","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoRangeType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videorangetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videotimestamp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videotimestamp.json new file mode 100644 index 000000000..d7bac1ef7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/videotimestamp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTimestamp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/videotimestamp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoTimestamp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTimestamp"}],"title":"ProfileConditionValue.videoTimestamp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO14videoTimestampyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/videoTimestamp":{"role":"symbol","title":"ProfileConditionValue.videoTimestamp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/videoTimestamp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/videotimestamp"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/width.json new file mode 100644 index 000000000..8d2431de2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/profileconditionvalue/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/profileconditionvalue\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"}],"title":"ProfileConditionValue.width","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI21ProfileConditionValueO5widthyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue":{"role":"symbol","title":"ProfileConditionValue","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileConditionValue"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileConditionValue"}],"url":"\/documentation\/jellyfinapi\/profileconditionvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileConditionValue/width":{"role":"symbol","title":"ProfileConditionValue.width","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileConditionValue\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/profileconditionvalue\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio.json new file mode 100644 index 000000000..6ab177576 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"title":"ProgramAudio","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI12ProgramAudioO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/atmos","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/dolby","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/dolbyDigital","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/mono","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/stereo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/thx"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/dolbyDigital":{"role":"symbol","title":"ProgramAudio.dolbyDigital","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dolbyDigital"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/dolbyDigital","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/dolbydigital"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/atmos":{"role":"symbol","title":"ProgramAudio.atmos","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"atmos"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/atmos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/atmos"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/thx":{"role":"symbol","title":"ProgramAudio.thx","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thx"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/thx","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/thx"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/rawrepresentable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/mono":{"role":"symbol","title":"ProgramAudio.mono","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mono"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/mono","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/mono"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/dolby":{"role":"symbol","title":"ProgramAudio.dolby","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dolby"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/dolby","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/dolby"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/stereo":{"role":"symbol","title":"ProgramAudio.stereo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stereo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/stereo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/stereo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/init(rawvalue:)"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/!=(_:_:).json new file mode 100644 index 000000000..cba69c226 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI12ProgramAudioO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/atmos.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/atmos.json new file mode 100644 index 000000000..b30c89246 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/atmos.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"atmos"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/atmos"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/atmos","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"atmos"}],"title":"ProgramAudio.atmos","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ProgramAudioO5atmosyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/atmos":{"role":"symbol","title":"ProgramAudio.atmos","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"atmos"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/atmos","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/atmos"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/dolby.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/dolby.json new file mode 100644 index 000000000..b1efdd97a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/dolby.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dolby"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/dolby"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/dolby","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dolby"}],"title":"ProgramAudio.dolby","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ProgramAudioO5dolbyyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/dolby":{"role":"symbol","title":"ProgramAudio.dolby","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dolby"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/dolby","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/dolby"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/dolbydigital.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/dolbydigital.json new file mode 100644 index 000000000..243845a68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/dolbydigital.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dolbyDigital"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/dolbydigital"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/dolbyDigital","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dolbyDigital"}],"title":"ProgramAudio.dolbyDigital","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ProgramAudioO12dolbyDigitalyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/dolbyDigital":{"role":"symbol","title":"ProgramAudio.dolbyDigital","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dolbyDigital"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/dolbyDigital","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/dolbydigital"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/encode(to:).json new file mode 100644 index 000000000..594e0726d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI12ProgramAudioO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/equatable-implementations.json new file mode 100644 index 000000000..c82360690 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/hash(into:).json new file mode 100644 index 000000000..7f80d203a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI12ProgramAudioO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/hashvalue.json new file mode 100644 index 000000000..f95b1147c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI12ProgramAudioO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/init(from:).json new file mode 100644 index 000000000..fa862c69d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI12ProgramAudioO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/init(rawvalue:).json new file mode 100644 index 000000000..721aeebc0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12ProgramAudioO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/mono.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/mono.json new file mode 100644 index 000000000..7168a3e23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/mono.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mono"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/mono"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/mono","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mono"}],"title":"ProgramAudio.mono","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ProgramAudioO4monoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/mono":{"role":"symbol","title":"ProgramAudio.mono","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mono"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/mono","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/mono"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/rawrepresentable-implementations.json new file mode 100644 index 000000000..93b86d9d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/stereo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/stereo.json new file mode 100644 index 000000000..cc06a54c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/stereo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stereo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/stereo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/stereo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stereo"}],"title":"ProgramAudio.stereo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ProgramAudioO6stereoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/stereo":{"role":"symbol","title":"ProgramAudio.stereo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stereo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/stereo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/stereo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/thx.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/thx.json new file mode 100644 index 000000000..0b531f676 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/programaudio/thx.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thx"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/programaudio\/thx"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/thx","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thx"}],"title":"ProgramAudio.thx","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12ProgramAudioO3thxyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio/thx":{"role":"symbol","title":"ProgramAudio.thx","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"thx"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio\/thx","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/programaudio\/thx"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProgramAudio":{"role":"symbol","title":"ProgramAudio","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProgramAudio"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProgramAudio","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProgramAudio"}],"url":"\/documentation\/jellyfinapi\/programaudio"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo.json new file mode 100644 index 000000000..6156b5623 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"title":"PublicSystemInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16PublicSystemInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/init(id:localAddress:operatingSystem:productName:serverName:isStartupWizardCompleted:version:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/id-6t8jn","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/isStartupWizardCompleted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/localAddress","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/operatingSystem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/productName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/serverName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/version"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/isStartupWizardCompleted":{"role":"symbol","title":"isStartupWizardCompleted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the startup wizard is completed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/isStartupWizardCompleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/isstartupwizardcompleted"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/init(id:localAddress:operatingSystem:productName:serverName:isStartupWizardCompleted:version:)":{"role":"symbol","title":"init(id:localAddress:operatingSystem:productName:serverName:isStartupWizardCompleted:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/init(id:localAddress:operatingSystem:productName:serverName:isStartupWizardCompleted:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/init(id:localaddress:operatingsystem:productname:servername:isstartupwizardcompleted:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/localAddress":{"role":"symbol","title":"localAddress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the local address."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/localAddress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/localaddress"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/productName":{"role":"symbol","title":"productName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the product name. This is the AssemblyProduct name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/productName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/productname"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/id-6t8jn":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/id-6t8jn","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/id-6t8jn"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/serverName":{"role":"symbol","title":"serverName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/serverName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/servername"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/operatingSystem":{"role":"symbol","title":"operatingSystem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the operating system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/operatingSystem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/operatingsystem"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/id-5ui2f.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/id-5ui2f.json new file mode 100644 index 000000000..2ca238651 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/id-5ui2f.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/id-5ui2f"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/id-5ui2f","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI16PublicSystemInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/id-5ui2f":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/id-5ui2f","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/id-5ui2f"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/id-6t8jn.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/id-6t8jn.json new file mode 100644 index 000000000..2b7c25e12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/id-6t8jn.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/id-6t8jn"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/id-6t8jn","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PublicSystemInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/id-6t8jn":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/id-6t8jn","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/id-6t8jn"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/identifiable-implementations.json new file mode 100644 index 000000000..b5b63b661 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/id-5ui2f"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/id-5ui2f":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/id-5ui2f","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/id-5ui2f"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/init(from:).json new file mode 100644 index 000000000..3f28baa47 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PublicSystemInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/init(id:localaddress:operatingsystem:productname:servername:isstartupwizardcompleted:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/init(id:localaddress:operatingsystem:productname:servername:isstartupwizardcompleted:version:).json new file mode 100644 index 000000000..094eb8a3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/init(id:localaddress:operatingsystem:productname:servername:isstartupwizardcompleted:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/init(id:localaddress:operatingsystem:productname:servername:isstartupwizardcompleted:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/init(id:localAddress:operatingSystem:productName:serverName:isStartupWizardCompleted:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(id:localAddress:operatingSystem:productName:serverName:isStartupWizardCompleted:version:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16PublicSystemInfoV2id12localAddress09operatingD011productName06serverK024isStartupWizardCompleted7versionACSSSg_A4KSbSgAKtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/init(id:localAddress:operatingSystem:productName:serverName:isStartupWizardCompleted:version:)":{"role":"symbol","title":"init(id:localAddress:operatingSystem:productName:serverName:isStartupWizardCompleted:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/init(id:localAddress:operatingSystem:productName:serverName:isStartupWizardCompleted:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/init(id:localaddress:operatingsystem:productname:servername:isstartupwizardcompleted:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/isstartupwizardcompleted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/isstartupwizardcompleted.json new file mode 100644 index 000000000..58661cb3a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/isstartupwizardcompleted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/isstartupwizardcompleted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/isStartupWizardCompleted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the startup wizard is completed."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStartupWizardCompleted","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PublicSystemInfoV24isStartupWizardCompletedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/isStartupWizardCompleted":{"role":"symbol","title":"isStartupWizardCompleted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the startup wizard is completed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/isStartupWizardCompleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/isstartupwizardcompleted"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/localaddress.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/localaddress.json new file mode 100644 index 000000000..d230dad21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/localaddress.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/localaddress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/localAddress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the local address."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"localAddress","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PublicSystemInfoV12localAddressSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/localAddress":{"role":"symbol","title":"localAddress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the local address."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/localAddress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/localaddress"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/operatingsystem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/operatingsystem.json new file mode 100644 index 000000000..203bba20e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/operatingsystem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/operatingsystem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/operatingSystem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the operating system."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"operatingSystem","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PublicSystemInfoV09operatingD0SSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/operatingSystem":{"role":"symbol","title":"operatingSystem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the operating system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/operatingSystem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/operatingsystem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/productname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/productname.json new file mode 100644 index 000000000..9ce976520 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/productname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/productname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/productName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the product name. This is the AssemblyProduct name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"productName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PublicSystemInfoV11productNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/productName":{"role":"symbol","title":"productName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the product name. This is the AssemblyProduct name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/productName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/productname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/servername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/servername.json new file mode 100644 index 000000000..d22984a67 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/servername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/servername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/serverName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serverName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PublicSystemInfoV10serverNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/serverName":{"role":"symbol","title":"serverName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/serverName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/servername"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/version.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/version.json new file mode 100644 index 000000000..7e83ce709 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/publicsysteminfo/version.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/publicsysteminfo\/version"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/version","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the server version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"version","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16PublicSystemInfoV7versionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo":{"role":"symbol","title":"PublicSystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PublicSystemInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PublicSystemInfo"}],"url":"\/documentation\/jellyfinapi\/publicsysteminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/PublicSystemInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PublicSystemInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/publicsysteminfo\/version"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters.json new file mode 100644 index 000000000..2a46fa0b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFilters"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilters"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFilters"}],"title":"QueryFilters","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI12QueryFiltersV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"QueryFilters"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/init(genres:tags:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/tags"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters":{"role":"symbol","title":"QueryFilters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFilters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFilters"}],"url":"\/documentation\/jellyfinapi\/queryfilters"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters/init(genres:tags:)":{"role":"symbol","title":"init(genres:tags:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/init(genres:tags:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilters\/init(genres:tags:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilters\/tags"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilters\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilters\/genres"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/genres.json new file mode 100644 index 000000000..23141f13c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV","text":"NameGuidPair"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilters\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"title":"genres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12QueryFiltersV6genresSayAA12NameGuidPairVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters":{"role":"symbol","title":"QueryFilters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFilters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFilters"}],"url":"\/documentation\/jellyfinapi\/queryfilters"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilters\/genres"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/init(from:).json new file mode 100644 index 000000000..a5608378d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilters\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12QueryFiltersV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters":{"role":"symbol","title":"QueryFilters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFilters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFilters"}],"url":"\/documentation\/jellyfinapi\/queryfilters"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilters\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/init(genres:tags:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/init(genres:tags:).json new file mode 100644 index 000000000..fbffefa50 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/init(genres:tags:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV","text":"NameGuidPair"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilters\/init(genres:tags:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/init(genres:tags:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"title":"init(genres:tags:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12QueryFiltersV6genres4tagsACSayAA12NameGuidPairVGSg_SaySSGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters":{"role":"symbol","title":"QueryFilters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFilters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFilters"}],"url":"\/documentation\/jellyfinapi\/queryfilters"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters/init(genres:tags:)":{"role":"symbol","title":"init(genres:tags:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameGuidPair","preciseIdentifier":"s:11JellyfinAPI12NameGuidPairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/init(genres:tags:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilters\/init(genres:tags:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameGuidPair":{"role":"symbol","title":"NameGuidPair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameGuidPair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameGuidPair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameGuidPair"}],"url":"\/documentation\/jellyfinapi\/nameguidpair"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/tags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/tags.json new file mode 100644 index 000000000..61d82d9ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilters/tags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilters\/tags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/tags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"tags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12QueryFiltersV4tagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters":{"role":"symbol","title":"QueryFilters","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFilters"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFilters"}],"url":"\/documentation\/jellyfinapi\/queryfilters"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFilters/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFilters\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilters\/tags"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy.json new file mode 100644 index 000000000..26d2aabbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilterslegacy"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"title":"QueryFiltersLegacy","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18QueryFiltersLegacyV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"QueryFiltersLegacy"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/init(genres:officialRatings:tags:years:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/genres","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/officialRatings","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/tags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/years"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/officialratings"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/init(genres:officialRatings:tags:years:)":{"role":"symbol","title":"init(genres:officialRatings:tags:years:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/init(genres:officialRatings:tags:years:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/init(genres:officialratings:tags:years:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy":{"role":"symbol","title":"QueryFiltersLegacy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFiltersLegacy"}],"url":"\/documentation\/jellyfinapi\/queryfilterslegacy"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/years"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/genres"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/genres.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/genres.json new file mode 100644 index 000000000..f20a1fd8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/genres.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilterslegacy\/genres"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/genres","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"genres","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QueryFiltersLegacyV6genresSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy":{"role":"symbol","title":"QueryFiltersLegacy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFiltersLegacy"}],"url":"\/documentation\/jellyfinapi\/queryfilterslegacy"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/genres":{"role":"symbol","title":"genres","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/genres","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/genres"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/init(from:).json new file mode 100644 index 000000000..2a2b12226 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilterslegacy\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18QueryFiltersLegacyV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy":{"role":"symbol","title":"QueryFiltersLegacy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFiltersLegacy"}],"url":"\/documentation\/jellyfinapi\/queryfilterslegacy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/init(genres:officialratings:tags:years:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/init(genres:officialratings:tags:years:).json new file mode 100644 index 000000000..46b3f47d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/init(genres:officialratings:tags:years:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilterslegacy\/init(genres:officialratings:tags:years:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/init(genres:officialRatings:tags:years:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?)"}],"title":"init(genres:officialRatings:tags:years:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18QueryFiltersLegacyV6genres15officialRatings4tags5yearsACSaySSGSg_A2ISays5Int32VGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy":{"role":"symbol","title":"QueryFiltersLegacy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFiltersLegacy"}],"url":"\/documentation\/jellyfinapi\/queryfilterslegacy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/init(genres:officialRatings:tags:years:)":{"role":"symbol","title":"init(genres:officialRatings:tags:years:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"genres"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/init(genres:officialRatings:tags:years:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/init(genres:officialratings:tags:years:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/officialratings.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/officialratings.json new file mode 100644 index 000000000..0ab2d0e82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/officialratings.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilterslegacy\/officialratings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/officialRatings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"officialRatings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QueryFiltersLegacyV15officialRatingsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/officialRatings":{"role":"symbol","title":"officialRatings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"officialRatings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/officialRatings","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/officialratings"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy":{"role":"symbol","title":"QueryFiltersLegacy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFiltersLegacy"}],"url":"\/documentation\/jellyfinapi\/queryfilterslegacy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/tags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/tags.json new file mode 100644 index 000000000..47d7b7754 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/tags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilterslegacy\/tags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/tags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"tags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QueryFiltersLegacyV4tagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/tags":{"role":"symbol","title":"tags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/tags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/tags"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy":{"role":"symbol","title":"QueryFiltersLegacy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFiltersLegacy"}],"url":"\/documentation\/jellyfinapi\/queryfilterslegacy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/years.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/years.json new file mode 100644 index 000000000..0205d3468 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queryfilterslegacy/years.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queryfilterslegacy\/years"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/years","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"title":"years","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QueryFiltersLegacyV5yearsSays5Int32VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy/years":{"role":"symbol","title":"years","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"years"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy\/years","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queryfilterslegacy\/years"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueryFiltersLegacy":{"role":"symbol","title":"QueryFiltersLegacy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueryFiltersLegacy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueryFiltersLegacy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueryFiltersLegacy"}],"url":"\/documentation\/jellyfinapi\/queryfilterslegacy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem.json new file mode 100644 index 000000000..752e6f68b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queueitem"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"title":"QueueItem","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI9QueueItemV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"QueueItem"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/init(id:playlistItemID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/id-r9v2","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/playlistItemID"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/init(id:playlistItemID:)":{"role":"symbol","title":"init(id:playlistItemID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/init(id:playlistItemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/init(id:playlistitemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/id-r9v2":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/id-r9v2","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/id-r9v2"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/id-86hiu.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/id-86hiu.json new file mode 100644 index 000000000..a28b14850 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/id-86hiu.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queueitem\/id-86hiu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/id-86hiu","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI9QueueItemV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/id-86hiu":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/id-86hiu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/id-86hiu"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/id-r9v2.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/id-r9v2.json new file mode 100644 index 000000000..6562f4ffa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/id-r9v2.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queueitem\/id-r9v2"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/id-r9v2","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9QueueItemV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/id-r9v2":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/id-r9v2","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/id-r9v2"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/identifiable-implementations.json new file mode 100644 index 000000000..c54c71bc5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/queueitem\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/id-86hiu"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/id-86hiu":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/id-86hiu","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/id-86hiu"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/init(from:).json new file mode 100644 index 000000000..33b8fbbd8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queueitem\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9QueueItemV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/init(id:playlistitemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/init(id:playlistitemid:).json new file mode 100644 index 000000000..bbf0b48bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/init(id:playlistitemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queueitem\/init(id:playlistitemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/init(id:playlistItemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(id:playlistItemID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9QueueItemV2id08playlistD2IDAC10Foundation4UUIDVSg_SSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/init(id:playlistItemID:)":{"role":"symbol","title":"init(id:playlistItemID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/init(id:playlistItemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/init(id:playlistitemid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/playlistitemid.json new file mode 100644 index 000000000..14ff664a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queueitem/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queueitem\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI9QueueItemV08playlistD2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queueitem\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto.json new file mode 100644 index 000000000..0e17ca33f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queuerequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class QueueRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueRequestDto"}],"title":"QueueRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15QueueRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"QueueRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/init(itemIDs:mode:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/itemIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/mode"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto/init(itemIDs:mode:)":{"role":"symbol","title":"init(itemIDs:mode:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupQueueMode","preciseIdentifier":"s:11JellyfinAPI14GroupQueueModeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/init(itemIDs:mode:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queuerequestdto\/init(itemids:mode:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto/mode":{"role":"symbol","title":"mode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupQueueMode","preciseIdentifier":"s:11JellyfinAPI14GroupQueueModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/mode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queuerequestdto\/mode"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto":{"role":"symbol","title":"QueueRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueRequestDto"}],"abstract":[{"type":"text","text":"Class QueueRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueRequestDto"}],"url":"\/documentation\/jellyfinapi\/queuerequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queuerequestdto\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto/itemIDs":{"role":"symbol","title":"itemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items to enqueue."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/itemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queuerequestdto\/itemids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/init(from:).json new file mode 100644 index 000000000..8ba9efa75 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queuerequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15QueueRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queuerequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto":{"role":"symbol","title":"QueueRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueRequestDto"}],"abstract":[{"type":"text","text":"Class QueueRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueRequestDto"}],"url":"\/documentation\/jellyfinapi\/queuerequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/init(itemids:mode:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/init(itemids:mode:).json new file mode 100644 index 000000000..d962c2311 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/init(itemids:mode:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","preciseIdentifier":"s:11JellyfinAPI14GroupQueueModeO","text":"GroupQueueMode"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queuerequestdto\/init(itemids:mode:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/init(itemIDs:mode:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupQueueMode","preciseIdentifier":"s:11JellyfinAPI14GroupQueueModeO"},{"kind":"text","text":"?)"}],"title":"init(itemIDs:mode:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15QueueRequestDtoV7itemIDs4modeACSay10Foundation4UUIDVGSg_AA05GroupC4ModeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto/init(itemIDs:mode:)":{"role":"symbol","title":"init(itemIDs:mode:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupQueueMode","preciseIdentifier":"s:11JellyfinAPI14GroupQueueModeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/init(itemIDs:mode:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queuerequestdto\/init(itemids:mode:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto":{"role":"symbol","title":"QueueRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueRequestDto"}],"abstract":[{"type":"text","text":"Class QueueRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueRequestDto"}],"url":"\/documentation\/jellyfinapi\/queuerequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/itemids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/itemids.json new file mode 100644 index 000000000..a316c910a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/itemids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queuerequestdto\/itemids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/itemIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items to enqueue."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"itemIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15QueueRequestDtoV7itemIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto/itemIDs":{"role":"symbol","title":"itemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items to enqueue."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/itemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queuerequestdto\/itemids"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto":{"role":"symbol","title":"QueueRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueRequestDto"}],"abstract":[{"type":"text","text":"Class QueueRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueRequestDto"}],"url":"\/documentation\/jellyfinapi\/queuerequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/mode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/mode.json new file mode 100644 index 000000000..94a6e893c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/queuerequestdto/mode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","preciseIdentifier":"s:11JellyfinAPI14GroupQueueModeO","text":"GroupQueueMode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/queuerequestdto\/mode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/mode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupQueueMode","preciseIdentifier":"s:11JellyfinAPI14GroupQueueModeO"},{"kind":"text","text":"?"}],"title":"mode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15QueueRequestDtoV4modeAA05GroupC4ModeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupQueueMode":{"role":"symbol","title":"GroupQueueMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupQueueMode"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupQueueMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupQueueMode"}],"url":"\/documentation\/jellyfinapi\/groupqueuemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto/mode":{"role":"symbol","title":"mode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupQueueMode","preciseIdentifier":"s:11JellyfinAPI14GroupQueueModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Enum GroupQueueMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto\/mode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/queuerequestdto\/mode"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueRequestDto":{"role":"symbol","title":"QueueRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueRequestDto"}],"abstract":[{"type":"text","text":"Class QueueRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueRequestDto"}],"url":"\/documentation\/jellyfinapi\/queuerequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto.json new file mode 100644 index 000000000..69333fb10 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The quick connect request body."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectDto"}],"title":"QuickConnectDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15QuickConnectDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"QuickConnectDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/init(secret:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/secret"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto/secret":{"role":"symbol","title":"secret","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the quick connect secret."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/secret","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectdto\/secret"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto":{"role":"symbol","title":"QuickConnectDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectDto"}],"abstract":[{"type":"text","text":"The quick connect request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectDto"}],"url":"\/documentation\/jellyfinapi\/quickconnectdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto/init(secret:)":{"role":"symbol","title":"init(secret:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/init(secret:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectdto\/init(secret:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto/init(from:).json new file mode 100644 index 000000000..5e83fff92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15QuickConnectDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto":{"role":"symbol","title":"QuickConnectDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectDto"}],"abstract":[{"type":"text","text":"The quick connect request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectDto"}],"url":"\/documentation\/jellyfinapi\/quickconnectdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto/init(secret:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto/init(secret:).json new file mode 100644 index 000000000..f0d906a01 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto/init(secret:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectdto\/init(secret:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/init(secret:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(secret:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15QuickConnectDtoV6secretACSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto/init(secret:)":{"role":"symbol","title":"init(secret:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/init(secret:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectdto\/init(secret:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto":{"role":"symbol","title":"QuickConnectDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectDto"}],"abstract":[{"type":"text","text":"The quick connect request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectDto"}],"url":"\/documentation\/jellyfinapi\/quickconnectdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto/secret.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto/secret.json new file mode 100644 index 000000000..cd9c21cd9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectdto/secret.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectdto\/secret"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/secret","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the quick connect secret."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"secret","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15QuickConnectDtoV6secretSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto/secret":{"role":"symbol","title":"secret","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the quick connect secret."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto\/secret","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectdto\/secret"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectDto":{"role":"symbol","title":"QuickConnectDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectDto"}],"abstract":[{"type":"text","text":"The quick connect request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectDto"}],"url":"\/documentation\/jellyfinapi\/quickconnectdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult.json new file mode 100644 index 000000000..79e34229c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"title":"QuickConnectResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18QuickConnectResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/init(appName:appVersion:isAuthenticated:code:dateAdded:deviceID:deviceName:secret:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/appName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/appVersion","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/code","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/dateAdded","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/deviceName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/isAuthenticated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/secret"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/appName":{"role":"symbol","title":"appName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the requesting app name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/appName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/appname"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/code":{"role":"symbol","title":"code","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the user facing code used so the user can quickly differentiate this request from others."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/code","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/code"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/init(appName:appVersion:isAuthenticated:code:dateAdded:deviceID:deviceName:secret:)":{"role":"symbol","title":"init(appName:appVersion:isAuthenticated:code:dateAdded:deviceID:deviceName:secret:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAuthenticated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/init(appName:appVersion:isAuthenticated:code:dateAdded:deviceID:deviceName:secret:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/init(appname:appversion:isauthenticated:code:dateadded:deviceid:devicename:secret:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/deviceName":{"role":"symbol","title":"deviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the requesting device name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/deviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/devicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/isAuthenticated":{"role":"symbol","title":"isAuthenticated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAuthenticated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this request is authorized."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/isAuthenticated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/isauthenticated"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the requesting device id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/dateAdded":{"role":"symbol","title":"dateAdded","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the DateTime that this request was created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/dateAdded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/dateadded"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/appVersion":{"role":"symbol","title":"appVersion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the requesting app version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/appVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/appversion"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/secret":{"role":"symbol","title":"secret","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/secret","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/secret"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/appname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/appname.json new file mode 100644 index 000000000..a7bb99ad4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/appname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult\/appname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/appName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the requesting app name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"appName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QuickConnectResultV7appNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/appName":{"role":"symbol","title":"appName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the requesting app name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/appName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/appname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/appversion.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/appversion.json new file mode 100644 index 000000000..ff6e55d9c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/appversion.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult\/appversion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/appVersion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the requesting app version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"appVersion","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QuickConnectResultV10appVersionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/appVersion":{"role":"symbol","title":"appVersion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the requesting app version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/appVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/appversion"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/code.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/code.json new file mode 100644 index 000000000..73f704f3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/code.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult\/code"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/code","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the user facing code used so the user can quickly differentiate this request from others."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"code","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QuickConnectResultV4codeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/code":{"role":"symbol","title":"code","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the user facing code used so the user can quickly differentiate this request from others."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/code","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/code"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/dateadded.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/dateadded.json new file mode 100644 index 000000000..42b21428e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/dateadded.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult\/dateadded"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/dateAdded","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the DateTime that this request was created."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateAdded","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QuickConnectResultV9dateAdded10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/dateAdded":{"role":"symbol","title":"dateAdded","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the DateTime that this request was created."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/dateAdded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/dateadded"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/deviceid.json new file mode 100644 index 000000000..fe45f7cc7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the requesting device id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QuickConnectResultV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the requesting device id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/devicename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/devicename.json new file mode 100644 index 000000000..c6f82f756 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/devicename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult\/devicename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/deviceName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the requesting device name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QuickConnectResultV10deviceNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/deviceName":{"role":"symbol","title":"deviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the requesting device name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/deviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/devicename"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/init(appname:appversion:isauthenticated:code:dateadded:deviceid:devicename:secret:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/init(appname:appversion:isauthenticated:code:dateadded:deviceid:devicename:secret:).json new file mode 100644 index 000000000..dae0bd29c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/init(appname:appversion:isauthenticated:code:dateadded:deviceid:devicename:secret:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAuthenticated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult\/init(appname:appversion:isauthenticated:code:dateadded:deviceid:devicename:secret:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/init(appName:appVersion:isAuthenticated:code:dateAdded:deviceID:deviceName:secret:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAuthenticated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(appName:appVersion:isAuthenticated:code:dateAdded:deviceID:deviceName:secret:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18QuickConnectResultV7appName0F7Version15isAuthenticated4code9dateAdded8deviceID0nG06secretACSSSg_ALSbSgAL10Foundation4DateVSgA3Ltcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/init(appName:appVersion:isAuthenticated:code:dateAdded:deviceID:deviceName:secret:)":{"role":"symbol","title":"init(appName:appVersion:isAuthenticated:code:dateAdded:deviceID:deviceName:secret:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"appName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"appVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAuthenticated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"code"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateAdded"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/init(appName:appVersion:isAuthenticated:code:dateAdded:deviceID:deviceName:secret:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/init(appname:appversion:isauthenticated:code:dateadded:deviceid:devicename:secret:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/init(from:).json new file mode 100644 index 000000000..05b2f5037 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18QuickConnectResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/isauthenticated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/isauthenticated.json new file mode 100644 index 000000000..573f262e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/isauthenticated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAuthenticated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult\/isauthenticated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/isAuthenticated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this request is authorized."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAuthenticated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAuthenticated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QuickConnectResultV15isAuthenticatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/isAuthenticated":{"role":"symbol","title":"isAuthenticated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAuthenticated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this request is authorized."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/isAuthenticated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/isauthenticated"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/secret.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/secret.json new file mode 100644 index 000000000..52f3e2bf1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/quickconnectresult/secret.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/quickconnectresult\/secret"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/secret","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"secret","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18QuickConnectResultV6secretSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult":{"role":"symbol","title":"QuickConnectResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QuickConnectResult"}],"abstract":[{"type":"text","text":"Stores the state of an quick connect request."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QuickConnectResult"}],"url":"\/documentation\/jellyfinapi\/quickconnectresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/QuickConnectResult/secret":{"role":"symbol","title":"secret","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"secret"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QuickConnectResult\/secret","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/quickconnectresult\/secret"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype.json new file mode 100644 index 000000000..6ef872388 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"title":"RatingType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI10RatingTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RatingType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/likes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/score"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/likes":{"role":"symbol","title":"RatingType.likes","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"likes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/likes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/likes"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/score":{"role":"symbol","title":"RatingType.score","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"score"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/score","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/score"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/!=(_:_:).json new file mode 100644 index 000000000..db63f0916 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI10RatingTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/encode(to:).json new file mode 100644 index 000000000..88b1c10de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI10RatingTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/equatable-implementations.json new file mode 100644 index 000000000..b26d46f64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/hash(into:).json new file mode 100644 index 000000000..bb384ec65 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI10RatingTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/hashvalue.json new file mode 100644 index 000000000..440ab9321 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI10RatingTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/init(from:).json new file mode 100644 index 000000000..9c6f1c5da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI10RatingTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/init(rawvalue:).json new file mode 100644 index 000000000..cfea83a2f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10RatingTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/likes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/likes.json new file mode 100644 index 000000000..3e2caceb0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/likes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"likes"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype\/likes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/likes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"likes"}],"title":"RatingType.likes","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10RatingTypeO5likesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/likes":{"role":"symbol","title":"RatingType.likes","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"likes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/likes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/likes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/rawrepresentable-implementations.json new file mode 100644 index 000000000..676cb8d1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/score.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/score.json new file mode 100644 index 000000000..067d37e84 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/ratingtype/score.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"score"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/ratingtype\/score"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/score","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"score"}],"title":"RatingType.score","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10RatingTypeO5scoreyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType/score":{"role":"symbol","title":"RatingType.score","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"score"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType\/score","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/ratingtype\/score"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto.json new file mode 100644 index 000000000..647b2eec7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/readyrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class ReadyRequest."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"title":"ReadyRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15ReadyRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ReadyRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/init(isPlaying:playlistItemID:positionTicks:when:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/isPlaying","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/playlistItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/positionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/when"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto":{"role":"symbol","title":"ReadyRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"abstract":[{"type":"text","text":"Class ReadyRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ReadyRequestDto"}],"url":"\/documentation\/jellyfinapi\/readyrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/when":{"role":"symbol","title":"when","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets when the request has been made by the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/when","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/when"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist item identifier of the playing item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/playlistitemid"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/isPlaying":{"role":"symbol","title":"isPlaying","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the client playback is unpaused."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/isPlaying","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/isplaying"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/init(isPlaying:playlistItemID:positionTicks:when:)":{"role":"symbol","title":"init(isPlaying:playlistItemID:positionTicks:when:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/init(isPlaying:playlistItemID:positionTicks:when:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/init(isplaying:playlistitemid:positionticks:when:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/positionticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/init(from:).json new file mode 100644 index 000000000..fc97c154f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/readyrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ReadyRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto":{"role":"symbol","title":"ReadyRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"abstract":[{"type":"text","text":"Class ReadyRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ReadyRequestDto"}],"url":"\/documentation\/jellyfinapi\/readyrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/init(isplaying:playlistitemid:positionticks:when:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/init(isplaying:playlistitemid:positionticks:when:).json new file mode 100644 index 000000000..637306863 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/init(isplaying:playlistitemid:positionticks:when:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/readyrequestdto\/init(isplaying:playlistitemid:positionticks:when:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/init(isPlaying:playlistItemID:positionTicks:when:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"title":"init(isPlaying:playlistItemID:positionTicks:when:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ReadyRequestDtoV9isPlaying14playlistItemID13positionTicks4whenACSbSg_10Foundation4UUIDVSgs5Int64VSgAI4DateVSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto":{"role":"symbol","title":"ReadyRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"abstract":[{"type":"text","text":"Class ReadyRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ReadyRequestDto"}],"url":"\/documentation\/jellyfinapi\/readyrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/init(isPlaying:playlistItemID:positionTicks:when:)":{"role":"symbol","title":"init(isPlaying:playlistItemID:positionTicks:when:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/init(isPlaying:playlistItemID:positionTicks:when:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/init(isplaying:playlistitemid:positionticks:when:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/isplaying.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/isplaying.json new file mode 100644 index 000000000..7b244487b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/isplaying.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/readyrequestdto\/isplaying"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/isPlaying","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the client playback is unpaused."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlaying","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ReadyRequestDtoV9isPlayingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto":{"role":"symbol","title":"ReadyRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"abstract":[{"type":"text","text":"Class ReadyRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ReadyRequestDto"}],"url":"\/documentation\/jellyfinapi\/readyrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/isPlaying":{"role":"symbol","title":"isPlaying","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlaying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the client playback is unpaused."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/isPlaying","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/isplaying"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/playlistitemid.json new file mode 100644 index 000000000..be0a29543 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/readyrequestdto\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playlist item identifier of the playing item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ReadyRequestDtoV14playlistItemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist item identifier of the playing item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto":{"role":"symbol","title":"ReadyRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"abstract":[{"type":"text","text":"Class ReadyRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ReadyRequestDto"}],"url":"\/documentation\/jellyfinapi\/readyrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/positionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/positionticks.json new file mode 100644 index 000000000..167a7c5c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/positionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/readyrequestdto\/positionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/positionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"positionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ReadyRequestDtoV13positionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto":{"role":"symbol","title":"ReadyRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"abstract":[{"type":"text","text":"Class ReadyRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ReadyRequestDto"}],"url":"\/documentation\/jellyfinapi\/readyrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/positionticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/when.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/when.json new file mode 100644 index 000000000..84017ec1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/readyrequestdto/when.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/readyrequestdto\/when"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/when","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets when the request has been made by the client."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"when","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ReadyRequestDtoV4when10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto":{"role":"symbol","title":"ReadyRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ReadyRequestDto"}],"abstract":[{"type":"text","text":"Class ReadyRequest."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ReadyRequestDto"}],"url":"\/documentation\/jellyfinapi\/readyrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/ReadyRequestDto/when":{"role":"symbol","title":"when","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets when the request has been made by the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ReadyRequestDto\/when","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/readyrequestdto\/when"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto.json new file mode 100644 index 000000000..6ead1909a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"title":"RecommendationDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17RecommendationDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RecommendationDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/init(baselineItemName:categoryID:items:recommendationType:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/baselineItemName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/categoryID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/items","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/recommendationType"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/recommendationType":{"role":"symbol","title":"recommendationType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recommendationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecommendationType","preciseIdentifier":"s:11JellyfinAPI18RecommendationTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/recommendationType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/items"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/init(baselineItemName:categoryID:items:recommendationType:)":{"role":"symbol","title":"init(baselineItemName:categoryID:items:recommendationType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"baselineItemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"categoryID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"recommendationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecommendationType","preciseIdentifier":"s:11JellyfinAPI18RecommendationTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/init(baselineItemName:categoryID:items:recommendationType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/init(baselineitemname:categoryid:items:recommendationtype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/baselineItemName":{"role":"symbol","title":"baselineItemName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baselineItemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/baselineItemName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/baselineitemname"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto":{"role":"symbol","title":"RecommendationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationDto"}],"url":"\/documentation\/jellyfinapi\/recommendationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/categoryID":{"role":"symbol","title":"categoryID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"categoryID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/categoryID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/categoryid"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/baselineitemname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/baselineitemname.json new file mode 100644 index 000000000..d664fa468 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/baselineitemname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baselineItemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationdto\/baselineitemname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/baselineItemName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baselineItemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"baselineItemName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17RecommendationDtoV16baselineItemNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/baselineItemName":{"role":"symbol","title":"baselineItemName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"baselineItemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/baselineItemName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/baselineitemname"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto":{"role":"symbol","title":"RecommendationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationDto"}],"url":"\/documentation\/jellyfinapi\/recommendationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/categoryid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/categoryid.json new file mode 100644 index 000000000..f436a38c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/categoryid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"categoryID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationdto\/categoryid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/categoryID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"categoryID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"categoryID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17RecommendationDtoV10categoryID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/categoryID":{"role":"symbol","title":"categoryID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"categoryID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/categoryID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/categoryid"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto":{"role":"symbol","title":"RecommendationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationDto"}],"url":"\/documentation\/jellyfinapi\/recommendationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/init(baselineitemname:categoryid:items:recommendationtype:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/init(baselineitemname:categoryid:items:recommendationtype:).json new file mode 100644 index 000000000..10fc0bf52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/init(baselineitemname:categoryid:items:recommendationtype:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"baselineItemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"categoryID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"recommendationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","preciseIdentifier":"s:11JellyfinAPI18RecommendationTypeO","text":"RecommendationType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationdto\/init(baselineitemname:categoryid:items:recommendationtype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/init(baselineItemName:categoryID:items:recommendationType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"baselineItemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"categoryID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"recommendationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecommendationType","preciseIdentifier":"s:11JellyfinAPI18RecommendationTypeO"},{"kind":"text","text":"?)"}],"title":"init(baselineItemName:categoryID:items:recommendationType:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17RecommendationDtoV16baselineItemName10categoryID5items18recommendationTypeACSSSg_10Foundation4UUIDVSgSayAA04BasefD0VGSgAA0cL0OSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/init(baselineItemName:categoryID:items:recommendationType:)":{"role":"symbol","title":"init(baselineItemName:categoryID:items:recommendationType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"baselineItemName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"categoryID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"recommendationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecommendationType","preciseIdentifier":"s:11JellyfinAPI18RecommendationTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/init(baselineItemName:categoryID:items:recommendationType:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/init(baselineitemname:categoryid:items:recommendationtype:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto":{"role":"symbol","title":"RecommendationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationDto"}],"url":"\/documentation\/jellyfinapi\/recommendationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/init(from:).json new file mode 100644 index 000000000..5cc519103 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17RecommendationDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto":{"role":"symbol","title":"RecommendationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationDto"}],"url":"\/documentation\/jellyfinapi\/recommendationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/items.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/items.json new file mode 100644 index 000000000..50902e48e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/items.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationdto\/items"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/items","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"title":"items","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17RecommendationDtoV5itemsSayAA08BaseItemD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/items"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto":{"role":"symbol","title":"RecommendationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationDto"}],"url":"\/documentation\/jellyfinapi\/recommendationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/recommendationtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/recommendationtype.json new file mode 100644 index 000000000..905475195 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationdto/recommendationtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recommendationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","preciseIdentifier":"s:11JellyfinAPI18RecommendationTypeO","text":"RecommendationType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationdto\/recommendationtype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/recommendationType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recommendationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecommendationType","preciseIdentifier":"s:11JellyfinAPI18RecommendationTypeO"},{"kind":"text","text":"?"}],"title":"recommendationType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17RecommendationDtoV18recommendationTypeAA0cF0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto":{"role":"symbol","title":"RecommendationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationDto"}],"url":"\/documentation\/jellyfinapi\/recommendationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationDto/recommendationType":{"role":"symbol","title":"recommendationType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recommendationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecommendationType","preciseIdentifier":"s:11JellyfinAPI18RecommendationTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationDto\/recommendationType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationdto\/recommendationtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype.json new file mode 100644 index 000000000..78c8a98f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"title":"RecommendationType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI18RecommendationTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasActorFromRecentlyPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasDirectorFromRecentlyPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasLikedActor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasLikedDirector","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/similarToLikedItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/similarToRecentlyPlayed"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/similarToRecentlyPlayed":{"role":"symbol","title":"RecommendationType.similarToRecentlyPlayed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"similarToRecentlyPlayed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/similarToRecentlyPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/similartorecentlyplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hasActorFromRecentlyPlayed":{"role":"symbol","title":"RecommendationType.hasActorFromRecentlyPlayed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasActorFromRecentlyPlayed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasActorFromRecentlyPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/hasactorfromrecentlyplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/similarToLikedItem":{"role":"symbol","title":"RecommendationType.similarToLikedItem","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"similarToLikedItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/similarToLikedItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/similartolikeditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hasLikedDirector":{"role":"symbol","title":"RecommendationType.hasLikedDirector","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasLikedDirector"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasLikedDirector","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/haslikeddirector"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hasLikedActor":{"role":"symbol","title":"RecommendationType.hasLikedActor","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasLikedActor"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasLikedActor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/haslikedactor"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/init(rawvalue:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hasDirectorFromRecentlyPlayed":{"role":"symbol","title":"RecommendationType.hasDirectorFromRecentlyPlayed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasDirectorFromRecentlyPlayed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasDirectorFromRecentlyPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/hasdirectorfromrecentlyplayed"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/!=(_:_:).json new file mode 100644 index 000000000..60ed6761b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI18RecommendationTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/encode(to:).json new file mode 100644 index 000000000..435d141c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI18RecommendationTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/equatable-implementations.json new file mode 100644 index 000000000..6e445b50b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hasactorfromrecentlyplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hasactorfromrecentlyplayed.json new file mode 100644 index 000000000..96ef044ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hasactorfromrecentlyplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasActorFromRecentlyPlayed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/hasactorfromrecentlyplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasActorFromRecentlyPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasActorFromRecentlyPlayed"}],"title":"RecommendationType.hasActorFromRecentlyPlayed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18RecommendationTypeO26hasActorFromRecentlyPlayedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hasActorFromRecentlyPlayed":{"role":"symbol","title":"RecommendationType.hasActorFromRecentlyPlayed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasActorFromRecentlyPlayed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasActorFromRecentlyPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/hasactorfromrecentlyplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hasdirectorfromrecentlyplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hasdirectorfromrecentlyplayed.json new file mode 100644 index 000000000..1a969fbcf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hasdirectorfromrecentlyplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasDirectorFromRecentlyPlayed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/hasdirectorfromrecentlyplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasDirectorFromRecentlyPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasDirectorFromRecentlyPlayed"}],"title":"RecommendationType.hasDirectorFromRecentlyPlayed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18RecommendationTypeO29hasDirectorFromRecentlyPlayedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hasDirectorFromRecentlyPlayed":{"role":"symbol","title":"RecommendationType.hasDirectorFromRecentlyPlayed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasDirectorFromRecentlyPlayed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasDirectorFromRecentlyPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/hasdirectorfromrecentlyplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hash(into:).json new file mode 100644 index 000000000..321287c9b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI18RecommendationTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hashvalue.json new file mode 100644 index 000000000..667e0d3af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI18RecommendationTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/haslikedactor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/haslikedactor.json new file mode 100644 index 000000000..a68034773 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/haslikedactor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasLikedActor"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/haslikedactor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasLikedActor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasLikedActor"}],"title":"RecommendationType.hasLikedActor","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18RecommendationTypeO13hasLikedActoryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hasLikedActor":{"role":"symbol","title":"RecommendationType.hasLikedActor","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasLikedActor"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasLikedActor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/haslikedactor"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/haslikeddirector.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/haslikeddirector.json new file mode 100644 index 000000000..b518bc75b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/haslikeddirector.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasLikedDirector"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/haslikeddirector"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasLikedDirector","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasLikedDirector"}],"title":"RecommendationType.hasLikedDirector","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18RecommendationTypeO16hasLikedDirectoryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hasLikedDirector":{"role":"symbol","title":"RecommendationType.hasLikedDirector","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasLikedDirector"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hasLikedDirector","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/haslikeddirector"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/init(from:).json new file mode 100644 index 000000000..35dfbfef4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI18RecommendationTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/init(rawvalue:).json new file mode 100644 index 000000000..ca1960957 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18RecommendationTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/rawrepresentable-implementations.json new file mode 100644 index 000000000..03a136f21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/similartolikeditem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/similartolikeditem.json new file mode 100644 index 000000000..37c9c8182 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/similartolikeditem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"similarToLikedItem"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/similartolikeditem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/similarToLikedItem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"similarToLikedItem"}],"title":"RecommendationType.similarToLikedItem","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18RecommendationTypeO18similarToLikedItemyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/similarToLikedItem":{"role":"symbol","title":"RecommendationType.similarToLikedItem","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"similarToLikedItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/similarToLikedItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/similartolikeditem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/similartorecentlyplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/similartorecentlyplayed.json new file mode 100644 index 000000000..4bc526b1c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recommendationtype/similartorecentlyplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"similarToRecentlyPlayed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recommendationtype\/similartorecentlyplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/similarToRecentlyPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"similarToRecentlyPlayed"}],"title":"RecommendationType.similarToRecentlyPlayed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18RecommendationTypeO23similarToRecentlyPlayedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType/similarToRecentlyPlayed":{"role":"symbol","title":"RecommendationType.similarToRecentlyPlayed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"similarToRecentlyPlayed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType\/similarToRecentlyPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recommendationtype\/similartorecentlyplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecommendationType":{"role":"symbol","title":"RecommendationType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecommendationType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecommendationType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecommendationType"}],"url":"\/documentation\/jellyfinapi\/recommendationtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus.json new file mode 100644 index 000000000..76e640ab7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"title":"RecordingStatus","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15RecordingStatusO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/cancelled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/completed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/conflictedNotOk","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/conflictedOk","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/error","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/inProgress","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/new"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/completed":{"role":"symbol","title":"RecordingStatus.completed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"completed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/completed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/completed"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/inProgress":{"role":"symbol","title":"RecordingStatus.inProgress","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inProgress"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/inProgress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/inprogress"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/new":{"role":"symbol","title":"RecordingStatus.new","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"new"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/new","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/new"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/cancelled":{"role":"symbol","title":"RecordingStatus.cancelled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/cancelled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/cancelled"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/conflictedOk":{"role":"symbol","title":"RecordingStatus.conflictedOk","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"conflictedOk"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/conflictedOk","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/conflictedok"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/conflictedNotOk":{"role":"symbol","title":"RecordingStatus.conflictedNotOk","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"conflictedNotOk"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/conflictedNotOk","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/conflictednotok"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/error":{"role":"symbol","title":"RecordingStatus.error","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/error","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/error"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/!=(_:_:).json new file mode 100644 index 000000000..c28e48646 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15RecordingStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/cancelled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/cancelled.json new file mode 100644 index 000000000..42702f04c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/cancelled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelled"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/cancelled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/cancelled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelled"}],"title":"RecordingStatus.cancelled","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15RecordingStatusO9cancelledyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/cancelled":{"role":"symbol","title":"RecordingStatus.cancelled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/cancelled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/cancelled"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/completed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/completed.json new file mode 100644 index 000000000..c77d2bea9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/completed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"completed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/completed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/completed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"completed"}],"title":"RecordingStatus.completed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15RecordingStatusO9completedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/completed":{"role":"symbol","title":"RecordingStatus.completed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"completed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/completed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/completed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/conflictednotok.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/conflictednotok.json new file mode 100644 index 000000000..9af20885d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/conflictednotok.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"conflictedNotOk"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/conflictednotok"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/conflictedNotOk","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"conflictedNotOk"}],"title":"RecordingStatus.conflictedNotOk","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15RecordingStatusO15conflictedNotOkyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/conflictedNotOk":{"role":"symbol","title":"RecordingStatus.conflictedNotOk","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"conflictedNotOk"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/conflictedNotOk","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/conflictednotok"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/conflictedok.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/conflictedok.json new file mode 100644 index 000000000..af7f49fcf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/conflictedok.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"conflictedOk"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/conflictedok"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/conflictedOk","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"conflictedOk"}],"title":"RecordingStatus.conflictedOk","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15RecordingStatusO12conflictedOkyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/conflictedOk":{"role":"symbol","title":"RecordingStatus.conflictedOk","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"conflictedOk"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/conflictedOk","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/conflictedok"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/encode(to:).json new file mode 100644 index 000000000..87145c777 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15RecordingStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/equatable-implementations.json new file mode 100644 index 000000000..9568f2508 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/error.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/error.json new file mode 100644 index 000000000..6ec210365 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/error.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/error"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/error","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"title":"RecordingStatus.error","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15RecordingStatusO5erroryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/error":{"role":"symbol","title":"RecordingStatus.error","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/error","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/error"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/hash(into:).json new file mode 100644 index 000000000..f1653626e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15RecordingStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/hashvalue.json new file mode 100644 index 000000000..1ee58ddd5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15RecordingStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/init(from:).json new file mode 100644 index 000000000..83a8288e8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15RecordingStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/init(rawvalue:).json new file mode 100644 index 000000000..92a7136d8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15RecordingStatusO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/inprogress.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/inprogress.json new file mode 100644 index 000000000..40244caa9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/inprogress.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inProgress"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/inprogress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/inProgress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inProgress"}],"title":"RecordingStatus.inProgress","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15RecordingStatusO10inProgressyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/inProgress":{"role":"symbol","title":"RecordingStatus.inProgress","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inProgress"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/inProgress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/inprogress"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/new.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/new.json new file mode 100644 index 000000000..28469560d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/new.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"new"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/new"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/new","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"new"}],"title":"RecordingStatus.new","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15RecordingStatusO3newyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/new":{"role":"symbol","title":"RecordingStatus.new","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"new"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/new","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/new"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/rawrepresentable-implementations.json new file mode 100644 index 000000000..5eb40003a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/recordingstatus/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/recordingstatus\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/recordingstatus\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo.json new file mode 100644 index 000000000..161ce8358 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"title":"RemoteImageInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15RemoteImageInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/init(communityRating:height:language:providerName:ratingType:thumbnailURL:type:url:voteCount:width:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/communityRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/language","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/providerName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/ratingType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/thumbnailURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/url","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/voteCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/width"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/ratingType":{"role":"symbol","title":"ratingType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ratingType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RatingType","preciseIdentifier":"s:11JellyfinAPI10RatingTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/ratingType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/init(communityRating:height:language:providerName:ratingType:thumbnailURL:type:url:voteCount:width:)":{"role":"symbol","title":"init(communityRating:height:language:providerName:ratingType:thumbnailURL:type:url:voteCount:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"ratingType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RatingType","preciseIdentifier":"s:11JellyfinAPI10RatingTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"thumbnailURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"voteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/init(communityRating:height:language:providerName:ratingType:thumbnailURL:type:url:voteCount:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/init(communityrating:height:language:providername:ratingtype:thumbnailurl:type:url:votecount:width:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the height."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/height"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/language":{"role":"symbol","title":"language","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/language","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/language"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/voteCount":{"role":"symbol","title":"voteCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"voteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the vote count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/voteCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/votecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/providerName":{"role":"symbol","title":"providerName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the provider."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/providerName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/providername"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/communityRating":{"role":"symbol","title":"communityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the community rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/communityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/communityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/thumbnailURL":{"role":"symbol","title":"thumbnailURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbnailURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a url used for previewing a smaller version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/thumbnailURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/thumbnailurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the width."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/type"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/communityrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/communityrating.json new file mode 100644 index 000000000..2613ed2d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/communityrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/communityrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/communityRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the community rating."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"communityRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15RemoteImageInfoV15communityRatingSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/communityRating":{"role":"symbol","title":"communityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the community rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/communityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/communityrating"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/height.json new file mode 100644 index 000000000..6b95f7d25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the height."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15RemoteImageInfoV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the height."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/init(communityrating:height:language:providername:ratingtype:thumbnailurl:type:url:votecount:width:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/init(communityrating:height:language:providername:ratingtype:thumbnailurl:type:url:votecount:width:).json new file mode 100644 index 000000000..15b37bf1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/init(communityrating:height:language:providername:ratingtype:thumbnailurl:type:url:votecount:width:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"ratingType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","preciseIdentifier":"s:11JellyfinAPI10RatingTypeO","text":"RatingType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"thumbnailURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"voteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/init(communityrating:height:language:providername:ratingtype:thumbnailurl:type:url:votecount:width:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/init(communityRating:height:language:providerName:ratingType:thumbnailURL:type:url:voteCount:width:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"ratingType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RatingType","preciseIdentifier":"s:11JellyfinAPI10RatingTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"thumbnailURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"voteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(communityRating:height:language:providerName:ratingType:thumbnailURL:type:url:voteCount:width:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15RemoteImageInfoV15communityRating6height8language12providerName10ratingType12thumbnailURL4type3url9voteCount5widthACSdSg_s5Int32VSgSSSgArA0gM0OSgArA0dM0OSgAr2Qtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/init(communityRating:height:language:providerName:ratingType:thumbnailURL:type:url:voteCount:width:)":{"role":"symbol","title":"init(communityRating:height:language:providerName:ratingType:thumbnailURL:type:url:voteCount:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"ratingType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RatingType","preciseIdentifier":"s:11JellyfinAPI10RatingTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"thumbnailURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"voteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/init(communityRating:height:language:providerName:ratingType:thumbnailURL:type:url:voteCount:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/init(communityrating:height:language:providername:ratingtype:thumbnailurl:type:url:votecount:width:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/init(from:).json new file mode 100644 index 000000000..c51a7cde9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15RemoteImageInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/language.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/language.json new file mode 100644 index 000000000..df6853ea3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/language.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/language"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/language","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"language","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15RemoteImageInfoV8languageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/language":{"role":"symbol","title":"language","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/language","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/language"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/providername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/providername.json new file mode 100644 index 000000000..40a4d539f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/providername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/providername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/providerName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the provider."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"providerName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15RemoteImageInfoV12providerNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/providerName":{"role":"symbol","title":"providerName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the provider."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/providerName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/providername"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/ratingtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/ratingtype.json new file mode 100644 index 000000000..a7bd1fee8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/ratingtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ratingType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","preciseIdentifier":"s:11JellyfinAPI10RatingTypeO","text":"RatingType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/ratingtype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/ratingType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the rating."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ratingType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RatingType","preciseIdentifier":"s:11JellyfinAPI10RatingTypeO"},{"kind":"text","text":"?"}],"title":"ratingType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15RemoteImageInfoV10ratingTypeAA06RatingG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/ratingType":{"role":"symbol","title":"ratingType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ratingType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RatingType","preciseIdentifier":"s:11JellyfinAPI10RatingTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/ratingType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/ratingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/RatingType":{"role":"symbol","title":"RatingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RatingType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RatingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RatingType"}],"url":"\/documentation\/jellyfinapi\/ratingtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/thumbnailurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/thumbnailurl.json new file mode 100644 index 000000000..d158391ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/thumbnailurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbnailURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/thumbnailurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/thumbnailURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a url used for previewing a smaller version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbnailURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"thumbnailURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15RemoteImageInfoV12thumbnailURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/thumbnailURL":{"role":"symbol","title":"thumbnailURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbnailURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a url used for previewing a smaller version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/thumbnailURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/thumbnailurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/type.json new file mode 100644 index 000000000..bdf04a4a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO","text":"ImageType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15RemoteImageInfoV4typeAA0D4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageType","preciseIdentifier":"s:11JellyfinAPI9ImageTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageType":{"role":"symbol","title":"ImageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageType"}],"abstract":[{"type":"text","text":"Enum ImageType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageType"}],"url":"\/documentation\/jellyfinapi\/imagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/url.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/url.json new file mode 100644 index 000000000..deb442862 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/url.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/url"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/url","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"url","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15RemoteImageInfoV3urlSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/votecount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/votecount.json new file mode 100644 index 000000000..133cd6af8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/votecount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"voteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/votecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/voteCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the vote count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"voteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"voteCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15RemoteImageInfoV9voteCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/voteCount":{"role":"symbol","title":"voteCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"voteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the vote count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/voteCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/votecount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/width.json new file mode 100644 index 000000000..5bf29f753 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageinfo/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageinfo\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the width."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15RemoteImageInfoV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the width."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageinfo\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult.json new file mode 100644 index 000000000..1d0f266a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class RemoteImageResult."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageResult"}],"title":"RemoteImageResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17RemoteImageResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RemoteImageResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/init(images:providers:totalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/images","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/providers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/totalRecordCount"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total record count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageresult\/totalrecordcount"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult":{"role":"symbol","title":"RemoteImageResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageResult"}],"abstract":[{"type":"text","text":"Class RemoteImageResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageResult"}],"url":"\/documentation\/jellyfinapi\/remoteimageresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult/providers":{"role":"symbol","title":"providers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the providers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/providers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageresult\/providers"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult/init(images:providers:totalRecordCount:)":{"role":"symbol","title":"init(images:providers:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"images"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteImageInfo","preciseIdentifier":"s:11JellyfinAPI15RemoteImageInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"providers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/init(images:providers:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageresult\/init(images:providers:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult/images":{"role":"symbol","title":"images","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"images"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteImageInfo","preciseIdentifier":"s:11JellyfinAPI15RemoteImageInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the images."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/images","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageresult\/images"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageresult\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/images.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/images.json new file mode 100644 index 000000000..52a29e8f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/images.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"images"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","preciseIdentifier":"s:11JellyfinAPI15RemoteImageInfoV","text":"RemoteImageInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageresult\/images"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/images","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the images."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"images"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteImageInfo","preciseIdentifier":"s:11JellyfinAPI15RemoteImageInfoV"},{"kind":"text","text":"]?"}],"title":"images","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17RemoteImageResultV6imagesSayAA0cD4InfoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult":{"role":"symbol","title":"RemoteImageResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageResult"}],"abstract":[{"type":"text","text":"Class RemoteImageResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageResult"}],"url":"\/documentation\/jellyfinapi\/remoteimageresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult/images":{"role":"symbol","title":"images","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"images"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteImageInfo","preciseIdentifier":"s:11JellyfinAPI15RemoteImageInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the images."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/images","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageresult\/images"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/init(from:).json new file mode 100644 index 000000000..f667d5b94 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17RemoteImageResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult":{"role":"symbol","title":"RemoteImageResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageResult"}],"abstract":[{"type":"text","text":"Class RemoteImageResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageResult"}],"url":"\/documentation\/jellyfinapi\/remoteimageresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/init(images:providers:totalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/init(images:providers:totalrecordcount:).json new file mode 100644 index 000000000..6180b9080 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/init(images:providers:totalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"images"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","preciseIdentifier":"s:11JellyfinAPI15RemoteImageInfoV","text":"RemoteImageInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"providers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageresult\/init(images:providers:totalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/init(images:providers:totalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"images"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteImageInfo","preciseIdentifier":"s:11JellyfinAPI15RemoteImageInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"providers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(images:providers:totalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17RemoteImageResultV6images9providers16totalRecordCountACSayAA0cD4InfoVGSg_SaySSGSgs5Int32VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult":{"role":"symbol","title":"RemoteImageResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageResult"}],"abstract":[{"type":"text","text":"Class RemoteImageResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageResult"}],"url":"\/documentation\/jellyfinapi\/remoteimageresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageInfo":{"role":"symbol","title":"RemoteImageInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageInfo"}],"abstract":[{"type":"text","text":"Class RemoteImageInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageInfo"}],"url":"\/documentation\/jellyfinapi\/remoteimageinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult/init(images:providers:totalRecordCount:)":{"role":"symbol","title":"init(images:providers:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"images"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteImageInfo","preciseIdentifier":"s:11JellyfinAPI15RemoteImageInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"providers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/init(images:providers:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageresult\/init(images:providers:totalrecordcount:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/providers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/providers.json new file mode 100644 index 000000000..458b2b98b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/providers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageresult\/providers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/providers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the providers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17RemoteImageResultV9providersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult":{"role":"symbol","title":"RemoteImageResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageResult"}],"abstract":[{"type":"text","text":"Class RemoteImageResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageResult"}],"url":"\/documentation\/jellyfinapi\/remoteimageresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult/providers":{"role":"symbol","title":"providers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the providers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/providers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageresult\/providers"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/totalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/totalrecordcount.json new file mode 100644 index 000000000..76b8c8922 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remoteimageresult/totalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remoteimageresult\/totalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/totalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the total record count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"totalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17RemoteImageResultV16totalRecordCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult":{"role":"symbol","title":"RemoteImageResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteImageResult"}],"abstract":[{"type":"text","text":"Class RemoteImageResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteImageResult"}],"url":"\/documentation\/jellyfinapi\/remoteimageresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteImageResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total record count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteImageResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remoteimageresult\/totalrecordcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult.json new file mode 100644 index 000000000..ae7a27fbb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"final"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"title":"RemoteSearchResult","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:11JellyfinAPI18RemoteSearchResultC","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/init(albumArtist:artists:imageURL:indexNumber:indexNumberEnd:name:overview:parentIndexNumber:premiereDate:productionYear:providerIDs:searchProviderName:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/albumArtist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/artists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/imageURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/indexNumberEnd","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/overview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/productionYear","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/searchProviderName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/albumArtist":{"role":"symbol","title":"albumArtist","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/albumArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/albumartist"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/searchprovidername"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/indexNumberEnd":{"role":"symbol","title":"indexNumberEnd","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/indexNumberEnd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/indexnumberend"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/init(albumArtist:artists:imageURL:indexNumber:indexNumberEnd:name:overview:parentIndexNumber:premiereDate:productionYear:providerIDs:searchProviderName:)":{"role":"symbol","title":"init(albumArtist:artists:imageURL:indexNumber:indexNumberEnd:name:overview:parentIndexNumber:premiereDate:productionYear:providerIDs:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/init(albumArtist:artists:imageURL:indexNumber:indexNumberEnd:name:overview:parentIndexNumber:premiereDate:productionYear:providerIDs:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/init(albumartist:artists:imageurl:indexnumber:indexnumberend:name:overview:parentindexnumber:premieredate:productionyear:providerids:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/imageURL":{"role":"symbol","title":"imageURL","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/imageURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/imageurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/name"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/productionYear":{"role":"symbol","title":"productionYear","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/productionYear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/productionyear"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/overview"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/albumartist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/albumartist.json new file mode 100644 index 000000000..70c8b2140 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/albumartist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/albumartist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/albumArtist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"?"}],"title":"albumArtist","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC11albumArtistACSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/albumArtist":{"role":"symbol","title":"albumArtist","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/albumArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/albumartist"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/artists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/artists.json new file mode 100644 index 000000000..1e9561a81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/artists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/artists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/artists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]?"}],"title":"artists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC7artistsSayACGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/imageurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/imageurl.json new file mode 100644 index 000000000..80399b8c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/imageurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/imageurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/imageURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"imageURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC8imageURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/imageURL":{"role":"symbol","title":"imageURL","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/imageURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/imageurl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/indexnumber.json new file mode 100644 index 000000000..329a947b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/indexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/indexnumberend.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/indexnumberend.json new file mode 100644 index 000000000..5a201dbcc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/indexnumberend.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/indexnumberend"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/indexNumberEnd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumberEnd","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC14indexNumberEnds5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/indexNumberEnd":{"role":"symbol","title":"indexNumberEnd","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/indexNumberEnd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/indexnumberend"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/init(albumartist:artists:imageurl:indexnumber:indexnumberend:name:overview:parentindexnumber:premieredate:productionyear:providerids:searchprovidername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/init(albumartist:artists:imageurl:indexnumber:indexnumberend:name:overview:parentindexnumber:premieredate:productionyear:providerids:searchprovidername:).json new file mode 100644 index 000000000..f84655b41 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/init(albumartist:artists:imageurl:indexnumber:indexnumberend:name:overview:parentindexnumber:premieredate:productionyear:providerids:searchprovidername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC","text":"RemoteSearchResult"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/init(albumartist:artists:imageurl:indexnumber:indexnumberend:name:overview:parentindexnumber:premieredate:productionyear:providerids:searchprovidername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/init(albumArtist:artists:imageURL:indexNumber:indexNumberEnd:name:overview:parentIndexNumber:premiereDate:productionYear:providerIDs:searchProviderName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(albumArtist:artists:imageURL:indexNumber:indexNumberEnd:name:overview:parentIndexNumber:premiereDate:productionYear:providerIDs:searchProviderName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18RemoteSearchResultC11albumArtist7artists8imageURL11indexNumber0kL3End4name8overview011parentIndexL012premiereDate14productionYear11providerIDs18searchProviderNameA2CSg_SayACGSgSSSgs5Int32VSgAv2sV10Foundation0S0VSgAVSDyS2SGSgAStcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/init(albumArtist:artists:imageURL:indexNumber:indexNumberEnd:name:overview:parentIndexNumber:premiereDate:productionYear:providerIDs:searchProviderName:)":{"role":"symbol","title":"init(albumArtist:artists:imageURL:indexNumber:indexNumberEnd:name:overview:parentIndexNumber:premiereDate:productionYear:providerIDs:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RemoteSearchResult","preciseIdentifier":"s:11JellyfinAPI18RemoteSearchResultC"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumberEnd"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/init(albumArtist:artists:imageURL:indexNumber:indexNumberEnd:name:overview:parentIndexNumber:premiereDate:productionYear:providerIDs:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/init(albumartist:artists:imageurl:indexnumber:indexnumberend:name:overview:parentindexnumber:premieredate:productionyear:providerids:searchprovidername:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/init(from:).json new file mode 100644 index 000000000..a7945badc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18RemoteSearchResultC4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/name.json new file mode 100644 index 000000000..486561b9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/overview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/overview.json new file mode 100644 index 000000000..9c31516fc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/overview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/overview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/overview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"overview","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC8overviewSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/parentindexnumber.json new file mode 100644 index 000000000..8043797bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/parentindexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/premieredate.json new file mode 100644 index 000000000..536eb4648 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC12premiereDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/productionyear.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/productionyear.json new file mode 100644 index 000000000..d4ba07e79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/productionyear.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/productionyear"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/productionYear","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"productionYear","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC14productionYears5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/productionYear":{"role":"symbol","title":"productionYear","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/productionYear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/productionyear"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/providerids.json new file mode 100644 index 000000000..47ce43c06 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/providerids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/searchprovidername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/searchprovidername.json new file mode 100644 index 000000000..695bf6588 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesearchresult/searchprovidername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesearchresult\/searchprovidername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/searchProviderName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchProviderName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSearchResultC18searchProviderNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesearchresult\/searchprovidername"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSearchResult":{"role":"symbol","title":"RemoteSearchResult","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSearchResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSearchResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSearchResult"}],"url":"\/documentation\/jellyfinapi\/remotesearchresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo.json new file mode 100644 index 000000000..207d366dd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"title":"RemoteSubtitleInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/init(author:comment:communityRating:dateCreated:downloadCount:format:id:isHashMatch:name:providerName:threeLetterISOLanguageName:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/author","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/comment","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/communityRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/dateCreated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/downloadCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/format","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/id-3i6na","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/isHashMatch","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/providerName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/threeLetterISOLanguageName"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/init(author:comment:communityRating:dateCreated:downloadCount:format:id:isHashMatch:name:providerName:threeLetterISOLanguageName:)":{"role":"symbol","title":"init(author:comment:communityRating:dateCreated:downloadCount:format:id:isHashMatch:name:providerName:threeLetterISOLanguageName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"downloadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHashMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/init(author:comment:communityRating:dateCreated:downloadCount:format:id:isHashMatch:name:providerName:threeLetterISOLanguageName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/init(author:comment:communityrating:datecreated:downloadcount:format:id:ishashmatch:name:providername:threeletterisolanguagename:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/identifiable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/id-3i6na":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/id-3i6na","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/id-3i6na"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/format"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/author":{"role":"symbol","title":"author","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/author","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/author"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/downloadCount":{"role":"symbol","title":"downloadCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/downloadCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/downloadcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/comment":{"role":"symbol","title":"comment","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/comment","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/comment"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/providerName":{"role":"symbol","title":"providerName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/providerName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/providername"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/isHashMatch":{"role":"symbol","title":"isHashMatch","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHashMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/isHashMatch","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/ishashmatch"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/dateCreated":{"role":"symbol","title":"dateCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/datecreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/communityRating":{"role":"symbol","title":"communityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/communityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/communityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/threeLetterISOLanguageName":{"role":"symbol","title":"threeLetterISOLanguageName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/threeLetterISOLanguageName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/threeletterisolanguagename"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/author.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/author.json new file mode 100644 index 000000000..652939a02 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/author.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/author"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/author","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"author","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV6authorSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/author":{"role":"symbol","title":"author","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/author","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/author"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/comment.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/comment.json new file mode 100644 index 000000000..fe3034e70 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/comment.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/comment"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/comment","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"comment","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV7commentSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/comment":{"role":"symbol","title":"comment","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/comment","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/comment"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/communityrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/communityrating.json new file mode 100644 index 000000000..2dc2406e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/communityrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/communityrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/communityRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"communityRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV15communityRatingSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/communityRating":{"role":"symbol","title":"communityRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/communityRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/communityrating"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/datecreated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/datecreated.json new file mode 100644 index 000000000..b6f1f7097 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/datecreated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/datecreated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/dateCreated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"dateCreated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV11dateCreated10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/dateCreated":{"role":"symbol","title":"dateCreated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/dateCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/datecreated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/downloadcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/downloadcount.json new file mode 100644 index 000000000..422b24217 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/downloadcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/downloadcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/downloadCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"downloadCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV13downloadCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/downloadCount":{"role":"symbol","title":"downloadCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/downloadCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/downloadcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/format.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/format.json new file mode 100644 index 000000000..8d426efa8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/format.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/format"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/format","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV6formatSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/format"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/id-3i6na.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/id-3i6na.json new file mode 100644 index 000000000..9c14eb6b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/id-3i6na.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/id-3i6na"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/id-3i6na","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/id-3i6na":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/id-3i6na","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/id-3i6na"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/id-6kz57.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/id-6kz57.json new file mode 100644 index 000000000..bff10e7a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/id-6kz57.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/id-6kz57"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/id-6kz57","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI18RemoteSubtitleInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/id-6kz57":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/id-6kz57","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/id-6kz57"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/identifiable-implementations.json new file mode 100644 index 000000000..844ff3ab4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/id-6kz57"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/id-6kz57":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/id-6kz57","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/id-6kz57"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/init(author:comment:communityrating:datecreated:downloadcount:format:id:ishashmatch:name:providername:threeletterisolanguagename:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/init(author:comment:communityrating:datecreated:downloadcount:format:id:ishashmatch:name:providername:threeletterisolanguagename:).json new file mode 100644 index 000000000..051056a33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/init(author:comment:communityrating:datecreated:downloadcount:format:id:ishashmatch:name:providername:threeletterisolanguagename:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"downloadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isHashMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/init(author:comment:communityrating:datecreated:downloadcount:format:id:ishashmatch:name:providername:threeletterisolanguagename:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/init(author:comment:communityRating:dateCreated:downloadCount:format:id:isHashMatch:name:providerName:threeLetterISOLanguageName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"downloadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHashMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(author:comment:communityRating:dateCreated:downloadCount:format:id:isHashMatch:name:providerName:threeLetterISOLanguageName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV6author7comment15communityRating11dateCreated13downloadCount6format2id11isHashMatch4name12providerName022threeLetterISOLanguageU0ACSSSg_AOSfSg10Foundation4DateVSgs5Int32VSgA2OSbSgA3Otcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/init(author:comment:communityRating:dateCreated:downloadCount:format:id:isHashMatch:name:providerName:threeLetterISOLanguageName:)":{"role":"symbol","title":"init(author:comment:communityRating:dateCreated:downloadCount:format:id:isHashMatch:name:providerName:threeLetterISOLanguageName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"comment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"communityRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dateCreated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"downloadCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHashMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/init(author:comment:communityRating:dateCreated:downloadCount:format:id:isHashMatch:name:providerName:threeLetterISOLanguageName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/init(author:comment:communityrating:datecreated:downloadcount:format:id:ishashmatch:name:providername:threeletterisolanguagename:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/init(from:).json new file mode 100644 index 000000000..e740d8364 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/ishashmatch.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/ishashmatch.json new file mode 100644 index 000000000..d2a467a25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/ishashmatch.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHashMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/ishashmatch"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/isHashMatch","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHashMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isHashMatch","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV11isHashMatchSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/isHashMatch":{"role":"symbol","title":"isHashMatch","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHashMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/isHashMatch","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/ishashmatch"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/name.json new file mode 100644 index 000000000..23ac4aedf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/providername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/providername.json new file mode 100644 index 000000000..659f8b009 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/providername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/providername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/providerName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"providerName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV12providerNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/providerName":{"role":"symbol","title":"providerName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/providerName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/providername"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/threeletterisolanguagename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/threeletterisolanguagename.json new file mode 100644 index 000000000..25ff0ab4f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/remotesubtitleinfo/threeletterisolanguagename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/remotesubtitleinfo\/threeletterisolanguagename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/threeLetterISOLanguageName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"threeLetterISOLanguageName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18RemoteSubtitleInfoV26threeLetterISOLanguageNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo":{"role":"symbol","title":"RemoteSubtitleInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoteSubtitleInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoteSubtitleInfo"}],"url":"\/documentation\/jellyfinapi\/remotesubtitleinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoteSubtitleInfo/threeLetterISOLanguageName":{"role":"symbol","title":"threeLetterISOLanguageName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"threeLetterISOLanguageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoteSubtitleInfo\/threeLetterISOLanguageName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/remotesubtitleinfo\/threeletterisolanguagename"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto.json new file mode 100644 index 000000000..28cee95a7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/removefromplaylistrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class RemoveFromPlaylistRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"title":"RemoveFromPlaylistRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI28RemoveFromPlaylistRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/init(isClearPlayingItem:isClearPlaylist:playlistItemIDs:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/isClearPlayingItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/isClearPlaylist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/playlistItemIDs"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto/init(isClearPlayingItem:isClearPlaylist:playlistItemIDs:)":{"role":"symbol","title":"init(isClearPlayingItem:isClearPlaylist:playlistItemIDs:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isClearPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isClearPlaylist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/init(isClearPlayingItem:isClearPlaylist:playlistItemIDs:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/init(isclearplayingitem:isclearplaylist:playlistitemids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto":{"role":"symbol","title":"RemoveFromPlaylistRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"abstract":[{"type":"text","text":"Class RemoveFromPlaylistRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto/isClearPlayingItem":{"role":"symbol","title":"isClearPlayingItem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isClearPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/isClearPlayingItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/isclearplayingitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto/playlistItemIDs":{"role":"symbol","title":"playlistItemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/playlistItemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/playlistitemids"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto/isClearPlaylist":{"role":"symbol","title":"isClearPlaylist","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isClearPlaylist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the entire playlist should be cleared."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/isClearPlaylist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/isclearplaylist"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/init(from:).json new file mode 100644 index 000000000..f73dc5a72 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI28RemoveFromPlaylistRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto":{"role":"symbol","title":"RemoveFromPlaylistRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"abstract":[{"type":"text","text":"Class RemoveFromPlaylistRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/init(isclearplayingitem:isclearplaylist:playlistitemids:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/init(isclearplayingitem:isclearplaylist:playlistitemids:).json new file mode 100644 index 000000000..d85ba8161 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/init(isclearplayingitem:isclearplaylist:playlistitemids:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isClearPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isClearPlaylist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playlistItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/init(isclearplayingitem:isclearplaylist:playlistitemids:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/init(isClearPlayingItem:isClearPlaylist:playlistItemIDs:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isClearPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isClearPlaylist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?)"}],"title":"init(isClearPlayingItem:isClearPlaylist:playlistItemIDs:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI28RemoveFromPlaylistRequestDtoV18isClearPlayingItem0hiE008playlistK3IDsACSbSg_AGSay10Foundation4UUIDVGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto/init(isClearPlayingItem:isClearPlaylist:playlistItemIDs:)":{"role":"symbol","title":"init(isClearPlayingItem:isClearPlaylist:playlistItemIDs:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isClearPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isClearPlaylist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/init(isClearPlayingItem:isClearPlaylist:playlistItemIDs:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/init(isclearplayingitem:isclearplaylist:playlistitemids:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto":{"role":"symbol","title":"RemoveFromPlaylistRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"abstract":[{"type":"text","text":"Class RemoveFromPlaylistRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/isclearplayingitem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/isclearplayingitem.json new file mode 100644 index 000000000..e9781341e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/isclearplayingitem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isClearPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/isclearplayingitem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/isClearPlayingItem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isClearPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isClearPlayingItem","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI28RemoveFromPlaylistRequestDtoV18isClearPlayingItemSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto/isClearPlayingItem":{"role":"symbol","title":"isClearPlayingItem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isClearPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/isClearPlayingItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/isclearplayingitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto":{"role":"symbol","title":"RemoveFromPlaylistRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"abstract":[{"type":"text","text":"Class RemoveFromPlaylistRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/isclearplaylist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/isclearplaylist.json new file mode 100644 index 000000000..7a62b6303 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/isclearplaylist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isClearPlaylist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/isclearplaylist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/isClearPlaylist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the entire playlist should be cleared."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isClearPlaylist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isClearPlaylist","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI28RemoveFromPlaylistRequestDtoV07isClearE0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto/isClearPlaylist":{"role":"symbol","title":"isClearPlaylist","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isClearPlaylist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the entire playlist should be cleared."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/isClearPlaylist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/isclearplaylist"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto":{"role":"symbol","title":"RemoveFromPlaylistRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"abstract":[{"type":"text","text":"Class RemoveFromPlaylistRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/playlistitemids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/playlistitemids.json new file mode 100644 index 000000000..06e76b4fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/removefromplaylistrequestdto/playlistitemids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/playlistitemids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/playlistItemIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"playlistItemIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI28RemoveFromPlaylistRequestDtoV15playlistItemIDsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto/playlistItemIDs":{"role":"symbol","title":"playlistItemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto\/playlistItemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto\/playlistitemids"},"doc://JellyfinAPI/documentation/JellyfinAPI/RemoveFromPlaylistRequestDto":{"role":"symbol","title":"RemoveFromPlaylistRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"abstract":[{"type":"text","text":"Class RemoveFromPlaylistRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RemoveFromPlaylistRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RemoveFromPlaylistRequestDto"}],"url":"\/documentation\/jellyfinapi\/removefromplaylistrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode.json new file mode 100644 index 000000000..e9aa6283d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"title":"RepeatMode","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI10RepeatModeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatAll","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatNone","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatOne"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/repeatOne":{"role":"symbol","title":"RepeatMode.repeatOne","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatOne"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatOne","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/repeatone"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/repeatAll":{"role":"symbol","title":"RepeatMode.repeatAll","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatAll"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatAll","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/repeatall"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/repeatNone":{"role":"symbol","title":"RepeatMode.repeatNone","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatNone"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatNone","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/repeatnone"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/!=(_:_:).json new file mode 100644 index 000000000..ac8e3855b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI10RepeatModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/encode(to:).json new file mode 100644 index 000000000..2466a9ba6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI10RepeatModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/equatable-implementations.json new file mode 100644 index 000000000..13028f37f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/hash(into:).json new file mode 100644 index 000000000..dc3c3fbc4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI10RepeatModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/hashvalue.json new file mode 100644 index 000000000..00d314674 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI10RepeatModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/init(from:).json new file mode 100644 index 000000000..ce9b527de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI10RepeatModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/init(rawvalue:).json new file mode 100644 index 000000000..d5d9f6435 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10RepeatModeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/rawrepresentable-implementations.json new file mode 100644 index 000000000..bf08ee304 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/repeatall.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/repeatall.json new file mode 100644 index 000000000..165f97ddf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/repeatall.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatAll"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/repeatall"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatAll","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatAll"}],"title":"RepeatMode.repeatAll","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10RepeatModeO9repeatAllyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/repeatAll":{"role":"symbol","title":"RepeatMode.repeatAll","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatAll"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatAll","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/repeatall"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/repeatnone.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/repeatnone.json new file mode 100644 index 000000000..bd1bc2dfe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/repeatnone.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatNone"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/repeatnone"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatNone","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatNone"}],"title":"RepeatMode.repeatNone","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10RepeatModeO10repeatNoneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/repeatNone":{"role":"symbol","title":"RepeatMode.repeatNone","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatNone"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatNone","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/repeatnone"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/repeatone.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/repeatone.json new file mode 100644 index 000000000..2cdaac2b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repeatmode/repeatone.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatOne"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repeatmode\/repeatone"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatOne","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatOne"}],"title":"RepeatMode.repeatOne","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI10RepeatModeO9repeatOneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode/repeatOne":{"role":"symbol","title":"RepeatMode.repeatOne","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"repeatOne"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode\/repeatOne","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repeatmode\/repeatone"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepeatMode":{"role":"symbol","title":"RepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepeatMode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepeatMode"}],"url":"\/documentation\/jellyfinapi\/repeatmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo.json new file mode 100644 index 000000000..c58e7dcee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repositoryinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"title":"RepositoryInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14RepositoryInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/init(isEnabled:name:url:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/isEnabled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/url"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repositoryinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo/init(isEnabled:name:url:)":{"role":"symbol","title":"init(isEnabled:name:url:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/init(isEnabled:name:url:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repositoryinfo\/init(isenabled:name:url:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo/isEnabled":{"role":"symbol","title":"isEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the repository is enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/isEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repositoryinfo\/isenabled"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repositoryinfo\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repositoryinfo\/name"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/init(from:).json new file mode 100644 index 000000000..91f5809ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repositoryinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14RepositoryInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repositoryinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/init(isenabled:name:url:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/init(isenabled:name:url:).json new file mode 100644 index 000000000..7289c73de --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/init(isenabled:name:url:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repositoryinfo\/init(isenabled:name:url:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/init(isEnabled:name:url:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isEnabled:name:url:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14RepositoryInfoV9isEnabled4name3urlACSbSg_SSSgAHtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo/init(isEnabled:name:url:)":{"role":"symbol","title":"init(isEnabled:name:url:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/init(isEnabled:name:url:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repositoryinfo\/init(isenabled:name:url:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/isenabled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/isenabled.json new file mode 100644 index 000000000..8e4693faf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/isenabled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repositoryinfo\/isenabled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/isEnabled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the repository is enabled."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isEnabled","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14RepositoryInfoV9isEnabledSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo/isEnabled":{"role":"symbol","title":"isEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the repository is enabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/isEnabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repositoryinfo\/isenabled"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/name.json new file mode 100644 index 000000000..5edf0e589 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repositoryinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14RepositoryInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repositoryinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/url.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/url.json new file mode 100644 index 000000000..e5d268f4c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/repositoryinfo/url.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/repositoryinfo\/url"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/url","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"url","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14RepositoryInfoV3urlSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/repositoryinfo\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile.json new file mode 100644 index 000000000..08940eddb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/responseprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"title":"ResponseProfile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15ResponseProfileV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/init(audioCodec:conditions:container:mimeType:orgPn:type:videoCodec:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/conditions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/mimeType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/orgPn","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/videoCodec"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/orgPn":{"role":"symbol","title":"orgPn","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"orgPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/orgPn","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/orgpn"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/init(audioCodec:conditions:container:mimeType:orgPn:type:videoCodec:)":{"role":"symbol","title":"init(audioCodec:conditions:container:mimeType:orgPn:type:videoCodec:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"orgPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/init(audioCodec:conditions:container:mimeType:orgPn:type:videoCodec:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/init(audiocodec:conditions:container:mimetype:orgpn:type:videocodec:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/mimeType":{"role":"symbol","title":"mimeType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/mimeType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/mimetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/type"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/conditions":{"role":"symbol","title":"conditions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/conditions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/conditions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/audiocodec.json new file mode 100644 index 000000000..7840757b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/responseprofile\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ResponseProfileV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/conditions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/conditions.json new file mode 100644 index 000000000..6478e0cbb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/conditions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV","text":"ProfileCondition"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/responseprofile\/conditions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/conditions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"title":"conditions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ResponseProfileV10conditionsSayAA0D9ConditionVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/conditions":{"role":"symbol","title":"conditions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/conditions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/conditions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/container.json new file mode 100644 index 000000000..7d2f23337 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/responseprofile\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ResponseProfileV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/container"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/init(audiocodec:conditions:container:mimetype:orgpn:type:videocodec:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/init(audiocodec:conditions:container:mimetype:orgpn:type:videocodec:).json new file mode 100644 index 000000000..e42787f81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/init(audiocodec:conditions:container:mimetype:orgpn:type:videocodec:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV","text":"ProfileCondition"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"orgPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO","text":"DlnaProfileType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/responseprofile\/init(audiocodec:conditions:container:mimetype:orgpn:type:videocodec:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/init(audioCodec:conditions:container:mimeType:orgPn:type:videoCodec:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"orgPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(audioCodec:conditions:container:mimeType:orgPn:type:videoCodec:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ResponseProfileV10audioCodec10conditions9container8mimeType5orgPn4type05videoF0ACSSSg_SayAA0D9ConditionVGSgA3kA04DlnadJ0OSgAKtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/init(audioCodec:conditions:container:mimeType:orgPn:type:videoCodec:)":{"role":"symbol","title":"init(audioCodec:conditions:container:mimeType:orgPn:type:videoCodec:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"orgPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/init(audioCodec:conditions:container:mimeType:orgPn:type:videoCodec:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/init(audiocodec:conditions:container:mimetype:orgpn:type:videocodec:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/init(from:).json new file mode 100644 index 000000000..e57865ade --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/responseprofile\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ResponseProfileV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/mimetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/mimetype.json new file mode 100644 index 000000000..ca9f65250 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/mimetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/responseprofile\/mimetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/mimeType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mimeType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ResponseProfileV8mimeTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/mimeType":{"role":"symbol","title":"mimeType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mimeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/mimeType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/mimetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/orgpn.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/orgpn.json new file mode 100644 index 000000000..ec6f5e67f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/orgpn.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"orgPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/responseprofile\/orgpn"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/orgPn","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"orgPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"orgPn","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ResponseProfileV5orgPnSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/orgPn":{"role":"symbol","title":"orgPn","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"orgPn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/orgPn","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/orgpn"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/type.json new file mode 100644 index 000000000..41601adcd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO","text":"DlnaProfileType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/responseprofile\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ResponseProfileV4typeAA04DlnaD4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/type"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/videocodec.json new file mode 100644 index 000000000..b7b48d07b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/responseprofile/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/responseprofile\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ResponseProfileV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile":{"role":"symbol","title":"ResponseProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ResponseProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ResponseProfile"}],"url":"\/documentation\/jellyfinapi\/responseprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ResponseProfile/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ResponseProfile\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/responseprofile\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection.json new file mode 100644 index 000000000..cca7affb7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"title":"ScrollDirection","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15ScrollDirectionO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/horizontal","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/vertical"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/horizontal":{"role":"symbol","title":"ScrollDirection.horizontal","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"horizontal"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/horizontal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/horizontal"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/init(rawvalue:)"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/vertical":{"role":"symbol","title":"ScrollDirection.vertical","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"vertical"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/vertical","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/vertical"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/!=(_:_:).json new file mode 100644 index 000000000..ea9d05715 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15ScrollDirectionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/encode(to:).json new file mode 100644 index 000000000..71d7e7739 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15ScrollDirectionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/equatable-implementations.json new file mode 100644 index 000000000..d96351ef6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/hash(into:).json new file mode 100644 index 000000000..9ec58aa46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15ScrollDirectionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/hashvalue.json new file mode 100644 index 000000000..63e2adee2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15ScrollDirectionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/horizontal.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/horizontal.json new file mode 100644 index 000000000..ae03b8fe8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/horizontal.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"horizontal"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection\/horizontal"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/horizontal","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"horizontal"}],"title":"ScrollDirection.horizontal","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15ScrollDirectionO10horizontalyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/horizontal":{"role":"symbol","title":"ScrollDirection.horizontal","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"horizontal"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/horizontal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/horizontal"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/init(from:).json new file mode 100644 index 000000000..1d8720e7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15ScrollDirectionO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/init(rawvalue:).json new file mode 100644 index 000000000..38da861c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ScrollDirectionO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/rawrepresentable-implementations.json new file mode 100644 index 000000000..482f18854 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/vertical.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/vertical.json new file mode 100644 index 000000000..57aa4d8d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/scrolldirection/vertical.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"vertical"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/scrolldirection\/vertical"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/vertical","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"vertical"}],"title":"ScrollDirection.vertical","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15ScrollDirectionO8verticalyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection/vertical":{"role":"symbol","title":"ScrollDirection.vertical","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"vertical"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection\/vertical","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/scrolldirection\/vertical"},"doc://JellyfinAPI/documentation/JellyfinAPI/ScrollDirection":{"role":"symbol","title":"ScrollDirection","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScrollDirection"}],"abstract":[{"type":"text","text":"An enum representing the axis that should be scrolled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ScrollDirection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScrollDirection"}],"url":"\/documentation\/jellyfinapi\/scrolldirection"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint.json new file mode 100644 index 000000000..801ec90b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SearchHintResult."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"title":"SearchHint","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10SearchHintV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SearchHint"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/init(album:albumArtist:albumID:artists:backdropImageItemID:backdropImageTag:channelID:channelName:endDate:episodeCount:id:indexNumber:isFolder:itemID:matchedTerm:mediaType:name:parentIndexNumber:primaryImageAspectRatio:primaryImageTag:productionYear:runTimeTicks:series:songCount:startDate:status:thumbImageItemID:thumbImageTag:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/album","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/albumArtist","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/albumID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/artists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/backdropImageItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/backdropImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/channelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/channelName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/endDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/episodeCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/id-8cctt","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/isFolder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/matchedTerm","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/mediaType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/primaryImageAspectRatio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/primaryImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/productionYear","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/runTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/series","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/songCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/startDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/status","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/thumbImageItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/thumbImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/type"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/runTimeTicks":{"role":"symbol","title":"runTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the run time ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/runTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/runtimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/init(album:albumArtist:albumID:artists:backdropImageItemID:backdropImageTag:channelID:channelName:endDate:episodeCount:id:indexNumber:isFolder:itemID:matchedTerm:mediaType:name:parentIndexNumber:primaryImageAspectRatio:primaryImageTag:productionYear:runTimeTicks:series:songCount:startDate:status:thumbImageItemID:thumbImageTag:type:)":{"role":"symbol","title":"init(album:albumArtist:albumID:artists:backdropImageItemID:backdropImageTag:channelID:channelName:endDate:episodeCount:id:indexNumber:isFolder:itemID:matchedTerm:mediaType:name:parentIndexNumber:primaryImageAspectRatio:primaryImageTag:productionYear:runTimeTicks:series:songCount:startDate:status:thumbImageItemID:thumbImageTag:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"backdropImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backdropImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"matchedTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"series"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"thumbImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"thumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/init(album:albumArtist:albumID:artists:backdropImageItemID:backdropImageTag:channelID:channelName:endDate:episodeCount:id:indexNumber:isFolder:itemID:matchedTerm:mediaType:name:parentIndexNumber:primaryImageAspectRatio:primaryImageTag:productionYear:runTimeTicks:series:songCount:startDate:status:thumbImageItemID:thumbImageTag:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/init(album:albumartist:albumid:artists:backdropimageitemid:backdropimagetag:channelid:channelname:enddate:episodecount:id:indexnumber:isfolder:itemid:matchedterm:mediatype:name:parentindexnumber:primaryimageaspectratio:primaryimagetag:produ-20l5h"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/backdropImageTag":{"role":"symbol","title":"backdropImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the backdrop image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/backdropImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/backdropimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/episodeCount":{"role":"symbol","title":"episodeCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the episode count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/episodeCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/episodecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/thumbImageTag":{"role":"symbol","title":"thumbImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the thumb image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/thumbImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/thumbimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/series":{"role":"symbol","title":"series","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/series","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/series"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the artists."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/album":{"role":"symbol","title":"album","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/album","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/album"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/songCount":{"role":"symbol","title":"songCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the song count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/songCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/songcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/mediaType":{"role":"symbol","title":"mediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the media."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/mediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/mediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent index number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/primaryImageTag":{"role":"symbol","title":"primaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/primaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/primaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/matchedTerm":{"role":"symbol","title":"matchedTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"matchedTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the matched term."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/matchedTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/matchedterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/albumArtist":{"role":"symbol","title":"albumArtist","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album artist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/albumArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/albumartist"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/startDate":{"role":"symbol","title":"startDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/startDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/startdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/backdropImageItemID":{"role":"symbol","title":"backdropImageItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the backdrop image item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/backdropImageItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/backdropimageitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/channelName":{"role":"symbol","title":"channelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the channel."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/channelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/channelname"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/albumID":{"role":"symbol","title":"albumID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/albumID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/albumid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/id-8cctt":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/id-8cctt","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/id-8cctt"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/type"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/thumbImageItemID":{"role":"symbol","title":"thumbImageItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the thumb image item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/thumbImageItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/thumbimageitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/indexnumber"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/primaryImageAspectRatio":{"role":"symbol","title":"primaryImageAspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image aspect ratio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/primaryImageAspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/primaryimageaspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/isFolder":{"role":"symbol","title":"isFolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/isFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/isfolder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/productionYear":{"role":"symbol","title":"productionYear","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the production year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/productionYear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/productionyear"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/endDate":{"role":"symbol","title":"endDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/endDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/enddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/album.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/album.json new file mode 100644 index 000000000..467033d54 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/album.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/album"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/album","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the album."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"album","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV5albumSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/album":{"role":"symbol","title":"album","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/album","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/album"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/albumartist.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/albumartist.json new file mode 100644 index 000000000..950f88c8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/albumartist.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/albumartist"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/albumArtist","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the album artist."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"albumArtist","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV11albumArtistSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/albumArtist":{"role":"symbol","title":"albumArtist","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the album artist."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/albumArtist","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/albumartist"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/albumid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/albumid.json new file mode 100644 index 000000000..6ce785aa5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/albumid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/albumid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/albumID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"albumID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV7albumID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/albumID":{"role":"symbol","title":"albumID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/albumID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/albumid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/artists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/artists.json new file mode 100644 index 000000000..8f283d75d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/artists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/artists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/artists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the artists."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"artists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV7artistsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the artists."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/backdropimageitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/backdropimageitemid.json new file mode 100644 index 000000000..383dff141 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/backdropimageitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/backdropimageitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/backdropImageItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the backdrop image item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backdropImageItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV19backdropImageItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/backdropImageItemID":{"role":"symbol","title":"backdropImageItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the backdrop image item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/backdropImageItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/backdropimageitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/backdropimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/backdropimagetag.json new file mode 100644 index 000000000..5ff64b80e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/backdropimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/backdropimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/backdropImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the backdrop image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"backdropImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV16backdropImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/backdropImageTag":{"role":"symbol","title":"backdropImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"backdropImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the backdrop image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/backdropImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/backdropimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/channelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/channelid.json new file mode 100644 index 000000000..4d935600b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/channelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/channelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/channelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the channel identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"channelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV9channelID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/channelname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/channelname.json new file mode 100644 index 000000000..bf47751d0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/channelname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/channelname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/channelName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the channel."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV11channelNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/channelName":{"role":"symbol","title":"channelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the channel."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/channelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/channelname"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/enddate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/enddate.json new file mode 100644 index 000000000..abe298b6c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/enddate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/enddate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/endDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"endDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV7endDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/endDate":{"role":"symbol","title":"endDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/endDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/enddate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/episodecount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/episodecount.json new file mode 100644 index 000000000..4bb0e022a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/episodecount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/episodecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/episodeCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the episode count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"episodeCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV12episodeCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/episodeCount":{"role":"symbol","title":"episodeCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the episode count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/episodeCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/episodecount"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/id-1mm9w.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/id-1mm9w.json new file mode 100644 index 000000000..dee683803 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/id-1mm9w.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/id-1mm9w"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/id-1mm9w","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI10SearchHintV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/id-1mm9w":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/id-1mm9w","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/id-1mm9w"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/id-8cctt.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/id-8cctt.json new file mode 100644 index 000000000..63fa3bf4f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/id-8cctt.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/id-8cctt"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/id-8cctt","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/id-8cctt":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/id-8cctt","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/id-8cctt"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/identifiable-implementations.json new file mode 100644 index 000000000..09fe640b6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/id-1mm9w"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/id-1mm9w":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/id-1mm9w","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/id-1mm9w"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/indexnumber.json new file mode 100644 index 000000000..6326a751a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index number."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/init(album:albumartist:albumid:artists:backdropimageitemid:backdropimagetag:channelid:channelname:enddate:episodecount:id:indexnumber:isfolder:itemid:matchedterm:mediatype:name:parentindexnumber:primaryimageaspectratio:primaryimagetag:produ-20l5h.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/init(album:albumartist:albumid:artists:backdropimageitemid:backdropimagetag:channelid:channelname:enddate:episodecount:id:indexnumber:isfolder:itemid:matchedterm:mediatype:name:parentindexnumber:primaryimageaspectratio:primaryimagetag:produ-20l5h.json new file mode 100644 index 000000000..d9fb71da0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/init(album:albumartist:albumid:artists:backdropimageitemid:backdropimagetag:channelid:channelname:enddate:episodecount:id:indexnumber:isfolder:itemid:matchedterm:mediatype:name:parentindexnumber:primaryimageaspectratio:primaryimagetag:produ-20l5h.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"backdropImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"backdropImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"matchedTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"series"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"thumbImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"thumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/init(album:albumartist:albumid:artists:backdropimageitemid:backdropimagetag:channelid:channelname:enddate:episodecount:id:indexnumber:isfolder:itemid:matchedterm:mediatype:name:parentindexnumber:primaryimageaspectratio:primaryimagetag:produ-20l5h"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/init(album:albumArtist:albumID:artists:backdropImageItemID:backdropImageTag:channelID:channelName:endDate:episodeCount:id:indexNumber:isFolder:itemID:matchedTerm:mediaType:name:parentIndexNumber:primaryImageAspectRatio:primaryImageTag:productionYear:runTimeTicks:series:songCount:startDate:status:thumbImageItemID:thumbImageTag:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"backdropImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backdropImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"matchedTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"series"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"thumbImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"thumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(album:albumArtist:albumID:artists:backdropImageItemID:backdropImageTag:channelID:channelName:endDate:episodeCount:id:indexNumber:isFolder:itemID:matchedTerm:mediaType:name:parentIndexNumber:primaryImageAspectRatio:primaryImageTag:productionYear:runTimeTicks:series:songCount:startDate:status:thumbImageItemID:thumbImageTag:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10SearchHintV5album0E6Artist0E2ID7artists017backdropImageItemG00iJ3Tag07channelG00M4Name7endDate12episodeCount2id11indexNumber8isFolder04itemG011matchedTerm9mediaType4name011parentIndexU007primaryJ11AspectRatio07primaryjL014productionYear12runTimeTicks6series04songR005startP06status05thumbjkG005thumbjL04typeACSSSg_A5_10Foundation4UUIDVSgSaySSGSgA5_A5_A9_A5_A6_0P0VSgs5Int32VSgA9_A17_SbSgA9_A5_A5_A5_A17_SdSgA5_A17_s5Int64VSgA5_A17_A14_A5_A5_A5_A5_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/init(album:albumArtist:albumID:artists:backdropImageItemID:backdropImageTag:channelID:channelName:endDate:episodeCount:id:indexNumber:isFolder:itemID:matchedTerm:mediaType:name:parentIndexNumber:primaryImageAspectRatio:primaryImageTag:productionYear:runTimeTicks:series:songCount:startDate:status:thumbImageItemID:thumbImageTag:type:)":{"role":"symbol","title":"init(album:albumArtist:albumID:artists:backdropImageItemID:backdropImageTag:channelID:channelName:endDate:episodeCount:id:indexNumber:isFolder:itemID:matchedTerm:mediaType:name:parentIndexNumber:primaryImageAspectRatio:primaryImageTag:productionYear:runTimeTicks:series:songCount:startDate:status:thumbImageItemID:thumbImageTag:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtist"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"backdropImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"backdropImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"episodeCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"matchedTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"series"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"thumbImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"thumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/init(album:albumArtist:albumID:artists:backdropImageItemID:backdropImageTag:channelID:channelName:endDate:episodeCount:id:indexNumber:isFolder:itemID:matchedTerm:mediaType:name:parentIndexNumber:primaryImageAspectRatio:primaryImageTag:productionYear:runTimeTicks:series:songCount:startDate:status:thumbImageItemID:thumbImageTag:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/init(album:albumartist:albumid:artists:backdropimageitemid:backdropimagetag:channelid:channelname:enddate:episodecount:id:indexnumber:isfolder:itemid:matchedterm:mediatype:name:parentindexnumber:primaryimageaspectratio:primaryimagetag:produ-20l5h"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/init(from:).json new file mode 100644 index 000000000..e4fd6bee7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10SearchHintV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/isfolder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/isfolder.json new file mode 100644 index 000000000..eb31fb9ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/isfolder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/isfolder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/isFolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFolder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV8isFolderSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/isFolder":{"role":"symbol","title":"isFolder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/isFolder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/isfolder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/itemid.json new file mode 100644 index 000000000..0b7ce2303 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/matchedterm.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/matchedterm.json new file mode 100644 index 000000000..b802602ab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/matchedterm.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"matchedTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/matchedterm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/matchedTerm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the matched term."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"matchedTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"matchedTerm","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV11matchedTermSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/matchedTerm":{"role":"symbol","title":"matchedTerm","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"matchedTerm"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the matched term."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/matchedTerm","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/matchedterm"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/mediatype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/mediatype.json new file mode 100644 index 000000000..1a5c531d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/mediatype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/mediatype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/mediaType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the media."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"mediaType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV9mediaTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/mediaType":{"role":"symbol","title":"mediaType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the media."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/mediaType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/mediatype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/name.json new file mode 100644 index 000000000..ead01cc2a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/parentindexnumber.json new file mode 100644 index 000000000..665478dbd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent index number."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent index number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/parentindexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/primaryimageaspectratio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/primaryimageaspectratio.json new file mode 100644 index 000000000..b480fb96f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/primaryimageaspectratio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/primaryimageaspectratio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/primaryImageAspectRatio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the primary image aspect ratio."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"primaryImageAspectRatio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV23primaryImageAspectRatioSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/primaryImageAspectRatio":{"role":"symbol","title":"primaryImageAspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image aspect ratio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/primaryImageAspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/primaryimageaspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/primaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/primaryimagetag.json new file mode 100644 index 000000000..fb07d7f27 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/primaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/primaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/primaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"primaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV15primaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/primaryImageTag":{"role":"symbol","title":"primaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/primaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/primaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/productionyear.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/productionyear.json new file mode 100644 index 000000000..9d5bab59c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/productionyear.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/productionyear"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/productionYear","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the production year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"productionYear","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV14productionYears5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/productionYear":{"role":"symbol","title":"productionYear","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productionYear"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the production year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/productionYear","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/productionyear"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/runtimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/runtimeticks.json new file mode 100644 index 000000000..d269be941 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/runtimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/runtimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/runTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the run time ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"runTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV12runTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/runTimeTicks":{"role":"symbol","title":"runTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the run time ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/runTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/runtimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/series.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/series.json new file mode 100644 index 000000000..9c69626f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/series.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/series"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/series","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the series."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"series","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV6seriesSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/series":{"role":"symbol","title":"series","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/series","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/series"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/songcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/songcount.json new file mode 100644 index 000000000..95caf3b73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/songcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/songcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/songCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the song count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"songCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV9songCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/songCount":{"role":"symbol","title":"songCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"songCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the song count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/songCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/songcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/startdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/startdate.json new file mode 100644 index 000000000..a74878ffc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/startdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/startdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/startDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"startDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV9startDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/startDate":{"role":"symbol","title":"startDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/startDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/startdate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/status.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/status.json new file mode 100644 index 000000000..0adcbb812 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/status.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/status"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/status","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"status","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV6statusSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/thumbimageitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/thumbimageitemid.json new file mode 100644 index 000000000..964e6869f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/thumbimageitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/thumbimageitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/thumbImageItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the thumb image item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"thumbImageItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV16thumbImageItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/thumbImageItemID":{"role":"symbol","title":"thumbImageItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the thumb image item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/thumbImageItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/thumbimageitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/thumbimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/thumbimagetag.json new file mode 100644 index 000000000..a122a5712 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/thumbimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/thumbimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/thumbImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the thumb image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"thumbImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV13thumbImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/thumbImageTag":{"role":"symbol","title":"thumbImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"thumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the thumb image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/thumbImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/thumbimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/type.json new file mode 100644 index 000000000..630016a5a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhint/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhint\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SearchHintV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhint\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult.json new file mode 100644 index 000000000..328379bf0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHintResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhintresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SearchHintResult."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHintResult"}],"title":"SearchHintResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16SearchHintResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SearchHintResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/init(searchHints:totalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/searchHints","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/totalRecordCount"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult/searchHints":{"role":"symbol","title":"searchHints","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchHints"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SearchHint","preciseIdentifier":"s:11JellyfinAPI10SearchHintV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets the search hints."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/searchHints","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhintresult\/searchhints"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult/init(searchHints:totalRecordCount:)":{"role":"symbol","title":"init(searchHints:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"searchHints"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SearchHint","preciseIdentifier":"s:11JellyfinAPI10SearchHintV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/init(searchHints:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhintresult\/init(searchhints:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the total record count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhintresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhintresult\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult":{"role":"symbol","title":"SearchHintResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHintResult"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHintResult"}],"url":"\/documentation\/jellyfinapi\/searchhintresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/init(from:).json new file mode 100644 index 000000000..d74bd0ac2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhintresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16SearchHintResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult":{"role":"symbol","title":"SearchHintResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHintResult"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHintResult"}],"url":"\/documentation\/jellyfinapi\/searchhintresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhintresult\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/init(searchhints:totalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/init(searchhints:totalrecordcount:).json new file mode 100644 index 000000000..cef49edc9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/init(searchhints:totalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"searchHints"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","preciseIdentifier":"s:11JellyfinAPI10SearchHintV","text":"SearchHint"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhintresult\/init(searchhints:totalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/init(searchHints:totalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"searchHints"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SearchHint","preciseIdentifier":"s:11JellyfinAPI10SearchHintV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(searchHints:totalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16SearchHintResultV11searchHints16totalRecordCountACSayAA0cD0VGSg_s5Int32VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult/init(searchHints:totalRecordCount:)":{"role":"symbol","title":"init(searchHints:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"searchHints"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SearchHint","preciseIdentifier":"s:11JellyfinAPI10SearchHintV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/init(searchHints:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhintresult\/init(searchhints:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult":{"role":"symbol","title":"SearchHintResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHintResult"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHintResult"}],"url":"\/documentation\/jellyfinapi\/searchhintresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/searchhints.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/searchhints.json new file mode 100644 index 000000000..5b9d6f762 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/searchhints.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchHints"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","preciseIdentifier":"s:11JellyfinAPI10SearchHintV","text":"SearchHint"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhintresult\/searchhints"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/searchHints","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the search hints."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchHints"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SearchHint","preciseIdentifier":"s:11JellyfinAPI10SearchHintV"},{"kind":"text","text":"]?"}],"title":"searchHints","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16SearchHintResultV11searchHintsSayAA0cD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult/searchHints":{"role":"symbol","title":"searchHints","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchHints"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SearchHint","preciseIdentifier":"s:11JellyfinAPI10SearchHintV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets the search hints."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/searchHints","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhintresult\/searchhints"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHint":{"role":"symbol","title":"SearchHint","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHint"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHint","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHint"}],"url":"\/documentation\/jellyfinapi\/searchhint"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult":{"role":"symbol","title":"SearchHintResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHintResult"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHintResult"}],"url":"\/documentation\/jellyfinapi\/searchhintresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/totalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/totalrecordcount.json new file mode 100644 index 000000000..017049521 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/searchhintresult/totalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/searchhintresult\/totalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/totalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the total record count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"totalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16SearchHintResultV16totalRecordCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the total record count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/searchhintresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/SearchHintResult":{"role":"symbol","title":"SearchHintResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SearchHintResult"}],"abstract":[{"type":"text","text":"Class SearchHintResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SearchHintResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SearchHintResult"}],"url":"\/documentation\/jellyfinapi\/searchhintresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto.json new file mode 100644 index 000000000..9d50846c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeekRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seekrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SeekRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeekRequestDto"}],"title":"SeekRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14SeekRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SeekRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/init(positionTicks:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/positionTicks"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seekrequestdto\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto/init(positionTicks:)":{"role":"symbol","title":"init(positionTicks:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/init(positionTicks:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seekrequestdto\/init(positionticks:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seekrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto":{"role":"symbol","title":"SeekRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeekRequestDto"}],"abstract":[{"type":"text","text":"Class SeekRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeekRequestDto"}],"url":"\/documentation\/jellyfinapi\/seekrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto/init(from:).json new file mode 100644 index 000000000..285f7307b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seekrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14SeekRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seekrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto":{"role":"symbol","title":"SeekRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeekRequestDto"}],"abstract":[{"type":"text","text":"Class SeekRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeekRequestDto"}],"url":"\/documentation\/jellyfinapi\/seekrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto/init(positionticks:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto/init(positionticks:).json new file mode 100644 index 000000000..cd711176f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto/init(positionticks:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seekrequestdto\/init(positionticks:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/init(positionTicks:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"title":"init(positionTicks:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14SeekRequestDtoV13positionTicksACs5Int64VSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto":{"role":"symbol","title":"SeekRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeekRequestDto"}],"abstract":[{"type":"text","text":"Class SeekRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeekRequestDto"}],"url":"\/documentation\/jellyfinapi\/seekrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto/init(positionTicks:)":{"role":"symbol","title":"init(positionTicks:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/init(positionTicks:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seekrequestdto\/init(positionticks:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto/positionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto/positionticks.json new file mode 100644 index 000000000..0dd8bb604 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seekrequestdto/positionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seekrequestdto\/positionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/positionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"positionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14SeekRequestDtoV13positionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto":{"role":"symbol","title":"SeekRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeekRequestDto"}],"abstract":[{"type":"text","text":"Class SeekRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeekRequestDto"}],"url":"\/documentation\/jellyfinapi\/seekrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeekRequestDto/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeekRequestDto\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seekrequestdto\/positionticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand.json new file mode 100644 index 000000000..d480cd1df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommand"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SendCommand."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"title":"SendCommand","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11SendCommandV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SendCommand"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/init(command:emittedAt:groupID:playlistItemID:positionTicks:when:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/command","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/emittedAt","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/groupID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/playlistItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/positionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/when"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the playlist identifier of the playing item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/init(command:emittedAt:groupID:playlistItemID:positionTicks:when:)":{"role":"symbol","title":"init(command:emittedAt:groupID:playlistItemID:positionTicks:when:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendCommandType","preciseIdentifier":"s:11JellyfinAPI15SendCommandTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"emittedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/init(command:emittedAt:groupID:playlistItemID:positionTicks:when:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/init(command:emittedat:groupid:playlistitemid:positionticks:when:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/command":{"role":"symbol","title":"command","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendCommandType","preciseIdentifier":"s:11JellyfinAPI15SendCommandTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the command."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/command","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/command"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/emittedAt":{"role":"symbol","title":"emittedAt","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"emittedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the UTC time when this command has been emitted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/emittedAt","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/emittedat"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand":{"role":"symbol","title":"SendCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"abstract":[{"type":"text","text":"Class SendCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommand"}],"url":"\/documentation\/jellyfinapi\/sendcommand"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/groupID":{"role":"symbol","title":"groupID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the group identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/groupID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/groupid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/when":{"role":"symbol","title":"when","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the UTC time when to execute the command."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/when","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/when"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/command.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/command.json new file mode 100644 index 000000000..2370be91d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/command.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","preciseIdentifier":"s:11JellyfinAPI15SendCommandTypeO","text":"SendCommandType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommand\/command"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/command","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the command."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendCommandType","preciseIdentifier":"s:11JellyfinAPI15SendCommandTypeO"},{"kind":"text","text":"?"}],"title":"command","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SendCommandV7commandAA0cD4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand":{"role":"symbol","title":"SendCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"abstract":[{"type":"text","text":"Class SendCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommand"}],"url":"\/documentation\/jellyfinapi\/sendcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/command":{"role":"symbol","title":"command","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendCommandType","preciseIdentifier":"s:11JellyfinAPI15SendCommandTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the command."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/command","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/command"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/emittedat.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/emittedat.json new file mode 100644 index 000000000..9248254e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/emittedat.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"emittedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommand\/emittedat"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/emittedAt","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the UTC time when this command has been emitted."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"emittedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"emittedAt","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SendCommandV9emittedAt10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/emittedAt":{"role":"symbol","title":"emittedAt","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"emittedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the UTC time when this command has been emitted."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/emittedAt","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/emittedat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand":{"role":"symbol","title":"SendCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"abstract":[{"type":"text","text":"Class SendCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommand"}],"url":"\/documentation\/jellyfinapi\/sendcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/groupid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/groupid.json new file mode 100644 index 000000000..0b93c398f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/groupid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommand\/groupid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/groupID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the group identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"groupID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SendCommandV7groupID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand":{"role":"symbol","title":"SendCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"abstract":[{"type":"text","text":"Class SendCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommand"}],"url":"\/documentation\/jellyfinapi\/sendcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/groupID":{"role":"symbol","title":"groupID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the group identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/groupID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/groupid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/init(command:emittedat:groupid:playlistitemid:positionticks:when:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/init(command:emittedat:groupid:playlistitemid:positionticks:when:).json new file mode 100644 index 000000000..4d094609d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/init(command:emittedat:groupid:playlistitemid:positionticks:when:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","preciseIdentifier":"s:11JellyfinAPI15SendCommandTypeO","text":"SendCommandType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"emittedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommand\/init(command:emittedat:groupid:playlistitemid:positionticks:when:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/init(command:emittedAt:groupID:playlistItemID:positionTicks:when:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendCommandType","preciseIdentifier":"s:11JellyfinAPI15SendCommandTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"emittedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"title":"init(command:emittedAt:groupID:playlistItemID:positionTicks:when:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11SendCommandV7command9emittedAt7groupID012playlistItemI013positionTicks4whenAcA0cD4TypeOSg_10Foundation4DateVSgAM4UUIDVSgASs5Int64VSgAPtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/init(command:emittedAt:groupID:playlistItemID:positionTicks:when:)":{"role":"symbol","title":"init(command:emittedAt:groupID:playlistItemID:positionTicks:when:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SendCommandType","preciseIdentifier":"s:11JellyfinAPI15SendCommandTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"emittedAt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/init(command:emittedAt:groupID:playlistItemID:positionTicks:when:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/init(command:emittedat:groupid:playlistitemid:positionticks:when:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand":{"role":"symbol","title":"SendCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"abstract":[{"type":"text","text":"Class SendCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommand"}],"url":"\/documentation\/jellyfinapi\/sendcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/init(from:).json new file mode 100644 index 000000000..ca0ca5fb8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommand\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11SendCommandV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand":{"role":"symbol","title":"SendCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"abstract":[{"type":"text","text":"Class SendCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommand"}],"url":"\/documentation\/jellyfinapi\/sendcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/playlistitemid.json new file mode 100644 index 000000000..06faecb91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommand\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the playlist identifier of the playing item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SendCommandV14playlistItemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the playlist identifier of the playing item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand":{"role":"symbol","title":"SendCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"abstract":[{"type":"text","text":"Class SendCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommand"}],"url":"\/documentation\/jellyfinapi\/sendcommand"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/positionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/positionticks.json new file mode 100644 index 000000000..77818a962 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/positionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommand\/positionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/positionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"positionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SendCommandV13positionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand":{"role":"symbol","title":"SendCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"abstract":[{"type":"text","text":"Class SendCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommand"}],"url":"\/documentation\/jellyfinapi\/sendcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/positionTicks":{"role":"symbol","title":"positionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"positionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/positionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/positionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/when.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/when.json new file mode 100644 index 000000000..50ce3f973 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommand/when.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommand\/when"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/when","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the UTC time when to execute the command."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"when","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SendCommandV4when10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand":{"role":"symbol","title":"SendCommand","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommand"}],"abstract":[{"type":"text","text":"Class SendCommand."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommand"}],"url":"\/documentation\/jellyfinapi\/sendcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommand/when":{"role":"symbol","title":"when","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"when"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the UTC time when to execute the command."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommand\/when","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommand\/when"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype.json new file mode 100644 index 000000000..108a4ae55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum SendCommandType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"title":"SendCommandType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15SendCommandTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/pause","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/seek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/stop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/unpause"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/unpause":{"role":"symbol","title":"SendCommandType.unpause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpause"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/unpause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/unpause"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/equatable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/seek":{"role":"symbol","title":"SendCommandType.seek","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/seek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/seek"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/pause":{"role":"symbol","title":"SendCommandType.pause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/pause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/pause"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/stop":{"role":"symbol","title":"SendCommandType.stop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/stop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/stop"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/!=(_:_:).json new file mode 100644 index 000000000..65026b5a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15SendCommandTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/encode(to:).json new file mode 100644 index 000000000..78f4f4ca2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15SendCommandTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/equatable-implementations.json new file mode 100644 index 000000000..e0310c0ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/hash(into:).json new file mode 100644 index 000000000..850d2bb84 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15SendCommandTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/hashvalue.json new file mode 100644 index 000000000..0610aa471 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15SendCommandTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/init(from:).json new file mode 100644 index 000000000..1f30c4e39 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15SendCommandTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/init(rawvalue:).json new file mode 100644 index 000000000..0f7c1ff85 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15SendCommandTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/pause.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/pause.json new file mode 100644 index 000000000..549a83a91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/pause.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/pause"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/pause","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"}],"title":"SendCommandType.pause","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15SendCommandTypeO5pauseyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/pause":{"role":"symbol","title":"SendCommandType.pause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/pause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/pause"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/rawrepresentable-implementations.json new file mode 100644 index 000000000..6515931e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/seek.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/seek.json new file mode 100644 index 000000000..c5c229ed9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/seek.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/seek"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/seek","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"}],"title":"SendCommandType.seek","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15SendCommandTypeO4seekyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/seek":{"role":"symbol","title":"SendCommandType.seek","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/seek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/seek"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/stop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/stop.json new file mode 100644 index 000000000..26a5331fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/stop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/stop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/stop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"}],"title":"SendCommandType.stop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15SendCommandTypeO4stopyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/stop":{"role":"symbol","title":"SendCommandType.stop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/stop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/stop"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/unpause.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/unpause.json new file mode 100644 index 000000000..e22c22b8d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendcommandtype/unpause.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpause"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendcommandtype\/unpause"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/unpause","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpause"}],"title":"SendCommandType.unpause","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15SendCommandTypeO7unpauseyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType/unpause":{"role":"symbol","title":"SendCommandType.unpause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpause"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType\/unpause","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendcommandtype\/unpause"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendCommandType":{"role":"symbol","title":"SendCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendCommandType"}],"abstract":[{"type":"text","text":"Enum SendCommandType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendCommandType"}],"url":"\/documentation\/jellyfinapi\/sendcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype.json new file mode 100644 index 000000000..ce9774037 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"title":"SendToUserType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI14SendToUserTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/admins","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/all","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/custom"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/custom":{"role":"symbol","title":"SendToUserType.custom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"custom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/custom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/custom"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/rawrepresentable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/equatable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/all":{"role":"symbol","title":"SendToUserType.all","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"all"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/all","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/all"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/admins":{"role":"symbol","title":"SendToUserType.admins","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"admins"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/admins","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/admins"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/!=(_:_:).json new file mode 100644 index 000000000..b20d113c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI14SendToUserTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/admins.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/admins.json new file mode 100644 index 000000000..d78a7a5b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/admins.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"admins"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/admins"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/admins","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"admins"}],"title":"SendToUserType.admins","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14SendToUserTypeO6adminsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/admins":{"role":"symbol","title":"SendToUserType.admins","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"admins"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/admins","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/admins"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/all.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/all.json new file mode 100644 index 000000000..d14fb1ee4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/all.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"all"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/all"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/all","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"all"}],"title":"SendToUserType.all","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14SendToUserTypeO3allyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/all":{"role":"symbol","title":"SendToUserType.all","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"all"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/all","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/all"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/custom.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/custom.json new file mode 100644 index 000000000..c373d18fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/custom.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"custom"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/custom"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/custom","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"custom"}],"title":"SendToUserType.custom","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI14SendToUserTypeO6customyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/custom":{"role":"symbol","title":"SendToUserType.custom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"custom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/custom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/custom"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/encode(to:).json new file mode 100644 index 000000000..b4f8362d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI14SendToUserTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/equatable-implementations.json new file mode 100644 index 000000000..36e693208 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/hash(into:).json new file mode 100644 index 000000000..7cf7c3563 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI14SendToUserTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/hashvalue.json new file mode 100644 index 000000000..454da84f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI14SendToUserTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/init(from:).json new file mode 100644 index 000000000..44d17ddc3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI14SendToUserTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/init(rawvalue:).json new file mode 100644 index 000000000..2b937a6e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14SendToUserTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/rawrepresentable-implementations.json new file mode 100644 index 000000000..116e2b54d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sendtousertype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/sendtousertype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sendtousertype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SendToUserType":{"role":"symbol","title":"SendToUserType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SendToUserType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SendToUserType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SendToUserType"}],"url":"\/documentation\/jellyfinapi\/sendtousertype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo.json new file mode 100644 index 000000000..88ceb706b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"title":"SeriesInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10SeriesInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/isAutomated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/metadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/year"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/isautomated"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/metadatacountrycode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/indexnumber.json new file mode 100644 index 000000000..218fccd2d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/indexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/init(from:).json new file mode 100644 index 000000000..9dff92d2f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10SeriesInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json new file mode 100644 index 000000000..16887f62b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10SeriesInfoV11indexNumber11isAutomated19metadataCountryCode0I8Language4name13originalTitle011parentIndexF04path12premiereDate11providerIDs4yearACs5Int32VSg_SbSgSSSgA3sqS10Foundation0T0VSgSDyS2SGSgAQtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/isautomated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/isautomated.json new file mode 100644 index 000000000..3f050df61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/isautomated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/isautomated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/isAutomated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV11isAutomatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/isautomated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/metadatacountrycode.json new file mode 100644 index 000000000..5d6843046 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/metadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/metadatalanguage.json new file mode 100644 index 000000000..120cd8e0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/metadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/metadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/metadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV16metadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/metadatalanguage"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/name.json new file mode 100644 index 000000000..bf9a13284 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/originaltitle.json new file mode 100644 index 000000000..df6d6f123 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the original title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/parentindexnumber.json new file mode 100644 index 000000000..172ad8fd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/path.json new file mode 100644 index 000000000..0dce96405 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/premieredate.json new file mode 100644 index 000000000..ad64d826c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV12premiereDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/providerids.json new file mode 100644 index 000000000..983c2fa03 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/year.json new file mode 100644 index 000000000..d94e55bb9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinfo/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinfo\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"year","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SeriesInfoV4years5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery.json new file mode 100644 index 000000000..29a81a433 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinforemotesearchquery"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"title":"SeriesInfoRemoteSearchQuery","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/isIncludeDisabledProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/searchInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/searchProviderName"]}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery":{"role":"symbol","title":"SeriesInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SeriesInfo","preciseIdentifier":"s:11JellyfinAPI10SeriesInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SeriesInfo","preciseIdentifier":"s:11JellyfinAPI10SeriesInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/init(from:).json new file mode 100644 index 000000000..4f18cc42d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery":{"role":"symbol","title":"SeriesInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json new file mode 100644 index 000000000..60ba10d4d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","preciseIdentifier":"s:11JellyfinAPI10SeriesInfoV","text":"SeriesInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SeriesInfo","preciseIdentifier":"s:11JellyfinAPI10SeriesInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV26isIncludeDisabledProviders6itemID06searchD00N12ProviderNameACSbSg_10Foundation4UUIDVSgAA0cD0VSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery":{"role":"symbol","title":"SeriesInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SeriesInfo","preciseIdentifier":"s:11JellyfinAPI10SeriesInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/isincludedisabledproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/isincludedisabledproviders.json new file mode 100644 index 000000000..cc0d1d19a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/isincludedisabledproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/isincludedisabledproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/isIncludeDisabledProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeDisabledProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV26isIncludeDisabledProvidersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery":{"role":"symbol","title":"SeriesInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/itemid.json new file mode 100644 index 000000000..b2d489203 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery":{"role":"symbol","title":"SeriesInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/searchinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/searchinfo.json new file mode 100644 index 000000000..2865c9d22 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/searchinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","preciseIdentifier":"s:11JellyfinAPI10SeriesInfoV","text":"SeriesInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/searchinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/searchInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SeriesInfo","preciseIdentifier":"s:11JellyfinAPI10SeriesInfoV"},{"kind":"text","text":"?"}],"title":"searchInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV06searchD0AA0cD0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery":{"role":"symbol","title":"SeriesInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfo":{"role":"symbol","title":"SeriesInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfo"}],"url":"\/documentation\/jellyfinapi\/seriesinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SeriesInfo","preciseIdentifier":"s:11JellyfinAPI10SeriesInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/searchinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/searchprovidername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/searchprovidername.json new file mode 100644 index 000000000..ceb1380b2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesinforemotesearchquery/searchprovidername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/searchprovidername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/searchProviderName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchProviderName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI27SeriesInfoRemoteSearchQueryV18searchProviderNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery":{"role":"symbol","title":"SeriesInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesinforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus.json new file mode 100644 index 000000000..d011f9e40 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"title":"SeriesStatus","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI12SeriesStatusO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/continuing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/ended"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/init(rawvalue:)"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/equatable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/ended":{"role":"symbol","title":"SeriesStatus.ended","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ended"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/ended","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/ended"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/continuing":{"role":"symbol","title":"SeriesStatus.continuing","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"continuing"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/continuing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/continuing"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/!=(_:_:).json new file mode 100644 index 000000000..db9042341 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI12SeriesStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/continuing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/continuing.json new file mode 100644 index 000000000..3123d35b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/continuing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"continuing"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus\/continuing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/continuing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"continuing"}],"title":"SeriesStatus.continuing","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12SeriesStatusO10continuingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/continuing":{"role":"symbol","title":"SeriesStatus.continuing","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"continuing"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/continuing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/continuing"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/encode(to:).json new file mode 100644 index 000000000..8ed970a20 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI12SeriesStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/ended.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/ended.json new file mode 100644 index 000000000..754d326c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/ended.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ended"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus\/ended"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/ended","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ended"}],"title":"SeriesStatus.ended","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI12SeriesStatusO5endedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/ended":{"role":"symbol","title":"SeriesStatus.ended","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ended"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/ended","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/ended"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/equatable-implementations.json new file mode 100644 index 000000000..09f92028c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/hash(into:).json new file mode 100644 index 000000000..cf12526e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI12SeriesStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/hashvalue.json new file mode 100644 index 000000000..a03b808c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI12SeriesStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/init(from:).json new file mode 100644 index 000000000..5193a9b8a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI12SeriesStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/init(rawvalue:).json new file mode 100644 index 000000000..45b840386 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12SeriesStatusO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/rawrepresentable-implementations.json new file mode 100644 index 000000000..de054d310 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriesstatus/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/seriesstatus\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus":{"role":"symbol","title":"SeriesStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesStatus"}],"abstract":[{"type":"text","text":"Enum SeriesStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesStatus"}],"url":"\/documentation\/jellyfinapi\/seriesstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesStatus/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesStatus\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriesstatus\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto.json new file mode 100644 index 000000000..632e86358 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"title":"SeriesTimerInfoDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/init(channelID:channelName:channelPrimaryImageTag:dayPattern:days:endDate:externalChannelID:externalID:externalProgramID:id:imageTags:isPostPaddingRequired:isPrePaddingRequired:keepUntil:keepUpTo:name:overview:parentBackdropImageTags:parentBackdropItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:isRecordAnyChannel:isRecordAnyTime:isRecordNewOnly:serverID:serviceName:isSkipEpisodesInLibrary:startDate:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelPrimaryImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/dayPattern","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/days","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/endDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalChannelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalProgramID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/id-ldpe","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/imageTags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isPostPaddingRequired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isPrePaddingRequired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordAnyChannel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordAnyTime","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordNewOnly","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isSkipEpisodesInLibrary","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/keepUntil","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/keepUpTo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/overview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentBackdropImageTags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentBackdropItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentPrimaryImageItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentPrimaryImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentThumbImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentThumbItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/postPaddingSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/prePaddingSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/priority","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/programID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/serverID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/serviceName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/startDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/type"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isRecordAnyChannel":{"role":"symbol","title":"isRecordAnyChannel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordAnyChannel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [record any channel]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordAnyChannel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/isrecordanychannel"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel id of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isRecordAnyTime":{"role":"symbol","title":"isRecordAnyTime","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordAnyTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [record any time]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordAnyTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/isrecordanytime"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/endDate":{"role":"symbol","title":"endDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end date of the recording, in UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/endDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/enddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isPrePaddingRequired":{"role":"symbol","title":"isPrePaddingRequired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is pre padding required."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isPrePaddingRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/isprepaddingrequired"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the description of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/keepUntil":{"role":"symbol","title":"keepUntil","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/keepUntil","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/channelName":{"role":"symbol","title":"channelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel name of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/channelname"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentBackdropImageTags":{"role":"symbol","title":"parentBackdropImageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the parent backdrop image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentBackdropImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentbackdropimagetags"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isSkipEpisodesInLibrary":{"role":"symbol","title":"isSkipEpisodesInLibrary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipEpisodesInLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isSkipEpisodesInLibrary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/isskipepisodesinlibrary"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/days":{"role":"symbol","title":"days","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"days"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/days","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/days"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isPostPaddingRequired":{"role":"symbol","title":"isPostPaddingRequired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is post padding required."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isPostPaddingRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/ispostpaddingrequired"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentThumbImageTag":{"role":"symbol","title":"parentThumbImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent thumb image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentThumbImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentthumbimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/postPaddingSeconds":{"role":"symbol","title":"postPaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the post padding seconds."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/postPaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/postpaddingseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/serviceName":{"role":"symbol","title":"serviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the service."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/serviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/servicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/externalChannelID":{"role":"symbol","title":"externalChannelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external channel identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalChannelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/externalchannelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/imageTags":{"role":"symbol","title":"imageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/imageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/imagetags"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/priority":{"role":"symbol","title":"priority","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the priority."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/priority","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/priority"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/init(channelID:channelName:channelPrimaryImageTag:dayPattern:days:endDate:externalChannelID:externalID:externalProgramID:id:imageTags:isPostPaddingRequired:isPrePaddingRequired:keepUntil:keepUpTo:name:overview:parentBackdropImageTags:parentBackdropItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:isRecordAnyChannel:isRecordAnyTime:isRecordNewOnly:serverID:serviceName:isSkipEpisodesInLibrary:startDate:type:)":{"role":"symbol","title":"init(channelID:channelName:channelPrimaryImageTag:dayPattern:days:endDate:externalChannelID:externalID:externalProgramID:id:imageTags:isPostPaddingRequired:isPrePaddingRequired:keepUntil:keepUpTo:name:overview:parentBackdropImageTags:parentBackdropItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:isRecordAnyChannel:isRecordAnyTime:isRecordNewOnly:serverID:serviceName:isSkipEpisodesInLibrary:startDate:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dayPattern"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayPattern","preciseIdentifier":"s:11JellyfinAPI10DayPatternO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"days"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"keepUpTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecordAnyChannel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecordAnyTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecordNewOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipEpisodesInLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/init(channelID:channelName:channelPrimaryImageTag:dayPattern:days:endDate:externalChannelID:externalID:externalProgramID:id:imageTags:isPostPaddingRequired:isPrePaddingRequired:keepUntil:keepUpTo:name:overview:parentBackdropImageTags:parentBackdropItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:isRecordAnyChannel:isRecordAnyTime:isRecordNewOnly:serverID:serviceName:isSkipEpisodesInLibrary:startDate:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/init(channelid:channelname:channelprimaryimagetag:daypattern:days:enddate:externalchannelid:externalid:externalprogramid:id:imagetags:ispostpaddingrequired:isprepaddingrequired:keepuntil:keepupto:name:overview:parentbackdropimagetags:parent-2lkyr"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isRecordNewOnly":{"role":"symbol","title":"isRecordNewOnly","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordNewOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [record new only]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordNewOnly","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/isrecordnewonly"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/externalID":{"role":"symbol","title":"externalID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/externalid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/dayPattern":{"role":"symbol","title":"dayPattern","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayPattern"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayPattern","preciseIdentifier":"s:11JellyfinAPI10DayPatternO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the day pattern."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/dayPattern","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/daypattern"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentPrimaryImageTag":{"role":"symbol","title":"parentPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentPrimaryImageItemID":{"role":"symbol","title":"parentPrimaryImageItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent primary image item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentPrimaryImageItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentprimaryimageitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentThumbItemID":{"role":"symbol","title":"parentThumbItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent thumb item id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentThumbItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentthumbitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/keepUpTo":{"role":"symbol","title":"keepUpTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUpTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/keepUpTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/keepupto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/externalProgramID":{"role":"symbol","title":"externalProgramID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external program identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalProgramID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/externalprogramid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentBackdropItemID":{"role":"symbol","title":"parentBackdropItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id of the Parent that has a backdrop if the item does not have one."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentBackdropItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentbackdropitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/channelPrimaryImageTag":{"role":"symbol","title":"channelPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/channelprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/startDate":{"role":"symbol","title":"startDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start date of the recording, in UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/startDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/startdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/programID":{"role":"symbol","title":"programID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/programID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/programid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/id-ldpe":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/id-ldpe","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/id-ldpe"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/prePaddingSeconds":{"role":"symbol","title":"prePaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the pre padding seconds."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/prePaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/prepaddingseconds"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/channelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/channelid.json new file mode 100644 index 000000000..968161857 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/channelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/channelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the channel id of the recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"channelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV9channelID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel id of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/channelname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/channelname.json new file mode 100644 index 000000000..fb994d8d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/channelname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/channelname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the channel name of the recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV11channelNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/channelName":{"role":"symbol","title":"channelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel name of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/channelname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/channelprimaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/channelprimaryimagetag.json new file mode 100644 index 000000000..b8bf21d5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/channelprimaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/channelprimaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelPrimaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelPrimaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV22channelPrimaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/channelPrimaryImageTag":{"role":"symbol","title":"channelPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/channelPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/channelprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/daypattern.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/daypattern.json new file mode 100644 index 000000000..3d73d5fcb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/daypattern.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayPattern"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","preciseIdentifier":"s:11JellyfinAPI10DayPatternO","text":"DayPattern"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/daypattern"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/dayPattern","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the day pattern."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayPattern"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayPattern","preciseIdentifier":"s:11JellyfinAPI10DayPatternO"},{"kind":"text","text":"?"}],"title":"dayPattern","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV10dayPatternAA03DayH0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/dayPattern":{"role":"symbol","title":"dayPattern","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayPattern"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayPattern","preciseIdentifier":"s:11JellyfinAPI10DayPatternO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the day pattern."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/dayPattern","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/daypattern"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/days.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/days.json new file mode 100644 index 000000000..7055def8d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/days.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"days"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO","text":"DayOfWeek"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/days"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/days","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the days."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"days"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?"}],"title":"days","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV4daysSayAA9DayOfWeekOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/days":{"role":"symbol","title":"days","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"days"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the days."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/days","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/days"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/enddate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/enddate.json new file mode 100644 index 000000000..ad6373be3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/enddate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/enddate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/endDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the end date of the recording, in UTC."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"endDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV7endDate10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/endDate":{"role":"symbol","title":"endDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end date of the recording, in UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/endDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/enddate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/externalchannelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/externalchannelid.json new file mode 100644 index 000000000..ba0f0fae1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/externalchannelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/externalchannelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalChannelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the external channel identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"externalChannelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV17externalChannelIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/externalChannelID":{"role":"symbol","title":"externalChannelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external channel identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalChannelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/externalchannelid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/externalid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/externalid.json new file mode 100644 index 000000000..e1f28439a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/externalid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/externalid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the external identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"externalID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV10externalIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/externalID":{"role":"symbol","title":"externalID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/externalid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/externalprogramid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/externalprogramid.json new file mode 100644 index 000000000..df7e3ee7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/externalprogramid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/externalprogramid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalProgramID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the external program identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"externalProgramID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV17externalProgramIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/externalProgramID":{"role":"symbol","title":"externalProgramID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external program identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/externalProgramID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/externalprogramid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/id-8bq74.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/id-8bq74.json new file mode 100644 index 000000000..7c8b61c33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/id-8bq74.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/id-8bq74"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/id-8bq74","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI18SeriesTimerInfoDtoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/id-8bq74":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/id-8bq74","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/id-8bq74"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/id-ldpe.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/id-ldpe.json new file mode 100644 index 000000000..33cc4d3e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/id-ldpe.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/id-ldpe"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/id-ldpe","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Id of the recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/id-ldpe":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/id-ldpe","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/id-ldpe"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/identifiable-implementations.json new file mode 100644 index 000000000..7611065b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/id-8bq74"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/id-8bq74":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/id-8bq74","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/id-8bq74"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/imagetags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/imagetags.json new file mode 100644 index 000000000..2b34be032 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/imagetags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/imagetags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/imageTags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the image tags."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"imageTags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV9imageTagsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/imageTags":{"role":"symbol","title":"imageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/imageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/imagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/init(channelid:channelname:channelprimaryimagetag:daypattern:days:enddate:externalchannelid:externalid:externalprogramid:id:imagetags:ispostpaddingrequired:isprepaddingrequired:keepuntil:keepupto:name:overview:parentbackdropimagetags:parent-2lkyr.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/init(channelid:channelname:channelprimaryimagetag:daypattern:days:enddate:externalchannelid:externalid:externalprogramid:id:imagetags:ispostpaddingrequired:isprepaddingrequired:keepuntil:keepupto:name:overview:parentbackdropimagetags:parent-2lkyr.json new file mode 100644 index 000000000..957bfd340 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/init(channelid:channelname:channelprimaryimagetag:daypattern:days:enddate:externalchannelid:externalid:externalprogramid:id:imagetags:ispostpaddingrequired:isprepaddingrequired:keepuntil:keepupto:name:overview:parentbackdropimagetags:parent-2lkyr.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"dayPattern"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","preciseIdentifier":"s:11JellyfinAPI10DayPatternO","text":"DayPattern"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"days"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO","text":"DayOfWeek"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO","text":"KeepUntil"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"keepUpTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRecordAnyChannel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRecordAnyTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRecordNewOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSkipEpisodesInLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/init(channelid:channelname:channelprimaryimagetag:daypattern:days:enddate:externalchannelid:externalid:externalprogramid:id:imagetags:ispostpaddingrequired:isprepaddingrequired:keepuntil:keepupto:name:overview:parentbackdropimagetags:parent-2lkyr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/init(channelID:channelName:channelPrimaryImageTag:dayPattern:days:endDate:externalChannelID:externalID:externalProgramID:id:imageTags:isPostPaddingRequired:isPrePaddingRequired:keepUntil:keepUpTo:name:overview:parentBackdropImageTags:parentBackdropItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:isRecordAnyChannel:isRecordAnyTime:isRecordNewOnly:serverID:serviceName:isSkipEpisodesInLibrary:startDate:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dayPattern"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayPattern","preciseIdentifier":"s:11JellyfinAPI10DayPatternO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"days"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"keepUpTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecordAnyChannel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecordAnyTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecordNewOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipEpisodesInLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(channelID:channelName:channelPrimaryImageTag:dayPattern:days:endDate:externalChannelID:externalID:externalProgramID:id:imageTags:isPostPaddingRequired:isPrePaddingRequired:keepUntil:keepUpTo:name:overview:parentBackdropImageTags:parentBackdropItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:isRecordAnyChannel:isRecordAnyTime:isRecordNewOnly:serverID:serviceName:isSkipEpisodesInLibrary:startDate:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV9channelID0G4Name0G15PrimaryImageTag10dayPattern4days7endDate015externalChannelH00rH00r7ProgramH02id9imageTags21isPostPaddingRequired0x3PreZ8Required9keepUntil8keepUpTo4name8overview014parentBackdropkW0018parentBackdropItemH006parentjk4ItemH006parentjkL0011parentThumbkL0015parentThumbItemH004postZ7Seconds03preZ7Seconds8priority07programH00x9RecordAnyS00X13RecordAnyTime0X13RecordNewOnly06serverH007serviceI00X21SkipEpisodesInLibrary05startQ04typeAC10Foundation4UUIDVSg_SSSgA15_AA03DayN0OSgSayAA9DayOfWeekOGSgA11_0Q0VSgA15_A15_A15_A15_SDyS2SGSgSbSgA28_AA9KeepUntilOSgs5Int32VSgA15_A15_SaySSGSgA15_A15_A15_A15_A15_A34_A34_A34_A15_A28_A28_A28_A15_A15_A28_A25_A15_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/init(channelID:channelName:channelPrimaryImageTag:dayPattern:days:endDate:externalChannelID:externalID:externalProgramID:id:imageTags:isPostPaddingRequired:isPrePaddingRequired:keepUntil:keepUpTo:name:overview:parentBackdropImageTags:parentBackdropItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:isRecordAnyChannel:isRecordAnyTime:isRecordNewOnly:serverID:serviceName:isSkipEpisodesInLibrary:startDate:type:)":{"role":"symbol","title":"init(channelID:channelName:channelPrimaryImageTag:dayPattern:days:endDate:externalChannelID:externalID:externalProgramID:id:imageTags:isPostPaddingRequired:isPrePaddingRequired:keepUntil:keepUpTo:name:overview:parentBackdropImageTags:parentBackdropItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:isRecordAnyChannel:isRecordAnyTime:isRecordNewOnly:serverID:serviceName:isSkipEpisodesInLibrary:startDate:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"dayPattern"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayPattern","preciseIdentifier":"s:11JellyfinAPI10DayPatternO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"days"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"keepUpTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecordAnyChannel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecordAnyTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRecordNewOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipEpisodesInLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/init(channelID:channelName:channelPrimaryImageTag:dayPattern:days:endDate:externalChannelID:externalID:externalProgramID:id:imageTags:isPostPaddingRequired:isPrePaddingRequired:keepUntil:keepUpTo:name:overview:parentBackdropImageTags:parentBackdropItemID:parentPrimaryImageItemID:parentPrimaryImageTag:parentThumbImageTag:parentThumbItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:isRecordAnyChannel:isRecordAnyTime:isRecordNewOnly:serverID:serviceName:isSkipEpisodesInLibrary:startDate:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/init(channelid:channelname:channelprimaryimagetag:daypattern:days:enddate:externalchannelid:externalid:externalprogramid:id:imagetags:ispostpaddingrequired:isprepaddingrequired:keepuntil:keepupto:name:overview:parentbackdropimagetags:parent-2lkyr"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayPattern":{"role":"symbol","title":"DayPattern","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayPattern"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayPattern","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayPattern"}],"url":"\/documentation\/jellyfinapi\/daypattern"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/init(from:).json new file mode 100644 index 000000000..531bdc347 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/ispostpaddingrequired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/ispostpaddingrequired.json new file mode 100644 index 000000000..e9a513c5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/ispostpaddingrequired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/ispostpaddingrequired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isPostPaddingRequired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is post padding required."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPostPaddingRequired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV21isPostPaddingRequiredSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isPostPaddingRequired":{"role":"symbol","title":"isPostPaddingRequired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is post padding required."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isPostPaddingRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/ispostpaddingrequired"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isprepaddingrequired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isprepaddingrequired.json new file mode 100644 index 000000000..f81dc4e31 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isprepaddingrequired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/isprepaddingrequired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isPrePaddingRequired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is pre padding required."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPrePaddingRequired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV20isPrePaddingRequiredSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isPrePaddingRequired":{"role":"symbol","title":"isPrePaddingRequired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is pre padding required."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isPrePaddingRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/isprepaddingrequired"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isrecordanychannel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isrecordanychannel.json new file mode 100644 index 000000000..9fd865921 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isrecordanychannel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordAnyChannel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/isrecordanychannel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordAnyChannel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [record any channel]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordAnyChannel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRecordAnyChannel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV18isRecordAnyChannelSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isRecordAnyChannel":{"role":"symbol","title":"isRecordAnyChannel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordAnyChannel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [record any channel]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordAnyChannel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/isrecordanychannel"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isrecordanytime.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isrecordanytime.json new file mode 100644 index 000000000..99defd27b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isrecordanytime.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordAnyTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/isrecordanytime"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordAnyTime","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [record any time]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordAnyTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRecordAnyTime","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV15isRecordAnyTimeSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isRecordAnyTime":{"role":"symbol","title":"isRecordAnyTime","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordAnyTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [record any time]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordAnyTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/isrecordanytime"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isrecordnewonly.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isrecordnewonly.json new file mode 100644 index 000000000..838b13e76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isrecordnewonly.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordNewOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/isrecordnewonly"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordNewOnly","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [record new only]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordNewOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRecordNewOnly","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV15isRecordNewOnlySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isRecordNewOnly":{"role":"symbol","title":"isRecordNewOnly","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRecordNewOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [record new only]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isRecordNewOnly","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/isrecordnewonly"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isskipepisodesinlibrary.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isskipepisodesinlibrary.json new file mode 100644 index 000000000..18a5ca21b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/isskipepisodesinlibrary.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipEpisodesInLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/isskipepisodesinlibrary"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isSkipEpisodesInLibrary","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipEpisodesInLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSkipEpisodesInLibrary","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV23isSkipEpisodesInLibrarySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/isSkipEpisodesInLibrary":{"role":"symbol","title":"isSkipEpisodesInLibrary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipEpisodesInLibrary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/isSkipEpisodesInLibrary","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/isskipepisodesinlibrary"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/keepuntil.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/keepuntil.json new file mode 100644 index 000000000..6e1ae775a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/keepuntil.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO","text":"KeepUntil"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/keepuntil"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/keepUntil","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?"}],"title":"keepUntil","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV9keepUntilAA04KeepH0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/keepUntil":{"role":"symbol","title":"keepUntil","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/keepUntil","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/keepupto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/keepupto.json new file mode 100644 index 000000000..225326c71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/keepupto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUpTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/keepupto"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/keepUpTo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUpTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"keepUpTo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV8keepUpTos5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/keepUpTo":{"role":"symbol","title":"keepUpTo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUpTo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/keepUpTo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/keepupto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/name.json new file mode 100644 index 000000000..577763c8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/overview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/overview.json new file mode 100644 index 000000000..3c851596c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/overview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/overview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/overview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the description of the recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"overview","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV8overviewSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the description of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentbackdropimagetags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentbackdropimagetags.json new file mode 100644 index 000000000..9a8f8540f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentbackdropimagetags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/parentbackdropimagetags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentBackdropImageTags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent backdrop image tags."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"parentBackdropImageTags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV23parentBackdropImageTagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentBackdropImageTags":{"role":"symbol","title":"parentBackdropImageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the parent backdrop image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentBackdropImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentbackdropimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentbackdropitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentbackdropitemid.json new file mode 100644 index 000000000..01a0b582f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentbackdropitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/parentbackdropitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentBackdropItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Id of the Parent that has a backdrop if the item does not have one."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentBackdropItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV20parentBackdropItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentBackdropItemID":{"role":"symbol","title":"parentBackdropItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id of the Parent that has a backdrop if the item does not have one."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentBackdropItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentbackdropitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentprimaryimageitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentprimaryimageitemid.json new file mode 100644 index 000000000..196cb4653 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentprimaryimageitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/parentprimaryimageitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentPrimaryImageItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent primary image item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentPrimaryImageItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV24parentPrimaryImageItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentPrimaryImageItemID":{"role":"symbol","title":"parentPrimaryImageItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent primary image item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentPrimaryImageItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentprimaryimageitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentprimaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentprimaryimagetag.json new file mode 100644 index 000000000..3d2e863ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentprimaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/parentprimaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentPrimaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent primary image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentPrimaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV21parentPrimaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentPrimaryImageTag":{"role":"symbol","title":"parentPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentthumbimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentthumbimagetag.json new file mode 100644 index 000000000..cb0606427 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentthumbimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/parentthumbimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentThumbImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent thumb image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentThumbImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV19parentThumbImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentThumbImageTag":{"role":"symbol","title":"parentThumbImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent thumb image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentThumbImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentthumbimagetag"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentthumbitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentthumbitemid.json new file mode 100644 index 000000000..b61e49ca2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/parentthumbitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/parentthumbitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentThumbItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent thumb item id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentThumbItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV17parentThumbItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/parentThumbItemID":{"role":"symbol","title":"parentThumbItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentThumbItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the parent thumb item id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/parentThumbItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/parentthumbitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/postpaddingseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/postpaddingseconds.json new file mode 100644 index 000000000..3ade06728 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/postpaddingseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/postpaddingseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/postPaddingSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the post padding seconds."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"postPaddingSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV18postPaddingSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/postPaddingSeconds":{"role":"symbol","title":"postPaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the post padding seconds."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/postPaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/postpaddingseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/prepaddingseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/prepaddingseconds.json new file mode 100644 index 000000000..cb328345d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/prepaddingseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/prepaddingseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/prePaddingSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the pre padding seconds."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"prePaddingSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV17prePaddingSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/prePaddingSeconds":{"role":"symbol","title":"prePaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the pre padding seconds."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/prePaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/prepaddingseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/priority.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/priority.json new file mode 100644 index 000000000..563059897 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/priority.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/priority"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/priority","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the priority."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"priority","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV8prioritys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/priority":{"role":"symbol","title":"priority","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the priority."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/priority","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/priority"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/programid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/programid.json new file mode 100644 index 000000000..f28d8dd0d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/programid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/programid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/programID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the program identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"programID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV9programIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/programID":{"role":"symbol","title":"programID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/programID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/programid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/serverid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/serverid.json new file mode 100644 index 000000000..842bfd1cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/serverid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/serverid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/serverID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serverID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV8serverIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/servicename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/servicename.json new file mode 100644 index 000000000..f9967d973 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/servicename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/servicename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/serviceName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the service."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serviceName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV11serviceNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/serviceName":{"role":"symbol","title":"serviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the service."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/serviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/servicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/startdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/startdate.json new file mode 100644 index 000000000..8964ba159 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/startdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/startdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/startDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start date of the recording, in UTC."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"startDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV9startDate10Foundation0H0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/startDate":{"role":"symbol","title":"startDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start date of the recording, in UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/startDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/startdate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/type.json new file mode 100644 index 000000000..48478b65d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodto/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodto\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18SeriesTimerInfoDtoV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodto\/type"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult.json new file mode 100644 index 000000000..acabd5bfe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"title":"SeriesTimerInfoDtoQueryResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI29SeriesTimerInfoDtoQueryResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/init(items:startIndex:totalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/items","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/totalRecordCount"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult":{"role":"symbol","title":"SeriesTimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/items"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/init(from:).json new file mode 100644 index 000000000..e249402b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI29SeriesTimerInfoDtoQueryResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult":{"role":"symbol","title":"SeriesTimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/init(items:startindex:totalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/init(items:startindex:totalrecordcount:).json new file mode 100644 index 000000000..788172e25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/init(items:startindex:totalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV","text":"SeriesTimerInfoDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/init(items:startindex:totalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/init(items:startIndex:totalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(items:startIndex:totalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI29SeriesTimerInfoDtoQueryResultV5items10startIndex16totalRecordCountACSayAA0cdeF0VGSg_s5Int32VSgAMtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult":{"role":"symbol","title":"SeriesTimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/items.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/items.json new file mode 100644 index 000000000..6fbc0e311 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/items.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV","text":"SeriesTimerInfoDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/items"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/items","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"]?"}],"title":"items","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI29SeriesTimerInfoDtoQueryResultV5itemsSayAA0cdeF0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDto":{"role":"symbol","title":"SeriesTimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDto"}],"abstract":[{"type":"text","text":"Class SeriesTimerInfoDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SeriesTimerInfoDto","preciseIdentifier":"s:11JellyfinAPI18SeriesTimerInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/items"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult":{"role":"symbol","title":"SeriesTimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/startindex.json new file mode 100644 index 000000000..20011160f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI29SeriesTimerInfoDtoQueryResultV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult":{"role":"symbol","title":"SeriesTimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/totalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/totalrecordcount.json new file mode 100644 index 000000000..9c37f2088 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/seriestimerinfodtoqueryresult/totalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/totalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/totalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"totalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI29SeriesTimerInfoDtoQueryResultV16totalRecordCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SeriesTimerInfoDtoQueryResult":{"role":"symbol","title":"SeriesTimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SeriesTimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SeriesTimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/seriestimerinfodtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration.json new file mode 100644 index 000000000..a0d674dd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents the server configuration."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"title":"ServerConfiguration","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI19ServerConfigurationV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/init(activityLogRetentionDays:allowClientLogUpload:cachePath:codecsUsed:contentTypes:corsHosts:isDisableLiveTvChannelUserDataName:isDisplaySpecialsWithinSeasons:enableCaseSensitiveItemIDs:enableExternalContentInSuggestions:enableFolderView:enableGroupingIntoCollections:enableMetrics:enableNormalizedItemByNameIDs:enableSlowResponseWarning:imageExtractionTimeoutMs:imageSavingConvention:isPortAuthorized:isStartupWizardCompleted:libraryMetadataRefreshConcurrency:libraryMonitorDelay:libraryScanFanoutConcurrency:logFileRetentionDays:maxAudiobookResume:maxResumePct:metadataCountryCode:metadataNetworkPath:metadataOptions:metadataPath:minAudiobookResume:minResumeDurationSeconds:minResumePct:pathSubstitutions:pluginRepositories:preferredMetadataLanguage:previousVersion:previousVersionStr:isQuickConnectAvailable:remoteClientBitrateLimit:isRemoveOldPlugins:isSaveMetadataHidden:serverName:isSkipDeserializationForBasicTypes:slowResponseThresholdMs:sortRemoveCharacters:sortRemoveWords:sortReplaceCharacters:uICulture:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/activityLogRetentionDays","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/allowClientLogUpload","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/cachePath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/codecsUsed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/contentTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/corsHosts","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableCaseSensitiveItemIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableExternalContentInSuggestions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableFolderView","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableGroupingIntoCollections","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableMetrics","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableNormalizedItemByNameIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableSlowResponseWarning","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/imageExtractionTimeoutMs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/imageSavingConvention","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isDisableLiveTvChannelUserDataName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isDisplaySpecialsWithinSeasons","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isPortAuthorized","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isQuickConnectAvailable","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isRemoveOldPlugins","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isSaveMetadataHidden","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isSkipDeserializationForBasicTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isStartupWizardCompleted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryMetadataRefreshConcurrency","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryMonitorDelay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryScanFanoutConcurrency","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/logFileRetentionDays","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/maxAudiobookResume","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/maxResumePct","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataNetworkPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minAudiobookResume","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minResumeDurationSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minResumePct","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/pathSubstitutions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/pluginRepositories","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/preferredMetadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/previousVersion","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/previousVersionStr","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/remoteClientBitrateLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/serverName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/slowResponseThresholdMs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortRemoveCharacters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortRemoveWords","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortReplaceCharacters","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/uICulture"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/remoteClientBitrateLimit":{"role":"symbol","title":"remoteClientBitrateLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/remoteClientBitrateLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/remoteclientbitratelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/maxAudiobookResume":{"role":"symbol","title":"maxAudiobookResume","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/maxAudiobookResume","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/maxaudiobookresume"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/corsHosts":{"role":"symbol","title":"corsHosts","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"corsHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the cors hosts."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/corsHosts","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/corshosts"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/libraryMetadataRefreshConcurrency":{"role":"symbol","title":"libraryMetadataRefreshConcurrency","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryMetadataRefreshConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the how many metadata refreshes can run concurrently."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryMetadataRefreshConcurrency","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/librarymetadatarefreshconcurrency"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/maxResumePct":{"role":"symbol","title":"maxResumePct","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/maxResumePct","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/maxresumepct"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableSlowResponseWarning":{"role":"symbol","title":"enableSlowResponseWarning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSlowResponseWarning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether slow server responses should be logged as a warning."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableSlowResponseWarning","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enableslowresponsewarning"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isQuickConnectAvailable":{"role":"symbol","title":"isQuickConnectAvailable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isQuickConnectAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether quick connect is available for use on this server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isQuickConnectAvailable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isquickconnectavailable"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/pluginRepositories":{"role":"symbol","title":"pluginRepositories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pluginRepositories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/pluginRepositories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/pluginrepositories"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isSkipDeserializationForBasicTypes":{"role":"symbol","title":"isSkipDeserializationForBasicTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipDeserializationForBasicTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isSkipDeserializationForBasicTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isskipdeserializationforbasictypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableNormalizedItemByNameIDs":{"role":"symbol","title":"enableNormalizedItemByNameIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableNormalizedItemByNameIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableNormalizedItemByNameIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enablenormalizeditembynameids"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/pathSubstitutions":{"role":"symbol","title":"pathSubstitutions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathSubstitutions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"PathSubstitution","preciseIdentifier":"s:11JellyfinAPI16PathSubstitutionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/pathSubstitutions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/pathsubstitutions"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/previousVersionStr":{"role":"symbol","title":"previousVersionStr","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousVersionStr"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the stringified PreviousVersion to be stored\/loaded,"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/previousVersionStr","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/previousversionstr"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/contentTypes":{"role":"symbol","title":"contentTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/contentTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/contenttypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableMetrics":{"role":"symbol","title":"enableMetrics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMetrics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable prometheus metrics exporting."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableMetrics","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enablemetrics"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/logFileRetentionDays":{"role":"symbol","title":"logFileRetentionDays","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logFileRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the number of days we should retain log files."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/logFileRetentionDays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/logfileretentiondays"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/cachePath":{"role":"symbol","title":"cachePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the cache path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/cachePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/cachepath"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/preferredMetadataLanguage":{"role":"symbol","title":"preferredMetadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the preferred metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/preferredMetadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/preferredmetadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isSaveMetadataHidden":{"role":"symbol","title":"isSaveMetadataHidden","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveMetadataHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isSaveMetadataHidden","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/issavemetadatahidden"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/libraryMonitorDelay":{"role":"symbol","title":"libraryMonitorDelay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryMonitorDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added\/removed"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryMonitorDelay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/librarymonitordelay"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableGroupingIntoCollections":{"role":"symbol","title":"enableGroupingIntoCollections","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableGroupingIntoCollections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableGroupingIntoCollections","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enablegroupingintocollections"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/previousVersion":{"role":"symbol","title":"previousVersion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last known version that was ran using the configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/previousVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/previousversion"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/init(activityLogRetentionDays:allowClientLogUpload:cachePath:codecsUsed:contentTypes:corsHosts:isDisableLiveTvChannelUserDataName:isDisplaySpecialsWithinSeasons:enableCaseSensitiveItemIDs:enableExternalContentInSuggestions:enableFolderView:enableGroupingIntoCollections:enableMetrics:enableNormalizedItemByNameIDs:enableSlowResponseWarning:imageExtractionTimeoutMs:imageSavingConvention:isPortAuthorized:isStartupWizardCompleted:libraryMetadataRefreshConcurrency:libraryMonitorDelay:libraryScanFanoutConcurrency:logFileRetentionDays:maxAudiobookResume:maxResumePct:metadataCountryCode:metadataNetworkPath:metadataOptions:metadataPath:minAudiobookResume:minResumeDurationSeconds:minResumePct:pathSubstitutions:pluginRepositories:preferredMetadataLanguage:previousVersion:previousVersionStr:isQuickConnectAvailable:remoteClientBitrateLimit:isRemoveOldPlugins:isSaveMetadataHidden:serverName:isSkipDeserializationForBasicTypes:slowResponseThresholdMs:sortRemoveCharacters:sortRemoveWords:sortReplaceCharacters:uICulture:)":{"role":"symbol","title":"init(activityLogRetentionDays:allowClientLogUpload:cachePath:codecsUsed:contentTypes:corsHosts:isDisableLiveTvChannelUserDataName:isDisplaySpecialsWithinSeasons:enableCaseSensitiveItemIDs:enableExternalContentInSuggestions:enableFolderView:enableGroupingIntoCollections:enableMetrics:enableNormalizedItemByNameIDs:enableSlowResponseWarning:imageExtractionTimeoutMs:imageSavingConvention:isPortAuthorized:isStartupWizardCompleted:libraryMetadataRefreshConcurrency:libraryMonitorDelay:libraryScanFanoutConcurrency:logFileRetentionDays:maxAudiobookResume:maxResumePct:metadataCountryCode:metadataNetworkPath:metadataOptions:metadataPath:minAudiobookResume:minResumeDurationSeconds:minResumePct:pathSubstitutions:pluginRepositories:preferredMetadataLanguage:previousVersion:previousVersionStr:isQuickConnectAvailable:remoteClientBitrateLimit:isRemoveOldPlugins:isSaveMetadataHidden:serverName:isSkipDeserializationForBasicTypes:slowResponseThresholdMs:sortRemoveCharacters:sortRemoveWords:sortReplaceCharacters:uICulture:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"activityLogRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowClientLogUpload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecsUsed"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"corsHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isDisableLiveTvChannelUserDataName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisplaySpecialsWithinSeasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableCaseSensitiveItemIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableExternalContentInSuggestions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableFolderView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableGroupingIntoCollections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMetrics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableNormalizedItemByNameIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSlowResponseWarning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageExtractionTimeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageSavingConvention"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageSavingConvention","preciseIdentifier":"s:11JellyfinAPI21ImageSavingConventionO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPortAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryMetadataRefreshConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryMonitorDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryScanFanoutConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"logFileRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataNetworkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataOptions","preciseIdentifier":"s:11JellyfinAPI15MetadataOptionsV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minResumeDurationSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pathSubstitutions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"PathSubstitution","preciseIdentifier":"s:11JellyfinAPI16PathSubstitutionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"pluginRepositories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"previousVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"previousVersionStr"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isQuickConnectAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRemoveOldPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveMetadataHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipDeserializationForBasicTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"slowResponseThresholdMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortRemoveCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortRemoveWords"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortReplaceCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/init(activityLogRetentionDays:allowClientLogUpload:cachePath:codecsUsed:contentTypes:corsHosts:isDisableLiveTvChannelUserDataName:isDisplaySpecialsWithinSeasons:enableCaseSensitiveItemIDs:enableExternalContentInSuggestions:enableFolderView:enableGroupingIntoCollections:enableMetrics:enableNormalizedItemByNameIDs:enableSlowResponseWarning:imageExtractionTimeoutMs:imageSavingConvention:isPortAuthorized:isStartupWizardCompleted:libraryMetadataRefreshConcurrency:libraryMonitorDelay:libraryScanFanoutConcurrency:logFileRetentionDays:maxAudiobookResume:maxResumePct:metadataCountryCode:metadataNetworkPath:metadataOptions:metadataPath:minAudiobookResume:minResumeDurationSeconds:minResumePct:pathSubstitutions:pluginRepositories:preferredMetadataLanguage:previousVersion:previousVersionStr:isQuickConnectAvailable:remoteClientBitrateLimit:isRemoveOldPlugins:isSaveMetadataHidden:serverName:isSkipDeserializationForBasicTypes:slowResponseThresholdMs:sortRemoveCharacters:sortRemoveWords:sortReplaceCharacters:uICulture:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/init(activitylogretentiondays:allowclientlogupload:cachepath:codecsused:contenttypes:corshosts:isdisablelivetvchanneluserdataname:isdisplayspecialswithinseasons:enablecasesensitiveitemids:enableexternalcontentinsuggestions:enablefolderview:-7psqk"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/serverName":{"role":"symbol","title":"serverName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/serverName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/servername"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/minAudiobookResume":{"role":"symbol","title":"minAudiobookResume","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minAudiobookResume","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/minaudiobookresume"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/sortRemoveCharacters":{"role":"symbol","title":"sortRemoveCharacters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortRemoveCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets characters to be removed from strings to create a sort name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortRemoveCharacters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/sortremovecharacters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/libraryScanFanoutConcurrency":{"role":"symbol","title":"libraryScanFanoutConcurrency","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryScanFanoutConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the how the library scan fans out."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryScanFanoutConcurrency","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/libraryscanfanoutconcurrency"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/sortRemoveWords":{"role":"symbol","title":"sortRemoveWords","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortRemoveWords"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets words to be removed from strings to create a sort name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortRemoveWords","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/sortremovewords"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/minResumeDurationSeconds":{"role":"symbol","title":"minResumeDurationSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minResumeDurationSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates.."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minResumeDurationSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/minresumedurationseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isStartupWizardCompleted":{"role":"symbol","title":"isStartupWizardCompleted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is first run."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isStartupWizardCompleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isstartupwizardcompleted"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableCaseSensitiveItemIDs":{"role":"symbol","title":"enableCaseSensitiveItemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableCaseSensitiveItemIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [enable case sensitive item ids]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableCaseSensitiveItemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enablecasesensitiveitemids"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/sortReplaceCharacters":{"role":"symbol","title":"sortReplaceCharacters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortReplaceCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets characters to be replaced with a ’ ’ in strings to create a sort name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortReplaceCharacters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/sortreplacecharacters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/slowResponseThresholdMs":{"role":"symbol","title":"slowResponseThresholdMs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"slowResponseThresholdMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the threshold for the slow response time warning in ms."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/slowResponseThresholdMs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/slowresponsethresholdms"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/codecsUsed":{"role":"symbol","title":"codecsUsed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecsUsed"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/codecsUsed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/codecsused"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isDisableLiveTvChannelUserDataName":{"role":"symbol","title":"isDisableLiveTvChannelUserDataName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisableLiveTvChannelUserDataName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isDisableLiveTvChannelUserDataName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isdisablelivetvchanneluserdataname"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/uICulture":{"role":"symbol","title":"uICulture","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/uICulture","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/uiculture"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/activityLogRetentionDays":{"role":"symbol","title":"activityLogRetentionDays","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the number of days we should retain activity logs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/activityLogRetentionDays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/activitylogretentiondays"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/imageExtractionTimeoutMs":{"role":"symbol","title":"imageExtractionTimeoutMs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageExtractionTimeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/imageExtractionTimeoutMs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/imageextractiontimeoutms"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/metadataOptions":{"role":"symbol","title":"metadataOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataOptions","preciseIdentifier":"s:11JellyfinAPI15MetadataOptionsV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/metadataPath":{"role":"symbol","title":"metadataPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/metadatapath"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableFolderView":{"role":"symbol","title":"enableFolderView","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFolderView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableFolderView","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enablefolderview"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isDisplaySpecialsWithinSeasons":{"role":"symbol","title":"isDisplaySpecialsWithinSeasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplaySpecialsWithinSeasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isDisplaySpecialsWithinSeasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isdisplayspecialswithinseasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/minResumePct":{"role":"symbol","title":"minResumePct","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minResumePct","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/minresumepct"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/allowClientLogUpload":{"role":"symbol","title":"allowClientLogUpload","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowClientLogUpload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether clients should be allowed to upload logs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/allowClientLogUpload","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/allowclientlogupload"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/imageSavingConvention":{"role":"symbol","title":"imageSavingConvention","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageSavingConvention"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageSavingConvention","preciseIdentifier":"s:11JellyfinAPI21ImageSavingConventionO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the image saving convention."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/imageSavingConvention","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/imagesavingconvention"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isRemoveOldPlugins":{"role":"symbol","title":"isRemoveOldPlugins","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemoveOldPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isRemoveOldPlugins","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isremoveoldplugins"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableExternalContentInSuggestions":{"role":"symbol","title":"enableExternalContentInSuggestions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableExternalContentInSuggestions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableExternalContentInSuggestions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enableexternalcontentinsuggestions"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/metadataNetworkPath":{"role":"symbol","title":"metadataNetworkPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataNetworkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataNetworkPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/metadatanetworkpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isPortAuthorized":{"role":"symbol","title":"isPortAuthorized","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPortAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is port authorized."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isPortAuthorized","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isportauthorized"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/activitylogretentiondays.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/activitylogretentiondays.json new file mode 100644 index 000000000..f66f9bfb1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/activitylogretentiondays.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/activitylogretentiondays"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/activityLogRetentionDays","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the number of days we should retain activity logs."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"activityLogRetentionDays","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV24activityLogRetentionDayss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/activityLogRetentionDays":{"role":"symbol","title":"activityLogRetentionDays","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the number of days we should retain activity logs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/activityLogRetentionDays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/activitylogretentiondays"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/allowclientlogupload.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/allowclientlogupload.json new file mode 100644 index 000000000..d290680f7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/allowclientlogupload.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowClientLogUpload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/allowclientlogupload"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/allowClientLogUpload","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether clients should be allowed to upload logs."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowClientLogUpload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowClientLogUpload","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV20allowClientLogUploadSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/allowClientLogUpload":{"role":"symbol","title":"allowClientLogUpload","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowClientLogUpload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether clients should be allowed to upload logs."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/allowClientLogUpload","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/allowclientlogupload"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/cachepath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/cachepath.json new file mode 100644 index 000000000..7258b1502 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/cachepath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/cachepath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/cachePath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the cache path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"cachePath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV9cachePathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/cachePath":{"role":"symbol","title":"cachePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the cache path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/cachePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/cachepath"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/codecsused.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/codecsused.json new file mode 100644 index 000000000..1fb5afcf9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/codecsused.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecsUsed"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/codecsused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/codecsUsed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecsUsed"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"codecsUsed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV10codecsUsedSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/codecsUsed":{"role":"symbol","title":"codecsUsed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"codecsUsed"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/codecsUsed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/codecsused"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/contenttypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/contenttypes.json new file mode 100644 index 000000000..c17f6c398 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/contenttypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV","text":"NameValuePair"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/contenttypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/contentTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"title":"contentTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV12contentTypesSayAA13NameValuePairVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/contentTypes":{"role":"symbol","title":"contentTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/contentTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/contenttypes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/corshosts.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/corshosts.json new file mode 100644 index 000000000..236a5dd80 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/corshosts.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"corsHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/corshosts"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/corsHosts","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the cors hosts."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"corsHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"corsHosts","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV9corsHostsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/corsHosts":{"role":"symbol","title":"corsHosts","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"corsHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the cors hosts."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/corsHosts","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/corshosts"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablecasesensitiveitemids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablecasesensitiveitemids.json new file mode 100644 index 000000000..208e8cff5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablecasesensitiveitemids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableCaseSensitiveItemIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/enablecasesensitiveitemids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableCaseSensitiveItemIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [enable case sensitive item ids]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableCaseSensitiveItemIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableCaseSensitiveItemIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV26enableCaseSensitiveItemIDsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableCaseSensitiveItemIDs":{"role":"symbol","title":"enableCaseSensitiveItemIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableCaseSensitiveItemIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [enable case sensitive item ids]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableCaseSensitiveItemIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enablecasesensitiveitemids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enableexternalcontentinsuggestions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enableexternalcontentinsuggestions.json new file mode 100644 index 000000000..66857db83 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enableexternalcontentinsuggestions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableExternalContentInSuggestions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/enableexternalcontentinsuggestions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableExternalContentInSuggestions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableExternalContentInSuggestions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableExternalContentInSuggestions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV34enableExternalContentInSuggestionsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableExternalContentInSuggestions":{"role":"symbol","title":"enableExternalContentInSuggestions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableExternalContentInSuggestions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableExternalContentInSuggestions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enableexternalcontentinsuggestions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablefolderview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablefolderview.json new file mode 100644 index 000000000..79e8b4c35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablefolderview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFolderView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/enablefolderview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableFolderView","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFolderView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableFolderView","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV16enableFolderViewSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableFolderView":{"role":"symbol","title":"enableFolderView","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableFolderView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableFolderView","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enablefolderview"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablegroupingintocollections.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablegroupingintocollections.json new file mode 100644 index 000000000..4fab3c533 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablegroupingintocollections.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableGroupingIntoCollections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/enablegroupingintocollections"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableGroupingIntoCollections","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableGroupingIntoCollections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableGroupingIntoCollections","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV29enableGroupingIntoCollectionsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableGroupingIntoCollections":{"role":"symbol","title":"enableGroupingIntoCollections","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableGroupingIntoCollections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableGroupingIntoCollections","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enablegroupingintocollections"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablemetrics.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablemetrics.json new file mode 100644 index 000000000..beba6a5f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablemetrics.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMetrics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/enablemetrics"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableMetrics","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable prometheus metrics exporting."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMetrics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMetrics","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV13enableMetricsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableMetrics":{"role":"symbol","title":"enableMetrics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMetrics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to enable prometheus metrics exporting."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableMetrics","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enablemetrics"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablenormalizeditembynameids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablenormalizeditembynameids.json new file mode 100644 index 000000000..067eabe0f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enablenormalizeditembynameids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableNormalizedItemByNameIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/enablenormalizeditembynameids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableNormalizedItemByNameIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableNormalizedItemByNameIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableNormalizedItemByNameIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV29enableNormalizedItemByNameIDsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableNormalizedItemByNameIDs":{"role":"symbol","title":"enableNormalizedItemByNameIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableNormalizedItemByNameIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableNormalizedItemByNameIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enablenormalizeditembynameids"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enableslowresponsewarning.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enableslowresponsewarning.json new file mode 100644 index 000000000..48c38564e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/enableslowresponsewarning.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSlowResponseWarning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/enableslowresponsewarning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableSlowResponseWarning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether slow server responses should be logged as a warning."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSlowResponseWarning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableSlowResponseWarning","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV25enableSlowResponseWarningSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/enableSlowResponseWarning":{"role":"symbol","title":"enableSlowResponseWarning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSlowResponseWarning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether slow server responses should be logged as a warning."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/enableSlowResponseWarning","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/enableslowresponsewarning"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/imageextractiontimeoutms.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/imageextractiontimeoutms.json new file mode 100644 index 000000000..291df17d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/imageextractiontimeoutms.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageExtractionTimeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/imageextractiontimeoutms"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/imageExtractionTimeoutMs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageExtractionTimeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"imageExtractionTimeoutMs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV24imageExtractionTimeoutMss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/imageExtractionTimeoutMs":{"role":"symbol","title":"imageExtractionTimeoutMs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageExtractionTimeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/imageExtractionTimeoutMs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/imageextractiontimeoutms"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/imagesavingconvention.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/imagesavingconvention.json new file mode 100644 index 000000000..35daf7e2d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/imagesavingconvention.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageSavingConvention"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","preciseIdentifier":"s:11JellyfinAPI21ImageSavingConventionO","text":"ImageSavingConvention"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/imagesavingconvention"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/imageSavingConvention","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the image saving convention."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageSavingConvention"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageSavingConvention","preciseIdentifier":"s:11JellyfinAPI21ImageSavingConventionO"},{"kind":"text","text":"?"}],"title":"imageSavingConvention","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV21imageSavingConventionAA05ImagefG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/imageSavingConvention":{"role":"symbol","title":"imageSavingConvention","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageSavingConvention"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageSavingConvention","preciseIdentifier":"s:11JellyfinAPI21ImageSavingConventionO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the image saving convention."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/imageSavingConvention","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/imagesavingconvention"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/init(activitylogretentiondays:allowclientlogupload:cachepath:codecsused:contenttypes:corshosts:isdisablelivetvchanneluserdataname:isdisplayspecialswithinseasons:enablecasesensitiveitemids:enableexternalcontentinsuggestions:enablefolderview:-7psqk.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/init(activitylogretentiondays:allowclientlogupload:cachepath:codecsused:contenttypes:corshosts:isdisablelivetvchanneluserdataname:isdisplayspecialswithinseasons:enablecasesensitiveitemids:enableexternalcontentinsuggestions:enablefolderview:-7psqk.json new file mode 100644 index 000000000..61ea93a55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/init(activitylogretentiondays:allowclientlogupload:cachepath:codecsused:contenttypes:corshosts:isdisablelivetvchanneluserdataname:isdisplayspecialswithinseasons:enablecasesensitiveitemids:enableexternalcontentinsuggestions:enablefolderview:-7psqk.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"activityLogRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"allowClientLogUpload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"codecsUsed"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV","text":"NameValuePair"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"corsHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isDisableLiveTvChannelUserDataName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDisplaySpecialsWithinSeasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableCaseSensitiveItemIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableExternalContentInSuggestions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableFolderView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableGroupingIntoCollections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMetrics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableNormalizedItemByNameIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableSlowResponseWarning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageExtractionTimeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"imageSavingConvention"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","preciseIdentifier":"s:11JellyfinAPI21ImageSavingConventionO","text":"ImageSavingConvention"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPortAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"libraryMetadataRefreshConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"libraryMonitorDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"libraryScanFanoutConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"logFileRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataNetworkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","preciseIdentifier":"s:11JellyfinAPI15MetadataOptionsV","text":"MetadataOptions"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"metadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minResumeDurationSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"pathSubstitutions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","preciseIdentifier":"s:11JellyfinAPI16PathSubstitutionV","text":"PathSubstitution"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"pluginRepositories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV","text":"RepositoryInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"previousVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"previousVersionStr"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isQuickConnectAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRemoveOldPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSaveMetadataHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSkipDeserializationForBasicTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"slowResponseThresholdMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sortRemoveCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortRemoveWords"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"sortReplaceCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/init(activitylogretentiondays:allowclientlogupload:cachepath:codecsused:contenttypes:corshosts:isdisablelivetvchanneluserdataname:isdisplayspecialswithinseasons:enablecasesensitiveitemids:enableexternalcontentinsuggestions:enablefolderview:-7psqk"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/init(activityLogRetentionDays:allowClientLogUpload:cachePath:codecsUsed:contentTypes:corsHosts:isDisableLiveTvChannelUserDataName:isDisplaySpecialsWithinSeasons:enableCaseSensitiveItemIDs:enableExternalContentInSuggestions:enableFolderView:enableGroupingIntoCollections:enableMetrics:enableNormalizedItemByNameIDs:enableSlowResponseWarning:imageExtractionTimeoutMs:imageSavingConvention:isPortAuthorized:isStartupWizardCompleted:libraryMetadataRefreshConcurrency:libraryMonitorDelay:libraryScanFanoutConcurrency:logFileRetentionDays:maxAudiobookResume:maxResumePct:metadataCountryCode:metadataNetworkPath:metadataOptions:metadataPath:minAudiobookResume:minResumeDurationSeconds:minResumePct:pathSubstitutions:pluginRepositories:preferredMetadataLanguage:previousVersion:previousVersionStr:isQuickConnectAvailable:remoteClientBitrateLimit:isRemoveOldPlugins:isSaveMetadataHidden:serverName:isSkipDeserializationForBasicTypes:slowResponseThresholdMs:sortRemoveCharacters:sortRemoveWords:sortReplaceCharacters:uICulture:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"activityLogRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowClientLogUpload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecsUsed"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"corsHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isDisableLiveTvChannelUserDataName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisplaySpecialsWithinSeasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableCaseSensitiveItemIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableExternalContentInSuggestions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableFolderView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableGroupingIntoCollections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMetrics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableNormalizedItemByNameIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSlowResponseWarning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageExtractionTimeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageSavingConvention"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageSavingConvention","preciseIdentifier":"s:11JellyfinAPI21ImageSavingConventionO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPortAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryMetadataRefreshConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryMonitorDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryScanFanoutConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"logFileRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataNetworkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataOptions","preciseIdentifier":"s:11JellyfinAPI15MetadataOptionsV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minResumeDurationSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pathSubstitutions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"PathSubstitution","preciseIdentifier":"s:11JellyfinAPI16PathSubstitutionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"pluginRepositories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"previousVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"previousVersionStr"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isQuickConnectAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRemoveOldPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveMetadataHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipDeserializationForBasicTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"slowResponseThresholdMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortRemoveCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortRemoveWords"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortReplaceCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(activityLogRetentionDays:allowClientLogUpload:cachePath:codecsUsed:contentTypes:corsHosts:isDisableLiveTvChannelUserDataName:isDisplaySpecialsWithinSeasons:enableCaseSensitiveItemIDs:enableExternalContentInSuggestions:enableFolderView:enableGroupingIntoCollections:enableMetrics:enableNormalizedItemByNameIDs:enableSlowResponseWarning:imageExtractionTimeoutMs:imageSavingConvention:isPortAuthorized:isStartupWizardCompleted:libraryMetadataRefreshConcurrency:libraryMonitorDelay:libraryScanFanoutConcurrency:logFileRetentionDays:maxAudiobookResume:maxResumePct:metadataCountryCode:metadataNetworkPath:metadataOptions:metadataPath:minAudiobookResume:minResumeDurationSeconds:minResumePct:pathSubstitutions:pluginRepositories:preferredMetadataLanguage:previousVersion:previousVersionStr:isQuickConnectAvailable:remoteClientBitrateLimit:isRemoveOldPlugins:isSaveMetadataHidden:serverName:isSkipDeserializationForBasicTypes:slowResponseThresholdMs:sortRemoveCharacters:sortRemoveWords:sortReplaceCharacters:uICulture:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19ServerConfigurationV24activityLogRetentionDays011allowClientF6Upload9cachePath10codecsUsed12contentTypes9corsHosts34isDisableLiveTvChannelUserDataName0T28DisplaySpecialsWithinSeasons26enableCaseSensitiveItemIDs34enableExternalContentInSuggestions16enableFolderView29enableGroupingIntoCollections13enableMetrics29enableNormalizedItemByNameIDs25enableSlowResponseWarning24imageExtractionTimeoutMs21imageSavingConvention0T14PortAuthorized0T22StartupWizardCompleted33libraryMetadataRefreshConcurrency19libraryMonitorDelay28libraryScanFanoutConcurrency07logFilegH018maxAudiobookResume12maxResumePct19metadataCountryCode015metadataNetworkM015metadataOptions08metadataM018minAudiobookResume24minResumeDurationSeconds12minResumePct17pathSubstitutions18pluginRepositories25preferredMetadataLanguage15previousVersion18previousVersionStr0T21QuickConnectAvailable06remoteJ12BitrateLimit0T16RemoveOldPlugins0T18SaveMetadataHidden10serverName0t27SkipDeserializationForBasicQ023slowResponseThresholdMs20sortRemoveCharacters15sortRemoveWords21sortReplaceCharacters9uICultureACs5Int32VSg_SbSgSSSgSaySSGSgSayAA13NameValuePairVGSgA30_A27_A27_A27_A27_A27_A27_A27_A27_A27_A26_AA21ImageSavingConventionOSgA27_A27_A26_A26_A26_A26_A26_A26_A28_A28_SayAA15MetadataOptionsVGSgA28_A26_A26_A26_SayAA0M12SubstitutionVGSgSayAA14RepositoryInfoVGSgA28_A28_A28_A27_A26_A27_A27_A28_A27_s5Int64VSgA30_A30_A30_A28_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/NameValuePair":{"role":"symbol","title":"NameValuePair","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"NameValuePair"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/NameValuePair","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NameValuePair"}],"url":"\/documentation\/jellyfinapi\/namevaluepair"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/init(activityLogRetentionDays:allowClientLogUpload:cachePath:codecsUsed:contentTypes:corsHosts:isDisableLiveTvChannelUserDataName:isDisplaySpecialsWithinSeasons:enableCaseSensitiveItemIDs:enableExternalContentInSuggestions:enableFolderView:enableGroupingIntoCollections:enableMetrics:enableNormalizedItemByNameIDs:enableSlowResponseWarning:imageExtractionTimeoutMs:imageSavingConvention:isPortAuthorized:isStartupWizardCompleted:libraryMetadataRefreshConcurrency:libraryMonitorDelay:libraryScanFanoutConcurrency:logFileRetentionDays:maxAudiobookResume:maxResumePct:metadataCountryCode:metadataNetworkPath:metadataOptions:metadataPath:minAudiobookResume:minResumeDurationSeconds:minResumePct:pathSubstitutions:pluginRepositories:preferredMetadataLanguage:previousVersion:previousVersionStr:isQuickConnectAvailable:remoteClientBitrateLimit:isRemoveOldPlugins:isSaveMetadataHidden:serverName:isSkipDeserializationForBasicTypes:slowResponseThresholdMs:sortRemoveCharacters:sortRemoveWords:sortReplaceCharacters:uICulture:)":{"role":"symbol","title":"init(activityLogRetentionDays:allowClientLogUpload:cachePath:codecsUsed:contentTypes:corsHosts:isDisableLiveTvChannelUserDataName:isDisplaySpecialsWithinSeasons:enableCaseSensitiveItemIDs:enableExternalContentInSuggestions:enableFolderView:enableGroupingIntoCollections:enableMetrics:enableNormalizedItemByNameIDs:enableSlowResponseWarning:imageExtractionTimeoutMs:imageSavingConvention:isPortAuthorized:isStartupWizardCompleted:libraryMetadataRefreshConcurrency:libraryMonitorDelay:libraryScanFanoutConcurrency:logFileRetentionDays:maxAudiobookResume:maxResumePct:metadataCountryCode:metadataNetworkPath:metadataOptions:metadataPath:minAudiobookResume:minResumeDurationSeconds:minResumePct:pathSubstitutions:pluginRepositories:preferredMetadataLanguage:previousVersion:previousVersionStr:isQuickConnectAvailable:remoteClientBitrateLimit:isRemoveOldPlugins:isSaveMetadataHidden:serverName:isSkipDeserializationForBasicTypes:slowResponseThresholdMs:sortRemoveCharacters:sortRemoveWords:sortReplaceCharacters:uICulture:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"activityLogRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"allowClientLogUpload"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"codecsUsed"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NameValuePair","preciseIdentifier":"s:11JellyfinAPI13NameValuePairV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"corsHosts"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isDisableLiveTvChannelUserDataName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisplaySpecialsWithinSeasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableCaseSensitiveItemIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableExternalContentInSuggestions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableFolderView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableGroupingIntoCollections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMetrics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableNormalizedItemByNameIDs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSlowResponseWarning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageExtractionTimeoutMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"imageSavingConvention"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageSavingConvention","preciseIdentifier":"s:11JellyfinAPI21ImageSavingConventionO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPortAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryMetadataRefreshConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryMonitorDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryScanFanoutConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"logFileRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataNetworkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataOptions","preciseIdentifier":"s:11JellyfinAPI15MetadataOptionsV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minResumeDurationSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"pathSubstitutions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"PathSubstitution","preciseIdentifier":"s:11JellyfinAPI16PathSubstitutionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"pluginRepositories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"previousVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"previousVersionStr"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isQuickConnectAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRemoveOldPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveMetadataHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipDeserializationForBasicTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"slowResponseThresholdMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sortRemoveCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortRemoveWords"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"sortReplaceCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/init(activityLogRetentionDays:allowClientLogUpload:cachePath:codecsUsed:contentTypes:corsHosts:isDisableLiveTvChannelUserDataName:isDisplaySpecialsWithinSeasons:enableCaseSensitiveItemIDs:enableExternalContentInSuggestions:enableFolderView:enableGroupingIntoCollections:enableMetrics:enableNormalizedItemByNameIDs:enableSlowResponseWarning:imageExtractionTimeoutMs:imageSavingConvention:isPortAuthorized:isStartupWizardCompleted:libraryMetadataRefreshConcurrency:libraryMonitorDelay:libraryScanFanoutConcurrency:logFileRetentionDays:maxAudiobookResume:maxResumePct:metadataCountryCode:metadataNetworkPath:metadataOptions:metadataPath:minAudiobookResume:minResumeDurationSeconds:minResumePct:pathSubstitutions:pluginRepositories:preferredMetadataLanguage:previousVersion:previousVersionStr:isQuickConnectAvailable:remoteClientBitrateLimit:isRemoveOldPlugins:isSaveMetadataHidden:serverName:isSkipDeserializationForBasicTypes:slowResponseThresholdMs:sortRemoveCharacters:sortRemoveWords:sortReplaceCharacters:uICulture:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/init(activitylogretentiondays:allowclientlogupload:cachepath:codecsused:contenttypes:corshosts:isdisablelivetvchanneluserdataname:isdisplayspecialswithinseasons:enablecasesensitiveitemids:enableexternalcontentinsuggestions:enablefolderview:-7psqk"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution":{"role":"symbol","title":"PathSubstitution","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PathSubstitution"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Configuration.PathSubstitution."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PathSubstitution"}],"url":"\/documentation\/jellyfinapi\/pathsubstitution"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageSavingConvention":{"role":"symbol","title":"ImageSavingConvention","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageSavingConvention"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageSavingConvention","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageSavingConvention"}],"url":"\/documentation\/jellyfinapi\/imagesavingconvention"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/init(from:).json new file mode 100644 index 000000000..3dd2b2006 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19ServerConfigurationV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isdisablelivetvchanneluserdataname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isdisablelivetvchanneluserdataname.json new file mode 100644 index 000000000..2759e45c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isdisablelivetvchanneluserdataname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisableLiveTvChannelUserDataName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/isdisablelivetvchanneluserdataname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isDisableLiveTvChannelUserDataName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisableLiveTvChannelUserDataName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDisableLiveTvChannelUserDataName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV34isDisableLiveTvChannelUserDataNameSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isDisableLiveTvChannelUserDataName":{"role":"symbol","title":"isDisableLiveTvChannelUserDataName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisableLiveTvChannelUserDataName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isDisableLiveTvChannelUserDataName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isdisablelivetvchanneluserdataname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isdisplayspecialswithinseasons.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isdisplayspecialswithinseasons.json new file mode 100644 index 000000000..6ae65f7ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isdisplayspecialswithinseasons.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplaySpecialsWithinSeasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/isdisplayspecialswithinseasons"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isDisplaySpecialsWithinSeasons","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplaySpecialsWithinSeasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDisplaySpecialsWithinSeasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV30isDisplaySpecialsWithinSeasonsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isDisplaySpecialsWithinSeasons":{"role":"symbol","title":"isDisplaySpecialsWithinSeasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplaySpecialsWithinSeasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isDisplaySpecialsWithinSeasons","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isdisplayspecialswithinseasons"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isportauthorized.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isportauthorized.json new file mode 100644 index 000000000..6e92dbadb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isportauthorized.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPortAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/isportauthorized"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isPortAuthorized","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is port authorized."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPortAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPortAuthorized","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV16isPortAuthorizedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isPortAuthorized":{"role":"symbol","title":"isPortAuthorized","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPortAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is port authorized."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isPortAuthorized","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isportauthorized"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isquickconnectavailable.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isquickconnectavailable.json new file mode 100644 index 000000000..0bb4854e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isquickconnectavailable.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isQuickConnectAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/isquickconnectavailable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isQuickConnectAvailable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether quick connect is available for use on this server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isQuickConnectAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isQuickConnectAvailable","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV23isQuickConnectAvailableSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isQuickConnectAvailable":{"role":"symbol","title":"isQuickConnectAvailable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isQuickConnectAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether quick connect is available for use on this server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isQuickConnectAvailable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isquickconnectavailable"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isremoveoldplugins.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isremoveoldplugins.json new file mode 100644 index 000000000..5f740be66 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isremoveoldplugins.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemoveOldPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/isremoveoldplugins"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isRemoveOldPlugins","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemoveOldPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRemoveOldPlugins","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV18isRemoveOldPluginsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isRemoveOldPlugins":{"role":"symbol","title":"isRemoveOldPlugins","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRemoveOldPlugins"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isRemoveOldPlugins","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isremoveoldplugins"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/issavemetadatahidden.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/issavemetadatahidden.json new file mode 100644 index 000000000..034ae0176 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/issavemetadatahidden.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveMetadataHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/issavemetadatahidden"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isSaveMetadataHidden","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveMetadataHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSaveMetadataHidden","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV20isSaveMetadataHiddenSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isSaveMetadataHidden":{"role":"symbol","title":"isSaveMetadataHidden","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveMetadataHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isSaveMetadataHidden","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/issavemetadatahidden"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isskipdeserializationforbasictypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isskipdeserializationforbasictypes.json new file mode 100644 index 000000000..43e473477 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isskipdeserializationforbasictypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipDeserializationForBasicTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/isskipdeserializationforbasictypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isSkipDeserializationForBasicTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipDeserializationForBasicTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSkipDeserializationForBasicTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV34isSkipDeserializationForBasicTypesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isSkipDeserializationForBasicTypes":{"role":"symbol","title":"isSkipDeserializationForBasicTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipDeserializationForBasicTypes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isSkipDeserializationForBasicTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isskipdeserializationforbasictypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isstartupwizardcompleted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isstartupwizardcompleted.json new file mode 100644 index 000000000..ac9d713d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/isstartupwizardcompleted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/isstartupwizardcompleted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isStartupWizardCompleted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is first run."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStartupWizardCompleted","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV24isStartupWizardCompletedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/isStartupWizardCompleted":{"role":"symbol","title":"isStartupWizardCompleted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is first run."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/isStartupWizardCompleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/isstartupwizardcompleted"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/librarymetadatarefreshconcurrency.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/librarymetadatarefreshconcurrency.json new file mode 100644 index 000000000..149149a35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/librarymetadatarefreshconcurrency.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryMetadataRefreshConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/librarymetadatarefreshconcurrency"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryMetadataRefreshConcurrency","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the how many metadata refreshes can run concurrently."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryMetadataRefreshConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"libraryMetadataRefreshConcurrency","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV33libraryMetadataRefreshConcurrencys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/libraryMetadataRefreshConcurrency":{"role":"symbol","title":"libraryMetadataRefreshConcurrency","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryMetadataRefreshConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the how many metadata refreshes can run concurrently."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryMetadataRefreshConcurrency","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/librarymetadatarefreshconcurrency"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/librarymonitordelay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/librarymonitordelay.json new file mode 100644 index 000000000..2ede0888f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/librarymonitordelay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryMonitorDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Some delay is necessary with some items because their creation is not atomic. It involves the creation of several"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"different directories and files."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/librarymonitordelay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryMonitorDelay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added\/removed"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryMonitorDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"libraryMonitorDelay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV19libraryMonitorDelays5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/libraryMonitorDelay":{"role":"symbol","title":"libraryMonitorDelay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryMonitorDelay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added\/removed"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryMonitorDelay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/librarymonitordelay"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/libraryscanfanoutconcurrency.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/libraryscanfanoutconcurrency.json new file mode 100644 index 000000000..50fec7ea0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/libraryscanfanoutconcurrency.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryScanFanoutConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/libraryscanfanoutconcurrency"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryScanFanoutConcurrency","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the how the library scan fans out."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryScanFanoutConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"libraryScanFanoutConcurrency","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV28libraryScanFanoutConcurrencys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/libraryScanFanoutConcurrency":{"role":"symbol","title":"libraryScanFanoutConcurrency","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryScanFanoutConcurrency"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the how the library scan fans out."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/libraryScanFanoutConcurrency","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/libraryscanfanoutconcurrency"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/logfileretentiondays.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/logfileretentiondays.json new file mode 100644 index 000000000..d39079fa5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/logfileretentiondays.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logFileRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/logfileretentiondays"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/logFileRetentionDays","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the number of days we should retain log files."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logFileRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"logFileRetentionDays","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV20logFileRetentionDayss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/logFileRetentionDays":{"role":"symbol","title":"logFileRetentionDays","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logFileRetentionDays"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the number of days we should retain log files."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/logFileRetentionDays","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/logfileretentiondays"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/maxaudiobookresume.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/maxaudiobookresume.json new file mode 100644 index 000000000..dbf4a393b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/maxaudiobookresume.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/maxaudiobookresume"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/maxAudiobookResume","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxAudiobookResume","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV18maxAudiobookResumes5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/maxAudiobookResume":{"role":"symbol","title":"maxAudiobookResume","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/maxAudiobookResume","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/maxaudiobookresume"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/maxresumepct.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/maxresumepct.json new file mode 100644 index 000000000..b039874ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/maxresumepct.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/maxresumepct"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/maxResumePct","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxResumePct","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV12maxResumePcts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/maxResumePct":{"role":"symbol","title":"maxResumePct","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/maxResumePct","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/maxresumepct"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadatacountrycode.json new file mode 100644 index 000000000..bb5a491d7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadatanetworkpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadatanetworkpath.json new file mode 100644 index 000000000..756ab8c13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadatanetworkpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataNetworkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/metadatanetworkpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataNetworkPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataNetworkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataNetworkPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV19metadataNetworkPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/metadataNetworkPath":{"role":"symbol","title":"metadataNetworkPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataNetworkPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataNetworkPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/metadatanetworkpath"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadataoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadataoptions.json new file mode 100644 index 000000000..22bfe1da0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadataoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","preciseIdentifier":"s:11JellyfinAPI15MetadataOptionsV","text":"MetadataOptions"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/metadataoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataOptions","preciseIdentifier":"s:11JellyfinAPI15MetadataOptionsV"},{"kind":"text","text":"]?"}],"title":"metadataOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV15metadataOptionsSayAA08MetadataF0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/metadataOptions":{"role":"symbol","title":"metadataOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"MetadataOptions","preciseIdentifier":"s:11JellyfinAPI15MetadataOptionsV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/MetadataOptions":{"role":"symbol","title":"MetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MetadataOptions"}],"abstract":[{"type":"text","text":"Class MetadataOptions."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MetadataOptions"}],"url":"\/documentation\/jellyfinapi\/metadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadatapath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadatapath.json new file mode 100644 index 000000000..96fb27958 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/metadatapath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/metadatapath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV12metadataPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/metadataPath":{"role":"symbol","title":"metadataPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/metadataPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/metadatapath"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/minaudiobookresume.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/minaudiobookresume.json new file mode 100644 index 000000000..70b0edb3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/minaudiobookresume.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/minaudiobookresume"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minAudiobookResume","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minAudiobookResume","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV18minAudiobookResumes5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/minAudiobookResume":{"role":"symbol","title":"minAudiobookResume","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minAudiobookResume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minAudiobookResume","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/minaudiobookresume"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/minresumedurationseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/minresumedurationseconds.json new file mode 100644 index 000000000..299864c13 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/minresumedurationseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minResumeDurationSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/minresumedurationseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minResumeDurationSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates.."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minResumeDurationSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minResumeDurationSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV24minResumeDurationSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/minResumeDurationSeconds":{"role":"symbol","title":"minResumeDurationSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minResumeDurationSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates.."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minResumeDurationSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/minresumedurationseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/minresumepct.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/minresumepct.json new file mode 100644 index 000000000..a5564ef2a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/minresumepct.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/minresumepct"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minResumePct","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minResumePct","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV12minResumePcts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/minResumePct":{"role":"symbol","title":"minResumePct","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minResumePct"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/minResumePct","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/minresumepct"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/pathsubstitutions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/pathsubstitutions.json new file mode 100644 index 000000000..247c4d3ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/pathsubstitutions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathSubstitutions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","preciseIdentifier":"s:11JellyfinAPI16PathSubstitutionV","text":"PathSubstitution"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/pathsubstitutions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/pathSubstitutions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathSubstitutions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"PathSubstitution","preciseIdentifier":"s:11JellyfinAPI16PathSubstitutionV"},{"kind":"text","text":"]?"}],"title":"pathSubstitutions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV17pathSubstitutionsSayAA16PathSubstitutionVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/pathSubstitutions":{"role":"symbol","title":"pathSubstitutions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathSubstitutions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"PathSubstitution","preciseIdentifier":"s:11JellyfinAPI16PathSubstitutionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/pathSubstitutions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/pathsubstitutions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PathSubstitution":{"role":"symbol","title":"PathSubstitution","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PathSubstitution"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Configuration.PathSubstitution."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PathSubstitution","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PathSubstitution"}],"url":"\/documentation\/jellyfinapi\/pathsubstitution"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/pluginrepositories.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/pluginrepositories.json new file mode 100644 index 000000000..e2cb92716 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/pluginrepositories.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pluginRepositories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV","text":"RepositoryInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/pluginrepositories"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/pluginRepositories","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pluginRepositories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]?"}],"title":"pluginRepositories","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV18pluginRepositoriesSayAA14RepositoryInfoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/pluginRepositories":{"role":"symbol","title":"pluginRepositories","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pluginRepositories"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"RepositoryInfo","preciseIdentifier":"s:11JellyfinAPI14RepositoryInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/pluginRepositories","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/pluginrepositories"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/RepositoryInfo":{"role":"symbol","title":"RepositoryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RepositoryInfo"}],"abstract":[{"type":"text","text":"Class RepositoryInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RepositoryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RepositoryInfo"}],"url":"\/documentation\/jellyfinapi\/repositoryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/preferredmetadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/preferredmetadatalanguage.json new file mode 100644 index 000000000..ba2dd634b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/preferredmetadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/preferredmetadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/preferredMetadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the preferred metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"preferredMetadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV25preferredMetadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/preferredMetadataLanguage":{"role":"symbol","title":"preferredMetadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the preferred metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/preferredMetadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/preferredmetadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/previousversion.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/previousversion.json new file mode 100644 index 000000000..fc8019d6e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/previousversion.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/previousversion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/previousVersion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the last known version that was ran using the configuration."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"previousVersion","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV15previousVersionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/previousVersion":{"role":"symbol","title":"previousVersion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last known version that was ran using the configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/previousVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/previousversion"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/previousversionstr.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/previousversionstr.json new file mode 100644 index 000000000..24a5ed0d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/previousversionstr.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousVersionStr"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"because System.Version itself isn’t xml-serializable."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/previousversionstr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/previousVersionStr","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the stringified PreviousVersion to be stored\/loaded,"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousVersionStr"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"previousVersionStr","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV18previousVersionStrSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/previousVersionStr":{"role":"symbol","title":"previousVersionStr","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousVersionStr"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the stringified PreviousVersion to be stored\/loaded,"}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/previousVersionStr","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/previousversionstr"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/remoteclientbitratelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/remoteclientbitratelimit.json new file mode 100644 index 000000000..7aef5df5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/remoteclientbitratelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/remoteclientbitratelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/remoteClientBitrateLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"remoteClientBitrateLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV24remoteClientBitrateLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/remoteClientBitrateLimit":{"role":"symbol","title":"remoteClientBitrateLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/remoteClientBitrateLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/remoteclientbitratelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/servername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/servername.json new file mode 100644 index 000000000..d64672b52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/servername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/servername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/serverName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serverName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV10serverNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/serverName":{"role":"symbol","title":"serverName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/serverName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/servername"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/slowresponsethresholdms.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/slowresponsethresholdms.json new file mode 100644 index 000000000..7ccfccf5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/slowresponsethresholdms.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"slowResponseThresholdMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/slowresponsethresholdms"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/slowResponseThresholdMs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the threshold for the slow response time warning in ms."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"slowResponseThresholdMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"slowResponseThresholdMs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV23slowResponseThresholdMss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/slowResponseThresholdMs":{"role":"symbol","title":"slowResponseThresholdMs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"slowResponseThresholdMs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the threshold for the slow response time warning in ms."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/slowResponseThresholdMs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/slowresponsethresholdms"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/sortremovecharacters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/sortremovecharacters.json new file mode 100644 index 000000000..56b53c032 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/sortremovecharacters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortRemoveCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/sortremovecharacters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortRemoveCharacters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets characters to be removed from strings to create a sort name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortRemoveCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortRemoveCharacters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV20sortRemoveCharactersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/sortRemoveCharacters":{"role":"symbol","title":"sortRemoveCharacters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortRemoveCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets characters to be removed from strings to create a sort name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortRemoveCharacters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/sortremovecharacters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/sortremovewords.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/sortremovewords.json new file mode 100644 index 000000000..f0dae87f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/sortremovewords.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortRemoveWords"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/sortremovewords"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortRemoveWords","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets words to be removed from strings to create a sort name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortRemoveWords"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortRemoveWords","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV15sortRemoveWordsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/sortRemoveWords":{"role":"symbol","title":"sortRemoveWords","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortRemoveWords"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets words to be removed from strings to create a sort name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortRemoveWords","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/sortremovewords"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/sortreplacecharacters.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/sortreplacecharacters.json new file mode 100644 index 000000000..0cb8dd137 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/sortreplacecharacters.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortReplaceCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/sortreplacecharacters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortReplaceCharacters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets characters to be replaced with a ’ ’ in strings to create a sort name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortReplaceCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"sortReplaceCharacters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV21sortReplaceCharactersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/sortReplaceCharacters":{"role":"symbol","title":"sortReplaceCharacters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sortReplaceCharacters"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets characters to be replaced with a ’ ’ in strings to create a sort name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/sortReplaceCharacters","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/sortreplacecharacters"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/uiculture.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/uiculture.json new file mode 100644 index 000000000..be2303ff0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverconfiguration/uiculture.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverconfiguration\/uiculture"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/uICulture","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"uICulture","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerConfigurationV9uICultureSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration/uICulture":{"role":"symbol","title":"uICulture","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration\/uICulture","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverconfiguration\/uiculture"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerConfiguration":{"role":"symbol","title":"ServerConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConfiguration"}],"abstract":[{"type":"text","text":"Represents the server configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConfiguration"}],"url":"\/documentation\/jellyfinapi\/serverconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo.json new file mode 100644 index 000000000..b265341c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverdiscoveryinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The server discovery info model."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"title":"ServerDiscoveryInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI19ServerDiscoveryInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/init(address:endpointAddress:id:name:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/address","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/endpointAddress","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/id-6f2gx","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/name"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/address":{"role":"symbol","title":"address","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"address"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the address."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/address","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/address"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo":{"role":"symbol","title":"ServerDiscoveryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"abstract":[{"type":"text","text":"The server discovery info model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}],"url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/id-6f2gx":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the server identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/id-6f2gx","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/id-6f2gx"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/init(address:endpointAddress:id:name:)":{"role":"symbol","title":"init(address:endpointAddress:id:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"address"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endpointAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/init(address:endpointAddress:id:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/init(address:endpointaddress:id:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/endpointAddress":{"role":"symbol","title":"endpointAddress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endpointAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the endpoint address."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/endpointAddress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/endpointaddress"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/address.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/address.json new file mode 100644 index 000000000..307910bc7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/address.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"address"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverdiscoveryinfo\/address"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/address","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the address."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"address"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"address","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerDiscoveryInfoV7addressSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/address":{"role":"symbol","title":"address","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"address"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the address."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/address","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/address"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo":{"role":"symbol","title":"ServerDiscoveryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"abstract":[{"type":"text","text":"The server discovery info model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}],"url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/endpointaddress.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/endpointaddress.json new file mode 100644 index 000000000..0149f6dfa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/endpointaddress.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endpointAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverdiscoveryinfo\/endpointaddress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/endpointAddress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the endpoint address."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endpointAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"endpointAddress","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerDiscoveryInfoV15endpointAddressSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo":{"role":"symbol","title":"ServerDiscoveryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"abstract":[{"type":"text","text":"The server discovery info model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}],"url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/endpointAddress":{"role":"symbol","title":"endpointAddress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endpointAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the endpoint address."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/endpointAddress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/endpointaddress"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/id-6f2gx.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/id-6f2gx.json new file mode 100644 index 000000000..501d10a3d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/id-6f2gx.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverdiscoveryinfo\/id-6f2gx"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/id-6f2gx","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the server identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerDiscoveryInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/id-6f2gx":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the server identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/id-6f2gx","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/id-6f2gx"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo":{"role":"symbol","title":"ServerDiscoveryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"abstract":[{"type":"text","text":"The server discovery info model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}],"url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/id-v6yc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/id-v6yc.json new file mode 100644 index 000000000..2236db931 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/id-v6yc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverdiscoveryinfo\/id-v6yc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/id-v6yc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI19ServerDiscoveryInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo":{"role":"symbol","title":"ServerDiscoveryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"abstract":[{"type":"text","text":"The server discovery info model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}],"url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/id-v6yc":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/id-v6yc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/id-v6yc"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/identifiable-implementations.json new file mode 100644 index 000000000..e77983293 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/serverdiscoveryinfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/id-v6yc"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo":{"role":"symbol","title":"ServerDiscoveryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"abstract":[{"type":"text","text":"The server discovery info model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}],"url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/id-v6yc":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/id-v6yc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/id-v6yc"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/init(address:endpointaddress:id:name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/init(address:endpointaddress:id:name:).json new file mode 100644 index 000000000..8fd83b9cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/init(address:endpointaddress:id:name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"address"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"endpointAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverdiscoveryinfo\/init(address:endpointaddress:id:name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/init(address:endpointAddress:id:name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"address"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endpointAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(address:endpointAddress:id:name:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19ServerDiscoveryInfoV7address15endpointAddress2id4nameACSSSg_A3Htcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo":{"role":"symbol","title":"ServerDiscoveryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"abstract":[{"type":"text","text":"The server discovery info model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}],"url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/init(address:endpointAddress:id:name:)":{"role":"symbol","title":"init(address:endpointAddress:id:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"address"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endpointAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/init(address:endpointAddress:id:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/init(address:endpointaddress:id:name:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/init(from:).json new file mode 100644 index 000000000..e35aa478d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverdiscoveryinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19ServerDiscoveryInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo":{"role":"symbol","title":"ServerDiscoveryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"abstract":[{"type":"text","text":"The server discovery info model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}],"url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/name.json new file mode 100644 index 000000000..2c7810e71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/serverdiscoveryinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/serverdiscoveryinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19ServerDiscoveryInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/ServerDiscoveryInfo":{"role":"symbol","title":"ServerDiscoveryInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerDiscoveryInfo"}],"abstract":[{"type":"text","text":"The server discovery info model."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ServerDiscoveryInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerDiscoveryInfo"}],"url":"\/documentation\/jellyfinapi\/serverdiscoveryinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo.json new file mode 100644 index 000000000..413580c66 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SessionInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"title":"SessionInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11SessionInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/init(additionalUsers:applicationVersion:capabilities:client:deviceID:deviceName:deviceType:fullNowPlayingItem:hasCustomDeviceName:id:isActive:lastActivityDate:lastPlaybackCheckIn:nowPlayingItem:nowPlayingQueue:nowPlayingQueueFullItems:nowViewingItem:playState:playableMediaTypes:playlistItemID:remoteEndPoint:serverID:supportedCommands:isSupportsMediaControl:isSupportsRemoteControl:transcodingInfo:userID:userName:userPrimaryImageTag:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/additionalUsers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/applicationVersion","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/capabilities","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/client","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/fullNowPlayingItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/hasCustomDeviceName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/id-4ntyr","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isActive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isSupportsMediaControl","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isSupportsRemoteControl","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/lastActivityDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/lastPlaybackCheckIn","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingQueue","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingQueueFullItems","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowViewingItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playState","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playableMediaTypes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playlistItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/remoteEndPoint","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/serverID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/supportedCommands","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/transcodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userPrimaryImageTag"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the device id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/nowViewingItem":{"role":"symbol","title":"nowViewingItem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowViewingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowViewingItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/nowviewingitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/id-4ntyr":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/id-4ntyr","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/id-4ntyr"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/userName":{"role":"symbol","title":"userName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the username."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/username"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/isSupportsMediaControl":{"role":"symbol","title":"isSupportsMediaControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isSupportsMediaControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/issupportsmediacontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/lastActivityDate":{"role":"symbol","title":"lastActivityDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last activity date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/lastActivityDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/lastactivitydate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/hasCustomDeviceName":{"role":"symbol","title":"hasCustomDeviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasCustomDeviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/hasCustomDeviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/hascustomdevicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/remoteEndPoint":{"role":"symbol","title":"remoteEndPoint","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteEndPoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the remote end point."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/remoteEndPoint","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/remoteendpoint"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/additionalUsers":{"role":"symbol","title":"additionalUsers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"additionalUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SessionUserInfo","preciseIdentifier":"s:11JellyfinAPI15SessionUserInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/additionalUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/additionalusers"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/nowPlayingQueueFullItems":{"role":"symbol","title":"nowPlayingQueueFullItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueueFullItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingQueueFullItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/nowplayingqueuefullitems"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/deviceType":{"role":"symbol","title":"deviceType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/devicetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/nowPlayingQueue":{"role":"symbol","title":"nowPlayingQueue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/nowplayingqueue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/init(additionalUsers:applicationVersion:capabilities:client:deviceID:deviceName:deviceType:fullNowPlayingItem:hasCustomDeviceName:id:isActive:lastActivityDate:lastPlaybackCheckIn:nowPlayingItem:nowPlayingQueue:nowPlayingQueueFullItems:nowViewingItem:playState:playableMediaTypes:playlistItemID:remoteEndPoint:serverID:supportedCommands:isSupportsMediaControl:isSupportsRemoteControl:transcodingInfo:userID:userName:userPrimaryImageTag:)":{"role":"symbol","title":"init(additionalUsers:applicationVersion:capabilities:client:deviceID:deviceName:deviceType:fullNowPlayingItem:hasCustomDeviceName:id:isActive:lastActivityDate:lastPlaybackCheckIn:nowPlayingItem:nowPlayingQueue:nowPlayingQueueFullItems:nowViewingItem:playState:playableMediaTypes:playlistItemID:remoteEndPoint:serverID:supportedCommands:isSupportsMediaControl:isSupportsRemoteControl:transcodingInfo:userID:userName:userPrimaryImageTag:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"additionalUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SessionUserInfo","preciseIdentifier":"s:11JellyfinAPI15SessionUserInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"applicationVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fullNowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItem","preciseIdentifier":"s:11JellyfinAPI8BaseItemV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasCustomDeviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastPlaybackCheckIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nowPlayingQueueFullItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nowViewingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playState"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayerStateInfo","preciseIdentifier":"s:11JellyfinAPI15PlayerStateInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteEndPoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsRemoteControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodingInfo","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/init(additionalUsers:applicationVersion:capabilities:client:deviceID:deviceName:deviceType:fullNowPlayingItem:hasCustomDeviceName:id:isActive:lastActivityDate:lastPlaybackCheckIn:nowPlayingItem:nowPlayingQueue:nowPlayingQueueFullItems:nowViewingItem:playState:playableMediaTypes:playlistItemID:remoteEndPoint:serverID:supportedCommands:isSupportsMediaControl:isSupportsRemoteControl:transcodingInfo:userID:userName:userPrimaryImageTag:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/init(additionalusers:applicationversion:capabilities:client:deviceid:devicename:devicetype:fullnowplayingitem:hascustomdevicename:id:isactive:lastactivitydate:lastplaybackcheckin:nowplayingitem:nowplayingqueue:nowplayingqueuefullitems:nowvi-3zg9"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/applicationVersion":{"role":"symbol","title":"applicationVersion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"applicationVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the application version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/applicationVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/applicationversion"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/client":{"role":"symbol","title":"client","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/client","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/client"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/playableMediaTypes":{"role":"symbol","title":"playableMediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets the playable media types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playableMediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/playablemediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/isSupportsRemoteControl":{"role":"symbol","title":"isSupportsRemoteControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsRemoteControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isSupportsRemoteControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/issupportsremotecontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/nowPlayingItem":{"role":"symbol","title":"nowPlayingItem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/nowplayingitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/supportedCommands":{"role":"symbol","title":"supportedCommands","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets the supported commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/supportedCommands","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/supportedcommands"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/transcodingInfo":{"role":"symbol","title":"transcodingInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodingInfo","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/transcodingInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/userPrimaryImageTag":{"role":"symbol","title":"userPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/userprimaryimagetag"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/lastPlaybackCheckIn":{"role":"symbol","title":"lastPlaybackCheckIn","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastPlaybackCheckIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last playback check in."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/lastPlaybackCheckIn","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/lastplaybackcheckin"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/isActive":{"role":"symbol","title":"isActive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets a value indicating whether this instance is active."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isActive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/isactive"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/playState":{"role":"symbol","title":"playState","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playState"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayerStateInfo","preciseIdentifier":"s:11JellyfinAPI15PlayerStateInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playState","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/playstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/fullNowPlayingItem":{"role":"symbol","title":"fullNowPlayingItem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullNowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItem","preciseIdentifier":"s:11JellyfinAPI8BaseItemV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/fullNowPlayingItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/fullnowplayingitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/deviceName":{"role":"symbol","title":"deviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/devicename"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/capabilities":{"role":"symbol","title":"capabilities","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/capabilities","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/capabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/additionalusers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/additionalusers.json new file mode 100644 index 000000000..7e48f239f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/additionalusers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"additionalUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","preciseIdentifier":"s:11JellyfinAPI15SessionUserInfoV","text":"SessionUserInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/additionalusers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/additionalUsers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"additionalUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SessionUserInfo","preciseIdentifier":"s:11JellyfinAPI15SessionUserInfoV"},{"kind":"text","text":"]?"}],"title":"additionalUsers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV15additionalUsersSayAA0c4UserD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo":{"role":"symbol","title":"SessionUserInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionUserInfo"}],"abstract":[{"type":"text","text":"Class SessionUserInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionUserInfo"}],"url":"\/documentation\/jellyfinapi\/sessionuserinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/additionalUsers":{"role":"symbol","title":"additionalUsers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"additionalUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SessionUserInfo","preciseIdentifier":"s:11JellyfinAPI15SessionUserInfoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/additionalUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/additionalusers"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/applicationversion.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/applicationversion.json new file mode 100644 index 000000000..a37575ed0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/applicationversion.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"applicationVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/applicationversion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/applicationVersion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the application version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"applicationVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"applicationVersion","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV18applicationVersionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/applicationVersion":{"role":"symbol","title":"applicationVersion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"applicationVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the application version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/applicationVersion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/applicationversion"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/capabilities.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/capabilities.json new file mode 100644 index 000000000..d03534223 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/capabilities.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV","text":"ClientCapabilities"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/capabilities"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/capabilities","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?"}],"title":"capabilities","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV12capabilitiesAA18ClientCapabilitiesVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/capabilities":{"role":"symbol","title":"capabilities","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/capabilities","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/capabilities"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/client.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/client.json new file mode 100644 index 000000000..160b7bb18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/client.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/client"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/client","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the client."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"client","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV6clientSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/client":{"role":"symbol","title":"client","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the client."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/client","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/client"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/deviceid.json new file mode 100644 index 000000000..c4f84995d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the device id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the device id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/devicename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/devicename.json new file mode 100644 index 000000000..a8dd83aaf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/devicename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/devicename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the device."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV10deviceNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/deviceName":{"role":"symbol","title":"deviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/devicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/devicetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/devicetype.json new file mode 100644 index 000000000..db903b9a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/devicetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/devicetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the device."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV10deviceTypeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/deviceType":{"role":"symbol","title":"deviceType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/deviceType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/devicetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/fullnowplayingitem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/fullnowplayingitem.json new file mode 100644 index 000000000..725f5d639 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/fullnowplayingitem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullNowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","preciseIdentifier":"s:11JellyfinAPI8BaseItemV","text":"BaseItem"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/fullnowplayingitem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/fullNowPlayingItem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class BaseItem."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullNowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItem","preciseIdentifier":"s:11JellyfinAPI8BaseItemV"},{"kind":"text","text":"?"}],"title":"fullNowPlayingItem","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV18fullNowPlayingItemAA04BaseH0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/fullNowPlayingItem":{"role":"symbol","title":"fullNowPlayingItem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullNowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItem","preciseIdentifier":"s:11JellyfinAPI8BaseItemV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/fullNowPlayingItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/fullnowplayingitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/hascustomdevicename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/hascustomdevicename.json new file mode 100644 index 000000000..bbbd6292e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/hascustomdevicename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasCustomDeviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/hascustomdevicename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/hasCustomDeviceName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasCustomDeviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasCustomDeviceName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV19hasCustomDeviceNameSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/hasCustomDeviceName":{"role":"symbol","title":"hasCustomDeviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasCustomDeviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/hasCustomDeviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/hascustomdevicename"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/id-4ntyr.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/id-4ntyr.json new file mode 100644 index 000000000..78dfdba21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/id-4ntyr.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/id-4ntyr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/id-4ntyr","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/id-4ntyr":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/id-4ntyr","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/id-4ntyr"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/id-jgpl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/id-jgpl.json new file mode 100644 index 000000000..4bbae965e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/id-jgpl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/id-jgpl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/id-jgpl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI11SessionInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/id-jgpl":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/id-jgpl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/id-jgpl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/identifiable-implementations.json new file mode 100644 index 000000000..30e95ee63 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/id-jgpl"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/id-jgpl":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/id-jgpl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/id-jgpl"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/init(additionalusers:applicationversion:capabilities:client:deviceid:devicename:devicetype:fullnowplayingitem:hascustomdevicename:id:isactive:lastactivitydate:lastplaybackcheckin:nowplayingitem:nowplayingqueue:nowplayingqueuefullitems:nowvi-3zg9.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/init(additionalusers:applicationversion:capabilities:client:deviceid:devicename:devicetype:fullnowplayingitem:hascustomdevicename:id:isactive:lastactivitydate:lastplaybackcheckin:nowplayingitem:nowplayingqueue:nowplayingqueuefullitems:nowvi-3zg9.json new file mode 100644 index 000000000..176cf9f0e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/init(additionalusers:applicationversion:capabilities:client:deviceid:devicename:devicetype:fullnowplayingitem:hascustomdevicename:id:isactive:lastactivitydate:lastplaybackcheckin:nowplayingitem:nowplayingqueue:nowplayingqueuefullitems:nowvi-3zg9.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"additionalUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","preciseIdentifier":"s:11JellyfinAPI15SessionUserInfoV","text":"SessionUserInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"applicationVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV","text":"ClientCapabilities"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"fullNowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","preciseIdentifier":"s:11JellyfinAPI8BaseItemV","text":"BaseItem"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasCustomDeviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lastPlaybackCheckIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV","text":"QueueItem"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"nowPlayingQueueFullItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"nowViewingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playState"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","preciseIdentifier":"s:11JellyfinAPI15PlayerStateInfoV","text":"PlayerStateInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"remoteEndPoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO","text":"GeneralCommandType"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsRemoteControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV","text":"TranscodingInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/init(additionalusers:applicationversion:capabilities:client:deviceid:devicename:devicetype:fullnowplayingitem:hascustomdevicename:id:isactive:lastactivitydate:lastplaybackcheckin:nowplayingitem:nowplayingqueue:nowplayingqueuefullitems:nowvi-3zg9"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/init(additionalUsers:applicationVersion:capabilities:client:deviceID:deviceName:deviceType:fullNowPlayingItem:hasCustomDeviceName:id:isActive:lastActivityDate:lastPlaybackCheckIn:nowPlayingItem:nowPlayingQueue:nowPlayingQueueFullItems:nowViewingItem:playState:playableMediaTypes:playlistItemID:remoteEndPoint:serverID:supportedCommands:isSupportsMediaControl:isSupportsRemoteControl:transcodingInfo:userID:userName:userPrimaryImageTag:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"additionalUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SessionUserInfo","preciseIdentifier":"s:11JellyfinAPI15SessionUserInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"applicationVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fullNowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItem","preciseIdentifier":"s:11JellyfinAPI8BaseItemV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasCustomDeviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastPlaybackCheckIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nowPlayingQueueFullItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nowViewingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playState"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayerStateInfo","preciseIdentifier":"s:11JellyfinAPI15PlayerStateInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteEndPoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsRemoteControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodingInfo","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(additionalUsers:applicationVersion:capabilities:client:deviceID:deviceName:deviceType:fullNowPlayingItem:hasCustomDeviceName:id:isActive:lastActivityDate:lastPlaybackCheckIn:nowPlayingItem:nowPlayingQueue:nowPlayingQueueFullItems:nowViewingItem:playState:playableMediaTypes:playlistItemID:remoteEndPoint:serverID:supportedCommands:isSupportsMediaControl:isSupportsRemoteControl:transcodingInfo:userID:userName:userPrimaryImageTag:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11SessionInfoV15additionalUsers18applicationVersion12capabilities6client8deviceID0K4Name0K4Type18fullNowPlayingItem015hasCustomDeviceM02id8isActive16lastActivityDate0Y15PlaybackCheckIn03nowqR003nowQ5Queue03nowQ14QueueFullItems010nowViewingR09playState18playableMediaTypes08playlistrL014remoteEndPoint06serverL017supportedCommands0W20SupportsMediaControl0W21SupportsRemoteControl011transcodingD004userL004userM019userPrimaryImageTagACSayAA0c4UserD0VGSg_SSSgAA18ClientCapabilitiesVSgA9_A9_A9_A9_AA04BaseR0VSgSbSgA9_A16_10Foundation4DateVSgA20_AA04BaseR3DtoVSgSayAA05QueueR0VGSgSayA22_GSgA23_AA011PlayerStateD0VSgSaySSGSgA9_A9_A9_SayAA014GeneralCommandN0OGSgA16_A16_AA011TranscodingD0VSgA17_4UUIDVSgA9_A9_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItem":{"role":"symbol","title":"BaseItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItem"}],"abstract":[{"type":"text","text":"Class BaseItem."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItem"}],"url":"\/documentation\/jellyfinapi\/baseitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/init(additionalUsers:applicationVersion:capabilities:client:deviceID:deviceName:deviceType:fullNowPlayingItem:hasCustomDeviceName:id:isActive:lastActivityDate:lastPlaybackCheckIn:nowPlayingItem:nowPlayingQueue:nowPlayingQueueFullItems:nowViewingItem:playState:playableMediaTypes:playlistItemID:remoteEndPoint:serverID:supportedCommands:isSupportsMediaControl:isSupportsRemoteControl:transcodingInfo:userID:userName:userPrimaryImageTag:)":{"role":"symbol","title":"init(additionalUsers:applicationVersion:capabilities:client:deviceID:deviceName:deviceType:fullNowPlayingItem:hasCustomDeviceName:id:isActive:lastActivityDate:lastPlaybackCheckIn:nowPlayingItem:nowPlayingQueue:nowPlayingQueueFullItems:nowViewingItem:playState:playableMediaTypes:playlistItemID:remoteEndPoint:serverID:supportedCommands:isSupportsMediaControl:isSupportsRemoteControl:transcodingInfo:userID:userName:userPrimaryImageTag:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"additionalUsers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"SessionUserInfo","preciseIdentifier":"s:11JellyfinAPI15SessionUserInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"applicationVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"capabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ClientCapabilities","preciseIdentifier":"s:11JellyfinAPI18ClientCapabilitiesV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"fullNowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItem","preciseIdentifier":"s:11JellyfinAPI8BaseItemV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasCustomDeviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastPlaybackCheckIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nowPlayingQueueFullItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"nowViewingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playState"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayerStateInfo","preciseIdentifier":"s:11JellyfinAPI15PlayerStateInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteEndPoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsRemoteControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodingInfo","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/init(additionalUsers:applicationVersion:capabilities:client:deviceID:deviceName:deviceType:fullNowPlayingItem:hasCustomDeviceName:id:isActive:lastActivityDate:lastPlaybackCheckIn:nowPlayingItem:nowPlayingQueue:nowPlayingQueueFullItems:nowViewingItem:playState:playableMediaTypes:playlistItemID:remoteEndPoint:serverID:supportedCommands:isSupportsMediaControl:isSupportsRemoteControl:transcodingInfo:userID:userName:userPrimaryImageTag:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/init(additionalusers:applicationversion:capabilities:client:deviceid:devicename:devicetype:fullnowplayingitem:hascustomdevicename:id:isactive:lastactivitydate:lastplaybackcheckin:nowplayingitem:nowplayingqueue:nowplayingqueuefullitems:nowvi-3zg9"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo":{"role":"symbol","title":"SessionUserInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionUserInfo"}],"abstract":[{"type":"text","text":"Class SessionUserInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionUserInfo"}],"url":"\/documentation\/jellyfinapi\/sessionuserinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/ClientCapabilities":{"role":"symbol","title":"ClientCapabilities","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ClientCapabilities"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ClientCapabilities","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ClientCapabilities"}],"url":"\/documentation\/jellyfinapi\/clientcapabilities"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/init(from:).json new file mode 100644 index 000000000..e32094241 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11SessionInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/isactive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/isactive.json new file mode 100644 index 000000000..877722b21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/isactive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/isactive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isActive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets a value indicating whether this instance is active."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isActive","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV8isActiveSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/isActive":{"role":"symbol","title":"isActive","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets a value indicating whether this instance is active."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isActive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/isactive"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/issupportsmediacontrol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/issupportsmediacontrol.json new file mode 100644 index 000000000..05e3975e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/issupportsmediacontrol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/issupportsmediacontrol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isSupportsMediaControl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsMediaControl","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV22isSupportsMediaControlSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/isSupportsMediaControl":{"role":"symbol","title":"isSupportsMediaControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsMediaControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isSupportsMediaControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/issupportsmediacontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/issupportsremotecontrol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/issupportsremotecontrol.json new file mode 100644 index 000000000..dbf4b1da3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/issupportsremotecontrol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsRemoteControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/issupportsremotecontrol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isSupportsRemoteControl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsRemoteControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsRemoteControl","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV23isSupportsRemoteControlSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/isSupportsRemoteControl":{"role":"symbol","title":"isSupportsRemoteControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsRemoteControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/isSupportsRemoteControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/issupportsremotecontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/lastactivitydate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/lastactivitydate.json new file mode 100644 index 000000000..12f7f199c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/lastactivitydate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/lastactivitydate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/lastActivityDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the last activity date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"lastActivityDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV16lastActivityDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/lastActivityDate":{"role":"symbol","title":"lastActivityDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last activity date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/lastActivityDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/lastactivitydate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/lastplaybackcheckin.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/lastplaybackcheckin.json new file mode 100644 index 000000000..408172b5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/lastplaybackcheckin.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastPlaybackCheckIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/lastplaybackcheckin"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/lastPlaybackCheckIn","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the last playback check in."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastPlaybackCheckIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"lastPlaybackCheckIn","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV19lastPlaybackCheckIn10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/lastPlaybackCheckIn":{"role":"symbol","title":"lastPlaybackCheckIn","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastPlaybackCheckIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last playback check in."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/lastPlaybackCheckIn","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/lastplaybackcheckin"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowplayingitem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowplayingitem.json new file mode 100644 index 000000000..711d7fb55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowplayingitem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This holds information about a BaseItem in a format that is convenient for the client."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/nowplayingitem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingItem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"title":"nowPlayingItem","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV14nowPlayingItemAA04BaseG3DtoVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/nowPlayingItem":{"role":"symbol","title":"nowPlayingItem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/nowplayingitem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowplayingqueue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowplayingqueue.json new file mode 100644 index 000000000..a860960ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowplayingqueue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV","text":"QueueItem"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/nowplayingqueue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingQueue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"title":"nowPlayingQueue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV15nowPlayingQueueSayAA0G4ItemVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/QueueItem":{"role":"symbol","title":"QueueItem","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"QueueItem"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/QueueItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"QueueItem"}],"url":"\/documentation\/jellyfinapi\/queueitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/nowPlayingQueue":{"role":"symbol","title":"nowPlayingQueue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"QueueItem","preciseIdentifier":"s:11JellyfinAPI9QueueItemV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingQueue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/nowplayingqueue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowplayingqueuefullitems.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowplayingqueuefullitems.json new file mode 100644 index 000000000..50cade214 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowplayingqueuefullitems.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueueFullItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/nowplayingqueuefullitems"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingQueueFullItems","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueueFullItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"title":"nowPlayingQueueFullItems","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV24nowPlayingQueueFullItemsSayAA11BaseItemDtoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/nowPlayingQueueFullItems":{"role":"symbol","title":"nowPlayingQueueFullItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowPlayingQueueFullItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowPlayingQueueFullItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/nowplayingqueuefullitems"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowviewingitem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowviewingitem.json new file mode 100644 index 000000000..52adf0eb6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/nowviewingitem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowViewingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This holds information about a BaseItem in a format that is convenient for the client."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/nowviewingitem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowViewingItem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowViewingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"title":"nowViewingItem","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV14nowViewingItemAA04BaseG3DtoVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/nowViewingItem":{"role":"symbol","title":"nowViewingItem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"nowViewingItem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/nowViewingItem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/nowviewingitem"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/playablemediatypes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/playablemediatypes.json new file mode 100644 index 000000000..47ac3013f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/playablemediatypes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/playablemediatypes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playableMediaTypes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the playable media types."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"playableMediaTypes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV18playableMediaTypesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/playableMediaTypes":{"role":"symbol","title":"playableMediaTypes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playableMediaTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets the playable media types."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playableMediaTypes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/playablemediatypes"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/playlistitemid.json new file mode 100644 index 000000000..2ce5ca5ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV14playlistItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/playstate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/playstate.json new file mode 100644 index 000000000..f0b9619ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/playstate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playState"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","preciseIdentifier":"s:11JellyfinAPI15PlayerStateInfoV","text":"PlayerStateInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/playstate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playState","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playState"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayerStateInfo","preciseIdentifier":"s:11JellyfinAPI15PlayerStateInfoV"},{"kind":"text","text":"?"}],"title":"playState","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV9playStateAA06PlayerfD0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/PlayerStateInfo":{"role":"symbol","title":"PlayerStateInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayerStateInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/PlayerStateInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PlayerStateInfo"}],"url":"\/documentation\/jellyfinapi\/playerstateinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/playState":{"role":"symbol","title":"playState","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playState"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayerStateInfo","preciseIdentifier":"s:11JellyfinAPI15PlayerStateInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/playState","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/playstate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/remoteendpoint.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/remoteendpoint.json new file mode 100644 index 000000000..3669d9f5d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/remoteendpoint.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteEndPoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/remoteendpoint"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/remoteEndPoint","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the remote end point."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteEndPoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"remoteEndPoint","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV14remoteEndPointSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/remoteEndPoint":{"role":"symbol","title":"remoteEndPoint","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteEndPoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the remote end point."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/remoteEndPoint","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/remoteendpoint"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/serverid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/serverid.json new file mode 100644 index 000000000..bc49313dc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/serverid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/serverid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/serverID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serverID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV8serverIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/supportedcommands.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/supportedcommands.json new file mode 100644 index 000000000..d43e53dae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/supportedcommands.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO","text":"GeneralCommandType"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/supportedcommands"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/supportedCommands","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the supported commands."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"title":"supportedCommands","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV17supportedCommandsSayAA18GeneralCommandTypeOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/supportedCommands":{"role":"symbol","title":"supportedCommands","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedCommands"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeneralCommandType","preciseIdentifier":"s:11JellyfinAPI18GeneralCommandTypeO"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets the supported commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/supportedCommands","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/supportedcommands"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/GeneralCommandType":{"role":"symbol","title":"GeneralCommandType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeneralCommandType"}],"abstract":[{"type":"text","text":"This exists simply to identify a set of known commands."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GeneralCommandType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeneralCommandType"}],"url":"\/documentation\/jellyfinapi\/generalcommandtype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/transcodinginfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/transcodinginfo.json new file mode 100644 index 000000000..6e6698e8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/transcodinginfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV","text":"TranscodingInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/transcodinginfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/transcodingInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodingInfo","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV"},{"kind":"text","text":"?"}],"title":"transcodingInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV011transcodingD0AA011TranscodingD0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/transcodingInfo":{"role":"symbol","title":"transcodingInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodingInfo","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/transcodingInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/userid.json new file mode 100644 index 000000000..037e630f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the user id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/username.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/username.json new file mode 100644 index 000000000..a840a694b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/username.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/username"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the username."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"userName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV8userNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/userName":{"role":"symbol","title":"userName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the username."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/username"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/userprimaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/userprimaryimagetag.json new file mode 100644 index 000000000..64d866da8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessioninfo/userprimaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessioninfo\/userprimaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userPrimaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"userPrimaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11SessionInfoV19userPrimaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo/userPrimaryImageTag":{"role":"symbol","title":"userPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo\/userPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessioninfo\/userprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionInfo":{"role":"symbol","title":"SessionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionInfo"}],"abstract":[{"type":"text","text":"Class SessionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionInfo"}],"url":"\/documentation\/jellyfinapi\/sessioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype.json new file mode 100644 index 000000000..32ffde581 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"title":"SessionMessageType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI18SessionMessageTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntry","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntryStart","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntryStop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/forceKeepAlive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/generalCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/keepAlive","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/libraryChanged","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationCancelled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationCompleted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationFailed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstalling","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageUninstalled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/play","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/playstate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/refreshProgress","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/restartRequired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTaskEnded","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfoStart","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfoStop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/seriesTimerCancelled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/seriesTimerCreated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/serverRestarting","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/serverShuttingDown","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessionsStart","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessionsStop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/syncPlayCommand","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/syncPlayGroupUpdate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/timerCancelled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/timerCreated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userDataChanged","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userDeleted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userUpdated"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/scheduledTasksInfo":{"role":"symbol","title":"SessionMessageType.scheduledTasksInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtasksinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/packageInstalling":{"role":"symbol","title":"SessionMessageType.packageInstalling","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstalling"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstalling","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstalling"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/activityLogEntryStart":{"role":"symbol","title":"SessionMessageType.activityLogEntryStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntryStart"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntryStart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/activitylogentrystart"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/playstate":{"role":"symbol","title":"SessionMessageType.playstate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playstate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/playstate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/playstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/sessionsStop":{"role":"symbol","title":"SessionMessageType.sessionsStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionsStop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessionsStop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/sessionsstop"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/play":{"role":"symbol","title":"SessionMessageType.play","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/play","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/play"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/syncPlayCommand":{"role":"symbol","title":"SessionMessageType.syncPlayCommand","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/syncPlayCommand","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/syncplaycommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/forceKeepAlive":{"role":"symbol","title":"SessionMessageType.forceKeepAlive","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"forceKeepAlive"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/forceKeepAlive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/forcekeepalive"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/serverRestarting":{"role":"symbol","title":"SessionMessageType.serverRestarting","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverRestarting"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/serverRestarting","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/serverrestarting"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/seriesTimerCancelled":{"role":"symbol","title":"SessionMessageType.seriesTimerCancelled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerCancelled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/seriesTimerCancelled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/seriestimercancelled"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/packageInstallationFailed":{"role":"symbol","title":"SessionMessageType.packageInstallationFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationFailed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationFailed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstallationfailed"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/refreshProgress":{"role":"symbol","title":"SessionMessageType.refreshProgress","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshProgress"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/refreshProgress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/refreshprogress"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/activityLogEntry":{"role":"symbol","title":"SessionMessageType.activityLogEntry","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntry"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntry","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/serverShuttingDown":{"role":"symbol","title":"SessionMessageType.serverShuttingDown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverShuttingDown"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/serverShuttingDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/servershuttingdown"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/seriesTimerCreated":{"role":"symbol","title":"SessionMessageType.seriesTimerCreated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerCreated"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/seriesTimerCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/seriestimercreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/generalCommand":{"role":"symbol","title":"SessionMessageType.generalCommand","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"generalCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/generalCommand","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/generalcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/scheduledTasksInfoStop":{"role":"symbol","title":"SessionMessageType.scheduledTasksInfoStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfoStop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfoStop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtasksinfostop"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/sessions":{"role":"symbol","title":"SessionMessageType.sessions","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/sessions"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/equatable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/keepAlive":{"role":"symbol","title":"SessionMessageType.keepAlive","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepAlive"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/keepAlive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/keepalive"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/userDataChanged":{"role":"symbol","title":"SessionMessageType.userDataChanged","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userDataChanged"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userDataChanged","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/userdatachanged"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/timerCancelled":{"role":"symbol","title":"SessionMessageType.timerCancelled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerCancelled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/timerCancelled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/timercancelled"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/userDeleted":{"role":"symbol","title":"SessionMessageType.userDeleted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userDeleted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userDeleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/userdeleted"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/scheduledTasksInfoStart":{"role":"symbol","title":"SessionMessageType.scheduledTasksInfoStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfoStart"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfoStart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtasksinfostart"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/activityLogEntryStop":{"role":"symbol","title":"SessionMessageType.activityLogEntryStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntryStop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntryStop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/activitylogentrystop"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/packageUninstalled":{"role":"symbol","title":"SessionMessageType.packageUninstalled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageUninstalled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageUninstalled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/packageuninstalled"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/scheduledTaskEnded":{"role":"symbol","title":"SessionMessageType.scheduledTaskEnded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTaskEnded"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTaskEnded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtaskended"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/timerCreated":{"role":"symbol","title":"SessionMessageType.timerCreated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerCreated"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/timerCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/timercreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/packageInstallationCompleted":{"role":"symbol","title":"SessionMessageType.packageInstallationCompleted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationCompleted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationCompleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstallationcompleted"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/syncPlayGroupUpdate":{"role":"symbol","title":"SessionMessageType.syncPlayGroupUpdate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayGroupUpdate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/syncPlayGroupUpdate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/syncplaygroupupdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/userUpdated":{"role":"symbol","title":"SessionMessageType.userUpdated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userUpdated"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userUpdated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/userupdated"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/sessionsStart":{"role":"symbol","title":"SessionMessageType.sessionsStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionsStart"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessionsStart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/sessionsstart"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/packageInstallationCancelled":{"role":"symbol","title":"SessionMessageType.packageInstallationCancelled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationCancelled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationCancelled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstallationcancelled"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/libraryChanged":{"role":"symbol","title":"SessionMessageType.libraryChanged","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryChanged"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/libraryChanged","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/librarychanged"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/restartRequired":{"role":"symbol","title":"SessionMessageType.restartRequired","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"restartRequired"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/restartRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/restartrequired"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/!=(_:_:).json new file mode 100644 index 000000000..c733c72cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI18SessionMessageTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/activitylogentry.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/activitylogentry.json new file mode 100644 index 000000000..1bb6be4bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/activitylogentry.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntry"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/activitylogentry"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntry","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntry"}],"title":"SessionMessageType.activityLogEntry","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO16activityLogEntryyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/activityLogEntry":{"role":"symbol","title":"SessionMessageType.activityLogEntry","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntry"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntry","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/activitylogentry"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/activitylogentrystart.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/activitylogentrystart.json new file mode 100644 index 000000000..97a330727 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/activitylogentrystart.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntryStart"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/activitylogentrystart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntryStart","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntryStart"}],"title":"SessionMessageType.activityLogEntryStart","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO21activityLogEntryStartyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/activityLogEntryStart":{"role":"symbol","title":"SessionMessageType.activityLogEntryStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntryStart"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntryStart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/activitylogentrystart"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/activitylogentrystop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/activitylogentrystop.json new file mode 100644 index 000000000..ca322044a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/activitylogentrystop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntryStop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/activitylogentrystop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntryStop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntryStop"}],"title":"SessionMessageType.activityLogEntryStop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO20activityLogEntryStopyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/activityLogEntryStop":{"role":"symbol","title":"SessionMessageType.activityLogEntryStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"activityLogEntryStop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/activityLogEntryStop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/activitylogentrystop"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/encode(to:).json new file mode 100644 index 000000000..467394d62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI18SessionMessageTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/equatable-implementations.json new file mode 100644 index 000000000..1933a4266 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/forcekeepalive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/forcekeepalive.json new file mode 100644 index 000000000..444cc0bf5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/forcekeepalive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"forceKeepAlive"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/forcekeepalive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/forceKeepAlive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"forceKeepAlive"}],"title":"SessionMessageType.forceKeepAlive","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO14forceKeepAliveyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/forceKeepAlive":{"role":"symbol","title":"SessionMessageType.forceKeepAlive","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"forceKeepAlive"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/forceKeepAlive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/forcekeepalive"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/generalcommand.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/generalcommand.json new file mode 100644 index 000000000..25f08816a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/generalcommand.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"generalCommand"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/generalcommand"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/generalCommand","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"generalCommand"}],"title":"SessionMessageType.generalCommand","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO14generalCommandyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/generalCommand":{"role":"symbol","title":"SessionMessageType.generalCommand","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"generalCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/generalCommand","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/generalcommand"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/hash(into:).json new file mode 100644 index 000000000..2dcd2739c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI18SessionMessageTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/hashvalue.json new file mode 100644 index 000000000..cd3834b12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI18SessionMessageTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/init(from:).json new file mode 100644 index 000000000..f1c5ad2c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI18SessionMessageTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/init(rawvalue:).json new file mode 100644 index 000000000..995ac6797 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18SessionMessageTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/keepalive.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/keepalive.json new file mode 100644 index 000000000..1352691a4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/keepalive.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepAlive"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/keepalive"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/keepAlive","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepAlive"}],"title":"SessionMessageType.keepAlive","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO9keepAliveyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/keepAlive":{"role":"symbol","title":"SessionMessageType.keepAlive","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepAlive"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/keepAlive","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/keepalive"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/librarychanged.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/librarychanged.json new file mode 100644 index 000000000..8575f077c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/librarychanged.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryChanged"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/librarychanged"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/libraryChanged","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryChanged"}],"title":"SessionMessageType.libraryChanged","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO14libraryChangedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/libraryChanged":{"role":"symbol","title":"SessionMessageType.libraryChanged","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryChanged"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/libraryChanged","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/librarychanged"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstallationcancelled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstallationcancelled.json new file mode 100644 index 000000000..576632e20 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstallationcancelled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationCancelled"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstallationcancelled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationCancelled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationCancelled"}],"title":"SessionMessageType.packageInstallationCancelled","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO28packageInstallationCancelledyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/packageInstallationCancelled":{"role":"symbol","title":"SessionMessageType.packageInstallationCancelled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationCancelled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationCancelled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstallationcancelled"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstallationcompleted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstallationcompleted.json new file mode 100644 index 000000000..4937368f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstallationcompleted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationCompleted"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstallationcompleted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationCompleted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationCompleted"}],"title":"SessionMessageType.packageInstallationCompleted","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO28packageInstallationCompletedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/packageInstallationCompleted":{"role":"symbol","title":"SessionMessageType.packageInstallationCompleted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationCompleted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationCompleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstallationcompleted"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstallationfailed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstallationfailed.json new file mode 100644 index 000000000..eee4b2ae8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstallationfailed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationFailed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstallationfailed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationFailed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationFailed"}],"title":"SessionMessageType.packageInstallationFailed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO25packageInstallationFailedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/packageInstallationFailed":{"role":"symbol","title":"SessionMessageType.packageInstallationFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstallationFailed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstallationFailed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstallationfailed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstalling.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstalling.json new file mode 100644 index 000000000..72e1fc446 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageinstalling.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstalling"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstalling"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstalling","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstalling"}],"title":"SessionMessageType.packageInstalling","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO17packageInstallingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/packageInstalling":{"role":"symbol","title":"SessionMessageType.packageInstalling","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageInstalling"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageInstalling","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/packageinstalling"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageuninstalled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageuninstalled.json new file mode 100644 index 000000000..fcd447282 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/packageuninstalled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageUninstalled"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/packageuninstalled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageUninstalled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageUninstalled"}],"title":"SessionMessageType.packageUninstalled","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO18packageUninstalledyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/packageUninstalled":{"role":"symbol","title":"SessionMessageType.packageUninstalled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageUninstalled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/packageUninstalled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/packageuninstalled"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/play.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/play.json new file mode 100644 index 000000000..208ff3590 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/play.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/play"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/play","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"}],"title":"SessionMessageType.play","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO4playyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/play":{"role":"symbol","title":"SessionMessageType.play","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/play","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/play"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/playstate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/playstate.json new file mode 100644 index 000000000..de3a5491f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/playstate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playstate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/playstate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/playstate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playstate"}],"title":"SessionMessageType.playstate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO9playstateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/playstate":{"role":"symbol","title":"SessionMessageType.playstate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playstate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/playstate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/playstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/rawrepresentable-implementations.json new file mode 100644 index 000000000..f044ba1f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/refreshprogress.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/refreshprogress.json new file mode 100644 index 000000000..74af505cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/refreshprogress.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshProgress"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/refreshprogress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/refreshProgress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshProgress"}],"title":"SessionMessageType.refreshProgress","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO15refreshProgressyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/refreshProgress":{"role":"symbol","title":"SessionMessageType.refreshProgress","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshProgress"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/refreshProgress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/refreshprogress"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/restartrequired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/restartrequired.json new file mode 100644 index 000000000..926501482 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/restartrequired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"restartRequired"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/restartrequired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/restartRequired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"restartRequired"}],"title":"SessionMessageType.restartRequired","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO15restartRequiredyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/restartRequired":{"role":"symbol","title":"SessionMessageType.restartRequired","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"restartRequired"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/restartRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/restartrequired"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtaskended.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtaskended.json new file mode 100644 index 000000000..f66baaf55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtaskended.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTaskEnded"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtaskended"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTaskEnded","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTaskEnded"}],"title":"SessionMessageType.scheduledTaskEnded","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO18scheduledTaskEndedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/scheduledTaskEnded":{"role":"symbol","title":"SessionMessageType.scheduledTaskEnded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTaskEnded"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTaskEnded","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtaskended"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtasksinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtasksinfo.json new file mode 100644 index 000000000..00cfa0f58 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtasksinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtasksinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfo"}],"title":"SessionMessageType.scheduledTasksInfo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO18scheduledTasksInfoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/scheduledTasksInfo":{"role":"symbol","title":"SessionMessageType.scheduledTasksInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtasksinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtasksinfostart.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtasksinfostart.json new file mode 100644 index 000000000..483447e68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtasksinfostart.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfoStart"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtasksinfostart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfoStart","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfoStart"}],"title":"SessionMessageType.scheduledTasksInfoStart","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO23scheduledTasksInfoStartyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/scheduledTasksInfoStart":{"role":"symbol","title":"SessionMessageType.scheduledTasksInfoStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfoStart"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfoStart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtasksinfostart"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtasksinfostop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtasksinfostop.json new file mode 100644 index 000000000..20380bf7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/scheduledtasksinfostop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfoStop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtasksinfostop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfoStop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfoStop"}],"title":"SessionMessageType.scheduledTasksInfoStop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO22scheduledTasksInfoStopyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/scheduledTasksInfoStop":{"role":"symbol","title":"SessionMessageType.scheduledTasksInfoStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"scheduledTasksInfoStop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/scheduledTasksInfoStop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/scheduledtasksinfostop"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/seriestimercancelled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/seriestimercancelled.json new file mode 100644 index 000000000..50514c36f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/seriestimercancelled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerCancelled"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/seriestimercancelled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/seriesTimerCancelled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerCancelled"}],"title":"SessionMessageType.seriesTimerCancelled","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO20seriesTimerCancelledyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/seriesTimerCancelled":{"role":"symbol","title":"SessionMessageType.seriesTimerCancelled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerCancelled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/seriesTimerCancelled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/seriestimercancelled"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/seriestimercreated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/seriestimercreated.json new file mode 100644 index 000000000..77421e9bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/seriestimercreated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerCreated"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/seriestimercreated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/seriesTimerCreated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerCreated"}],"title":"SessionMessageType.seriesTimerCreated","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO18seriesTimerCreatedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/seriesTimerCreated":{"role":"symbol","title":"SessionMessageType.seriesTimerCreated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerCreated"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/seriesTimerCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/seriestimercreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/serverrestarting.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/serverrestarting.json new file mode 100644 index 000000000..386d7f5a4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/serverrestarting.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverRestarting"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/serverrestarting"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/serverRestarting","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverRestarting"}],"title":"SessionMessageType.serverRestarting","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO16serverRestartingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/serverRestarting":{"role":"symbol","title":"SessionMessageType.serverRestarting","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverRestarting"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/serverRestarting","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/serverrestarting"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/servershuttingdown.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/servershuttingdown.json new file mode 100644 index 000000000..bcdbb6002 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/servershuttingdown.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverShuttingDown"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/servershuttingdown"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/serverShuttingDown","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverShuttingDown"}],"title":"SessionMessageType.serverShuttingDown","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO18serverShuttingDownyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/serverShuttingDown":{"role":"symbol","title":"SessionMessageType.serverShuttingDown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverShuttingDown"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/serverShuttingDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/servershuttingdown"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/sessions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/sessions.json new file mode 100644 index 000000000..be847208b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/sessions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/sessions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessions"}],"title":"SessionMessageType.sessions","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO8sessionsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/sessions":{"role":"symbol","title":"SessionMessageType.sessions","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/sessions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/sessionsstart.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/sessionsstart.json new file mode 100644 index 000000000..2822e46a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/sessionsstart.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionsStart"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/sessionsstart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessionsStart","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionsStart"}],"title":"SessionMessageType.sessionsStart","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO13sessionsStartyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/sessionsStart":{"role":"symbol","title":"SessionMessageType.sessionsStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionsStart"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessionsStart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/sessionsstart"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/sessionsstop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/sessionsstop.json new file mode 100644 index 000000000..e859faad5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/sessionsstop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionsStop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/sessionsstop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessionsStop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionsStop"}],"title":"SessionMessageType.sessionsStop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO12sessionsStopyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/sessionsStop":{"role":"symbol","title":"SessionMessageType.sessionsStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionsStop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/sessionsStop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/sessionsstop"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/syncplaycommand.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/syncplaycommand.json new file mode 100644 index 000000000..36200bcc1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/syncplaycommand.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayCommand"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/syncplaycommand"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/syncPlayCommand","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayCommand"}],"title":"SessionMessageType.syncPlayCommand","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO15syncPlayCommandyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/syncPlayCommand":{"role":"symbol","title":"SessionMessageType.syncPlayCommand","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayCommand"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/syncPlayCommand","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/syncplaycommand"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/syncplaygroupupdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/syncplaygroupupdate.json new file mode 100644 index 000000000..c78651c87 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/syncplaygroupupdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayGroupUpdate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/syncplaygroupupdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/syncPlayGroupUpdate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayGroupUpdate"}],"title":"SessionMessageType.syncPlayGroupUpdate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO19syncPlayGroupUpdateyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/syncPlayGroupUpdate":{"role":"symbol","title":"SessionMessageType.syncPlayGroupUpdate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayGroupUpdate"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/syncPlayGroupUpdate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/syncplaygroupupdate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/timercancelled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/timercancelled.json new file mode 100644 index 000000000..74a6a9c4b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/timercancelled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerCancelled"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/timercancelled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/timerCancelled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerCancelled"}],"title":"SessionMessageType.timerCancelled","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO14timerCancelledyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/timerCancelled":{"role":"symbol","title":"SessionMessageType.timerCancelled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerCancelled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/timerCancelled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/timercancelled"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/timercreated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/timercreated.json new file mode 100644 index 000000000..ba0430ed2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/timercreated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerCreated"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/timercreated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/timerCreated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerCreated"}],"title":"SessionMessageType.timerCreated","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO12timerCreatedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/timerCreated":{"role":"symbol","title":"SessionMessageType.timerCreated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"timerCreated"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/timerCreated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/timercreated"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/userdatachanged.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/userdatachanged.json new file mode 100644 index 000000000..5d1b1490b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/userdatachanged.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userDataChanged"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/userdatachanged"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userDataChanged","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userDataChanged"}],"title":"SessionMessageType.userDataChanged","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO15userDataChangedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/userDataChanged":{"role":"symbol","title":"SessionMessageType.userDataChanged","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userDataChanged"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userDataChanged","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/userdatachanged"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/userdeleted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/userdeleted.json new file mode 100644 index 000000000..3998ae334 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/userdeleted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userDeleted"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/userdeleted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userDeleted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userDeleted"}],"title":"SessionMessageType.userDeleted","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO11userDeletedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/userDeleted":{"role":"symbol","title":"SessionMessageType.userDeleted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userDeleted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userDeleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/userdeleted"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/userupdated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/userupdated.json new file mode 100644 index 000000000..7ae49f120 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionmessagetype/userupdated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userUpdated"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionmessagetype\/userupdated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userUpdated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userUpdated"}],"title":"SessionMessageType.userUpdated","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI18SessionMessageTypeO11userUpdatedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType":{"role":"symbol","title":"SessionMessageType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionMessageType"}],"abstract":[{"type":"text","text":"The different kinds of messages that are used in the WebSocket api."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionMessageType"}],"url":"\/documentation\/jellyfinapi\/sessionmessagetype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionMessageType/userUpdated":{"role":"symbol","title":"SessionMessageType.userUpdated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"userUpdated"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionMessageType\/userUpdated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionmessagetype\/userupdated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo.json new file mode 100644 index 000000000..fd2c80b34 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionUserInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionuserinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SessionUserInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionUserInfo"}],"title":"SessionUserInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15SessionUserInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SessionUserInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/init(userID:userName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/userID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/userName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo/init(userID:userName:)":{"role":"symbol","title":"init(userID:userName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/init(userID:userName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionuserinfo\/init(userid:username:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo/userName":{"role":"symbol","title":"userName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/userName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionuserinfo\/username"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo":{"role":"symbol","title":"SessionUserInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionUserInfo"}],"abstract":[{"type":"text","text":"Class SessionUserInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionUserInfo"}],"url":"\/documentation\/jellyfinapi\/sessionuserinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionuserinfo\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionuserinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/init(from:).json new file mode 100644 index 000000000..7468af3f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionuserinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15SessionUserInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo":{"role":"symbol","title":"SessionUserInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionUserInfo"}],"abstract":[{"type":"text","text":"Class SessionUserInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionUserInfo"}],"url":"\/documentation\/jellyfinapi\/sessionuserinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionuserinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/init(userid:username:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/init(userid:username:).json new file mode 100644 index 000000000..c283fc3db --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/init(userid:username:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionuserinfo\/init(userid:username:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/init(userID:userName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(userID:userName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15SessionUserInfoV6userID0F4NameAC10Foundation4UUIDVSg_SSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo/init(userID:userName:)":{"role":"symbol","title":"init(userID:userName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/init(userID:userName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionuserinfo\/init(userid:username:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo":{"role":"symbol","title":"SessionUserInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionUserInfo"}],"abstract":[{"type":"text","text":"Class SessionUserInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionUserInfo"}],"url":"\/documentation\/jellyfinapi\/sessionuserinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/userid.json new file mode 100644 index 000000000..6a47f36c9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionuserinfo\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the user identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SessionUserInfoV6userID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo":{"role":"symbol","title":"SessionUserInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionUserInfo"}],"abstract":[{"type":"text","text":"Class SessionUserInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionUserInfo"}],"url":"\/documentation\/jellyfinapi\/sessionuserinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionuserinfo\/userid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/username.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/username.json new file mode 100644 index 000000000..2241385bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sessionuserinfo/username.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sessionuserinfo\/username"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/userName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the user."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"userName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SessionUserInfoV8userNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo":{"role":"symbol","title":"SessionUserInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionUserInfo"}],"abstract":[{"type":"text","text":"Class SessionUserInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionUserInfo"}],"url":"\/documentation\/jellyfinapi\/sessionuserinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SessionUserInfo/userName":{"role":"symbol","title":"userName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the user."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SessionUserInfo\/userName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sessionuserinfo\/username"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto.json new file mode 100644 index 000000000..8e5a3c674 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetChannelMappingDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setchannelmappingdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Set channel mapping dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetChannelMappingDto"}],"title":"SetChannelMappingDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20SetChannelMappingDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SetChannelMappingDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/init(providerChannelID:providerID:tunerChannelID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/providerChannelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/providerID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/tunerChannelID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto/providerID":{"role":"symbol","title":"providerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the provider id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/providerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setchannelmappingdto\/providerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto/providerChannelID":{"role":"symbol","title":"providerChannelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the provider channel id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/providerChannelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setchannelmappingdto\/providerchannelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setchannelmappingdto\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto/init(providerChannelID:providerID:tunerChannelID:)":{"role":"symbol","title":"init(providerChannelID:providerID:tunerChannelID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tunerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/init(providerChannelID:providerID:tunerChannelID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setchannelmappingdto\/init(providerchannelid:providerid:tunerchannelid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto/tunerChannelID":{"role":"symbol","title":"tunerChannelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the tuner channel id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/tunerChannelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setchannelmappingdto\/tunerchannelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto":{"role":"symbol","title":"SetChannelMappingDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetChannelMappingDto"}],"abstract":[{"type":"text","text":"Set channel mapping dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetChannelMappingDto"}],"url":"\/documentation\/jellyfinapi\/setchannelmappingdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/init(from:).json new file mode 100644 index 000000000..618f08055 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setchannelmappingdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20SetChannelMappingDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setchannelmappingdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto":{"role":"symbol","title":"SetChannelMappingDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetChannelMappingDto"}],"abstract":[{"type":"text","text":"Set channel mapping dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetChannelMappingDto"}],"url":"\/documentation\/jellyfinapi\/setchannelmappingdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/init(providerchannelid:providerid:tunerchannelid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/init(providerchannelid:providerid:tunerchannelid:).json new file mode 100644 index 000000000..2181575c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/init(providerchannelid:providerid:tunerchannelid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tunerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setchannelmappingdto\/init(providerchannelid:providerid:tunerchannelid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/init(providerChannelID:providerID:tunerChannelID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tunerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(providerChannelID:providerID:tunerChannelID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20SetChannelMappingDtoV08providerD2ID0gH005tunerdH0ACSS_S2Stcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto":{"role":"symbol","title":"SetChannelMappingDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetChannelMappingDto"}],"abstract":[{"type":"text","text":"Set channel mapping dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetChannelMappingDto"}],"url":"\/documentation\/jellyfinapi\/setchannelmappingdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto/init(providerChannelID:providerID:tunerChannelID:)":{"role":"symbol","title":"init(providerChannelID:providerID:tunerChannelID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"tunerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/init(providerChannelID:providerID:tunerChannelID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setchannelmappingdto\/init(providerchannelid:providerid:tunerchannelid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/providerchannelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/providerchannelid.json new file mode 100644 index 000000000..c12bf2ebe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/providerchannelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setchannelmappingdto\/providerchannelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/providerChannelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider channel id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"providerChannelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20SetChannelMappingDtoV08providerD2IDSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto":{"role":"symbol","title":"SetChannelMappingDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetChannelMappingDto"}],"abstract":[{"type":"text","text":"Set channel mapping dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetChannelMappingDto"}],"url":"\/documentation\/jellyfinapi\/setchannelmappingdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto/providerChannelID":{"role":"symbol","title":"providerChannelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the provider channel id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/providerChannelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setchannelmappingdto\/providerchannelid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/providerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/providerid.json new file mode 100644 index 000000000..e2d6ddf41 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/providerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setchannelmappingdto\/providerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/providerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"providerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20SetChannelMappingDtoV10providerIDSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto/providerID":{"role":"symbol","title":"providerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the provider id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/providerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setchannelmappingdto\/providerid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto":{"role":"symbol","title":"SetChannelMappingDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetChannelMappingDto"}],"abstract":[{"type":"text","text":"Set channel mapping dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetChannelMappingDto"}],"url":"\/documentation\/jellyfinapi\/setchannelmappingdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/tunerchannelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/tunerchannelid.json new file mode 100644 index 000000000..794e48d03 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setchannelmappingdto/tunerchannelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setchannelmappingdto\/tunerchannelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/tunerChannelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the tuner channel id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"tunerChannelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20SetChannelMappingDtoV05tunerD2IDSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto/tunerChannelID":{"role":"symbol","title":"tunerChannelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the tuner channel id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto\/tunerChannelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setchannelmappingdto\/tunerchannelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetChannelMappingDto":{"role":"symbol","title":"SetChannelMappingDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetChannelMappingDto"}],"abstract":[{"type":"text","text":"Set channel mapping dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetChannelMappingDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetChannelMappingDto"}],"url":"\/documentation\/jellyfinapi\/setchannelmappingdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto.json new file mode 100644 index 000000000..9b207bb5e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setplaylistitemrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SetPlaylistItemRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"title":"SetPlaylistItemRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI25SetPlaylistItemRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SetPlaylistItemRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/init(playlistItemID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/playlistItemID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist identifier of the playing item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto\/playlistitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto":{"role":"symbol","title":"SetPlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class SetPlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto/init(playlistItemID:)":{"role":"symbol","title":"init(playlistItemID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/init(playlistItemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto\/init(playlistitemid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto/init(from:).json new file mode 100644 index 000000000..7234ebaa4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setplaylistitemrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI25SetPlaylistItemRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto":{"role":"symbol","title":"SetPlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class SetPlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto/init(playlistitemid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto/init(playlistitemid:).json new file mode 100644 index 000000000..36311ec9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto/init(playlistitemid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setplaylistitemrequestdto\/init(playlistitemid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/init(playlistItemID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(playlistItemID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI25SetPlaylistItemRequestDtoV08playlistE2IDAC10Foundation4UUIDVSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto":{"role":"symbol","title":"SetPlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class SetPlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto/init(playlistItemID:)":{"role":"symbol","title":"init(playlistItemID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/init(playlistItemID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto\/init(playlistitemid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto/playlistitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto/playlistitemid.json new file mode 100644 index 000000000..20f067670 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setplaylistitemrequestdto/playlistitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setplaylistitemrequestdto\/playlistitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/playlistItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playlist identifier of the playing item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"playlistItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI25SetPlaylistItemRequestDtoV08playlistE2ID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto":{"role":"symbol","title":"SetPlaylistItemRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"abstract":[{"type":"text","text":"Class SetPlaylistItemRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetPlaylistItemRequestDto"}],"url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetPlaylistItemRequestDto/playlistItemID":{"role":"symbol","title":"playlistItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playlistItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playlist identifier of the playing item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetPlaylistItemRequestDto\/playlistItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setplaylistitemrequestdto\/playlistitemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto.json new file mode 100644 index 000000000..5812c91a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setrepeatmoderequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SetRepeatModeRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"title":"SetRepeatModeRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI23SetRepeatModeRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SetRepeatModeRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/init(mode:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/mode"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto":{"role":"symbol","title":"SetRepeatModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetRepeatModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto/init(mode:)":{"role":"symbol","title":"init(mode:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupRepeatMode","preciseIdentifier":"s:11JellyfinAPI15GroupRepeatModeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/init(mode:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto\/init(mode:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto/mode":{"role":"symbol","title":"mode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupRepeatMode","preciseIdentifier":"s:11JellyfinAPI15GroupRepeatModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/mode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto\/mode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto/init(from:).json new file mode 100644 index 000000000..e1be8c672 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setrepeatmoderequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23SetRepeatModeRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto":{"role":"symbol","title":"SetRepeatModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetRepeatModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto/init(mode:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto/init(mode:).json new file mode 100644 index 000000000..db3f4fcb6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto/init(mode:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","preciseIdentifier":"s:11JellyfinAPI15GroupRepeatModeO","text":"GroupRepeatMode"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setrepeatmoderequestdto\/init(mode:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/init(mode:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupRepeatMode","preciseIdentifier":"s:11JellyfinAPI15GroupRepeatModeO"},{"kind":"text","text":"?)"}],"title":"init(mode:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23SetRepeatModeRequestDtoV4modeAcA05GroupdE0OSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto":{"role":"symbol","title":"SetRepeatModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetRepeatModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto/init(mode:)":{"role":"symbol","title":"init(mode:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupRepeatMode","preciseIdentifier":"s:11JellyfinAPI15GroupRepeatModeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/init(mode:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto\/init(mode:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto/mode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto/mode.json new file mode 100644 index 000000000..7f4c4cb28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setrepeatmoderequestdto/mode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","preciseIdentifier":"s:11JellyfinAPI15GroupRepeatModeO","text":"GroupRepeatMode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setrepeatmoderequestdto\/mode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/mode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupRepeatMode","preciseIdentifier":"s:11JellyfinAPI15GroupRepeatModeO"},{"kind":"text","text":"?"}],"title":"mode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23SetRepeatModeRequestDtoV4modeAA05GroupdE0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupRepeatMode":{"role":"symbol","title":"GroupRepeatMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupRepeatMode"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupRepeatMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupRepeatMode"}],"url":"\/documentation\/jellyfinapi\/grouprepeatmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto/mode":{"role":"symbol","title":"mode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupRepeatMode","preciseIdentifier":"s:11JellyfinAPI15GroupRepeatModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Enum GroupRepeatMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto\/mode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto\/mode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetRepeatModeRequestDto":{"role":"symbol","title":"SetRepeatModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetRepeatModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetRepeatModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetRepeatModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setrepeatmoderequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto.json new file mode 100644 index 000000000..71a48dc7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setshufflemoderequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SetShuffleModeRequestDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"title":"SetShuffleModeRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI24SetShuffleModeRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SetShuffleModeRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/init(mode:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/mode"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto/init(mode:)":{"role":"symbol","title":"init(mode:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupShuffleMode","preciseIdentifier":"s:11JellyfinAPI16GroupShuffleModeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/init(mode:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto\/init(mode:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto":{"role":"symbol","title":"SetShuffleModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetShuffleModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto/mode":{"role":"symbol","title":"mode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupShuffleMode","preciseIdentifier":"s:11JellyfinAPI16GroupShuffleModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/mode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto\/mode"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto/init(from:).json new file mode 100644 index 000000000..47bd4b4f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setshufflemoderequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI24SetShuffleModeRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto":{"role":"symbol","title":"SetShuffleModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetShuffleModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto/init(mode:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto/init(mode:).json new file mode 100644 index 000000000..438052f46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto/init(mode:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","preciseIdentifier":"s:11JellyfinAPI16GroupShuffleModeO","text":"GroupShuffleMode"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setshufflemoderequestdto\/init(mode:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/init(mode:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupShuffleMode","preciseIdentifier":"s:11JellyfinAPI16GroupShuffleModeO"},{"kind":"text","text":"?)"}],"title":"init(mode:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI24SetShuffleModeRequestDtoV4modeAcA05GroupdE0OSg_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto":{"role":"symbol","title":"SetShuffleModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetShuffleModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto/init(mode:)":{"role":"symbol","title":"init(mode:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupShuffleMode","preciseIdentifier":"s:11JellyfinAPI16GroupShuffleModeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/init(mode:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto\/init(mode:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto/mode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto/mode.json new file mode 100644 index 000000000..f1c377539 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/setshufflemoderequestdto/mode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","preciseIdentifier":"s:11JellyfinAPI16GroupShuffleModeO","text":"GroupShuffleMode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/setshufflemoderequestdto\/mode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/mode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupShuffleMode","preciseIdentifier":"s:11JellyfinAPI16GroupShuffleModeO"},{"kind":"text","text":"?"}],"title":"mode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI24SetShuffleModeRequestDtoV4modeAA05GroupdE0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto/mode":{"role":"symbol","title":"mode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GroupShuffleMode","preciseIdentifier":"s:11JellyfinAPI16GroupShuffleModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto\/mode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto\/mode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SetShuffleModeRequestDto":{"role":"symbol","title":"SetShuffleModeRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"abstract":[{"type":"text","text":"Class SetShuffleModeRequestDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SetShuffleModeRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SetShuffleModeRequestDto"}],"url":"\/documentation\/jellyfinapi\/setshufflemoderequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/GroupShuffleMode":{"role":"symbol","title":"GroupShuffleMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"GroupShuffleMode"}],"abstract":[{"type":"text","text":"Enum GroupShuffleMode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/GroupShuffleMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GroupShuffleMode"}],"url":"\/documentation\/jellyfinapi\/groupshufflemode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo.json new file mode 100644 index 000000000..a832138a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"title":"SongInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI8SongInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SongInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/init(album:albumArtists:artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/album","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/albumArtists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/artists","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/isAutomated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/metadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/year"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/init(album:albumArtists:artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(album:albumArtists:artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/init(album:albumArtists:artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/init(album:albumartists:artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/albumArtists":{"role":"symbol","title":"albumArtists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/albumArtists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/albumartists"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/album":{"role":"symbol","title":"album","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/album","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/album"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/artists"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/parentindexnumber"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/album.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/album.json new file mode 100644 index 000000000..b84a51f35 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/album.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/album"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/album","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"album","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV5albumSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/album":{"role":"symbol","title":"album","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/album","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/album"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/albumartists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/albumartists.json new file mode 100644 index 000000000..c90d9327f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/albumartists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/albumartists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/albumArtists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"albumArtists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV12albumArtistsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/albumArtists":{"role":"symbol","title":"albumArtists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/albumArtists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/albumartists"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/artists.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/artists.json new file mode 100644 index 000000000..e1f3f8dfd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/artists.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/artists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/artists","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"artists","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV7artistsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/artists":{"role":"symbol","title":"artists","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/artists","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/artists"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/indexnumber.json new file mode 100644 index 000000000..e7219f5f1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/indexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/init(album:albumartists:artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/init(album:albumartists:artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json new file mode 100644 index 000000000..aeeda2b46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/init(album:albumartists:artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/init(album:albumartists:artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/init(album:albumArtists:artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(album:albumArtists:artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8SongInfoV5album0E7Artists7artists11indexNumber11isAutomated19metadataCountryCode0L8Language4name13originalTitle011parentIndexI04path12premiereDate11providerIDs4yearACSSSg_SaySSGSgATs5Int32VSgSbSgA4rwR10Foundation0W0VSgSDyS2SGSgAWtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/init(album:albumArtists:artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(album:albumArtists:artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"album"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"albumArtists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"artists"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/init(album:albumArtists:artists:indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/init(album:albumartists:artists:indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/init(from:).json new file mode 100644 index 000000000..dae2fc44d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8SongInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/isautomated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/isautomated.json new file mode 100644 index 000000000..26eb3c8ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/isautomated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/isautomated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/isAutomated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV11isAutomatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/isautomated"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/metadatacountrycode.json new file mode 100644 index 000000000..43c911b33 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/metadatacountrycode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/metadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/metadatalanguage.json new file mode 100644 index 000000000..8eda62835 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/metadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/metadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/metadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV16metadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/name.json new file mode 100644 index 000000000..303cf1a7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/originaltitle.json new file mode 100644 index 000000000..584dbc81e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the original title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/parentindexnumber.json new file mode 100644 index 000000000..a5bb523c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/path.json new file mode 100644 index 000000000..7cc59cf76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/premieredate.json new file mode 100644 index 000000000..d883e23fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV12premiereDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/providerids.json new file mode 100644 index 000000000..7b9c23ee6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/year.json new file mode 100644 index 000000000..8fcb43ea7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/songinfo/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/songinfo\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"year","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8SongInfoV4years5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo":{"role":"symbol","title":"SongInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SongInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SongInfo"}],"url":"\/documentation\/jellyfinapi\/songinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SongInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SongInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/songinfo\/year"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder.json new file mode 100644 index 000000000..95fa07822 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"title":"SortOrder","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI9SortOrderO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SortOrder"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/ascending","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/descending"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/descending":{"role":"symbol","title":"SortOrder.descending","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"descending"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/descending","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/descending"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/equatable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/rawrepresentable-implementations"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/ascending":{"role":"symbol","title":"SortOrder.ascending","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ascending"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/ascending","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/ascending"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/!=(_:_:).json new file mode 100644 index 000000000..08bc2bf6d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI9SortOrderO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/ascending.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/ascending.json new file mode 100644 index 000000000..5a27fd3d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/ascending.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ascending"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder\/ascending"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/ascending","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ascending"}],"title":"SortOrder.ascending","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9SortOrderO9ascendingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/ascending":{"role":"symbol","title":"SortOrder.ascending","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"ascending"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/ascending","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/ascending"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/descending.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/descending.json new file mode 100644 index 000000000..8e3f4fb23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/descending.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"descending"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder\/descending"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/descending","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"descending"}],"title":"SortOrder.descending","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9SortOrderO10descendingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/descending":{"role":"symbol","title":"SortOrder.descending","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"descending"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/descending","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/descending"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/encode(to:).json new file mode 100644 index 000000000..b722863e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI9SortOrderO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/equatable-implementations.json new file mode 100644 index 000000000..cd1fbc6d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/hash(into:).json new file mode 100644 index 000000000..11e6168ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI9SortOrderO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/hashvalue.json new file mode 100644 index 000000000..c1df01297 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI9SortOrderO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/init(from:).json new file mode 100644 index 000000000..8be5ae931 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI9SortOrderO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/init(rawvalue:).json new file mode 100644 index 000000000..0c3e554b4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9SortOrderO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/rawrepresentable-implementations.json new file mode 100644 index 000000000..f5538ce7a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/sortorder/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/sortorder\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder":{"role":"symbol","title":"SortOrder","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SortOrder"}],"abstract":[{"type":"text","text":"An enum representing the sorting order."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SortOrder"}],"url":"\/documentation\/jellyfinapi\/sortorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SortOrder/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SortOrder\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/sortorder\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto.json new file mode 100644 index 000000000..b68eae4d1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/specialviewoptiondto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Special view option dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"title":"SpecialViewOptionDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI20SpecialViewOptionDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SpecialViewOptionDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/init(id:name:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/id-4bycr","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/name"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets view option name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/id-4bycr":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets view option id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/id-4bycr","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/id-4bycr"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/init(id:name:)":{"role":"symbol","title":"init(id:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/init(id:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/init(id:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto":{"role":"symbol","title":"SpecialViewOptionDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"abstract":[{"type":"text","text":"Special view option dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SpecialViewOptionDto"}],"url":"\/documentation\/jellyfinapi\/specialviewoptiondto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/identifiable-implementations"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/id-4bycr.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/id-4bycr.json new file mode 100644 index 000000000..f45697e56 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/id-4bycr.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/specialviewoptiondto\/id-4bycr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/id-4bycr","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets view option id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20SpecialViewOptionDtoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/id-4bycr":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets view option id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/id-4bycr","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/id-4bycr"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto":{"role":"symbol","title":"SpecialViewOptionDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"abstract":[{"type":"text","text":"Special view option dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SpecialViewOptionDto"}],"url":"\/documentation\/jellyfinapi\/specialviewoptiondto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/id-6orly.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/id-6orly.json new file mode 100644 index 000000000..5103a2067 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/id-6orly.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/specialviewoptiondto\/id-6orly"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/id-6orly","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI20SpecialViewOptionDtoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto":{"role":"symbol","title":"SpecialViewOptionDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"abstract":[{"type":"text","text":"Special view option dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SpecialViewOptionDto"}],"url":"\/documentation\/jellyfinapi\/specialviewoptiondto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/id-6orly":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/id-6orly","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/id-6orly"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/identifiable-implementations.json new file mode 100644 index 000000000..937daac04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/specialviewoptiondto\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/id-6orly"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto":{"role":"symbol","title":"SpecialViewOptionDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"abstract":[{"type":"text","text":"Special view option dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SpecialViewOptionDto"}],"url":"\/documentation\/jellyfinapi\/specialviewoptiondto"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/id-6orly":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/id-6orly","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/id-6orly"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/init(from:).json new file mode 100644 index 000000000..2dd0f0cbf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/specialviewoptiondto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20SpecialViewOptionDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto":{"role":"symbol","title":"SpecialViewOptionDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"abstract":[{"type":"text","text":"Special view option dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SpecialViewOptionDto"}],"url":"\/documentation\/jellyfinapi\/specialviewoptiondto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/init(id:name:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/init(id:name:).json new file mode 100644 index 000000000..ef999e487 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/init(id:name:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/specialviewoptiondto\/init(id:name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/init(id:name:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(id:name:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20SpecialViewOptionDtoV2id4nameACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/init(id:name:)":{"role":"symbol","title":"init(id:name:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/init(id:name:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/init(id:name:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto":{"role":"symbol","title":"SpecialViewOptionDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"abstract":[{"type":"text","text":"Special view option dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SpecialViewOptionDto"}],"url":"\/documentation\/jellyfinapi\/specialviewoptiondto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/name.json new file mode 100644 index 000000000..904857865 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/specialviewoptiondto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/specialviewoptiondto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets view option name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI20SpecialViewOptionDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets view option name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/specialviewoptiondto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SpecialViewOptionDto":{"role":"symbol","title":"SpecialViewOptionDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SpecialViewOptionDto"}],"abstract":[{"type":"text","text":"Special view option dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SpecialViewOptionDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SpecialViewOptionDto"}],"url":"\/documentation\/jellyfinapi\/specialviewoptiondto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto.json new file mode 100644 index 000000000..f250f53f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupconfigurationdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The startup configuration DTO."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"title":"StartupConfigurationDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI23StartupConfigurationDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StartupConfigurationDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/init(metadataCountryCode:preferredMetadataLanguage:uICulture:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/preferredMetadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/uICulture"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupconfigurationdto\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto":{"role":"symbol","title":"StartupConfigurationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"abstract":[{"type":"text","text":"The startup configuration DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupConfigurationDto"}],"url":"\/documentation\/jellyfinapi\/startupconfigurationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto/uICulture":{"role":"symbol","title":"uICulture","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets UI language culture."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/uICulture","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupconfigurationdto\/uiculture"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto/preferredMetadataLanguage":{"role":"symbol","title":"preferredMetadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the preferred language for the metadata."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/preferredMetadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupconfigurationdto\/preferredmetadatalanguage"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto/init(metadataCountryCode:preferredMetadataLanguage:uICulture:)":{"role":"symbol","title":"init(metadataCountryCode:preferredMetadataLanguage:uICulture:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/init(metadataCountryCode:preferredMetadataLanguage:uICulture:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupconfigurationdto\/init(metadatacountrycode:preferredmetadatalanguage:uiculture:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupconfigurationdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/init(from:).json new file mode 100644 index 000000000..eeae93b14 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupconfigurationdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23StartupConfigurationDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupconfigurationdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto":{"role":"symbol","title":"StartupConfigurationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"abstract":[{"type":"text","text":"The startup configuration DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupConfigurationDto"}],"url":"\/documentation\/jellyfinapi\/startupconfigurationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/init(metadatacountrycode:preferredmetadatalanguage:uiculture:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/init(metadatacountrycode:preferredmetadatalanguage:uiculture:).json new file mode 100644 index 000000000..2c469bbe1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/init(metadatacountrycode:preferredmetadatalanguage:uiculture:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupconfigurationdto\/init(metadatacountrycode:preferredmetadatalanguage:uiculture:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/init(metadataCountryCode:preferredMetadataLanguage:uICulture:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(metadataCountryCode:preferredMetadataLanguage:uICulture:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23StartupConfigurationDtoV19metadataCountryCode25preferredMetadataLanguage9uICultureACSSSg_A2Gtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto/init(metadataCountryCode:preferredMetadataLanguage:uICulture:)":{"role":"symbol","title":"init(metadataCountryCode:preferredMetadataLanguage:uICulture:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/init(metadataCountryCode:preferredMetadataLanguage:uICulture:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupconfigurationdto\/init(metadatacountrycode:preferredmetadatalanguage:uiculture:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto":{"role":"symbol","title":"StartupConfigurationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"abstract":[{"type":"text","text":"The startup configuration DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupConfigurationDto"}],"url":"\/documentation\/jellyfinapi\/startupconfigurationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/metadatacountrycode.json new file mode 100644 index 000000000..c463f87ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupconfigurationdto\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23StartupConfigurationDtoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupconfigurationdto\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto":{"role":"symbol","title":"StartupConfigurationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"abstract":[{"type":"text","text":"The startup configuration DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupConfigurationDto"}],"url":"\/documentation\/jellyfinapi\/startupconfigurationdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/preferredmetadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/preferredmetadatalanguage.json new file mode 100644 index 000000000..4982b3b0e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/preferredmetadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupconfigurationdto\/preferredmetadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/preferredMetadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the preferred language for the metadata."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"preferredMetadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23StartupConfigurationDtoV25preferredMetadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto":{"role":"symbol","title":"StartupConfigurationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"abstract":[{"type":"text","text":"The startup configuration DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupConfigurationDto"}],"url":"\/documentation\/jellyfinapi\/startupconfigurationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto/preferredMetadataLanguage":{"role":"symbol","title":"preferredMetadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredMetadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the preferred language for the metadata."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/preferredMetadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupconfigurationdto\/preferredmetadatalanguage"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/uiculture.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/uiculture.json new file mode 100644 index 000000000..b81688c04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupconfigurationdto/uiculture.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupconfigurationdto\/uiculture"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/uICulture","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets UI language culture."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"uICulture","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23StartupConfigurationDtoV9uICultureSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto":{"role":"symbol","title":"StartupConfigurationDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupConfigurationDto"}],"abstract":[{"type":"text","text":"The startup configuration DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupConfigurationDto"}],"url":"\/documentation\/jellyfinapi\/startupconfigurationdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupConfigurationDto/uICulture":{"role":"symbol","title":"uICulture","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uICulture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets UI language culture."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupConfigurationDto\/uICulture","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupconfigurationdto\/uiculture"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto.json new file mode 100644 index 000000000..4b8a07f7e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupRemoteAccessDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupremoteaccessdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Startup remote access dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupRemoteAccessDto"}],"title":"StartupRemoteAccessDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI22StartupRemoteAccessDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StartupRemoteAccessDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/init(enableAutomaticPortMapping:enableRemoteAccess:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/enableAutomaticPortMapping","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/enableRemoteAccess"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto":{"role":"symbol","title":"StartupRemoteAccessDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupRemoteAccessDto"}],"abstract":[{"type":"text","text":"Startup remote access dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupRemoteAccessDto"}],"url":"\/documentation\/jellyfinapi\/startupremoteaccessdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto/init(enableAutomaticPortMapping:enableRemoteAccess:)":{"role":"symbol","title":"init(enableAutomaticPortMapping:enableRemoteAccess:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableAutomaticPortMapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/init(enableAutomaticPortMapping:enableRemoteAccess:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupremoteaccessdto\/init(enableautomaticportmapping:enableremoteaccess:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto/enableRemoteAccess":{"role":"symbol","title":"enableRemoteAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether enable remote access."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/enableRemoteAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupremoteaccessdto\/enableremoteaccess"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupremoteaccessdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto/enableAutomaticPortMapping":{"role":"symbol","title":"enableAutomaticPortMapping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutomaticPortMapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether enable automatic port mapping."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/enableAutomaticPortMapping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupremoteaccessdto\/enableautomaticportmapping"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/enableautomaticportmapping.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/enableautomaticportmapping.json new file mode 100644 index 000000000..533ab3f52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/enableautomaticportmapping.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutomaticPortMapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupremoteaccessdto\/enableautomaticportmapping"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/enableAutomaticPortMapping","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether enable automatic port mapping."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutomaticPortMapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"enableAutomaticPortMapping","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22StartupRemoteAccessDtoV26enableAutomaticPortMappingSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto/enableAutomaticPortMapping":{"role":"symbol","title":"enableAutomaticPortMapping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutomaticPortMapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether enable automatic port mapping."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/enableAutomaticPortMapping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupremoteaccessdto\/enableautomaticportmapping"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto":{"role":"symbol","title":"StartupRemoteAccessDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupRemoteAccessDto"}],"abstract":[{"type":"text","text":"Startup remote access dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupRemoteAccessDto"}],"url":"\/documentation\/jellyfinapi\/startupremoteaccessdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/enableremoteaccess.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/enableremoteaccess.json new file mode 100644 index 000000000..b13072dd6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/enableremoteaccess.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupremoteaccessdto\/enableremoteaccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/enableRemoteAccess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether enable remote access."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"enableRemoteAccess","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22StartupRemoteAccessDtoV06enabledE0Sbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto/enableRemoteAccess":{"role":"symbol","title":"enableRemoteAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether enable remote access."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/enableRemoteAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupremoteaccessdto\/enableremoteaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto":{"role":"symbol","title":"StartupRemoteAccessDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupRemoteAccessDto"}],"abstract":[{"type":"text","text":"Startup remote access dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupRemoteAccessDto"}],"url":"\/documentation\/jellyfinapi\/startupremoteaccessdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/init(enableautomaticportmapping:enableremoteaccess:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/init(enableautomaticportmapping:enableremoteaccess:).json new file mode 100644 index 000000000..8bb47e3bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/init(enableautomaticportmapping:enableremoteaccess:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableAutomaticPortMapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupremoteaccessdto\/init(enableautomaticportmapping:enableremoteaccess:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/init(enableAutomaticPortMapping:enableRemoteAccess:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableAutomaticPortMapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"title":"init(enableAutomaticPortMapping:enableRemoteAccess:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22StartupRemoteAccessDtoV26enableAutomaticPortMapping0gdE0ACSb_Sbtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto":{"role":"symbol","title":"StartupRemoteAccessDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupRemoteAccessDto"}],"abstract":[{"type":"text","text":"Startup remote access dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupRemoteAccessDto"}],"url":"\/documentation\/jellyfinapi\/startupremoteaccessdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto/init(enableAutomaticPortMapping:enableRemoteAccess:)":{"role":"symbol","title":"init(enableAutomaticPortMapping:enableRemoteAccess:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableAutomaticPortMapping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/init(enableAutomaticPortMapping:enableRemoteAccess:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupremoteaccessdto\/init(enableautomaticportmapping:enableremoteaccess:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/init(from:).json new file mode 100644 index 000000000..80612f0af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupremoteaccessdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupremoteaccessdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22StartupRemoteAccessDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupremoteaccessdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupRemoteAccessDto":{"role":"symbol","title":"StartupRemoteAccessDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupRemoteAccessDto"}],"abstract":[{"type":"text","text":"Startup remote access dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupRemoteAccessDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupRemoteAccessDto"}],"url":"\/documentation\/jellyfinapi\/startupremoteaccessdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto.json new file mode 100644 index 000000000..a5fdc5cf2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupuserdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The startup user DTO."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"title":"StartupUserDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14StartupUserDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"StartupUserDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/init(name:password:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/password"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto/password":{"role":"symbol","title":"password","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user’s password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/password","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupuserdto\/password"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupuserdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto/init(name:password:)":{"role":"symbol","title":"init(name:password:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/init(name:password:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupuserdto\/init(name:password:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the username."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupuserdto\/name"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto":{"role":"symbol","title":"StartupUserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"abstract":[{"type":"text","text":"The startup user DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupUserDto"}],"url":"\/documentation\/jellyfinapi\/startupuserdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/init(from:).json new file mode 100644 index 000000000..c74f2184a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupuserdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14StartupUserDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto":{"role":"symbol","title":"StartupUserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"abstract":[{"type":"text","text":"The startup user DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupUserDto"}],"url":"\/documentation\/jellyfinapi\/startupuserdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupuserdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/init(name:password:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/init(name:password:).json new file mode 100644 index 000000000..c82b34fae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/init(name:password:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupuserdto\/init(name:password:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/init(name:password:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(name:password:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14StartupUserDtoV4name8passwordACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto":{"role":"symbol","title":"StartupUserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"abstract":[{"type":"text","text":"The startup user DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupUserDto"}],"url":"\/documentation\/jellyfinapi\/startupuserdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto/init(name:password:)":{"role":"symbol","title":"init(name:password:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/init(name:password:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupuserdto\/init(name:password:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/name.json new file mode 100644 index 000000000..c70a8b666 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupuserdto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the username."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14StartupUserDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto":{"role":"symbol","title":"StartupUserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"abstract":[{"type":"text","text":"The startup user DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupUserDto"}],"url":"\/documentation\/jellyfinapi\/startupuserdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the username."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupuserdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/password.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/password.json new file mode 100644 index 000000000..6f9104e3e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/startupuserdto/password.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/startupuserdto\/password"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/password","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the user’s password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"password","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14StartupUserDtoV8passwordSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto/password":{"role":"symbol","title":"password","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the user’s password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto\/password","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/startupuserdto\/password"},"doc://JellyfinAPI/documentation/JellyfinAPI/StartupUserDto":{"role":"symbol","title":"StartupUserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"StartupUserDto"}],"abstract":[{"type":"text","text":"The startup user DTO."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/StartupUserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StartupUserDto"}],"url":"\/documentation\/jellyfinapi\/startupuserdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod.json new file mode 100644 index 000000000..4d5e152cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"title":"SubtitleDeliveryMethod","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI22SubtitleDeliveryMethodO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/drop","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/embed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/encode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/external","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hls"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/init(rawvalue:)"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/drop":{"role":"symbol","title":"SubtitleDeliveryMethod.drop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"drop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/drop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/drop"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/embed":{"role":"symbol","title":"SubtitleDeliveryMethod.embed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"embed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/embed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/embed"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/encode":{"role":"symbol","title":"SubtitleDeliveryMethod.encode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/encode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/encode"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/external":{"role":"symbol","title":"SubtitleDeliveryMethod.external","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"external"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/external","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/external"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/hls":{"role":"symbol","title":"SubtitleDeliveryMethod.hls","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hls"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hls","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/hls"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/rawrepresentable-implementations"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/!=(_:_:).json new file mode 100644 index 000000000..46e270368 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI22SubtitleDeliveryMethodO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/drop.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/drop.json new file mode 100644 index 000000000..9eff21385 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/drop.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"drop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/drop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/drop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"drop"}],"title":"SubtitleDeliveryMethod.drop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI22SubtitleDeliveryMethodO4dropyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/drop":{"role":"symbol","title":"SubtitleDeliveryMethod.drop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"drop"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/drop","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/drop"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/embed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/embed.json new file mode 100644 index 000000000..5e4f571f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/embed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"embed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/embed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/embed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"embed"}],"title":"SubtitleDeliveryMethod.embed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI22SubtitleDeliveryMethodO5embedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/embed":{"role":"symbol","title":"SubtitleDeliveryMethod.embed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"embed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/embed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/embed"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/encode(to:).json new file mode 100644 index 000000000..a7a3a1164 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI22SubtitleDeliveryMethodO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/encode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/encode.json new file mode 100644 index 000000000..f190d1d9e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/encode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/encode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/encode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"}],"title":"SubtitleDeliveryMethod.encode","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI22SubtitleDeliveryMethodO6encodeyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/encode":{"role":"symbol","title":"SubtitleDeliveryMethod.encode","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/encode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/encode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/equatable-implementations.json new file mode 100644 index 000000000..776eb61f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/external.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/external.json new file mode 100644 index 000000000..e9181b5e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/external.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"external"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/external"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/external","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"external"}],"title":"SubtitleDeliveryMethod.external","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI22SubtitleDeliveryMethodO8externalyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/external":{"role":"symbol","title":"SubtitleDeliveryMethod.external","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"external"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/external","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/external"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/hash(into:).json new file mode 100644 index 000000000..52e553a19 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI22SubtitleDeliveryMethodO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/hashvalue.json new file mode 100644 index 000000000..b830e38f9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI22SubtitleDeliveryMethodO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/hls.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/hls.json new file mode 100644 index 000000000..7ac174240 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/hls.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hls"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/hls"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hls","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hls"}],"title":"SubtitleDeliveryMethod.hls","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI22SubtitleDeliveryMethodO3hlsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/hls":{"role":"symbol","title":"SubtitleDeliveryMethod.hls","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"hls"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hls","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/hls"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/init(from:).json new file mode 100644 index 000000000..12c864c30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI22SubtitleDeliveryMethodO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/init(rawvalue:).json new file mode 100644 index 000000000..9aac0f590 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22SubtitleDeliveryMethodO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/rawrepresentable-implementations.json new file mode 100644 index 000000000..198668f17 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitledeliverymethod/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitledeliverymethod\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitledeliverymethod\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions.json new file mode 100644 index 000000000..b382c3e69 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"title":"SubtitleOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15SubtitleOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/init(isDownloadEpisodeSubtitles:downloadLanguages:isDownloadMovieSubtitles:isOpenSubtitleVipAccount:openSubtitlesPasswordHash:openSubtitlesUsername:requirePerfectMatch:isSkipIfAudioTrackMatches:isSkipIfEmbeddedSubtitlesPresent:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/downloadLanguages","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isDownloadEpisodeSubtitles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isDownloadMovieSubtitles","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isOpenSubtitleVipAccount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isSkipIfAudioTrackMatches","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isSkipIfEmbeddedSubtitlesPresent","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/openSubtitlesPasswordHash","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/openSubtitlesUsername","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/requirePerfectMatch"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/openSubtitlesUsername":{"role":"symbol","title":"openSubtitlesUsername","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openSubtitlesUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/openSubtitlesUsername","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/opensubtitlesusername"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/init(isDownloadEpisodeSubtitles:downloadLanguages:isDownloadMovieSubtitles:isOpenSubtitleVipAccount:openSubtitlesPasswordHash:openSubtitlesUsername:requirePerfectMatch:isSkipIfAudioTrackMatches:isSkipIfEmbeddedSubtitlesPresent:)":{"role":"symbol","title":"init(isDownloadEpisodeSubtitles:downloadLanguages:isDownloadMovieSubtitles:isOpenSubtitleVipAccount:openSubtitlesPasswordHash:openSubtitlesUsername:requirePerfectMatch:isSkipIfAudioTrackMatches:isSkipIfEmbeddedSubtitlesPresent:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isDownloadEpisodeSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"downloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isDownloadMovieSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isOpenSubtitleVipAccount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openSubtitlesPasswordHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openSubtitlesUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requirePerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/init(isDownloadEpisodeSubtitles:downloadLanguages:isDownloadMovieSubtitles:isOpenSubtitleVipAccount:openSubtitlesPasswordHash:openSubtitlesUsername:requirePerfectMatch:isSkipIfAudioTrackMatches:isSkipIfEmbeddedSubtitlesPresent:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/init(isdownloadepisodesubtitles:downloadlanguages:isdownloadmoviesubtitles:isopensubtitlevipaccount:opensubtitlespasswordhash:opensubtitlesusername:requireperfectmatch:isskipifaudiotrackmatches:isskipifembeddedsubtitlespresent:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/isDownloadMovieSubtitles":{"role":"symbol","title":"isDownloadMovieSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDownloadMovieSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isDownloadMovieSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/isdownloadmoviesubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/isSkipIfAudioTrackMatches":{"role":"symbol","title":"isSkipIfAudioTrackMatches","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isSkipIfAudioTrackMatches","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/isskipifaudiotrackmatches"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/downloadLanguages":{"role":"symbol","title":"downloadLanguages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/downloadLanguages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/downloadlanguages"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/isSkipIfEmbeddedSubtitlesPresent":{"role":"symbol","title":"isSkipIfEmbeddedSubtitlesPresent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isSkipIfEmbeddedSubtitlesPresent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/isskipifembeddedsubtitlespresent"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/isOpenSubtitleVipAccount":{"role":"symbol","title":"isOpenSubtitleVipAccount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isOpenSubtitleVipAccount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isOpenSubtitleVipAccount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/isopensubtitlevipaccount"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/isDownloadEpisodeSubtitles":{"role":"symbol","title":"isDownloadEpisodeSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDownloadEpisodeSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isDownloadEpisodeSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/isdownloadepisodesubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/openSubtitlesPasswordHash":{"role":"symbol","title":"openSubtitlesPasswordHash","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openSubtitlesPasswordHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/openSubtitlesPasswordHash","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/opensubtitlespasswordhash"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/requirePerfectMatch":{"role":"symbol","title":"requirePerfectMatch","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requirePerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/requirePerfectMatch","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/requireperfectmatch"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/downloadlanguages.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/downloadlanguages.json new file mode 100644 index 000000000..0aac2d65f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/downloadlanguages.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/downloadlanguages"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/downloadLanguages","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"downloadLanguages","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleOptionsV17downloadLanguagesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/downloadLanguages":{"role":"symbol","title":"downloadLanguages","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"downloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/downloadLanguages","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/downloadlanguages"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/init(from:).json new file mode 100644 index 000000000..d9f4e017c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15SubtitleOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/init(isdownloadepisodesubtitles:downloadlanguages:isdownloadmoviesubtitles:isopensubtitlevipaccount:opensubtitlespasswordhash:opensubtitlesusername:requireperfectmatch:isskipifaudiotrackmatches:isskipifembeddedsubtitlespresent:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/init(isdownloadepisodesubtitles:downloadlanguages:isdownloadmoviesubtitles:isopensubtitlevipaccount:opensubtitlespasswordhash:opensubtitlesusername:requireperfectmatch:isskipifaudiotrackmatches:isskipifembeddedsubtitlespresent:).json new file mode 100644 index 000000000..ffacf33aa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/init(isdownloadepisodesubtitles:downloadlanguages:isdownloadmoviesubtitles:isopensubtitlevipaccount:opensubtitlespasswordhash:opensubtitlesusername:requireperfectmatch:isskipifaudiotrackmatches:isskipifembeddedsubtitlespresent:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isDownloadEpisodeSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"downloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isDownloadMovieSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isOpenSubtitleVipAccount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"openSubtitlesPasswordHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"openSubtitlesUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"requirePerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSkipIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSkipIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/init(isdownloadepisodesubtitles:downloadlanguages:isdownloadmoviesubtitles:isopensubtitlevipaccount:opensubtitlespasswordhash:opensubtitlesusername:requireperfectmatch:isskipifaudiotrackmatches:isskipifembeddedsubtitlespresent:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/init(isDownloadEpisodeSubtitles:downloadLanguages:isDownloadMovieSubtitles:isOpenSubtitleVipAccount:openSubtitlesPasswordHash:openSubtitlesUsername:requirePerfectMatch:isSkipIfAudioTrackMatches:isSkipIfEmbeddedSubtitlesPresent:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isDownloadEpisodeSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"downloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isDownloadMovieSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isOpenSubtitleVipAccount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openSubtitlesPasswordHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openSubtitlesUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requirePerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(isDownloadEpisodeSubtitles:downloadLanguages:isDownloadMovieSubtitles:isOpenSubtitleVipAccount:openSubtitlesPasswordHash:openSubtitlesUsername:requirePerfectMatch:isSkipIfAudioTrackMatches:isSkipIfEmbeddedSubtitlesPresent:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15SubtitleOptionsV26isDownloadEpisodeSubtitles17downloadLanguages0ef5MovieH00e4OpenC10VipAccount04openH12PasswordHash0oH8Username19requirePerfectMatch0E23SkipIfAudioTrackMatches0evw8EmbeddedH7PresentACSbSg_SaySSGSgA2MSSSgAp3Mtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/init(isDownloadEpisodeSubtitles:downloadLanguages:isDownloadMovieSubtitles:isOpenSubtitleVipAccount:openSubtitlesPasswordHash:openSubtitlesUsername:requirePerfectMatch:isSkipIfAudioTrackMatches:isSkipIfEmbeddedSubtitlesPresent:)":{"role":"symbol","title":"init(isDownloadEpisodeSubtitles:downloadLanguages:isDownloadMovieSubtitles:isOpenSubtitleVipAccount:openSubtitlesPasswordHash:openSubtitlesUsername:requirePerfectMatch:isSkipIfAudioTrackMatches:isSkipIfEmbeddedSubtitlesPresent:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isDownloadEpisodeSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"downloadLanguages"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isDownloadMovieSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isOpenSubtitleVipAccount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openSubtitlesPasswordHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"openSubtitlesUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"requirePerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSkipIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/init(isDownloadEpisodeSubtitles:downloadLanguages:isDownloadMovieSubtitles:isOpenSubtitleVipAccount:openSubtitlesPasswordHash:openSubtitlesUsername:requirePerfectMatch:isSkipIfAudioTrackMatches:isSkipIfEmbeddedSubtitlesPresent:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/init(isdownloadepisodesubtitles:downloadlanguages:isdownloadmoviesubtitles:isopensubtitlevipaccount:opensubtitlespasswordhash:opensubtitlesusername:requireperfectmatch:isskipifaudiotrackmatches:isskipifembeddedsubtitlespresent:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isdownloadepisodesubtitles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isdownloadepisodesubtitles.json new file mode 100644 index 000000000..b22b8baeb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isdownloadepisodesubtitles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDownloadEpisodeSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/isdownloadepisodesubtitles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isDownloadEpisodeSubtitles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDownloadEpisodeSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDownloadEpisodeSubtitles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleOptionsV26isDownloadEpisodeSubtitlesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/isDownloadEpisodeSubtitles":{"role":"symbol","title":"isDownloadEpisodeSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDownloadEpisodeSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isDownloadEpisodeSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/isdownloadepisodesubtitles"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isdownloadmoviesubtitles.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isdownloadmoviesubtitles.json new file mode 100644 index 000000000..b61e5959f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isdownloadmoviesubtitles.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDownloadMovieSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/isdownloadmoviesubtitles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isDownloadMovieSubtitles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDownloadMovieSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDownloadMovieSubtitles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleOptionsV24isDownloadMovieSubtitlesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/isDownloadMovieSubtitles":{"role":"symbol","title":"isDownloadMovieSubtitles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDownloadMovieSubtitles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isDownloadMovieSubtitles","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/isdownloadmoviesubtitles"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isopensubtitlevipaccount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isopensubtitlevipaccount.json new file mode 100644 index 000000000..0e2a8ab21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isopensubtitlevipaccount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isOpenSubtitleVipAccount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/isopensubtitlevipaccount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isOpenSubtitleVipAccount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isOpenSubtitleVipAccount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isOpenSubtitleVipAccount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleOptionsV06isOpenC10VipAccountSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/isOpenSubtitleVipAccount":{"role":"symbol","title":"isOpenSubtitleVipAccount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isOpenSubtitleVipAccount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isOpenSubtitleVipAccount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/isopensubtitlevipaccount"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isskipifaudiotrackmatches.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isskipifaudiotrackmatches.json new file mode 100644 index 000000000..cc8ac5938 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isskipifaudiotrackmatches.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/isskipifaudiotrackmatches"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isSkipIfAudioTrackMatches","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSkipIfAudioTrackMatches","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleOptionsV25isSkipIfAudioTrackMatchesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/isSkipIfAudioTrackMatches":{"role":"symbol","title":"isSkipIfAudioTrackMatches","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipIfAudioTrackMatches"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isSkipIfAudioTrackMatches","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/isskipifaudiotrackmatches"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isskipifembeddedsubtitlespresent.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isskipifembeddedsubtitlespresent.json new file mode 100644 index 000000000..fd11a94e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/isskipifembeddedsubtitlespresent.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/isskipifembeddedsubtitlespresent"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isSkipIfEmbeddedSubtitlesPresent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSkipIfEmbeddedSubtitlesPresent","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleOptionsV32isSkipIfEmbeddedSubtitlesPresentSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/isSkipIfEmbeddedSubtitlesPresent":{"role":"symbol","title":"isSkipIfEmbeddedSubtitlesPresent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSkipIfEmbeddedSubtitlesPresent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/isSkipIfEmbeddedSubtitlesPresent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/isskipifembeddedsubtitlespresent"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/opensubtitlespasswordhash.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/opensubtitlespasswordhash.json new file mode 100644 index 000000000..bb0c14881 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/opensubtitlespasswordhash.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openSubtitlesPasswordHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/opensubtitlespasswordhash"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/openSubtitlesPasswordHash","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openSubtitlesPasswordHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"openSubtitlesPasswordHash","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleOptionsV25openSubtitlesPasswordHashSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/openSubtitlesPasswordHash":{"role":"symbol","title":"openSubtitlesPasswordHash","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openSubtitlesPasswordHash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/openSubtitlesPasswordHash","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/opensubtitlespasswordhash"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/opensubtitlesusername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/opensubtitlesusername.json new file mode 100644 index 000000000..e5baac83c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/opensubtitlesusername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openSubtitlesUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/opensubtitlesusername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/openSubtitlesUsername","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openSubtitlesUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"openSubtitlesUsername","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleOptionsV21openSubtitlesUsernameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/openSubtitlesUsername":{"role":"symbol","title":"openSubtitlesUsername","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"openSubtitlesUsername"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/openSubtitlesUsername","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/opensubtitlesusername"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/requireperfectmatch.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/requireperfectmatch.json new file mode 100644 index 000000000..658af069e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleoptions/requireperfectmatch.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requirePerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleoptions\/requireperfectmatch"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/requirePerfectMatch","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requirePerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"requirePerfectMatch","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleOptionsV19requirePerfectMatchSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions/requirePerfectMatch":{"role":"symbol","title":"requirePerfectMatch","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requirePerfectMatch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions\/requirePerfectMatch","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleoptions\/requireperfectmatch"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleOptions":{"role":"symbol","title":"SubtitleOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleOptions"}],"url":"\/documentation\/jellyfinapi\/subtitleoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode.json new file mode 100644 index 000000000..3f3a7dbc3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"title":"SubtitlePlaybackMode","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI20SubtitlePlaybackModeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/always","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/default","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/none","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/onlyForced","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/smart"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/init(rawvalue:)"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/onlyForced":{"role":"symbol","title":"SubtitlePlaybackMode.onlyForced","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"onlyForced"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/onlyForced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/onlyforced"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/equatable-implementations"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/default":{"role":"symbol","title":"SubtitlePlaybackMode.default","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/default","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/default"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/smart":{"role":"symbol","title":"SubtitlePlaybackMode.smart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"smart"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/smart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/smart"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/none":{"role":"symbol","title":"SubtitlePlaybackMode.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/none"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/always":{"role":"symbol","title":"SubtitlePlaybackMode.always","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"always"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/always","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/always"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/!=(_:_:).json new file mode 100644 index 000000000..f83617558 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI20SubtitlePlaybackModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/always.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/always.json new file mode 100644 index 000000000..de501138b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/always.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"always"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/always"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/always","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"always"}],"title":"SubtitlePlaybackMode.always","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20SubtitlePlaybackModeO6alwaysyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/always":{"role":"symbol","title":"SubtitlePlaybackMode.always","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"always"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/always","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/always"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/default.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/default.json new file mode 100644 index 000000000..ea1dac7a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/default.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/default"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/default","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"title":"SubtitlePlaybackMode.default","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20SubtitlePlaybackModeO7defaultyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/default":{"role":"symbol","title":"SubtitlePlaybackMode.default","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/default","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/default"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/encode(to:).json new file mode 100644 index 000000000..7bdd300e9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI20SubtitlePlaybackModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/equatable-implementations.json new file mode 100644 index 000000000..5a91fa83b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/hash(into:).json new file mode 100644 index 000000000..73bd03f30 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI20SubtitlePlaybackModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/hashvalue.json new file mode 100644 index 000000000..c067729af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI20SubtitlePlaybackModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/init(from:).json new file mode 100644 index 000000000..83f9d77b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI20SubtitlePlaybackModeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/init(rawvalue:).json new file mode 100644 index 000000000..d1707f23b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20SubtitlePlaybackModeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/none.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/none.json new file mode 100644 index 000000000..3afc284bc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/none.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/none"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/none","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"title":"SubtitlePlaybackMode.none","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20SubtitlePlaybackModeO4noneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/none":{"role":"symbol","title":"SubtitlePlaybackMode.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/none"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/onlyforced.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/onlyforced.json new file mode 100644 index 000000000..9dff87539 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/onlyforced.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"onlyForced"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/onlyforced"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/onlyForced","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"onlyForced"}],"title":"SubtitlePlaybackMode.onlyForced","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20SubtitlePlaybackModeO10onlyForcedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/onlyForced":{"role":"symbol","title":"SubtitlePlaybackMode.onlyForced","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"onlyForced"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/onlyForced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/onlyforced"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/rawrepresentable-implementations.json new file mode 100644 index 000000000..16685695c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/smart.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/smart.json new file mode 100644 index 000000000..00d0b83e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleplaybackmode/smart.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"smart"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleplaybackmode\/smart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/smart","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"smart"}],"title":"SubtitlePlaybackMode.smart","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20SubtitlePlaybackModeO5smartyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode/smart":{"role":"symbol","title":"SubtitlePlaybackMode.smart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"smart"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode\/smart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleplaybackmode\/smart"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile.json new file mode 100644 index 000000000..884d0d8b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"title":"SubtitleProfile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15SubtitleProfileV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/init(container:didlMode:format:language:method:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/didlMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/format","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/language","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/method"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/init(container:didlMode:format:language:method:)":{"role":"symbol","title":"init(container:didlMode:format:language:method:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"didlMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/init(container:didlMode:format:language:method:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/init(container:didlmode:format:language:method:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/language":{"role":"symbol","title":"language","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/language","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/language"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/format"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/method":{"role":"symbol","title":"method","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/method","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/method"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/didlMode":{"role":"symbol","title":"didlMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didlMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/didlMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/didlmode"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/container.json new file mode 100644 index 000000000..fd72ec790 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleprofile\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleProfileV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/didlmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/didlmode.json new file mode 100644 index 000000000..3ef0a3eb8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/didlmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didlMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleprofile\/didlmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/didlMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didlMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"didlMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleProfileV8didlModeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/didlMode":{"role":"symbol","title":"didlMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didlMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/didlMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/didlmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/format.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/format.json new file mode 100644 index 000000000..75c70df29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/format.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleprofile\/format"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/format","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleProfileV6formatSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/format"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/init(container:didlmode:format:language:method:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/init(container:didlmode:format:language:method:).json new file mode 100644 index 000000000..39a57157c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/init(container:didlmode:format:language:method:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"didlMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleprofile\/init(container:didlmode:format:language:method:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/init(container:didlMode:format:language:method:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"didlMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?)"}],"title":"init(container:didlMode:format:language:method:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15SubtitleProfileV9container8didlMode6format8language6methodACSSSg_A3iA0C14DeliveryMethodOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/init(container:didlMode:format:language:method:)":{"role":"symbol","title":"init(container:didlMode:format:language:method:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"didlMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/init(container:didlMode:format:language:method:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/init(container:didlmode:format:language:method:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/init(from:).json new file mode 100644 index 000000000..82315efac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleprofile\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15SubtitleProfileV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/language.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/language.json new file mode 100644 index 000000000..eaf473aa8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/language.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleprofile\/language"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/language","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"language","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleProfileV8languageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/language":{"role":"symbol","title":"language","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/language","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/language"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/method.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/method.json new file mode 100644 index 000000000..854c5035b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/subtitleprofile/method.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO","text":"SubtitleDeliveryMethod"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/subtitleprofile\/method"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/method","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?"}],"title":"method","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15SubtitleProfileV6methodAA0C14DeliveryMethodOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleDeliveryMethod":{"role":"symbol","title":"SubtitleDeliveryMethod","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleDeliveryMethod","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleDeliveryMethod"}],"url":"\/documentation\/jellyfinapi\/subtitledeliverymethod"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile/method":{"role":"symbol","title":"method","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitleDeliveryMethod","preciseIdentifier":"s:11JellyfinAPI22SubtitleDeliveryMethodO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Delivery method to use during playback of a specific subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile\/method","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/subtitleprofile\/method"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitleProfile":{"role":"symbol","title":"SubtitleProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitleProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitleProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitleProfile"}],"url":"\/documentation\/jellyfinapi\/subtitleprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype.json new file mode 100644 index 000000000..ec2eec8e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"title":"SyncPlayUserAccessType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI22SyncPlayUserAccessTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/createAndJoinGroups","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/joinGroups","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/none"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/createAndJoinGroups":{"role":"symbol","title":"SyncPlayUserAccessType.createAndJoinGroups","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"createAndJoinGroups"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/createAndJoinGroups","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/createandjoingroups"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/joinGroups":{"role":"symbol","title":"SyncPlayUserAccessType.joinGroups","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"joinGroups"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/joinGroups","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/joingroups"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/equatable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/none":{"role":"symbol","title":"SyncPlayUserAccessType.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/none"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/!=(_:_:).json new file mode 100644 index 000000000..91c5dff82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI22SyncPlayUserAccessTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/createandjoingroups.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/createandjoingroups.json new file mode 100644 index 000000000..d42592709 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/createandjoingroups.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"createAndJoinGroups"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/createandjoingroups"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/createAndJoinGroups","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"createAndJoinGroups"}],"title":"SyncPlayUserAccessType.createAndJoinGroups","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI22SyncPlayUserAccessTypeO19createAndJoinGroupsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/createAndJoinGroups":{"role":"symbol","title":"SyncPlayUserAccessType.createAndJoinGroups","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"createAndJoinGroups"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/createAndJoinGroups","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/createandjoingroups"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/encode(to:).json new file mode 100644 index 000000000..8b529503c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI22SyncPlayUserAccessTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/equatable-implementations.json new file mode 100644 index 000000000..8ec41ab9c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/hash(into:).json new file mode 100644 index 000000000..c1d32161f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI22SyncPlayUserAccessTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/hashvalue.json new file mode 100644 index 000000000..97d8cc25b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI22SyncPlayUserAccessTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/init(from:).json new file mode 100644 index 000000000..a3f34a52d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI22SyncPlayUserAccessTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/init(rawvalue:).json new file mode 100644 index 000000000..785f75365 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22SyncPlayUserAccessTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/joingroups.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/joingroups.json new file mode 100644 index 000000000..71330bb57 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/joingroups.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"joinGroups"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/joingroups"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/joinGroups","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"joinGroups"}],"title":"SyncPlayUserAccessType.joinGroups","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI22SyncPlayUserAccessTypeO10joinGroupsyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/joinGroups":{"role":"symbol","title":"SyncPlayUserAccessType.joinGroups","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"joinGroups"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/joinGroups","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/joingroups"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/none.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/none.json new file mode 100644 index 000000000..08e2f46a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/none.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/none"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/none","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"title":"SyncPlayUserAccessType.none","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI22SyncPlayUserAccessTypeO4noneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/none":{"role":"symbol","title":"SyncPlayUserAccessType.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/none"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/rawrepresentable-implementations.json new file mode 100644 index 000000000..5ba79175d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/syncplayuseraccesstype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/syncplayuseraccesstype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo.json new file mode 100644 index 000000000..36607087f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class SystemInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"title":"SystemInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10SystemInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/init(cachePath:canLaunchWebBrowser:canSelfRestart:completedInstallations:encoderLocation:hasPendingRestart:hasUpdateAvailable:id:internalMetadataPath:isShuttingDown:itemsByNamePath:localAddress:logPath:operatingSystem:operatingSystemDisplayName:packageName:productName:programDataPath:serverName:isStartupWizardCompleted:isSupportsLibraryMonitor:systemArchitecture:transcodingTempPath:version:webPath:webSocketPortNumber:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/cachePath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/canLaunchWebBrowser","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/canSelfRestart","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/completedInstallations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/encoderLocation","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/hasPendingRestart","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/hasUpdateAvailable","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/id-8jhbx","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/internalMetadataPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isShuttingDown","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isStartupWizardCompleted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isSupportsLibraryMonitor","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/itemsByNamePath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/localAddress","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/logPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/operatingSystem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/operatingSystemDisplayName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/packageName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/productName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/programDataPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/serverName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/systemArchitecture","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/transcodingTempPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/version","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/webPath","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/webSocketPortNumber"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/localAddress":{"role":"symbol","title":"localAddress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the local address."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/localAddress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/localaddress"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/encoderLocation":{"role":"symbol","title":"encoderLocation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FFmpegLocation","preciseIdentifier":"s:11JellyfinAPI14FFmpegLocationO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/encoderLocation","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/encoderlocation"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/identifiable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/webPath":{"role":"symbol","title":"webPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"webPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the web UI resources path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/webPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/webpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/isShuttingDown":{"role":"symbol","title":"isShuttingDown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShuttingDown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isShuttingDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/isshuttingdown"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/completedInstallations":{"role":"symbol","title":"completedInstallations","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completedInstallations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"InstallationInfo","preciseIdentifier":"s:11JellyfinAPI16InstallationInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the completed installations."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/completedInstallations","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/completedinstallations"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/hasPendingRestart":{"role":"symbol","title":"hasPendingRestart","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasPendingRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has pending restart."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/hasPendingRestart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/haspendingrestart"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/isStartupWizardCompleted":{"role":"symbol","title":"isStartupWizardCompleted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the startup wizard is completed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isStartupWizardCompleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/isstartupwizardcompleted"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/logPath":{"role":"symbol","title":"logPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the log path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/logPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/logpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/internalMetadataPath":{"role":"symbol","title":"internalMetadataPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"internalMetadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the internal metadata path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/internalMetadataPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/internalmetadatapath"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/transcodingTempPath":{"role":"symbol","title":"transcodingTempPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the transcode path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/transcodingTempPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/transcodingtemppath"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/operatingSystem":{"role":"symbol","title":"operatingSystem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the operating system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/operatingSystem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/operatingsystem"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/canLaunchWebBrowser":{"role":"symbol","title":"canLaunchWebBrowser","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canLaunchWebBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/canLaunchWebBrowser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/canlaunchwebbrowser"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/init(cachePath:canLaunchWebBrowser:canSelfRestart:completedInstallations:encoderLocation:hasPendingRestart:hasUpdateAvailable:id:internalMetadataPath:isShuttingDown:itemsByNamePath:localAddress:logPath:operatingSystem:operatingSystemDisplayName:packageName:productName:programDataPath:serverName:isStartupWizardCompleted:isSupportsLibraryMonitor:systemArchitecture:transcodingTempPath:version:webPath:webSocketPortNumber:)":{"role":"symbol","title":"init(cachePath:canLaunchWebBrowser:canSelfRestart:completedInstallations:encoderLocation:hasPendingRestart:hasUpdateAvailable:id:internalMetadataPath:isShuttingDown:itemsByNamePath:localAddress:logPath:operatingSystem:operatingSystemDisplayName:packageName:productName:programDataPath:serverName:isStartupWizardCompleted:isSupportsLibraryMonitor:systemArchitecture:transcodingTempPath:version:webPath:webSocketPortNumber:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canLaunchWebBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSelfRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"completedInstallations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"InstallationInfo","preciseIdentifier":"s:11JellyfinAPI16InstallationInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"encoderLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FFmpegLocation","preciseIdentifier":"s:11JellyfinAPI14FFmpegLocationO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasPendingRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"internalMetadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShuttingDown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemsByNamePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"logPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"operatingSystemDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"packageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programDataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsLibraryMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"systemArchitecture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Architecture","preciseIdentifier":"s:11JellyfinAPI12ArchitectureO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"webPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"webSocketPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/init(cachePath:canLaunchWebBrowser:canSelfRestart:completedInstallations:encoderLocation:hasPendingRestart:hasUpdateAvailable:id:internalMetadataPath:isShuttingDown:itemsByNamePath:localAddress:logPath:operatingSystem:operatingSystemDisplayName:packageName:productName:programDataPath:serverName:isStartupWizardCompleted:isSupportsLibraryMonitor:systemArchitecture:transcodingTempPath:version:webPath:webSocketPortNumber:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/init(cachepath:canlaunchwebbrowser:canselfrestart:completedinstallations:encoderlocation:haspendingrestart:hasupdateavailable:id:internalmetadatapath:isshuttingdown:itemsbynamepath:localaddress:logpath:operatingsystem:operatingsystemdisplay-7zh9e"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/operatingSystemDisplayName":{"role":"symbol","title":"operatingSystemDisplayName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystemDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display name of the operating system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/operatingSystemDisplayName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/operatingsystemdisplayname"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/systemArchitecture":{"role":"symbol","title":"systemArchitecture","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"systemArchitecture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Architecture","preciseIdentifier":"s:11JellyfinAPI12ArchitectureO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/systemArchitecture","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/systemarchitecture"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/id-8jhbx":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/id-8jhbx","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/id-8jhbx"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/packageName":{"role":"symbol","title":"packageName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the package name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/packageName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/packagename"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/serverName":{"role":"symbol","title":"serverName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/serverName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/servername"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/webSocketPortNumber":{"role":"symbol","title":"webSocketPortNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"webSocketPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the web socket port number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/webSocketPortNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/websocketportnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/isSupportsLibraryMonitor":{"role":"symbol","title":"isSupportsLibraryMonitor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLibraryMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports library monitor]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isSupportsLibraryMonitor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/issupportslibrarymonitor"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/productName":{"role":"symbol","title":"productName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the product name. This is the AssemblyProduct name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/productName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/productname"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/itemsByNamePath":{"role":"symbol","title":"itemsByNamePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsByNamePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the items by name path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/itemsByNamePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/itemsbynamepath"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/programDataPath":{"role":"symbol","title":"programDataPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programDataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program data path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/programDataPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/programdatapath"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/canSelfRestart":{"role":"symbol","title":"canSelfRestart","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSelfRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can self restart."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/canSelfRestart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/canselfrestart"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/cachePath":{"role":"symbol","title":"cachePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the cache path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/cachePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/cachepath"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/hasUpdateAvailable":{"role":"symbol","title":"hasUpdateAvailable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has update available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/hasUpdateAvailable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/hasupdateavailable"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/cachepath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/cachepath.json new file mode 100644 index 000000000..f3cf68a44 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/cachepath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/cachepath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/cachePath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the cache path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"cachePath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV9cachePathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/cachePath":{"role":"symbol","title":"cachePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the cache path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/cachePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/cachepath"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/canlaunchwebbrowser.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/canlaunchwebbrowser.json new file mode 100644 index 000000000..1efbd7ebf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/canlaunchwebbrowser.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canLaunchWebBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/canlaunchwebbrowser"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/canLaunchWebBrowser","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canLaunchWebBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canLaunchWebBrowser","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV19canLaunchWebBrowserSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/canLaunchWebBrowser":{"role":"symbol","title":"canLaunchWebBrowser","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canLaunchWebBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/canLaunchWebBrowser","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/canlaunchwebbrowser"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/canselfrestart.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/canselfrestart.json new file mode 100644 index 000000000..5d841e097 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/canselfrestart.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSelfRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/canselfrestart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/canSelfRestart","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can self restart."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSelfRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"canSelfRestart","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV14canSelfRestartSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/canSelfRestart":{"role":"symbol","title":"canSelfRestart","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSelfRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance can self restart."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/canSelfRestart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/canselfrestart"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/completedinstallations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/completedinstallations.json new file mode 100644 index 000000000..a214c5ae2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/completedinstallations.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completedInstallations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","preciseIdentifier":"s:11JellyfinAPI16InstallationInfoV","text":"InstallationInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/completedinstallations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/completedInstallations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the completed installations."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completedInstallations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"InstallationInfo","preciseIdentifier":"s:11JellyfinAPI16InstallationInfoV"},{"kind":"text","text":"]?"}],"title":"completedInstallations","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV22completedInstallationsSayAA012InstallationD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/completedInstallations":{"role":"symbol","title":"completedInstallations","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completedInstallations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"InstallationInfo","preciseIdentifier":"s:11JellyfinAPI16InstallationInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the completed installations."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/completedInstallations","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/completedinstallations"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/encoderlocation.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/encoderlocation.json new file mode 100644 index 000000000..5b4ec399f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/encoderlocation.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","preciseIdentifier":"s:11JellyfinAPI14FFmpegLocationO","text":"FFmpegLocation"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"aside","style":"warning","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/encoderlocation"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/encoderLocation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FFmpegLocation","preciseIdentifier":"s:11JellyfinAPI14FFmpegLocationO"},{"kind":"text","text":"?"}],"title":"encoderLocation","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV15encoderLocationAA06FFmpegF0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/encoderLocation":{"role":"symbol","title":"encoderLocation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"encoderLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FFmpegLocation","preciseIdentifier":"s:11JellyfinAPI14FFmpegLocationO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/encoderLocation","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/encoderlocation"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/haspendingrestart.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/haspendingrestart.json new file mode 100644 index 000000000..351172824 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/haspendingrestart.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasPendingRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/haspendingrestart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/hasPendingRestart","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has pending restart."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasPendingRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasPendingRestart","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV17hasPendingRestartSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/hasPendingRestart":{"role":"symbol","title":"hasPendingRestart","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasPendingRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has pending restart."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/hasPendingRestart","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/haspendingrestart"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/hasupdateavailable.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/hasupdateavailable.json new file mode 100644 index 000000000..dcbac37ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/hasupdateavailable.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"aside","style":"warning","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Deprecated."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/hasupdateavailable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/hasUpdateAvailable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has update available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasUpdateAvailable","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV18hasUpdateAvailableSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/hasUpdateAvailable":{"role":"symbol","title":"hasUpdateAvailable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has update available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/hasUpdateAvailable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/hasupdateavailable"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/id-8jhbx.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/id-8jhbx.json new file mode 100644 index 000000000..17197c4e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/id-8jhbx.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/id-8jhbx"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/id-8jhbx","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/id-8jhbx":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/id-8jhbx","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/id-8jhbx"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/id-9ys02.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/id-9ys02.json new file mode 100644 index 000000000..77a8565a1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/id-9ys02.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/id-9ys02"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/id-9ys02","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI10SystemInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/id-9ys02":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/id-9ys02","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/id-9ys02"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/identifiable-implementations.json new file mode 100644 index 000000000..3bec0715f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/id-9ys02"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/id-9ys02":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/id-9ys02","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/id-9ys02"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/init(cachepath:canlaunchwebbrowser:canselfrestart:completedinstallations:encoderlocation:haspendingrestart:hasupdateavailable:id:internalmetadatapath:isshuttingdown:itemsbynamepath:localaddress:logpath:operatingsystem:operatingsystemdisplay-7zh9e.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/init(cachepath:canlaunchwebbrowser:canselfrestart:completedinstallations:encoderlocation:haspendingrestart:hasupdateavailable:id:internalmetadatapath:isshuttingdown:itemsbynamepath:localaddress:logpath:operatingsystem:operatingsystemdisplay-7zh9e.json new file mode 100644 index 000000000..d9b6e618b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/init(cachepath:canlaunchwebbrowser:canselfrestart:completedinstallations:encoderlocation:haspendingrestart:hasupdateavailable:id:internalmetadatapath:isshuttingdown:itemsbynamepath:localaddress:logpath:operatingsystem:operatingsystemdisplay-7zh9e.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canLaunchWebBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"canSelfRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"completedInstallations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","preciseIdentifier":"s:11JellyfinAPI16InstallationInfoV","text":"InstallationInfo"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"encoderLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","preciseIdentifier":"s:11JellyfinAPI14FFmpegLocationO","text":"FFmpegLocation"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasPendingRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"internalMetadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isShuttingDown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemsByNamePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"logPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"operatingSystemDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"packageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"programDataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSupportsLibraryMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"systemArchitecture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","preciseIdentifier":"s:11JellyfinAPI12ArchitectureO","text":"Architecture"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"webPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"webSocketPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/init(cachepath:canlaunchwebbrowser:canselfrestart:completedinstallations:encoderlocation:haspendingrestart:hasupdateavailable:id:internalmetadatapath:isshuttingdown:itemsbynamepath:localaddress:logpath:operatingsystem:operatingsystemdisplay-7zh9e"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/init(cachePath:canLaunchWebBrowser:canSelfRestart:completedInstallations:encoderLocation:hasPendingRestart:hasUpdateAvailable:id:internalMetadataPath:isShuttingDown:itemsByNamePath:localAddress:logPath:operatingSystem:operatingSystemDisplayName:packageName:productName:programDataPath:serverName:isStartupWizardCompleted:isSupportsLibraryMonitor:systemArchitecture:transcodingTempPath:version:webPath:webSocketPortNumber:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canLaunchWebBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSelfRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"completedInstallations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"InstallationInfo","preciseIdentifier":"s:11JellyfinAPI16InstallationInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"encoderLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FFmpegLocation","preciseIdentifier":"s:11JellyfinAPI14FFmpegLocationO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasPendingRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"internalMetadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShuttingDown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemsByNamePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"logPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"operatingSystemDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"packageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programDataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsLibraryMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"systemArchitecture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Architecture","preciseIdentifier":"s:11JellyfinAPI12ArchitectureO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"webPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"webSocketPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(cachePath:canLaunchWebBrowser:canSelfRestart:completedInstallations:encoderLocation:hasPendingRestart:hasUpdateAvailable:id:internalMetadataPath:isShuttingDown:itemsByNamePath:localAddress:logPath:operatingSystem:operatingSystemDisplayName:packageName:productName:programDataPath:serverName:isStartupWizardCompleted:isSupportsLibraryMonitor:systemArchitecture:transcodingTempPath:version:webPath:webSocketPortNumber:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10SystemInfoV9cachePath19canLaunchWebBrowser0G11SelfRestart22completedInstallations15encoderLocation010hasPendingL00Q15UpdateAvailable2id016internalMetadataF014isShuttingDown011itemsByNameF012localAddress03logF009operatingC009operatingC11DisplayName11packageName11productName011programDataF010serverName0X22StartupWizardCompleted0X22SupportsLibraryMonitor18systemArchitecture015transcodingTempF07version03webF019webSocketPortNumberACSSSg_SbSgA3_SayAA012InstallationD0VGSgAA06FFmpegP0OSgA3_A3_A2_A2_A3_A2_A2_A2_A2_A2_A2_A2_A2_A2_A3_A3_AA12ArchitectureOSgA2_A2_A2_s5Int32VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/InstallationInfo":{"role":"symbol","title":"InstallationInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstallationInfo"}],"abstract":[{"type":"text","text":"Class InstallationInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/InstallationInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstallationInfo"}],"url":"\/documentation\/jellyfinapi\/installationinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/FFmpegLocation":{"role":"symbol","title":"FFmpegLocation","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FFmpegLocation"}],"abstract":[{"type":"text","text":"Enum describing the location of the FFmpeg tool."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/FFmpegLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FFmpegLocation"}],"url":"\/documentation\/jellyfinapi\/ffmpeglocation"},"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/init(cachePath:canLaunchWebBrowser:canSelfRestart:completedInstallations:encoderLocation:hasPendingRestart:hasUpdateAvailable:id:internalMetadataPath:isShuttingDown:itemsByNamePath:localAddress:logPath:operatingSystem:operatingSystemDisplayName:packageName:productName:programDataPath:serverName:isStartupWizardCompleted:isSupportsLibraryMonitor:systemArchitecture:transcodingTempPath:version:webPath:webSocketPortNumber:)":{"role":"symbol","title":"init(cachePath:canLaunchWebBrowser:canSelfRestart:completedInstallations:encoderLocation:hasPendingRestart:hasUpdateAvailable:id:internalMetadataPath:isShuttingDown:itemsByNamePath:localAddress:logPath:operatingSystem:operatingSystemDisplayName:packageName:productName:programDataPath:serverName:isStartupWizardCompleted:isSupportsLibraryMonitor:systemArchitecture:transcodingTempPath:version:webPath:webSocketPortNumber:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"cachePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canLaunchWebBrowser"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"canSelfRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"completedInstallations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"InstallationInfo","preciseIdentifier":"s:11JellyfinAPI16InstallationInfoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"encoderLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FFmpegLocation","preciseIdentifier":"s:11JellyfinAPI14FFmpegLocationO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasPendingRestart"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasUpdateAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"internalMetadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isShuttingDown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemsByNamePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"logPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"operatingSystemDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"packageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programDataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSupportsLibraryMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"systemArchitecture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Architecture","preciseIdentifier":"s:11JellyfinAPI12ArchitectureO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"webPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"webSocketPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/init(cachePath:canLaunchWebBrowser:canSelfRestart:completedInstallations:encoderLocation:hasPendingRestart:hasUpdateAvailable:id:internalMetadataPath:isShuttingDown:itemsByNamePath:localAddress:logPath:operatingSystem:operatingSystemDisplayName:packageName:productName:programDataPath:serverName:isStartupWizardCompleted:isSupportsLibraryMonitor:systemArchitecture:transcodingTempPath:version:webPath:webSocketPortNumber:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/init(cachepath:canlaunchwebbrowser:canselfrestart:completedinstallations:encoderlocation:haspendingrestart:hasupdateavailable:id:internalmetadatapath:isshuttingdown:itemsbynamepath:localaddress:logpath:operatingsystem:operatingsystemdisplay-7zh9e"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/init(from:).json new file mode 100644 index 000000000..5a88ed77b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10SystemInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/internalmetadatapath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/internalmetadatapath.json new file mode 100644 index 000000000..993dddeaa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/internalmetadatapath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"internalMetadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/internalmetadatapath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/internalMetadataPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the internal metadata path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"internalMetadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"internalMetadataPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV20internalMetadataPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/internalMetadataPath":{"role":"symbol","title":"internalMetadataPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"internalMetadataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the internal metadata path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/internalMetadataPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/internalmetadatapath"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/isshuttingdown.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/isshuttingdown.json new file mode 100644 index 000000000..c99008c8c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/isshuttingdown.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShuttingDown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/isshuttingdown"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isShuttingDown","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShuttingDown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isShuttingDown","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV14isShuttingDownSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/isShuttingDown":{"role":"symbol","title":"isShuttingDown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isShuttingDown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isShuttingDown","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/isshuttingdown"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/isstartupwizardcompleted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/isstartupwizardcompleted.json new file mode 100644 index 000000000..45d429b0b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/isstartupwizardcompleted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/isstartupwizardcompleted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isStartupWizardCompleted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the startup wizard is completed."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isStartupWizardCompleted","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV24isStartupWizardCompletedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/isStartupWizardCompleted":{"role":"symbol","title":"isStartupWizardCompleted","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStartupWizardCompleted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the startup wizard is completed."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isStartupWizardCompleted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/isstartupwizardcompleted"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/issupportslibrarymonitor.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/issupportslibrarymonitor.json new file mode 100644 index 000000000..9756e10a6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/issupportslibrarymonitor.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLibraryMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/issupportslibrarymonitor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isSupportsLibraryMonitor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports library monitor]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLibraryMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSupportsLibraryMonitor","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV24isSupportsLibraryMonitorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/isSupportsLibraryMonitor":{"role":"symbol","title":"isSupportsLibraryMonitor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSupportsLibraryMonitor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [supports library monitor]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/isSupportsLibraryMonitor","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/issupportslibrarymonitor"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/itemsbynamepath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/itemsbynamepath.json new file mode 100644 index 000000000..9ae0225a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/itemsbynamepath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsByNamePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/itemsbynamepath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/itemsByNamePath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items by name path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsByNamePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"itemsByNamePath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV15itemsByNamePathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/itemsByNamePath":{"role":"symbol","title":"itemsByNamePath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemsByNamePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the items by name path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/itemsByNamePath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/itemsbynamepath"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/localaddress.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/localaddress.json new file mode 100644 index 000000000..ea4c23575 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/localaddress.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/localaddress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/localAddress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the local address."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"localAddress","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV12localAddressSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/localAddress":{"role":"symbol","title":"localAddress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the local address."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/localAddress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/localaddress"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/logpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/logpath.json new file mode 100644 index 000000000..3984b861d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/logpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/logpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/logPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the log path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"logPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV7logPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/logPath":{"role":"symbol","title":"logPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"logPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the log path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/logPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/logpath"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/operatingsystem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/operatingsystem.json new file mode 100644 index 000000000..c7aabeb5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/operatingsystem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/operatingsystem"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/operatingSystem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the operating system."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"operatingSystem","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV09operatingC0SSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/operatingSystem":{"role":"symbol","title":"operatingSystem","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystem"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the operating system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/operatingSystem","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/operatingsystem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/operatingsystemdisplayname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/operatingsystemdisplayname.json new file mode 100644 index 000000000..739befa4b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/operatingsystemdisplayname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystemDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/operatingsystemdisplayname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/operatingSystemDisplayName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the display name of the operating system."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystemDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"operatingSystemDisplayName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV09operatingC11DisplayNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/operatingSystemDisplayName":{"role":"symbol","title":"operatingSystemDisplayName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"operatingSystemDisplayName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the display name of the operating system."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/operatingSystemDisplayName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/operatingsystemdisplayname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/packagename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/packagename.json new file mode 100644 index 000000000..e262829c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/packagename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/packagename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/packageName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the package name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"packageName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV11packageNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/packageName":{"role":"symbol","title":"packageName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"packageName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the package name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/packageName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/packagename"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/productname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/productname.json new file mode 100644 index 000000000..21bb63001 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/productname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/productname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/productName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the product name. This is the AssemblyProduct name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"productName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV11productNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/productName":{"role":"symbol","title":"productName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"productName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the product name. This is the AssemblyProduct name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/productName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/productname"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/programdatapath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/programdatapath.json new file mode 100644 index 000000000..533eba91a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/programdatapath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programDataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/programdatapath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/programDataPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the program data path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programDataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"programDataPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV15programDataPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/programDataPath":{"role":"symbol","title":"programDataPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programDataPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program data path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/programDataPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/programdatapath"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/servername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/servername.json new file mode 100644 index 000000000..5e9864554 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/servername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/servername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/serverName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serverName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV10serverNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/serverName":{"role":"symbol","title":"serverName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/serverName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/servername"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/systemarchitecture.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/systemarchitecture.json new file mode 100644 index 000000000..08410fd46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/systemarchitecture.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"systemArchitecture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","preciseIdentifier":"s:11JellyfinAPI12ArchitectureO","text":"Architecture"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/systemarchitecture"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/systemArchitecture","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"systemArchitecture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Architecture","preciseIdentifier":"s:11JellyfinAPI12ArchitectureO"},{"kind":"text","text":"?"}],"title":"systemArchitecture","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV18systemArchitectureAA0F0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Architecture":{"role":"symbol","title":"Architecture","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Architecture"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Architecture","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Architecture"}],"url":"\/documentation\/jellyfinapi\/architecture"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/systemArchitecture":{"role":"symbol","title":"systemArchitecture","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"systemArchitecture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Architecture","preciseIdentifier":"s:11JellyfinAPI12ArchitectureO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/systemArchitecture","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/systemarchitecture"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/transcodingtemppath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/transcodingtemppath.json new file mode 100644 index 000000000..f0b77f082 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/transcodingtemppath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/transcodingtemppath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/transcodingTempPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the transcode path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"transcodingTempPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV19transcodingTempPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/transcodingTempPath":{"role":"symbol","title":"transcodingTempPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodingTempPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the transcode path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/transcodingTempPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/transcodingtemppath"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/version.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/version.json new file mode 100644 index 000000000..7ec2ede92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/version.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/version"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/version","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the server version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"version","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV7versionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/webpath.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/webpath.json new file mode 100644 index 000000000..94c4d6716 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/webpath.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"webPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/webpath"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/webPath","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the web UI resources path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"webPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"webPath","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV7webPathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/webPath":{"role":"symbol","title":"webPath","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"webPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the web UI resources path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/webPath","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/webpath"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/websocketportnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/websocketportnumber.json new file mode 100644 index 000000000..590b7da2d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/systeminfo/websocketportnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"webSocketPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/systeminfo\/websocketportnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/webSocketPortNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the web socket port number."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"webSocketPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"webSocketPortNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10SystemInfoV19webSocketPortNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo/webSocketPortNumber":{"role":"symbol","title":"webSocketPortNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"webSocketPortNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the web socket port number."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo\/webSocketPortNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/systeminfo\/websocketportnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/SystemInfo":{"role":"symbol","title":"SystemInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SystemInfo"}],"abstract":[{"type":"text","text":"Class SystemInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SystemInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SystemInfo"}],"url":"\/documentation\/jellyfinapi\/systeminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus.json new file mode 100644 index 000000000..71235ed7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"title":"TaskCompletionStatus","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI20TaskCompletionStatusO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/aborted","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/cancelled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/completed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/failed"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/completed":{"role":"symbol","title":"TaskCompletionStatus.completed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"completed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/completed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/completed"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/init(rawvalue:)"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/failed":{"role":"symbol","title":"TaskCompletionStatus.failed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/failed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/failed"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/cancelled":{"role":"symbol","title":"TaskCompletionStatus.cancelled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/cancelled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/cancelled"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/aborted":{"role":"symbol","title":"TaskCompletionStatus.aborted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"aborted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/aborted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/aborted"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/!=(_:_:).json new file mode 100644 index 000000000..9b9406ccb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI20TaskCompletionStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/aborted.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/aborted.json new file mode 100644 index 000000000..40dc521c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/aborted.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"aborted"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/aborted"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/aborted","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"aborted"}],"title":"TaskCompletionStatus.aborted","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20TaskCompletionStatusO7abortedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/aborted":{"role":"symbol","title":"TaskCompletionStatus.aborted","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"aborted"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/aborted","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/aborted"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/cancelled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/cancelled.json new file mode 100644 index 000000000..ebef3dd91 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/cancelled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelled"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/cancelled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/cancelled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelled"}],"title":"TaskCompletionStatus.cancelled","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20TaskCompletionStatusO9cancelledyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/cancelled":{"role":"symbol","title":"TaskCompletionStatus.cancelled","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelled"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/cancelled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/cancelled"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/completed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/completed.json new file mode 100644 index 000000000..79b3de78a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/completed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"completed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/completed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/completed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"completed"}],"title":"TaskCompletionStatus.completed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20TaskCompletionStatusO9completedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/completed":{"role":"symbol","title":"TaskCompletionStatus.completed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"completed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/completed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/completed"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/encode(to:).json new file mode 100644 index 000000000..4be364cf0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI20TaskCompletionStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/equatable-implementations.json new file mode 100644 index 000000000..fdad3ff2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/failed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/failed.json new file mode 100644 index 000000000..bf4bc2fa9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/failed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/failed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/failed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failed"}],"title":"TaskCompletionStatus.failed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI20TaskCompletionStatusO6failedyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/failed":{"role":"symbol","title":"TaskCompletionStatus.failed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failed"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/failed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/failed"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/hash(into:).json new file mode 100644 index 000000000..45ffd36cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI20TaskCompletionStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/hashvalue.json new file mode 100644 index 000000000..78d89e6ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI20TaskCompletionStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/init(from:).json new file mode 100644 index 000000000..faf2e61a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI20TaskCompletionStatusO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/init(rawvalue:).json new file mode 100644 index 000000000..982fe1cc8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI20TaskCompletionStatusO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/rawrepresentable-implementations.json new file mode 100644 index 000000000..0959abc39 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskcompletionstatus/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/taskcompletionstatus\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskcompletionstatus\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo.json new file mode 100644 index 000000000..82bdce874 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class TaskInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"title":"TaskInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI8TaskInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/init(category:currentProgressPercentage:description:id:isHidden:key:lastExecutionResult:name:state:triggers:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/category","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/currentProgressPercentage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/description","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/id-467n2","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/isHidden","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/key","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/lastExecutionResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/state","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/triggers"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/currentProgressPercentage":{"role":"symbol","title":"currentProgressPercentage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentProgressPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the progress."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/currentProgressPercentage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/currentprogresspercentage"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/key":{"role":"symbol","title":"key","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the key."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/key","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/key"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/lastExecutionResult":{"role":"symbol","title":"lastExecutionResult","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastExecutionResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskResult","preciseIdentifier":"s:11JellyfinAPI10TaskResultV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last execution result."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/lastExecutionResult","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/lastexecutionresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the description."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/description"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/init(category:currentProgressPercentage:description:id:isHidden:key:lastExecutionResult:name:state:triggers:)":{"role":"symbol","title":"init(category:currentProgressPercentage:description:id:isHidden:key:lastExecutionResult:name:state:triggers:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"currentProgressPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastExecutionResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskResult","preciseIdentifier":"s:11JellyfinAPI10TaskResultV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskState","preciseIdentifier":"s:11JellyfinAPI9TaskStateO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"triggers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/init(category:currentProgressPercentage:description:id:isHidden:key:lastExecutionResult:name:state:triggers:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/init(category:currentprogresspercentage:description:id:ishidden:key:lastexecutionresult:name:state:triggers:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskState","preciseIdentifier":"s:11JellyfinAPI9TaskStateO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the state of the task."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/state","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/state"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/isHidden":{"role":"symbol","title":"isHidden","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is hidden."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/isHidden","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/ishidden"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/category":{"role":"symbol","title":"category","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the category."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/category","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/category"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/triggers":{"role":"symbol","title":"triggers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"triggers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the triggers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/triggers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/triggers"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/id-467n2":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/id-467n2","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/id-467n2"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/category.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/category.json new file mode 100644 index 000000000..337f10c3b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/category.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/category"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/category","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the category."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"category","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8TaskInfoV8categorySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/category":{"role":"symbol","title":"category","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the category."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/category","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/category"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/currentprogresspercentage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/currentprogresspercentage.json new file mode 100644 index 000000000..3ac93dd51 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/currentprogresspercentage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentProgressPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/currentprogresspercentage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/currentProgressPercentage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the progress."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentProgressPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"currentProgressPercentage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8TaskInfoV25currentProgressPercentageSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/currentProgressPercentage":{"role":"symbol","title":"currentProgressPercentage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentProgressPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the progress."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/currentProgressPercentage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/currentprogresspercentage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/description.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/description.json new file mode 100644 index 000000000..5439c779e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/description.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the description."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8TaskInfoV11descriptionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the description."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/description","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/description"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/id-2xys6.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/id-2xys6.json new file mode 100644 index 000000000..60f427152 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/id-2xys6.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/id-2xys6"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/id-2xys6","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI8TaskInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/id-2xys6":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/id-2xys6","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/id-2xys6"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/id-467n2.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/id-467n2.json new file mode 100644 index 000000000..66aaec966 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/id-467n2.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/id-467n2"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/id-467n2","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8TaskInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/id-467n2":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/id-467n2","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/id-467n2"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/identifiable-implementations.json new file mode 100644 index 000000000..1720db5e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/id-2xys6"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/id-2xys6":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/id-2xys6","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/id-2xys6"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/init(category:currentprogresspercentage:description:id:ishidden:key:lastexecutionresult:name:state:triggers:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/init(category:currentprogresspercentage:description:id:ishidden:key:lastexecutionresult:name:state:triggers:).json new file mode 100644 index 000000000..7f4d1313a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/init(category:currentprogresspercentage:description:id:ishidden:key:lastexecutionresult:name:state:triggers:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"currentProgressPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lastExecutionResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","preciseIdentifier":"s:11JellyfinAPI10TaskResultV","text":"TaskResult"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","preciseIdentifier":"s:11JellyfinAPI9TaskStateO","text":"TaskState"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"triggers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV","text":"TaskTriggerInfo"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/init(category:currentprogresspercentage:description:id:ishidden:key:lastexecutionresult:name:state:triggers:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/init(category:currentProgressPercentage:description:id:isHidden:key:lastExecutionResult:name:state:triggers:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"currentProgressPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastExecutionResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskResult","preciseIdentifier":"s:11JellyfinAPI10TaskResultV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskState","preciseIdentifier":"s:11JellyfinAPI9TaskStateO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"triggers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV"},{"kind":"text","text":"]?)"}],"title":"init(category:currentProgressPercentage:description:id:isHidden:key:lastExecutionResult:name:state:triggers:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8TaskInfoV8category25currentProgressPercentage11description2id8isHidden3key19lastExecutionResult4name5state8triggersACSSSg_SdSgA2NSbSgAnA0cP0VSgAnA0C5StateOSgSayAA0c7TriggerD0VGSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/init(category:currentProgressPercentage:description:id:isHidden:key:lastExecutionResult:name:state:triggers:)":{"role":"symbol","title":"init(category:currentProgressPercentage:description:id:isHidden:key:lastExecutionResult:name:state:triggers:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"category"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"currentProgressPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastExecutionResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskResult","preciseIdentifier":"s:11JellyfinAPI10TaskResultV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskState","preciseIdentifier":"s:11JellyfinAPI9TaskStateO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"triggers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/init(category:currentProgressPercentage:description:id:isHidden:key:lastExecutionResult:name:state:triggers:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/init(category:currentprogresspercentage:description:id:ishidden:key:lastexecutionresult:name:state:triggers:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/init(from:).json new file mode 100644 index 000000000..bd3e46a45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI8TaskInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/ishidden.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/ishidden.json new file mode 100644 index 000000000..ed1a70d29 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/ishidden.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/ishidden"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/isHidden","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is hidden."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isHidden","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8TaskInfoV8isHiddenSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/isHidden":{"role":"symbol","title":"isHidden","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is hidden."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/isHidden","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/ishidden"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/key.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/key.json new file mode 100644 index 000000000..5890adcdc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/key.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/key"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/key","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the key."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"key","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8TaskInfoV3keySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/key":{"role":"symbol","title":"key","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the key."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/key","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/key"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/lastexecutionresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/lastexecutionresult.json new file mode 100644 index 000000000..7fdec2606 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/lastexecutionresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastExecutionResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","preciseIdentifier":"s:11JellyfinAPI10TaskResultV","text":"TaskResult"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/lastexecutionresult"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/lastExecutionResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the last execution result."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastExecutionResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskResult","preciseIdentifier":"s:11JellyfinAPI10TaskResultV"},{"kind":"text","text":"?"}],"title":"lastExecutionResult","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8TaskInfoV19lastExecutionResultAA0cG0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/lastExecutionResult":{"role":"symbol","title":"lastExecutionResult","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastExecutionResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskResult","preciseIdentifier":"s:11JellyfinAPI10TaskResultV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last execution result."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/lastExecutionResult","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/lastexecutionresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/name.json new file mode 100644 index 000000000..978ea8d16 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8TaskInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/state.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/state.json new file mode 100644 index 000000000..a45778fda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/state.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","preciseIdentifier":"s:11JellyfinAPI9TaskStateO","text":"TaskState"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/state","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the state of the task."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskState","preciseIdentifier":"s:11JellyfinAPI9TaskStateO"},{"kind":"text","text":"?"}],"title":"state","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8TaskInfoV5stateAA0C5StateOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskState","preciseIdentifier":"s:11JellyfinAPI9TaskStateO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the state of the task."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/state","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/state"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/triggers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/triggers.json new file mode 100644 index 000000000..f916309cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskinfo/triggers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"triggers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV","text":"TaskTriggerInfo"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskinfo\/triggers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/triggers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the triggers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"triggers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV"},{"kind":"text","text":"]?"}],"title":"triggers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI8TaskInfoV8triggersSayAA0c7TriggerD0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo/triggers":{"role":"symbol","title":"triggers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"triggers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TaskTriggerInfo","preciseIdentifier":"s:11JellyfinAPI15TaskTriggerInfoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the triggers."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo\/triggers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskinfo\/triggers"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskInfo":{"role":"symbol","title":"TaskInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskInfo"}],"abstract":[{"type":"text","text":"Class TaskInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskInfo"}],"url":"\/documentation\/jellyfinapi\/taskinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult.json new file mode 100644 index 000000000..495f59046 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"title":"TaskResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10TaskResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TaskResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/init(endTimeUtc:errorMessage:id:key:longErrorMessage:name:startTimeUtc:status:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/endTimeUtc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/errorMessage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/id-6ll5b","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/key","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/longErrorMessage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/startTimeUtc","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/status"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/identifiable-implementations"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/init(endTimeUtc:errorMessage:id:key:longErrorMessage:name:startTimeUtc:status:)":{"role":"symbol","title":"init(endTimeUtc:errorMessage:id:key:longErrorMessage:name:startTimeUtc:status:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"endTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"errorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"longErrorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskCompletionStatus","preciseIdentifier":"s:11JellyfinAPI20TaskCompletionStatusO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/init(endTimeUtc:errorMessage:id:key:longErrorMessage:name:startTimeUtc:status:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/init(endtimeutc:errormessage:id:key:longerrormessage:name:starttimeutc:status:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/id-6ll5b":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/id-6ll5b","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/id-6ll5b"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskCompletionStatus","preciseIdentifier":"s:11JellyfinAPI20TaskCompletionStatusO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/startTimeUtc":{"role":"symbol","title":"startTimeUtc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start time UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/startTimeUtc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/starttimeutc"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/longErrorMessage":{"role":"symbol","title":"longErrorMessage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"longErrorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the long error message."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/longErrorMessage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/longerrormessage"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/errorMessage":{"role":"symbol","title":"errorMessage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the error message."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/errorMessage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/errormessage"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/key":{"role":"symbol","title":"key","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the key."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/key","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/key"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/endTimeUtc":{"role":"symbol","title":"endTimeUtc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end time UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/endTimeUtc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/endtimeutc"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/name"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/endtimeutc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/endtimeutc.json new file mode 100644 index 000000000..efd6b97d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/endtimeutc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/endtimeutc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/endTimeUtc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the end time UTC."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"endTimeUtc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10TaskResultV10endTimeUtc10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/endTimeUtc":{"role":"symbol","title":"endTimeUtc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end time UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/endTimeUtc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/endtimeutc"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/errormessage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/errormessage.json new file mode 100644 index 000000000..8a9dc9bce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/errormessage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/errormessage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/errorMessage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the error message."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"errorMessage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10TaskResultV12errorMessageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/errorMessage":{"role":"symbol","title":"errorMessage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the error message."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/errorMessage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/errormessage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/id-6ll5b.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/id-6ll5b.json new file mode 100644 index 000000000..a6570dc95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/id-6ll5b.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/id-6ll5b"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/id-6ll5b","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10TaskResultV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/id-6ll5b":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/id-6ll5b","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/id-6ll5b"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/id-uyq.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/id-uyq.json new file mode 100644 index 000000000..14a3c2017 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/id-uyq.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/id-uyq"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/id-uyq","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI10TaskResultV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/id-uyq":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/id-uyq","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/id-uyq"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/identifiable-implementations.json new file mode 100644 index 000000000..aba653fae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/id-uyq"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/id-uyq":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/id-uyq","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/id-uyq"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/init(endtimeutc:errormessage:id:key:longerrormessage:name:starttimeutc:status:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/init(endtimeutc:errormessage:id:key:longerrormessage:name:starttimeutc:status:).json new file mode 100644 index 000000000..0a093ccc0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/init(endtimeutc:errormessage:id:key:longerrormessage:name:starttimeutc:status:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"endTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"errorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"longErrorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","preciseIdentifier":"s:11JellyfinAPI20TaskCompletionStatusO","text":"TaskCompletionStatus"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/init(endtimeutc:errormessage:id:key:longerrormessage:name:starttimeutc:status:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/init(endTimeUtc:errorMessage:id:key:longErrorMessage:name:startTimeUtc:status:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"endTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"errorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"longErrorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskCompletionStatus","preciseIdentifier":"s:11JellyfinAPI20TaskCompletionStatusO"},{"kind":"text","text":"?)"}],"title":"init(endTimeUtc:errorMessage:id:key:longErrorMessage:name:startTimeUtc:status:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10TaskResultV10endTimeUtc12errorMessage2id3key09longErrorI04name05startfG06statusAC10Foundation4DateVSg_SSSgA4poA0C16CompletionStatusOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/init(endTimeUtc:errorMessage:id:key:longErrorMessage:name:startTimeUtc:status:)":{"role":"symbol","title":"init(endTimeUtc:errorMessage:id:key:longErrorMessage:name:startTimeUtc:status:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"endTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"errorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"longErrorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskCompletionStatus","preciseIdentifier":"s:11JellyfinAPI20TaskCompletionStatusO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/init(endTimeUtc:errorMessage:id:key:longErrorMessage:name:startTimeUtc:status:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/init(endtimeutc:errormessage:id:key:longerrormessage:name:starttimeutc:status:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/init(from:).json new file mode 100644 index 000000000..5d8e5f51a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10TaskResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/key.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/key.json new file mode 100644 index 000000000..9f1ae9e56 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/key.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/key"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/key","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the key."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"key","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10TaskResultV3keySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/key":{"role":"symbol","title":"key","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the key."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/key","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/key"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/longerrormessage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/longerrormessage.json new file mode 100644 index 000000000..7ebf7b7cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/longerrormessage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"longErrorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/longerrormessage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/longErrorMessage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the long error message."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"longErrorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"longErrorMessage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10TaskResultV16longErrorMessageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/longErrorMessage":{"role":"symbol","title":"longErrorMessage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"longErrorMessage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the long error message."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/longErrorMessage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/longerrormessage"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/name.json new file mode 100644 index 000000000..274eeda5f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10TaskResultV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/starttimeutc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/starttimeutc.json new file mode 100644 index 000000000..78760be10 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/starttimeutc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/starttimeutc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/startTimeUtc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start time UTC."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"startTimeUtc","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10TaskResultV12startTimeUtc10Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/startTimeUtc":{"role":"symbol","title":"startTimeUtc","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startTimeUtc"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start time UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/startTimeUtc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/starttimeutc"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/status.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/status.json new file mode 100644 index 000000000..301cc927a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskresult/status.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","preciseIdentifier":"s:11JellyfinAPI20TaskCompletionStatusO","text":"TaskCompletionStatus"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskresult\/status"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/status","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the status."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskCompletionStatus","preciseIdentifier":"s:11JellyfinAPI20TaskCompletionStatusO"},{"kind":"text","text":"?"}],"title":"status","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10TaskResultV6statusAA0C16CompletionStatusOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TaskCompletionStatus","preciseIdentifier":"s:11JellyfinAPI20TaskCompletionStatusO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskresult\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskResult":{"role":"symbol","title":"TaskResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskResult"}],"abstract":[{"type":"text","text":"Class TaskExecutionInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskResult"}],"url":"\/documentation\/jellyfinapi\/taskresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskCompletionStatus":{"role":"symbol","title":"TaskCompletionStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskCompletionStatus"}],"abstract":[{"type":"text","text":"Enum TaskCompletionStatus."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskCompletionStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskCompletionStatus"}],"url":"\/documentation\/jellyfinapi\/taskcompletionstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate.json new file mode 100644 index 000000000..b378d6615 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum TaskState."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"title":"TaskState","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI9TaskStateO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TaskState"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/cancelling","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/idle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/running"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/idle":{"role":"symbol","title":"TaskState.idle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"idle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/idle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/idle"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/running":{"role":"symbol","title":"TaskState.running","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"running"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/running","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/running"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/cancelling":{"role":"symbol","title":"TaskState.cancelling","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelling"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/cancelling","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/cancelling"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/rawrepresentable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/!=(_:_:).json new file mode 100644 index 000000000..979e94053 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI9TaskStateO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/cancelling.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/cancelling.json new file mode 100644 index 000000000..2419bf936 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/cancelling.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelling"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/cancelling"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/cancelling","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelling"}],"title":"TaskState.cancelling","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9TaskStateO10cancellingyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/cancelling":{"role":"symbol","title":"TaskState.cancelling","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelling"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/cancelling","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/cancelling"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/encode(to:).json new file mode 100644 index 000000000..da1794843 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI9TaskStateO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/equatable-implementations.json new file mode 100644 index 000000000..68beb3a2a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/hash(into:).json new file mode 100644 index 000000000..0b8e7335f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI9TaskStateO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/hashvalue.json new file mode 100644 index 000000000..31de1cb5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI9TaskStateO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/idle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/idle.json new file mode 100644 index 000000000..66007a4cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/idle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"idle"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/idle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/idle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"idle"}],"title":"TaskState.idle","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9TaskStateO4idleyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/idle":{"role":"symbol","title":"TaskState.idle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"idle"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/idle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/idle"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/init(from:).json new file mode 100644 index 000000000..f4e571f59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI9TaskStateO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/init(rawvalue:).json new file mode 100644 index 000000000..2fd356693 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9TaskStateO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/rawrepresentable-implementations.json new file mode 100644 index 000000000..cb493066f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/running.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/running.json new file mode 100644 index 000000000..8ed66f4e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/taskstate/running.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"running"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/taskstate\/running"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/running","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"running"}],"title":"TaskState.running","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9TaskStateO7runningyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState":{"role":"symbol","title":"TaskState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskState"}],"abstract":[{"type":"text","text":"Enum TaskState."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskState"}],"url":"\/documentation\/jellyfinapi\/taskstate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskState/running":{"role":"symbol","title":"TaskState.running","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"running"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskState\/running","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/taskstate\/running"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo.json new file mode 100644 index 000000000..ccab9e54d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tasktriggerinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"title":"TaskTriggerInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15TaskTriggerInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/init(dayOfWeek:intervalTicks:maxRuntimeTicks:timeOfDayTicks:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/dayOfWeek","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/intervalTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/maxRuntimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/timeOfDayTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/type"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/timeOfDayTicks":{"role":"symbol","title":"timeOfDayTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeOfDayTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the time of day."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/timeOfDayTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/timeofdayticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/dayOfWeek":{"role":"symbol","title":"dayOfWeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the day of week."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/dayOfWeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/dayofweek"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/maxRuntimeTicks":{"role":"symbol","title":"maxRuntimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRuntimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum runtime ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/maxRuntimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/maxruntimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/init(dayOfWeek:intervalTicks:maxRuntimeTicks:timeOfDayTicks:type:)":{"role":"symbol","title":"init(dayOfWeek:intervalTicks:maxRuntimeTicks:timeOfDayTicks:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"intervalTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRuntimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timeOfDayTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/init(dayOfWeek:intervalTicks:maxRuntimeTicks:timeOfDayTicks:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/init(dayofweek:intervalticks:maxruntimeticks:timeofdayticks:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/intervalTicks":{"role":"symbol","title":"intervalTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"intervalTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the interval."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/intervalTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/intervalticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/type"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/dayofweek.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/dayofweek.json new file mode 100644 index 000000000..8955cd2ef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/dayofweek.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO","text":"DayOfWeek"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tasktriggerinfo\/dayofweek"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/dayOfWeek","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the day of week."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"?"}],"title":"dayOfWeek","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TaskTriggerInfoV9dayOfWeekAA03DaygH0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/dayOfWeek":{"role":"symbol","title":"dayOfWeek","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the day of week."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/dayOfWeek","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/init(dayofweek:intervalticks:maxruntimeticks:timeofdayticks:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/init(dayofweek:intervalticks:maxruntimeticks:timeofdayticks:type:).json new file mode 100644 index 000000000..be35fbf9f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/init(dayofweek:intervalticks:maxruntimeticks:timeofdayticks:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO","text":"DayOfWeek"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"intervalTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxRuntimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"timeOfDayTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tasktriggerinfo\/init(dayofweek:intervalticks:maxruntimeticks:timeofdayticks:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/init(dayOfWeek:intervalTicks:maxRuntimeTicks:timeOfDayTicks:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"intervalTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRuntimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timeOfDayTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(dayOfWeek:intervalTicks:maxRuntimeTicks:timeOfDayTicks:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15TaskTriggerInfoV9dayOfWeek13intervalTicks010maxRuntimeJ004timeg3DayJ04typeAcA0ngH0OSg_s5Int64VSgA2NSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/DayOfWeek":{"role":"symbol","title":"DayOfWeek","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DayOfWeek"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DayOfWeek","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DayOfWeek"}],"url":"\/documentation\/jellyfinapi\/dayofweek"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/init(dayOfWeek:intervalTicks:maxRuntimeTicks:timeOfDayTicks:type:)":{"role":"symbol","title":"init(dayOfWeek:intervalTicks:maxRuntimeTicks:timeOfDayTicks:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dayOfWeek"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DayOfWeek","preciseIdentifier":"s:11JellyfinAPI9DayOfWeekO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"intervalTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxRuntimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timeOfDayTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/init(dayOfWeek:intervalTicks:maxRuntimeTicks:timeOfDayTicks:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/init(dayofweek:intervalticks:maxruntimeticks:timeofdayticks:type:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/init(from:).json new file mode 100644 index 000000000..e48a22cd7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tasktriggerinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15TaskTriggerInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/intervalticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/intervalticks.json new file mode 100644 index 000000000..300ddc9e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/intervalticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"intervalTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tasktriggerinfo\/intervalticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/intervalTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the interval."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"intervalTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"intervalTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TaskTriggerInfoV13intervalTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/intervalTicks":{"role":"symbol","title":"intervalTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"intervalTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the interval."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/intervalTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/intervalticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/maxruntimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/maxruntimeticks.json new file mode 100644 index 000000000..c1ed301c8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/maxruntimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRuntimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tasktriggerinfo\/maxruntimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/maxRuntimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the maximum runtime ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRuntimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"maxRuntimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TaskTriggerInfoV15maxRuntimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/maxRuntimeTicks":{"role":"symbol","title":"maxRuntimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxRuntimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the maximum runtime ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/maxRuntimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/maxruntimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/timeofdayticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/timeofdayticks.json new file mode 100644 index 000000000..1b577a4ea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/timeofdayticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeOfDayTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tasktriggerinfo\/timeofdayticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/timeOfDayTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the time of day."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeOfDayTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"timeOfDayTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TaskTriggerInfoV14timeOfDayTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/timeOfDayTicks":{"role":"symbol","title":"timeOfDayTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeOfDayTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the time of day."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/timeOfDayTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/timeofdayticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/type.json new file mode 100644 index 000000000..c29d4d679 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tasktriggerinfo/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tasktriggerinfo\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TaskTriggerInfoV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tasktriggerinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/TaskTriggerInfo":{"role":"symbol","title":"TaskTriggerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TaskTriggerInfo"}],"abstract":[{"type":"text","text":"Class TaskTriggerInfo."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TaskTriggerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TaskTriggerInfo"}],"url":"\/documentation\/jellyfinapi\/tasktriggerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult.json new file mode 100644 index 000000000..b652358bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/thememediaresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"title":"ThemeMediaResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI16ThemeMediaResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/init(items:ownerID:startIndex:totalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/items","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/ownerID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/totalRecordCount"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/items"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/ownerID":{"role":"symbol","title":"ownerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ownerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the owner id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/ownerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/ownerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/init(items:ownerID:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:ownerID:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ownerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/init(items:ownerID:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/init(items:ownerid:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/totalrecordcount"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/init(from:).json new file mode 100644 index 000000000..26830e23f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/thememediaresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ThemeMediaResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/init(items:ownerid:startindex:totalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/init(items:ownerid:startindex:totalrecordcount:).json new file mode 100644 index 000000000..1b117a438 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/init(items:ownerid:startindex:totalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"ownerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/thememediaresult\/init(items:ownerid:startindex:totalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/init(items:ownerID:startIndex:totalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ownerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(items:ownerID:startIndex:totalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI16ThemeMediaResultV5items7ownerID10startIndex16totalRecordCountACSayAA11BaseItemDtoVGSg_10Foundation4UUIDVSgs5Int32VSgARtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/init(items:ownerID:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:ownerID:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"ownerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/init(items:ownerID:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/init(items:ownerid:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/items.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/items.json new file mode 100644 index 000000000..e5e2caecb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/items.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/thememediaresult\/items"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/items","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"title":"items","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ThemeMediaResultV5itemsSayAA11BaseItemDtoVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/items"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/ownerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/ownerid.json new file mode 100644 index 000000000..b42aa1c04 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/ownerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ownerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/thememediaresult\/ownerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/ownerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the owner id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ownerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"ownerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ThemeMediaResultV7ownerID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/ownerID":{"role":"symbol","title":"ownerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ownerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the owner id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/ownerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/ownerid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/startindex.json new file mode 100644 index 000000000..d891a9192 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/thememediaresult\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ThemeMediaResultV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/totalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/totalrecordcount.json new file mode 100644 index 000000000..7eae7f81b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/thememediaresult/totalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/thememediaresult\/totalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/totalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"totalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI16ThemeMediaResultV16totalRecordCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult":{"role":"symbol","title":"ThemeMediaResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ThemeMediaResult"}],"abstract":[{"type":"text","text":"Class ThemeMediaResult."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ThemeMediaResult"}],"url":"\/documentation\/jellyfinapi\/thememediaresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/ThemeMediaResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ThemeMediaResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/thememediaresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo.json new file mode 100644 index 000000000..cd6c0afd8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerEventInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timereventinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerEventInfo"}],"title":"TimerEventInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI14TimerEventInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TimerEventInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/init(id:programID:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/id-7ailg","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/programID"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo":{"role":"symbol","title":"TimerEventInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerEventInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerEventInfo"}],"url":"\/documentation\/jellyfinapi\/timereventinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/init(id:programID:)":{"role":"symbol","title":"init(id:programID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/init(id:programID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/init(id:programid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/id-7ailg":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/id-7ailg","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/id-7ailg"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/programID":{"role":"symbol","title":"programID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/programID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/programid"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/id-4b14o.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/id-4b14o.json new file mode 100644 index 000000000..0ea8df5e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/id-4b14o.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timereventinfo\/id-4b14o"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/id-4b14o","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI14TimerEventInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/id-4b14o":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/id-4b14o","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/id-4b14o"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo":{"role":"symbol","title":"TimerEventInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerEventInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerEventInfo"}],"url":"\/documentation\/jellyfinapi\/timereventinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/id-7ailg.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/id-7ailg.json new file mode 100644 index 000000000..fd0aa2976 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/id-7ailg.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timereventinfo\/id-7ailg"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/id-7ailg","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14TimerEventInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo":{"role":"symbol","title":"TimerEventInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerEventInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerEventInfo"}],"url":"\/documentation\/jellyfinapi\/timereventinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/id-7ailg":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/id-7ailg","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/id-7ailg"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/identifiable-implementations.json new file mode 100644 index 000000000..cb146236f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/timereventinfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/id-4b14o"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo":{"role":"symbol","title":"TimerEventInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerEventInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerEventInfo"}],"url":"\/documentation\/jellyfinapi\/timereventinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/id-4b14o":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/id-4b14o","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/id-4b14o"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/init(from:).json new file mode 100644 index 000000000..b4677ec57 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timereventinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14TimerEventInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo":{"role":"symbol","title":"TimerEventInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerEventInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerEventInfo"}],"url":"\/documentation\/jellyfinapi\/timereventinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/init(id:programid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/init(id:programid:).json new file mode 100644 index 000000000..c9eaae7b9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/init(id:programid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timereventinfo\/init(id:programid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/init(id:programID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"title":"init(id:programID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI14TimerEventInfoV2id9programIDACSSSg_10Foundation4UUIDVSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/init(id:programID:)":{"role":"symbol","title":"init(id:programID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/init(id:programID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/init(id:programid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo":{"role":"symbol","title":"TimerEventInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerEventInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerEventInfo"}],"url":"\/documentation\/jellyfinapi\/timereventinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/programid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/programid.json new file mode 100644 index 000000000..e6b373dcb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timereventinfo/programid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timereventinfo\/programid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/programID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"programID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI14TimerEventInfoV9programID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo":{"role":"symbol","title":"TimerEventInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerEventInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerEventInfo"}],"url":"\/documentation\/jellyfinapi\/timereventinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerEventInfo/programID":{"role":"symbol","title":"programID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerEventInfo\/programID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timereventinfo\/programid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto.json new file mode 100644 index 000000000..1a392a5c3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"title":"TimerInfoDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI12TimerInfoDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/init(channelID:channelName:channelPrimaryImageTag:endDate:externalChannelID:externalID:externalProgramID:externalSeriesTimerID:id:isPostPaddingRequired:isPrePaddingRequired:keepUntil:name:overview:parentBackdropImageTags:parentBackdropItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:programInfo:runTimeTicks:seriesTimerID:serverID:serviceName:startDate:status:type:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelPrimaryImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/endDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalChannelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalProgramID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalSeriesTimerID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/id-1bbff","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/isPostPaddingRequired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/isPrePaddingRequired","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/keepUntil","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/overview","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/parentBackdropImageTags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/parentBackdropItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/postPaddingSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/prePaddingSeconds","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/priority","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/programID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/programInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/runTimeTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/seriesTimerID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/serverID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/serviceName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/startDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/status","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/type"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/programID":{"role":"symbol","title":"programID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/programID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/programid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/channelPrimaryImageTag":{"role":"symbol","title":"channelPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/channelprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/programInfo":{"role":"symbol","title":"programInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program information."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/programInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/programinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/postPaddingSeconds":{"role":"symbol","title":"postPaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the post padding seconds."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/postPaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/postpaddingseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/serviceName":{"role":"symbol","title":"serviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the service."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/serviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/servicename"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/isPrePaddingRequired":{"role":"symbol","title":"isPrePaddingRequired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is pre padding required."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/isPrePaddingRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/isprepaddingrequired"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/init(channelID:channelName:channelPrimaryImageTag:endDate:externalChannelID:externalID:externalProgramID:externalSeriesTimerID:id:isPostPaddingRequired:isPrePaddingRequired:keepUntil:name:overview:parentBackdropImageTags:parentBackdropItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:programInfo:runTimeTicks:seriesTimerID:serverID:serviceName:startDate:status:type:)":{"role":"symbol","title":"init(channelID:channelName:channelPrimaryImageTag:endDate:externalChannelID:externalID:externalProgramID:externalSeriesTimerID:id:isPostPaddingRequired:isPrePaddingRequired:keepUntil:name:overview:parentBackdropImageTags:parentBackdropItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:programInfo:runTimeTicks:seriesTimerID:serverID:serviceName:startDate:status:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalSeriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecordingStatus","preciseIdentifier":"s:11JellyfinAPI15RecordingStatusO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/init(channelID:channelName:channelPrimaryImageTag:endDate:externalChannelID:externalID:externalProgramID:externalSeriesTimerID:id:isPostPaddingRequired:isPrePaddingRequired:keepUntil:name:overview:parentBackdropImageTags:parentBackdropItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:programInfo:runTimeTicks:seriesTimerID:serverID:serviceName:startDate:status:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/init(channelid:channelname:channelprimaryimagetag:enddate:externalchannelid:externalid:externalprogramid:externalseriestimerid:id:ispostpaddingrequired:isprepaddingrequired:keepuntil:name:overview:parentbackdropimagetags:parentbackdropitemi-335zf"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel id of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/channelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/externalProgramID":{"role":"symbol","title":"externalProgramID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external program identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalProgramID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/externalprogramid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/prePaddingSeconds":{"role":"symbol","title":"prePaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the pre padding seconds."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/prePaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/prepaddingseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/runTimeTicks":{"role":"symbol","title":"runTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the run time ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/runTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/runtimeticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/parentBackdropItemID":{"role":"symbol","title":"parentBackdropItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id of the Parent that has a backdrop if the item does not have one."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/parentBackdropItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/parentbackdropitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/endDate":{"role":"symbol","title":"endDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end date of the recording, in UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/endDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/enddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series timer identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/startDate":{"role":"symbol","title":"startDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start date of the recording, in UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/startDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/startdate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/externalSeriesTimerID":{"role":"symbol","title":"externalSeriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalSeriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external series timer identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalSeriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/externalseriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/externalID":{"role":"symbol","title":"externalID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/externalid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/parentBackdropImageTags":{"role":"symbol","title":"parentBackdropImageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the parent backdrop image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/parentBackdropImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/parentbackdropimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/externalChannelID":{"role":"symbol","title":"externalChannelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external channel identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalChannelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/externalchannelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/priority":{"role":"symbol","title":"priority","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the priority."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/priority","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/priority"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/channelName":{"role":"symbol","title":"channelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel name of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/channelname"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the description of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecordingStatus","preciseIdentifier":"s:11JellyfinAPI15RecordingStatusO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/identifiable-implementations"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/id-1bbff":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/id-1bbff","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/id-1bbff"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/keepUntil":{"role":"symbol","title":"keepUntil","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/keepUntil","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/isPostPaddingRequired":{"role":"symbol","title":"isPostPaddingRequired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is post padding required."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/isPostPaddingRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/ispostpaddingrequired"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/channelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/channelid.json new file mode 100644 index 000000000..e9693b17d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/channelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/channelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the channel id of the recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"channelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV9channelID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/channelID":{"role":"symbol","title":"channelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel id of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/channelid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/channelname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/channelname.json new file mode 100644 index 000000000..059888e44 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/channelname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/channelname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the channel name of the recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV11channelNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/channelName":{"role":"symbol","title":"channelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the channel name of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/channelname"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/channelprimaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/channelprimaryimagetag.json new file mode 100644 index 000000000..b984d2b34 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/channelprimaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/channelprimaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelPrimaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"channelPrimaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV22channelPrimaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/channelPrimaryImageTag":{"role":"symbol","title":"channelPrimaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/channelPrimaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/channelprimaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/enddate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/enddate.json new file mode 100644 index 000000000..f6dc24d83 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/enddate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/enddate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/endDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the end date of the recording, in UTC."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"endDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV7endDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/endDate":{"role":"symbol","title":"endDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the end date of the recording, in UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/endDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/enddate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalchannelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalchannelid.json new file mode 100644 index 000000000..1bcdf3bd0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalchannelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/externalchannelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalChannelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the external channel identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"externalChannelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV17externalChannelIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/externalChannelID":{"role":"symbol","title":"externalChannelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external channel identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalChannelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/externalchannelid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalid.json new file mode 100644 index 000000000..63d773f96 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/externalid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the external identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"externalID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV10externalIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/externalID":{"role":"symbol","title":"externalID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/externalid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalprogramid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalprogramid.json new file mode 100644 index 000000000..786c9c1b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalprogramid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/externalprogramid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalProgramID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the external program identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"externalProgramID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV17externalProgramIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/externalProgramID":{"role":"symbol","title":"externalProgramID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external program identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalProgramID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/externalprogramid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalseriestimerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalseriestimerid.json new file mode 100644 index 000000000..e73bc4f2d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/externalseriestimerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalSeriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/externalseriestimerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalSeriesTimerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the external series timer identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalSeriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"externalSeriesTimerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV014externalSeriesC2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/externalSeriesTimerID":{"role":"symbol","title":"externalSeriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"externalSeriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the external series timer identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/externalSeriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/externalseriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/id-1bbff.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/id-1bbff.json new file mode 100644 index 000000000..17d39b566 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/id-1bbff.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/id-1bbff"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/id-1bbff","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Id of the recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/id-1bbff":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/id-1bbff","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/id-1bbff"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/id-4bnk0.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/id-4bnk0.json new file mode 100644 index 000000000..867b0a3cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/id-4bnk0.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/id-4bnk0"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/id-4bnk0","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI12TimerInfoDtoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/id-4bnk0":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/id-4bnk0","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/id-4bnk0"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/identifiable-implementations.json new file mode 100644 index 000000000..7a7ac4d0a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/id-4bnk0"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/id-4bnk0":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/id-4bnk0","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/id-4bnk0"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/init(channelid:channelname:channelprimaryimagetag:enddate:externalchannelid:externalid:externalprogramid:externalseriestimerid:id:ispostpaddingrequired:isprepaddingrequired:keepuntil:name:overview:parentbackdropimagetags:parentbackdropitemi-335zf.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/init(channelid:channelname:channelprimaryimagetag:enddate:externalchannelid:externalid:externalprogramid:externalseriestimerid:id:ispostpaddingrequired:isprepaddingrequired:keepuntil:name:overview:parentbackdropimagetags:parentbackdropitemi-335zf.json new file mode 100644 index 000000000..ba6ecedb0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/init(channelid:channelname:channelprimaryimagetag:enddate:externalchannelid:externalid:externalprogramid:externalseriestimerid:id:ispostpaddingrequired:isprepaddingrequired:keepuntil:name:overview:parentbackdropimagetags:parentbackdropitemi-335zf.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"externalSeriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO","text":"KeepUntil"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"programInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","preciseIdentifier":"s:11JellyfinAPI15RecordingStatusO","text":"RecordingStatus"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/init(channelid:channelname:channelprimaryimagetag:enddate:externalchannelid:externalid:externalprogramid:externalseriestimerid:id:ispostpaddingrequired:isprepaddingrequired:keepuntil:name:overview:parentbackdropimagetags:parentbackdropitemi-335zf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/init(channelID:channelName:channelPrimaryImageTag:endDate:externalChannelID:externalID:externalProgramID:externalSeriesTimerID:id:isPostPaddingRequired:isPrePaddingRequired:keepUntil:name:overview:parentBackdropImageTags:parentBackdropItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:programInfo:runTimeTicks:seriesTimerID:serverID:serviceName:startDate:status:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalSeriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecordingStatus","preciseIdentifier":"s:11JellyfinAPI15RecordingStatusO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(channelID:channelName:channelPrimaryImageTag:endDate:externalChannelID:externalID:externalProgramID:externalSeriesTimerID:id:isPostPaddingRequired:isPrePaddingRequired:keepUntil:name:overview:parentBackdropImageTags:parentBackdropItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:programInfo:runTimeTicks:seriesTimerID:serverID:serviceName:startDate:status:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12TimerInfoDtoV9channelID0F4Name0F15PrimaryImageTag7endDate015externalChannelG00nG00n7ProgramG00n6SeriescG02id21isPostPaddingRequired0s3PreuV09keepUntil4name8overview014parentBackdropJ4Tags018parentBackdropItemG004postU7Seconds03preU7Seconds8priority07programG007programD012runTimeTicks06seriescG006serverG007serviceH005startM06status4typeAC10Foundation4UUIDVSg_SSSgA8_A4_0M0VSgA8_A8_A8_A8_A8_SbSgA12_AA04KeepY0OSgA8_A8_SaySSGSgA8_s5Int32VSgA20_A20_A8_AA08BaseItemE0VSgs5Int64VSgA8_A8_A8_A11_AA15RecordingStatusOSgA8_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/init(channelID:channelName:channelPrimaryImageTag:endDate:externalChannelID:externalID:externalProgramID:externalSeriesTimerID:id:isPostPaddingRequired:isPrePaddingRequired:keepUntil:name:overview:parentBackdropImageTags:parentBackdropItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:programInfo:runTimeTicks:seriesTimerID:serverID:serviceName:startDate:status:type:)":{"role":"symbol","title":"init(channelID:channelName:channelPrimaryImageTag:endDate:externalChannelID:externalID:externalProgramID:externalSeriesTimerID:id:isPostPaddingRequired:isPrePaddingRequired:keepUntil:name:overview:parentBackdropImageTags:parentBackdropItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:programInfo:runTimeTicks:seriesTimerID:serverID:serviceName:startDate:status:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"channelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"channelPrimaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"endDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalProgramID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"externalSeriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"programInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecordingStatus","preciseIdentifier":"s:11JellyfinAPI15RecordingStatusO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/init(channelID:channelName:channelPrimaryImageTag:endDate:externalChannelID:externalID:externalProgramID:externalSeriesTimerID:id:isPostPaddingRequired:isPrePaddingRequired:keepUntil:name:overview:parentBackdropImageTags:parentBackdropItemID:postPaddingSeconds:prePaddingSeconds:priority:programID:programInfo:runTimeTicks:seriesTimerID:serverID:serviceName:startDate:status:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/init(channelid:channelname:channelprimaryimagetag:enddate:externalchannelid:externalid:externalprogramid:externalseriestimerid:id:ispostpaddingrequired:isprepaddingrequired:keepuntil:name:overview:parentbackdropimagetags:parentbackdropitemi-335zf"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/init(from:).json new file mode 100644 index 000000000..07e970efd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12TimerInfoDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/ispostpaddingrequired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/ispostpaddingrequired.json new file mode 100644 index 000000000..39fb5b4a2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/ispostpaddingrequired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/ispostpaddingrequired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/isPostPaddingRequired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is post padding required."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPostPaddingRequired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV21isPostPaddingRequiredSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/isPostPaddingRequired":{"role":"symbol","title":"isPostPaddingRequired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPostPaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is post padding required."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/isPostPaddingRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/ispostpaddingrequired"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/isprepaddingrequired.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/isprepaddingrequired.json new file mode 100644 index 000000000..3426d4335 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/isprepaddingrequired.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/isprepaddingrequired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/isPrePaddingRequired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is pre padding required."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPrePaddingRequired","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV20isPrePaddingRequiredSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/isPrePaddingRequired":{"role":"symbol","title":"isPrePaddingRequired","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrePaddingRequired"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is pre padding required."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/isPrePaddingRequired","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/isprepaddingrequired"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/keepuntil.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/keepuntil.json new file mode 100644 index 000000000..3ac0d16c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/keepuntil.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO","text":"KeepUntil"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/keepuntil"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/keepUntil","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?"}],"title":"keepUntil","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV9keepUntilAA04KeepG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/KeepUntil":{"role":"symbol","title":"KeepUntil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"KeepUntil"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/KeepUntil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"KeepUntil"}],"url":"\/documentation\/jellyfinapi\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/keepUntil":{"role":"symbol","title":"keepUntil","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"keepUntil"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"KeepUntil","preciseIdentifier":"s:11JellyfinAPI9KeepUntilO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/keepUntil","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/keepuntil"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/name.json new file mode 100644 index 000000000..b495c51d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/overview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/overview.json new file mode 100644 index 000000000..71499f5cb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/overview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/overview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/overview","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the description of the recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"overview","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV8overviewSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/overview":{"role":"symbol","title":"overview","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"overview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the description of the recording."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/overview","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/overview"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/parentbackdropimagetags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/parentbackdropimagetags.json new file mode 100644 index 000000000..76f8bdf15 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/parentbackdropimagetags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/parentbackdropimagetags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/parentBackdropImageTags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the parent backdrop image tags."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"parentBackdropImageTags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV23parentBackdropImageTagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/parentBackdropImageTags":{"role":"symbol","title":"parentBackdropImageTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropImageTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the parent backdrop image tags."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/parentBackdropImageTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/parentbackdropimagetags"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/parentbackdropitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/parentbackdropitemid.json new file mode 100644 index 000000000..6146d5325 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/parentbackdropitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/parentbackdropitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/parentBackdropItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the Id of the Parent that has a backdrop if the item does not have one."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"parentBackdropItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV20parentBackdropItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/parentBackdropItemID":{"role":"symbol","title":"parentBackdropItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentBackdropItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the Id of the Parent that has a backdrop if the item does not have one."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/parentBackdropItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/parentbackdropitemid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/postpaddingseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/postpaddingseconds.json new file mode 100644 index 000000000..e2b6ddeeb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/postpaddingseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/postpaddingseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/postPaddingSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the post padding seconds."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"postPaddingSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV18postPaddingSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/postPaddingSeconds":{"role":"symbol","title":"postPaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"postPaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the post padding seconds."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/postPaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/postpaddingseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/prepaddingseconds.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/prepaddingseconds.json new file mode 100644 index 000000000..c1c0284c1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/prepaddingseconds.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/prepaddingseconds"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/prePaddingSeconds","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the pre padding seconds."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"prePaddingSeconds","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV17prePaddingSecondss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/prePaddingSeconds":{"role":"symbol","title":"prePaddingSeconds","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"prePaddingSeconds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the pre padding seconds."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/prePaddingSeconds","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/prepaddingseconds"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/priority.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/priority.json new file mode 100644 index 000000000..9a1bef948 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/priority.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/priority"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/priority","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the priority."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"priority","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV8prioritys5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/priority":{"role":"symbol","title":"priority","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the priority."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/priority","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/priority"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/programid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/programid.json new file mode 100644 index 000000000..35407b3ca --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/programid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/programid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/programID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the program identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"programID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV9programIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/programID":{"role":"symbol","title":"programID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/programID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/programid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/programinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/programinfo.json new file mode 100644 index 000000000..5ad1eff76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/programinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV","text":"BaseItemDto"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/programinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/programInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the program information."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"title":"programInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV07programD0AA08BaseItemE0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/BaseItemDto":{"role":"symbol","title":"BaseItemDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BaseItemDto"}],"abstract":[{"type":"text","text":"This is strictly used as a data transfer object from the api layer."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/BaseItemDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BaseItemDto"}],"url":"\/documentation\/jellyfinapi\/baseitemdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/programInfo":{"role":"symbol","title":"programInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"programInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BaseItemDto","preciseIdentifier":"s:11JellyfinAPI11BaseItemDtoV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the program information."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/programInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/programinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/runtimeticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/runtimeticks.json new file mode 100644 index 000000000..893def504 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/runtimeticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/runtimeticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/runTimeTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the run time ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"runTimeTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV12runTimeTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/runTimeTicks":{"role":"symbol","title":"runTimeTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"runTimeTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the run time ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/runTimeTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/runtimeticks"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/seriestimerid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/seriestimerid.json new file mode 100644 index 000000000..57fc74295 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/seriestimerid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/seriestimerid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/seriesTimerID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the series timer identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"seriesTimerID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV06seriesC2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/seriesTimerID":{"role":"symbol","title":"seriesTimerID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"seriesTimerID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the series timer identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/seriesTimerID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/seriestimerid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/serverid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/serverid.json new file mode 100644 index 000000000..a7389c36a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/serverid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/serverid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/serverID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serverID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV8serverIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/servicename.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/servicename.json new file mode 100644 index 000000000..327198709 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/servicename.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/servicename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/serviceName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the service."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serviceName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV11serviceNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/serviceName":{"role":"symbol","title":"serviceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the service."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/serviceName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/servicename"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/startdate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/startdate.json new file mode 100644 index 000000000..2dc3ad0ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/startdate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/startdate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/startDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the start date of the recording, in UTC."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"startDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV9startDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/startDate":{"role":"symbol","title":"startDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the start date of the recording, in UTC."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/startDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/startdate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/status.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/status.json new file mode 100644 index 000000000..0762bb695 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/status.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","preciseIdentifier":"s:11JellyfinAPI15RecordingStatusO","text":"RecordingStatus"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/status"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/status","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the status."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecordingStatus","preciseIdentifier":"s:11JellyfinAPI15RecordingStatusO"},{"kind":"text","text":"?"}],"title":"status","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV6statusAA15RecordingStatusOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/status":{"role":"symbol","title":"status","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RecordingStatus","preciseIdentifier":"s:11JellyfinAPI15RecordingStatusO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the status."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/status","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/status"},"doc://JellyfinAPI/documentation/JellyfinAPI/RecordingStatus":{"role":"symbol","title":"RecordingStatus","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RecordingStatus"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/RecordingStatus","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RecordingStatus"}],"url":"\/documentation\/jellyfinapi\/recordingstatus"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/type.json new file mode 100644 index 000000000..6044c9ef5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodto/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodto\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12TimerInfoDtoV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodto\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult.json new file mode 100644 index 000000000..82d355a5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodtoqueryresult"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"title":"TimerInfoDtoQueryResult","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI23TimerInfoDtoQueryResultV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TimerInfoDtoQueryResult"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/init(items:startIndex:totalRecordCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/items","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/startIndex","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/totalRecordCount"]}],"references":{"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/items"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult":{"role":"symbol","title":"TimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/init(from:).json new file mode 100644 index 000000000..a2084f303 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23TimerInfoDtoQueryResultV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult":{"role":"symbol","title":"TimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/init(items:startindex:totalrecordcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/init(items:startindex:totalrecordcount:).json new file mode 100644 index 000000000..dd4c30579 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/init(items:startindex:totalrecordcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV","text":"TimerInfoDto"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/init(items:startindex:totalrecordcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/init(items:startIndex:totalRecordCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(items:startIndex:totalRecordCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23TimerInfoDtoQueryResultV5items10startIndex16totalRecordCountACSayAA0cdE0VGSg_s5Int32VSgAMtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult/init(items:startIndex:totalRecordCount:)":{"role":"symbol","title":"init(items:startIndex:totalRecordCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/init(items:startIndex:totalRecordCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/init(items:startindex:totalrecordcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult":{"role":"symbol","title":"TimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/items.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/items.json new file mode 100644 index 000000000..04b8e41d5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/items.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV","text":"TimerInfoDto"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/items"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/items","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"]?"}],"title":"items","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23TimerInfoDtoQueryResultV5itemsSayAA0cdE0VGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult":{"role":"symbol","title":"TimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult/items":{"role":"symbol","title":"items","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"items"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TimerInfoDto","preciseIdentifier":"s:11JellyfinAPI12TimerInfoDtoV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/items","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/items"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDto":{"role":"symbol","title":"TimerInfoDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDto"}],"url":"\/documentation\/jellyfinapi\/timerinfodto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/startindex.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/startindex.json new file mode 100644 index 000000000..c2a62bb71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/startindex.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/startIndex","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"startIndex","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23TimerInfoDtoQueryResultV10startIndexs5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult/startIndex":{"role":"symbol","title":"startIndex","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the index of the first record in Items."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/startIndex","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/startindex"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult":{"role":"symbol","title":"TimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/totalrecordcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/totalrecordcount.json new file mode 100644 index 000000000..c8a325120 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/timerinfodtoqueryresult/totalrecordcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/totalrecordcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/totalRecordCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"totalRecordCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23TimerInfoDtoQueryResultV16totalRecordCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult/totalRecordCount":{"role":"symbol","title":"totalRecordCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalRecordCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the total number of records available."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult\/totalRecordCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult\/totalrecordcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/TimerInfoDtoQueryResult":{"role":"symbol","title":"TimerInfoDtoQueryResult","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TimerInfoDtoQueryResult","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TimerInfoDtoQueryResult"}],"url":"\/documentation\/jellyfinapi\/timerinfodtoqueryresult"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo.json new file mode 100644 index 000000000..88542b279 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"title":"TrailerInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11TrailerInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/indexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/isAutomated","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/metadataCountryCode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/metadataLanguage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/originalTitle","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/parentIndexNumber","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/path","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/premiereDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/providerIDs","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/year"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/indexnumber"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/metadatacountrycode"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/indexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/indexnumber.json new file mode 100644 index 000000000..f9050ab79 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/indexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/indexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/indexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"indexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV11indexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/indexNumber":{"role":"symbol","title":"indexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/indexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/indexnumber"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/init(from:).json new file mode 100644 index 000000000..4a68e3edb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11TrailerInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json new file mode 100644 index 000000000..abf7fbc59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11TrailerInfoV11indexNumber11isAutomated19metadataCountryCode0I8Language4name13originalTitle011parentIndexF04path12premiereDate11providerIDs4yearACs5Int32VSg_SbSgSSSgA3sqS10Foundation0T0VSgSDyS2SGSgAQtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)":{"role":"symbol","title":"init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"indexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/init(indexNumber:isAutomated:metadataCountryCode:metadataLanguage:name:originalTitle:parentIndexNumber:path:premiereDate:providerIDs:year:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/init(indexnumber:isautomated:metadatacountrycode:metadatalanguage:name:originaltitle:parentindexnumber:path:premieredate:providerids:year:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/isautomated.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/isautomated.json new file mode 100644 index 000000000..34ab096d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/isautomated.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/isautomated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/isAutomated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAutomated","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV11isAutomatedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/isAutomated":{"role":"symbol","title":"isAutomated","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAutomated"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/isAutomated","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/isautomated"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/metadatacountrycode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/metadatacountrycode.json new file mode 100644 index 000000000..186c5605f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/metadatacountrycode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/metadatacountrycode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/metadataCountryCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataCountryCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV19metadataCountryCodeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/metadataCountryCode":{"role":"symbol","title":"metadataCountryCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataCountryCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata country code."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/metadataCountryCode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/metadatacountrycode"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/metadatalanguage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/metadatalanguage.json new file mode 100644 index 000000000..315d8b46f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/metadatalanguage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/metadatalanguage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/metadataLanguage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"metadataLanguage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV16metadataLanguageSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/metadataLanguage":{"role":"symbol","title":"metadataLanguage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataLanguage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the metadata language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/metadataLanguage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/metadatalanguage"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/name.json new file mode 100644 index 000000000..6bef15171 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/originaltitle.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/originaltitle.json new file mode 100644 index 000000000..5a4a561fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/originaltitle.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/originaltitle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/originalTitle","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the original title."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"originalTitle","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV13originalTitleSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/originalTitle":{"role":"symbol","title":"originalTitle","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"originalTitle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the original title."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/originalTitle","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/originaltitle"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/parentindexnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/parentindexnumber.json new file mode 100644 index 000000000..e4c782154 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/parentindexnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/parentindexnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/parentIndexNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"parentIndexNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV17parentIndexNumbers5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/parentIndexNumber":{"role":"symbol","title":"parentIndexNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parentIndexNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/parentIndexNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/parentindexnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/path.json new file mode 100644 index 000000000..398ab31a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/path"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/premieredate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/premieredate.json new file mode 100644 index 000000000..2d8f05cad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/premieredate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/premieredate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/premiereDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"premiereDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV12premiereDate10Foundation0F0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/premiereDate":{"role":"symbol","title":"premiereDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"premiereDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/premiereDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/premieredate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/providerids.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/providerids.json new file mode 100644 index 000000000..c2ab3cdfa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/providerids.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/providerids"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/providerIDs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"providerIDs","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV11providerIDsSDyS2SGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/providerIDs":{"role":"symbol","title":"providerIDs","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the provider ids."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/providerIDs","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/providerids"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/year.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/year.json new file mode 100644 index 000000000..965529f26 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinfo/year.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinfo\/year"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/year","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the year."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"year","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TrailerInfoV4years5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo/year":{"role":"symbol","title":"year","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"year"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the year."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo\/year","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinfo\/year"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery.json new file mode 100644 index 000000000..5440ab319 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinforemotesearchquery"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"title":"TrailerInfoRemoteSearchQuery","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/isIncludeDisabledProviders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/searchInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/searchProviderName"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery":{"role":"symbol","title":"TrailerInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrailerInfo","preciseIdentifier":"s:11JellyfinAPI11TrailerInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/searchprovidername"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrailerInfo","preciseIdentifier":"s:11JellyfinAPI11TrailerInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/init(from:).json new file mode 100644 index 000000000..f584786cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery":{"role":"symbol","title":"TrailerInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json new file mode 100644 index 000000000..9c73df967 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","preciseIdentifier":"s:11JellyfinAPI11TrailerInfoV","text":"TrailerInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrailerInfo","preciseIdentifier":"s:11JellyfinAPI11TrailerInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV26isIncludeDisabledProviders6itemID06searchD00N12ProviderNameACSbSg_10Foundation4UUIDVSgAA0cD0VSgSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)":{"role":"symbol","title":"init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrailerInfo","preciseIdentifier":"s:11JellyfinAPI11TrailerInfoV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/init(isIncludeDisabledProviders:itemID:searchInfo:searchProviderName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/init(isincludedisabledproviders:itemid:searchinfo:searchprovidername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery":{"role":"symbol","title":"TrailerInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/isincludedisabledproviders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/isincludedisabledproviders.json new file mode 100644 index 000000000..bfa22a234 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/isincludedisabledproviders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/isincludedisabledproviders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/isIncludeDisabledProviders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isIncludeDisabledProviders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV26isIncludeDisabledProvidersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/isIncludeDisabledProviders":{"role":"symbol","title":"isIncludeDisabledProviders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isIncludeDisabledProviders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether disabled providers should be included."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/isIncludeDisabledProviders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/isincludedisabledproviders"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery":{"role":"symbol","title":"TrailerInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/itemid.json new file mode 100644 index 000000000..b0eacd310 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV6itemID10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery":{"role":"symbol","title":"TrailerInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/searchinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/searchinfo.json new file mode 100644 index 000000000..07e4b9662 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/searchinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","preciseIdentifier":"s:11JellyfinAPI11TrailerInfoV","text":"TrailerInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/searchinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/searchInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrailerInfo","preciseIdentifier":"s:11JellyfinAPI11TrailerInfoV"},{"kind":"text","text":"?"}],"title":"searchInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV06searchD0AA0cD0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery":{"role":"symbol","title":"TrailerInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/searchInfo":{"role":"symbol","title":"searchInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrailerInfo","preciseIdentifier":"s:11JellyfinAPI11TrailerInfoV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/searchInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/searchinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfo":{"role":"symbol","title":"TrailerInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfo"}],"url":"\/documentation\/jellyfinapi\/trailerinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/searchprovidername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/searchprovidername.json new file mode 100644 index 000000000..19c8d6c21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/trailerinforemotesearchquery/searchprovidername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/searchprovidername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/searchProviderName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"searchProviderName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI28TrailerInfoRemoteSearchQueryV18searchProviderNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery":{"role":"symbol","title":"TrailerInfoRemoteSearchQuery","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrailerInfoRemoteSearchQuery"}],"url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TrailerInfoRemoteSearchQuery/searchProviderName":{"role":"symbol","title":"searchProviderName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchProviderName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the provider name to search within if set."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TrailerInfoRemoteSearchQuery\/searchProviderName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/trailerinforemotesearchquery\/searchprovidername"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo.json new file mode 100644 index 000000000..80cb2bdef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"title":"TranscodeSeekInfo","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI17TranscodeSeekInfoO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/auto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/bytes"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/equatable-implementations"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/bytes":{"role":"symbol","title":"TranscodeSeekInfo.bytes","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bytes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/bytes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/bytes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/auto":{"role":"symbol","title":"TranscodeSeekInfo.auto","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"auto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/auto","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/auto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/!=(_:_:).json new file mode 100644 index 000000000..f4ac81da6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI17TranscodeSeekInfoO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/auto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/auto.json new file mode 100644 index 000000000..17a6e8185 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/auto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"auto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo\/auto"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/auto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"auto"}],"title":"TranscodeSeekInfo.auto","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI17TranscodeSeekInfoO4autoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/auto":{"role":"symbol","title":"TranscodeSeekInfo.auto","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"auto"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/auto","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/auto"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/bytes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/bytes.json new file mode 100644 index 000000000..8e74c11bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/bytes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bytes"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo\/bytes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/bytes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bytes"}],"title":"TranscodeSeekInfo.bytes","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI17TranscodeSeekInfoO5bytesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/bytes":{"role":"symbol","title":"TranscodeSeekInfo.bytes","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bytes"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/bytes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/bytes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/encode(to:).json new file mode 100644 index 000000000..89bce8af6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI17TranscodeSeekInfoO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/equatable-implementations.json new file mode 100644 index 000000000..4092ff398 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/hash(into:).json new file mode 100644 index 000000000..b11bbe30d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI17TranscodeSeekInfoO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/hashvalue.json new file mode 100644 index 000000000..0ede7a62a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI17TranscodeSeekInfoO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/init(from:).json new file mode 100644 index 000000000..bc6f35a59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI17TranscodeSeekInfoO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/init(rawvalue:).json new file mode 100644 index 000000000..98a7bf338 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17TranscodeSeekInfoO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/rawrepresentable-implementations.json new file mode 100644 index 000000000..9a8be691f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodeseekinfo/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodeseekinfo\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodeseekinfo\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo.json new file mode 100644 index 000000000..75e29c94b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"title":"TranscodingInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15TranscodingInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/init(audioChannels:audioCodec:bitrate:completionPercentage:container:framerate:hardwareAccelerationType:height:isAudioDirect:isVideoDirect:transcodeReasons:videoCodec:width:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/audioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/bitrate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/completionPercentage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/framerate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/hardwareAccelerationType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/height","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/isAudioDirect","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/isVideoDirect","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/transcodeReasons-swift.property","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/videoCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/width"]},{"title":"Enumerations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/hardwareAccelerationType":{"role":"symbol","title":"hardwareAccelerationType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HardwareEncodingType","preciseIdentifier":"s:11JellyfinAPI20HardwareEncodingTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/hardwareAccelerationType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/hardwareaccelerationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/bitrate":{"role":"symbol","title":"bitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/bitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/bitrate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/transcodeReasons-swift.property":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeReasons","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/transcodeReasons-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.property"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/completionPercentage":{"role":"symbol","title":"completionPercentage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/completionPercentage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/completionpercentage"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/width"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/isAudioDirect":{"role":"symbol","title":"isAudioDirect","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAudioDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/isAudioDirect","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/isaudiodirect"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/isVideoDirect":{"role":"symbol","title":"isVideoDirect","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVideoDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/isVideoDirect","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/isvideodirect"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/init(audioChannels:audioCodec:bitrate:completionPercentage:container:framerate:hardwareAccelerationType:height:isAudioDirect:isVideoDirect:transcodeReasons:videoCodec:width:)":{"role":"symbol","title":"init(audioChannels:audioCodec:bitrate:completionPercentage:container:framerate:hardwareAccelerationType:height:isAudioDirect:isVideoDirect:transcodeReasons:videoCodec:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HardwareEncodingType","preciseIdentifier":"s:11JellyfinAPI20HardwareEncodingTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAudioDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isVideoDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeReasons","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/init(audioChannels:audioCodec:bitrate:completionPercentage:container:framerate:hardwareAccelerationType:height:isAudioDirect:isVideoDirect:transcodeReasons:videoCodec:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/init(audiochannels:audiocodec:bitrate:completionpercentage:container:framerate:hardwareaccelerationtype:height:isaudiodirect:isvideodirect:transcodereasons:videocodec:width:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/audiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/audiochannels.json new file mode 100644 index 000000000..f75fe7d7c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/audiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/audiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/audioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"audioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV13audioChannelss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/audioChannels":{"role":"symbol","title":"audioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/audioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/audiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/audiocodec.json new file mode 100644 index 000000000..0fba3a5f8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/audiocodec"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/bitrate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/bitrate.json new file mode 100644 index 000000000..0b9117c59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/bitrate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/bitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/bitrate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"bitrate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV7bitrates5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/bitrate":{"role":"symbol","title":"bitrate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/bitrate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/bitrate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/completionpercentage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/completionpercentage.json new file mode 100644 index 000000000..b0bbab284 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/completionpercentage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/completionpercentage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/completionPercentage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"completionPercentage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV20completionPercentageSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/completionPercentage":{"role":"symbol","title":"completionPercentage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/completionPercentage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/completionpercentage"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/container.json new file mode 100644 index 000000000..6d7142b32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/container"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/framerate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/framerate.json new file mode 100644 index 000000000..9fea4bbe9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/framerate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/framerate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"title":"framerate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV9framerateSfSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/framerate":{"role":"symbol","title":"framerate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/framerate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/framerate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/hardwareaccelerationtype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/hardwareaccelerationtype.json new file mode 100644 index 000000000..293031391 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/hardwareaccelerationtype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","preciseIdentifier":"s:11JellyfinAPI20HardwareEncodingTypeO","text":"HardwareEncodingType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/hardwareaccelerationtype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/hardwareAccelerationType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HardwareEncodingType","preciseIdentifier":"s:11JellyfinAPI20HardwareEncodingTypeO"},{"kind":"text","text":"?"}],"title":"hardwareAccelerationType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV24hardwareAccelerationTypeAA016HardwareEncodingG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/hardwareAccelerationType":{"role":"symbol","title":"hardwareAccelerationType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HardwareEncodingType","preciseIdentifier":"s:11JellyfinAPI20HardwareEncodingTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/hardwareAccelerationType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/hardwareaccelerationtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/height.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/height.json new file mode 100644 index 000000000..9afca9f48 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/height.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/height"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/height","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"height","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV6heights5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/height":{"role":"symbol","title":"height","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/height","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/height"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/init(audiochannels:audiocodec:bitrate:completionpercentage:container:framerate:hardwareaccelerationtype:height:isaudiodirect:isvideodirect:transcodereasons:videocodec:width:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/init(audiochannels:audiocodec:bitrate:completionpercentage:container:framerate:hardwareaccelerationtype:height:isaudiodirect:isvideodirect:transcodereasons:videocodec:width:).json new file mode 100644 index 000000000..b11197ba7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/init(audiochannels:audiocodec:bitrate:completionpercentage:container:framerate:hardwareaccelerationtype:height:isaudiodirect:isvideodirect:transcodereasons:videocodec:width:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","preciseIdentifier":"s:11JellyfinAPI20HardwareEncodingTypeO","text":"HardwareEncodingType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAudioDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isVideoDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO","text":"TranscodeReasons"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/init(audiochannels:audiocodec:bitrate:completionpercentage:container:framerate:hardwareaccelerationtype:height:isaudiodirect:isvideodirect:transcodereasons:videocodec:width:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/init(audioChannels:audioCodec:bitrate:completionPercentage:container:framerate:hardwareAccelerationType:height:isAudioDirect:isVideoDirect:transcodeReasons:videoCodec:width:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HardwareEncodingType","preciseIdentifier":"s:11JellyfinAPI20HardwareEncodingTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAudioDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isVideoDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeReasons","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(audioChannels:audioCodec:bitrate:completionPercentage:container:framerate:hardwareAccelerationType:height:isAudioDirect:isVideoDirect:transcodeReasons:videoCodec:width:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15TranscodingInfoV13audioChannels0E5Codec7bitrate20completionPercentage9container9framerate24hardwareAccelerationType6height13isAudioDirect0q5VideoS016transcodeReasons05videoG05widthACs5Int32VSg_SSSgASSdSgATSfSgAA016HardwareEncodingO0OSgASSbSgAzC09TranscodeV0OSgAtStcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/HardwareEncodingType":{"role":"symbol","title":"HardwareEncodingType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HardwareEncodingType"}],"abstract":[{"type":"text","text":"Enum HardwareEncodingType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/HardwareEncodingType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HardwareEncodingType"}],"url":"\/documentation\/jellyfinapi\/hardwareencodingtype"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/init(audioChannels:audioCodec:bitrate:completionPercentage:container:framerate:hardwareAccelerationType:height:isAudioDirect:isVideoDirect:transcodeReasons:videoCodec:width:)":{"role":"symbol","title":"init(audioChannels:audioCodec:bitrate:completionPercentage:container:framerate:hardwareAccelerationType:height:isAudioDirect:isVideoDirect:transcodeReasons:videoCodec:width:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"bitrate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"completionPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"framerate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hardwareAccelerationType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"HardwareEncodingType","preciseIdentifier":"s:11JellyfinAPI20HardwareEncodingTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"height"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAudioDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isVideoDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeReasons","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/init(audioChannels:audioCodec:bitrate:completionPercentage:container:framerate:hardwareAccelerationType:height:isAudioDirect:isVideoDirect:transcodeReasons:videoCodec:width:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/init(audiochannels:audiocodec:bitrate:completionpercentage:container:framerate:hardwareaccelerationtype:height:isaudiodirect:isvideodirect:transcodereasons:videocodec:width:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/init(from:).json new file mode 100644 index 000000000..9476ac9ad --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15TranscodingInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/isaudiodirect.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/isaudiodirect.json new file mode 100644 index 000000000..615593c45 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/isaudiodirect.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAudioDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/isaudiodirect"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/isAudioDirect","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAudioDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAudioDirect","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV13isAudioDirectSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/isAudioDirect":{"role":"symbol","title":"isAudioDirect","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAudioDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/isAudioDirect","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/isaudiodirect"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/isvideodirect.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/isvideodirect.json new file mode 100644 index 000000000..d8e17e599 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/isvideodirect.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVideoDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/isvideodirect"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/isVideoDirect","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVideoDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isVideoDirect","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV13isVideoDirectSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/isVideoDirect":{"role":"symbol","title":"isVideoDirect","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVideoDirect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/isVideoDirect","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/isvideodirect"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum.json new file mode 100644 index 000000000..36867719e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"title":"TranscodingInfo.TranscodeReasons","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/anamorphicVideoNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioBitDepthNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioBitrateNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioChannelsNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioCodecNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioIsExternal","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioProfileNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioSampleRateNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/containerBitrateExceedsLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/containerNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/directPlayError","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/interlacedVideoNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/refFramesNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/secondaryAudioNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/subtitleCodecNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/unknownAudioStreamInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/unknownVideoStreamInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoBitDepthNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoBitrateNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoCodecNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoFramerateNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoLevelNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoProfileNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoRangeTypeNotSupported","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoResolutionNotSupported"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoCodecNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoCodecNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoCodecNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videocodecnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoProfileNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoProfileNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoProfileNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoProfileNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videoprofilenotsupported"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioIsExternal":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioIsExternal","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioIsExternal"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioIsExternal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audioisexternal"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioSampleRateNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioSampleRateNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRateNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioSampleRateNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiosampleratenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioProfileNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioProfileNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioProfileNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioProfileNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audioprofilenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/unknownVideoStreamInfo":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.unknownVideoStreamInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknownVideoStreamInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/unknownVideoStreamInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/unknownvideostreaminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoBitDepthNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoBitDepthNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitDepthNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoBitDepthNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videobitdepthnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioChannelsNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioChannelsNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannelsNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioChannelsNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiochannelsnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/subtitleCodecNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.subtitleCodecNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodecNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/subtitleCodecNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/subtitlecodecnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoFramerateNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoFramerateNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFramerateNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoFramerateNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videoframeratenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoBitrateNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoBitrateNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitrateNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoBitrateNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videobitratenotsupported"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/containerBitrateExceedsLimit":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.containerBitrateExceedsLimit","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerBitrateExceedsLimit"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/containerBitrateExceedsLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/containerbitrateexceedslimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioBitDepthNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioBitDepthNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitDepthNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioBitDepthNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiobitdepthnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/refFramesNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.refFramesNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFramesNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/refFramesNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/refframesnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/unknownAudioStreamInfo":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.unknownAudioStreamInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknownAudioStreamInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/unknownAudioStreamInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/unknownaudiostreaminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoResolutionNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoResolutionNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoResolutionNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoResolutionNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videoresolutionnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoLevelNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoLevelNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoLevelNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoLevelNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videolevelnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/secondaryAudioNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.secondaryAudioNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondaryAudioNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/secondaryAudioNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/secondaryaudionotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/containerNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.containerNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/containerNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/containernotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/anamorphicVideoNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.anamorphicVideoNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"anamorphicVideoNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/anamorphicVideoNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/anamorphicvideonotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioCodecNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioCodecNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodecNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioCodecNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiocodecnotsupported"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioBitrateNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioBitrateNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitrateNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioBitrateNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiobitratenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/interlacedVideoNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.interlacedVideoNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"interlacedVideoNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/interlacedVideoNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/interlacedvideonotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoRangeTypeNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoRangeTypeNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeTypeNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoRangeTypeNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videorangetypenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/directPlayError":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.directPlayError","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayError"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/directPlayError","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/directplayerror"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/!=(_:_:).json new file mode 100644 index 000000000..f6d439d2b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/equatable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/anamorphicvideonotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/anamorphicvideonotsupported.json new file mode 100644 index 000000000..bb97171e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/anamorphicvideonotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"anamorphicVideoNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/anamorphicvideonotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/anamorphicVideoNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"anamorphicVideoNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.anamorphicVideoNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO27anamorphicVideoNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/anamorphicVideoNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.anamorphicVideoNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"anamorphicVideoNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/anamorphicVideoNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/anamorphicvideonotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiobitdepthnotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiobitdepthnotsupported.json new file mode 100644 index 000000000..cf0a9ae89 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiobitdepthnotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitDepthNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiobitdepthnotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioBitDepthNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitDepthNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.audioBitDepthNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO25audioBitDepthNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioBitDepthNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioBitDepthNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitDepthNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioBitDepthNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiobitdepthnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiobitratenotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiobitratenotsupported.json new file mode 100644 index 000000000..b90ca2de6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiobitratenotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitrateNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiobitratenotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioBitrateNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitrateNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.audioBitrateNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO24audioBitrateNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioBitrateNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioBitrateNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioBitrateNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioBitrateNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiobitratenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiochannelsnotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiochannelsnotsupported.json new file mode 100644 index 000000000..b4acb7464 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiochannelsnotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannelsNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiochannelsnotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioChannelsNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannelsNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.audioChannelsNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO25audioChannelsNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioChannelsNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioChannelsNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioChannelsNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioChannelsNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiochannelsnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiocodecnotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiocodecnotsupported.json new file mode 100644 index 000000000..efb30d847 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiocodecnotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodecNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiocodecnotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioCodecNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodecNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.audioCodecNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO22audioCodecNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioCodecNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioCodecNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodecNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioCodecNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiocodecnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audioisexternal.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audioisexternal.json new file mode 100644 index 000000000..1947400ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audioisexternal.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioIsExternal"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audioisexternal"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioIsExternal","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioIsExternal"}],"title":"TranscodingInfo.TranscodeReasons.audioIsExternal","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO15audioIsExternalyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioIsExternal":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioIsExternal","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioIsExternal"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioIsExternal","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audioisexternal"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audioprofilenotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audioprofilenotsupported.json new file mode 100644 index 000000000..75406904f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audioprofilenotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioProfileNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audioprofilenotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioProfileNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioProfileNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.audioProfileNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO24audioProfileNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioProfileNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioProfileNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioProfileNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioProfileNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audioprofilenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiosampleratenotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiosampleratenotsupported.json new file mode 100644 index 000000000..55f52ffbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/audiosampleratenotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRateNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiosampleratenotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioSampleRateNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRateNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.audioSampleRateNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO27audioSampleRateNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/audioSampleRateNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.audioSampleRateNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSampleRateNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/audioSampleRateNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/audiosampleratenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/containerbitrateexceedslimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/containerbitrateexceedslimit.json new file mode 100644 index 000000000..2ad9fae72 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/containerbitrateexceedslimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerBitrateExceedsLimit"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/containerbitrateexceedslimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/containerBitrateExceedsLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerBitrateExceedsLimit"}],"title":"TranscodingInfo.TranscodeReasons.containerBitrateExceedsLimit","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO28containerBitrateExceedsLimityA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/containerBitrateExceedsLimit":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.containerBitrateExceedsLimit","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerBitrateExceedsLimit"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/containerBitrateExceedsLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/containerbitrateexceedslimit"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/containernotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/containernotsupported.json new file mode 100644 index 000000000..96e3fd3e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/containernotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/containernotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/containerNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.containerNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO21containerNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/containerNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.containerNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/containerNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/containernotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/directplayerror.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/directplayerror.json new file mode 100644 index 000000000..c4b3a1be9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/directplayerror.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayError"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/directplayerror"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/directPlayError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayError"}],"title":"TranscodingInfo.TranscodeReasons.directPlayError","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO15directPlayErroryA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/directPlayError":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.directPlayError","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"directPlayError"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/directPlayError","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/directplayerror"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/encode(to:).json new file mode 100644 index 000000000..e2a681124 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/equatable-implementations.json new file mode 100644 index 000000000..82ae42a78 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/!=(_:_:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/hash(into:).json new file mode 100644 index 000000000..29477aef9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/hashvalue.json new file mode 100644 index 000000000..fa82e3560 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/init(from:).json new file mode 100644 index 000000000..b68a6d6ce --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/init(rawvalue:).json new file mode 100644 index 000000000..39586c4fe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO8rawValueAESgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/interlacedvideonotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/interlacedvideonotsupported.json new file mode 100644 index 000000000..5d1932dd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/interlacedvideonotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"interlacedVideoNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/interlacedvideonotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/interlacedVideoNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"interlacedVideoNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.interlacedVideoNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO27interlacedVideoNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/interlacedVideoNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.interlacedVideoNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"interlacedVideoNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/interlacedVideoNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/interlacedvideonotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/rawrepresentable-implementations.json new file mode 100644 index 000000000..37f514114 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/refframesnotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/refframesnotsupported.json new file mode 100644 index 000000000..95eda842f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/refframesnotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFramesNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/refframesnotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/refFramesNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFramesNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.refFramesNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO21refFramesNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/refFramesNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.refFramesNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"refFramesNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/refFramesNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/refframesnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/secondaryaudionotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/secondaryaudionotsupported.json new file mode 100644 index 000000000..d56b28ab1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/secondaryaudionotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondaryAudioNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/secondaryaudionotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/secondaryAudioNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondaryAudioNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.secondaryAudioNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO26secondaryAudioNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/secondaryAudioNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.secondaryAudioNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondaryAudioNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/secondaryAudioNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/secondaryaudionotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/subtitlecodecnotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/subtitlecodecnotsupported.json new file mode 100644 index 000000000..1d7696ba3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/subtitlecodecnotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodecNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/subtitlecodecnotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/subtitleCodecNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodecNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.subtitleCodecNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO25subtitleCodecNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/subtitleCodecNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.subtitleCodecNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleCodecNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/subtitleCodecNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/subtitlecodecnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/unknownaudiostreaminfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/unknownaudiostreaminfo.json new file mode 100644 index 000000000..40a741bc7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/unknownaudiostreaminfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknownAudioStreamInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/unknownaudiostreaminfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/unknownAudioStreamInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknownAudioStreamInfo"}],"title":"TranscodingInfo.TranscodeReasons.unknownAudioStreamInfo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO018unknownAudioStreamD0yA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/unknownAudioStreamInfo":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.unknownAudioStreamInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknownAudioStreamInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/unknownAudioStreamInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/unknownaudiostreaminfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/unknownvideostreaminfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/unknownvideostreaminfo.json new file mode 100644 index 000000000..6a326f03a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/unknownvideostreaminfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknownVideoStreamInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/unknownvideostreaminfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/unknownVideoStreamInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknownVideoStreamInfo"}],"title":"TranscodingInfo.TranscodeReasons.unknownVideoStreamInfo","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO018unknownVideoStreamD0yA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/unknownVideoStreamInfo":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.unknownVideoStreamInfo","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknownVideoStreamInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/unknownVideoStreamInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/unknownvideostreaminfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videobitdepthnotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videobitdepthnotsupported.json new file mode 100644 index 000000000..db827ca10 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videobitdepthnotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitDepthNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videobitdepthnotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoBitDepthNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitDepthNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.videoBitDepthNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO25videoBitDepthNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoBitDepthNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoBitDepthNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitDepthNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoBitDepthNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videobitdepthnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videobitratenotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videobitratenotsupported.json new file mode 100644 index 000000000..9225b1f6a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videobitratenotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitrateNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videobitratenotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoBitrateNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitrateNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.videoBitrateNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO24videoBitrateNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoBitrateNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoBitrateNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoBitrateNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoBitrateNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videobitratenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videocodecnotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videocodecnotsupported.json new file mode 100644 index 000000000..ea1e705d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videocodecnotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videocodecnotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoCodecNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.videoCodecNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO22videoCodecNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoCodecNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoCodecNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoCodecNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videocodecnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videoframeratenotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videoframeratenotsupported.json new file mode 100644 index 000000000..a3e16620e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videoframeratenotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFramerateNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videoframeratenotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoFramerateNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFramerateNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.videoFramerateNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO26videoFramerateNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoFramerateNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoFramerateNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFramerateNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoFramerateNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videoframeratenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videolevelnotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videolevelnotsupported.json new file mode 100644 index 000000000..823aa4e03 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videolevelnotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoLevelNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videolevelnotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoLevelNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoLevelNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.videoLevelNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO22videoLevelNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoLevelNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoLevelNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoLevelNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoLevelNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videolevelnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videoprofilenotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videoprofilenotsupported.json new file mode 100644 index 000000000..ad4663b72 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videoprofilenotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoProfileNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videoprofilenotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoProfileNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoProfileNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.videoProfileNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO24videoProfileNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoProfileNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoProfileNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoProfileNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoProfileNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videoprofilenotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videorangetypenotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videorangetypenotsupported.json new file mode 100644 index 000000000..20a441ff4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videorangetypenotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeTypeNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videorangetypenotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoRangeTypeNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeTypeNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.videoRangeTypeNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO26videoRangeTypeNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoRangeTypeNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoRangeTypeNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoRangeTypeNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoRangeTypeNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videorangetypenotsupported"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videoresolutionnotsupported.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videoresolutionnotsupported.json new file mode 100644 index 000000000..2c78f72ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.enum/videoresolutionnotsupported.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoResolutionNotSupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videoresolutionnotsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoResolutionNotSupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoResolutionNotSupported"}],"title":"TranscodingInfo.TranscodeReasons.videoResolutionNotSupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO27videoResolutionNotSupportedyA2EmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum/videoResolutionNotSupported":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons.videoResolutionNotSupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoResolutionNotSupported"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum\/videoResolutionNotSupported","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum\/videoresolutionnotsupported"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.property.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.property.json new file mode 100644 index 000000000..3545b667d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/transcodereasons-swift.property.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO","text":"TranscodeReasons"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/transcodeReasons-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeReasons","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO"},{"kind":"text","text":"?"}],"title":"transcodeReasons","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV16transcodeReasonsAC09TranscodeF0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/TranscodeReasons-swift.enum":{"role":"symbol","title":"TranscodingInfo.TranscodeReasons","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeReasons"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/TranscodeReasons-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeReasons"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.enum"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/transcodeReasons-swift.property":{"role":"symbol","title":"transcodeReasons","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeReasons"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeReasons","preciseIdentifier":"s:11JellyfinAPI15TranscodingInfoV16TranscodeReasonsO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/transcodeReasons-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/transcodereasons-swift.property"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/videocodec.json new file mode 100644 index 000000000..2f0b6178e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/width.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/width.json new file mode 100644 index 000000000..70fcb06a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodinginfo/width.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodinginfo\/width"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/width","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"width","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15TranscodingInfoV5widths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo":{"role":"symbol","title":"TranscodingInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingInfo"}],"url":"\/documentation\/jellyfinapi\/transcodinginfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingInfo/width":{"role":"symbol","title":"width","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingInfo\/width","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodinginfo\/width"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile.json new file mode 100644 index 000000000..26cd6940f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"title":"TranscodingProfile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18TranscodingProfileV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/init(audioCodec:isBreakOnNonKeyFrames:conditions:container:context:isCopyTimestamps:enableMpegtsM2TsMode:enableSubtitlesInManifest:isEstimateContentLength:maxAudioChannels:minSegments:protocol:segmentLength:transcodeSeekInfo:type:videoCodec:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/audioCodec","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/conditions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/container","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/context","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/enableMpegtsM2TsMode","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/enableSubtitlesInManifest","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isBreakOnNonKeyFrames","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isCopyTimestamps","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isEstimateContentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/maxAudioChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/minSegments","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/protocol","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/segmentLength","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/transcodeSeekInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/videoCodec"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/container"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/context":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/context","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/context"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/init(audioCodec:isBreakOnNonKeyFrames:conditions:container:context:isCopyTimestamps:enableMpegtsM2TsMode:enableSubtitlesInManifest:isEstimateContentLength:maxAudioChannels:minSegments:protocol:segmentLength:transcodeSeekInfo:type:videoCodec:)":{"role":"symbol","title":"init(audioCodec:isBreakOnNonKeyFrames:conditions:container:context:isCopyTimestamps:enableMpegtsM2TsMode:enableSubtitlesInManifest:isEstimateContentLength:maxAudioChannels:minSegments:protocol:segmentLength:transcodeSeekInfo:type:videoCodec:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isEstimateContentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"protocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeSeekInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeSeekInfo","preciseIdentifier":"s:11JellyfinAPI17TranscodeSeekInfoO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/init(audioCodec:isBreakOnNonKeyFrames:conditions:container:context:isCopyTimestamps:enableMpegtsM2TsMode:enableSubtitlesInManifest:isEstimateContentLength:maxAudioChannels:minSegments:protocol:segmentLength:transcodeSeekInfo:type:videoCodec:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/init(audiocodec:isbreakonnonkeyframes:conditions:container:context:iscopytimestamps:enablempegtsm2tsmode:enablesubtitlesinmanifest:isestimatecontentlength:maxaudiochannels:minsegments:protocol:segmentlength:transcodeseekinfo:type:videocodec-854d8"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/segmentlength"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/enableSubtitlesInManifest":{"role":"symbol","title":"enableSubtitlesInManifest","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/enableSubtitlesInManifest","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/enablesubtitlesinmanifest"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/protocol":{"role":"symbol","title":"protocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"`protocol`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/protocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/protocol"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/conditions":{"role":"symbol","title":"conditions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/conditions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/conditions"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/isEstimateContentLength":{"role":"symbol","title":"isEstimateContentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEstimateContentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isEstimateContentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/isestimatecontentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/minsegments"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/isbreakonnonkeyframes"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/transcodeSeekInfo":{"role":"symbol","title":"transcodeSeekInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeSeekInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeSeekInfo","preciseIdentifier":"s:11JellyfinAPI17TranscodeSeekInfoO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/transcodeSeekInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/iscopytimestamps"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/audiocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/audiocodec.json new file mode 100644 index 000000000..c0f4e78a5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/audiocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/audioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV10audioCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/audioCodec":{"role":"symbol","title":"audioCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/audioCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/audiocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/conditions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/conditions.json new file mode 100644 index 000000000..ee6bf053b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/conditions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV","text":"ProfileCondition"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/conditions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/conditions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"title":"conditions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV10conditionsSayAA0D9ConditionVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/conditions":{"role":"symbol","title":"conditions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/conditions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/conditions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/container.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/container.json new file mode 100644 index 000000000..e561272ff --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/container.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/container"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/container","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"container","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV9containerSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/container":{"role":"symbol","title":"container","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/container","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/container"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/context.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/context.json new file mode 100644 index 000000000..19e41cfa3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/context.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/context"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/context","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO"},{"kind":"text","text":"?"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV7contextAA15EncodingContextOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/context":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/context","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/context"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/enablempegtsm2tsmode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/enablempegtsm2tsmode.json new file mode 100644 index 000000000..8520adfcb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/enablempegtsm2tsmode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/enablempegtsm2tsmode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/enableMpegtsM2TsMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"enableMpegtsM2TsMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV20enableMpegtsM2TsModeSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/enableMpegtsM2TsMode":{"role":"symbol","title":"enableMpegtsM2TsMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/enableMpegtsM2TsMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/enablempegtsm2tsmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/enablesubtitlesinmanifest.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/enablesubtitlesinmanifest.json new file mode 100644 index 000000000..2ac048059 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/enablesubtitlesinmanifest.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/enablesubtitlesinmanifest"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/enableSubtitlesInManifest","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"enableSubtitlesInManifest","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV25enableSubtitlesInManifestSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/enableSubtitlesInManifest":{"role":"symbol","title":"enableSubtitlesInManifest","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/enableSubtitlesInManifest","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/enablesubtitlesinmanifest"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/init(audiocodec:isbreakonnonkeyframes:conditions:container:context:iscopytimestamps:enablempegtsm2tsmode:enablesubtitlesinmanifest:isestimatecontentlength:maxaudiochannels:minsegments:protocol:segmentlength:transcodeseekinfo:type:videocodec-854d8.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/init(audiocodec:isbreakonnonkeyframes:conditions:container:context:iscopytimestamps:enablempegtsm2tsmode:enablesubtitlesinmanifest:isestimatecontentlength:maxaudiochannels:minsegments:protocol:segmentlength:transcodeseekinfo:type:videocodec-854d8.json new file mode 100644 index 000000000..aa3d6bdc6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/init(audiocodec:isbreakonnonkeyframes:conditions:container:context:iscopytimestamps:enablempegtsm2tsmode:enablesubtitlesinmanifest:isestimatecontentlength:maxaudiochannels:minsegments:protocol:segmentlength:transcodeseekinfo:type:videocodec-854d8.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV","text":"ProfileCondition"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO","text":"EncodingContext"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isEstimateContentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"protocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transcodeSeekInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","preciseIdentifier":"s:11JellyfinAPI17TranscodeSeekInfoO","text":"TranscodeSeekInfo"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO","text":"DlnaProfileType"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/init(audiocodec:isbreakonnonkeyframes:conditions:container:context:iscopytimestamps:enablempegtsm2tsmode:enablesubtitlesinmanifest:isestimatecontentlength:maxaudiochannels:minsegments:protocol:segmentlength:transcodeseekinfo:type:videocodec-854d8"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/init(audioCodec:isBreakOnNonKeyFrames:conditions:container:context:isCopyTimestamps:enableMpegtsM2TsMode:enableSubtitlesInManifest:isEstimateContentLength:maxAudioChannels:minSegments:protocol:segmentLength:transcodeSeekInfo:type:videoCodec:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isEstimateContentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"protocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeSeekInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeSeekInfo","preciseIdentifier":"s:11JellyfinAPI17TranscodeSeekInfoO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(audioCodec:isBreakOnNonKeyFrames:conditions:container:context:isCopyTimestamps:enableMpegtsM2TsMode:enableSubtitlesInManifest:isEstimateContentLength:maxAudioChannels:minSegments:protocol:segmentLength:transcodeSeekInfo:type:videoCodec:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18TranscodingProfileV10audioCodec21isBreakOnNonKeyFrames10conditions9container7context0G14CopyTimestamps20enableMpegtsM2TsMode0R19SubtitlesInManifest0G21EstimateContentLength16maxAudioChannels11minSegments8protocol13segmentLength17transcodeSeekInfo4type05videoF0ACSSSg_SbSgSayAA0D9ConditionVGSgAtA15EncodingContextOSgA4uTs5Int32VSgATA3_AA17TranscodeSeekInfoOSgAA04DlnaD4TypeOSgATtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/init(audioCodec:isBreakOnNonKeyFrames:conditions:container:context:isCopyTimestamps:enableMpegtsM2TsMode:enableSubtitlesInManifest:isEstimateContentLength:maxAudioChannels:minSegments:protocol:segmentLength:transcodeSeekInfo:type:videoCodec:)":{"role":"symbol","title":"init(audioCodec:isBreakOnNonKeyFrames:conditions:container:context:isCopyTimestamps:enableMpegtsM2TsMode:enableSubtitlesInManifest:isEstimateContentLength:maxAudioChannels:minSegments:protocol:segmentLength:transcodeSeekInfo:type:videoCodec:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"conditions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ProfileCondition","preciseIdentifier":"s:11JellyfinAPI16ProfileConditionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"container"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EncodingContext","preciseIdentifier":"s:11JellyfinAPI15EncodingContextO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMpegtsM2TsMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSubtitlesInManifest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isEstimateContentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"protocol"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"transcodeSeekInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeSeekInfo","preciseIdentifier":"s:11JellyfinAPI17TranscodeSeekInfoO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/init(audioCodec:isBreakOnNonKeyFrames:conditions:container:context:isCopyTimestamps:enableMpegtsM2TsMode:enableSubtitlesInManifest:isEstimateContentLength:maxAudioChannels:minSegments:protocol:segmentLength:transcodeSeekInfo:type:videoCodec:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/init(audiocodec:isbreakonnonkeyframes:conditions:container:context:iscopytimestamps:enablempegtsm2tsmode:enablesubtitlesinmanifest:isestimatecontentlength:maxaudiochannels:minsegments:protocol:segmentlength:transcodeseekinfo:type:videocodec-854d8"},"doc://JellyfinAPI/documentation/JellyfinAPI/ProfileCondition":{"role":"symbol","title":"ProfileCondition","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ProfileCondition"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ProfileCondition","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ProfileCondition"}],"url":"\/documentation\/jellyfinapi\/profilecondition"},"doc://JellyfinAPI/documentation/JellyfinAPI/EncodingContext":{"role":"symbol","title":"EncodingContext","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EncodingContext"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/EncodingContext","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EncodingContext"}],"url":"\/documentation\/jellyfinapi\/encodingcontext"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/init(from:).json new file mode 100644 index 000000000..c7444d925 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18TranscodingProfileV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/isbreakonnonkeyframes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/isbreakonnonkeyframes.json new file mode 100644 index 000000000..75f1c649e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/isbreakonnonkeyframes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/isbreakonnonkeyframes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isBreakOnNonKeyFrames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isBreakOnNonKeyFrames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV21isBreakOnNonKeyFramesSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/isBreakOnNonKeyFrames":{"role":"symbol","title":"isBreakOnNonKeyFrames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isBreakOnNonKeyFrames"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isBreakOnNonKeyFrames","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/isbreakonnonkeyframes"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/iscopytimestamps.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/iscopytimestamps.json new file mode 100644 index 000000000..7e96d1ad7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/iscopytimestamps.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/iscopytimestamps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isCopyTimestamps","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isCopyTimestamps","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV16isCopyTimestampsSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/isCopyTimestamps":{"role":"symbol","title":"isCopyTimestamps","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isCopyTimestamps"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isCopyTimestamps","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/iscopytimestamps"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/isestimatecontentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/isestimatecontentlength.json new file mode 100644 index 000000000..e482039e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/isestimatecontentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEstimateContentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/isestimatecontentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isEstimateContentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEstimateContentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isEstimateContentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV23isEstimateContentLengthSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/isEstimateContentLength":{"role":"symbol","title":"isEstimateContentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEstimateContentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/isEstimateContentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/isestimatecontentlength"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/maxaudiochannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/maxaudiochannels.json new file mode 100644 index 000000000..bbd1be375 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/maxaudiochannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/maxaudiochannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/maxAudioChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"maxAudioChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV16maxAudioChannelsSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/maxAudioChannels":{"role":"symbol","title":"maxAudioChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxAudioChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/maxAudioChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/maxaudiochannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/minsegments.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/minsegments.json new file mode 100644 index 000000000..48d52f628 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/minsegments.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/minsegments"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/minSegments","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"minSegments","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV11minSegmentss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/minSegments":{"role":"symbol","title":"minSegments","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"minSegments"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/minSegments","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/minsegments"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/protocol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/protocol.json new file mode 100644 index 000000000..f0670029f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/protocol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"`protocol`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/protocol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/protocol","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"`protocol`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"protocol","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV8protocolSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/protocol":{"role":"symbol","title":"protocol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"`protocol`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/protocol","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/protocol"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/segmentlength.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/segmentlength.json new file mode 100644 index 000000000..c806ea794 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/segmentlength.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/segmentlength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/segmentLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"segmentLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV13segmentLengths5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/segmentLength":{"role":"symbol","title":"segmentLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"segmentLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/segmentLength","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/segmentlength"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/transcodeseekinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/transcodeseekinfo.json new file mode 100644 index 000000000..e20d4ea17 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/transcodeseekinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeSeekInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","preciseIdentifier":"s:11JellyfinAPI17TranscodeSeekInfoO","text":"TranscodeSeekInfo"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/transcodeseekinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/transcodeSeekInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeSeekInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeSeekInfo","preciseIdentifier":"s:11JellyfinAPI17TranscodeSeekInfoO"},{"kind":"text","text":"?"}],"title":"transcodeSeekInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV17transcodeSeekInfoAA09TranscodefG0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/transcodeSeekInfo":{"role":"symbol","title":"transcodeSeekInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"transcodeSeekInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TranscodeSeekInfo","preciseIdentifier":"s:11JellyfinAPI17TranscodeSeekInfoO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/transcodeSeekInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/transcodeseekinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodeSeekInfo":{"role":"symbol","title":"TranscodeSeekInfo","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodeSeekInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodeSeekInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodeSeekInfo"}],"url":"\/documentation\/jellyfinapi\/transcodeseekinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/type.json new file mode 100644 index 000000000..0eebada90 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO","text":"DlnaProfileType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV4typeAA04DlnaD4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DlnaProfileType","preciseIdentifier":"s:11JellyfinAPI15DlnaProfileTypeO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/DlnaProfileType":{"role":"symbol","title":"DlnaProfileType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DlnaProfileType"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/DlnaProfileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DlnaProfileType"}],"url":"\/documentation\/jellyfinapi\/dlnaprofiletype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/videocodec.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/videocodec.json new file mode 100644 index 000000000..21399d49b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transcodingprofile/videocodec.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transcodingprofile\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/videoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"videoCodec","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18TranscodingProfileV10videoCodecSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile":{"role":"symbol","title":"TranscodingProfile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TranscodingProfile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TranscodingProfile"}],"url":"\/documentation\/jellyfinapi\/transcodingprofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/TranscodingProfile/videoCodec":{"role":"symbol","title":"videoCodec","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TranscodingProfile\/videoCodec","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transcodingprofile\/videocodec"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp.json new file mode 100644 index 000000000..7ce886525 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"title":"TransportStreamTimestamp","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI24TransportStreamTimestampO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/none","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/valid","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/zero"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/zero":{"role":"symbol","title":"TransportStreamTimestamp.zero","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/zero","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/zero"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/equatable-implementations"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/rawrepresentable-implementations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/none":{"role":"symbol","title":"TransportStreamTimestamp.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/none"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/valid":{"role":"symbol","title":"TransportStreamTimestamp.valid","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"valid"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/valid","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/valid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/!=(_:_:).json new file mode 100644 index 000000000..c974026e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI24TransportStreamTimestampO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/encode(to:).json new file mode 100644 index 000000000..20229ab81 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI24TransportStreamTimestampO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/equatable-implementations.json new file mode 100644 index 000000000..d5623980d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/hash(into:).json new file mode 100644 index 000000000..f1daaecb1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI24TransportStreamTimestampO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/hashvalue.json new file mode 100644 index 000000000..e6fe111da --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI24TransportStreamTimestampO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/init(from:).json new file mode 100644 index 000000000..7588753e4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI24TransportStreamTimestampO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/init(rawvalue:).json new file mode 100644 index 000000000..d8f0dfcc4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI24TransportStreamTimestampO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/none.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/none.json new file mode 100644 index 000000000..1f8db0afb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/none.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/none"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/none","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"title":"TransportStreamTimestamp.none","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI24TransportStreamTimestampO4noneyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/none":{"role":"symbol","title":"TransportStreamTimestamp.none","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"none"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/none","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/none"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/rawrepresentable-implementations.json new file mode 100644 index 000000000..0d7eb3572 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/valid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/valid.json new file mode 100644 index 000000000..98c04940d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/valid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"valid"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/valid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/valid","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"valid"}],"title":"TransportStreamTimestamp.valid","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI24TransportStreamTimestampO5validyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/valid":{"role":"symbol","title":"TransportStreamTimestamp.valid","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"valid"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/valid","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/valid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/zero.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/zero.json new file mode 100644 index 000000000..e7ad8d001 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/transportstreamtimestamp/zero.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/transportstreamtimestamp\/zero"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/zero","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"}],"title":"TransportStreamTimestamp.zero","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI24TransportStreamTimestampO4zeroyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp":{"role":"symbol","title":"TransportStreamTimestamp","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"TransportStreamTimestamp"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TransportStreamTimestamp"}],"url":"\/documentation\/jellyfinapi\/transportstreamtimestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/TransportStreamTimestamp/zero":{"role":"symbol","title":"TransportStreamTimestamp.zero","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TransportStreamTimestamp\/zero","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/transportstreamtimestamp\/zero"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping.json new file mode 100644 index 000000000..b8f45c57b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerchannelmapping"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"title":"TunerChannelMapping","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI19TunerChannelMappingV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/init(id:name:providerChannelID:providerChannelName:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/id-36hl8","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/providerChannelID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/providerChannelName"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/providerChannelName":{"role":"symbol","title":"providerChannelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/providerChannelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/providerchannelname"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/init(id:name:providerChannelID:providerChannelName:)":{"role":"symbol","title":"init(id:name:providerChannelID:providerChannelName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerChannelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/init(id:name:providerChannelID:providerChannelName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/init(id:name:providerchannelid:providerchannelname:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/id-36hl8":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/id-36hl8","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/id-36hl8"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/providerChannelID":{"role":"symbol","title":"providerChannelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/providerChannelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/providerchannelid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/name"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/id-36hl8.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/id-36hl8.json new file mode 100644 index 000000000..53e47fa73 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/id-36hl8.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerchannelmapping\/id-36hl8"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/id-36hl8","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19TunerChannelMappingV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/id-36hl8":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/id-36hl8","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/id-36hl8"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/id-7f44e.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/id-7f44e.json new file mode 100644 index 000000000..55054b341 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/id-7f44e.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerchannelmapping\/id-7f44e"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/id-7f44e","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI19TunerChannelMappingV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/id-7f44e":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/id-7f44e","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/id-7f44e"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/identifiable-implementations.json new file mode 100644 index 000000000..021f57978 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerchannelmapping\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/id-7f44e"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/id-7f44e":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/id-7f44e","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/id-7f44e"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/init(from:).json new file mode 100644 index 000000000..9e811900a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerchannelmapping\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19TunerChannelMappingV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/init(id:name:providerchannelid:providerchannelname:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/init(id:name:providerchannelid:providerchannelname:).json new file mode 100644 index 000000000..9b3981cef --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/init(id:name:providerchannelid:providerchannelname:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"providerChannelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerchannelmapping\/init(id:name:providerchannelid:providerchannelname:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/init(id:name:providerChannelID:providerChannelName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerChannelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(id:name:providerChannelID:providerChannelName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19TunerChannelMappingV2id4name08providerD2ID0hD4NameACSSSg_A3Htcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/init(id:name:providerChannelID:providerChannelName:)":{"role":"symbol","title":"init(id:name:providerChannelID:providerChannelName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"providerChannelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/init(id:name:providerChannelID:providerChannelName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/init(id:name:providerchannelid:providerchannelname:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/name.json new file mode 100644 index 000000000..f8b518467 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerchannelmapping\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19TunerChannelMappingV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/providerchannelid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/providerchannelid.json new file mode 100644 index 000000000..235554002 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/providerchannelid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerchannelmapping\/providerchannelid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/providerChannelID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"providerChannelID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19TunerChannelMappingV08providerD2IDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/providerChannelID":{"role":"symbol","title":"providerChannelID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/providerChannelID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/providerchannelid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/providerchannelname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/providerchannelname.json new file mode 100644 index 000000000..7c9e0e0ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerchannelmapping/providerchannelname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerchannelmapping\/providerchannelname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/providerChannelName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"providerChannelName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19TunerChannelMappingV08providerD4NameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping/providerChannelName":{"role":"symbol","title":"providerChannelName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"providerChannelName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping\/providerChannelName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerchannelmapping\/providerchannelname"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerChannelMapping":{"role":"symbol","title":"TunerChannelMapping","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerChannelMapping"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerChannelMapping","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerChannelMapping"}],"url":"\/documentation\/jellyfinapi\/tunerchannelmapping"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo.json new file mode 100644 index 000000000..bdccfeea9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"title":"TunerHostInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI13TunerHostInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/init(allowHWTranscoding:deviceID:enableStreamLooping:friendlyName:id:isImportFavoritesOnly:source:tunerCount:type:url:userAgent:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/allowHWTranscoding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/deviceID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/enableStreamLooping","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/friendlyName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/id-6eu8y","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/isImportFavoritesOnly","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/source","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/tunerCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/type","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/url","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/userAgent"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/init(allowHWTranscoding:deviceID:enableStreamLooping:friendlyName:id:isImportFavoritesOnly:source:tunerCount:type:url:userAgent:)":{"role":"symbol","title":"init(allowHWTranscoding:deviceID:enableStreamLooping:friendlyName:id:isImportFavoritesOnly:source:tunerCount:type:url:userAgent:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowHWTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableStreamLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isImportFavoritesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tunerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/init(allowHWTranscoding:deviceID:enableStreamLooping:friendlyName:id:isImportFavoritesOnly:source:tunerCount:type:url:userAgent:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/init(allowhwtranscoding:deviceid:enablestreamlooping:friendlyname:id:isimportfavoritesonly:source:tunercount:type:url:useragent:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/friendlyName":{"role":"symbol","title":"friendlyName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/friendlyName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/friendlyname"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/url"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/id-6eu8y":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/id-6eu8y","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/id-6eu8y"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/source":{"role":"symbol","title":"source","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/source","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/source"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/isImportFavoritesOnly":{"role":"symbol","title":"isImportFavoritesOnly","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isImportFavoritesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/isImportFavoritesOnly","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/isimportfavoritesonly"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/allowHWTranscoding":{"role":"symbol","title":"allowHWTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowHWTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/allowHWTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/allowhwtranscoding"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/enableStreamLooping":{"role":"symbol","title":"enableStreamLooping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableStreamLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/enableStreamLooping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/enablestreamlooping"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/tunerCount":{"role":"symbol","title":"tunerCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/tunerCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/tunercount"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/userAgent":{"role":"symbol","title":"userAgent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/userAgent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/useragent"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/identifiable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/allowhwtranscoding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/allowhwtranscoding.json new file mode 100644 index 000000000..d6faac8c2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/allowhwtranscoding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowHWTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/allowhwtranscoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/allowHWTranscoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowHWTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowHWTranscoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV18allowHWTranscodingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/allowHWTranscoding":{"role":"symbol","title":"allowHWTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowHWTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/allowHWTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/allowhwtranscoding"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/deviceid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/deviceid.json new file mode 100644 index 000000000..7973f986f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/deviceid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/deviceid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/deviceID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"deviceID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV8deviceIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/deviceID":{"role":"symbol","title":"deviceID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/deviceID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/deviceid"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/enablestreamlooping.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/enablestreamlooping.json new file mode 100644 index 000000000..754106811 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/enablestreamlooping.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableStreamLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/enablestreamlooping"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/enableStreamLooping","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableStreamLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableStreamLooping","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV19enableStreamLoopingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/enableStreamLooping":{"role":"symbol","title":"enableStreamLooping","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableStreamLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/enableStreamLooping","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/enablestreamlooping"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/friendlyname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/friendlyname.json new file mode 100644 index 000000000..4ec1719ee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/friendlyname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/friendlyname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/friendlyName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"friendlyName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV12friendlyNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/friendlyName":{"role":"symbol","title":"friendlyName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/friendlyName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/friendlyname"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/id-40bbx.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/id-40bbx.json new file mode 100644 index 000000000..1392432e6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/id-40bbx.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/id-40bbx"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/id-40bbx","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI13TunerHostInfoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/id-40bbx":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/id-40bbx","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/id-40bbx"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/id-6eu8y.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/id-6eu8y.json new file mode 100644 index 000000000..fbee9d339 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/id-6eu8y.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/id-6eu8y"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/id-6eu8y","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV2idSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/id-6eu8y":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/id-6eu8y","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/id-6eu8y"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/identifiable-implementations.json new file mode 100644 index 000000000..8fb57553c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/id-40bbx"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/id-40bbx":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/id-40bbx","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/id-40bbx"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/init(allowhwtranscoding:deviceid:enablestreamlooping:friendlyname:id:isimportfavoritesonly:source:tunercount:type:url:useragent:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/init(allowhwtranscoding:deviceid:enablestreamlooping:friendlyname:id:isimportfavoritesonly:source:tunercount:type:url:useragent:).json new file mode 100644 index 000000000..1fcd5b499 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/init(allowhwtranscoding:deviceid:enablestreamlooping:friendlyname:id:isimportfavoritesonly:source:tunercount:type:url:useragent:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowHWTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableStreamLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isImportFavoritesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"tunerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/init(allowhwtranscoding:deviceid:enablestreamlooping:friendlyname:id:isimportfavoritesonly:source:tunercount:type:url:useragent:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/init(allowHWTranscoding:deviceID:enableStreamLooping:friendlyName:id:isImportFavoritesOnly:source:tunerCount:type:url:userAgent:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowHWTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableStreamLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isImportFavoritesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tunerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(allowHWTranscoding:deviceID:enableStreamLooping:friendlyName:id:isImportFavoritesOnly:source:tunerCount:type:url:userAgent:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13TunerHostInfoV18allowHWTranscoding8deviceID19enableStreamLooping12friendlyName2id21isImportFavoritesOnly6source10tunerCount4type3url9userAgentACSbSg_SSSgAo2poPs5Int32VSgA3Ptcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/init(allowHWTranscoding:deviceID:enableStreamLooping:friendlyName:id:isImportFavoritesOnly:source:tunerCount:type:url:userAgent:)":{"role":"symbol","title":"init(allowHWTranscoding:deviceID:enableStreamLooping:friendlyName:id:isImportFavoritesOnly:source:tunerCount:type:url:userAgent:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allowHWTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"deviceID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableStreamLooping"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"friendlyName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isImportFavoritesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"tunerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/init(allowHWTranscoding:deviceID:enableStreamLooping:friendlyName:id:isImportFavoritesOnly:source:tunerCount:type:url:userAgent:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/init(allowhwtranscoding:deviceid:enablestreamlooping:friendlyname:id:isimportfavoritesonly:source:tunercount:type:url:useragent:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/init(from:).json new file mode 100644 index 000000000..3a0f10fd4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13TunerHostInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/isimportfavoritesonly.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/isimportfavoritesonly.json new file mode 100644 index 000000000..075abc3bd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/isimportfavoritesonly.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isImportFavoritesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/isimportfavoritesonly"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/isImportFavoritesOnly","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isImportFavoritesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isImportFavoritesOnly","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV21isImportFavoritesOnlySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/isImportFavoritesOnly":{"role":"symbol","title":"isImportFavoritesOnly","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isImportFavoritesOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/isImportFavoritesOnly","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/isimportfavoritesonly"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/source.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/source.json new file mode 100644 index 000000000..4e9be8db4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/source.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/source"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/source","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"source","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV6sourceSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/source":{"role":"symbol","title":"source","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/source","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/source"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/tunercount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/tunercount.json new file mode 100644 index 000000000..cff4ec86f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/tunercount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/tunercount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/tunerCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"tunerCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV10tunerCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/tunerCount":{"role":"symbol","title":"tunerCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tunerCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/tunerCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/tunercount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/type.json new file mode 100644 index 000000000..6869659a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/url.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/url.json new file mode 100644 index 000000000..90a05d201 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/url.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/url"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/url","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"url","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV3urlSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/url":{"role":"symbol","title":"url","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/url","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/url"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/useragent.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/useragent.json new file mode 100644 index 000000000..2af1463e5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/tunerhostinfo/useragent.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/tunerhostinfo\/useragent"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/userAgent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"userAgent","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13TunerHostInfoV9userAgentSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo":{"role":"symbol","title":"TunerHostInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TunerHostInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TunerHostInfo"}],"url":"\/documentation\/jellyfinapi\/tunerhostinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/TunerHostInfo/userAgent":{"role":"symbol","title":"userAgent","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userAgent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TunerHostInfo\/userAgent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/tunerhostinfo\/useragent"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions.json new file mode 100644 index 000000000..8a308d392 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/typeoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"title":"TypeOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11TypeOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/init(imageFetcherOrder:imageFetchers:imageOptions:metadataFetcherOrder:metadataFetchers:type:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageFetcherOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageFetchers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/metadataFetcherOrder","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/metadataFetchers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/type"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/type"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/imageFetcherOrder":{"role":"symbol","title":"imageFetcherOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageFetcherOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/imagefetcherorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/init(imageFetcherOrder:imageFetchers:imageOptions:metadataFetcherOrder:metadataFetchers:type:)":{"role":"symbol","title":"init(imageFetcherOrder:imageFetchers:imageOptions:metadataFetcherOrder:metadataFetchers:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/init(imageFetcherOrder:imageFetchers:imageOptions:metadataFetcherOrder:metadataFetchers:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/init(imagefetcherorder:imagefetchers:imageoptions:metadatafetcherorder:metadatafetchers:type:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/imageOptions":{"role":"symbol","title":"imageOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/imageoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/metadataFetchers":{"role":"symbol","title":"metadataFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/metadataFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/metadatafetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/imageFetchers":{"role":"symbol","title":"imageFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/imagefetchers"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/metadataFetcherOrder":{"role":"symbol","title":"metadataFetcherOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/metadataFetcherOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/metadatafetcherorder"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/imagefetcherorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/imagefetcherorder.json new file mode 100644 index 000000000..68a96166f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/imagefetcherorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/typeoptions\/imagefetcherorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageFetcherOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"imageFetcherOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TypeOptionsV17imageFetcherOrderSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/imageFetcherOrder":{"role":"symbol","title":"imageFetcherOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageFetcherOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/imagefetcherorder"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/imagefetchers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/imagefetchers.json new file mode 100644 index 000000000..064e9c4fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/imagefetchers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/typeoptions\/imagefetchers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageFetchers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"imageFetchers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TypeOptionsV13imageFetchersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/imageFetchers":{"role":"symbol","title":"imageFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/imagefetchers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/imageoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/imageoptions.json new file mode 100644 index 000000000..ad5db5f2a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/imageoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV","text":"ImageOption"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/typeoptions\/imageoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?"}],"title":"imageOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TypeOptionsV05imageD0SayAA11ImageOptionVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/imageOptions":{"role":"symbol","title":"imageOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/imageOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/imageoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/init(from:).json new file mode 100644 index 000000000..69b0bb7c5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/typeoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11TypeOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/init(imagefetcherorder:imagefetchers:imageoptions:metadatafetcherorder:metadatafetchers:type:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/init(imagefetcherorder:imagefetchers:imageoptions:metadatafetcherorder:metadatafetchers:type:).json new file mode 100644 index 000000000..2287f333b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/init(imagefetcherorder:imagefetchers:imageoptions:metadatafetcherorder:metadatafetchers:type:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"imageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV","text":"ImageOption"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/typeoptions\/init(imagefetcherorder:imagefetchers:imageoptions:metadatafetcherorder:metadatafetchers:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/init(imageFetcherOrder:imageFetchers:imageOptions:metadataFetcherOrder:metadataFetchers:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(imageFetcherOrder:imageFetchers:imageOptions:metadataFetcherOrder:metadataFetchers:type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11TypeOptionsV17imageFetcherOrder0E8Fetchers0eD008metadatafG00iH04typeACSaySSGSg_AKSayAA11ImageOptionVGSgA2KSSSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ImageOption":{"role":"symbol","title":"ImageOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageOption"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ImageOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageOption"}],"url":"\/documentation\/jellyfinapi\/imageoption"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/init(imageFetcherOrder:imageFetchers:imageOptions:metadataFetcherOrder:metadataFetchers:type:)":{"role":"symbol","title":"init(imageFetcherOrder:imageFetchers:imageOptions:metadataFetcherOrder:metadataFetchers:type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"imageFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"imageOptions"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"ImageOption","preciseIdentifier":"s:11JellyfinAPI11ImageOptionV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/init(imageFetcherOrder:imageFetchers:imageOptions:metadataFetcherOrder:metadataFetchers:type:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/init(imagefetcherorder:imagefetchers:imageoptions:metadatafetcherorder:metadatafetchers:type:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/metadatafetcherorder.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/metadatafetcherorder.json new file mode 100644 index 000000000..ff2a4f236 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/metadatafetcherorder.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/typeoptions\/metadatafetcherorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/metadataFetcherOrder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"metadataFetcherOrder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TypeOptionsV20metadataFetcherOrderSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/metadataFetcherOrder":{"role":"symbol","title":"metadataFetcherOrder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetcherOrder"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/metadataFetcherOrder","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/metadatafetcherorder"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/metadatafetchers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/metadatafetchers.json new file mode 100644 index 000000000..b44a0c32d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/metadatafetchers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/typeoptions\/metadatafetchers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/metadataFetchers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"metadataFetchers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TypeOptionsV16metadataFetchersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/metadataFetchers":{"role":"symbol","title":"metadataFetchers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"metadataFetchers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/metadataFetchers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/metadatafetchers"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/type.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/type.json new file mode 100644 index 000000000..75a332998 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/typeoptions/type.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/typeoptions\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11TypeOptionsV4typeSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions":{"role":"symbol","title":"TypeOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypeOptions"}],"url":"\/documentation\/jellyfinapi\/typeoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/TypeOptions/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/TypeOptions\/type","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/typeoptions\/type"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem.json new file mode 100644 index 000000000..6d0aa0cda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"title":"UnratedItem","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI11UnratedItemO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/book","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/channelContent","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/liveTvChannel","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/liveTvProgram","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/movie","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/music","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/other","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/series","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/trailer"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/trailer":{"role":"symbol","title":"UnratedItem.trailer","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/trailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/trailer"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/other":{"role":"symbol","title":"UnratedItem.other","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"other"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/other","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/other"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/movie":{"role":"symbol","title":"UnratedItem.movie","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/movie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/movie"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/liveTvChannel":{"role":"symbol","title":"UnratedItem.liveTvChannel","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvChannel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/liveTvChannel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/livetvchannel"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/channelContent":{"role":"symbol","title":"UnratedItem.channelContent","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelContent"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/channelContent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/channelcontent"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/music":{"role":"symbol","title":"UnratedItem.music","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"music"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/music","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/music"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/book":{"role":"symbol","title":"UnratedItem.book","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"book"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/book","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/book"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/liveTvProgram":{"role":"symbol","title":"UnratedItem.liveTvProgram","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvProgram"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/liveTvProgram","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/livetvprogram"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/series":{"role":"symbol","title":"UnratedItem.series","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/series","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/series"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/!=(_:_:).json new file mode 100644 index 000000000..a64af3e5c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI11UnratedItemO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/book.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/book.json new file mode 100644 index 000000000..2b6a7bef0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/book.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"book"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/book"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/book","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"book"}],"title":"UnratedItem.book","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11UnratedItemO4bookyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/book":{"role":"symbol","title":"UnratedItem.book","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"book"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/book","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/book"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/channelcontent.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/channelcontent.json new file mode 100644 index 000000000..986743429 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/channelcontent.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelContent"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/channelcontent"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/channelContent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelContent"}],"title":"UnratedItem.channelContent","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11UnratedItemO14channelContentyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/channelContent":{"role":"symbol","title":"UnratedItem.channelContent","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"channelContent"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/channelContent","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/channelcontent"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/encode(to:).json new file mode 100644 index 000000000..8e93f0e32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI11UnratedItemO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/equatable-implementations.json new file mode 100644 index 000000000..a4673fd12 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/hash(into:).json new file mode 100644 index 000000000..7dea3db08 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI11UnratedItemO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/hashvalue.json new file mode 100644 index 000000000..65a10e87c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI11UnratedItemO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/init(from:).json new file mode 100644 index 000000000..1bc9b3c9c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI11UnratedItemO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/init(rawvalue:).json new file mode 100644 index 000000000..33fa500ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11UnratedItemO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/livetvchannel.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/livetvchannel.json new file mode 100644 index 000000000..2da828357 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/livetvchannel.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvChannel"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/livetvchannel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/liveTvChannel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvChannel"}],"title":"UnratedItem.liveTvChannel","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11UnratedItemO13liveTvChannelyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/liveTvChannel":{"role":"symbol","title":"UnratedItem.liveTvChannel","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvChannel"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/liveTvChannel","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/livetvchannel"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/livetvprogram.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/livetvprogram.json new file mode 100644 index 000000000..a9e7c3e76 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/livetvprogram.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvProgram"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/livetvprogram"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/liveTvProgram","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvProgram"}],"title":"UnratedItem.liveTvProgram","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11UnratedItemO13liveTvProgramyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/liveTvProgram":{"role":"symbol","title":"UnratedItem.liveTvProgram","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"liveTvProgram"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/liveTvProgram","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/livetvprogram"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/movie.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/movie.json new file mode 100644 index 000000000..71338820d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/movie.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/movie"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/movie","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"title":"UnratedItem.movie","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11UnratedItemO5movieyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/movie":{"role":"symbol","title":"UnratedItem.movie","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"movie"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/movie","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/movie"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/music.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/music.json new file mode 100644 index 000000000..63f604470 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/music.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"music"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/music"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/music","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"music"}],"title":"UnratedItem.music","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11UnratedItemO5musicyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/music":{"role":"symbol","title":"UnratedItem.music","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"music"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/music","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/music"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/other.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/other.json new file mode 100644 index 000000000..1062e03a9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/other.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"other"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/other"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/other","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"other"}],"title":"UnratedItem.other","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11UnratedItemO5otheryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/other":{"role":"symbol","title":"UnratedItem.other","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"other"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/other","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/other"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/rawrepresentable-implementations.json new file mode 100644 index 000000000..db24f5580 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/hash(into:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/series.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/series.json new file mode 100644 index 000000000..a21be0706 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/series.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/series"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/series","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"title":"UnratedItem.series","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11UnratedItemO6seriesyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/series":{"role":"symbol","title":"UnratedItem.series","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"series"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/series","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/series"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/trailer.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/trailer.json new file mode 100644 index 000000000..f2cc82479 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/unrateditem/trailer.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/unrateditem\/trailer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/trailer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"title":"UnratedItem.trailer","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI11UnratedItemO7traileryA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem/trailer":{"role":"symbol","title":"UnratedItem.trailer","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailer"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem\/trailer","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/unrateditem\/trailer"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto.json new file mode 100644 index 000000000..d489f2e95 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatelibraryoptionsdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Update library options dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"title":"UpdateLibraryOptionsDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI23UpdateLibraryOptionsDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UpdateLibraryOptionsDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/init(id:libraryOptions:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/id-6uk6q","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/libraryOptions"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/init(id:libraryOptions:)":{"role":"symbol","title":"init(id:libraryOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/init(id:libraryOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/init(id:libraryoptions:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/id-6uk6q":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the library item id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/id-6uk6q","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/id-6uk6q"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/libraryOptions":{"role":"symbol","title":"libraryOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets library options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/libraryOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto":{"role":"symbol","title":"UpdateLibraryOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/id-6uk6q.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/id-6uk6q.json new file mode 100644 index 000000000..fe7e92f0d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/id-6uk6q.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/id-6uk6q"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/id-6uk6q","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the library item id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23UpdateLibraryOptionsDtoV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto":{"role":"symbol","title":"UpdateLibraryOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/id-6uk6q":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the library item id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/id-6uk6q","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/id-6uk6q"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/id-9h7qg.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/id-9h7qg.json new file mode 100644 index 000000000..402c03a1e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/id-9h7qg.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/id-9h7qg"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/id-9h7qg","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI23UpdateLibraryOptionsDtoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/id-9h7qg":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/id-9h7qg","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/id-9h7qg"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto":{"role":"symbol","title":"UpdateLibraryOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/identifiable-implementations.json new file mode 100644 index 000000000..28164f7b1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/id-9h7qg"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto":{"role":"symbol","title":"UpdateLibraryOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/id-9h7qg":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/id-9h7qg","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/id-9h7qg"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/init(from:).json new file mode 100644 index 000000000..9a414d74f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23UpdateLibraryOptionsDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto":{"role":"symbol","title":"UpdateLibraryOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/init(id:libraryoptions:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/init(id:libraryoptions:).json new file mode 100644 index 000000000..3cd2a628c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/init(id:libraryoptions:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV","text":"LibraryOptions"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/init(id:libraryoptions:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/init(id:libraryOptions:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?)"}],"title":"init(id:libraryOptions:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI23UpdateLibraryOptionsDtoV2id07libraryE0AC10Foundation4UUIDVSg_AA0dE0VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto":{"role":"symbol","title":"UpdateLibraryOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/init(id:libraryOptions:)":{"role":"symbol","title":"init(id:libraryOptions:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/init(id:libraryOptions:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/init(id:libraryoptions:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/libraryoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/libraryoptions.json new file mode 100644 index 000000000..2c524892c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatelibraryoptionsdto/libraryoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV","text":"LibraryOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/libraryoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/libraryOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets library options."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?"}],"title":"libraryOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI23UpdateLibraryOptionsDtoV07libraryE0AA0dE0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto/libraryOptions":{"role":"symbol","title":"libraryOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets library options."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto\/libraryOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateLibraryOptionsDto":{"role":"symbol","title":"UpdateLibraryOptionsDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateLibraryOptionsDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateLibraryOptionsDto"}],"url":"\/documentation\/jellyfinapi\/updatelibraryoptionsdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto.json new file mode 100644 index 000000000..16fff1b6a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatemediapathrequestdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Update library options dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"title":"UpdateMediaPathRequestDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI25UpdateMediaPathRequestDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UpdateMediaPathRequestDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/init(name:pathInfo:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/pathInfo"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the library name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto/pathInfo":{"role":"symbol","title":"pathInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"}],"abstract":[{"type":"text","text":"Gets or sets library folder path information."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/pathInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto\/pathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto":{"role":"symbol","title":"UpdateMediaPathRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto/init(name:pathInfo:)":{"role":"symbol","title":"init(name:pathInfo:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/init(name:pathInfo:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto\/init(name:pathinfo:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto\/init(from:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/init(from:).json new file mode 100644 index 000000000..a68149a69 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatemediapathrequestdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI25UpdateMediaPathRequestDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto":{"role":"symbol","title":"UpdateMediaPathRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/init(name:pathinfo:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/init(name:pathinfo:).json new file mode 100644 index 000000000..37c102dbd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/init(name:pathinfo:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV","text":"MediaPathInfo"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatemediapathrequestdto\/init(name:pathinfo:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/init(name:pathInfo:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":")"}],"title":"init(name:pathInfo:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI25UpdateMediaPathRequestDtoV4name8pathInfoACSS_AA0deJ0Vtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto/init(name:pathInfo:)":{"role":"symbol","title":"init(name:pathInfo:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/init(name:pathInfo:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto\/init(name:pathinfo:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto":{"role":"symbol","title":"UpdateMediaPathRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/name.json new file mode 100644 index 000000000..ad636aa75 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatemediapathrequestdto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the library name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI25UpdateMediaPathRequestDtoV4nameSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto":{"role":"symbol","title":"UpdateMediaPathRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the library name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/pathinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/pathinfo.json new file mode 100644 index 000000000..001f6ec71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updatemediapathrequestdto/pathinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV","text":"MediaPathInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updatemediapathrequestdto\/pathinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/pathInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets library folder path information."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"}],"title":"pathInfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI25UpdateMediaPathRequestDtoV8pathInfoAA0deI0Vvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto/pathInfo":{"role":"symbol","title":"pathInfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pathInfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MediaPathInfo","preciseIdentifier":"s:11JellyfinAPI13MediaPathInfoV"}],"abstract":[{"type":"text","text":"Gets or sets library folder path information."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto\/pathInfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto\/pathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/MediaPathInfo":{"role":"symbol","title":"MediaPathInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MediaPathInfo"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/MediaPathInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MediaPathInfo"}],"url":"\/documentation\/jellyfinapi\/mediapathinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateMediaPathRequestDto":{"role":"symbol","title":"UpdateMediaPathRequestDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"abstract":[{"type":"text","text":"Update library options dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateMediaPathRequestDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateMediaPathRequestDto"}],"url":"\/documentation\/jellyfinapi\/updatemediapathrequestdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword.json new file mode 100644 index 000000000..14119b1ec --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserEasyPassword"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateusereasypassword"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The update user easy password request body."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserEasyPassword"}],"title":"UpdateUserEasyPassword","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI22UpdateUserEasyPasswordV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UpdateUserEasyPassword"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/init(newPassword:newPw:isResetPassword:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/isResetPassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/newPassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/newPw"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword":{"role":"symbol","title":"UpdateUserEasyPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserEasyPassword"}],"abstract":[{"type":"text","text":"The update user easy password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserEasyPassword"}],"url":"\/documentation\/jellyfinapi\/updateusereasypassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword/isResetPassword":{"role":"symbol","title":"isResetPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to reset the password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/isResetPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateusereasypassword\/isresetpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword/newPassword":{"role":"symbol","title":"newPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the new sha1-hashed password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/newPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateusereasypassword\/newpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateusereasypassword\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword/newPw":{"role":"symbol","title":"newPw","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the new password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/newPw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateusereasypassword\/newpw"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword/init(newPassword:newPw:isResetPassword:)":{"role":"symbol","title":"init(newPassword:newPw:isResetPassword:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/init(newPassword:newPw:isResetPassword:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateusereasypassword\/init(newpassword:newpw:isresetpassword:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/init(from:).json new file mode 100644 index 000000000..70b90b79a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateusereasypassword\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22UpdateUserEasyPasswordV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateusereasypassword\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword":{"role":"symbol","title":"UpdateUserEasyPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserEasyPassword"}],"abstract":[{"type":"text","text":"The update user easy password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserEasyPassword"}],"url":"\/documentation\/jellyfinapi\/updateusereasypassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/init(newpassword:newpw:isresetpassword:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/init(newpassword:newpw:isresetpassword:).json new file mode 100644 index 000000000..bcde625b7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/init(newpassword:newpw:isresetpassword:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateusereasypassword\/init(newpassword:newpw:isresetpassword:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/init(newPassword:newPw:isResetPassword:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(newPassword:newPw:isResetPassword:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI22UpdateUserEasyPasswordV03newF00G2Pw07isResetF0ACSSSg_AGSbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword":{"role":"symbol","title":"UpdateUserEasyPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserEasyPassword"}],"abstract":[{"type":"text","text":"The update user easy password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserEasyPassword"}],"url":"\/documentation\/jellyfinapi\/updateusereasypassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword/init(newPassword:newPw:isResetPassword:)":{"role":"symbol","title":"init(newPassword:newPw:isResetPassword:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/init(newPassword:newPw:isResetPassword:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateusereasypassword\/init(newpassword:newpw:isresetpassword:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/isresetpassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/isresetpassword.json new file mode 100644 index 000000000..0f559048c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/isresetpassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateusereasypassword\/isresetpassword"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/isResetPassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to reset the password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isResetPassword","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22UpdateUserEasyPasswordV07isResetF0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword/isResetPassword":{"role":"symbol","title":"isResetPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to reset the password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/isResetPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateusereasypassword\/isresetpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword":{"role":"symbol","title":"UpdateUserEasyPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserEasyPassword"}],"abstract":[{"type":"text","text":"The update user easy password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserEasyPassword"}],"url":"\/documentation\/jellyfinapi\/updateusereasypassword"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/newpassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/newpassword.json new file mode 100644 index 000000000..38cf4d1e3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/newpassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateusereasypassword\/newpassword"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/newPassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the new sha1-hashed password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"newPassword","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22UpdateUserEasyPasswordV03newF0SSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword/newPassword":{"role":"symbol","title":"newPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the new sha1-hashed password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/newPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateusereasypassword\/newpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword":{"role":"symbol","title":"UpdateUserEasyPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserEasyPassword"}],"abstract":[{"type":"text","text":"The update user easy password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserEasyPassword"}],"url":"\/documentation\/jellyfinapi\/updateusereasypassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/newpw.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/newpw.json new file mode 100644 index 000000000..ad06e108e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateusereasypassword/newpw.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateusereasypassword\/newpw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/newPw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the new password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"newPw","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI22UpdateUserEasyPasswordV5newPwSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword/newPw":{"role":"symbol","title":"newPw","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the new password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword\/newPw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateusereasypassword\/newpw"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserEasyPassword":{"role":"symbol","title":"UpdateUserEasyPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserEasyPassword"}],"abstract":[{"type":"text","text":"The update user easy password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserEasyPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserEasyPassword"}],"url":"\/documentation\/jellyfinapi\/updateusereasypassword"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword.json new file mode 100644 index 000000000..d420224c7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateuserpassword"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The update user password request body."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"title":"UpdateUserPassword","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI18UpdateUserPasswordV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UpdateUserPassword"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/init(currentPassword:currentPw:newPw:isResetPassword:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/currentPassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/currentPw","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/isResetPassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/newPw"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/currentPw":{"role":"symbol","title":"currentPw","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the current plain text password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/currentPw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/currentpw"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/isResetPassword":{"role":"symbol","title":"isResetPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to reset the password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/isResetPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/isresetpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/newPw":{"role":"symbol","title":"newPw","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the new plain text password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/newPw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/newpw"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword":{"role":"symbol","title":"UpdateUserPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"abstract":[{"type":"text","text":"The update user password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserPassword"}],"url":"\/documentation\/jellyfinapi\/updateuserpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/init(currentPassword:currentPw:newPw:isResetPassword:)":{"role":"symbol","title":"init(currentPassword:currentPw:newPw:isResetPassword:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"currentPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"currentPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/init(currentPassword:currentPw:newPw:isResetPassword:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/init(currentpassword:currentpw:newpw:isresetpassword:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/currentPassword":{"role":"symbol","title":"currentPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the current sha1-hashed password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/currentPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/currentpassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/currentpassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/currentpassword.json new file mode 100644 index 000000000..bb11cafd9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/currentpassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateuserpassword\/currentpassword"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/currentPassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the current sha1-hashed password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"currentPassword","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18UpdateUserPasswordV07currentE0SSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/currentPassword":{"role":"symbol","title":"currentPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the current sha1-hashed password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/currentPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/currentpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword":{"role":"symbol","title":"UpdateUserPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"abstract":[{"type":"text","text":"The update user password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserPassword"}],"url":"\/documentation\/jellyfinapi\/updateuserpassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/currentpw.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/currentpw.json new file mode 100644 index 000000000..27f602daa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/currentpw.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateuserpassword\/currentpw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/currentPw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the current plain text password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"currentPw","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18UpdateUserPasswordV9currentPwSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword":{"role":"symbol","title":"UpdateUserPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"abstract":[{"type":"text","text":"The update user password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserPassword"}],"url":"\/documentation\/jellyfinapi\/updateuserpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/currentPw":{"role":"symbol","title":"currentPw","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the current plain text password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/currentPw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/currentpw"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/init(currentpassword:currentpw:newpw:isresetpassword:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/init(currentpassword:currentpw:newpw:isresetpassword:).json new file mode 100644 index 000000000..bd991b1ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/init(currentpassword:currentpw:newpw:isresetpassword:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"currentPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"currentPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateuserpassword\/init(currentpassword:currentpw:newpw:isresetpassword:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/init(currentPassword:currentPw:newPw:isResetPassword:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"currentPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"currentPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(currentPassword:currentPw:newPw:isResetPassword:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18UpdateUserPasswordV07currentE00F2Pw03newG007isResetE0ACSSSg_A2HSbSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/init(currentPassword:currentPw:newPw:isResetPassword:)":{"role":"symbol","title":"init(currentPassword:currentPw:newPw:isResetPassword:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"currentPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"currentPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/init(currentPassword:currentPw:newPw:isResetPassword:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/init(currentpassword:currentpw:newpw:isresetpassword:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword":{"role":"symbol","title":"UpdateUserPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"abstract":[{"type":"text","text":"The update user password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserPassword"}],"url":"\/documentation\/jellyfinapi\/updateuserpassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/init(from:).json new file mode 100644 index 000000000..2b7a6224c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateuserpassword\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI18UpdateUserPasswordV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword":{"role":"symbol","title":"UpdateUserPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"abstract":[{"type":"text","text":"The update user password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserPassword"}],"url":"\/documentation\/jellyfinapi\/updateuserpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/isresetpassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/isresetpassword.json new file mode 100644 index 000000000..0d852acdb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/isresetpassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateuserpassword\/isresetpassword"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/isResetPassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to reset the password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isResetPassword","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18UpdateUserPasswordV07isResetE0SbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/isResetPassword":{"role":"symbol","title":"isResetPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isResetPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether to reset the password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/isResetPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/isresetpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword":{"role":"symbol","title":"UpdateUserPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"abstract":[{"type":"text","text":"The update user password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserPassword"}],"url":"\/documentation\/jellyfinapi\/updateuserpassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/newpw.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/newpw.json new file mode 100644 index 000000000..bb3af67cc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/updateuserpassword/newpw.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/updateuserpassword\/newpw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/newPw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the new plain text password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"newPw","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI18UpdateUserPasswordV5newPwSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword/newPw":{"role":"symbol","title":"newPw","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"newPw"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the new plain text password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword\/newPw","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/updateuserpassword\/newpw"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UpdateUserPassword":{"role":"symbol","title":"UpdateUserPassword","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UpdateUserPassword"}],"abstract":[{"type":"text","text":"The update user password request body."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UpdateUserPassword","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UpdateUserPassword"}],"url":"\/documentation\/jellyfinapi\/updateuserpassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto.json new file mode 100644 index 000000000..4dcd9334b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/uploadsubtitledto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Upload subtitles dto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"title":"UploadSubtitleDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17UploadSubtitleDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UploadSubtitleDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/init(data:format:isForced:language:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/data","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/format","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/isForced","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/language"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/format"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/language":{"role":"symbol","title":"language","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/language","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/language"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/data":{"role":"symbol","title":"data","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle data."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/data","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/data"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/init(data:format:isForced:language:)":{"role":"symbol","title":"init(data:format:isForced:language:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/init(data:format:isForced:language:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/init(data:format:isforced:language:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto":{"role":"symbol","title":"UploadSubtitleDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"abstract":[{"type":"text","text":"Upload subtitles dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadSubtitleDto"}],"url":"\/documentation\/jellyfinapi\/uploadsubtitledto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/isForced":{"role":"symbol","title":"isForced","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the subtitle is forced."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/isForced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/isforced"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/data.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/data.json new file mode 100644 index 000000000..ba459d2fa --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/data.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/uploadsubtitledto\/data"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/data","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the subtitle data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"data","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UploadSubtitleDtoV4dataSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/data":{"role":"symbol","title":"data","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle data."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/data","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/data"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto":{"role":"symbol","title":"UploadSubtitleDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"abstract":[{"type":"text","text":"Upload subtitles dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadSubtitleDto"}],"url":"\/documentation\/jellyfinapi\/uploadsubtitledto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/format.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/format.json new file mode 100644 index 000000000..b63311041 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/format.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/uploadsubtitledto\/format"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/format","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the subtitle format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"format","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UploadSubtitleDtoV6formatSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/format":{"role":"symbol","title":"format","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle format."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/format","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/format"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto":{"role":"symbol","title":"UploadSubtitleDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"abstract":[{"type":"text","text":"Upload subtitles dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadSubtitleDto"}],"url":"\/documentation\/jellyfinapi\/uploadsubtitledto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/init(data:format:isforced:language:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/init(data:format:isforced:language:).json new file mode 100644 index 000000000..f8bdf9065 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/init(data:format:isforced:language:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/uploadsubtitledto\/init(data:format:isforced:language:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/init(data:format:isForced:language:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(data:format:isForced:language:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17UploadSubtitleDtoV4data6format8isForced8languageACSS_SSSbSStcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto":{"role":"symbol","title":"UploadSubtitleDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"abstract":[{"type":"text","text":"Upload subtitles dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadSubtitleDto"}],"url":"\/documentation\/jellyfinapi\/uploadsubtitledto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/init(data:format:isForced:language:)":{"role":"symbol","title":"init(data:format:isForced:language:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/init(data:format:isForced:language:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/init(data:format:isforced:language:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/init(from:).json new file mode 100644 index 000000000..95b6b4a6f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/uploadsubtitledto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17UploadSubtitleDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto":{"role":"symbol","title":"UploadSubtitleDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"abstract":[{"type":"text","text":"Upload subtitles dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadSubtitleDto"}],"url":"\/documentation\/jellyfinapi\/uploadsubtitledto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/isforced.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/isforced.json new file mode 100644 index 000000000..ce12baaab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/isforced.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/uploadsubtitledto\/isforced"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/isForced","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the subtitle is forced."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isForced","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UploadSubtitleDtoV8isForcedSbvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto":{"role":"symbol","title":"UploadSubtitleDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"abstract":[{"type":"text","text":"Upload subtitles dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadSubtitleDto"}],"url":"\/documentation\/jellyfinapi\/uploadsubtitledto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/isForced":{"role":"symbol","title":"isForced","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForced"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether the subtitle is forced."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/isForced","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/isforced"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/language.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/language.json new file mode 100644 index 000000000..b3c89b357 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/uploadsubtitledto/language.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/uploadsubtitledto\/language"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/language","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the subtitle language."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"language","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UploadSubtitleDtoV8languageSSvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto/language":{"role":"symbol","title":"language","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"language"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle language."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto\/language","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/uploadsubtitledto\/language"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UploadSubtitleDto":{"role":"symbol","title":"UploadSubtitleDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadSubtitleDto"}],"abstract":[{"type":"text","text":"Upload subtitles dto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UploadSubtitleDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadSubtitleDto"}],"url":"\/documentation\/jellyfinapi\/uploadsubtitledto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration.json new file mode 100644 index 000000000..c5da260d4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class UserConfiguration."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"title":"UserConfiguration","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17UserConfigurationV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/init(audioLanguagePreference:isDisplayCollectionsView:isDisplayMissingEpisodes:enableLocalPassword:enableNextEpisodeAutoPlay:groupedFolders:isHidePlayedInLatest:latestItemsExcludes:myMediaExcludes:orderedViews:isPlayDefaultAudioTrack:isRememberAudioSelections:isRememberSubtitleSelections:subtitleLanguagePreference:subtitleMode:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/audioLanguagePreference","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/enableLocalPassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/enableNextEpisodeAutoPlay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/groupedFolders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isDisplayCollectionsView","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isDisplayMissingEpisodes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isHidePlayedInLatest","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isPlayDefaultAudioTrack","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isRememberAudioSelections","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isRememberSubtitleSelections","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/latestItemsExcludes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/myMediaExcludes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/orderedViews","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/subtitleLanguagePreference","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/subtitleMode"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isRememberSubtitleSelections":{"role":"symbol","title":"isRememberSubtitleSelections","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberSubtitleSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isRememberSubtitleSelections","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/isremembersubtitleselections"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/init(audioLanguagePreference:isDisplayCollectionsView:isDisplayMissingEpisodes:enableLocalPassword:enableNextEpisodeAutoPlay:groupedFolders:isHidePlayedInLatest:latestItemsExcludes:myMediaExcludes:orderedViews:isPlayDefaultAudioTrack:isRememberAudioSelections:isRememberSubtitleSelections:subtitleLanguagePreference:subtitleMode:)":{"role":"symbol","title":"init(audioLanguagePreference:isDisplayCollectionsView:isDisplayMissingEpisodes:enableLocalPassword:enableNextEpisodeAutoPlay:groupedFolders:isHidePlayedInLatest:latestItemsExcludes:myMediaExcludes:orderedViews:isPlayDefaultAudioTrack:isRememberAudioSelections:isRememberSubtitleSelections:subtitleLanguagePreference:subtitleMode:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisplayCollectionsView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisplayMissingEpisodes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableLocalPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableNextEpisodeAutoPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupedFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isHidePlayedInLatest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"latestItemsExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"myMediaExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"orderedViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayDefaultAudioTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberAudioSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberSubtitleSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitlePlaybackMode","preciseIdentifier":"s:11JellyfinAPI20SubtitlePlaybackModeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/init(audioLanguagePreference:isDisplayCollectionsView:isDisplayMissingEpisodes:enableLocalPassword:enableNextEpisodeAutoPlay:groupedFolders:isHidePlayedInLatest:latestItemsExcludes:myMediaExcludes:orderedViews:isPlayDefaultAudioTrack:isRememberAudioSelections:isRememberSubtitleSelections:subtitleLanguagePreference:subtitleMode:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/init(audiolanguagepreference:isdisplaycollectionsview:isdisplaymissingepisodes:enablelocalpassword:enablenextepisodeautoplay:groupedfolders:ishideplayedinlatest:latestitemsexcludes:mymediaexcludes:orderedviews:isplaydefaultaudiotrack:isreme-8btyt"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/latestItemsExcludes":{"role":"symbol","title":"latestItemsExcludes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"latestItemsExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/latestItemsExcludes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/latestitemsexcludes"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isDisplayMissingEpisodes":{"role":"symbol","title":"isDisplayMissingEpisodes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplayMissingEpisodes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isDisplayMissingEpisodes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/isdisplaymissingepisodes"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/orderedViews":{"role":"symbol","title":"orderedViews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"orderedViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/orderedViews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/orderedviews"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/audioLanguagePreference":{"role":"symbol","title":"audioLanguagePreference","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the audio language preference."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/audioLanguagePreference","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/audiolanguagepreference"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/myMediaExcludes":{"role":"symbol","title":"myMediaExcludes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"myMediaExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/myMediaExcludes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/mymediaexcludes"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/enableNextEpisodeAutoPlay":{"role":"symbol","title":"enableNextEpisodeAutoPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableNextEpisodeAutoPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/enableNextEpisodeAutoPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/enablenextepisodeautoplay"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isHidePlayedInLatest":{"role":"symbol","title":"isHidePlayedInLatest","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidePlayedInLatest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isHidePlayedInLatest","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/ishideplayedinlatest"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/enableLocalPassword":{"role":"symbol","title":"enableLocalPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLocalPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/enableLocalPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/enablelocalpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isPlayDefaultAudioTrack":{"role":"symbol","title":"isPlayDefaultAudioTrack","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayDefaultAudioTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [play default audio track]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isPlayDefaultAudioTrack","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/isplaydefaultaudiotrack"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/groupedFolders":{"role":"symbol","title":"groupedFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupedFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/groupedFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/groupedfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/subtitleLanguagePreference":{"role":"symbol","title":"subtitleLanguagePreference","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle language preference."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/subtitleLanguagePreference","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/subtitlelanguagepreference"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/subtitleMode":{"role":"symbol","title":"subtitleMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitlePlaybackMode","preciseIdentifier":"s:11JellyfinAPI20SubtitlePlaybackModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/subtitleMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/subtitlemode"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isDisplayCollectionsView":{"role":"symbol","title":"isDisplayCollectionsView","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplayCollectionsView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isDisplayCollectionsView","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/isdisplaycollectionsview"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isRememberAudioSelections":{"role":"symbol","title":"isRememberAudioSelections","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberAudioSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isRememberAudioSelections","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/isrememberaudioselections"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/audiolanguagepreference.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/audiolanguagepreference.json new file mode 100644 index 000000000..2b3f441be --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/audiolanguagepreference.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/audiolanguagepreference"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/audioLanguagePreference","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the audio language preference."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"audioLanguagePreference","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV23audioLanguagePreferenceSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/audioLanguagePreference":{"role":"symbol","title":"audioLanguagePreference","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the audio language preference."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/audioLanguagePreference","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/audiolanguagepreference"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/enablelocalpassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/enablelocalpassword.json new file mode 100644 index 000000000..e3871bdfe --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/enablelocalpassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLocalPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/enablelocalpassword"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/enableLocalPassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLocalPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableLocalPassword","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV19enableLocalPasswordSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/enableLocalPassword":{"role":"symbol","title":"enableLocalPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLocalPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/enableLocalPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/enablelocalpassword"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/enablenextepisodeautoplay.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/enablenextepisodeautoplay.json new file mode 100644 index 000000000..538343e59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/enablenextepisodeautoplay.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableNextEpisodeAutoPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/enablenextepisodeautoplay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/enableNextEpisodeAutoPlay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableNextEpisodeAutoPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableNextEpisodeAutoPlay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV25enableNextEpisodeAutoPlaySbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/enableNextEpisodeAutoPlay":{"role":"symbol","title":"enableNextEpisodeAutoPlay","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableNextEpisodeAutoPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/enableNextEpisodeAutoPlay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/enablenextepisodeautoplay"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/groupedfolders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/groupedfolders.json new file mode 100644 index 000000000..01aff8e7b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/groupedfolders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupedFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/groupedfolders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/groupedFolders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupedFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"groupedFolders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV14groupedFoldersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/groupedFolders":{"role":"symbol","title":"groupedFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupedFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/groupedFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/groupedfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/init(audiolanguagepreference:isdisplaycollectionsview:isdisplaymissingepisodes:enablelocalpassword:enablenextepisodeautoplay:groupedfolders:ishideplayedinlatest:latestitemsexcludes:mymediaexcludes:orderedviews:isplaydefaultaudiotrack:isreme-8btyt.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/init(audiolanguagepreference:isdisplaycollectionsview:isdisplaymissingepisodes:enablelocalpassword:enablenextepisodeautoplay:groupedfolders:ishideplayedinlatest:latestitemsexcludes:mymediaexcludes:orderedviews:isplaydefaultaudiotrack:isreme-8btyt.json new file mode 100644 index 000000000..e2e02ee1f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/init(audiolanguagepreference:isdisplaycollectionsview:isdisplaymissingepisodes:enablelocalpassword:enablenextepisodeautoplay:groupedfolders:ishideplayedinlatest:latestitemsexcludes:mymediaexcludes:orderedviews:isplaydefaultaudiotrack:isreme-8btyt.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDisplayCollectionsView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDisplayMissingEpisodes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableLocalPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableNextEpisodeAutoPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"groupedFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isHidePlayedInLatest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"latestItemsExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"myMediaExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"orderedViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isPlayDefaultAudioTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRememberAudioSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isRememberSubtitleSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"subtitleMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","preciseIdentifier":"s:11JellyfinAPI20SubtitlePlaybackModeO","text":"SubtitlePlaybackMode"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/init(audiolanguagepreference:isdisplaycollectionsview:isdisplaymissingepisodes:enablelocalpassword:enablenextepisodeautoplay:groupedfolders:ishideplayedinlatest:latestitemsexcludes:mymediaexcludes:orderedviews:isplaydefaultaudiotrack:isreme-8btyt"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/init(audioLanguagePreference:isDisplayCollectionsView:isDisplayMissingEpisodes:enableLocalPassword:enableNextEpisodeAutoPlay:groupedFolders:isHidePlayedInLatest:latestItemsExcludes:myMediaExcludes:orderedViews:isPlayDefaultAudioTrack:isRememberAudioSelections:isRememberSubtitleSelections:subtitleLanguagePreference:subtitleMode:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisplayCollectionsView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisplayMissingEpisodes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableLocalPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableNextEpisodeAutoPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupedFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isHidePlayedInLatest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"latestItemsExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"myMediaExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"orderedViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayDefaultAudioTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberAudioSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberSubtitleSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitlePlaybackMode","preciseIdentifier":"s:11JellyfinAPI20SubtitlePlaybackModeO"},{"kind":"text","text":"?)"}],"title":"init(audioLanguagePreference:isDisplayCollectionsView:isDisplayMissingEpisodes:enableLocalPassword:enableNextEpisodeAutoPlay:groupedFolders:isHidePlayedInLatest:latestItemsExcludes:myMediaExcludes:orderedViews:isPlayDefaultAudioTrack:isRememberAudioSelections:isRememberSubtitleSelections:subtitleLanguagePreference:subtitleMode:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17UserConfigurationV23audioLanguagePreference24isDisplayCollectionsView0hI15MissingEpisodes19enableLocalPassword0N19NextEpisodeAutoPlay14groupedFolders0H18HidePlayedInLatest19latestItemsExcludes15myMediaExcludes12orderedViews0hT17DefaultAudioTrack0H23RememberAudioSelections0H26RememberSubtitleSelections08subtitlefG012subtitleModeACSSSg_SbSgA3TSaySSGSgAt3v3tsA20SubtitlePlaybackModeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/init(audioLanguagePreference:isDisplayCollectionsView:isDisplayMissingEpisodes:enableLocalPassword:enableNextEpisodeAutoPlay:groupedFolders:isHidePlayedInLatest:latestItemsExcludes:myMediaExcludes:orderedViews:isPlayDefaultAudioTrack:isRememberAudioSelections:isRememberSubtitleSelections:subtitleLanguagePreference:subtitleMode:)":{"role":"symbol","title":"init(audioLanguagePreference:isDisplayCollectionsView:isDisplayMissingEpisodes:enableLocalPassword:enableNextEpisodeAutoPlay:groupedFolders:isHidePlayedInLatest:latestItemsExcludes:myMediaExcludes:orderedViews:isPlayDefaultAudioTrack:isRememberAudioSelections:isRememberSubtitleSelections:subtitleLanguagePreference:subtitleMode:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"audioLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisplayCollectionsView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisplayMissingEpisodes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableLocalPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableNextEpisodeAutoPlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"groupedFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isHidePlayedInLatest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"latestItemsExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"myMediaExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"orderedViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isPlayDefaultAudioTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberAudioSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isRememberSubtitleSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"subtitleMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitlePlaybackMode","preciseIdentifier":"s:11JellyfinAPI20SubtitlePlaybackModeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/init(audioLanguagePreference:isDisplayCollectionsView:isDisplayMissingEpisodes:enableLocalPassword:enableNextEpisodeAutoPlay:groupedFolders:isHidePlayedInLatest:latestItemsExcludes:myMediaExcludes:orderedViews:isPlayDefaultAudioTrack:isRememberAudioSelections:isRememberSubtitleSelections:subtitleLanguagePreference:subtitleMode:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/init(audiolanguagepreference:isdisplaycollectionsview:isdisplaymissingepisodes:enablelocalpassword:enablenextepisodeautoplay:groupedfolders:ishideplayedinlatest:latestitemsexcludes:mymediaexcludes:orderedviews:isplaydefaultaudiotrack:isreme-8btyt"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/init(from:).json new file mode 100644 index 000000000..cf0c97244 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17UserConfigurationV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isdisplaycollectionsview.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isdisplaycollectionsview.json new file mode 100644 index 000000000..dd399de52 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isdisplaycollectionsview.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplayCollectionsView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/isdisplaycollectionsview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isDisplayCollectionsView","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplayCollectionsView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDisplayCollectionsView","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV24isDisplayCollectionsViewSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isDisplayCollectionsView":{"role":"symbol","title":"isDisplayCollectionsView","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplayCollectionsView"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isDisplayCollectionsView","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/isdisplaycollectionsview"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isdisplaymissingepisodes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isdisplaymissingepisodes.json new file mode 100644 index 000000000..1fe1c547c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isdisplaymissingepisodes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplayMissingEpisodes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/isdisplaymissingepisodes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isDisplayMissingEpisodes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplayMissingEpisodes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDisplayMissingEpisodes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV24isDisplayMissingEpisodesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isDisplayMissingEpisodes":{"role":"symbol","title":"isDisplayMissingEpisodes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisplayMissingEpisodes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isDisplayMissingEpisodes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/isdisplaymissingepisodes"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/ishideplayedinlatest.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/ishideplayedinlatest.json new file mode 100644 index 000000000..86800c225 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/ishideplayedinlatest.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidePlayedInLatest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/ishideplayedinlatest"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isHidePlayedInLatest","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidePlayedInLatest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isHidePlayedInLatest","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV20isHidePlayedInLatestSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isHidePlayedInLatest":{"role":"symbol","title":"isHidePlayedInLatest","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidePlayedInLatest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isHidePlayedInLatest","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/ishideplayedinlatest"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isplaydefaultaudiotrack.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isplaydefaultaudiotrack.json new file mode 100644 index 000000000..a32840bb8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isplaydefaultaudiotrack.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayDefaultAudioTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/isplaydefaultaudiotrack"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isPlayDefaultAudioTrack","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [play default audio track]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayDefaultAudioTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlayDefaultAudioTrack","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV23isPlayDefaultAudioTrackSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isPlayDefaultAudioTrack":{"role":"symbol","title":"isPlayDefaultAudioTrack","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayDefaultAudioTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [play default audio track]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isPlayDefaultAudioTrack","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/isplaydefaultaudiotrack"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isrememberaudioselections.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isrememberaudioselections.json new file mode 100644 index 000000000..34aa10b7f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isrememberaudioselections.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberAudioSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/isrememberaudioselections"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isRememberAudioSelections","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberAudioSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRememberAudioSelections","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV25isRememberAudioSelectionsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isRememberAudioSelections":{"role":"symbol","title":"isRememberAudioSelections","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberAudioSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isRememberAudioSelections","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/isrememberaudioselections"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isremembersubtitleselections.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isremembersubtitleselections.json new file mode 100644 index 000000000..4faed92c6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/isremembersubtitleselections.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberSubtitleSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/isremembersubtitleselections"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isRememberSubtitleSelections","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberSubtitleSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isRememberSubtitleSelections","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV28isRememberSubtitleSelectionsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/isRememberSubtitleSelections":{"role":"symbol","title":"isRememberSubtitleSelections","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRememberSubtitleSelections"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/isRememberSubtitleSelections","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/isremembersubtitleselections"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/latestitemsexcludes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/latestitemsexcludes.json new file mode 100644 index 000000000..a951297e0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/latestitemsexcludes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"latestItemsExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/latestitemsexcludes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/latestItemsExcludes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"latestItemsExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"latestItemsExcludes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV19latestItemsExcludesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/latestItemsExcludes":{"role":"symbol","title":"latestItemsExcludes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"latestItemsExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/latestItemsExcludes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/latestitemsexcludes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/mymediaexcludes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/mymediaexcludes.json new file mode 100644 index 000000000..6ce373502 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/mymediaexcludes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"myMediaExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/mymediaexcludes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/myMediaExcludes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"myMediaExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"myMediaExcludes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV15myMediaExcludesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/myMediaExcludes":{"role":"symbol","title":"myMediaExcludes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"myMediaExcludes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/myMediaExcludes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/mymediaexcludes"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/orderedviews.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/orderedviews.json new file mode 100644 index 000000000..839d9fe11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/orderedviews.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"orderedViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/orderedviews"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/orderedViews","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"orderedViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"orderedViews","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV12orderedViewsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/orderedViews":{"role":"symbol","title":"orderedViews","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"orderedViews"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/orderedViews","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/orderedviews"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/subtitlelanguagepreference.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/subtitlelanguagepreference.json new file mode 100644 index 000000000..0ad59aadb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/subtitlelanguagepreference.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/subtitlelanguagepreference"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/subtitleLanguagePreference","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the subtitle language preference."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"subtitleLanguagePreference","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV26subtitleLanguagePreferenceSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/subtitleLanguagePreference":{"role":"symbol","title":"subtitleLanguagePreference","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleLanguagePreference"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the subtitle language preference."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/subtitleLanguagePreference","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/subtitlelanguagepreference"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/subtitlemode.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/subtitlemode.json new file mode 100644 index 000000000..109a7a126 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userconfiguration/subtitlemode.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","preciseIdentifier":"s:11JellyfinAPI20SubtitlePlaybackModeO","text":"SubtitlePlaybackMode"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userconfiguration\/subtitlemode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/subtitleMode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitlePlaybackMode","preciseIdentifier":"s:11JellyfinAPI20SubtitlePlaybackModeO"},{"kind":"text","text":"?"}],"title":"subtitleMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17UserConfigurationV12subtitleModeAA016SubtitlePlaybackF0OSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/SubtitlePlaybackMode":{"role":"symbol","title":"SubtitlePlaybackMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SubtitlePlaybackMode"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SubtitlePlaybackMode","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SubtitlePlaybackMode"}],"url":"\/documentation\/jellyfinapi\/subtitleplaybackmode"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration/subtitleMode":{"role":"symbol","title":"subtitleMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtitleMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SubtitlePlaybackMode","preciseIdentifier":"s:11JellyfinAPI20SubtitlePlaybackModeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"An enum representing a subtitle playback mode."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration\/subtitleMode","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userconfiguration\/subtitlemode"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto.json new file mode 100644 index 000000000..eccaddb36 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/s12IdentifiableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class UserDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"title":"UserDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI7UserDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UserDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/init(configuration:enableAutoLogin:hasConfiguredEasyPassword:hasConfiguredPassword:hasPassword:id:lastActivityDate:lastLoginDate:name:policy:primaryImageAspectRatio:primaryImageTag:serverID:serverName:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/configuration","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/enableAutoLogin","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasConfiguredEasyPassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasConfiguredPassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasPassword","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/id-5upuj","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/lastActivityDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/lastLoginDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/policy","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/primaryImageAspectRatio","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/primaryImageTag","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/serverID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/serverName"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/Identifiable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/lastActivityDate":{"role":"symbol","title":"lastActivityDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last activity date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/lastActivityDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/lastactivitydate"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/hasPassword":{"role":"symbol","title":"hasPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/haspassword"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/primaryImageTag":{"role":"symbol","title":"primaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/primaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/primaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/id-5upuj":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/id-5upuj","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/id-5upuj"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/s12IdentifiableP":{"type":"unresolvable","title":"Swift.Identifiable","identifier":"doc:\/\/JellyfinAPI\/s12IdentifiableP"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/init(configuration:enableAutoLogin:hasConfiguredEasyPassword:hasConfiguredPassword:hasPassword:id:lastActivityDate:lastLoginDate:name:policy:primaryImageAspectRatio:primaryImageTag:serverID:serverName:)":{"role":"symbol","title":"init(configuration:enableAutoLogin:hasConfiguredEasyPassword:hasConfiguredPassword:hasPassword:id:lastActivityDate:lastLoginDate:name:policy:primaryImageAspectRatio:primaryImageTag:serverID:serverName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasConfiguredEasyPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasConfiguredPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastLoginDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"policy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/init(configuration:enableAutoLogin:hasConfiguredEasyPassword:hasConfiguredPassword:hasPassword:id:lastActivityDate:lastLoginDate:name:policy:primaryImageAspectRatio:primaryImageTag:serverID:serverName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/init(configuration:enableautologin:hasconfiguredeasypassword:hasconfiguredpassword:haspassword:id:lastactivitydate:lastlogindate:name:policy:primaryimageaspectratio:primaryimagetag:serverid:servername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/lastLoginDate":{"role":"symbol","title":"lastLoginDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastLoginDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last login date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/lastLoginDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/lastlogindate"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/enableAutoLogin":{"role":"symbol","title":"enableAutoLogin","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets whether async login is enabled or not."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/enableAutoLogin","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/enableautologin"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/primaryImageAspectRatio":{"role":"symbol","title":"primaryImageAspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image aspect ratio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/primaryImageAspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/primaryimageaspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/policy":{"role":"symbol","title":"policy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"policy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the policy."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/policy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/policy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/hasConfiguredEasyPassword":{"role":"symbol","title":"hasConfiguredEasyPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasConfiguredEasyPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has configured easy password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasConfiguredEasyPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/hasconfiguredeasypassword"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/configuration":{"role":"symbol","title":"configuration","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/configuration","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/configuration"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/serverid"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/serverName":{"role":"symbol","title":"serverName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/serverName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/servername"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/hasConfiguredPassword":{"role":"symbol","title":"hasConfiguredPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasConfiguredPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has configured password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasConfiguredPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/hasconfiguredpassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/configuration.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/configuration.json new file mode 100644 index 000000000..b064b6a9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/configuration.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV","text":"UserConfiguration"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/configuration"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/configuration","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the configuration."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV"},{"kind":"text","text":"?"}],"title":"configuration","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV13configurationAA0C13ConfigurationVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/configuration":{"role":"symbol","title":"configuration","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the configuration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/configuration","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/configuration"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/enableautologin.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/enableautologin.json new file mode 100644 index 000000000..32f8a2aab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/enableautologin.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/enableautologin"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/enableAutoLogin","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets whether async login is enabled or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAutoLogin","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV15enableAutoLoginSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/enableAutoLogin":{"role":"symbol","title":"enableAutoLogin","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAutoLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets whether async login is enabled or not."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/enableAutoLogin","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/enableautologin"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/hasconfiguredeasypassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/hasconfiguredeasypassword.json new file mode 100644 index 000000000..870457fe5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/hasconfiguredeasypassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasConfiguredEasyPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/hasconfiguredeasypassword"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasConfiguredEasyPassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has configured easy password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasConfiguredEasyPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasConfiguredEasyPassword","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV25hasConfiguredEasyPasswordSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/hasConfiguredEasyPassword":{"role":"symbol","title":"hasConfiguredEasyPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasConfiguredEasyPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has configured easy password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasConfiguredEasyPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/hasconfiguredeasypassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/hasconfiguredpassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/hasconfiguredpassword.json new file mode 100644 index 000000000..ccb89ac41 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/hasconfiguredpassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasConfiguredPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/hasconfiguredpassword"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasConfiguredPassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has configured password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasConfiguredPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasConfiguredPassword","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV21hasConfiguredPasswordSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/hasConfiguredPassword":{"role":"symbol","title":"hasConfiguredPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasConfiguredPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has configured password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasConfiguredPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/hasconfiguredpassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/haspassword.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/haspassword.json new file mode 100644 index 000000000..1b5aab498 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/haspassword.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/haspassword"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasPassword","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has password."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"hasPassword","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV11hasPasswordSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/hasPassword":{"role":"symbol","title":"hasPassword","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance has password."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/hasPassword","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/haspassword"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/id-3d0t2.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/id-3d0t2.json new file mode 100644 index 000000000..32c7cb536 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/id-3d0t2.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/id-3d0t2"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/id-3d0t2","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Identifiable.id"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"symbol","title":"id","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"symbolKind":"property","externalID":"s:s12IdentifiablePsRlzCrlE2idSOvp::SYNTHESIZED::s:11JellyfinAPI7UserDtoV","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/Identifiable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/Identifiable-Implementations":{"role":"collectionGroup","title":"Identifiable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/Identifiable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/identifiable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/id-3d0t2":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/id-3d0t2","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/id-3d0t2"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/id-5upuj.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/id-5upuj.json new file mode 100644 index 000000000..f85d3c8f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/id-5upuj.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/id-5upuj"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/id-5upuj","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the id."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"title":"id","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV2id10Foundation4UUIDVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/id-5upuj":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the id."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/id-5upuj","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/id-5upuj"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/identifiable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/identifiable-implementations.json new file mode 100644 index 000000000..4a7768348 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/identifiable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/identifiable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/Identifiable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Identifiable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/id-3d0t2"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/id-3d0t2":{"role":"symbol","title":"id","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ObjectIdentifier","preciseIdentifier":"s:SO"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/id-3d0t2","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/id-3d0t2"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/init(configuration:enableautologin:hasconfiguredeasypassword:hasconfiguredpassword:haspassword:id:lastactivitydate:lastlogindate:name:policy:primaryimageaspectratio:primaryimagetag:serverid:servername:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/init(configuration:enableautologin:hasconfiguredeasypassword:hasconfiguredpassword:haspassword:id:lastactivitydate:lastlogindate:name:policy:primaryimageaspectratio:primaryimagetag:serverid:servername:).json new file mode 100644 index 000000000..ef128abe5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/init(configuration:enableautologin:hasconfiguredeasypassword:hasconfiguredpassword:haspassword:id:lastactivitydate:lastlogindate:name:policy:primaryimageaspectratio:primaryimagetag:serverid:servername:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV","text":"UserConfiguration"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAutoLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasConfiguredEasyPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasConfiguredPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"hasPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lastLoginDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"policy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV","text":"UserPolicy"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/init(configuration:enableautologin:hasconfiguredeasypassword:hasconfiguredpassword:haspassword:id:lastactivitydate:lastlogindate:name:policy:primaryimageaspectratio:primaryimagetag:serverid:servername:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/init(configuration:enableAutoLogin:hasConfiguredEasyPassword:hasConfiguredPassword:hasPassword:id:lastActivityDate:lastLoginDate:name:policy:primaryImageAspectRatio:primaryImageTag:serverID:serverName:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasConfiguredEasyPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasConfiguredPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastLoginDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"policy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(configuration:enableAutoLogin:hasConfiguredEasyPassword:hasConfiguredPassword:hasPassword:id:lastActivityDate:lastLoginDate:name:policy:primaryImageAspectRatio:primaryImageTag:serverID:serverName:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI7UserDtoV13configuration15enableAutoLogin25hasConfiguredEasyPassword0ijL00iL02id16lastActivityDate0nhP04name6policy23primaryImageAspectRatio0sT3Tag8serverID0X4NameAcA0C13ConfigurationVSg_SbSgA3U10Foundation4UUIDVSgAV0P0VSgA0_SSSgAA0C6PolicyVSgSdSgA1_A1_A1_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/init(configuration:enableAutoLogin:hasConfiguredEasyPassword:hasConfiguredPassword:hasPassword:id:lastActivityDate:lastLoginDate:name:policy:primaryImageAspectRatio:primaryImageTag:serverID:serverName:)":{"role":"symbol","title":"init(configuration:enableAutoLogin:hasConfiguredEasyPassword:hasConfiguredPassword:hasPassword:id:lastActivityDate:lastLoginDate:name:policy:primaryImageAspectRatio:primaryImageTag:serverID:serverName:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"configuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserConfiguration","preciseIdentifier":"s:11JellyfinAPI17UserConfigurationV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAutoLogin"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasConfiguredEasyPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasConfiguredPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"hasPassword"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastLoginDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"policy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/init(configuration:enableAutoLogin:hasConfiguredEasyPassword:hasConfiguredPassword:hasPassword:id:lastActivityDate:lastLoginDate:name:policy:primaryImageAspectRatio:primaryImageTag:serverID:serverName:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/init(configuration:enableautologin:hasconfiguredeasypassword:hasconfiguredpassword:haspassword:id:lastactivitydate:lastlogindate:name:policy:primaryimageaspectratio:primaryimagetag:serverid:servername:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserConfiguration":{"role":"symbol","title":"UserConfiguration","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserConfiguration"}],"abstract":[{"type":"text","text":"Class UserConfiguration."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserConfiguration","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserConfiguration"}],"url":"\/documentation\/jellyfinapi\/userconfiguration"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/init(from:).json new file mode 100644 index 000000000..59b6e5b5a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI7UserDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/lastactivitydate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/lastactivitydate.json new file mode 100644 index 000000000..647ca46cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/lastactivitydate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/lastactivitydate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/lastActivityDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the last activity date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"lastActivityDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV16lastActivityDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/lastActivityDate":{"role":"symbol","title":"lastActivityDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastActivityDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last activity date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/lastActivityDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/lastactivitydate"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/lastlogindate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/lastlogindate.json new file mode 100644 index 000000000..053b100f3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/lastlogindate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastLoginDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/lastlogindate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/lastLoginDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the last login date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastLoginDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"lastLoginDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV13lastLoginDate10Foundation0G0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/lastLoginDate":{"role":"symbol","title":"lastLoginDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastLoginDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last login date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/lastLoginDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/lastlogindate"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/name.json new file mode 100644 index 000000000..00d156cde --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/policy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/policy.json new file mode 100644 index 000000000..39e139d8b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/policy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"policy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV","text":"UserPolicy"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/policy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/policy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the policy."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"policy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV"},{"kind":"text","text":"?"}],"title":"policy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV6policyAA0C6PolicyVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/policy":{"role":"symbol","title":"policy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"policy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UserPolicy","preciseIdentifier":"s:11JellyfinAPI10UserPolicyV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the policy."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/policy","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/policy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/primaryimageaspectratio.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/primaryimageaspectratio.json new file mode 100644 index 000000000..bdd75d908 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/primaryimageaspectratio.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/primaryimageaspectratio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/primaryImageAspectRatio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the primary image aspect ratio."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"primaryImageAspectRatio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV23primaryImageAspectRatioSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/primaryImageAspectRatio":{"role":"symbol","title":"primaryImageAspectRatio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageAspectRatio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image aspect ratio."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/primaryImageAspectRatio","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/primaryimageaspectratio"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/primaryimagetag.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/primaryimagetag.json new file mode 100644 index 000000000..17e1cad1d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/primaryimagetag.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/primaryimagetag"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/primaryImageTag","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the primary image tag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"primaryImageTag","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV15primaryImageTagSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/primaryImageTag":{"role":"symbol","title":"primaryImageTag","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageTag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image tag."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/primaryImageTag","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/primaryimagetag"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/serverid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/serverid.json new file mode 100644 index 000000000..dd74b25e1 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/serverid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/serverid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/serverID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serverID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV8serverIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/serverID":{"role":"symbol","title":"serverID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the server identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/serverID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/serverid"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/servername.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/servername.json new file mode 100644 index 000000000..ba5f4b154 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userdto/servername.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This is not used by the server and is for client-side usage only."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userdto\/servername"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/serverName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"serverName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI7UserDtoV10serverNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto/serverName":{"role":"symbol","title":"serverName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"serverName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the server."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto\/serverName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userdto\/servername"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserDto":{"role":"symbol","title":"UserDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserDto"}],"abstract":[{"type":"text","text":"Class UserDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserDto"}],"url":"\/documentation\/jellyfinapi\/userdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto.json new file mode 100644 index 000000000..8a2521f82 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"title":"UserItemDataDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15UserItemDataDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/init(isFavorite:itemID:key:lastPlayedDate:isLikes:playCount:playbackPositionTicks:isPlayed:playedPercentage:rating:unplayedItemCount:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isFavorite","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isLikes","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isPlayed","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/key","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/lastPlayedDate","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playbackPositionTicks","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playedPercentage","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/rating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/unplayedItemCount"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is favorite."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/isfavorite"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/isPlayed":{"role":"symbol","title":"isPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/isplayed"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/init(isFavorite:itemID:key:lastPlayedDate:isLikes:playCount:playbackPositionTicks:isPlayed:playedPercentage:rating:unplayedItemCount:)":{"role":"symbol","title":"init(isFavorite:itemID:key:lastPlayedDate:isLikes:playCount:playbackPositionTicks:isPlayed:playedPercentage:rating:unplayedItemCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastPlayedDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playbackPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playedPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"rating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/init(isFavorite:itemID:key:lastPlayedDate:isLikes:playCount:playbackPositionTicks:isPlayed:playedPercentage:rating:unplayedItemCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/init(isfavorite:itemid:key:lastplayeddate:islikes:playcount:playbackpositionticks:isplayed:playedpercentage:rating:unplayeditemcount:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/playCount":{"role":"symbol","title":"playCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/playcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/playedPercentage":{"role":"symbol","title":"playedPercentage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playedPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the played percentage."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playedPercentage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/playedpercentage"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/unplayedItemCount":{"role":"symbol","title":"unplayedItemCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the unplayed item count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/unplayedItemCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/unplayeditemcount"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/isLikes":{"role":"symbol","title":"isLikes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isLikes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/islikes"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/playbackPositionTicks":{"role":"symbol","title":"playbackPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playback position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playbackPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/playbackpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/key":{"role":"symbol","title":"key","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the key."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/key","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/key"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/lastPlayedDate":{"role":"symbol","title":"lastPlayedDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastPlayedDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last played date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/lastPlayedDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/lastplayeddate"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/rating":{"role":"symbol","title":"rating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/rating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/rating"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/init(from:).json new file mode 100644 index 000000000..a94f6fe06 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15UserItemDataDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/init(isfavorite:itemid:key:lastplayeddate:islikes:playcount:playbackpositionticks:isplayed:playedpercentage:rating:unplayeditemcount:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/init(isfavorite:itemid:key:lastplayeddate:islikes:playcount:playbackpositionticks:isplayed:playedpercentage:rating:unplayeditemcount:).json new file mode 100644 index 000000000..107dd13f5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/init(isfavorite:itemid:key:lastplayeddate:islikes:playcount:playbackpositionticks:isplayed:playedpercentage:rating:unplayeditemcount:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"lastPlayedDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playbackPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"playedPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"rating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"unplayedItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/init(isfavorite:itemid:key:lastplayeddate:islikes:playcount:playbackpositionticks:isplayed:playedpercentage:rating:unplayeditemcount:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/init(isFavorite:itemID:key:lastPlayedDate:isLikes:playCount:playbackPositionTicks:isPlayed:playedPercentage:rating:unplayedItemCount:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastPlayedDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playbackPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playedPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"rating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(isFavorite:itemID:key:lastPlayedDate:isLikes:playCount:playbackPositionTicks:isPlayed:playedPercentage:rating:unplayedItemCount:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15UserItemDataDtoV10isFavorite6itemID3key14lastPlayedDate0G5Likes9playCount21playbackPositionTicks0gM016playedPercentage6rating08unplayeddQ0ACSbSg_SSSgAP10Foundation0N0VSgAOs5Int32VSgs5Int64VSgAOSdSgA_AWtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/init(isFavorite:itemID:key:lastPlayedDate:isLikes:playCount:playbackPositionTicks:isPlayed:playedPercentage:rating:unplayedItemCount:)":{"role":"symbol","title":"init(isFavorite:itemID:key:lastPlayedDate:isLikes:playCount:playbackPositionTicks:isPlayed:playedPercentage:rating:unplayedItemCount:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"lastPlayedDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playbackPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"playedPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"rating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"unplayedItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/init(isFavorite:itemID:key:lastPlayedDate:isLikes:playCount:playbackPositionTicks:isPlayed:playedPercentage:rating:unplayedItemCount:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/init(isfavorite:itemid:key:lastplayeddate:islikes:playcount:playbackpositionticks:isplayed:playedpercentage:rating:unplayeditemcount:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/isfavorite.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/isfavorite.json new file mode 100644 index 000000000..8912483df --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/isfavorite.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/isfavorite"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isFavorite","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is favorite."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFavorite","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV10isFavoriteSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/isFavorite":{"role":"symbol","title":"isFavorite","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFavorite"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is favorite."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isFavorite","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/isfavorite"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/islikes.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/islikes.json new file mode 100644 index 000000000..ea18d3d61 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/islikes.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/islikes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isLikes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isLikes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV7isLikesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/isLikes":{"role":"symbol","title":"isLikes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLikes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isLikes","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/islikes"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/isplayed.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/isplayed.json new file mode 100644 index 000000000..c942f52a3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/isplayed.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/isplayed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isPlayed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isPlayed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV8isPlayedSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/isPlayed":{"role":"symbol","title":"isPlayed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPlayed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/isPlayed","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/isplayed"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/itemid.json new file mode 100644 index 000000000..3aa745a75 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV6itemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/key.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/key.json new file mode 100644 index 000000000..6d810d63a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/key.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/key"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/key","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the key."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"key","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV3keySSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/key":{"role":"symbol","title":"key","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the key."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/key","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/key"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/lastplayeddate.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/lastplayeddate.json new file mode 100644 index 000000000..94f3ffd28 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/lastplayeddate.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastPlayedDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/lastplayeddate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/lastPlayedDate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the last played date."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastPlayedDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"lastPlayedDate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV14lastPlayedDate10Foundation0I0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/lastPlayedDate":{"role":"symbol","title":"lastPlayedDate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastPlayedDate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the last played date."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/lastPlayedDate","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/lastplayeddate"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/playbackpositionticks.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/playbackpositionticks.json new file mode 100644 index 000000000..158dca9b3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/playbackpositionticks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/playbackpositionticks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playbackPositionTicks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the playback position ticks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"playbackPositionTicks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV21playbackPositionTickss5Int64VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/playbackPositionTicks":{"role":"symbol","title":"playbackPositionTicks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playbackPositionTicks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the playback position ticks."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playbackPositionTicks","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/playbackpositionticks"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/playcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/playcount.json new file mode 100644 index 000000000..6d74a8e21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/playcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/playcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the play count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"playCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV9playCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/playCount":{"role":"symbol","title":"playCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the play count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/playcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/playedpercentage.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/playedpercentage.json new file mode 100644 index 000000000..921376aa0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/playedpercentage.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playedPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/playedpercentage"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playedPercentage","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the played percentage."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playedPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"playedPercentage","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV16playedPercentageSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/playedPercentage":{"role":"symbol","title":"playedPercentage","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playedPercentage"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the played percentage."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/playedPercentage","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/playedpercentage"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/rating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/rating.json new file mode 100644 index 000000000..8f99c9788 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/rating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/rating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/rating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the rating."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"rating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV6ratingSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/rating":{"role":"symbol","title":"rating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/rating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/rating"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/unplayeditemcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/unplayeditemcount.json new file mode 100644 index 000000000..233ed38b5 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/useritemdatadto/unplayeditemcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/useritemdatadto\/unplayeditemcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/unplayedItemCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the unplayed item count."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"unplayedItemCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UserItemDataDtoV08unplayedD5Counts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto":{"role":"symbol","title":"UserItemDataDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserItemDataDto"}],"abstract":[{"type":"text","text":"Class UserItemDataDto."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserItemDataDto"}],"url":"\/documentation\/jellyfinapi\/useritemdatadto"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserItemDataDto/unplayedItemCount":{"role":"symbol","title":"unplayedItemCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"unplayedItemCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the unplayed item count."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserItemDataDto\/unplayedItemCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/useritemdatadto\/unplayeditemcount"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy.json new file mode 100644 index 000000000..2eb65622f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"title":"UserPolicy","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI10UserPolicyV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/init(accessSchedules:authenticationProviderID:blockUnratedItems:blockedChannels:blockedMediaFolders:blockedTags:enableAllChannels:enableAllDevices:enableAllFolders:enableAudioPlaybackTranscoding:enableContentDeletion:enableContentDeletionFromFolders:enableContentDownloading:enableLiveTvAccess:enableLiveTvManagement:enableMediaConversion:enableMediaPlayback:enablePlaybackRemuxing:enablePublicSharing:enableRemoteAccess:enableRemoteControlOfOtherUsers:enableSharedDeviceControl:enableSyncTranscoding:enableUserPreferenceAccess:enableVideoPlaybackTranscoding:enabledChannels:enabledDevices:enabledFolders:isForceRemoteSourceTranscoding:invalidLoginAttemptCount:isAdministrator:isDisabled:isHidden:loginAttemptsBeforeLockout:maxActiveSessions:maxParentalRating:passwordResetProviderID:remoteClientBitrateLimit:syncPlayAccess:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/accessSchedules","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/authenticationProviderID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockUnratedItems","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedMediaFolders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedTags","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllDevices","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllFolders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAudioPlaybackTranscoding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDeletion","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDeletionFromFolders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDownloading","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableLiveTvAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableLiveTvManagement","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableMediaConversion","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableMediaPlayback","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enablePlaybackRemuxing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enablePublicSharing","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableRemoteAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableRemoteControlOfOtherUsers","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableSharedDeviceControl","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableSyncTranscoding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableUserPreferenceAccess","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableVideoPlaybackTranscoding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledChannels","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledDevices","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledFolders","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/invalidLoginAttemptCount","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isAdministrator","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isDisabled","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isForceRemoteSourceTranscoding","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isHidden","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/loginAttemptsBeforeLockout","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/maxActiveSessions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/maxParentalRating","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/passwordResetProviderID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/remoteClientBitrateLimit","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/syncPlayAccess"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/isAdministrator":{"role":"symbol","title":"isAdministrator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdministrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is administrator."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isAdministrator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/isadministrator"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableAudioPlaybackTranscoding":{"role":"symbol","title":"enableAudioPlaybackTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAudioPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAudioPlaybackTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableaudioplaybacktranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/remoteClientBitrateLimit":{"role":"symbol","title":"remoteClientBitrateLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/remoteClientBitrateLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/remoteclientbitratelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableContentDeletionFromFolders":{"role":"symbol","title":"enableContentDeletionFromFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDeletionFromFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDeletionFromFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablecontentdeletionfromfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/maxActiveSessions":{"role":"symbol","title":"maxActiveSessions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/maxActiveSessions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/maxactivesessions"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/blockedTags":{"role":"symbol","title":"blockedTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/blockedtags"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/maxParentalRating":{"role":"symbol","title":"maxParentalRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max parental rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/maxParentalRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/maxparentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableRemoteAccess":{"role":"symbol","title":"enableRemoteAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableRemoteAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableremoteaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/syncPlayAccess":{"role":"symbol","title":"syncPlayAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SyncPlayUserAccessType","preciseIdentifier":"s:11JellyfinAPI22SyncPlayUserAccessTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating what SyncPlay features the user can access."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/syncPlayAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/syncplayaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/init(accessSchedules:authenticationProviderID:blockUnratedItems:blockedChannels:blockedMediaFolders:blockedTags:enableAllChannels:enableAllDevices:enableAllFolders:enableAudioPlaybackTranscoding:enableContentDeletion:enableContentDeletionFromFolders:enableContentDownloading:enableLiveTvAccess:enableLiveTvManagement:enableMediaConversion:enableMediaPlayback:enablePlaybackRemuxing:enablePublicSharing:enableRemoteAccess:enableRemoteControlOfOtherUsers:enableSharedDeviceControl:enableSyncTranscoding:enableUserPreferenceAccess:enableVideoPlaybackTranscoding:enabledChannels:enabledDevices:enabledFolders:isForceRemoteSourceTranscoding:invalidLoginAttemptCount:isAdministrator:isDisabled:isHidden:loginAttemptsBeforeLockout:maxActiveSessions:maxParentalRating:passwordResetProviderID:remoteClientBitrateLimit:syncPlayAccess:)":{"role":"symbol","title":"init(accessSchedules:authenticationProviderID:blockUnratedItems:blockedChannels:blockedMediaFolders:blockedTags:enableAllChannels:enableAllDevices:enableAllFolders:enableAudioPlaybackTranscoding:enableContentDeletion:enableContentDeletionFromFolders:enableContentDownloading:enableLiveTvAccess:enableLiveTvManagement:enableMediaConversion:enableMediaPlayback:enablePlaybackRemuxing:enablePublicSharing:enableRemoteAccess:enableRemoteControlOfOtherUsers:enableSharedDeviceControl:enableSyncTranscoding:enableUserPreferenceAccess:enableVideoPlaybackTranscoding:enabledChannels:enabledDevices:enabledFolders:isForceRemoteSourceTranscoding:invalidLoginAttemptCount:isAdministrator:isDisabled:isHidden:loginAttemptsBeforeLockout:maxActiveSessions:maxParentalRating:passwordResetProviderID:remoteClientBitrateLimit:syncPlayAccess:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessSchedules"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AccessSchedule","preciseIdentifier":"s:11JellyfinAPI14AccessScheduleV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"authenticationProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blockUnratedItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UnratedItem","preciseIdentifier":"s:11JellyfinAPI11UnratedItemO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"blockedChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"blockedMediaFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"blockedTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableAllChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAllDevices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAllFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAudioPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableContentDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableContentDeletionFromFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableLiveTvAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableLiveTvManagement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMediaConversion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMediaPlayback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePlaybackRemuxing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePublicSharing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteControlOfOtherUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSharedDeviceControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSyncTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserPreferenceAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableVideoPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enabledChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enabledDevices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enabledFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isForceRemoteSourceTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"invalidLoginAttemptCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAdministrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"loginAttemptsBeforeLockout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"passwordResetProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"syncPlayAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SyncPlayUserAccessType","preciseIdentifier":"s:11JellyfinAPI22SyncPlayUserAccessTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/init(accessSchedules:authenticationProviderID:blockUnratedItems:blockedChannels:blockedMediaFolders:blockedTags:enableAllChannels:enableAllDevices:enableAllFolders:enableAudioPlaybackTranscoding:enableContentDeletion:enableContentDeletionFromFolders:enableContentDownloading:enableLiveTvAccess:enableLiveTvManagement:enableMediaConversion:enableMediaPlayback:enablePlaybackRemuxing:enablePublicSharing:enableRemoteAccess:enableRemoteControlOfOtherUsers:enableSharedDeviceControl:enableSyncTranscoding:enableUserPreferenceAccess:enableVideoPlaybackTranscoding:enabledChannels:enabledDevices:enabledFolders:isForceRemoteSourceTranscoding:invalidLoginAttemptCount:isAdministrator:isDisabled:isHidden:loginAttemptsBeforeLockout:maxActiveSessions:maxParentalRating:passwordResetProviderID:remoteClientBitrateLimit:syncPlayAccess:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/init(accessschedules:authenticationproviderid:blockunrateditems:blockedchannels:blockedmediafolders:blockedtags:enableallchannels:enablealldevices:enableallfolders:enableaudioplaybacktranscoding:enablecontentdeletion:enablecontentdeletionfr-7nokd"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/blockedChannels":{"role":"symbol","title":"blockedChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/blockedchannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableRemoteControlOfOtherUsers":{"role":"symbol","title":"enableRemoteControlOfOtherUsers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteControlOfOtherUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableRemoteControlOfOtherUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableremotecontrolofotherusers"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/isHidden":{"role":"symbol","title":"isHidden","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is hidden."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isHidden","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/ishidden"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableAllChannels":{"role":"symbol","title":"enableAllChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableallchannels"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableLiveTvManagement":{"role":"symbol","title":"enableLiveTvManagement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLiveTvManagement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableLiveTvManagement","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablelivetvmanagement"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/loginAttemptsBeforeLockout":{"role":"symbol","title":"loginAttemptsBeforeLockout","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loginAttemptsBeforeLockout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/loginAttemptsBeforeLockout","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/loginattemptsbeforelockout"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableMediaPlayback":{"role":"symbol","title":"enableMediaPlayback","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaPlayback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableMediaPlayback","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablemediaplayback"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enabledChannels":{"role":"symbol","title":"enabledChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enabledchannels"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/isForceRemoteSourceTranscoding":{"role":"symbol","title":"isForceRemoteSourceTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForceRemoteSourceTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isForceRemoteSourceTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/isforceremotesourcetranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/passwordResetProviderID":{"role":"symbol","title":"passwordResetProviderID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"passwordResetProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/passwordResetProviderID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/passwordresetproviderid"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enablePublicSharing":{"role":"symbol","title":"enablePublicSharing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePublicSharing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enablePublicSharing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablepublicsharing"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableContentDeletion":{"role":"symbol","title":"enableContentDeletion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDeletion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablecontentdeletion"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/blockedMediaFolders":{"role":"symbol","title":"blockedMediaFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedMediaFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedMediaFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/blockedmediafolders"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enablePlaybackRemuxing":{"role":"symbol","title":"enablePlaybackRemuxing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlaybackRemuxing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enablePlaybackRemuxing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableplaybackremuxing"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/invalidLoginAttemptCount":{"role":"symbol","title":"invalidLoginAttemptCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLoginAttemptCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/invalidLoginAttemptCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/invalidloginattemptcount"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableLiveTvAccess":{"role":"symbol","title":"enableLiveTvAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLiveTvAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableLiveTvAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablelivetvaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableMediaConversion":{"role":"symbol","title":"enableMediaConversion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaConversion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableMediaConversion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablemediaconversion"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableVideoPlaybackTranscoding":{"role":"symbol","title":"enableVideoPlaybackTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableVideoPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableVideoPlaybackTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablevideoplaybacktranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enabledDevices":{"role":"symbol","title":"enabledDevices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledDevices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledDevices","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableddevices"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableSyncTranscoding":{"role":"symbol","title":"enableSyncTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSyncTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [enable synchronize]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableSyncTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablesynctranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/accessSchedules":{"role":"symbol","title":"accessSchedules","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessSchedules"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AccessSchedule","preciseIdentifier":"s:11JellyfinAPI14AccessScheduleV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/accessSchedules","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/accessschedules"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableSharedDeviceControl":{"role":"symbol","title":"enableSharedDeviceControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSharedDeviceControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableSharedDeviceControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableshareddevicecontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enabledFolders":{"role":"symbol","title":"enabledFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enabledfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/isDisabled":{"role":"symbol","title":"isDisabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is disabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isDisabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/isdisabled"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableAllDevices":{"role":"symbol","title":"enableAllDevices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllDevices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllDevices","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablealldevices"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/authenticationProviderID":{"role":"symbol","title":"authenticationProviderID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/authenticationProviderID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/authenticationproviderid"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/blockUnratedItems":{"role":"symbol","title":"blockUnratedItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockUnratedItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UnratedItem","preciseIdentifier":"s:11JellyfinAPI11UnratedItemO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockUnratedItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/blockunrateditems"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableAllFolders":{"role":"symbol","title":"enableAllFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableallfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableContentDownloading":{"role":"symbol","title":"enableContentDownloading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDownloading","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablecontentdownloading"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableUserPreferenceAccess":{"role":"symbol","title":"enableUserPreferenceAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserPreferenceAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableUserPreferenceAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableuserpreferenceaccess"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/accessschedules.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/accessschedules.json new file mode 100644 index 000000000..fc38dc231 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/accessschedules.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessSchedules"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","preciseIdentifier":"s:11JellyfinAPI14AccessScheduleV","text":"AccessSchedule"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/accessschedules"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/accessSchedules","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessSchedules"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AccessSchedule","preciseIdentifier":"s:11JellyfinAPI14AccessScheduleV"},{"kind":"text","text":"]?"}],"title":"accessSchedules","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV15accessSchedulesSayAA14AccessScheduleVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/accessSchedules":{"role":"symbol","title":"accessSchedules","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessSchedules"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AccessSchedule","preciseIdentifier":"s:11JellyfinAPI14AccessScheduleV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/accessSchedules","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/accessschedules"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/authenticationproviderid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/authenticationproviderid.json new file mode 100644 index 000000000..2e5987d5b --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/authenticationproviderid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/authenticationproviderid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/authenticationProviderID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"authenticationProviderID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV24authenticationProviderIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/authenticationProviderID":{"role":"symbol","title":"authenticationProviderID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/authenticationProviderID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/authenticationproviderid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockedchannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockedchannels.json new file mode 100644 index 000000000..1584642ba --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockedchannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/blockedchannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"blockedChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV15blockedChannelsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/blockedChannels":{"role":"symbol","title":"blockedChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/blockedchannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockedmediafolders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockedmediafolders.json new file mode 100644 index 000000000..334afcf64 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockedmediafolders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedMediaFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/blockedmediafolders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedMediaFolders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedMediaFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"blockedMediaFolders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV19blockedMediaFoldersSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/blockedMediaFolders":{"role":"symbol","title":"blockedMediaFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedMediaFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedMediaFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/blockedmediafolders"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockedtags.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockedtags.json new file mode 100644 index 000000000..78f27ee92 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockedtags.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/blockedtags"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedTags","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"blockedTags","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV11blockedTagsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/blockedTags":{"role":"symbol","title":"blockedTags","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockedTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockedTags","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/blockedtags"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockunrateditems.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockunrateditems.json new file mode 100644 index 000000000..e496ab30f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/blockunrateditems.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockUnratedItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","preciseIdentifier":"s:11JellyfinAPI11UnratedItemO","text":"UnratedItem"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/blockunrateditems"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockUnratedItems","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockUnratedItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UnratedItem","preciseIdentifier":"s:11JellyfinAPI11UnratedItemO"},{"kind":"text","text":"]?"}],"title":"blockUnratedItems","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV17blockUnratedItemsSayAA0F4ItemOGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/blockUnratedItems":{"role":"symbol","title":"blockUnratedItems","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"blockUnratedItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UnratedItem","preciseIdentifier":"s:11JellyfinAPI11UnratedItemO"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/blockUnratedItems","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/blockunrateditems"},"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableallchannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableallchannels.json new file mode 100644 index 000000000..76d7f5e23 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableallchannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enableallchannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAllChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV17enableAllChannelsSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableAllChannels":{"role":"symbol","title":"enableAllChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableallchannels"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablealldevices.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablealldevices.json new file mode 100644 index 000000000..e53b1882e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablealldevices.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllDevices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablealldevices"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllDevices","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllDevices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAllDevices","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV16enableAllDevicesSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableAllDevices":{"role":"symbol","title":"enableAllDevices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllDevices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllDevices","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablealldevices"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableallfolders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableallfolders.json new file mode 100644 index 000000000..549573c01 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableallfolders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enableallfolders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllFolders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAllFolders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV16enableAllFoldersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableAllFolders":{"role":"symbol","title":"enableAllFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAllFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAllFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableallfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableaudioplaybacktranscoding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableaudioplaybacktranscoding.json new file mode 100644 index 000000000..47ff52064 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableaudioplaybacktranscoding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAudioPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enableaudioplaybacktranscoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAudioPlaybackTranscoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAudioPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableAudioPlaybackTranscoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV30enableAudioPlaybackTranscodingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableAudioPlaybackTranscoding":{"role":"symbol","title":"enableAudioPlaybackTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableAudioPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableAudioPlaybackTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableaudioplaybacktranscoding"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablecontentdeletion.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablecontentdeletion.json new file mode 100644 index 000000000..ee844091c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablecontentdeletion.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablecontentdeletion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDeletion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableContentDeletion","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV21enableContentDeletionSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableContentDeletion":{"role":"symbol","title":"enableContentDeletion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDeletion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablecontentdeletion"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablecontentdeletionfromfolders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablecontentdeletionfromfolders.json new file mode 100644 index 000000000..d5706ffc9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablecontentdeletionfromfolders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDeletionFromFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablecontentdeletionfromfolders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDeletionFromFolders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDeletionFromFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"enableContentDeletionFromFolders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV32enableContentDeletionFromFoldersSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableContentDeletionFromFolders":{"role":"symbol","title":"enableContentDeletionFromFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDeletionFromFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDeletionFromFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablecontentdeletionfromfolders"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablecontentdownloading.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablecontentdownloading.json new file mode 100644 index 000000000..2bb0ae33c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablecontentdownloading.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablecontentdownloading"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDownloading","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableContentDownloading","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV24enableContentDownloadingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableContentDownloading":{"role":"symbol","title":"enableContentDownloading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableContentDownloading","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablecontentdownloading"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enabledchannels.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enabledchannels.json new file mode 100644 index 000000000..2386dac26 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enabledchannels.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enabledchannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"enabledChannels","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV15enabledChannelsSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enabledChannels":{"role":"symbol","title":"enabledChannels","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledChannels","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enabledchannels"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableddevices.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableddevices.json new file mode 100644 index 000000000..6e825e881 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableddevices.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledDevices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enableddevices"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledDevices","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledDevices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"enabledDevices","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV14enabledDevicesSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enabledDevices":{"role":"symbol","title":"enabledDevices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledDevices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledDevices","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableddevices"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enabledfolders.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enabledfolders.json new file mode 100644 index 000000000..3979aefe8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enabledfolders.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enabledfolders"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledFolders","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"title":"enabledFolders","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV14enabledFoldersSay10Foundation4UUIDVGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enabledFolders":{"role":"symbol","title":"enabledFolders","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enabledFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enabledFolders","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enabledfolders"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablelivetvaccess.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablelivetvaccess.json new file mode 100644 index 000000000..0648289b8 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablelivetvaccess.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLiveTvAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablelivetvaccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableLiveTvAccess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLiveTvAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableLiveTvAccess","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV18enableLiveTvAccessSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableLiveTvAccess":{"role":"symbol","title":"enableLiveTvAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLiveTvAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableLiveTvAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablelivetvaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablelivetvmanagement.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablelivetvmanagement.json new file mode 100644 index 000000000..d1cd42800 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablelivetvmanagement.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLiveTvManagement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablelivetvmanagement"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableLiveTvManagement","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLiveTvManagement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableLiveTvManagement","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV22enableLiveTvManagementSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableLiveTvManagement":{"role":"symbol","title":"enableLiveTvManagement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableLiveTvManagement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableLiveTvManagement","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablelivetvmanagement"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablemediaconversion.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablemediaconversion.json new file mode 100644 index 000000000..705359755 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablemediaconversion.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaConversion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablemediaconversion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableMediaConversion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaConversion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMediaConversion","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV21enableMediaConversionSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableMediaConversion":{"role":"symbol","title":"enableMediaConversion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaConversion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableMediaConversion","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablemediaconversion"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablemediaplayback.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablemediaplayback.json new file mode 100644 index 000000000..f81faa8fd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablemediaplayback.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaPlayback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablemediaplayback"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableMediaPlayback","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaPlayback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableMediaPlayback","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV19enableMediaPlaybackSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableMediaPlayback":{"role":"symbol","title":"enableMediaPlayback","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableMediaPlayback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableMediaPlayback","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablemediaplayback"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableplaybackremuxing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableplaybackremuxing.json new file mode 100644 index 000000000..25cd6fa32 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableplaybackremuxing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlaybackRemuxing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enableplaybackremuxing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enablePlaybackRemuxing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlaybackRemuxing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enablePlaybackRemuxing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV22enablePlaybackRemuxingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enablePlaybackRemuxing":{"role":"symbol","title":"enablePlaybackRemuxing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePlaybackRemuxing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enablePlaybackRemuxing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableplaybackremuxing"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablepublicsharing.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablepublicsharing.json new file mode 100644 index 000000000..88d8f9190 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablepublicsharing.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePublicSharing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablepublicsharing"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enablePublicSharing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePublicSharing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enablePublicSharing","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV19enablePublicSharingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enablePublicSharing":{"role":"symbol","title":"enablePublicSharing","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePublicSharing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enablePublicSharing","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablepublicsharing"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableremoteaccess.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableremoteaccess.json new file mode 100644 index 000000000..f71fa8bab --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableremoteaccess.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enableremoteaccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableRemoteAccess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableRemoteAccess","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV18enableRemoteAccessSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableRemoteAccess":{"role":"symbol","title":"enableRemoteAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableRemoteAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableremoteaccess"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableremotecontrolofotherusers.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableremotecontrolofotherusers.json new file mode 100644 index 000000000..6a506b177 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableremotecontrolofotherusers.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteControlOfOtherUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enableremotecontrolofotherusers"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableRemoteControlOfOtherUsers","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteControlOfOtherUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableRemoteControlOfOtherUsers","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV31enableRemoteControlOfOtherUsersSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableRemoteControlOfOtherUsers":{"role":"symbol","title":"enableRemoteControlOfOtherUsers","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableRemoteControlOfOtherUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableRemoteControlOfOtherUsers","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableremotecontrolofotherusers"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableshareddevicecontrol.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableshareddevicecontrol.json new file mode 100644 index 000000000..48cdc9e50 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableshareddevicecontrol.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSharedDeviceControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enableshareddevicecontrol"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableSharedDeviceControl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSharedDeviceControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableSharedDeviceControl","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV25enableSharedDeviceControlSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableSharedDeviceControl":{"role":"symbol","title":"enableSharedDeviceControl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSharedDeviceControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableSharedDeviceControl","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableshareddevicecontrol"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablesynctranscoding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablesynctranscoding.json new file mode 100644 index 000000000..5072b703c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablesynctranscoding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSyncTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablesynctranscoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableSyncTranscoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [enable synchronize]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSyncTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableSyncTranscoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV21enableSyncTranscodingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableSyncTranscoding":{"role":"symbol","title":"enableSyncTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableSyncTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether [enable synchronize]."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableSyncTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablesynctranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableuserpreferenceaccess.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableuserpreferenceaccess.json new file mode 100644 index 000000000..74d422c38 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enableuserpreferenceaccess.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserPreferenceAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enableuserpreferenceaccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableUserPreferenceAccess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserPreferenceAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableUserPreferenceAccess","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV06enableC16PreferenceAccessSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableUserPreferenceAccess":{"role":"symbol","title":"enableUserPreferenceAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableUserPreferenceAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableUserPreferenceAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enableuserpreferenceaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablevideoplaybacktranscoding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablevideoplaybacktranscoding.json new file mode 100644 index 000000000..b059b3c1a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/enablevideoplaybacktranscoding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableVideoPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/enablevideoplaybacktranscoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableVideoPlaybackTranscoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableVideoPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableVideoPlaybackTranscoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV30enableVideoPlaybackTranscodingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/enableVideoPlaybackTranscoding":{"role":"symbol","title":"enableVideoPlaybackTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableVideoPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/enableVideoPlaybackTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/enablevideoplaybacktranscoding"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/init(accessschedules:authenticationproviderid:blockunrateditems:blockedchannels:blockedmediafolders:blockedtags:enableallchannels:enablealldevices:enableallfolders:enableaudioplaybacktranscoding:enablecontentdeletion:enablecontentdeletionfr-7nokd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/init(accessschedules:authenticationproviderid:blockunrateditems:blockedchannels:blockedmediafolders:blockedtags:enableallchannels:enablealldevices:enableallfolders:enableaudioplaybacktranscoding:enablecontentdeletion:enablecontentdeletionfr-7nokd.json new file mode 100644 index 000000000..ccc2b605f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/init(accessschedules:authenticationproviderid:blockunrateditems:blockedchannels:blockedmediafolders:blockedtags:enableallchannels:enablealldevices:enableallfolders:enableaudioplaybacktranscoding:enablecontentdeletion:enablecontentdeletionfr-7nokd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessSchedules"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","preciseIdentifier":"s:11JellyfinAPI14AccessScheduleV","text":"AccessSchedule"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"authenticationProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"blockUnratedItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","preciseIdentifier":"s:11JellyfinAPI11UnratedItemO","text":"UnratedItem"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"blockedChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"blockedMediaFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"blockedTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableAllChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAllDevices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAllFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableAudioPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableContentDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableContentDeletionFromFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enableContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableLiveTvAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableLiveTvManagement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMediaConversion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableMediaPlayback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enablePlaybackRemuxing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enablePublicSharing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableRemoteControlOfOtherUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableSharedDeviceControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableSyncTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableUserPreferenceAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enableVideoPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enabledChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enabledDevices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"enabledFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"isForceRemoteSourceTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"invalidLoginAttemptCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isAdministrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"loginAttemptsBeforeLockout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"maxParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"passwordResetProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"syncPlayAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","preciseIdentifier":"s:11JellyfinAPI22SyncPlayUserAccessTypeO","text":"SyncPlayUserAccessType"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/init(accessschedules:authenticationproviderid:blockunrateditems:blockedchannels:blockedmediafolders:blockedtags:enableallchannels:enablealldevices:enableallfolders:enableaudioplaybacktranscoding:enablecontentdeletion:enablecontentdeletionfr-7nokd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/init(accessSchedules:authenticationProviderID:blockUnratedItems:blockedChannels:blockedMediaFolders:blockedTags:enableAllChannels:enableAllDevices:enableAllFolders:enableAudioPlaybackTranscoding:enableContentDeletion:enableContentDeletionFromFolders:enableContentDownloading:enableLiveTvAccess:enableLiveTvManagement:enableMediaConversion:enableMediaPlayback:enablePlaybackRemuxing:enablePublicSharing:enableRemoteAccess:enableRemoteControlOfOtherUsers:enableSharedDeviceControl:enableSyncTranscoding:enableUserPreferenceAccess:enableVideoPlaybackTranscoding:enabledChannels:enabledDevices:enabledFolders:isForceRemoteSourceTranscoding:invalidLoginAttemptCount:isAdministrator:isDisabled:isHidden:loginAttemptsBeforeLockout:maxActiveSessions:maxParentalRating:passwordResetProviderID:remoteClientBitrateLimit:syncPlayAccess:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessSchedules"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AccessSchedule","preciseIdentifier":"s:11JellyfinAPI14AccessScheduleV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"authenticationProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blockUnratedItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UnratedItem","preciseIdentifier":"s:11JellyfinAPI11UnratedItemO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"blockedChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"blockedMediaFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"blockedTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableAllChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAllDevices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAllFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAudioPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableContentDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableContentDeletionFromFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableLiveTvAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableLiveTvManagement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMediaConversion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMediaPlayback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePlaybackRemuxing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePublicSharing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteControlOfOtherUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSharedDeviceControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSyncTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserPreferenceAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableVideoPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enabledChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enabledDevices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enabledFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isForceRemoteSourceTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"invalidLoginAttemptCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAdministrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"loginAttemptsBeforeLockout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"passwordResetProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"syncPlayAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SyncPlayUserAccessType","preciseIdentifier":"s:11JellyfinAPI22SyncPlayUserAccessTypeO"},{"kind":"text","text":"?)"}],"title":"init(accessSchedules:authenticationProviderID:blockUnratedItems:blockedChannels:blockedMediaFolders:blockedTags:enableAllChannels:enableAllDevices:enableAllFolders:enableAudioPlaybackTranscoding:enableContentDeletion:enableContentDeletionFromFolders:enableContentDownloading:enableLiveTvAccess:enableLiveTvManagement:enableMediaConversion:enableMediaPlayback:enablePlaybackRemuxing:enablePublicSharing:enableRemoteAccess:enableRemoteControlOfOtherUsers:enableSharedDeviceControl:enableSyncTranscoding:enableUserPreferenceAccess:enableVideoPlaybackTranscoding:enabledChannels:enabledDevices:enabledFolders:isForceRemoteSourceTranscoding:invalidLoginAttemptCount:isAdministrator:isDisabled:isHidden:loginAttemptsBeforeLockout:maxActiveSessions:maxParentalRating:passwordResetProviderID:remoteClientBitrateLimit:syncPlayAccess:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10UserPolicyV15accessSchedules24authenticationProviderID17blockUnratedItems15blockedChannels0M12MediaFolders0M4Tags09enableAllN00rS7Devices0rsP00R24AudioPlaybackTranscoding0R15ContentDeletion0rxy4FromP00rX11Downloading0R12LiveTvAccess0R16LiveTvManagement0rO10Conversion0roV00rV8Remuxing0R13PublicSharing0R12RemoteAccess0R25RemoteControlOfOtherUsers0R19SharedDeviceControl0r4SyncW00rC16PreferenceAccess0r5VideovW007enabledN007enabledT007enabledP0019isForceRemoteSourceW024invalidLoginAttemptCount15isAdministrator10isDisabled8isHidden26loginAttemptsBeforeLockout17maxActiveSessions17maxParentalRating013passwordResethI024remoteClientBitrateLimit14syncPlayAccessACSayAA14AccessScheduleVGSg_SSSgSayAA0K4ItemOGSgSay10Foundation4UUIDVGSgA28_SaySSGSgSbSgA31_A31_A31_A31_A30_A31_A31_A31_A31_A31_A31_A31_A31_A31_A31_A31_A31_A31_A28_A30_A28_A31_s5Int32VSgA31_A31_A31_A34_A34_A34_A19_A34_AA08SyncPlayC10AccessTypeOSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UnratedItem":{"role":"symbol","title":"UnratedItem","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"UnratedItem"}],"abstract":[{"type":"text","text":"An enum representing an unrated item."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UnratedItem","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UnratedItem"}],"url":"\/documentation\/jellyfinapi\/unrateditem"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/init(accessSchedules:authenticationProviderID:blockUnratedItems:blockedChannels:blockedMediaFolders:blockedTags:enableAllChannels:enableAllDevices:enableAllFolders:enableAudioPlaybackTranscoding:enableContentDeletion:enableContentDeletionFromFolders:enableContentDownloading:enableLiveTvAccess:enableLiveTvManagement:enableMediaConversion:enableMediaPlayback:enablePlaybackRemuxing:enablePublicSharing:enableRemoteAccess:enableRemoteControlOfOtherUsers:enableSharedDeviceControl:enableSyncTranscoding:enableUserPreferenceAccess:enableVideoPlaybackTranscoding:enabledChannels:enabledDevices:enabledFolders:isForceRemoteSourceTranscoding:invalidLoginAttemptCount:isAdministrator:isDisabled:isHidden:loginAttemptsBeforeLockout:maxActiveSessions:maxParentalRating:passwordResetProviderID:remoteClientBitrateLimit:syncPlayAccess:)":{"role":"symbol","title":"init(accessSchedules:authenticationProviderID:blockUnratedItems:blockedChannels:blockedMediaFolders:blockedTags:enableAllChannels:enableAllDevices:enableAllFolders:enableAudioPlaybackTranscoding:enableContentDeletion:enableContentDeletionFromFolders:enableContentDownloading:enableLiveTvAccess:enableLiveTvManagement:enableMediaConversion:enableMediaPlayback:enablePlaybackRemuxing:enablePublicSharing:enableRemoteAccess:enableRemoteControlOfOtherUsers:enableSharedDeviceControl:enableSyncTranscoding:enableUserPreferenceAccess:enableVideoPlaybackTranscoding:enabledChannels:enabledDevices:enabledFolders:isForceRemoteSourceTranscoding:invalidLoginAttemptCount:isAdministrator:isDisabled:isHidden:loginAttemptsBeforeLockout:maxActiveSessions:maxParentalRating:passwordResetProviderID:remoteClientBitrateLimit:syncPlayAccess:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"accessSchedules"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AccessSchedule","preciseIdentifier":"s:11JellyfinAPI14AccessScheduleV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"authenticationProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"blockUnratedItems"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UnratedItem","preciseIdentifier":"s:11JellyfinAPI11UnratedItemO"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"blockedChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"blockedMediaFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"blockedTags"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableAllChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAllDevices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAllFolders"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableAudioPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableContentDeletion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableContentDeletionFromFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enableContentDownloading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableLiveTvAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableLiveTvManagement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMediaConversion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableMediaPlayback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePlaybackRemuxing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePublicSharing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableRemoteControlOfOtherUsers"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSharedDeviceControl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableSyncTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableUserPreferenceAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enableVideoPlaybackTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enabledChannels"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enabledDevices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"enabledFolders"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"isForceRemoteSourceTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"invalidLoginAttemptCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isAdministrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"loginAttemptsBeforeLockout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"passwordResetProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"syncPlayAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SyncPlayUserAccessType","preciseIdentifier":"s:11JellyfinAPI22SyncPlayUserAccessTypeO"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/init(accessSchedules:authenticationProviderID:blockUnratedItems:blockedChannels:blockedMediaFolders:blockedTags:enableAllChannels:enableAllDevices:enableAllFolders:enableAudioPlaybackTranscoding:enableContentDeletion:enableContentDeletionFromFolders:enableContentDownloading:enableLiveTvAccess:enableLiveTvManagement:enableMediaConversion:enableMediaPlayback:enablePlaybackRemuxing:enablePublicSharing:enableRemoteAccess:enableRemoteControlOfOtherUsers:enableSharedDeviceControl:enableSyncTranscoding:enableUserPreferenceAccess:enableVideoPlaybackTranscoding:enabledChannels:enabledDevices:enabledFolders:isForceRemoteSourceTranscoding:invalidLoginAttemptCount:isAdministrator:isDisabled:isHidden:loginAttemptsBeforeLockout:maxActiveSessions:maxParentalRating:passwordResetProviderID:remoteClientBitrateLimit:syncPlayAccess:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/init(accessschedules:authenticationproviderid:blockunrateditems:blockedchannels:blockedmediafolders:blockedtags:enableallchannels:enablealldevices:enableallfolders:enableaudioplaybacktranscoding:enablecontentdeletion:enablecontentdeletionfr-7nokd"},"doc://JellyfinAPI/documentation/JellyfinAPI/AccessSchedule":{"role":"symbol","title":"AccessSchedule","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccessSchedule"}],"abstract":[{"type":"text","text":"An entity representing a user’s access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/init(from:).json new file mode 100644 index 000000000..375a424fb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI10UserPolicyV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/invalidloginattemptcount.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/invalidloginattemptcount.json new file mode 100644 index 000000000..e14260d46 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/invalidloginattemptcount.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLoginAttemptCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/invalidloginattemptcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/invalidLoginAttemptCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLoginAttemptCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"invalidLoginAttemptCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV24invalidLoginAttemptCounts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/invalidLoginAttemptCount":{"role":"symbol","title":"invalidLoginAttemptCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLoginAttemptCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/invalidLoginAttemptCount","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/invalidloginattemptcount"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/isadministrator.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/isadministrator.json new file mode 100644 index 000000000..ed0e5bba4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/isadministrator.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdministrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/isadministrator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isAdministrator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is administrator."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdministrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isAdministrator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV15isAdministratorSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/isAdministrator":{"role":"symbol","title":"isAdministrator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdministrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is administrator."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isAdministrator","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/isadministrator"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/isdisabled.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/isdisabled.json new file mode 100644 index 000000000..03f5786bf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/isdisabled.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/isdisabled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isDisabled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is disabled."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isDisabled","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV10isDisabledSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/isDisabled":{"role":"symbol","title":"isDisabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isDisabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is disabled."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isDisabled","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/isdisabled"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/isforceremotesourcetranscoding.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/isforceremotesourcetranscoding.json new file mode 100644 index 000000000..1a60a3e56 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/isforceremotesourcetranscoding.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForceRemoteSourceTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/isforceremotesourcetranscoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isForceRemoteSourceTranscoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForceRemoteSourceTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isForceRemoteSourceTranscoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV30isForceRemoteSourceTranscodingSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/isForceRemoteSourceTranscoding":{"role":"symbol","title":"isForceRemoteSourceTranscoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isForceRemoteSourceTranscoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isForceRemoteSourceTranscoding","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/isforceremotesourcetranscoding"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/ishidden.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/ishidden.json new file mode 100644 index 000000000..24464df69 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/ishidden.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/ishidden"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isHidden","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is hidden."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isHidden","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV8isHiddenSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/isHidden":{"role":"symbol","title":"isHidden","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHidden"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether this instance is hidden."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/isHidden","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/ishidden"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/loginattemptsbeforelockout.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/loginattemptsbeforelockout.json new file mode 100644 index 000000000..a14e913c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/loginattemptsbeforelockout.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loginAttemptsBeforeLockout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/loginattemptsbeforelockout"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/loginAttemptsBeforeLockout","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loginAttemptsBeforeLockout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"loginAttemptsBeforeLockout","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV26loginAttemptsBeforeLockouts5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/loginAttemptsBeforeLockout":{"role":"symbol","title":"loginAttemptsBeforeLockout","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loginAttemptsBeforeLockout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/loginAttemptsBeforeLockout","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/loginattemptsbeforelockout"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/maxactivesessions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/maxactivesessions.json new file mode 100644 index 000000000..769c76db7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/maxactivesessions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/maxactivesessions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/maxActiveSessions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxActiveSessions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV17maxActiveSessionss5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/maxActiveSessions":{"role":"symbol","title":"maxActiveSessions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxActiveSessions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/maxActiveSessions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/maxactivesessions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/maxparentalrating.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/maxparentalrating.json new file mode 100644 index 000000000..5c7fc7438 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/maxparentalrating.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/maxparentalrating"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/maxParentalRating","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the max parental rating."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"maxParentalRating","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV17maxParentalRatings5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/maxParentalRating":{"role":"symbol","title":"maxParentalRating","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxParentalRating"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the max parental rating."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/maxParentalRating","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/maxparentalrating"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/passwordresetproviderid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/passwordresetproviderid.json new file mode 100644 index 000000000..278f483c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/passwordresetproviderid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"passwordResetProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/passwordresetproviderid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/passwordResetProviderID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"passwordResetProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"passwordResetProviderID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV23passwordResetProviderIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/passwordResetProviderID":{"role":"symbol","title":"passwordResetProviderID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"passwordResetProviderID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/passwordResetProviderID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/passwordresetproviderid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/remoteclientbitratelimit.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/remoteclientbitratelimit.json new file mode 100644 index 000000000..0c75989cd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/remoteclientbitratelimit.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/remoteclientbitratelimit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/remoteClientBitrateLimit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"remoteClientBitrateLimit","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV24remoteClientBitrateLimits5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/remoteClientBitrateLimit":{"role":"symbol","title":"remoteClientBitrateLimit","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"remoteClientBitrateLimit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/remoteClientBitrateLimit","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/remoteclientbitratelimit"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/syncplayaccess.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/syncplayaccess.json new file mode 100644 index 000000000..ed8ce6a84 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/userpolicy/syncplayaccess.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","preciseIdentifier":"s:11JellyfinAPI22SyncPlayUserAccessTypeO","text":"SyncPlayUserAccessType"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/userpolicy\/syncplayaccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/syncPlayAccess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating what SyncPlay features the user can access."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SyncPlayUserAccessType","preciseIdentifier":"s:11JellyfinAPI22SyncPlayUserAccessTypeO"},{"kind":"text","text":"?"}],"title":"syncPlayAccess","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI10UserPolicyV14syncPlayAccessAA04SyncfcG4TypeOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy/syncPlayAccess":{"role":"symbol","title":"syncPlayAccess","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncPlayAccess"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SyncPlayUserAccessType","preciseIdentifier":"s:11JellyfinAPI22SyncPlayUserAccessTypeO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating what SyncPlay features the user can access."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy\/syncPlayAccess","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/userpolicy\/syncplayaccess"},"doc://JellyfinAPI/documentation/JellyfinAPI/SyncPlayUserAccessType":{"role":"symbol","title":"SyncPlayUserAccessType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SyncPlayUserAccessType"}],"abstract":[{"type":"text","text":"Enum SyncPlayUserAccessType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/SyncPlayUserAccessType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SyncPlayUserAccessType"}],"url":"\/documentation\/jellyfinapi\/syncplayuseraccesstype"},"doc://JellyfinAPI/documentation/JellyfinAPI/UserPolicy":{"role":"symbol","title":"UserPolicy","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UserPolicy"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UserPolicy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UserPolicy"}],"url":"\/documentation\/jellyfinapi\/userpolicy"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse.json new file mode 100644 index 000000000..9867c67e7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UtcTimeResponse"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/utctimeresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Class UtcTimeResponse."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UtcTimeResponse"}],"title":"UtcTimeResponse","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15UtcTimeResponseV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"UtcTimeResponse"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/init(requestReceptionTime:responseTransmissionTime:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/requestReceptionTime","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/responseTransmissionTime"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/utctimeresponse\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse/responseTransmissionTime":{"role":"symbol","title":"responseTransmissionTime","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"responseTransmissionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the UTC time when response has been sent."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/responseTransmissionTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/utctimeresponse\/responsetransmissiontime"},"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse/init(requestReceptionTime:responseTransmissionTime:)":{"role":"symbol","title":"init(requestReceptionTime:responseTransmissionTime:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"requestReceptionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"responseTransmissionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/init(requestReceptionTime:responseTransmissionTime:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/utctimeresponse\/init(requestreceptiontime:responsetransmissiontime:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse":{"role":"symbol","title":"UtcTimeResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UtcTimeResponse"}],"abstract":[{"type":"text","text":"Class UtcTimeResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UtcTimeResponse"}],"url":"\/documentation\/jellyfinapi\/utctimeresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse/requestReceptionTime":{"role":"symbol","title":"requestReceptionTime","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requestReceptionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the UTC time when request has been received."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/requestReceptionTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/utctimeresponse\/requestreceptiontime"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/init(from:).json new file mode 100644 index 000000000..451ec7931 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/utctimeresponse\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15UtcTimeResponseV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/utctimeresponse\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse":{"role":"symbol","title":"UtcTimeResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UtcTimeResponse"}],"abstract":[{"type":"text","text":"Class UtcTimeResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UtcTimeResponse"}],"url":"\/documentation\/jellyfinapi\/utctimeresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/init(requestreceptiontime:responsetransmissiontime:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/init(requestreceptiontime:responsetransmissiontime:).json new file mode 100644 index 000000000..98d40eba9 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/init(requestreceptiontime:responsetransmissiontime:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"requestReceptionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"responseTransmissionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/utctimeresponse\/init(requestreceptiontime:responsetransmissiontime:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/init(requestReceptionTime:responseTransmissionTime:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"requestReceptionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"responseTransmissionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"title":"init(requestReceptionTime:responseTransmissionTime:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15UtcTimeResponseV016requestReceptionD0020responseTransmissionD0AC10Foundation4DateVSg_AItcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse/init(requestReceptionTime:responseTransmissionTime:)":{"role":"symbol","title":"init(requestReceptionTime:responseTransmissionTime:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"requestReceptionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"responseTransmissionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/init(requestReceptionTime:responseTransmissionTime:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/utctimeresponse\/init(requestreceptiontime:responsetransmissiontime:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse":{"role":"symbol","title":"UtcTimeResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UtcTimeResponse"}],"abstract":[{"type":"text","text":"Class UtcTimeResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UtcTimeResponse"}],"url":"\/documentation\/jellyfinapi\/utctimeresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/requestreceptiontime.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/requestreceptiontime.json new file mode 100644 index 000000000..14d390719 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/requestreceptiontime.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requestReceptionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/utctimeresponse\/requestreceptiontime"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/requestReceptionTime","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the UTC time when request has been received."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requestReceptionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"requestReceptionTime","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UtcTimeResponseV016requestReceptionD010Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse/requestReceptionTime":{"role":"symbol","title":"requestReceptionTime","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requestReceptionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the UTC time when request has been received."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/requestReceptionTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/utctimeresponse\/requestreceptiontime"},"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse":{"role":"symbol","title":"UtcTimeResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UtcTimeResponse"}],"abstract":[{"type":"text","text":"Class UtcTimeResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UtcTimeResponse"}],"url":"\/documentation\/jellyfinapi\/utctimeresponse"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/responsetransmissiontime.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/responsetransmissiontime.json new file mode 100644 index 000000000..639c3b7ae --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/utctimeresponse/responsetransmissiontime.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"responseTransmissionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/utctimeresponse\/responsetransmissiontime"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/responseTransmissionTime","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the UTC time when response has been sent."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"responseTransmissionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"title":"responseTransmissionTime","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15UtcTimeResponseV020responseTransmissionD010Foundation4DateVSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse/responseTransmissionTime":{"role":"symbol","title":"responseTransmissionTime","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"responseTransmissionTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the UTC time when response has been sent."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse\/responseTransmissionTime","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/utctimeresponse\/responsetransmissiontime"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/UtcTimeResponse":{"role":"symbol","title":"UtcTimeResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"UtcTimeResponse"}],"abstract":[{"type":"text","text":"Class UtcTimeResponse."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/UtcTimeResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UtcTimeResponse"}],"url":"\/documentation\/jellyfinapi\/utctimeresponse"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto.json new file mode 100644 index 000000000..d636ec084 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ValidatePathDto"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/validatepathdto"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Validate path object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ValidatePathDto"}],"title":"ValidatePathDto","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI15ValidatePathDtoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"ValidatePathDto"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/init(isFile:path:isValidateWritable:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/isFile","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/isValidateWritable","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/path"]}],"references":{"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto/init(isFile:path:isValidateWritable:)":{"role":"symbol","title":"init(isFile:path:isValidateWritable:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isValidateWritable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/init(isFile:path:isValidateWritable:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/validatepathdto\/init(isfile:path:isvalidatewritable:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/validatepathdto\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto/isFile":{"role":"symbol","title":"isFile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets is path file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/isFile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/validatepathdto\/isfile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/validatepathdto\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto":{"role":"symbol","title":"ValidatePathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ValidatePathDto"}],"abstract":[{"type":"text","text":"Validate path object."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ValidatePathDto"}],"url":"\/documentation\/jellyfinapi\/validatepathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto/isValidateWritable":{"role":"symbol","title":"isValidateWritable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateWritable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether validate if path is writable."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/isValidateWritable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/validatepathdto\/isvalidatewritable"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/init(from:).json new file mode 100644 index 000000000..b5af8ec77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/validatepathdto\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ValidatePathDtoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto":{"role":"symbol","title":"ValidatePathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ValidatePathDto"}],"abstract":[{"type":"text","text":"Validate path object."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ValidatePathDto"}],"url":"\/documentation\/jellyfinapi\/validatepathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/validatepathdto\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/init(isfile:path:isvalidatewritable:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/init(isfile:path:isvalidatewritable:).json new file mode 100644 index 000000000..684099f6d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/init(isfile:path:isvalidatewritable:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isValidateWritable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/validatepathdto\/init(isfile:path:isvalidatewritable:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/init(isFile:path:isValidateWritable:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isValidateWritable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"title":"init(isFile:path:isValidateWritable:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI15ValidatePathDtoV6isFile4path0fC8WritableACSbSg_SSSgAGtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto/init(isFile:path:isValidateWritable:)":{"role":"symbol","title":"init(isFile:path:isValidateWritable:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isValidateWritable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/init(isFile:path:isValidateWritable:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/validatepathdto\/init(isfile:path:isvalidatewritable:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto":{"role":"symbol","title":"ValidatePathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ValidatePathDto"}],"abstract":[{"type":"text","text":"Validate path object."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ValidatePathDto"}],"url":"\/documentation\/jellyfinapi\/validatepathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/isfile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/isfile.json new file mode 100644 index 000000000..52a8bba59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/isfile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/validatepathdto\/isfile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/isFile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets is path file."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isFile","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ValidatePathDtoV6isFileSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto/isFile":{"role":"symbol","title":"isFile","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isFile"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets is path file."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/isFile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/validatepathdto\/isfile"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto":{"role":"symbol","title":"ValidatePathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ValidatePathDto"}],"abstract":[{"type":"text","text":"Validate path object."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ValidatePathDto"}],"url":"\/documentation\/jellyfinapi\/validatepathdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/isvalidatewritable.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/isvalidatewritable.json new file mode 100644 index 000000000..f3313242c --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/isvalidatewritable.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateWritable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/validatepathdto\/isvalidatewritable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/isValidateWritable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a value indicating whether validate if path is writable."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateWritable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isValidateWritable","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ValidatePathDtoV02isC8WritableSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto/isValidateWritable":{"role":"symbol","title":"isValidateWritable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValidateWritable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a value indicating whether validate if path is writable."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/isValidateWritable","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/validatepathdto\/isvalidatewritable"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto":{"role":"symbol","title":"ValidatePathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ValidatePathDto"}],"abstract":[{"type":"text","text":"Validate path object."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ValidatePathDto"}],"url":"\/documentation\/jellyfinapi\/validatepathdto"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/path.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/path.json new file mode 100644 index 000000000..ed2007f21 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/validatepathdto/path.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/validatepathdto\/path"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/path","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the path."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"path","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI15ValidatePathDtoV4pathSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto/path":{"role":"symbol","title":"path","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"path"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the path."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto\/path","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/validatepathdto\/path"},"doc://JellyfinAPI/documentation/JellyfinAPI/ValidatePathDto":{"role":"symbol","title":"ValidatePathDto","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ValidatePathDto"}],"abstract":[{"type":"text","text":"Validate path object."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/ValidatePathDto","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ValidatePathDto"}],"url":"\/documentation\/jellyfinapi\/validatepathdto"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo.json new file mode 100644 index 000000000..002dcd12e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"title":"VersionInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI11VersionInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/init(versionNumber:changelog:checksum:repositoryName:repositoryURL:sourceURL:targetAbi:timestamp:version:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/changelog","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/checksum","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/repositoryName","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/repositoryURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/sourceURL","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/targetAbi","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/timestamp","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/version","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/versionNumber"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/targetAbi":{"role":"symbol","title":"targetAbi","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"targetAbi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ABI that this version was built against."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/targetAbi","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/targetabi"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/repositoryName":{"role":"symbol","title":"repositoryName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the repository name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/repositoryName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/repositoryname"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/versionNumber":{"role":"symbol","title":"versionNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"versionNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the version as a System.Version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/versionNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/versionnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a timestamp of when the binary was built."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/timestamp"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/sourceURL":{"role":"symbol","title":"sourceURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the source URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/sourceURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/sourceurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/init(versionNumber:changelog:checksum:repositoryName:repositoryURL:sourceURL:targetAbi:timestamp:version:)":{"role":"symbol","title":"init(versionNumber:changelog:checksum:repositoryName:repositoryURL:sourceURL:targetAbi:timestamp:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"versionNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repositoryName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"targetAbi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/init(versionNumber:changelog:checksum:repositoryName:repositoryURL:sourceURL:targetAbi:timestamp:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/init(versionnumber:changelog:checksum:repositoryname:repositoryurl:sourceurl:targetabi:timestamp:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/checksum":{"role":"symbol","title":"checksum","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a checksum for the binary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/checksum","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/checksum"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/changelog":{"role":"symbol","title":"changelog","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the changelog for this version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/changelog","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/changelog"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/repositoryURL":{"role":"symbol","title":"repositoryURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the repository url."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/repositoryURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/repositoryurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/version"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/changelog.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/changelog.json new file mode 100644 index 000000000..dd5c336d6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/changelog.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/changelog"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/changelog","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the changelog for this version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"changelog","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11VersionInfoV9changelogSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/changelog":{"role":"symbol","title":"changelog","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the changelog for this version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/changelog","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/changelog"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/checksum.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/checksum.json new file mode 100644 index 000000000..0ccd33bbc --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/checksum.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/checksum"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/checksum","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a checksum for the binary."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"checksum","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11VersionInfoV8checksumSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/checksum":{"role":"symbol","title":"checksum","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a checksum for the binary."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/checksum","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/checksum"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/init(from:).json new file mode 100644 index 000000000..ac3b1b040 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11VersionInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/init(versionnumber:changelog:checksum:repositoryname:repositoryurl:sourceurl:targetabi:timestamp:version:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/init(versionnumber:changelog:checksum:repositoryname:repositoryurl:sourceurl:targetabi:timestamp:version:).json new file mode 100644 index 000000000..1185a3735 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/init(versionnumber:changelog:checksum:repositoryname:repositoryurl:sourceurl:targetabi:timestamp:version:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"versionNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"repositoryName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"targetAbi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/init(versionnumber:changelog:checksum:repositoryname:repositoryurl:sourceurl:targetabi:timestamp:version:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/init(versionNumber:changelog:checksum:repositoryName:repositoryURL:sourceURL:targetAbi:timestamp:version:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"versionNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repositoryName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"targetAbi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(versionNumber:changelog:checksum:repositoryName:repositoryURL:sourceURL:targetAbi:timestamp:version:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI11VersionInfoV13versionNumber9changelog8checksum14repositoryName0I3URL06sourceK09targetAbi9timestamp0E0ACSSSg_A8Mtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/init(versionNumber:changelog:checksum:repositoryName:repositoryURL:sourceURL:targetAbi:timestamp:version:)":{"role":"symbol","title":"init(versionNumber:changelog:checksum:repositoryName:repositoryURL:sourceURL:targetAbi:timestamp:version:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"versionNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"changelog"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"checksum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repositoryName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"targetAbi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/init(versionNumber:changelog:checksum:repositoryName:repositoryURL:sourceURL:targetAbi:timestamp:version:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/init(versionnumber:changelog:checksum:repositoryname:repositoryurl:sourceurl:targetabi:timestamp:version:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/repositoryname.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/repositoryname.json new file mode 100644 index 000000000..9eace2cd3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/repositoryname.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/repositoryname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/repositoryName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the repository name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"repositoryName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11VersionInfoV14repositoryNameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/repositoryName":{"role":"symbol","title":"repositoryName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the repository name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/repositoryName","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/repositoryname"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/repositoryurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/repositoryurl.json new file mode 100644 index 000000000..ccde3ed25 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/repositoryurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/repositoryurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/repositoryURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the repository url."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"repositoryURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11VersionInfoV13repositoryURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/repositoryURL":{"role":"symbol","title":"repositoryURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"repositoryURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the repository url."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/repositoryURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/repositoryurl"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/sourceurl.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/sourceurl.json new file mode 100644 index 000000000..f37fddbee --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/sourceurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/sourceurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/sourceURL","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the source URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"sourceURL","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11VersionInfoV9sourceURLSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/sourceURL":{"role":"symbol","title":"sourceURL","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sourceURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the source URL."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/sourceURL","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/sourceurl"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/targetabi.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/targetabi.json new file mode 100644 index 000000000..582307c4d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/targetabi.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"targetAbi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/targetabi"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/targetAbi","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the ABI that this version was built against."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"targetAbi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"targetAbi","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11VersionInfoV9targetAbiSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/targetAbi":{"role":"symbol","title":"targetAbi","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"targetAbi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the ABI that this version was built against."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/targetAbi","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/targetabi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/timestamp.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/timestamp.json new file mode 100644 index 000000000..c65715a44 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/timestamp.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/timestamp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/timestamp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets a timestamp of when the binary was built."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"timestamp","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11VersionInfoV9timestampSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets a timestamp of when the binary was built."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/timestamp"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/version.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/version.json new file mode 100644 index 000000000..71be0b014 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/version.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/version"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/version","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"version","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11VersionInfoV7versionSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/version","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/version"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/versionnumber.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/versionnumber.json new file mode 100644 index 000000000..fcb5580f2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/versioninfo/versionnumber.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"versionNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/versioninfo\/versionnumber"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/versionNumber","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the version as a System.Version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"versionNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"versionNumber","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI11VersionInfoV13versionNumberSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo/versionNumber":{"role":"symbol","title":"versionNumber","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"versionNumber"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the version as a System.Version."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo\/versionNumber","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/versioninfo\/versionnumber"},"doc://JellyfinAPI/documentation/JellyfinAPI/VersionInfo":{"role":"symbol","title":"VersionInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VersionInfo"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Updates.VersionInfo class."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VersionInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VersionInfo"}],"url":"\/documentation\/jellyfinapi\/versioninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat.json new file mode 100644 index 000000000..1320beb3a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"title":"Video3DFormat","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI13Video3DFormatO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/fullSideBySide","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/fullTopAndBottom","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/halfSideBySide","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/halfTopAndBottom","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/mvc"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/fullSideBySide":{"role":"symbol","title":"Video3DFormat.fullSideBySide","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullSideBySide"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/fullSideBySide","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/fullsidebyside"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/fullTopAndBottom":{"role":"symbol","title":"Video3DFormat.fullTopAndBottom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullTopAndBottom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/fullTopAndBottom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/fulltopandbottom"},"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/halfTopAndBottom":{"role":"symbol","title":"Video3DFormat.halfTopAndBottom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"halfTopAndBottom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/halfTopAndBottom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/halftopandbottom"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/halfSideBySide":{"role":"symbol","title":"Video3DFormat.halfSideBySide","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"halfSideBySide"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/halfSideBySide","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/halfsidebyside"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/mvc":{"role":"symbol","title":"Video3DFormat.mvc","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mvc"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/mvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/mvc"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/init(rawvalue:)"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/!=(_:_:).json new file mode 100644 index 000000000..4fc6c2d48 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI13Video3DFormatO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/encode(to:).json new file mode 100644 index 000000000..0f6ddc663 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI13Video3DFormatO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/equatable-implementations.json new file mode 100644 index 000000000..3f46ef90f --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/fullsidebyside.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/fullsidebyside.json new file mode 100644 index 000000000..475962756 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/fullsidebyside.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullSideBySide"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/fullsidebyside"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/fullSideBySide","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullSideBySide"}],"title":"Video3DFormat.fullSideBySide","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13Video3DFormatO010fullSideByF0yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/fullSideBySide":{"role":"symbol","title":"Video3DFormat.fullSideBySide","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullSideBySide"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/fullSideBySide","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/fullsidebyside"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/fulltopandbottom.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/fulltopandbottom.json new file mode 100644 index 000000000..1948370bb --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/fulltopandbottom.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullTopAndBottom"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/fulltopandbottom"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/fullTopAndBottom","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullTopAndBottom"}],"title":"Video3DFormat.fullTopAndBottom","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13Video3DFormatO16fullTopAndBottomyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/fullTopAndBottom":{"role":"symbol","title":"Video3DFormat.fullTopAndBottom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullTopAndBottom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/fullTopAndBottom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/fulltopandbottom"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/halfsidebyside.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/halfsidebyside.json new file mode 100644 index 000000000..501a56d77 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/halfsidebyside.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"halfSideBySide"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/halfsidebyside"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/halfSideBySide","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"halfSideBySide"}],"title":"Video3DFormat.halfSideBySide","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13Video3DFormatO010halfSideByF0yA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/halfSideBySide":{"role":"symbol","title":"Video3DFormat.halfSideBySide","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"halfSideBySide"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/halfSideBySide","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/halfsidebyside"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/halftopandbottom.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/halftopandbottom.json new file mode 100644 index 000000000..0d2e1814a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/halftopandbottom.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"halfTopAndBottom"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/halftopandbottom"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/halfTopAndBottom","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"halfTopAndBottom"}],"title":"Video3DFormat.halfTopAndBottom","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13Video3DFormatO16halfTopAndBottomyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/halfTopAndBottom":{"role":"symbol","title":"Video3DFormat.halfTopAndBottom","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"halfTopAndBottom"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/halfTopAndBottom","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/halftopandbottom"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/hash(into:).json new file mode 100644 index 000000000..9e0649ea6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI13Video3DFormatO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/hashvalue.json new file mode 100644 index 000000000..59689106e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI13Video3DFormatO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/init(from:).json new file mode 100644 index 000000000..8cd1d547e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI13Video3DFormatO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/init(rawvalue:).json new file mode 100644 index 000000000..3f04b1869 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13Video3DFormatO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/mvc.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/mvc.json new file mode 100644 index 000000000..26788c533 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/mvc.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mvc"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/mvc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/mvc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mvc"}],"title":"Video3DFormat.mvc","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI13Video3DFormatO3mvcyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/mvc":{"role":"symbol","title":"Video3DFormat.mvc","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"mvc"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/mvc","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/mvc"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/rawrepresentable-implementations.json new file mode 100644 index 000000000..649537a2e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/video3dformat/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/video3dformat\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat":{"role":"symbol","title":"Video3DFormat","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Video3DFormat"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Video3DFormat"}],"url":"\/documentation\/jellyfinapi\/video3dformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/Video3DFormat/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/Video3DFormat\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/video3dformat\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype.json new file mode 100644 index 000000000..dc8a7cd15 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/s12CaseIterableP","doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE","doc:\/\/JellyfinAPI\/SQ","doc:\/\/JellyfinAPI\/SH","doc:\/\/JellyfinAPI\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enum VideoType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"title":"VideoType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:11JellyfinAPI9VideoTypeO","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"VideoType"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/bluRay","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/dvd","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/iso","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/videoFile"]},{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/Equatable-Implementations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://JellyfinAPI/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/JellyfinAPI\/SY"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/iso":{"role":"symbol","title":"VideoType.iso","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"iso"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/iso","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/iso"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/bluRay":{"role":"symbol","title":"VideoType.bluRay","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bluRay"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/bluRay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/bluray"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/init(rawvalue:)"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/videoFile":{"role":"symbol","title":"VideoType.videoFile","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/videoFile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/videofile"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/equatable-implementations"},"doc://JellyfinAPI/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/JellyfinAPI\/SH"},"doc://JellyfinAPI/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/JellyfinAPI\/SQ"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/rawrepresentable-implementations"},"doc://JellyfinAPI/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/JellyfinAPI\/s12CaseIterableP"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/dvd":{"role":"symbol","title":"VideoType.dvd","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvd"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/dvd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/dvd"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/!=(_:_:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/!=(_:_:).json new file mode 100644 index 000000000..a180b5507 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/!=(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11JellyfinAPI9VideoTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/Equatable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/equatable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/bluray.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/bluray.json new file mode 100644 index 000000000..96207b0af --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/bluray.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bluRay"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/bluray"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/bluRay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bluRay"}],"title":"VideoType.bluRay","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9VideoTypeO6bluRayyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/bluRay":{"role":"symbol","title":"VideoType.bluRay","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bluRay"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/bluRay","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/bluray"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/dvd.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/dvd.json new file mode 100644 index 000000000..7cf6e0c9a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/dvd.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvd"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/dvd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/dvd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvd"}],"title":"VideoType.dvd","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9VideoTypeO3dvdyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/dvd":{"role":"symbol","title":"VideoType.dvd","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dvd"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/dvd","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/dvd"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/encode(to:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/encode(to:).json new file mode 100644 index 000000000..a5c965d94 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/encode(to:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:11JellyfinAPI9VideoTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/encode(to:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/equatable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/equatable-implementations.json new file mode 100644 index 000000000..d721c9f59 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/equatable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/!=(_:_:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/!=(_:_:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/hash(into:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/hash(into:).json new file mode 100644 index 000000000..bb012ad62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/hash(into:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:11JellyfinAPI9VideoTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/hashvalue.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/hashvalue.json new file mode 100644 index 000000000..ee765ad62 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/hashvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:11JellyfinAPI9VideoTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/rawrepresentable-implementations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/hashvalue"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/init(from:).json new file mode 100644 index 000000000..edf22acda --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:11JellyfinAPI9VideoTypeO","extendedModule":"Swift","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/init(rawvalue:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/init(rawvalue:).json new file mode 100644 index 000000000..9200dbb71 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/init(rawvalue:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI9VideoTypeO8rawValueACSgSS_tcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/init(rawvalue:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/iso.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/iso.json new file mode 100644 index 000000000..c22f85844 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/iso.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"iso"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/iso"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/iso","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"iso"}],"title":"VideoType.iso","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9VideoTypeO3isoyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/iso":{"role":"symbol","title":"VideoType.iso","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"iso"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/iso","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/iso"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/rawrepresentable-implementations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/rawrepresentable-implementations.json new file mode 100644 index 000000000..495f50650 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/rawrepresentable-implementations.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"JellyfinAPI"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/encode(to:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/hash(into:)"],"generated":true}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/hashvalue"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/hash(into:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/encode(to:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/videofile.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/videofile.json new file mode 100644 index 000000000..6ed1502d3 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/videotype/videofile.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFile"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/videotype\/videofile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/videoFile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFile"}],"title":"VideoType.videoFile","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:11JellyfinAPI9VideoTypeO9videoFileyA2CmF","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType":{"role":"symbol","title":"VideoType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoType"}],"abstract":[{"type":"text","text":"Enum VideoType."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoType"}],"url":"\/documentation\/jellyfinapi\/videotype"},"doc://JellyfinAPI/documentation/JellyfinAPI/VideoType/videoFile":{"role":"symbol","title":"VideoType.videoFile","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFile"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VideoType\/videoFile","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/videotype\/videofile"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo.json new file mode 100644 index 000000000..ffc725abd --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"title":"VirtualFolderInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI17VirtualFolderInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/init(collectionType:itemID:libraryOptions:locations:name:primaryImageItemID:refreshProgress:refreshStatus:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/collectionType","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/itemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/libraryOptions","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/locations","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/primaryImageItemID","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/refreshProgress","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/refreshStatus"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/libraryOptions":{"role":"symbol","title":"libraryOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/libraryOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/collectionType":{"role":"symbol","title":"collectionType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionTypeOptions","preciseIdentifier":"s:11JellyfinAPI21CollectionTypeOptionsO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the collection."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/collectionType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/collectiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/refreshStatus":{"role":"symbol","title":"refreshStatus","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/refreshStatus","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/refreshstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/primaryImageItemID":{"role":"symbol","title":"primaryImageItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/primaryImageItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/primaryimageitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/name"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/init(collectionType:itemID:libraryOptions:locations:name:primaryImageItemID:refreshProgress:refreshStatus:)":{"role":"symbol","title":"init(collectionType:itemID:libraryOptions:locations:name:primaryImageItemID:refreshProgress:refreshStatus:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionTypeOptions","preciseIdentifier":"s:11JellyfinAPI21CollectionTypeOptionsO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"refreshProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"refreshStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/init(collectionType:itemID:libraryOptions:locations:name:primaryImageItemID:refreshProgress:refreshStatus:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/init(collectiontype:itemid:libraryoptions:locations:name:primaryimageitemid:refreshprogress:refreshstatus:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/locations":{"role":"symbol","title":"locations","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the locations."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/locations","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/locations"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/refreshProgress":{"role":"symbol","title":"refreshProgress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/refreshProgress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/refreshprogress"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/collectiontype.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/collectiontype.json new file mode 100644 index 000000000..3b7333366 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/collectiontype.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","preciseIdentifier":"s:11JellyfinAPI21CollectionTypeOptionsO","text":"CollectionTypeOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo\/collectiontype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/collectionType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the type of the collection."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionTypeOptions","preciseIdentifier":"s:11JellyfinAPI21CollectionTypeOptionsO"},{"kind":"text","text":"?"}],"title":"collectionType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17VirtualFolderInfoV14collectionTypeAA010CollectionG7OptionsOSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/collectionType":{"role":"symbol","title":"collectionType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionTypeOptions","preciseIdentifier":"s:11JellyfinAPI21CollectionTypeOptionsO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the type of the collection."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/collectionType","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/collectiontype"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/init(collectiontype:itemid:libraryoptions:locations:name:primaryimageitemid:refreshprogress:refreshstatus:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/init(collectiontype:itemid:libraryoptions:locations:name:primaryimageitemid:refreshprogress:refreshstatus:).json new file mode 100644 index 000000000..9d69b424a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/init(collectiontype:itemid:libraryoptions:locations:name:primaryimageitemid:refreshprogress:refreshstatus:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","preciseIdentifier":"s:11JellyfinAPI21CollectionTypeOptionsO","text":"CollectionTypeOptions"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV","text":"LibraryOptions"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"primaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"refreshProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"refreshStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo\/init(collectiontype:itemid:libraryoptions:locations:name:primaryimageitemid:refreshprogress:refreshstatus:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/init(collectionType:itemID:libraryOptions:locations:name:primaryImageItemID:refreshProgress:refreshStatus:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionTypeOptions","preciseIdentifier":"s:11JellyfinAPI21CollectionTypeOptionsO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"refreshProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"refreshStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(collectionType:itemID:libraryOptions:locations:name:primaryImageItemID:refreshProgress:refreshStatus:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17VirtualFolderInfoV14collectionType6itemID14libraryOptions9locations4name016primaryImageItemI015refreshProgress0Q6StatusAcA010CollectiongK0OSg_SSSgAA07LibraryK0VSgSaySSGSgA2OSdSgAOtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/init(collectionType:itemID:libraryOptions:locations:name:primaryImageItemID:refreshProgress:refreshStatus:)":{"role":"symbol","title":"init(collectionType:itemID:libraryOptions:locations:name:primaryImageItemID:refreshProgress:refreshStatus:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"collectionType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CollectionTypeOptions","preciseIdentifier":"s:11JellyfinAPI21CollectionTypeOptionsO"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"primaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"refreshProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"refreshStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/init(collectionType:itemID:libraryOptions:locations:name:primaryImageItemID:refreshProgress:refreshStatus:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/init(collectiontype:itemid:libraryoptions:locations:name:primaryimageitemid:refreshprogress:refreshstatus:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/CollectionTypeOptions":{"role":"symbol","title":"CollectionTypeOptions","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CollectionTypeOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/CollectionTypeOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CollectionTypeOptions"}],"url":"\/documentation\/jellyfinapi\/collectiontypeoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/init(from:).json new file mode 100644 index 000000000..e973eadea --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI17VirtualFolderInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/itemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/itemid.json new file mode 100644 index 000000000..e5ed69c15 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/itemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo\/itemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/itemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"itemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17VirtualFolderInfoV6itemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/itemID":{"role":"symbol","title":"itemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"itemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/itemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/itemid"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/libraryoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/libraryoptions.json new file mode 100644 index 000000000..ec19b6c11 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/libraryoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV","text":"LibraryOptions"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo\/libraryoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/libraryOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?"}],"title":"libraryOptions","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17VirtualFolderInfoV14libraryOptionsAA07LibraryG0VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/LibraryOptions":{"role":"symbol","title":"LibraryOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LibraryOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/LibraryOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LibraryOptions"}],"url":"\/documentation\/jellyfinapi\/libraryoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/libraryOptions":{"role":"symbol","title":"libraryOptions","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"libraryOptions"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LibraryOptions","preciseIdentifier":"s:11JellyfinAPI14LibraryOptionsV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/libraryOptions","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/libraryoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/locations.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/locations.json new file mode 100644 index 000000000..88515b96a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/locations.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo\/locations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/locations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the locations."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"title":"locations","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17VirtualFolderInfoV9locationsSaySSGSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/locations":{"role":"symbol","title":"locations","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Gets or sets the locations."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/locations","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/locations"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/name.json new file mode 100644 index 000000000..a894cd723 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17VirtualFolderInfoV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/primaryimageitemid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/primaryimageitemid.json new file mode 100644 index 000000000..7f43ce747 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/primaryimageitemid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo\/primaryimageitemid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/primaryImageItemID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the primary image item identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"primaryImageItemID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17VirtualFolderInfoV18primaryImageItemIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/primaryImageItemID":{"role":"symbol","title":"primaryImageItemID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"primaryImageItemID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the primary image item identifier."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/primaryImageItemID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/primaryimageitemid"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/refreshprogress.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/refreshprogress.json new file mode 100644 index 000000000..3ec7f5f68 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/refreshprogress.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo\/refreshprogress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/refreshProgress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"title":"refreshProgress","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17VirtualFolderInfoV15refreshProgressSdSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/refreshProgress":{"role":"symbol","title":"refreshProgress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshProgress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/refreshProgress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/refreshprogress"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/refreshstatus.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/refreshstatus.json new file mode 100644 index 000000000..517ded1a0 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/virtualfolderinfo/refreshstatus.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/virtualfolderinfo\/refreshstatus"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/refreshStatus","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"refreshStatus","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI17VirtualFolderInfoV13refreshStatusSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo/refreshStatus":{"role":"symbol","title":"refreshStatus","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo\/refreshStatus","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/virtualfolderinfo\/refreshstatus"},"doc://JellyfinAPI/documentation/JellyfinAPI/VirtualFolderInfo":{"role":"symbol","title":"VirtualFolderInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VirtualFolderInfo"}],"abstract":[{"type":"text","text":"Used to hold information about a user’s list of configured virtual folders."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/VirtualFolderInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VirtualFolderInfo"}],"url":"\/documentation\/jellyfinapi\/virtualfolderinfo"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo.json new file mode 100644 index 000000000..026f9ee55 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"WakeOnLanInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/wakeonlaninfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Provides the MAC address and port for wake-on-LAN functionality."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"WakeOnLanInfo"}],"title":"WakeOnLanInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI13WakeOnLanInfoV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"WakeOnLanInfo"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/init(macAddress:port:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/macAddress","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/port"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo/init(macAddress:port:)":{"role":"symbol","title":"init(macAddress:port:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"macAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/init(macAddress:port:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/wakeonlaninfo\/init(macaddress:port:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo":{"role":"symbol","title":"WakeOnLanInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"WakeOnLanInfo"}],"abstract":[{"type":"text","text":"Provides the MAC address and port for wake-on-LAN functionality."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"WakeOnLanInfo"}],"url":"\/documentation\/jellyfinapi\/wakeonlaninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/wakeonlaninfo\/init(from:)"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo/port":{"role":"symbol","title":"port","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the wake-on-LAN port."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/port","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/wakeonlaninfo\/port"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo/macAddress":{"role":"symbol","title":"macAddress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"macAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the MAC address of the device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/macAddress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/wakeonlaninfo\/macaddress"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/init(from:).json new file mode 100644 index 000000000..536966332 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/wakeonlaninfo\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13WakeOnLanInfoV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo":{"role":"symbol","title":"WakeOnLanInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"WakeOnLanInfo"}],"abstract":[{"type":"text","text":"Provides the MAC address and port for wake-on-LAN functionality."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"WakeOnLanInfo"}],"url":"\/documentation\/jellyfinapi\/wakeonlaninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/wakeonlaninfo\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/init(macaddress:port:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/init(macaddress:port:).json new file mode 100644 index 000000000..243a094ac --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/init(macaddress:port:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"macAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/wakeonlaninfo\/init(macaddress:port:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/init(macAddress:port:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"macAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"title":"init(macAddress:port:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI13WakeOnLanInfoV10macAddress4portACSSSg_s5Int32VSgtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo/init(macAddress:port:)":{"role":"symbol","title":"init(macAddress:port:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"macAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/init(macAddress:port:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/wakeonlaninfo\/init(macaddress:port:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo":{"role":"symbol","title":"WakeOnLanInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"WakeOnLanInfo"}],"abstract":[{"type":"text","text":"Provides the MAC address and port for wake-on-LAN functionality."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"WakeOnLanInfo"}],"url":"\/documentation\/jellyfinapi\/wakeonlaninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/macaddress.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/macaddress.json new file mode 100644 index 000000000..3b325c157 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/macaddress.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"macAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/wakeonlaninfo\/macaddress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/macAddress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets the MAC address of the device."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"macAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"macAddress","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13WakeOnLanInfoV10macAddressSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo":{"role":"symbol","title":"WakeOnLanInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"WakeOnLanInfo"}],"abstract":[{"type":"text","text":"Provides the MAC address and port for wake-on-LAN functionality."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"WakeOnLanInfo"}],"url":"\/documentation\/jellyfinapi\/wakeonlaninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo/macAddress":{"role":"symbol","title":"macAddress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"macAddress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets the MAC address of the device."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/macAddress","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/wakeonlaninfo\/macaddress"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/port.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/port.json new file mode 100644 index 000000000..749f906cf --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/wakeonlaninfo/port.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/wakeonlaninfo\/port"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/port","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the wake-on-LAN port."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"title":"port","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI13WakeOnLanInfoV4ports5Int32VSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo":{"role":"symbol","title":"WakeOnLanInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"WakeOnLanInfo"}],"abstract":[{"type":"text","text":"Provides the MAC address and port for wake-on-LAN functionality."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"WakeOnLanInfo"}],"url":"\/documentation\/jellyfinapi\/wakeonlaninfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/WakeOnLanInfo/port":{"role":"symbol","title":"port","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the wake-on-LAN port."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/WakeOnLanInfo\/port","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/wakeonlaninfo\/port"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions.json new file mode 100644 index 000000000..5092cc0d2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xbmcmetadataoptions"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"title":"XbmcMetadataOptions","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI19XbmcMetadataOptionsV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"XbmcMetadataOptions"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/init(enableExtraThumbsDuplication:enablePathSubstitution:releaseDateFormat:isSaveImagePathsInNfo:userID:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/enableExtraThumbsDuplication","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/enablePathSubstitution","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/isSaveImagePathsInNfo","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/releaseDateFormat","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/userID"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/enableExtraThumbsDuplication":{"role":"symbol","title":"enableExtraThumbsDuplication","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableExtraThumbsDuplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/enableExtraThumbsDuplication","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/enableextrathumbsduplication"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/init(enableExtraThumbsDuplication:enablePathSubstitution:releaseDateFormat:isSaveImagePathsInNfo:userID:)":{"role":"symbol","title":"init(enableExtraThumbsDuplication:enablePathSubstitution:releaseDateFormat:isSaveImagePathsInNfo:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableExtraThumbsDuplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePathSubstitution"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"releaseDateFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveImagePathsInNfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/init(enableExtraThumbsDuplication:enablePathSubstitution:releaseDateFormat:isSaveImagePathsInNfo:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/init(enableextrathumbsduplication:enablepathsubstitution:releasedateformat:issaveimagepathsinnfo:userid:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/isSaveImagePathsInNfo":{"role":"symbol","title":"isSaveImagePathsInNfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveImagePathsInNfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/isSaveImagePathsInNfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/issaveimagepathsinnfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/releaseDateFormat":{"role":"symbol","title":"releaseDateFormat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"releaseDateFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/releaseDateFormat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/releasedateformat"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions":{"role":"symbol","title":"XbmcMetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XbmcMetadataOptions"}],"url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/enablePathSubstitution":{"role":"symbol","title":"enablePathSubstitution","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePathSubstitution"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/enablePathSubstitution","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/enablepathsubstitution"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/enableextrathumbsduplication.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/enableextrathumbsduplication.json new file mode 100644 index 000000000..09b527f18 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/enableextrathumbsduplication.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableExtraThumbsDuplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xbmcmetadataoptions\/enableextrathumbsduplication"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/enableExtraThumbsDuplication","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableExtraThumbsDuplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enableExtraThumbsDuplication","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19XbmcMetadataOptionsV28enableExtraThumbsDuplicationSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/enableExtraThumbsDuplication":{"role":"symbol","title":"enableExtraThumbsDuplication","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enableExtraThumbsDuplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/enableExtraThumbsDuplication","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/enableextrathumbsduplication"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions":{"role":"symbol","title":"XbmcMetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XbmcMetadataOptions"}],"url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/enablepathsubstitution.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/enablepathsubstitution.json new file mode 100644 index 000000000..f8c1215f6 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/enablepathsubstitution.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePathSubstitution"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xbmcmetadataoptions\/enablepathsubstitution"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/enablePathSubstitution","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePathSubstitution"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"enablePathSubstitution","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19XbmcMetadataOptionsV22enablePathSubstitutionSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions":{"role":"symbol","title":"XbmcMetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XbmcMetadataOptions"}],"url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/enablePathSubstitution":{"role":"symbol","title":"enablePathSubstitution","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"enablePathSubstitution"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/enablePathSubstitution","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/enablepathsubstitution"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/init(enableextrathumbsduplication:enablepathsubstitution:releasedateformat:issaveimagepathsinnfo:userid:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/init(enableextrathumbsduplication:enablepathsubstitution:releasedateformat:issaveimagepathsinnfo:userid:).json new file mode 100644 index 000000000..52810da8e --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/init(enableextrathumbsduplication:enablepathsubstitution:releasedateformat:issaveimagepathsinnfo:userid:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableExtraThumbsDuplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"enablePathSubstitution"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"releaseDateFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isSaveImagePathsInNfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xbmcmetadataoptions\/init(enableextrathumbsduplication:enablepathsubstitution:releasedateformat:issaveimagepathsinnfo:userid:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/init(enableExtraThumbsDuplication:enablePathSubstitution:releaseDateFormat:isSaveImagePathsInNfo:userID:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableExtraThumbsDuplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePathSubstitution"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"releaseDateFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveImagePathsInNfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(enableExtraThumbsDuplication:enablePathSubstitution:releaseDateFormat:isSaveImagePathsInNfo:userID:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19XbmcMetadataOptionsV28enableExtraThumbsDuplication0F16PathSubstitution17releaseDateFormat21isSaveImagePathsInNfo6userIDACSbSg_AISSSgAiJtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions":{"role":"symbol","title":"XbmcMetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XbmcMetadataOptions"}],"url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/init(enableExtraThumbsDuplication:enablePathSubstitution:releaseDateFormat:isSaveImagePathsInNfo:userID:)":{"role":"symbol","title":"init(enableExtraThumbsDuplication:enablePathSubstitution:releaseDateFormat:isSaveImagePathsInNfo:userID:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"enableExtraThumbsDuplication"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"enablePathSubstitution"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"releaseDateFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isSaveImagePathsInNfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/init(enableExtraThumbsDuplication:enablePathSubstitution:releaseDateFormat:isSaveImagePathsInNfo:userID:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/init(enableextrathumbsduplication:enablepathsubstitution:releasedateformat:issaveimagepathsinnfo:userid:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/init(from:).json new file mode 100644 index 000000000..16b02f129 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xbmcmetadataoptions\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI19XbmcMetadataOptionsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions":{"role":"symbol","title":"XbmcMetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XbmcMetadataOptions"}],"url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/issaveimagepathsinnfo.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/issaveimagepathsinnfo.json new file mode 100644 index 000000000..b6ef13e10 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/issaveimagepathsinnfo.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveImagePathsInNfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xbmcmetadataoptions\/issaveimagepathsinnfo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/isSaveImagePathsInNfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveImagePathsInNfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"isSaveImagePathsInNfo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19XbmcMetadataOptionsV21isSaveImagePathsInNfoSbSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/isSaveImagePathsInNfo":{"role":"symbol","title":"isSaveImagePathsInNfo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSaveImagePathsInNfo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/isSaveImagePathsInNfo","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/issaveimagepathsinnfo"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions":{"role":"symbol","title":"XbmcMetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XbmcMetadataOptions"}],"url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/releasedateformat.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/releasedateformat.json new file mode 100644 index 000000000..09aa6718a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/releasedateformat.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"releaseDateFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xbmcmetadataoptions\/releasedateformat"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/releaseDateFormat","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"releaseDateFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"releaseDateFormat","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19XbmcMetadataOptionsV17releaseDateFormatSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/releaseDateFormat":{"role":"symbol","title":"releaseDateFormat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"releaseDateFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/releaseDateFormat","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/releasedateformat"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions":{"role":"symbol","title":"XbmcMetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XbmcMetadataOptions"}],"url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/userid.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/userid.json new file mode 100644 index 000000000..18731641a --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xbmcmetadataoptions/userid.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xbmcmetadataoptions\/userid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/userID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"userID","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI19XbmcMetadataOptionsV6userIDSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions/userID":{"role":"symbol","title":"userID","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"userID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions\/userID","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions\/userid"},"doc://JellyfinAPI/documentation/JellyfinAPI/XbmcMetadataOptions":{"role":"symbol","title":"XbmcMetadataOptions","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XbmcMetadataOptions"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XbmcMetadataOptions","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XbmcMetadataOptions"}],"url":"\/documentation\/jellyfinapi\/xbmcmetadataoptions"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute.json new file mode 100644 index 000000000..700d04cb7 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XmlAttribute"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xmlattribute"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/JellyfinAPI\/Se","doc:\/\/JellyfinAPI\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Dlna.XmlAttribute."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XmlAttribute"}],"title":"XmlAttribute","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:11JellyfinAPI12XmlAttributeV","modules":[{"name":"JellyfinAPI"}],"navigatorTitle":[{"kind":"identifier","text":"XmlAttribute"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/init(from:)","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/init(name:value:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/name","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/value"]}],"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the attribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xmlattribute\/name"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute/init(name:value:)":{"role":"symbol","title":"init(name:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/init(name:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xmlattribute\/init(name:value:)"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute":{"role":"symbol","title":"XmlAttribute","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XmlAttribute"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Dlna.XmlAttribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XmlAttribute"}],"url":"\/documentation\/jellyfinapi\/xmlattribute"},"doc://JellyfinAPI/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/JellyfinAPI\/SE"},"doc://JellyfinAPI/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/JellyfinAPI\/Se"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the value of the attribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xmlattribute\/value"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xmlattribute\/init(from:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/init(from:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/init(from:).json new file mode 100644 index 000000000..aca7af32d --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/init(from:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xmlattribute\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12XmlAttributeV4fromACs7Decoder_p_tKcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute":{"role":"symbol","title":"XmlAttribute","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XmlAttribute"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Dlna.XmlAttribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XmlAttribute"}],"url":"\/documentation\/jellyfinapi\/xmlattribute"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xmlattribute\/init(from:)"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/init(name:value:).json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/init(name:value:).json new file mode 100644 index 000000000..4a35ae6e2 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/init(name:value:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xmlattribute\/init(name:value:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/init(name:value:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"init(name:value:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:11JellyfinAPI12XmlAttributeV4name5valueACSSSg_AFtcfc","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute":{"role":"symbol","title":"XmlAttribute","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XmlAttribute"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Dlna.XmlAttribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XmlAttribute"}],"url":"\/documentation\/jellyfinapi\/xmlattribute"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute/init(name:value:)":{"role":"symbol","title":"init(name:value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/init(name:value:)","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xmlattribute\/init(name:value:)"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/name.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/name.json new file mode 100644 index 000000000..6b733e318 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/name.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xmlattribute\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the name of the attribute."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12XmlAttributeV4nameSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute":{"role":"symbol","title":"XmlAttribute","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XmlAttribute"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Dlna.XmlAttribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XmlAttribute"}],"url":"\/documentation\/jellyfinapi\/xmlattribute"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the name of the attribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/name","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xmlattribute\/name"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/value.json b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/value.json new file mode 100644 index 000000000..4d5abab38 --- /dev/null +++ b/JellyfinAPI.doccarchive/data/documentation/jellyfinapi/xmlattribute/value.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/jellyfinapi\/xmlattribute\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Gets or sets the value of the attribute."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:11JellyfinAPI12XmlAttributeV5valueSSSgvp","modules":[{"name":"JellyfinAPI"}]},"hierarchy":{"paths":[["doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute"]]},"references":{"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute":{"role":"symbol","title":"XmlAttribute","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"XmlAttribute"}],"abstract":[{"type":"text","text":"Defines the MediaBrowser.Model.Dlna.XmlAttribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"XmlAttribute"}],"url":"\/documentation\/jellyfinapi\/xmlattribute"},"doc://JellyfinAPI/documentation/JellyfinAPI/XmlAttribute/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Gets or sets the value of the attribute."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/XmlAttribute\/value","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi\/xmlattribute\/value"},"doc://JellyfinAPI/documentation/JellyfinAPI":{"role":"collection","title":"JellyfinAPI","abstract":[],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI","kind":"symbol","type":"topic","url":"\/documentation\/jellyfinapi"}}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/favicon.ico b/JellyfinAPI.doccarchive/favicon.ico new file mode 100644 index 000000000..5231da6dc Binary files /dev/null and b/JellyfinAPI.doccarchive/favicon.ico differ diff --git a/JellyfinAPI.doccarchive/favicon.svg b/JellyfinAPI.doccarchive/favicon.svg new file mode 100644 index 000000000..c54c53fbf --- /dev/null +++ b/JellyfinAPI.doccarchive/favicon.svg @@ -0,0 +1,11 @@ + + + \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/img/added-icon.d6f7e47d.svg b/JellyfinAPI.doccarchive/img/added-icon.d6f7e47d.svg new file mode 100644 index 000000000..6bb6d89a8 --- /dev/null +++ b/JellyfinAPI.doccarchive/img/added-icon.d6f7e47d.svg @@ -0,0 +1,11 @@ + + + \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/img/deprecated-icon.015b4f17.svg b/JellyfinAPI.doccarchive/img/deprecated-icon.015b4f17.svg new file mode 100644 index 000000000..a0f80086b --- /dev/null +++ b/JellyfinAPI.doccarchive/img/deprecated-icon.015b4f17.svg @@ -0,0 +1,11 @@ + + + \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/img/modified-icon.f496e73d.svg b/JellyfinAPI.doccarchive/img/modified-icon.f496e73d.svg new file mode 100644 index 000000000..3e0bd6f0a --- /dev/null +++ b/JellyfinAPI.doccarchive/img/modified-icon.f496e73d.svg @@ -0,0 +1,11 @@ + + + \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/index.html b/JellyfinAPI.doccarchive/index.html new file mode 100644 index 000000000..bc8f6e294 --- /dev/null +++ b/JellyfinAPI.doccarchive/index.html @@ -0,0 +1,11 @@ + + +Documentation
\ No newline at end of file diff --git a/JellyfinAPI.doccarchive/index/availability.index b/JellyfinAPI.doccarchive/index/availability.index new file mode 100644 index 000000000..4db8c44e5 Binary files /dev/null and b/JellyfinAPI.doccarchive/index/availability.index differ diff --git a/JellyfinAPI.doccarchive/index/data.mdb b/JellyfinAPI.doccarchive/index/data.mdb new file mode 100755 index 000000000..807db7db5 Binary files /dev/null and b/JellyfinAPI.doccarchive/index/data.mdb differ diff --git a/JellyfinAPI.doccarchive/index/navigator.index b/JellyfinAPI.doccarchive/index/navigator.index new file mode 100644 index 000000000..a97d1fc75 Binary files /dev/null and b/JellyfinAPI.doccarchive/index/navigator.index differ diff --git a/JellyfinAPI.doccarchive/js/chunk-2d0d3105.cd72cc8e.js b/JellyfinAPI.doccarchive/js/chunk-2d0d3105.cd72cc8e.js new file mode 100644 index 000000000..74345f0cb --- /dev/null +++ b/JellyfinAPI.doccarchive/js/chunk-2d0d3105.cd72cc8e.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0d3105"],{"5abe":function(t,e){(function(){"use strict";if("object"===typeof window)if("IntersectionObserver"in window&&"IntersectionObserverEntry"in window&&"intersectionRatio"in window.IntersectionObserverEntry.prototype)"isIntersecting"in window.IntersectionObserverEntry.prototype||Object.defineProperty(window.IntersectionObserverEntry.prototype,"isIntersecting",{get:function(){return this.intersectionRatio>0}});else{var t=function(t){var e=t,n=i(e);while(n)e=n.ownerDocument,n=i(e);return e}(window.document),e=[],n=null,o=null;s.prototype.THROTTLE_TIMEOUT=100,s.prototype.POLL_INTERVAL=null,s.prototype.USE_MUTATION_OBSERVER=!0,s._setupCrossOriginUpdater=function(){return n||(n=function(t,n){o=t&&n?g(t,n):p(),e.forEach((function(t){t._checkForIntersections()}))}),n},s._resetCrossOriginUpdater=function(){n=null,o=null},s.prototype.observe=function(t){var e=this._observationTargets.some((function(e){return e.element==t}));if(!e){if(!t||1!=t.nodeType)throw new Error("target must be an Element");this._registerInstance(),this._observationTargets.push({element:t,entry:null}),this._monitorIntersections(t.ownerDocument),this._checkForIntersections()}},s.prototype.unobserve=function(t){this._observationTargets=this._observationTargets.filter((function(e){return e.element!=t})),this._unmonitorIntersections(t.ownerDocument),0==this._observationTargets.length&&this._unregisterInstance()},s.prototype.disconnect=function(){this._observationTargets=[],this._unmonitorAllIntersections(),this._unregisterInstance()},s.prototype.takeRecords=function(){var t=this._queuedEntries.slice();return this._queuedEntries=[],t},s.prototype._initThresholds=function(t){var e=t||[0];return Array.isArray(e)||(e=[e]),e.sort().filter((function(t,e,n){if("number"!=typeof t||isNaN(t)||t<0||t>1)throw new Error("threshold must be a number between 0 and 1 inclusively");return t!==n[e-1]}))},s.prototype._parseRootMargin=function(t){var e=t||"0px",n=e.split(/\s+/).map((function(t){var e=/^(-?\d*\.?\d+)(px|%)$/.exec(t);if(!e)throw new Error("rootMargin must be specified in pixels or percent");return{value:parseFloat(e[1]),unit:e[2]}}));return n[1]=n[1]||n[0],n[2]=n[2]||n[0],n[3]=n[3]||n[1],n},s.prototype._monitorIntersections=function(e){var n=e.defaultView;if(n&&-1==this._monitoringDocuments.indexOf(e)){var o=this._checkForIntersections,r=null,s=null;this.POLL_INTERVAL?r=n.setInterval(o,this.POLL_INTERVAL):(c(n,"resize",o,!0),c(e,"scroll",o,!0),this.USE_MUTATION_OBSERVER&&"MutationObserver"in n&&(s=new n.MutationObserver(o),s.observe(e,{attributes:!0,childList:!0,characterData:!0,subtree:!0}))),this._monitoringDocuments.push(e),this._monitoringUnsubscribes.push((function(){var t=e.defaultView;t&&(r&&t.clearInterval(r),a(t,"resize",o,!0)),a(e,"scroll",o,!0),s&&s.disconnect()}));var h=this.root&&(this.root.ownerDocument||this.root)||t;if(e!=h){var u=i(e);u&&this._monitorIntersections(u.ownerDocument)}}},s.prototype._unmonitorIntersections=function(e){var n=this._monitoringDocuments.indexOf(e);if(-1!=n){var o=this.root&&(this.root.ownerDocument||this.root)||t,r=this._observationTargets.some((function(t){var n=t.element.ownerDocument;if(n==e)return!0;while(n&&n!=o){var r=i(n);if(n=r&&r.ownerDocument,n==e)return!0}return!1}));if(!r){var s=this._monitoringUnsubscribes[n];if(this._monitoringDocuments.splice(n,1),this._monitoringUnsubscribes.splice(n,1),s(),e!=o){var h=i(e);h&&this._unmonitorIntersections(h.ownerDocument)}}}},s.prototype._unmonitorAllIntersections=function(){var t=this._monitoringUnsubscribes.slice(0);this._monitoringDocuments.length=0,this._monitoringUnsubscribes.length=0;for(var e=0;e=0&&h>=0&&{top:n,bottom:o,left:i,right:r,width:s,height:h}||null}function f(t){var e;try{e=t.getBoundingClientRect()}catch(n){}return e?(e.width&&e.height||(e={top:e.top,right:e.right,bottom:e.bottom,left:e.left,width:e.right-e.left,height:e.bottom-e.top}),e):p()}function p(){return{top:0,bottom:0,left:0,right:0,width:0,height:0}}function d(t){return!t||"x"in t?t:{top:t.top,y:t.top,bottom:t.bottom,left:t.left,x:t.left,right:t.right,width:t.width,height:t.height}}function g(t,e){var n=e.top-t.top,o=e.left-t.left;return{top:n,left:o,height:e.height,width:e.width,bottom:n+e.height,right:o+e.width}}function m(t,e){var n=e;while(n){if(n==t)return!0;n=v(n)}return!1}function v(e){var n=e.parentNode;return 9==e.nodeType&&e!=t?i(e):(n&&n.assignedSlot&&(n=n.assignedSlot.parentNode),n&&11==n.nodeType&&n.host?n.host:n)}function w(t){return t&&9===t.nodeType}})()}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/chunk-vendors.00bf82af.js b/JellyfinAPI.doccarchive/js/chunk-vendors.00bf82af.js new file mode 100644 index 000000000..04c05a6c4 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/chunk-vendors.00bf82af.js @@ -0,0 +1,21 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-vendors"],{2877:function(t,e,n){"use strict";function r(t,e,n,r,o,i,a,s){var c,u="function"===typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i),a?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=c):o&&(c=s?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),c)if(u.functional){u._injectStyles=c;var f=u.render;u.render=function(t,e){return c.call(e),f(t,e)}}else{var l=u.beforeCreate;u.beforeCreate=l?[].concat(l,c):[c]}return{exports:t,options:u}}n.d(e,"a",(function(){return r}))},"2b0e":function(t,e,n){"use strict";n.r(e),function(t){ +/*! + * Vue.js v2.6.14 + * (c) 2014-2021 Evan You + * Released under the MIT License. + */ +var n=Object.freeze({});function r(t){return void 0===t||null===t}function o(t){return void 0!==t&&null!==t}function i(t){return!0===t}function a(t){return!1===t}function s(t){return"string"===typeof t||"number"===typeof t||"symbol"===typeof t||"boolean"===typeof t}function c(t){return null!==t&&"object"===typeof t}var u=Object.prototype.toString;function f(t){return"[object Object]"===u.call(t)}function l(t){return"[object RegExp]"===u.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return o(t)&&"function"===typeof t.then&&"function"===typeof t.catch}function h(t){return null==t?"":Array.isArray(t)||f(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function v(t){var e=parseFloat(t);return isNaN(e)?t:e}function y(t,e){for(var n=Object.create(null),r=t.split(","),o=0;o-1)return t.splice(n,1)}}var _=Object.prototype.hasOwnProperty;function b(t,e){return _.call(t,e)}function w(t){var e=Object.create(null);return function(n){var r=e[n];return r||(e[n]=t(n))}}var C=/-(\w)/g,x=w((function(t){return t.replace(C,(function(t,e){return e?e.toUpperCase():""}))})),$=w((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),A=/\B([A-Z])/g,k=w((function(t){return t.replace(A,"-$1").toLowerCase()}));function O(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function S(t,e){return t.bind(e)}var E=Function.prototype.bind?S:O;function j(t,e){e=e||0;var n=t.length-e,r=new Array(n);while(n--)r[n]=t[n+e];return r}function T(t,e){for(var n in e)t[n]=e[n];return t}function R(t){for(var e={},n=0;n0,nt=Z&&Z.indexOf("edge/")>0,rt=(Z&&Z.indexOf("android"),Z&&/iphone|ipad|ipod|ios/.test(Z)||"ios"===Y),ot=(Z&&/chrome\/\d+/.test(Z),Z&&/phantomjs/.test(Z),Z&&Z.match(/firefox\/(\d+)/)),it={}.watch,at=!1;if(G)try{var st={};Object.defineProperty(st,"passive",{get:function(){at=!0}}),window.addEventListener("test-passive",null,st)}catch($a){}var ct=function(){return void 0===X&&(X=!G&&!Q&&"undefined"!==typeof t&&(t["process"]&&"server"===t["process"].env.VUE_ENV)),X},ut=G&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ft(t){return"function"===typeof t&&/native code/.test(t.toString())}var lt,pt="undefined"!==typeof Symbol&&ft(Symbol)&&"undefined"!==typeof Reflect&&ft(Reflect.ownKeys);lt="undefined"!==typeof Set&&ft(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var dt=P,ht=0,vt=function(){this.id=ht++,this.subs=[]};vt.prototype.addSub=function(t){this.subs.push(t)},vt.prototype.removeSub=function(t){g(this.subs,t)},vt.prototype.depend=function(){vt.target&&vt.target.addDep(this)},vt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(i&&!b(o,"default"))a=!1;else if(""===a||a===k(t)){var c=ee(String,o.type);(c<0||s0&&(a=Se(a,(e||"")+"_"+n),Oe(a[0])&&Oe(u)&&(f[c]=Ct(u.text+a[0].text),a.shift()),f.push.apply(f,a)):s(a)?Oe(u)?f[c]=Ct(u.text+a):""!==a&&f.push(Ct(a)):Oe(a)&&Oe(u)?f[c]=Ct(u.text+a.text):(i(t._isVList)&&o(a.tag)&&r(a.key)&&o(e)&&(a.key="__vlist"+e+"_"+n+"__"),f.push(a)));return f}function Ee(t){var e=t.$options.provide;e&&(t._provided="function"===typeof e?e.call(t):e)}function je(t){var e=Te(t.$options.inject,t);e&&(Et(!1),Object.keys(e).forEach((function(n){It(t,n,e[n])})),Et(!0))}function Te(t,e){if(t){for(var n=Object.create(null),r=pt?Reflect.ownKeys(t):Object.keys(t),o=0;o0,a=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==n&&s===r.$key&&!i&&!r.$hasNormal)return r;for(var c in o={},t)t[c]&&"$"!==c[0]&&(o[c]=Ne(e,c,t[c]))}else o={};for(var u in e)u in o||(o[u]=De(e,u));return t&&Object.isExtensible(t)&&(t._normalized=o),z(o,"$stable",a),z(o,"$key",s),z(o,"$hasNormal",i),o}function Ne(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});t=t&&"object"===typeof t&&!Array.isArray(t)?[t]:ke(t);var e=t&&t[0];return t&&(!e||1===t.length&&e.isComment&&!Ie(e))?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function De(t,e){return function(){return t[e]}}function Me(t,e){var n,r,i,a,s;if(Array.isArray(t)||"string"===typeof t)for(n=new Array(t.length),r=0,i=t.length;r1?j(n):n;for(var r=j(arguments,1),o='event handler for "'+t+'"',i=0,a=n.length;idocument.createEvent("Event").timeStamp&&(Jn=function(){return Gn.now()})}function Qn(){var t,e;for(Xn=Jn(),zn=!0,Vn.sort((function(t,e){return t.id-e.id})),Wn=0;WnWn&&Vn[n].id>t.id)n--;Vn.splice(n+1,0,t)}else Vn.push(t);qn||(qn=!0,ve(Qn))}}var nr=0,rr=function(t,e,n,r,o){this.vm=t,o&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++nr,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new lt,this.newDepIds=new lt,this.expression="","function"===typeof e?this.getter=e:(this.getter=K(e),this.getter||(this.getter=P)),this.value=this.lazy?void 0:this.get()};rr.prototype.get=function(){var t;mt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch($a){if(!this.user)throw $a;ne($a,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&me(t),gt(),this.cleanupDeps()}return t},rr.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},rr.prototype.cleanupDeps=function(){var t=this.deps.length;while(t--){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},rr.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():er(this)},rr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user){var n='callback for watcher "'+this.expression+'"';re(this.cb,this.vm,[t,e],this.vm,n)}else this.cb.call(this.vm,t,e)}}},rr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},rr.prototype.depend=function(){var t=this.deps.length;while(t--)this.deps[t].depend()},rr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);var t=this.deps.length;while(t--)this.deps[t].removeSub(this);this.active=!1}};var or={enumerable:!0,configurable:!0,get:P,set:P};function ir(t,e,n){or.get=function(){return this[e][n]},or.set=function(t){this[e][n]=t},Object.defineProperty(t,n,or)}function ar(t){t._watchers=[];var e=t.$options;e.props&&sr(t,e.props),e.methods&&vr(t,e.methods),e.data?cr(t):Pt(t._data={},!0),e.computed&&lr(t,e.computed),e.watch&&e.watch!==it&&yr(t,e.watch)}function sr(t,e){var n=t.$options.propsData||{},r=t._props={},o=t.$options._propKeys=[],i=!t.$parent;i||Et(!1);var a=function(i){o.push(i);var a=Gt(i,e,n,t);It(r,i,a),i in t||ir(t,"_props",i)};for(var s in e)a(s);Et(!0)}function cr(t){var e=t.$options.data;e=t._data="function"===typeof e?ur(e,t):e||{},f(e)||(e={});var n=Object.keys(e),r=t.$options.props,o=(t.$options.methods,n.length);while(o--){var i=n[o];0,r&&b(r,i)||q(i)||ir(t,"_data",i)}Pt(e,!0)}function ur(t,e){mt();try{return t.call(e,e)}catch($a){return ne($a,e,"data()"),{}}finally{gt()}}var fr={lazy:!0};function lr(t,e){var n=t._computedWatchers=Object.create(null),r=ct();for(var o in e){var i=e[o],a="function"===typeof i?i:i.get;0,r||(n[o]=new rr(t,a||P,P,fr)),o in t||pr(t,o,i)}}function pr(t,e,n){var r=!ct();"function"===typeof n?(or.get=r?dr(e):hr(n),or.set=P):(or.get=n.get?r&&!1!==n.cache?dr(e):hr(n.get):P,or.set=n.set||P),Object.defineProperty(t,e,or)}function dr(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),vt.target&&e.depend(),e.value}}function hr(t){return function(){return t.call(this,this)}}function vr(t,e){t.$options.props;for(var n in e)t[n]="function"!==typeof e[n]?P:E(e[n],t)}function yr(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var o=0;o-1)return this;var n=j(arguments,1);return n.unshift(this),"function"===typeof t.install?t.install.apply(t,n):"function"===typeof t&&t.apply(null,n),e.push(t),this}}function kr(t){t.mixin=function(t){return this.options=Xt(this.options,t),this}}function Or(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,o=t._Ctor||(t._Ctor={});if(o[r])return o[r];var i=t.name||n.options.name;var a=function(t){this._init(t)};return a.prototype=Object.create(n.prototype),a.prototype.constructor=a,a.cid=e++,a.options=Xt(n.options,t),a["super"]=n,a.options.props&&Sr(a),a.options.computed&&Er(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,U.forEach((function(t){a[t]=n[t]})),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=T({},a.options),o[r]=a,a}}function Sr(t){var e=t.options.props;for(var n in e)ir(t.prototype,"_props",n)}function Er(t){var e=t.options.computed;for(var n in e)pr(t.prototype,n,e[n])}function jr(t){U.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&f(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"===typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}function Tr(t){return t&&(t.Ctor.options.name||t.tag)}function Rr(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"===typeof t?t.split(",").indexOf(e)>-1:!!l(t)&&t.test(e)}function Pr(t,e){var n=t.cache,r=t.keys,o=t._vnode;for(var i in n){var a=n[i];if(a){var s=a.name;s&&!e(s)&&Ir(n,i,r,o)}}}function Ir(t,e,n,r){var o=t[e];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),t[e]=null,g(n,e)}br($r),gr($r),jn($r),In($r),bn($r);var Lr=[String,RegExp,Array],Nr={name:"keep-alive",abstract:!0,props:{include:Lr,exclude:Lr,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,n=t.keys,r=t.vnodeToCache,o=t.keyToCache;if(r){var i=r.tag,a=r.componentInstance,s=r.componentOptions;e[o]={name:Tr(s),tag:i,componentInstance:a},n.push(o),this.max&&n.length>parseInt(this.max)&&Ir(e,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Ir(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",(function(e){Pr(t,(function(t){return Rr(e,t)}))})),this.$watch("exclude",(function(e){Pr(t,(function(t){return!Rr(e,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=$n(t),n=e&&e.componentOptions;if(n){var r=Tr(n),o=this,i=o.include,a=o.exclude;if(i&&(!r||!Rr(i,r))||a&&r&&Rr(a,r))return e;var s=this,c=s.cache,u=s.keys,f=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;c[f]?(e.componentInstance=c[f].componentInstance,g(u,f),u.push(f)):(this.vnodeToCache=e,this.keyToCache=f),e.data.keepAlive=!0}return e||t&&t[0]}},Dr={KeepAlive:Nr};function Mr(t){var e={get:function(){return B}};Object.defineProperty(t,"config",e),t.util={warn:dt,extend:T,mergeOptions:Xt,defineReactive:It},t.set=Lt,t.delete=Nt,t.nextTick=ve,t.observable=function(t){return Pt(t),t},t.options=Object.create(null),U.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,T(t.options.components,Dr),Ar(t),kr(t),Or(t),jr(t)}Mr($r),Object.defineProperty($r.prototype,"$isServer",{get:ct}),Object.defineProperty($r.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty($r,"FunctionalRenderContext",{value:Ze}),$r.version="2.6.14";var Fr=y("style,class"),Ur=y("input,textarea,option,select,progress"),Vr=function(t,e,n){return"value"===n&&Ur(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Br=y("contenteditable,draggable,spellcheck"),Hr=y("events,caret,typing,plaintext-only"),qr=function(t,e){return Jr(e)||"false"===e?"false":"contenteditable"===t&&Hr(e)?e:"true"},zr=y("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),Wr="http://www.w3.org/1999/xlink",Kr=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Xr=function(t){return Kr(t)?t.slice(6,t.length):""},Jr=function(t){return null==t||!1===t};function Gr(t){var e=t.data,n=t,r=t;while(o(r.componentInstance))r=r.componentInstance._vnode,r&&r.data&&(e=Qr(r.data,e));while(o(n=n.parent))n&&n.data&&(e=Qr(e,n.data));return Yr(e.staticClass,e.class)}function Qr(t,e){return{staticClass:Zr(t.staticClass,e.staticClass),class:o(t.class)?[t.class,e.class]:e.class}}function Yr(t,e){return o(t)||o(e)?Zr(t,to(e)):""}function Zr(t,e){return t?e?t+" "+e:t:e||""}function to(t){return Array.isArray(t)?eo(t):c(t)?no(t):"string"===typeof t?t:""}function eo(t){for(var e,n="",r=0,i=t.length;r-1?co[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:co[t]=/HTMLUnknownElement/.test(e.toString())}var fo=y("text,number,password,search,email,tel,url");function lo(t){if("string"===typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}function po(t,e){var n=document.createElement(t);return"select"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n}function ho(t,e){return document.createElementNS(ro[t],e)}function vo(t){return document.createTextNode(t)}function yo(t){return document.createComment(t)}function mo(t,e,n){t.insertBefore(e,n)}function go(t,e){t.removeChild(e)}function _o(t,e){t.appendChild(e)}function bo(t){return t.parentNode}function wo(t){return t.nextSibling}function Co(t){return t.tagName}function xo(t,e){t.textContent=e}function $o(t,e){t.setAttribute(e,"")}var Ao=Object.freeze({createElement:po,createElementNS:ho,createTextNode:vo,createComment:yo,insertBefore:mo,removeChild:go,appendChild:_o,parentNode:bo,nextSibling:wo,tagName:Co,setTextContent:xo,setStyleScope:$o}),ko={create:function(t,e){Oo(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Oo(t,!0),Oo(e))},destroy:function(t){Oo(t,!0)}};function Oo(t,e){var n=t.data.ref;if(o(n)){var r=t.context,i=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],i):a[n]===i&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(i)<0&&a[n].push(i):a[n]=[i]:a[n]=i}}var So=new _t("",{},[]),Eo=["create","activate","update","remove","destroy"];function jo(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&o(t.data)===o(e.data)&&To(t,e)||i(t.isAsyncPlaceholder)&&r(e.asyncFactory.error))}function To(t,e){if("input"!==t.tag)return!0;var n,r=o(n=t.data)&&o(n=n.attrs)&&n.type,i=o(n=e.data)&&o(n=n.attrs)&&n.type;return r===i||fo(r)&&fo(i)}function Ro(t,e,n){var r,i,a={};for(r=e;r<=n;++r)i=t[r].key,o(i)&&(a[i]=r);return a}function Po(t){var e,n,a={},c=t.modules,u=t.nodeOps;for(e=0;ev?(l=r(n[g+1])?null:n[g+1].elm,x(t,l,n,h,g,i)):h>g&&A(e,p,v)}function S(t,e,n,r){for(var i=n;i-1?qo(t,e,n):zr(e)?Jr(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):Br(e)?t.setAttribute(e,qr(e,n)):Kr(e)?Jr(n)?t.removeAttributeNS(Wr,Xr(e)):t.setAttributeNS(Wr,e,n):qo(t,e,n)}function qo(t,e,n){if(Jr(n))t.removeAttribute(e);else{if(tt&&!et&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var zo={create:Bo,update:Bo};function Wo(t,e){var n=e.elm,i=e.data,a=t.data;if(!(r(i.staticClass)&&r(i.class)&&(r(a)||r(a.staticClass)&&r(a.class)))){var s=Gr(e),c=n._transitionClasses;o(c)&&(s=Zr(s,to(c))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var Ko,Xo={create:Wo,update:Wo},Jo="__r",Go="__c";function Qo(t){if(o(t[Jo])){var e=tt?"change":"input";t[e]=[].concat(t[Jo],t[e]||[]),delete t[Jo]}o(t[Go])&&(t.change=[].concat(t[Go],t.change||[]),delete t[Go])}function Yo(t,e,n){var r=Ko;return function o(){var i=e.apply(null,arguments);null!==i&&ei(t,o,n,r)}}var Zo=se&&!(ot&&Number(ot[1])<=53);function ti(t,e,n,r){if(Zo){var o=Xn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=o||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}Ko.addEventListener(t,e,at?{capture:n,passive:r}:n)}function ei(t,e,n,r){(r||Ko).removeEventListener(t,e._wrapper||e,n)}function ni(t,e){if(!r(t.data.on)||!r(e.data.on)){var n=e.data.on||{},o=t.data.on||{};Ko=e.elm,Qo(n),we(n,o,ti,ei,Yo,e.context),Ko=void 0}}var ri,oi={create:ni,update:ni};function ii(t,e){if(!r(t.data.domProps)||!r(e.data.domProps)){var n,i,a=e.elm,s=t.data.domProps||{},c=e.data.domProps||{};for(n in o(c.__ob__)&&(c=e.data.domProps=T({},c)),s)n in c||(a[n]="");for(n in c){if(i=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),i===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=i;var u=r(i)?"":String(i);ai(a,u)&&(a.value=u)}else if("innerHTML"===n&&io(a.tagName)&&r(a.innerHTML)){ri=ri||document.createElement("div"),ri.innerHTML=""+i+"";var f=ri.firstChild;while(a.firstChild)a.removeChild(a.firstChild);while(f.firstChild)a.appendChild(f.firstChild)}else if(i!==s[n])try{a[n]=i}catch($a){}}}}function ai(t,e){return!t.composing&&("OPTION"===t.tagName||si(t,e)||ci(t,e))}function si(t,e){var n=!0;try{n=document.activeElement!==t}catch($a){}return n&&t.value!==e}function ci(t,e){var n=t.value,r=t._vModifiers;if(o(r)){if(r.number)return v(n)!==v(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}var ui={create:ii,update:ii},fi=w((function(t){var e={},n=/;(?![^(]*\))/g,r=/:(.+)/;return t.split(n).forEach((function(t){if(t){var n=t.split(r);n.length>1&&(e[n[0].trim()]=n[1].trim())}})),e}));function li(t){var e=pi(t.style);return t.staticStyle?T(t.staticStyle,e):e}function pi(t){return Array.isArray(t)?R(t):"string"===typeof t?fi(t):t}function di(t,e){var n,r={};if(e){var o=t;while(o.componentInstance)o=o.componentInstance._vnode,o&&o.data&&(n=li(o.data))&&T(r,n)}(n=li(t.data))&&T(r,n);var i=t;while(i=i.parent)i.data&&(n=li(i.data))&&T(r,n);return r}var hi,vi=/^--/,yi=/\s*!important$/,mi=function(t,e,n){if(vi.test(e))t.style.setProperty(e,n);else if(yi.test(n))t.style.setProperty(k(e),n.replace(yi,""),"important");else{var r=_i(e);if(Array.isArray(n))for(var o=0,i=n.length;o-1?e.split(Ci).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function $i(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Ci).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";while(n.indexOf(r)>=0)n=n.replace(r," ");n=n.trim(),n?t.setAttribute("class",n):t.removeAttribute("class")}}function Ai(t){if(t){if("object"===typeof t){var e={};return!1!==t.css&&T(e,ki(t.name||"v")),T(e,t),e}return"string"===typeof t?ki(t):void 0}}var ki=w((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Oi=G&&!et,Si="transition",Ei="animation",ji="transition",Ti="transitionend",Ri="animation",Pi="animationend";Oi&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(ji="WebkitTransition",Ti="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Ri="WebkitAnimation",Pi="webkitAnimationEnd"));var Ii=G?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Li(t){Ii((function(){Ii(t)}))}function Ni(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),xi(t,e))}function Di(t,e){t._transitionClasses&&g(t._transitionClasses,e),$i(t,e)}function Mi(t,e,n){var r=Ui(t,e),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var s=o===Si?Ti:Pi,c=0,u=function(){t.removeEventListener(s,f),n()},f=function(e){e.target===t&&++c>=a&&u()};setTimeout((function(){c0&&(n=Si,f=a,l=i.length):e===Ei?u>0&&(n=Ei,f=u,l=c.length):(f=Math.max(a,u),n=f>0?a>u?Si:Ei:null,l=n?n===Si?i.length:c.length:0);var p=n===Si&&Fi.test(r[ji+"Property"]);return{type:n,timeout:f,propCount:l,hasTransform:p}}function Vi(t,e){while(t.length1}function Ki(t,e){!0!==e.data.show&&Hi(e)}var Xi=G?{create:Ki,activate:Ki,remove:function(t,e){!0!==t.data.show?qi(t,e):e()}}:{},Ji=[zo,Xo,oi,ui,wi,Xi],Gi=Ji.concat(Vo),Qi=Po({nodeOps:Ao,modules:Gi});et&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&ia(t,"input")}));var Yi={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?Ce(n,"postpatch",(function(){Yi.componentUpdated(t,e,n)})):Zi(t,e,n.context),t._vOptions=[].map.call(t.options,na)):("textarea"===n.tag||fo(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",ra),t.addEventListener("compositionend",oa),t.addEventListener("change",oa),et&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Zi(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,na);if(o.some((function(t,e){return!N(t,r[e])}))){var i=t.multiple?e.value.some((function(t){return ea(t,o)})):e.value!==e.oldValue&&ea(e.value,o);i&&ia(t,"change")}}}};function Zi(t,e,n){ta(t,e,n),(tt||nt)&&setTimeout((function(){ta(t,e,n)}),0)}function ta(t,e,n){var r=e.value,o=t.multiple;if(!o||Array.isArray(r)){for(var i,a,s=0,c=t.options.length;s-1,a.selected!==i&&(a.selected=i);else if(N(na(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));o||(t.selectedIndex=-1)}}function ea(t,e){return e.every((function(e){return!N(e,t)}))}function na(t){return"_value"in t?t._value:t.value}function ra(t){t.target.composing=!0}function oa(t){t.target.composing&&(t.target.composing=!1,ia(t.target,"input"))}function ia(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function aa(t){return!t.componentInstance||t.data&&t.data.transition?t:aa(t.componentInstance._vnode)}var sa={bind:function(t,e,n){var r=e.value;n=aa(n);var o=n.data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&o?(n.data.show=!0,Hi(n,(function(){t.style.display=i}))):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value,o=e.oldValue;if(!r!==!o){n=aa(n);var i=n.data&&n.data.transition;i?(n.data.show=!0,r?Hi(n,(function(){t.style.display=t.__vOriginalDisplay})):qi(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none"}},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}},ca={model:Yi,show:sa},ua={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function fa(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?fa($n(e.children)):t}function la(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var i in o)e[x(i)]=o[i];return e}function pa(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function da(t){while(t=t.parent)if(t.data.transition)return!0}function ha(t,e){return e.key===t.key&&e.tag===t.tag}var va=function(t){return t.tag||Ie(t)},ya=function(t){return"show"===t.name},ma={name:"transition",props:ua,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(va),n.length)){0;var r=this.mode;0;var o=n[0];if(da(this.$vnode))return o;var i=fa(o);if(!i)return o;if(this._leaving)return pa(t,o);var a="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?a+"comment":a+i.tag:s(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var c=(i.data||(i.data={})).transition=la(this),u=this._vnode,f=fa(u);if(i.data.directives&&i.data.directives.some(ya)&&(i.data.show=!0),f&&f.data&&!ha(i,f)&&!Ie(f)&&(!f.componentInstance||!f.componentInstance._vnode.isComment)){var l=f.data.transition=T({},c);if("out-in"===r)return this._leaving=!0,Ce(l,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),pa(t,o);if("in-out"===r){if(Ie(i))return u;var p,d=function(){p()};Ce(c,"afterEnter",d),Ce(c,"enterCancelled",d),Ce(l,"delayLeave",(function(t){p=t}))}}return o}}},ga=T({tag:String,moveClass:String},ua);delete ga.mode;var _a={props:ga,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=Rn(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],a=la(this),s=0;s=0&&(e=t.slice(r),t=t.slice(0,r));var o=t.indexOf("?");return o>=0&&(n=t.slice(o+1),t=t.slice(0,o)),{path:t,query:n,hash:e}}function j(t){return t.replace(/\/\//g,"/")}var T=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},R=Q,P=M,I=F,L=B,N=G,D=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function M(t,e){var n,r=[],o=0,i=0,a="",s=e&&e.delimiter||"/";while(null!=(n=D.exec(t))){var c=n[0],u=n[1],f=n.index;if(a+=t.slice(i,f),i=f+c.length,u)a+=u[1];else{var l=t[i],p=n[2],d=n[3],h=n[4],v=n[5],y=n[6],m=n[7];a&&(r.push(a),a="");var g=null!=p&&null!=l&&l!==p,_="+"===y||"*"===y,b="?"===y||"*"===y,w=n[2]||s,C=h||v;r.push({name:d||o++,prefix:p||"",delimiter:w,optional:b,repeat:_,partial:g,asterisk:!!m,pattern:C?q(C):m?".*":"[^"+H(w)+"]+?"})}}return i1||!$.length)return 0===$.length?t():t("span",{},$)}if("a"===this.tag)x.on=w,x.attrs={href:c,"aria-current":g};else{var A=st(this.$slots.default);if(A){A.isStatic=!1;var k=A.data=o({},A.data);for(var O in k.on=k.on||{},k.on){var S=k.on[O];O in w&&(k.on[O]=Array.isArray(S)?S:[S])}for(var E in w)E in k.on?k.on[E].push(w[E]):k.on[E]=_;var j=A.data.attrs=o({},A.data.attrs);j.href=c,j["aria-current"]=g}else x.on=w}return t(this.tag,x,this.$slots.default)}};function at(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&(void 0===t.button||0===t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function st(t){if(t)for(var e,n=0;n-1&&(s.params[l]=n.params[l]);return s.path=Z(u.path,s.params,'named route "'+c+'"'),p(u,s,a)}if(s.path){s.params={};for(var d=0;d=t.length?n():t[o]?e(t[o],(function(){r(o+1)})):r(o+1)};r(0)}var Ft={redirected:2,aborted:4,cancelled:8,duplicated:16};function Ut(t,e){return qt(t,e,Ft.redirected,'Redirected when going from "'+t.fullPath+'" to "'+Wt(e)+'" via a navigation guard.')}function Vt(t,e){var n=qt(t,e,Ft.duplicated,'Avoided redundant navigation to current location: "'+t.fullPath+'".');return n.name="NavigationDuplicated",n}function Bt(t,e){return qt(t,e,Ft.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Ht(t,e){return qt(t,e,Ft.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}function qt(t,e,n,r){var o=new Error(r);return o._isRouter=!0,o.from=t,o.to=e,o.type=n,o}var zt=["params","query","hash"];function Wt(t){if("string"===typeof t)return t;if("path"in t)return t.path;var e={};return zt.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}function Kt(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function Xt(t,e){return Kt(t)&&t._isRouter&&(null==e||t.type===e)}function Jt(t){return function(e,n,r){var o=!1,i=0,a=null;Gt(t,(function(t,e,n,s){if("function"===typeof t&&void 0===t.cid){o=!0,i++;var c,u=te((function(e){Zt(e)&&(e=e.default),t.resolved="function"===typeof e?e:et.extend(e),n.components[s]=e,i--,i<=0&&r()})),f=te((function(t){var e="Failed to resolve async component "+s+": "+t;a||(a=Kt(t)?t:new Error(e),r(a))}));try{c=t(u,f)}catch(p){f(p)}if(c)if("function"===typeof c.then)c.then(u,f);else{var l=c.component;l&&"function"===typeof l.then&&l.then(u,f)}}})),o||r()}}function Gt(t,e){return Qt(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function Qt(t){return Array.prototype.concat.apply([],t)}var Yt="function"===typeof Symbol&&"symbol"===typeof Symbol.toStringTag;function Zt(t){return t.__esModule||Yt&&"Module"===t[Symbol.toStringTag]}function te(t){var e=!1;return function(){var n=[],r=arguments.length;while(r--)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var ee=function(t,e){this.router=t,this.base=ne(e),this.current=m,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function ne(t){if(!t)if(ut){var e=document.querySelector("base");t=e&&e.getAttribute("href")||"/",t=t.replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}function re(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n0)){var e=this.router,n=e.options.scrollBehavior,r=Lt&&n;r&&this.listeners.push(xt());var o=function(){var n=t.current,o=pe(t.base);t.current===m&&o===t._startLocation||t.transitionTo(o,(function(t){r&&$t(e,t,n,!0)}))};window.addEventListener("popstate",o),this.listeners.push((function(){window.removeEventListener("popstate",o)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){Nt(j(r.base+t.fullPath)),$t(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){Dt(j(r.base+t.fullPath)),$t(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(pe(this.base)!==this.current.fullPath){var e=j(this.base+this.current.fullPath);t?Nt(e):Dt(e)}},e.prototype.getCurrentLocation=function(){return pe(this.base)},e}(ee);function pe(t){var e=window.location.pathname,n=e.toLowerCase(),r=t.toLowerCase();return!t||n!==r&&0!==n.indexOf(j(r+"/"))||(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var de=function(t){function e(e,n,r){t.call(this,e,n),r&&he(this.base)||ve()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,r=Lt&&n;r&&this.listeners.push(xt());var o=function(){var e=t.current;ve()&&t.transitionTo(ye(),(function(n){r&&$t(t.router,n,e,!0),Lt||_e(n.fullPath)}))},i=Lt?"popstate":"hashchange";window.addEventListener(i,o),this.listeners.push((function(){window.removeEventListener(i,o)}))}},e.prototype.push=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){ge(t.fullPath),$t(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){_e(t.fullPath),$t(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;ye()!==e&&(t?ge(e):_e(e))},e.prototype.getCurrentLocation=function(){return ye()},e}(ee);function he(t){var e=pe(t);if(!/^\/#/.test(e))return window.location.replace(j(t+"/#"+e)),!0}function ve(){var t=ye();return"/"===t.charAt(0)||(_e("/"+t),!1)}function ye(){var t=window.location.href,e=t.indexOf("#");return e<0?"":(t=t.slice(e+1),t)}function me(t){var e=window.location.href,n=e.indexOf("#"),r=n>=0?e.slice(0,n):e;return r+"#"+t}function ge(t){Lt?Nt(me(t)):window.location.hash=t}function _e(t){Lt?Dt(me(t)):window.location.replace(me(t))}var be=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,(function(){var t=e.current;e.index=n,e.updateRoute(r),e.router.afterHooks.forEach((function(e){e&&e(r,t)}))}),(function(t){Xt(t,Ft.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(ee),we=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=ht(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!Lt&&!1!==t.fallback,this.fallback&&(e="hash"),ut||(e="abstract"),this.mode=e,e){case"history":this.history=new le(this,t.base);break;case"hash":this.history=new de(this,t.base,this.fallback);break;case"abstract":this.history=new be(this,t.base);break;default:0}},Ce={currentRoute:{configurable:!0}};function xe(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function $e(t,e,n){var r="hash"===n?"#"+e:e;return t?j(t+"/"+r):r}we.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Ce.currentRoute.get=function(){return this.history&&this.history.current},we.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof le||n instanceof de){var r=function(t){var r=n.current,o=e.options.scrollBehavior,i=Lt&&o;i&&"fullPath"in t&&$t(e,t,r,!1)},o=function(t){n.setupListeners(),r(t)};n.transitionTo(n.getCurrentLocation(),o,o)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},we.prototype.beforeEach=function(t){return xe(this.beforeHooks,t)},we.prototype.beforeResolve=function(t){return xe(this.resolveHooks,t)},we.prototype.afterEach=function(t){return xe(this.afterHooks,t)},we.prototype.onReady=function(t,e){this.history.onReady(t,e)},we.prototype.onError=function(t){this.history.onError(t)},we.prototype.push=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!==typeof Promise)return new Promise((function(e,n){r.history.push(t,e,n)}));this.history.push(t,e,n)},we.prototype.replace=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!==typeof Promise)return new Promise((function(e,n){r.history.replace(t,e,n)}));this.history.replace(t,e,n)},we.prototype.go=function(t){this.history.go(t)},we.prototype.back=function(){this.go(-1)},we.prototype.forward=function(){this.go(1)},we.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},we.prototype.resolve=function(t,e,n){e=e||this.history.current;var r=tt(t,e,n,this),o=this.match(r,e),i=o.redirectedFrom||o.fullPath,a=this.history.base,s=$e(a,i,this.mode);return{location:r,route:o,href:s,normalizedTo:r,resolved:o}},we.prototype.getRoutes=function(){return this.matcher.getRoutes()},we.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==m&&this.history.transitionTo(this.history.getCurrentLocation())},we.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==m&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(we.prototype,Ce),we.install=ct,we.version="3.5.2",we.isNavigationFailure=Xt,we.NavigationFailureType=Ft,we.START_LOCATION=m,ut&&window.Vue&&window.Vue.use(we),e["a"]=we},c8ba:function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(r){"object"===typeof window&&(n=window)}t.exports=n}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/documentation-topic.f5df163e.js b/JellyfinAPI.doccarchive/js/documentation-topic.f5df163e.js new file mode 100644 index 000000000..5c26bcade --- /dev/null +++ b/JellyfinAPI.doccarchive/js/documentation-topic.f5df163e.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic"],{"0180":function(e,t,n){"use strict";n("8088")},"03dc":function(e,t,n){},"042f":function(e,t,n){},"0573":function(e,t,n){},"09db":function(e,t,n){"use strict";n("535f")},"0b72":function(e,t,n){},"0d16":function(e,t,n){"use strict";n("10da")},"10da":function(e,t,n){},"179d":function(e,t,n){"use strict";n("90de")},"1a47":function(e,t,n){"use strict";n("042f")},"1d1c":function(e,t,n){"use strict";n("57e3")},"1eff":function(e,t,n){"use strict";n("82d0")},"22f6":function(e,t,n){},"243c":function(e,t,n){"use strict";n("7010")},2521:function(e,t,n){},"252a":function(e,t,n){"use strict";n("8fed")},2822:function(e,t,n){"use strict";n("2521")},2995:function(e,t,n){"use strict";n("8498")},"2f04":function(e,t,n){},"2f87":function(e,t,n){"use strict";n("b0a0")},"374e":function(e,t,n){"use strict";n("0b72")},3825:function(e,t,n){},"395c":function(e,t,n){},"3b96":function(e,t,n){"use strict";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"curly-brackets-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M9.987 14h-0.814v-0.916h0.36c0.137 0 0.253-0.038 0.349-0.116 0.099-0.080 0.179-0.188 0.239-0.318 0.064-0.134 0.11-0.298 0.139-0.483 0.031-0.186 0.045-0.38 0.045-0.58v-2.115c0-0.417 0.046-0.781 0.139-1.083 0.092-0.3 0.2-0.554 0.322-0.754 0.127-0.203 0.246-0.353 0.366-0.458 0.087-0.076 0.155-0.131 0.207-0.169-0.052-0.037-0.12-0.093-0.207-0.167-0.12-0.105-0.239-0.255-0.366-0.459-0.122-0.2-0.23-0.453-0.322-0.754-0.093-0.3-0.139-0.665-0.139-1.082v-2.13c0-0.199-0.014-0.392-0.045-0.572-0.029-0.182-0.076-0.345-0.139-0.483-0.060-0.137-0.141-0.246-0.239-0.328-0.095-0.076-0.212-0.115-0.349-0.115h-0.36v-0.916h0.814c0.442 0 0.788 0.18 1.030 0.538 0.238 0.352 0.358 0.826 0.358 1.407v2.236c0 0.3 0.015 0.597 0.044 0.886 0.030 0.287 0.086 0.544 0.164 0.765 0.077 0.216 0.184 0.392 0.318 0.522 0.129 0.124 0.298 0.188 0.503 0.188h0.058v0.916h-0.058c-0.206 0-0.374 0.064-0.503 0.188-0.134 0.129-0.242 0.305-0.318 0.521-0.078 0.223-0.134 0.48-0.164 0.766-0.029 0.288-0.044 0.587-0.044 0.884v2.236c0 0.582-0.12 1.055-0.358 1.409-0.242 0.358-0.588 0.538-1.030 0.538z"}}),n("path",{attrs:{d:"M4.827 14h-0.814c-0.442 0-0.788-0.18-1.030-0.538-0.238-0.352-0.358-0.825-0.358-1.409v-2.221c0-0.301-0.015-0.599-0.045-0.886-0.029-0.287-0.085-0.544-0.163-0.764-0.077-0.216-0.184-0.393-0.318-0.522-0.131-0.127-0.296-0.188-0.503-0.188h-0.058v-0.916h0.058c0.208 0 0.373-0.063 0.503-0.188 0.135-0.129 0.242-0.304 0.318-0.522 0.078-0.22 0.134-0.477 0.163-0.765 0.030-0.286 0.045-0.585 0.045-0.886v-2.251c0-0.582 0.12-1.055 0.358-1.407 0.242-0.358 0.588-0.538 1.030-0.538h0.814v0.916h-0.36c-0.138 0-0.252 0.038-0.349 0.116-0.099 0.079-0.179 0.189-0.239 0.327-0.064 0.139-0.11 0.302-0.141 0.483-0.029 0.18-0.044 0.373-0.044 0.572v2.13c0 0.417-0.046 0.782-0.138 1.082-0.092 0.302-0.201 0.556-0.324 0.754-0.123 0.201-0.246 0.356-0.366 0.459-0.086 0.074-0.153 0.13-0.206 0.167 0.052 0.038 0.12 0.093 0.206 0.169 0.12 0.103 0.243 0.258 0.366 0.458s0.232 0.453 0.324 0.754c0.092 0.302 0.138 0.666 0.138 1.083v2.115c0 0.2 0.015 0.394 0.044 0.58 0.030 0.186 0.077 0.349 0.139 0.482 0.062 0.132 0.142 0.239 0.241 0.32 0.096 0.079 0.21 0.116 0.349 0.116h0.36z"}})])},r=[],s=n("be08"),i={name:"CurlyBracketsIcon",components:{SVGIcon:s["a"]}},o=i,c=n("2877"),l=Object(c["a"])(o,a,r,!1,null,null,null);t["a"]=l.exports},"3d27":function(e,t,n){"use strict";n("8a0a")},"3dca":function(e,t,n){"use strict";n("395c")},4340:function(e,t,n){"use strict";n("a378")},4966:function(e,t,n){"use strict";n("d1af")},"51be":function(e,t,n){},5245:function(e,t,n){"use strict";n("c47b")},"535f":function(e,t,n){},"54bb":function(e,t,n){"use strict";n("e2d5")},"57e3":function(e,t,n){},"61ca":function(e,t,n){"use strict";n("82be")},"64fc":function(e,t,n){},"66c9":function(e,t,n){"use strict";t["a"]={state:{codeColors:null},reset(){this.state.codeColors=null},updateCodeColors(e){const t=e=>e?`rgba(${e.red}, ${e.green}, ${e.blue}, ${e.alpha})`:null;this.state.codeColors=Object.entries(e).reduce((e,[n,a])=>({...e,[n]:t(a)}),{})}}},"67dc":function(e,t,n){"use strict";n("ba38")},"6c70":function(e,t,n){},"6e90":function(e,t,n){},7010:function(e,t,n){},"719b":function(e,t,n){"use strict";n("8b3c")},"76d4":function(e,t,n){"use strict";n("9b11")},"78d5":function(e,t,n){"use strict";n("c9f3")},8088:function(e,t,n){},"812f":function(e,t,n){"use strict";n("a396")},"813b":function(e,t,n){"use strict";n("0573")},"82be":function(e,t,n){},"82d0":function(e,t,n){},"83f0":function(e,t,n){},8427:function(e,t,n){},8498:function(e,t,n){},8590:function(e,t,n){"use strict";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{style:e.codeStyle},[e._t("default")],2)},r=[],s=n("66c9");const i=0,o=255;function c(e){const t=e.match(/rgba\((\d+),\s*(\d+),\s*(\d+),\s*(\d+\.?\d*|\.\d+)\s*\)/);if(!t)throw new Error("invalid rgba() input");const n=10;return{r:parseInt(t[1],n),g:parseInt(t[2],n),b:parseInt(t[3],n),a:parseFloat(t[4])}}function l(e){const{r:t,g:n,b:a}=c(e);return.2126*t+.7152*n+.0722*a}function u(e,t){const n=Math.round(o*t),a=c(e),{a:r}=a,[s,l,u]=[a.r,a.g,a.b].map(e=>Math.max(i,Math.min(o,e+n)));return`rgba(${s}, ${l}, ${u}, ${r})`}function d(e,t){return u(e,t)}function p(e,t){return u(e,-1*t)}var h={name:"CodeTheme",data(){return{codeThemeState:s["a"].state}},computed:{codeStyle(){const{codeColors:e}=this.codeThemeState;return e?{"--text":e.text,"--background":e.background,"--line-highlight":e.lineHighlight,"--url":e.commentURL,"--syntax-comment":e.comment,"--syntax-quote":e.comment,"--syntax-keyword":e.keyword,"--syntax-literal":e.keyword,"--syntax-selector-tag":e.keyword,"--syntax-string":e.stringLiteral,"--syntax-bullet":e.stringLiteral,"--syntax-meta":e.keyword,"--syntax-number":e.stringLiteral,"--syntax-symbol":e.stringLiteral,"--syntax-tag":e.stringLiteral,"--syntax-attr":e.typeAnnotation,"--syntax-built_in":e.typeAnnotation,"--syntax-builtin-name":e.typeAnnotation,"--syntax-class":e.typeAnnotation,"--syntax-params":e.typeAnnotation,"--syntax-section":e.typeAnnotation,"--syntax-title":e.typeAnnotation,"--syntax-type":e.typeAnnotation,"--syntax-attribute":e.keyword,"--syntax-identifier":e.text,"--syntax-subst":e.text,"--color-syntax-param-internal-name":this.internalParamNameColor}:null},internalParamNameColor(){const{background:e,text:t}=this.codeThemeState.codeColors;try{const n=l(e),a=n({"~0":"~","~1":"/"}[e]||e))}function*o(e){const t=1;if(e.lengtht)throw new Error("invalid array index "+e);return n}function*h(e,t,n={strict:!1}){let a=e;for(const r of o(t)){if(n.strict&&!Object.prototype.hasOwnProperty.call(a,r))throw new d(t);a=a[r],yield{node:a,token:r}}}function m(e,t){let n=e;for(const{node:a}of h(e,t,{strict:!0}))n=a;return n}function f(e,t,n){let a=null,r=e,s=null;for(const{node:o,token:c}of h(e,t))a=r,r=o,s=c;if(!a)throw new d(t);if(Array.isArray(a))try{const e=p(s,a);a.splice(e,0,n)}catch(i){throw new d(t)}else Object.assign(a,{[s]:n});return e}function y(e,t){let n=null,a=e,r=null;for(const{node:i,token:o}of h(e,t))n=a,a=i,r=o;if(!n)throw new d(t);if(Array.isArray(n))try{const e=p(r,n);n.splice(e,1)}catch(s){throw new d(t)}else{if(!a)throw new d(t);delete n[r]}return e}function g(e,t,n){return y(e,t),f(e,t,n),e}function b(e,t,n){const a=m(e,t);return y(e,t),f(e,n,a),e}function v(e,t,n){return f(e,n,m(e,t)),e}function C(e,t,n){function a(e,t){const n=typeof e,r=typeof t;if(n!==r)return!1;switch(n){case u:{const n=Object.keys(e),r=Object.keys(t);return n.length===r.length&&n.every((n,s)=>n===r[s]&&a(e[n],t[n]))}default:return e===t}}const r=m(e,t);if(!a(n,r))throw new Error("test failed");return e}const _={add:(e,{path:t,value:n})=>f(e,t,n),copy:(e,{from:t,path:n})=>v(e,t,n),move:(e,{from:t,path:n})=>b(e,t,n),remove:(e,{path:t})=>y(e,t),replace:(e,{path:t,value:n})=>g(e,t,n),test:(e,{path:t,value:n})=>C(e,t,n)};function T(e,{op:t,...n}){const a=_[t];if(!a)throw new Error("unknown operation");return a(e,n)}function k(e,t){return t.reduce(T,e)}var S=n("25a9"),x=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"doc-topic"},[e.isTargetIDE?e._e():n("Nav",{attrs:{title:e.title,diffAvailability:e.diffAvailability,interfaceLanguage:e.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath,parentTopicIdentifiers:e.parentTopicIdentifiers,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,currentTopicTags:e.tags}}),n("main",{staticClass:"main",attrs:{id:"main",role:"main",tabindex:"0"}},[e._t("above-title"),n("Title",{attrs:{eyebrow:e.roleHeading}},[e._v(e._s(e.title))]),n("div",{staticClass:"container content-grid",class:{"full-width":e.hideSummary}},[n("Description",{attrs:{hasOverview:e.hasOverview}},[e.abstract?n("Abstract",{attrs:{content:e.abstract}}):e._e(),e.isRequirement?n("RequirementMetadata",{attrs:{defaultImplementationsCount:e.defaultImplementationsCount}}):e._e(),e.deprecationSummary&&e.deprecationSummary.length?n("Aside",{attrs:{kind:"deprecated"}},[n("ContentNode",{attrs:{content:e.deprecationSummary}})],1):e._e(),e.downloadNotAvailableSummary&&e.downloadNotAvailableSummary.length?n("Aside",{attrs:{kind:"note"}},[n("ContentNode",{attrs:{content:e.downloadNotAvailableSummary}})],1):e._e(),e.sampleCodeDownload?n("DownloadButton",{attrs:{action:e.sampleCodeDownload.action}}):e._e()],1),e.hideSummary?e._e():n("Summary",[e.shouldShowLanguageSwitcher?n("LanguageSwitcher",{attrs:{interfaceLanguage:e.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath}}):e._e(),e.platforms?n("Availability",{attrs:{platforms:e.platforms}}):e._e(),e.modules?n("TechnologyList",{attrs:{technologies:e.modules}}):e._e(),e.extendsTechnology?n("TechnologyList",{staticClass:"extends-technology",attrs:{title:"Extends",technologies:[{name:e.extendsTechnology}]}}):e._e(),e.onThisPageSections.length>1?n("OnThisPageNav",{attrs:{sections:e.onThisPageSections}}):e._e()],1),e.primaryContentSections&&e.primaryContentSections.length?n("PrimaryContent",{attrs:{conformance:e.conformance,sections:e.primaryContentSections}}):e._e()],1),e.topicSections?n("Topics",{attrs:{sections:e.topicSections,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}}):e._e(),e.defaultImplementationsSections?n("DefaultImplementations",{attrs:{sections:e.defaultImplementationsSections,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}}):e._e(),e.relationshipsSections?n("Relationships",{attrs:{sections:e.relationshipsSections}}):e._e(),e.seeAlsoSections?n("SeeAlso",{attrs:{sections:e.seeAlsoSections}}):e._e(),!e.isTargetIDE&&e.hasBetaContent?n("BetaLegalText"):e._e()],2)],1)},O=[],j=n("8649"),P=n("d8ce"),A=n("6842"),B=n("e3ab"),w=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavBase",{staticClass:"documentation-nav",attrs:{breakpoint:e.BreakpointName.medium,hasOverlay:!1,hasSolidBackground:"",hasNoBorder:e.hasNoBorder,isDark:e.isDark,hasFullWidthBorder:"","aria-label":"API Reference"}},[n("template",{slot:"default"},[e._t("title",(function(){return[e.rootLink?n("router-link",{staticClass:"nav-title-link",attrs:{to:e.rootLink}},[e._v(" Documentation ")]):n("span",{staticClass:"nav-title-link inactive"},[e._v("Documentation")])]}),null,{rootLink:e.rootLink,linkClass:"nav-title-link",inactiveClass:"inactive"})],2),n("template",{slot:"tray"},[n("Hierarchy",{attrs:{currentTopicTitle:e.title,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,parentTopicIdentifiers:e.hierarchyItems,currentTopicTags:e.currentTopicTags}}),e._t("tray-after",null,null,{breadcrumbCount:e.breadcrumbCount})],2),n("template",{slot:"after-content"},[e._t("after-content")],2)],2)},q=[],D=n("cbcf"),I=n("63b8"),L=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItems",{staticClass:"hierarchy",class:{"has-badge":e.hasBadge},attrs:{"aria-label":"Breadcrumbs"}},[e._l(e.collapsibleItems,(function(t){return n("HierarchyItem",{key:t.title,attrs:{isCollapsed:e.shouldCollapseItems,url:e.addQueryParamsToUrl(t.url)}},[e._v(" "+e._s(t.title)+" ")])})),e.shouldCollapseItems?n("HierarchyCollapsedItems",{attrs:{topics:e.collapsibleItems}}):e._e(),e._l(e.nonCollapsibleItems,(function(t){return n("HierarchyItem",{key:t.title,attrs:{url:e.addQueryParamsToUrl(t.url)}},[e._v(" "+e._s(t.title)+" ")])})),n("HierarchyItem",[e._v(" "+e._s(e.currentTopicTitle)+" "),n("template",{slot:"tags"},[e.isSymbolDeprecated?n("Badge",{attrs:{variant:"deprecated"}}):e.isSymbolBeta?n("Badge",{attrs:{variant:"beta"}}):e._e(),e._l(e.currentTopicTags,(function(t){return n("Badge",{key:t.type+"-"+t.text,attrs:{variant:t.type}},[e._v(" "+e._s(t.text)+" ")])}))],2)],2)],2)},$=[],E=n("d26a"),M=n("9b30"),R=function(){var e,t=this,n=t.$createElement,a=t._self._c||n;return a("span",{staticClass:"badge",class:(e={},e["badge-"+t.variant]=t.variant,e),attrs:{role:"presentation"}},[t._t("default",(function(){return[t._v(t._s(t.text))]}))],2)},N=[];const V={beta:"Beta",deprecated:"Deprecated"};var H={name:"Badge",props:{variant:{type:String,default:()=>""}},computed:{text:({variant:e})=>V[e]}},z=H,W=(n("3d27"),n("2877")),G=Object(W["a"])(z,R,N,!1,null,"2bfc9463",null),K=G.exports,F=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"hierarchy-collapsed-items"},[n("InlineChevronRightIcon",{staticClass:"hierarchy-item-icon icon-inline"}),n("button",{ref:"btn",staticClass:"toggle",class:{focused:!e.collapsed},on:{click:e.toggleCollapsed}},[n("span",{staticClass:"indicator"},[n("EllipsisIcon",{staticClass:"icon-inline toggle-icon"})],1)]),n("ul",{ref:"dropdown",staticClass:"dropdown",class:{collapsed:e.collapsed}},e._l(e.topicsWithUrls,(function(t){return n("li",{key:t.title,staticClass:"dropdown-item"},[n("router-link",{staticClass:"nav-menu-link",attrs:{to:t.url}},[e._v(e._s(t.title))])],1)})),0)],1)},U=[],Q=n("34b0"),J=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"ellipsis-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"m12.439 7.777v-1.554h-1.554v1.554zm-4.662 0v-1.554h-1.554v1.554zm-4.662 0v-1.554h-1.554v1.554z"}})])},X=[],Y=n("be08"),Z={name:"EllipsisIcon",components:{SVGIcon:Y["a"]}},ee=Z,te=Object(W["a"])(ee,J,X,!1,null,null,null),ne=te.exports,ae={name:"HierarchyCollapsedItems",components:{EllipsisIcon:ne,InlineChevronRightIcon:Q["a"]},data:()=>({collapsed:!0}),props:{topics:{type:Array,required:!0}},watch:{collapsed(e,t){t&&!e?document.addEventListener("click",this.handleDocumentClick,!1):!t&&e&&document.removeEventListener("click",this.handleDocumentClick,!1)}},beforeDestroy(){document.removeEventListener("click",this.handleDocumentClick,!1)},computed:{topicsWithUrls:({$route:e,topics:t})=>t.map(t=>({...t,url:Object(E["b"])(t.url,e.query)}))},methods:{handleDocumentClick(e){const{target:t}=e,{collapsed:n,$refs:{btn:a,dropdown:r}}=this,s=!a.contains(t)&&!r.contains(t);!n&&s&&(this.collapsed=!0)},toggleCollapsed(){this.collapsed=!this.collapsed}}},re=ae,se=(n("78d5"),Object(W["a"])(re,F,U,!1,null,"45c48d1a",null)),ie=se.exports,oe=function(e,t){var n=t._c;return n(t.$options.components.NavMenuItemBase,{tag:"component",staticClass:"hierarchy-item",class:{collapsed:t.props.isCollapsed}},[n(t.$options.components.InlineChevronRightIcon,{tag:"component",staticClass:"hierarchy-item-icon icon-inline"}),t.props.url?n("router-link",{staticClass:"parent item nav-menu-link",attrs:{to:t.props.url}},[t._t("default")],2):[n("span",{staticClass:"current item"},[t._t("default")],2),t._t("tags")]],2)},ce=[],le=n("863d"),ue={name:"HierarchyItem",components:{NavMenuItemBase:le["a"],InlineChevronRightIcon:Q["a"]},props:{isCollapsed:Boolean,url:{type:String,required:!1}}},de=ue,pe=(n("252a"),Object(W["a"])(de,oe,ce,!0,null,"57182fdb",null)),he=pe.exports;const me=3;var fe={name:"Hierarchy",components:{Badge:K,NavMenuItems:M["a"],HierarchyCollapsedItems:ie,HierarchyItem:he},inject:{references:{default:()=>({})}},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,currentTopicTitle:{type:String,required:!0},parentTopicIdentifiers:{type:Array,default:()=>[]},currentTopicTags:{type:Array,default:()=>[]}},computed:{parentTopics(){return this.parentTopicIdentifiers.map(e=>{const{title:t,url:n}=this.references[e];return{title:t,url:n}})},shouldCollapseItems(){return this.parentTopics.length+1>me},collapsibleItems:({parentTopics:e})=>e.slice(0,-1),nonCollapsibleItems:({parentTopics:e})=>e.slice(-1),hasBadge:({isSymbolDeprecated:e,isSymbolBeta:t,currentTopicTags:n})=>e||t||n.length},methods:{addQueryParamsToUrl(e){return Object(E["b"])(e,this.$route.query)}}},ye=fe,ge=(n("b1e0"),Object(W["a"])(ye,L,$,!1,null,"20e91056",null)),be=ge.exports,ve={name:"DocumentationNav",components:{NavBase:D["a"],Hierarchy:be},props:{title:{type:String,required:!1},parentTopicIdentifiers:{type:Array,required:!1},isSymbolBeta:{type:Boolean,required:!1},isSymbolDeprecated:{type:Boolean,required:!1},isDark:{type:Boolean,default:!1},hasNoBorder:{type:Boolean,default:!1},currentTopicTags:{type:Array,required:!0}},inject:{references:{default:()=>({})}},computed:{BreakpointName:()=>I["a"],breadcrumbCount:({hierarchyItems:e})=>e.length+1,rootHierarchyReference:({parentTopicIdentifiers:e,references:t})=>t[e[0]]||{},isRootTechnologyLink:({rootHierarchyReference:{kind:e}})=>"technologies"===e,rootLink:({isRootTechnologyLink:e,rootHierarchyReference:t,$route:n})=>e?{path:t.url,query:n.query}:null,hierarchyItems:({parentTopicIdentifiers:e,isRootTechnologyLink:t})=>t?e.slice(1):e}},Ce=ve,_e=(n("243c"),Object(W["a"])(Ce,w,q,!1,null,"324c15b2",null)),Te=_e.exports,ke=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"betainfo"},[n("div",{staticClass:"betainfo-container"},[n("GridRow",[n("GridColumn",{attrs:{span:{large:8,medium:8,small:12},isCentered:{large:!0,medium:!0,small:!0}}},[n("p",{staticClass:"betainfo-label"},[e._v("Beta Software")]),n("div",{staticClass:"betainfo-content"},[e._t("content",(function(){return[n("p",[e._v("This documentation refers to beta software and may be changed.")])]}))],2),e._t("after")],2)],1)],1)])},Se=[],xe=n("0f00"),Oe=n("620a"),je={name:"BetaLegalText",components:{GridColumn:Oe["a"],GridRow:xe["a"]}},Pe=je,Ae=(n("99a2"),Object(W["a"])(Pe,ke,Se,!1,null,"4edf30f4",null)),Be=Ae.exports,we=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Section",{staticClass:"language",attrs:{role:"complementary","aria-label":"Language"}},[n("Title",[e._v("Language")]),n("LanguageSwitcherLink",{staticClass:"language-option swift",class:{active:e.swift.active},attrs:{url:e.swift.active?null:e.swift.url},on:{click:function(t){return e.chooseLanguage(e.swift)}}},[e._v(e._s(e.swift.name))]),n("LanguageSwitcherLink",{staticClass:"language-option objc",class:{active:e.objc.active},attrs:{url:e.objc.active?null:e.objc.url},on:{click:function(t){return e.chooseLanguage(e.objc)}}},[e._v(e._s(e.objc.name))])],1)},qe=[],De=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.url?n("a",{attrs:{href:e.url},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[e._t("default")],2):n("span",[e._t("default")],2)},Ie=[],Le={name:"LanguageSwitcherLink",props:{url:[String,Object]}},$e=Le,Ee=Object(W["a"])($e,De,Ie,!1,null,null,null),Me=Ee.exports,Re=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"summary-section"},[e._t("default")],2)},Ne=[],Ve={name:"Section"},He=Ve,ze=(n("c292"),Object(W["a"])(He,Re,Ne,!1,null,"6185a550",null)),We=ze.exports,Ge=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("p",{staticClass:"title"},[e._t("default")],2)},Ke=[],Fe={name:"Title"},Ue=Fe,Qe=(n("4966"),Object(W["a"])(Ue,Ge,Ke,!1,null,"b903be56",null)),Je=Qe.exports,Xe={name:"LanguageSwitcher",components:{LanguageSwitcherLink:Me,Section:We,Title:Je},inject:{isTargetIDE:{default:()=>!1},store:{default(){return{setPreferredLanguage(){}}}}},props:{interfaceLanguage:{type:String,required:!0},objcPath:{type:String,required:!0},swiftPath:{type:String,required:!0}},computed:{objc:({interfaceLanguage:e,normalizePath:t,objcPath:n,$route:{query:a}})=>({...j["a"].objectiveC,active:j["a"].objectiveC.key.api===e,url:Object(E["b"])(t(n),{...a,language:j["a"].objectiveC.key.url})}),swift:({interfaceLanguage:e,normalizePath:t,swiftPath:n,$route:{query:a}})=>({...j["a"].swift,active:j["a"].swift.key.api===e,url:Object(E["b"])(t(n),{...a,language:void 0})})},methods:{chooseLanguage(e){this.isTargetIDE||this.store.setPreferredLanguage(e.key.url),this.$router.push(e.url)},normalizePath(e){return e.startsWith("/")?e:"/"+e}}},Ye=Xe,Ze=(n("0180"),Object(W["a"])(Ye,we,qe,!1,null,"0836085b",null)),et=Ze.exports,tt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentNode",e._b({staticClass:"abstract"},"ContentNode",e.$props,!1))},nt=[],at=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseContentNode",e._b({},"BaseContentNode",e.$props,!1))},rt=[],st=n("5677"),it={name:"ContentNode",components:{BaseContentNode:st["a"]},props:st["a"].props,methods:st["a"].methods,BlockType:st["a"].BlockType,InlineType:st["a"].InlineType},ot=it,ct=(n("c18a"),Object(W["a"])(ot,at,rt,!1,null,"002affcc",null)),lt=ct.exports,ut={name:"Abstract",components:{ContentNode:lt},props:lt.props},dt=ut,pt=(n("374e"),Object(W["a"])(dt,tt,nt,!1,null,"702ec04e",null)),ht=pt.exports,mt=n("c081"),ft=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:"default-implementations",title:"Default Implementations",isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections,wrapTitle:!0}})},yt=[],gt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentTable",{attrs:{anchor:e.anchor,title:e.title}},e._l(e.sectionsWithTopics,(function(t){return n("ContentTableSection",{key:t.title,attrs:{title:t.title}},[e.wrapTitle?n("template",{slot:"title"},[n("WordBreak",{staticClass:"title",attrs:{tag:"h3"}},[e._v(" "+e._s(t.title)+" ")])],1):e._e(),t.abstract?n("template",{slot:"abstract"},[n("ContentNode",{attrs:{content:t.abstract}})],1):e._e(),t.discussion?n("template",{slot:"discussion"},[n("ContentNode",{attrs:{content:t.discussion.content}})],1):e._e(),e._l(t.topics,(function(t){return n("TopicsLinkBlock",{key:t.identifier,staticClass:"topic",attrs:{topic:t,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}})}))],2)})),1)},bt=[],vt=n("7b1f"),Ct=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("OnThisPageSection",{staticClass:"contenttable alt-light",attrs:{anchor:e.anchor,title:e.title}},[n("div",{staticClass:"container"},[n("h2",{staticClass:"title"},[e._v(e._s(e.title))]),e._t("default")],2)])},_t=[],Tt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",{attrs:{id:e.anchor}},[e._t("default")],2)},kt=[],St={name:"OnThisPageSection",inject:{store:{default(){return{addOnThisPageSection(){}}}}},props:{anchor:{type:String,required:!0},title:{type:String,required:!0}},created(){this.store.addOnThisPageSection({anchor:this.anchor,title:this.title})}},xt=St,Ot=Object(W["a"])(xt,Tt,kt,!1,null,null,null),jt=Ot.exports,Pt={name:"ContentTable",components:{OnThisPageSection:jt},props:{anchor:{type:String,required:!0},title:{type:String,required:!0}}},At=Pt,Bt=(n("61ca"),Object(W["a"])(At,Ct,_t,!1,null,"1a780186",null)),wt=Bt.exports,qt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Row",{staticClass:"contenttable-section"},[n("Column",{staticClass:"section-title",attrs:{span:e.span.title}},[e._t("title",(function(){return[n("h3",{staticClass:"title"},[e._v(e._s(e.title))])]}))],2),n("Column",{staticClass:"section-content",attrs:{span:e.span.content}},[e._t("abstract"),e._t("discussion"),e._t("default")],2)],1)},Dt=[],It={name:"ContentTableSection",components:{Column:Oe["a"],Row:xe["a"]},props:{title:{type:String,required:!0}},computed:{span(){return{title:{large:3,medium:3,small:12},content:{large:9,medium:9,small:12}}}}},Lt=It,$t=(n("813b"),Object(W["a"])(Lt,qt,Dt,!1,null,"bedf02be",null)),Et=$t.exports,Mt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"link-block",class:e.linkBlockClasses},[n(e.linkComponent,e._b({ref:"apiChangesDiff",tag:"component",staticClass:"link",class:e.linkClasses},"component",e.linkProps,!1),[e.topic.role?n("TopicLinkBlockIcon",{attrs:{role:e.topic.role}}):e._e(),e.topic.fragments?n("DecoratedTopicTitle",{attrs:{tokens:e.topic.fragments}}):n("WordBreak",{attrs:{tag:e.titleTag}},[e._v(e._s(e.topic.title))]),e.change?n("span",{staticClass:"visuallyhidden"},[e._v("- "+e._s(e.changeName))]):e._e()],1),e.hasAbstractElements?n("div",{staticClass:"abstract"},[e.topic.abstract?n("ContentNode",{attrs:{content:e.topic.abstract}}):e._e(),e.topic.ideTitle?n("div",{staticClass:"topic-keyinfo"},[e.topic.titleStyle===e.titleStyles.title?[n("strong",[e._v("Key:")]),e._v(" "+e._s(e.topic.name)+" ")]:e.topic.titleStyle===e.titleStyles.symbol?[n("strong",[e._v("Name:")]),e._v(" "+e._s(e.topic.ideTitle)+" ")]:e._e()],2):e._e(),e.topic.required||e.topic.defaultImplementations?n("RequirementMetadata",{staticClass:"topic-required",attrs:{defaultImplementationsCount:e.topic.defaultImplementations}}):e._e(),e.topic.conformance?n("ConditionalConstraints",{attrs:{constraints:e.topic.conformance.constraints,prefix:e.topic.conformance.availabilityPrefix}}):e._e()],1):e._e(),e.showDeprecatedBadge?n("Badge",{attrs:{variant:"deprecated"}}):e.showBetaBadge?n("Badge",{attrs:{variant:"beta"}}):e._e(),e._l(e.tags,(function(t){return n("Badge",{key:t.type+"-"+t.text,attrs:{variant:t.type}},[e._v(" "+e._s(t.text)+" ")])}))],2)},Rt=[],Nt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.icon?n("div",{staticClass:"topic-icon-wrapper"},[n(e.icon,{tag:"component",staticClass:"topic-icon"})],1):e._e()},Vt=[],Ht=n("a9f1"),zt=n("3b96"),Wt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"api-reference-icon",attrs:{viewBox:"0 0 14 14"}},[n("title",[e._v("API Reference")]),n("path",{attrs:{d:"M13 1v12h-12v-12zM12 2h-10v10h10z"}}),n("path",{attrs:{d:"M3 4h8v1h-8z"}}),n("path",{attrs:{d:"M3 6.5h8v1h-8z"}}),n("path",{attrs:{d:"M3 9h8v1h-8z"}})])},Gt=[],Kt={name:"APIReferenceIcon",components:{SVGIcon:Y["a"]}},Ft=Kt,Ut=Object(W["a"])(Ft,Wt,Gt,!1,null,null,null),Qt=Ut.exports,Jt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14"}},[n("title",[e._v("Web Service Endpoint")]),n("path",{attrs:{d:"M4.052 8.737h-1.242l-1.878 5.263h1.15l0.364-1.081h1.939l0.339 1.081h1.193zM2.746 12.012l0.678-2.071 0.653 2.071z"}}),n("path",{attrs:{d:"M11.969 8.737h1.093v5.263h-1.093v-5.263z"}}),n("path",{attrs:{d:"M9.198 8.737h-2.295v5.263h1.095v-1.892h1.12c0.040 0.003 0.087 0.004 0.134 0.004 0.455 0 0.875-0.146 1.217-0.394l-0.006 0.004c0.296-0.293 0.48-0.699 0.48-1.148 0-0.060-0.003-0.118-0.010-0.176l0.001 0.007c0.003-0.039 0.005-0.085 0.005-0.131 0-0.442-0.183-0.842-0.476-1.128l-0-0c-0.317-0.256-0.724-0.41-1.168-0.41-0.034 0-0.069 0.001-0.102 0.003l0.005-0zM9.628 11.014c-0.15 0.118-0.341 0.188-0.548 0.188-0.020 0-0.040-0.001-0.060-0.002l0.003 0h-1.026v-1.549h1.026c0.017-0.001 0.037-0.002 0.058-0.002 0.206 0 0.396 0.066 0.551 0.178l-0.003-0.002c0.135 0.13 0.219 0.313 0.219 0.515 0 0.025-0.001 0.050-0.004 0.074l0-0.003c0.002 0.020 0.003 0.044 0.003 0.068 0 0.208-0.083 0.396-0.219 0.534l0-0z"}}),n("path",{attrs:{d:"M13.529 4.981c0-1.375-1.114-2.489-2.489-2.49h-0l-0.134 0.005c-0.526-1.466-1.903-2.496-3.522-2.496-0.892 0-1.711 0.313-2.353 0.835l0.007-0.005c-0.312-0.243-0.709-0.389-1.14-0.389-1.030 0-1.865 0.834-1.866 1.864v0c0 0.001 0 0.003 0 0.004 0 0.123 0.012 0.242 0.036 0.358l-0.002-0.012c-0.94 0.37-1.593 1.27-1.593 2.323 0 1.372 1.11 2.485 2.482 2.49h8.243c1.306-0.084 2.333-1.164 2.333-2.484 0-0.001 0-0.002 0-0.003v0zM11.139 6.535h-8.319c-0.799-0.072-1.421-0.739-1.421-1.551 0-0.659 0.41-1.223 0.988-1.45l0.011-0.004 0.734-0.28-0.148-0.776-0.012-0.082v-0.088c0-0 0-0.001 0-0.001 0-0.515 0.418-0.933 0.933-0.933 0.216 0 0.416 0.074 0.574 0.197l-0.002-0.002 0.584 0.453 0.575-0.467 0.169-0.127c0.442-0.306 0.991-0.489 1.581-0.489 1.211 0 2.243 0.769 2.633 1.846l0.006 0.019 0.226 0.642 0.814-0.023 0.131 0.006c0.805 0.067 1.432 0.736 1.432 1.552 0 0.836-0.659 1.518-1.486 1.556l-0.003 0z"}})])},Xt=[],Yt={name:"EndpointIcon",components:{SVGIcon:Y["a"]}},Zt=Yt,en=Object(W["a"])(Zt,Jt,Xt,!1,null,null,null),tn=en.exports,nn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M0 0.948h2.8v2.8h-2.8z"}}),n("path",{attrs:{d:"M11.2 10.252h2.8v2.8h-2.8z"}}),n("path",{attrs:{d:"M6.533 1.852h0.933v10.267h-0.933z"}}),n("path",{attrs:{d:"M2.8 1.852h4.667v0.933h-4.667z"}}),n("path",{attrs:{d:"M6.533 11.186h4.667v0.933h-4.667z"}})])},an=[],rn={name:"PathIcon",components:{SVGIcon:Y["a"]}},sn=rn,on=Object(W["a"])(sn,nn,an,!1,null,null,null),cn=on.exports,ln=n("8d2d"),un=n("66cd");const dn={[un["a"].article]:Ht["a"],[un["a"].collectionGroup]:Qt,[un["a"].learn]:cn,[un["a"].overview]:cn,[un["a"].project]:ln["a"],[un["a"].tutorial]:ln["a"],[un["a"].resources]:cn,[un["a"].sampleCode]:zt["a"],[un["a"].restRequestSymbol]:tn};var pn,hn,mn,fn,yn,gn,bn,vn,Cn={props:{role:{type:String,required:!0}},computed:{icon:({role:e})=>dn[e]}},_n=Cn,Tn=(n("1a47"),Object(W["a"])(_n,Nt,Vt,!1,null,"4d1e7968",null)),kn=Tn.exports,Sn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("code",{staticClass:"decorated-title"},e._l(e.tokens,(function(t,a){return n(e.componentFor(t),{key:a,tag:"component",class:[e.classFor(t),e.emptyTokenClass(t)]},[e._v(e._s(t.text))])})),1)},xn=[],On={name:"ChangedToken",render(e){const{kind:t,tokens:n}=this;return e("span",{class:["token-"+t,"token-changed"]},n.map(t=>e(Qn,{props:t})))},props:{kind:{type:String,required:!0},tokens:{type:Array,required:!0}}},jn=On,Pn=Object(W["a"])(jn,pn,hn,!1,null,null,null),An=Pn.exports,Bn={name:"RawText",render(e){const{_v:t=(t=>e("span",t)),text:n}=this;return t(n)},props:{text:{type:String,required:!0}}},wn=Bn,qn=Object(W["a"])(wn,mn,fn,!1,null,null,null),Dn=qn.exports,In={name:"SyntaxToken",render(e){return e("span",{class:"token-"+this.kind},this.text)},props:{kind:{type:String,required:!0},text:{type:String,required:!0}}},Ln=In,$n=Object(W["a"])(Ln,yn,gn,!1,null,null,null),En=$n.exports,Mn=n("86d8"),Rn={name:"TypeIdentifierLink",inject:{references:{default(){return{}}}},render(e){const t="type-identifier-link",n=this.references[this.identifier];return n&&n.url?e(Mn["a"],{class:t,props:{url:n.url,kind:n.kind,role:n.role}},this.$slots.default):e("span",{class:t},this.$slots.default)},props:{identifier:{type:String,required:!0,default:()=>""}}},Nn=Rn,Vn=Object(W["a"])(Nn,bn,vn,!1,null,null,null),Hn=Vn.exports;const zn={attribute:"attribute",externalParam:"externalParam",genericParameter:"genericParameter",identifier:"identifier",internalParam:"internalParam",keyword:"keyword",label:"label",number:"number",string:"string",text:"text",typeIdentifier:"typeIdentifier",added:"added",removed:"removed"};var Wn,Gn,Kn={name:"DeclarationToken",render(e){const{kind:t,text:n,tokens:a}=this;switch(t){case zn.text:{const t={text:n};return e(Dn,{props:t})}case zn.typeIdentifier:{const t={identifier:this.identifier};return e(Hn,{props:t},[e(vt["a"],n)])}case zn.added:case zn.removed:return e(An,{props:{tokens:a,kind:t}});default:{const a={kind:t,text:n};return e(En,{props:a})}}},constants:{TokenKind:zn},props:{kind:{type:String,required:!0},identifier:{type:String,required:!1},text:{type:String,required:!1},tokens:{type:Array,required:!1,default:()=>[]}}},Fn=Kn,Un=(n("c36f"),Object(W["a"])(Fn,Wn,Gn,!1,null,"5caf1b5b",null)),Qn=Un.exports;const{TokenKind:Jn}=Qn.constants,Xn={decorator:"decorator",identifier:"identifier",label:"label"};var Yn={name:"DecoratedTopicTitle",components:{WordBreak:vt["a"]},props:{tokens:{type:Array,required:!0,default:()=>[]}},constants:{TokenKind:Jn},methods:{emptyTokenClass:({text:e})=>({"empty-token":" "===e}),classFor({kind:e}){switch(e){case Jn.externalParam:case Jn.identifier:return Xn.identifier;case Jn.label:return Xn.label;default:return Xn.decorator}},componentFor(e){return/^\s+$/.test(e.text)?"span":vt["a"]}}},Zn=Yn,ea=(n("dcf6"),Object(W["a"])(Zn,Sn,xn,!1,null,"06ec7395",null)),ta=ea.exports,na=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentNode",{staticClass:"conditional-constraints",attrs:{content:e.content}})},aa=[],ra={name:"ConditionalConstraints",components:{ContentNode:lt},props:{constraints:lt.props.content,prefix:lt.props.content},computed:{content:({constraints:e,prefix:t,space:n})=>t.concat(n).concat(e),space:()=>({type:lt.InlineType.text,text:" "})}},sa=ra,ia=(n("918a"),Object(W["a"])(sa,na,aa,!1,null,"1548fd90",null)),oa=ia.exports,ca=function(e,t){var n=t._c;return n("p",{staticClass:"requirement-metadata",class:t.data.staticClass},[n("strong",[t._v("Required.")]),t.props.defaultImplementationsCount?[t._v(" Default implementation"+t._s(t.props.defaultImplementationsCount>1?"s":"")+" provided. ")]:t._e()],2)},la=[],ua={name:"RequirementMetadata",props:{defaultImplementationsCount:{type:Number,default:0}}},da=ua,pa=Object(W["a"])(da,ca,la,!0,null,null,null),ha=pa.exports;const ma={added:"added",modified:"modified",deprecated:"deprecated"},fa=(ma.modified,ma.added,ma.deprecated,{[ma.modified]:"Modified",[ma.added]:"Added",[ma.deprecated]:"Deprecated"}),ya="has-multiple-lines";function ga(e){if(!e)return!1;const t=window.getComputedStyle(e.$el||e),n=(e.$el||e).offsetHeight,a=t.lineHeight?parseFloat(t.lineHeight):1,r=t.paddingTop?parseFloat(t.paddingTop):0,s=t.paddingBottom?parseFloat(t.paddingBottom):0,i=t.borderTopWidth?parseFloat(t.borderTopWidth):0,o=t.borderBottomWidth?parseFloat(t.borderBottomWidth):0,c=n-(r+s+i+o),l=c/a;return l>=2}const ba="latest_",va={xcode:{value:"xcode",label:"Xcode"},other:{value:"other",label:"Other"}},Ca={constants:{multipleLinesClass:ya},data(){return{multipleLinesClass:ya}},computed:{hasMultipleLinesAfterAPIChanges:({change:e,changeType:t,$refs:n})=>!(!e&&!t)&&ga(n.apiChangesDiff)}},_a={methods:{toVersionRange({platform:e,versions:t}){return`${e} ${t[0]} – ${e} ${t[1]}`},toOptionValue:e=>`${ba}${e}`,toScope:e=>e.slice(ba.length,e.length),getOptionsForDiffAvailability(e={}){return this.getOptionsForDiffAvailabilities([e])},getOptionsForDiffAvailabilities(e=[]){const t=e.reduce((e,t={})=>Object.keys(t).reduce((e,n)=>({...e,[n]:(e[n]||[]).concat(t[n])}),e),{}),n=Object.keys(t),a=n.reduce((e,n)=>{const a=t[n];return{...e,[n]:a.find(e=>e.platform===va.xcode.label)||a[0]}},{}),r=e=>({label:this.toVersionRange(a[e]),value:this.toOptionValue(e),platform:a[e].platform}),{sdk:s,beta:i,minor:o,major:c,...l}=a,u=[].concat(s?r("sdk"):[]).concat(i?r("beta"):[]).concat(o?r("minor"):[]).concat(c?r("major"):[]).concat(Object.keys(l).map(r));return this.splitOptionsPerPlatform(u)},changesClassesFor(e,t){const n=this.changeFor(e,t);return this.getChangesClasses(n)},getChangesClasses:e=>({["changed changed-"+e]:!!e}),changeFor(e,t){const{change:n}=(t||{})[e]||{};return n},splitOptionsPerPlatform(e){return e.reduce((e,t)=>{const n=t.platform===va.xcode.label?va.xcode.value:va.other.value;return e[n].push(t),e},{[va.xcode.value]:[],[va.other.value]:[]})},getChangeName(e){return fa[e]}},computed:{availableOptions({diffAvailability:e={},toOptionValue:t}){return new Set(Object.keys(e).map(t))}}},Ta={article:"article",symbol:"symbol"},ka={title:"title",symbol:"symbol"},Sa={link:"link"};var xa={name:"TopicsLinkBlock",components:{Badge:K,WordBreak:vt["a"],ContentNode:lt,TopicLinkBlockIcon:kn,DecoratedTopicTitle:ta,RequirementMetadata:ha,ConditionalConstraints:oa},inject:["store"],mixins:[_a,Ca],constants:{ReferenceType:Sa,TopicKind:Ta,TitleStyles:ka},props:{isSymbolBeta:Boolean,isSymbolDeprecated:Boolean,topic:{type:Object,required:!0,validator:e=>(!("abstract"in e)||Array.isArray(e.abstract))&&"string"===typeof e.identifier&&(e.type===Sa.link&&!e.kind||"string"===typeof e.kind)&&(e.type===Sa.link&&!e.role||"string"===typeof e.role)&&"string"===typeof e.title&&"string"===typeof e.url&&(!("defaultImplementations"in e)||"number"===typeof e.defaultImplementations)&&(!("required"in e)||"boolean"===typeof e.required)&&(!("conformance"in e)||"object"===typeof e.conformance)}},data(){return{state:this.store.state}},computed:{linkComponent:({topic:e})=>e.type===Sa.link?"a":"router-link",linkProps({topic:e}){const t=Object(E["b"])(e.url,this.$route.query);return e.type===Sa.link?{href:t}:{to:t}},linkBlockClasses:({changesClasses:e,hasAbstractElements:t,hasMultipleLinesAfterAPIChanges:n,multipleLinesClass:a})=>({"has-inline-element":!t,[a]:n,...!t&&e}),linkClasses:({changesClasses:e,deprecated:t,hasAbstractElements:n})=>({deprecated:t,"has-adjacent-elements":n,...n&&e}),changesClasses:({getChangesClasses:e,change:t})=>e(t),titleTag({topic:e}){if(e.titleStyle===ka.title)return e.ideTitle?"span":"code";switch(e.kind){case Ta.symbol:return"code";default:return"span"}},titleStyles:()=>ka,deprecated:({showDeprecatedBadge:e,topic:t})=>e||t.deprecated,showBetaBadge:({topic:e,isSymbolBeta:t})=>Boolean(!t&&e.beta),showDeprecatedBadge:({topic:e,isSymbolDeprecated:t})=>Boolean(!t&&e.deprecated),change({topic:{identifier:e},state:{apiChanges:t}}){return this.changeFor(e,t)},changeName:({change:e,getChangeName:t})=>t(e),hasAbstractElements:({topic:{abstract:e,conformance:t,required:n,defaultImplementations:a}}={})=>e&&e.length>0||t||n||a,tags:({topic:e})=>(e.tags||[]).slice(0,1)}},Oa=xa,ja=(n("f6d7"),Object(W["a"])(Oa,Mt,Rt,!1,null,"1e5f16e7",null)),Pa=ja.exports,Aa={name:"TopicsTable",inject:{references:{default(){return{}}}},components:{WordBreak:vt["a"],ContentTable:wt,TopicsLinkBlock:Pa,ContentNode:lt,ContentTableSection:Et},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:{type:Array,required:!0},title:{type:String,required:!1,default(){return"Topics"}},anchor:{type:String,required:!1,default(){return"topics"}},wrapTitle:{type:Boolean,default:!1}},computed:{sectionsWithTopics(){return this.sections.map(e=>({...e,topics:e.identifiers.reduce((e,t)=>this.references[t]?e.concat(this.references[t]):e,[])}))}}},Ba=Aa,wa=(n("0d16"),Object(W["a"])(Ba,gt,bt,!1,null,"3e48ad3a",null)),qa=wa.exports,Da={name:"DefaultImplementations",components:{TopicsTable:qa},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:qa.props.sections}},Ia=Da,La=Object(W["a"])(Ia,ft,yt,!1,null,null,null),$a=La.exports,Ea=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"description"},[e.$slots.default||e.hasOverview?e._e():n("p",{staticClass:"nodocumentation"},[e._v(" No overview available. ")]),e._t("default")],2)},Ma=[],Ra={name:"Description",props:{hasOverview:{type:Boolean,default:()=>!1}}},Na=Ra,Va=(n("1eff"),Object(W["a"])(Na,Ea,Ma,!1,null,"3b0e7cbb",null)),Ha=Va.exports,za=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Section",{staticClass:"technologies",attrs:{role:"complementary","aria-label":e.computedTitle}},[n("Title",[e._v(e._s(e.computedTitle))]),n("List",e._l(e.technologies,(function(t){return n("Item",{key:t.name},[n("WordBreak",{staticClass:"name"},[e._v(e._s(t.name))]),e._l(t.relatedModules||[],(function(t){return n("WordBreak",{key:t,staticClass:"name"},[e._v(e._s(t)+" ")])}))],2)})),1)],1)},Wa=[],Ga=n("002d"),Ka=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{staticClass:"summary-list"},[e._t("default")],2)},Fa=[],Ua={name:"List"},Qa=Ua,Ja=(n("9cb2"),Object(W["a"])(Qa,Ka,Fa,!1,null,"731de2f2",null)),Xa=Ja.exports,Ya=function(){var e,t=this,n=t.$createElement,a=t._self._c||n;return a("li",{ref:"apiChangesDiff",staticClass:"summary-list-item",class:(e={},e[t.multipleLinesClass]=t.hasMultipleLinesAfterAPIChanges,e)},[t._t("default")],2)},Za=[],er={name:"ListItem",mixins:[Ca],props:{change:{type:Boolean,default:()=>!1}}},tr=er,nr=(n("67dc"),Object(W["a"])(tr,Ya,Za,!1,null,"1648b0ac",null)),ar=nr.exports,rr={name:"TechnologyList",components:{Item:ar,List:Xa,Section:We,Title:Je,WordBreak:vt["a"]},props:{technologies:{type:Array,required:!0},title:{type:String,required:!1}},computed:{computedTitle:({title:e,defaultTitle:t})=>e||t,defaultTitle:({technologies:e})=>Object(Ga["d"])({en:{one:"Technology",other:"Technologies"}},e.length)}},sr=rr,ir=(n("8c8d"),Object(W["a"])(sr,za,Wa,!1,null,"4616e162",null)),or=ir.exports,cr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Section",{staticClass:"on-this-page"},[n("nav",{attrs:{"aria-labelledby":"on-this-page-title"}},[n("Title",{attrs:{id:"on-this-page-title"}},[e._v("On This Page")]),n("List",e._l(e.sectionsWithFragments,(function(t){return n("ListItem",{key:t.anchor},[n("router-link",{staticClass:"link",attrs:{to:e.buildUrl(t.fragment,e.$route.query)}},[n("span",{staticClass:"link-text"},[e._v(e._s(t.title))]),n("span",{staticClass:"icon-holder",attrs:{"aria-hidden":"true"}},[e._v(" "),n("InlineChevronDownCircleIcon",{staticClass:"link-icon icon-inline"})],1)])],1)})),1)],1)])},lr=[],ur=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-chevron-down-circle-icon",attrs:{viewBox:"0 0 14 14"}},[n("polygon",{attrs:{points:"10.1 4 11 4.7 7 10 3 4.7 3.9 4 7 8 10.1 4"}})])},dr=[],pr={name:"InlineChevronDownCircleIcon",components:{SVGIcon:Y["a"]}},hr=pr,mr=Object(W["a"])(hr,ur,dr,!1,null,null,null),fr=mr.exports,yr={name:"OnThisPageNav",components:{InlineChevronDownCircleIcon:fr,List:Xa,ListItem:ar,Section:We,Title:Je},props:{sections:{type:Array,required:!0}},computed:{sectionsWithFragments(){return this.sections.map(({anchor:e,title:t})=>({anchor:e,fragment:"#"+e,title:t}))}},methods:{buildUrl:E["b"]}},gr=yr,br=(n("5245"),Object(W["a"])(gr,cr,lr,!1,null,"7e43087c",null)),vr=br.exports,Cr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"primary-content"},e._l(e.sections,(function(t,a){return n(e.componentFor(t),e._b({key:a,tag:"component"},"component",e.propsFor(t),!1))})),1)},_r=[],Tr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("OnThisPageSection",{attrs:{anchor:"possibleValues",title:"PossibleValues"}},[n("h2",[e._v("Possible Values")]),n("dl",{staticClass:"datalist"},[e._l(e.values,(function(t){return[n("dt",{key:t.name+":name",staticClass:"param-name"},[n("code",[e._v(e._s(t.name))])]),t.content?n("dd",{key:t.name+":content",staticClass:"value-content"},[n("ContentNode",{attrs:{content:t.content}})],1):e._e()]}))],2)])},kr=[],Sr={name:"PossibleValues",components:{ContentNode:st["a"],OnThisPageSection:jt},props:{values:{type:Array,required:!0}}},xr=Sr,Or=(n("719b"),Object(W["a"])(xr,Tr,kr,!1,null,null,null)),jr=Or.exports,Pr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("OnThisPageSection",{attrs:{anchor:e.anchor,title:e.title}},[n("h2",[e._v(e._s(e.title))]),n("DeclarationSource",{attrs:{tokens:e.tokens}})],1)},Ar=[],Br=function(){var e,t=this,n=t.$createElement,a=t._self._c||n;return a("pre",{ref:"declarationGroup",staticClass:"source",class:(e={indented:t.simpleIndent},e[t.multipleLinesClass]=t.hasMultipleLines,e)},[a("code",{ref:"code"},t._l(t.tokens,(function(e,n){return a("Token",t._b({key:n},"Token",t.propsFor(e),!1))})),1)])},wr=[];function qr(e){const t=e.getElementsByClassName("token-identifier");if(t.length<2)return;const n=e.textContent.indexOf(":")+1;for(let a=1;a=a.length)return;const r=e.textContent.indexOf("(");for(let s=n;sObject(Ga["a"])(e)}},Nr=Rr,Vr=Object(W["a"])(Nr,Pr,Ar,!1,null,null,null),Hr=Vr.exports,zr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("OnThisPageSection",{staticClass:"declaration",attrs:{anchor:"declaration",title:"Declaration"}},[n("h2",[e._v("Declaration")]),e.hasModifiedChanges?[n("DeclarationDiff",{class:[e.changeClasses,e.multipleLinesClass],attrs:{changes:e.declarationChanges,changeType:e.changeType}})]:e._l(e.declarations,(function(t,a){return n("DeclarationGroup",{key:a,class:e.changeClasses,attrs:{declaration:t,shouldCaption:e.hasPlatformVariants,changeType:e.changeType}})})),e.conformance?n("ConditionalConstraints",{attrs:{constraints:e.conformance.constraints,prefix:e.conformance.availabilityPrefix}}):e._e()],2)},Wr=[],Gr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{ref:"apiChangesDiff",staticClass:"declaration-group",class:e.classes},[e.shouldCaption?n("p",{staticClass:"platforms"},[n("strong",[e._v(e._s(e.caption))])]):e._e(),n("Source",{attrs:{tokens:e.declaration.tokens,"simple-indent":e.isSwift&&!e.isCocoaApi,"smart-indent":e.isCocoaApi,language:e.interfaceLanguage}})],1)},Kr=[],Fr={name:"DeclarationGroup",components:{Source:Mr},mixins:[Ca],inject:{languages:{default:()=>new Set},interfaceLanguage:{default:()=>j["a"].swift.key.api}},props:{declaration:{type:Object,required:!0},shouldCaption:{type:Boolean,default:!1},changeType:{type:String,required:!1}},computed:{classes:({changeType:e,multipleLinesClass:t,hasMultipleLinesAfterAPIChanges:n})=>({["declaration-group--changed declaration-group--"+e]:e,[t]:n}),caption(){return this.declaration.platforms.join(", ")},isSwift:({interfaceLanguage:e})=>e===j["a"].swift.key.api,isCocoaApi:({languages:e})=>e.has(j["a"].objectiveC.key.api)}},Ur=Fr,Qr=(n("1d1c"),Object(W["a"])(Ur,Gr,Kr,!1,null,"1dc256a6",null)),Jr=Qr.exports,Xr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"declaration-diff"},[n("div",{staticClass:"declaration-diff-current"},[n("div",{staticClass:"declaration-diff-version"},[e._v("Current")]),e._l(e.currentDeclarations,(function(t,a){return n("DeclarationGroup",{key:a,attrs:{declaration:t,"should-caption":e.currentDeclarations.length>1,changeType:e.changeType}})}))],2),n("div",{staticClass:"declaration-diff-previous"},[n("div",{staticClass:"declaration-diff-version"},[e._v("Previous")]),e._l(e.previousDeclarations,(function(t,a){return n("DeclarationGroup",{key:a,attrs:{declaration:t,"should-caption":e.previousDeclarations.length>1,changeType:e.changeType}})}))],2)])},Yr=[],Zr={name:"DeclarationDiff",components:{DeclarationGroup:Jr},props:{changes:{type:Object,required:!0},changeType:{type:String,required:!0}},computed:{previousDeclarations:({changes:e})=>e.declaration.previous||[],currentDeclarations:({changes:e})=>e.declaration.new||[]}},es=Zr,ts=(n("3dca"),Object(W["a"])(es,Xr,Yr,!1,null,"676d8556",null)),ns=ts.exports,as={name:"Declaration",components:{DeclarationDiff:ns,DeclarationGroup:Jr,ConditionalConstraints:oa,OnThisPageSection:jt},constants:{ChangeTypes:ma,multipleLinesClass:ya},inject:["identifier","store"],data:({store:{state:e}})=>({state:e,multipleLinesClass:ya}),props:{conformance:{type:Object,required:!1},declarations:{type:Array,required:!0}},computed:{hasPlatformVariants(){return this.declarations.length>1},hasModifiedChanges({declarationChanges:e}){if(!e||!e.declaration)return!1;const t=e.declaration;return!(!(t.new||[]).length||!(t.previous||[]).length)},declarationChanges:({state:{apiChanges:e},identifier:t})=>e&&e[t],changeType:({declarationChanges:e,hasModifiedChanges:t})=>{if(!e)return;const n=e.declaration;return n?t?ma.modified:e.change:e.change===ma.added?ma.added:void 0},changeClasses:({changeType:e})=>({["changed changed-"+e]:e})}},rs=as,ss=(n("4340"),Object(W["a"])(rs,zr,Wr,!1,null,"e39c4ee4",null)),is=ss.exports,os=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("OnThisPageSection",{staticClass:"details",attrs:{anchor:"details",title:"Details"}},[n("h2",[e._v("Details")]),n("dl",[e.isSymbol?[n("dt",{key:e.details.name+":name",staticClass:"detail-type"},[e._v(" Name ")]),n("dd",{key:e.details.ideTitle+":content",staticClass:"detail-content"},[e._v(" "+e._s(e.details.ideTitle)+" ")])]:e._e(),e.isTitle?[n("dt",{key:e.details.name+":key",staticClass:"detail-type"},[e._v(" Key ")]),n("dd",{key:e.details.ideTitle+":content",staticClass:"detail-content"},[e._v(" "+e._s(e.details.name)+" ")])]:e._e(),n("dt",{key:e.details.name+":type",staticClass:"detail-type"},[e._v(" Type ")]),n("dd",{staticClass:"detail-content"},[n("PropertyListKeyType",{attrs:{types:e.details.value}})],1)],2)])},cs=[],ls=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"type"},[e._v(e._s(e.typeOutput))])},us=[],ds={name:"PropertyListKeyType",props:{types:{type:Array,required:!0}},computed:{englishTypes(){return this.types.map(({arrayMode:e,baseType:t="*"})=>e?"array of "+this.pluralizeKeyType(t):t)},typeOutput(){return this.englishTypes.length>2?[this.englishTypes.slice(0,this.englishTypes.length-1).join(", "),this.englishTypes[this.englishTypes.length-1]].join(", or "):this.englishTypes.join(" or ")}},methods:{pluralizeKeyType(e){switch(e){case"dictionary":return"dictionaries";case"array":case"number":case"string":return e+"s";default:return e}}}},ps=ds,hs=(n("f7c0"),Object(W["a"])(ps,ls,us,!1,null,"791bac44",null)),ms=hs.exports,fs={name:"PropertyListKeyDetails",components:{PropertyListKeyType:ms,OnThisPageSection:jt},props:{details:{type:Object,required:!0}},computed:{isTitle(){return"title"===this.details.titleStyle&&this.details.ideTitle},isSymbol(){return"symbol"===this.details.titleStyle&&this.details.ideTitle}}},ys=fs,gs=(n("a705"),Object(W["a"])(ys,os,cs,!1,null,"61ef551b",null)),bs=gs.exports,vs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentNode",e._b({},"ContentNode",e.$props,!1))},Cs=[],_s={name:"GenericContent",inject:{store:{default(){return{addOnThisPageSection(){}}}}},components:{ContentNode:lt},props:lt.props,methods:{...lt.methods,addOnThisPageSections(){const{isTopLevelHeading:e,store:t}=this;this.forEach(n=>{e(n)&&t.addOnThisPageSection({anchor:n.anchor,title:n.text})})},isTopLevelHeading(e){const{level:t,type:n}=e;return n===lt.BlockType.heading&&2===t}},created(){this.addOnThisPageSections()}},Ts=_s,ks=Object(W["a"])(Ts,vs,Cs,!1,null,null,null),Ss=ks.exports,xs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("OnThisPageSection",{staticClass:"parameters",attrs:{anchor:"parameters",title:"Parameters"}},[n("h2",[e._v("Parameters")]),n("dl",[e._l(e.parameters,(function(t){return[n("dt",{key:t.name+":name",staticClass:"param-name"},[n("code",[e._v(e._s(t.name))])]),n("dd",{key:t.name+":content",staticClass:"param-content"},[n("ContentNode",{attrs:{content:t.content}})],1)]}))],2)])},Os=[],js={name:"Parameters",components:{ContentNode:lt,OnThisPageSection:jt},props:{parameters:{type:Array,required:!0}}},Ps=js,As=(n("09db"),Object(W["a"])(Ps,xs,Os,!1,null,"7bb7c035",null)),Bs=As.exports,ws=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("OnThisPageSection",{attrs:{anchor:e.anchor,title:e.title}},[n("h2",[e._v(e._s(e.title))]),n("ParametersTable",{staticClass:"property-table",attrs:{parameters:e.properties,changes:e.propertyChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var a=t.name,r=t.type,s=t.content,i=t.changes,o=t.deprecated;return[n("div",{staticClass:"property-name",class:{deprecated:o}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(a))])],1),e.shouldShiftType({name:a,content:s})?e._e():n("PossiblyChangedType",{attrs:{type:r,changes:i.type}})]}},{key:"description",fn:function(t){var a=t.name,r=t.type,s=t.attributes,i=t.content,o=t.required,c=t.changes,l=t.deprecated;return[e.shouldShiftType({name:a,content:i})?n("PossiblyChangedType",{attrs:{type:r,changes:c.type}}):e._e(),l?[n("Badge",{staticClass:"property-deprecated",attrs:{variant:"deprecated"}}),e._v("  ")]:e._e(),n("PossiblyChangedRequiredAttribute",{attrs:{required:o,changes:c.required}}),i?n("ContentNode",{attrs:{content:i}}):e._e(),n("ParameterAttributes",{attrs:{attributes:s,changes:c.attributes}})]}}])})],1)},qs=[],Ds={inject:["identifier","store"],data:({store:{state:e}})=>({state:e}),computed:{apiChanges:({state:{apiChanges:e},identifier:t})=>e&&e[t]}},Is=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"parameters-table"},e._l(e.parameters,(function(t){return n("Row",{key:t[e.keyBy],staticClass:"param",class:e.changedClasses(t[e.keyBy])},[n("Column",{staticClass:"param-symbol",attrs:{span:{large:3,small:12}}},[e._t("symbol",null,null,e.getProps(t,e.changes[t[e.keyBy]]))],2),n("Column",{staticClass:"param-content",attrs:{span:{large:9,small:12}}},[e._t("description",null,null,e.getProps(t,e.changes[t[e.keyBy]]))],2)],1)})),1)},Ls=[],$s={name:"ParametersTable",components:{Row:xe["a"],Column:Oe["a"]},props:{parameters:{type:Array,required:!0},changes:{type:Object,default:()=>({})},keyBy:{type:String,default:"name"}},methods:{getProps(e,t={}){return{...e,changes:t}},changedClasses(e){const{changes:t}=this,{change:n}=t[e]||{};return{["changed changed-"+n]:n}}}},Es=$s,Ms=(n("85b8"),Object(W["a"])(Es,Is,Ls,!1,null,"1455266b",null)),Rs=Ms.exports,Ns=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"parameter-attributes"},[e.shouldRender(e.AttributeKind.default)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var a=t.attribute;return[e._v(" "+e._s(a.title||"Default")+": "),n("code",[e._v(e._s(a.value))])]}}],null,!1,4247435012)},"ParameterMetaAttribute",{kind:e.AttributeKind.default,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.minimum)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var a=t.attribute;return[e._v(" "+e._s(a.title||"Minimum")+": "),n("code",[e._v(e._s(a.value))])]}}],null,!1,455861177)},"ParameterMetaAttribute",{kind:e.AttributeKind.minimum,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.minimumExclusive)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var a=t.attribute;return[e._v(" "+e._s(a.title||"Minimum")+": "),n("code",[e._v("> "+e._s(a.value))])]}}],null,!1,3844501612)},"ParameterMetaAttribute",{kind:e.AttributeKind.minimumExclusive,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.maximum)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var a=t.attribute;return[e._v(" "+e._s(a.title||"Maximum")+": "),n("code",[e._v(e._s(a.value))])]}}],null,!1,19641767)},"ParameterMetaAttribute",{kind:e.AttributeKind.maximum,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.maximumExclusive)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var a=t.attribute;return[e._v(" "+e._s(a.title||"Maximum")+": "),n("code",[e._v("< "+e._s(a.value))])]}}],null,!1,4289558576)},"ParameterMetaAttribute",{kind:e.AttributeKind.maximumExclusive,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.allowedTypes)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var a=t.attribute;return[e._v(" "+e._s(e.fallbackToValues(a).length>1?"Possible types":"Type")+": "),n("code",[e._l(e.fallbackToValues(a),(function(t,r){return[e._l(t,(function(t,s){return[n("DeclarationToken",e._b({key:r+"-"+s},"DeclarationToken",t,!1)),r+11?"Possible values":"Value")+": "),n("code",[e._v(e._s(e.fallbackToValues(a).join(", ")))])]}}],null,!1,1507632019)},"ParameterMetaAttribute",{kind:e.AttributeKind.allowedValues,attributes:e.attributesObject,changes:e.changes},!1)):e._e()],1)},Vs=[],Hs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{value:e.attributes[e.kind],changes:e.changes[e.kind]},scopedSlots:e._u([{key:"default",fn:function(t){var a=t.value;return n("div",{staticClass:"property-metadata"},[e._t("default",null,{attribute:a})],2)}}],null,!0)})},zs=[];const Ws={added:"change-added",removed:"change-removed"};var Gs,Ks,Fs={name:"RenderChanged",constants:{ChangedClasses:Ws},props:{changes:{type:Object,default:()=>({new:null,previous:null})},value:{type:[Object,Array,String,Boolean],default:null},wrapChanges:{type:Boolean,default:!0},renderSingleChange:{type:Boolean,default:!1}},render(e){const{value:t,changes:n={},wrapChanges:a,renderSingleChange:r}=this,{new:s,previous:i}=n,o=(t,n)=>{const r=this.$scopedSlots.default({value:t});return n&&a?e("div",{class:n},[r]):r?r[0]:null};if(s||i){const t=o(s,Ws.added),n=o(i,Ws.removed);return r?s&&!i?t:n:e("div",{class:"property-changegroup"},[s?t:"",i?n:""])}return o(t)}},Us=Fs,Qs=Object(W["a"])(Us,Gs,Ks,!1,null,null,null),Js=Qs.exports,Xs={name:"ParameterMetaAttribute",components:{RenderChanged:Js},props:{kind:{type:String,required:!0},attributes:{type:Object,required:!0},changes:{type:Object,default:()=>({})}}},Ys=Xs,Zs=(n("2822"),Object(W["a"])(Ys,Hs,zs,!1,null,"8590589e",null)),ei=Zs.exports;const ti={allowedTypes:"allowedTypes",allowedValues:"allowedValues",default:"default",maximum:"maximum",maximumExclusive:"maximumExclusive",minimum:"minimum",minimumExclusive:"minimumExclusive"};var ni={name:"ParameterAttributes",components:{ParameterMetaAttribute:ei,DeclarationToken:Qn},constants:{AttributeKind:ti},props:{attributes:{type:Array,default:()=>[]},changes:{type:Object,default:()=>({})}},computed:{AttributeKind:()=>ti,attributesObject:({attributes:e})=>e.reduce((e,t)=>({...e,[t.kind]:t}),{})},methods:{shouldRender(e){return Object.prototype.hasOwnProperty.call(this.attributesObject,e)},fallbackToValues:e=>{const t=e||[];return Array.isArray(t)?t:t.values}}},ai=ni,ri=Object(W["a"])(ai,Ns,Vs,!1,null,null,null),si=ri.exports,ii=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{renderSingleChange:"",value:e.required,changes:e.changes},scopedSlots:e._u([{key:"default",fn:function(t){var a=t.value;return a?n("span",{staticClass:"property-required"},[e._v("(Required) ")]):e._e()}}],null,!0)})},oi=[],ci={name:"PossiblyChangedRequiredAttribute",components:{RenderChanged:Js},props:{required:{type:Boolean,default:!1},changes:{type:Object,required:!1}}},li=ci,ui=(n("98af"),Object(W["a"])(li,ii,oi,!1,null,null,null)),di=ui.exports,pi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{value:e.type,wrapChanges:!1,changes:e.changes},scopedSlots:e._u([{key:"default",fn:function(t){var a=t.value;return n("DeclarationTokenGroup",{staticClass:"property-metadata property-type",attrs:{type:e.getValues(a)}})}}])})},hi=[],mi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.type&&e.type.length?n("div",[n("code",e._l(e.type,(function(t,a){return n("DeclarationToken",e._b({key:a},"DeclarationToken",t,!1))})),1)]):e._e()},fi=[],yi={name:"DeclarationTokenGroup",components:{DeclarationToken:Qn},props:{type:{type:Array,default:()=>[],required:!1}}},gi=yi,bi=Object(W["a"])(gi,mi,fi,!1,null,null,null),vi=bi.exports,Ci={name:"PossiblyChangedType",components:{DeclarationTokenGroup:vi,RenderChanged:Js},props:{type:{type:Array,required:!0},changes:{type:Object,required:!1}},methods:{getValues(e){return Array.isArray(e)?e:e.values}}},_i=Ci,Ti=(n("2f87"),Object(W["a"])(_i,pi,hi,!1,null,"0a648a1e",null)),ki=Ti.exports,Si={name:"PropertyTable",mixins:[Ds],components:{Badge:K,WordBreak:vt["a"],PossiblyChangedRequiredAttribute:di,PossiblyChangedType:ki,ParameterAttributes:si,ContentNode:lt,OnThisPageSection:jt,ParametersTable:Rs},props:{title:{type:String,required:!0},properties:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(Ga["a"])(e),propertyChanges:({apiChanges:e})=>(e||{}).properties},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},xi=Si,Oi=(n("fde4"),Object(W["a"])(xi,ws,qs,!1,null,"387d76c0",null)),ji=Oi.exports,Pi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("OnThisPageSection",{attrs:{anchor:e.anchor,title:e.title}},[n("h2",[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:[e.bodyParam],changes:e.bodyChanges,keyBy:"key"},scopedSlots:e._u([{key:"symbol",fn:function(t){var a=t.type,r=t.content,s=t.changes,i=t.name;return[e.shouldShiftType({name:i,content:r})?e._e():n("PossiblyChangedType",{attrs:{type:a,changes:s.type}})]}},{key:"description",fn:function(t){var a=t.name,r=t.content,s=t.mimeType,i=t.type,o=t.changes;return[e.shouldShiftType({name:a,content:r})?n("PossiblyChangedType",{attrs:{type:i,changes:o.type}}):e._e(),r?n("ContentNode",{attrs:{content:r}}):e._e(),s?n("PossiblyChangedMimetype",{attrs:{mimetype:s,changes:o.mimetype,change:o.change}}):e._e()]}}])}),e.parts.length?[n("h3",[e._v("Parts")]),n("ParametersTable",{staticClass:"parts",attrs:{parameters:e.parts,changes:e.partsChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var a=t.name,r=t.type,s=t.content,i=t.changes;return[n("div",{staticClass:"part-name"},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(a))])],1),s?n("PossiblyChangedType",{attrs:{type:r,changes:i.type}}):e._e()]}},{key:"description",fn:function(t){var a=t.content,r=t.mimeType,s=t.required,i=t.type,o=t.attributes,c=t.changes;return[n("div",[a?e._e():n("PossiblyChangedType",{attrs:{type:i,changes:c.type}}),n("PossiblyChangedRequiredAttribute",{attrs:{required:s,changes:c.required}}),a?n("ContentNode",{attrs:{content:a}}):e._e(),r?n("PossiblyChangedMimetype",{attrs:{mimetype:r,changes:c.mimetype,change:c.change}}):e._e(),n("ParameterAttributes",{attrs:{attributes:o,changes:c.attributes}})],1)]}}],null,!1,3752543529)})]:e._e()],2)},Ai=[],Bi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{changes:e.changeValues,value:e.mimetype},scopedSlots:e._u([{key:"default",fn:function(t){var a=t.value;return n("div",{staticClass:"response-mimetype"},[e._v("Content-Type: "+e._s(a))])}}])})},wi=[],qi={name:"PossiblyChangedMimetype",components:{RenderChanged:Js},props:{mimetype:{type:String,required:!0},changes:{type:[Object,String],required:!1},change:{type:String,required:!1}},computed:{changeValues({change:e,changes:t}){return e===ma.modified&&"string"!==typeof t?t:void 0}}},Di=qi,Ii=(n("a91f"),Object(W["a"])(Di,Bi,wi,!1,null,"2faa6020",null)),Li=Ii.exports;const $i="restRequestBody";var Ei={name:"RestBody",mixins:[Ds],components:{PossiblyChangedMimetype:Li,PossiblyChangedRequiredAttribute:di,PossiblyChangedType:ki,WordBreak:vt["a"],ParameterAttributes:si,ContentNode:lt,OnThisPageSection:jt,ParametersTable:Rs},constants:{ChangesKey:$i},props:{bodyContentType:{type:Array,required:!0},content:{type:Array},mimeType:{type:String,required:!0},parts:{type:Array,default:()=>[]},title:{type:String,required:!0}},computed:{anchor:({title:e})=>Object(Ga["a"])(e),bodyParam:({bodyContentType:e,content:t,mimeType:n})=>({key:$i,content:t,mimeType:n,type:e}),bodyChanges:({apiChanges:e})=>e||{},partsChanges:({bodyChanges:e})=>(e[$i]||{}).parts},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},Mi=Ei,Ri=(n("f8d9"),Object(W["a"])(Mi,Pi,Ai,!1,null,"458971c5",null)),Ni=Ri.exports,Vi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("OnThisPageSection",{attrs:{anchor:e.anchor,title:e.title}},[n("h2",[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:e.parameters,changes:e.parameterChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var a=t.name,r=t.type,s=t.content,i=t.changes,o=t.deprecated;return[n("div",{staticClass:"param-name",class:{deprecated:o}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(a))])],1),e.shouldShiftType({content:s,name:a})?e._e():n("PossiblyChangedType",{attrs:{type:r,changes:i.type}})]}},{key:"description",fn:function(t){var a=t.name,r=t.type,s=t.content,i=t.required,o=t.attributes,c=t.changes,l=t.deprecated;return[n("div",[e.shouldShiftType({content:s,name:a})?n("PossiblyChangedType",{attrs:{type:r,changes:c.type}}):e._e(),l?[n("Badge",{staticClass:"param-deprecated",attrs:{variant:"deprecated"}}),e._v("  ")]:e._e(),n("PossiblyChangedRequiredAttribute",{attrs:{required:i,changes:c.required}}),s?n("ContentNode",{attrs:{content:s}}):e._e(),n("ParameterAttributes",{attrs:{attributes:o,changes:c}})],2)]}}])})],1)},Hi=[],zi={name:"RestParameters",mixins:[Ds],components:{Badge:K,PossiblyChangedType:ki,PossiblyChangedRequiredAttribute:di,ParameterAttributes:si,WordBreak:vt["a"],ContentNode:lt,OnThisPageSection:jt,ParametersTable:Rs},props:{title:{type:String,required:!0},parameters:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(Ga["a"])(e),parameterChanges:({apiChanges:e})=>(e||{}).restParameters},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},Wi=zi,Gi=(n("76d4"),Object(W["a"])(Wi,Vi,Hi,!1,null,"74e7f790",null)),Ki=Gi.exports,Fi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("OnThisPageSection",{attrs:{anchor:e.anchor,title:e.title}},[n("h2",[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:e.responses,changes:e.propertyChanges,"key-by":"status"},scopedSlots:e._u([{key:"symbol",fn:function(t){var a=t.status,r=t.type,s=t.reason,i=t.content,o=t.changes;return[n("div",{staticClass:"response-name"},[n("code",[e._v(" "+e._s(a)+" "),n("span",{staticClass:"reason"},[e._v(e._s(s))])])]),e.shouldShiftType({content:i,reason:s,status:a})?e._e():n("PossiblyChangedType",{attrs:{type:r,changes:o.type}})]}},{key:"description",fn:function(t){var a=t.content,r=t.mimetype,s=t.reason,i=t.type,o=t.status,c=t.changes;return[e.shouldShiftType({content:a,reason:s,status:o})?n("PossiblyChangedType",{attrs:{type:i,changes:c.type}}):e._e(),n("div",{staticClass:"response-reason"},[n("code",[e._v(e._s(s))])]),a?n("ContentNode",{attrs:{content:a}}):e._e(),r?n("PossiblyChangedMimetype",{attrs:{mimetype:r,changes:c.mimetype,change:c.change}}):e._e()]}}])})],1)},Ui=[],Qi={name:"RestResponses",mixins:[Ds],components:{PossiblyChangedMimetype:Li,PossiblyChangedType:ki,ContentNode:lt,OnThisPageSection:jt,ParametersTable:Rs},props:{title:{type:String,required:!0},responses:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(Ga["a"])(e),propertyChanges:({apiChanges:e})=>(e||{}).restResponses},methods:{shouldShiftType:({content:e=[],reason:t,status:n})=>!(e.length||t)&&n}},Ji=Qi,Xi=(n("e335"),Object(W["a"])(Ji,Fi,Ui,!1,null,"57796e8c",null)),Yi=Xi.exports;const Zi={content:"content",declarations:"declarations",details:"details",parameters:"parameters",possibleValues:"possibleValues",properties:"properties",restBody:"restBody",restCookies:"restCookies",restEndpoint:"restEndpoint",restHeaders:"restHeaders",restParameters:"restParameters",restResponses:"restResponses"};var eo={name:"PrimaryContent",components:{Declaration:is,GenericContent:Ss,Parameters:Bs,PropertyListKeyDetails:bs,PropertyTable:ji,RestBody:Ni,RestEndpoint:Hr,RestParameters:Ki,RestResponses:Yi,PossibleValues:jr},constants:{SectionKind:Zi},props:{conformance:{type:Object,required:!1},sections:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(Zi,e))}},computed:{span(){return{large:9,medium:9,small:12}}},methods:{componentFor(e){return{[Zi.content]:Ss,[Zi.declarations]:is,[Zi.details]:bs,[Zi.parameters]:Bs,[Zi.properties]:ji,[Zi.restBody]:Ni,[Zi.restParameters]:Ki,[Zi.restHeaders]:Ki,[Zi.restCookies]:Ki,[Zi.restEndpoint]:Hr,[Zi.restResponses]:Yi,[Zi.possibleValues]:jr}[e.kind]},propsFor(e){const{conformance:t}=this,{bodyContentType:n,content:a,declarations:r,details:s,items:i,kind:o,mimeType:c,parameters:l,title:u,tokens:d,values:p}=e;return{[Zi.content]:{content:a},[Zi.declarations]:{conformance:t,declarations:r},[Zi.details]:{details:s},[Zi.parameters]:{parameters:l},[Zi.possibleValues]:{values:p},[Zi.properties]:{properties:i,title:u},[Zi.restBody]:{bodyContentType:n,content:a,mimeType:c,parts:l,title:u},[Zi.restCookies]:{parameters:i,title:u},[Zi.restEndpoint]:{tokens:d,title:u},[Zi.restHeaders]:{parameters:i,title:u},[Zi.restParameters]:{parameters:i,title:u},[Zi.restResponses]:{responses:i,title:u}}[o]}}},to=eo,no=(n("812f"),Object(W["a"])(to,Cr,_r,!1,null,"011bef72",null)),ao=no.exports,ro=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentTable",{attrs:{anchor:"relationships",title:"Relationships"}},e._l(e.sectionsWithSymbols,(function(e){return n("Section",{key:e.type,attrs:{title:e.title}},[n("List",{attrs:{symbols:e.symbols,type:e.type}})],1)})),1)},so=[],io=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{ref:"apiChangesDiff",staticClass:"relationships-list",class:e.classes},e._l(e.symbols,(function(t){return n("li",{key:t.identifier,staticClass:"relationships-item"},[t.url?n("router-link",{staticClass:"link",attrs:{to:e.buildUrl(t.url,e.$route.query)}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.title))])],1):n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.title))]),t.conformance?n("ConditionalConstraints",{attrs:{constraints:t.conformance.constraints,prefix:t.conformance.conformancePrefix}}):e._e()],1)})),0)},oo=[];const co=3,lo={conformsTo:"conformance",inheritsFrom:"inheritance",inheritedBy:"inheritedBy"};var uo={name:"RelationshipsList",components:{ConditionalConstraints:oa,WordBreak:vt["a"]},inject:["store","identifier"],mixins:[_a,Ca],props:{symbols:{type:Array,required:!0},type:{type:String,required:!0}},data(){return{state:this.store.state}},computed:{classes({changeType:e,multipleLinesClass:t,hasMultipleLinesAfterAPIChanges:n}){return[{inline:this.shouldDisplayInline,column:!this.shouldDisplayInline,["changed changed-"+e]:!!e,[t]:n}]},hasAvailabilityConstraints(){return this.symbols.some(e=>!!(e.conformance||{}).constraints)},changes({identifier:e,state:{apiChanges:t}}){return(t||{})[e]||{}},changeType({changes:e,type:t}){const n=lo[t];if(e.change!==ma.modified)return e.change;const a=e[n];if(!a)return;const r=(e,t)=>e.map((e,n)=>[e,t[n]]),s=r(a.previous,a.new).some(([e,t])=>e.content?0===e.content.length&&t.content.length>0:!!t.content);return s?ma.added:ma.modified},shouldDisplayInline(){const{hasAvailabilityConstraints:e,symbols:t}=this;return t.length<=co&&!e}},methods:{buildUrl:E["b"]}},po=uo,ho=(n("2995"),Object(W["a"])(po,io,oo,!1,null,"e4fe9834",null)),mo=ho.exports,fo={name:"Relationships",inject:{references:{default(){return{}}}},components:{ContentTable:wt,List:mo,Section:Et},props:{sections:{type:Array,required:!0}},computed:{sectionsWithSymbols(){return this.sections.map(e=>({...e,symbols:e.identifiers.reduce((e,t)=>this.references[t]?e.concat(this.references[t]):e,[])}))}}},yo=fo,go=Object(W["a"])(yo,ro,so,!1,null,null,null),bo=go.exports,vo=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Section",{staticClass:"availability",attrs:{role:"complementary","aria-label":"Availability"}},[n("Title",[e._v("Availability")]),n("List",{staticClass:"platform-list"},e._l(e.platforms,(function(t){return n("Item",{key:t.name,staticClass:"platform",class:e.changesClassesFor(t.name),attrs:{change:!!e.changeFor(t.name)}},[n("AvailabilityRange",{attrs:{deprecatedAt:t.deprecatedAt,introducedAt:t.introducedAt,platformName:t.name}}),t.deprecatedAt?n("Badge",{attrs:{variant:"deprecated"}}):t.beta?n("Badge",{attrs:{variant:"beta"}}):e._e()],1)})),1)],1)},Co=[],_o=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{attrs:{role:"text","aria-label":e.ariaLabel,title:e.description}},[e._v(" "+e._s(e.text)+" ")])},To=[],ko={name:"AvailabilityRange",props:{deprecatedAt:{type:String,required:!1},introducedAt:{type:String,required:!0},platformName:{type:String,required:!0}},computed:{ariaLabel(){const{deprecatedAt:e,description:t,text:n}=this;return[n].concat(e?"Deprecated":[]).concat(t).join(", ")},description(){const{deprecatedAt:e,introducedAt:t,platformName:n}=this;return e?`Introduced in ${n} ${t} and deprecated in ${n} ${e}`:`Available on ${n} ${t} and later`},text(){const{deprecatedAt:e,introducedAt:t,platformName:n}=this;return e?`${n} ${t}–${e}`:`${n} ${t}+`}}},So=ko,xo=Object(W["a"])(So,_o,To,!1,null,null,null),Oo=xo.exports,jo={name:"Availability",mixins:[_a],inject:["identifier","store"],components:{Badge:K,AvailabilityRange:Oo,Item:ar,List:Xa,Section:We,Title:Je},props:{platforms:{type:Array,required:!0}},data(){return{state:this.store.state}},methods:{changeFor(e){const{identifier:t,state:{apiChanges:n}}=this,{availability:a={}}=(n||{})[t]||{},r=a[e];if(r)return r.deprecated?ma.deprecated:r.introduced&&!r.introduced.previous?ma.added:ma.modified}}},Po=jo,Ao=(n("bc10"),Object(W["a"])(Po,vo,Co,!1,null,"0c59731a",null)),Bo=Ao.exports,wo=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:"see-also",title:"See Also",isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections}})},qo=[],Do={name:"SeeAlso",components:{TopicsTable:qa},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:qa.props.sections}},Io=Do,Lo=Object(W["a"])(Io,wo,qo,!1,null,null,null),$o=Lo.exports,Eo=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"summary"},[e._t("default")],2)},Mo=[],Ro={name:"Summary"},No=Ro,Vo=(n("179d"),Object(W["a"])(No,Eo,Mo,!1,null,"19bd58b6",null)),Ho=Vo.exports,zo=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"topictitle"},[e.eyebrow?n("span",{staticClass:"eyebrow"},[e._v(e._s(e.eyebrow))]):e._e(),n("WordBreak",{staticClass:"title",attrs:{tag:"h1"}},[e._t("default")],2)],1)},Wo=[],Go={name:"Title",components:{WordBreak:vt["a"]},props:{eyebrow:{type:String,required:!1}}},Ko=Go,Fo=(n("54bb"),Object(W["a"])(Ko,zo,Wo,!1,null,"e1f00c5e",null)),Uo=Fo.exports,Qo=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:"topics",title:"Topics",isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections}})},Jo=[],Xo={name:"Topics",components:{TopicsTable:qa},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:qa.props.sections}},Yo=Xo,Zo=Object(W["a"])(Yo,Qo,Jo,!1,null,null,null),ec=Zo.exports,tc={name:"DocumentationTopic",mixins:[P["a"]],inject:{isTargetIDE:{default(){return!1}},store:{default(){return{reset(){},state:{onThisPageSections:[]}}}}},components:{Abstract:ht,Aside:B["a"],BetaLegalText:Be,ContentNode:lt,DefaultImplementations:$a,Description:Ha,DownloadButton:mt["a"],TechnologyList:or,LanguageSwitcher:et,Nav:Te,OnThisPageNav:vr,PrimaryContent:ao,Relationships:bo,RequirementMetadata:ha,Availability:Bo,SeeAlso:$o,Summary:Ho,Title:Uo,Topics:ec},props:{abstract:{type:Array,required:!1},conformance:{type:Object,required:!1},defaultImplementationsSections:{type:Array,required:!1},downloadNotAvailableSummary:{type:Array,required:!1},deprecationSummary:{type:Array,required:!1},diffAvailability:{type:Object,required:!1},modules:{type:Array,required:!1},hierarchy:{type:Object,default:()=>({})},interfaceLanguage:{type:String,required:!0},identifier:{type:String,required:!0},isRequirement:{type:Boolean,default:()=>!1},platforms:{type:Array,required:!1},primaryContentSections:{type:Array,required:!1},references:{type:Object,required:!0},relationshipsSections:{type:Array,required:!1},roleHeading:{type:String,required:!1},title:{type:String,required:!0},topicSections:{type:Array,required:!1},sampleCodeDownload:{type:Object,required:!1},seeAlsoSections:{type:Array,required:!1},variants:{type:Array,default:()=>[]},extendsTechnology:{type:String},tags:{type:Array,required:!0}},provide(){return{references:this.references,identifier:this.identifier,languages:new Set(Object.keys(this.languagePaths)),interfaceLanguage:this.interfaceLanguage}},data(){return{topicState:this.store.state}},computed:{defaultImplementationsCount(){return(this.defaultImplementationsSections||[]).reduce((e,t)=>e+t.identifiers.length,0)},hasOverview:({primaryContentSections:e=[]})=>e.filter(e=>e.kind===ao.constants.SectionKind.content).length>0,languagePaths:({variants:e})=>e.reduce((e,t)=>t.traits.reduce((e,n)=>n.interfaceLanguage?{...e,[n.interfaceLanguage]:(e[n.interfaceLanguage]||[]).concat(t.paths)}:e,e),{}),objcPath:({languagePaths:{[j["a"].objectiveC.key.api]:[e]=[]}={}})=>e,swiftPath:({languagePaths:{[j["a"].swift.key.api]:[e]=[]}={}})=>e,onThisPageSections(){return this.topicState.onThisPageSections},isSymbolBeta:({platforms:e})=>e&&e.length&&e.every(e=>e.beta),hasBetaContent:({platforms:e})=>e&&e.length&&e.some(e=>e.beta),isSymbolDeprecated:({platforms:e,deprecationSummary:t})=>t&&t.length>0||e&&e.length&&e.every(e=>e.deprecatedAt),pageTitle:({title:e})=>e,parentTopicIdentifiers:({hierarchy:{paths:[e=[]]=[]}})=>e,shouldShowLanguageSwitcher:({objcPath:e,swiftPath:t})=>e&&t,hideSummary:()=>Object(A["c"])(["features","docs","summary","hide"],!1)},methods:{normalizePath(e){return e.startsWith("/")?e:"/"+e}},created(){if(this.topicState.preferredLanguage===j["a"].objectiveC.key.url&&this.interfaceLanguage!==j["a"].objectiveC.key.api&&this.objcPath&&this.$route.query.language!==j["a"].objectiveC.key.url){const{query:e}=this.$route;this.$nextTick().then(()=>{this.$router.replace({path:this.normalizePath(this.objcPath),query:{...e,language:j["a"].objectiveC.key.url}})})}this.store.reset()}},nc=tc,ac=(n("d85c"),Object(W["a"])(nc,x,O,!1,null,"134e8272",null)),rc=ac.exports,sc=n("2b0e");const ic=()=>({[ma.modified]:0,[ma.added]:0,[ma.deprecated]:0});var oc={state:{apiChanges:null,apiChangesCounts:ic()},setAPIChanges(e){this.state.apiChanges=e},resetApiChanges(){this.state.apiChanges=null,this.state.apiChangesCounts=ic()},async updateApiChangesCounts(){await sc["default"].nextTick(),Object.keys(this.state.apiChangesCounts).forEach(e=>{this.state.apiChangesCounts[e]=this.countChangeType(e)})},countChangeType(e){if(document&&document.querySelectorAll){const t=`.changed-${e}:not(.changed-total)`;return document.querySelectorAll(t).length}return 0}},cc=n("d369");const{state:lc,...uc}=oc;var dc={state:{onThisPageSections:[],preferredLanguage:cc["a"].preferredLanguage,...lc},reset(){this.state.onThisPageSections=[],this.state.preferredLanguage=cc["a"].preferredLanguage,this.resetApiChanges()},addOnThisPageSection(e){this.state.onThisPageSections.push(e)},setPreferredLanguage(e){this.state.preferredLanguage=e,cc["a"].preferredLanguage=this.state.preferredLanguage},...uc},pc=n("8590"),hc=n("66c9"),mc=n("bb52"),fc=n("146e"),yc={name:"DocumentationTopic",components:{Topic:rc,CodeTheme:pc["a"]},mixins:[mc["a"],fc["a"]],data(){return{topicDataDefault:null,topicDataObjc:null}},computed:{store(){return dc},objcOverrides:({topicData:e})=>{const{variantOverrides:t=[]}=e||{},n=({interfaceLanguage:e})=>e===j["a"].objectiveC.key.api,a=({traits:e})=>e.some(n),r=t.find(a);return r?r.patch:null},topicData:{get(){return this.topicDataObjc?this.topicDataObjc:this.topicDataDefault},set(e){this.topicDataDefault=e}},topicKey:({$route:e,topicProps:t})=>[e.path,t.interfaceLanguage].join(),topicProps(){const{abstract:e,defaultImplementationsSections:t,deprecationSummary:n,downloadNotAvailableSummary:a,diffAvailability:r,hierarchy:s,identifier:{interfaceLanguage:i,url:o},metadata:{extends:c,conformance:l,modules:u,platforms:d,required:p,roleHeading:h,title:m="",tags:f=[]}={},primaryContentSections:y,relationshipsSections:g,references:b={},sampleCodeDownload:v,topicSections:C,seeAlsoSections:_,variantOverrides:T,variants:k}=this.topicData;return{abstract:e,conformance:l,defaultImplementationsSections:t,deprecationSummary:n,downloadNotAvailableSummary:a,diffAvailability:r,hierarchy:s,identifier:o,interfaceLanguage:i,isRequirement:p,modules:u,platforms:d,primaryContentSections:y,relationshipsSections:g,references:b,roleHeading:h,sampleCodeDownload:v,title:m,topicSections:C,seeAlsoSections:_,variantOverrides:T,variants:k,extendsTechnology:c,tags:f.slice(0,1)}}},methods:{applyObjcOverrides(){this.topicDataObjc=k(Object(S["a"])(this.topicData),this.objcOverrides)},handleCodeColorsChange(e){hc["a"].updateCodeColors(e)}},mounted(){this.$bridge.on("contentUpdate",e=>{this.topicData=e}),this.$bridge.on("codeColors",this.handleCodeColorsChange),this.$bridge.send({type:"requestCodeColors"})},provide(){return{store:this.store}},beforeDestroy(){this.$bridge.off("codeColors",this.handleCodeColorsChange)},beforeRouteEnter(e,t,n){Object(S["b"])(e,t,n).then(t=>n(n=>{n.topicData=t,e.query.language===j["a"].objectiveC.key.url&&n.objcOverrides&&n.applyObjcOverrides()})).catch(n)},beforeRouteUpdate(e,t,n){e.path===t.path&&e.query.language===j["a"].objectiveC.key.url&&this.objcOverrides?(this.applyObjcOverrides(),n()):Object(S["c"])(e,t)?Object(S["b"])(e,t,n).then(t=>{this.topicDataObjc=null,this.topicData=t,e.query.language===j["a"].objectiveC.key.url&&this.objcOverrides&&this.applyObjcOverrides(),n()}).catch(n):n()},created(){this.store.reset()},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},gc=yc,bc=Object(W["a"])(gc,a,r,!1,null,null,null);t["default"]=bc.exports},f8bd:function(e,t,n){},f8d9:function(e,t,n){"use strict";n("83f0")},fca4:function(e,t,n){"use strict";n("b876")},fde4:function(e,t,n){"use strict";n("f5b1")}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/documentation-topic~topic~tutorials-overview.06df3b46.js b/JellyfinAPI.doccarchive/js/documentation-topic~topic~tutorials-overview.06df3b46.js new file mode 100644 index 000000000..c68dc8959 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/documentation-topic~topic~tutorials-overview.06df3b46.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic~topic~tutorials-overview"],{"05a1":function(e,t,n){},"0f00":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"row"},[e._t("default")],2)},s=[],r={name:"GridRow"},a=r,o=(n("2224"),n("2877")),c=Object(o["a"])(a,i,s,!1,null,"be73599c",null);t["a"]=c.exports},1020:function(e,t){var n={exports:{}};function i(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error("set is read-only")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((function(t){var n=e[t];"object"!=typeof n||Object.isFrozen(n)||i(n)})),e}n.exports=i,n.exports.default=i;var s=n.exports;class r{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function a(e){return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}function o(e,...t){const n=Object.create(null);for(const i in e)n[i]=e[i];return t.forEach((function(e){for(const t in e)n[t]=e[t]})),n}const c="",l=e=>!!e.kind,u=(e,{prefix:t})=>{if(e.includes(".")){const n=e.split(".");return[`${t}${n.shift()}`,...n.map((e,t)=>`${e}${"_".repeat(t+1)}`)].join(" ")}return`${t}${e}`};class d{constructor(e,t){this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=a(e)}openNode(e){if(!l(e))return;let t=e.kind;t=e.sublanguage?"language-"+t:u(t,{prefix:this.classPrefix}),this.span(t)}closeNode(e){l(e)&&(this.buffer+=c)}value(){return this.buffer}span(e){this.buffer+=``}}class h{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const t={kind:e,children:[]};this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){while(this.closeNode());}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return"string"===typeof t?e.addText(t):t.children&&(e.openNode(t),t.children.forEach(t=>this._walk(e,t)),e.closeNode(t)),e}static _collapse(e){"string"!==typeof e&&e.children&&(e.children.every(e=>"string"===typeof e)?e.children=[e.children.join("")]:e.children.forEach(e=>{h._collapse(e)}))}}class p extends h{constructor(e){super(),this.options=e}addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNode())}addText(e){""!==e&&this.add(e)}addSublanguage(e,t){const n=e.root;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){const e=new d(this,this.options);return e.value()}finalize(){return!0}}function f(e){return e?"string"===typeof e?e:e.source:null}function g(e){return v("(?=",e,")")}function m(e){return v("(?:",e,")*")}function b(e){return v("(?:",e,")?")}function v(...e){const t=e.map(e=>f(e)).join("");return t}function y(e){const t=e[e.length-1];return"object"===typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function w(...e){const t=y(e),n="("+(t.capture?"":"?:")+e.map(e=>f(e)).join("|")+")";return n}function x(e){return new RegExp(e.toString()+"|").exec("").length-1}function E(e,t){const n=e&&e.exec(t);return n&&0===n.index}const _=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function k(e,{joinWith:t}){let n=0;return e.map(e=>{n+=1;const t=n;let i=f(e),s="";while(i.length>0){const e=_.exec(i);if(!e){s+=i;break}s+=i.substring(0,e.index),i=i.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?s+="\\"+String(Number(e[1])+t):(s+=e[0],"("===e[0]&&n++)}return s}).map(e=>`(${e})`).join(t)}const j=/\b\B/,T="[a-zA-Z]\\w*",C="[a-zA-Z_]\\w*",S="\\b\\d+(\\.\\d+)?",O="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",N="\\b(0b[01]+)",L="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",I=(e={})=>{const t=/^#![ ]*\//;return e.binary&&(e.begin=v(t,/.*\b/,e.binary,/\b.*/)),o({scope:"meta",begin:t,end:/$/,relevance:0,"on:begin":(e,t)=>{0!==e.index&&t.ignoreMatch()}},e)},A={begin:"\\\\[\\s\\S]",relevance:0},B={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[A]},M={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[A]},$={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},R=function(e,t,n={}){const i=o({scope:"comment",begin:e,end:t,contains:[]},n);i.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const s=w("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return i.contains.push({begin:v(/[ ]+/,"(",s,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i},D=R("//","$"),P=R("/\\*","\\*/"),F=R("#","$"),H={scope:"number",begin:S,relevance:0},q={scope:"number",begin:O,relevance:0},W={scope:"number",begin:N,relevance:0},V={begin:/(?=\/[^/\n]*\/)/,contains:[{scope:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[A,{begin:/\[/,end:/\]/,relevance:0,contains:[A]}]}]},U={scope:"title",begin:T,relevance:0},z={scope:"title",begin:C,relevance:0},G={begin:"\\.\\s*"+C,relevance:0},K=function(e){return Object.assign(e,{"on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}})};var Y=Object.freeze({__proto__:null,MATCH_NOTHING_RE:j,IDENT_RE:T,UNDERSCORE_IDENT_RE:C,NUMBER_RE:S,C_NUMBER_RE:O,BINARY_NUMBER_RE:N,RE_STARTERS_RE:L,SHEBANG:I,BACKSLASH_ESCAPE:A,APOS_STRING_MODE:B,QUOTE_STRING_MODE:M,PHRASAL_WORDS_MODE:$,COMMENT:R,C_LINE_COMMENT_MODE:D,C_BLOCK_COMMENT_MODE:P,HASH_COMMENT_MODE:F,NUMBER_MODE:H,C_NUMBER_MODE:q,BINARY_NUMBER_MODE:W,REGEXP_MODE:V,TITLE_MODE:U,UNDERSCORE_TITLE_MODE:z,METHOD_GUARD:G,END_SAME_AS_BEGIN:K});function X(e,t){const n=e.input[e.index-1];"."===n&&t.ignoreMatch()}function Z(e,t){void 0!==e.className&&(e.scope=e.className,delete e.className)}function J(e,t){t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=X,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function Q(e,t){Array.isArray(e.illegal)&&(e.illegal=w(...e.illegal))}function ee(e,t){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function te(e,t){void 0===e.relevance&&(e.relevance=1)}const ne=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error("beforeMatch cannot be used with starts");const n=Object.assign({},e);Object.keys(e).forEach(t=>{delete e[t]}),e.keywords=n.keywords,e.begin=v(n.beforeMatch,g(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},ie=["of","and","for","in","not","or","if","then","parent","list","value"],se="keyword";function re(e,t,n=se){const i=Object.create(null);return"string"===typeof e?s(n,e.split(" ")):Array.isArray(e)?s(n,e):Object.keys(e).forEach((function(n){Object.assign(i,re(e[n],t,n))})),i;function s(e,n){t&&(n=n.map(e=>e.toLowerCase())),n.forEach((function(t){const n=t.split("|");i[n[0]]=[e,ae(n[0],n[1])]}))}}function ae(e,t){return t?Number(t):oe(e)?0:1}function oe(e){return ie.includes(e.toLowerCase())}const ce={},le=e=>{console.error(e)},ue=(e,...t)=>{console.log("WARN: "+e,...t)},de=(e,t)=>{ce[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),ce[`${e}/${t}`]=!0)},he=new Error;function pe(e,t,{key:n}){let i=0;const s=e[n],r={},a={};for(let o=1;o<=t.length;o++)a[o+i]=s[o],r[o+i]=!0,i+=x(t[o-1]);e[n]=a,e[n]._emit=r,e[n]._multi=!0}function fe(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw le("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),he;if("object"!==typeof e.beginScope||null===e.beginScope)throw le("beginScope must be object"),he;pe(e,e.begin,{key:"beginScope"}),e.begin=k(e.begin,{joinWith:""})}}function ge(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw le("skip, excludeEnd, returnEnd not compatible with endScope: {}"),he;if("object"!==typeof e.endScope||null===e.endScope)throw le("endScope must be object"),he;pe(e,e.end,{key:"endScope"}),e.end=k(e.end,{joinWith:""})}}function me(e){e.scope&&"object"===typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,delete e.scope)}function be(e){me(e),"string"===typeof e.beginScope&&(e.beginScope={_wrap:e.beginScope}),"string"===typeof e.endScope&&(e.endScope={_wrap:e.endScope}),fe(e),ge(e)}function ve(e){function t(t,n){return new RegExp(f(t),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(n?"g":""))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=x(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map(e=>e[1]);this.matcherRe=t(k(e,{joinWith:"|"}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e);if(!t)return null;const n=t.findIndex((e,t)=>t>0&&void 0!==e),i=this.matchIndexes[n];return t.splice(0,n),Object.assign(t,i)}}class i{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n;return this.rules.slice(e).forEach(([e,n])=>t.addRule(e,n)),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),"begin"===t.type&&this.count++}exec(e){const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let n=t.exec(e);if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}return n&&(this.regexIndex+=n.position+1,this.regexIndex===this.count&&this.considerAll()),n}}function s(e){const t=new i;return e.contains.forEach(e=>t.addRule(e.begin,{rule:e,type:"begin"})),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:"end"}),e.illegal&&t.addRule(e.illegal,{type:"illegal"}),t}function r(n,i){const a=n;if(n.isCompiled)return a;[Z,ee,be,ne].forEach(e=>e(n,i)),e.compilerExtensions.forEach(e=>e(n,i)),n.__beforeBegin=null,[J,Q,te].forEach(e=>e(n,i)),n.isCompiled=!0;let o=null;return"object"===typeof n.keywords&&n.keywords.$pattern&&(n.keywords=Object.assign({},n.keywords),o=n.keywords.$pattern,delete n.keywords.$pattern),o=o||/\w+/,n.keywords&&(n.keywords=re(n.keywords,e.case_insensitive)),a.keywordPatternRe=t(o,!0),i&&(n.begin||(n.begin=/\B|\b/),a.beginRe=t(a.begin),n.end||n.endsWithParent||(n.end=/\B|\b/),n.end&&(a.endRe=t(a.end)),a.terminatorEnd=f(a.end)||"",n.endsWithParent&&i.terminatorEnd&&(a.terminatorEnd+=(n.end?"|":"")+i.terminatorEnd)),n.illegal&&(a.illegalRe=t(n.illegal)),n.contains||(n.contains=[]),n.contains=[].concat(...n.contains.map((function(e){return we("self"===e?n:e)}))),n.contains.forEach((function(e){r(e,a)})),n.starts&&r(n.starts,i),a.matcher=s(a),a}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=o(e.classNameAliases||{}),r(e)}function ye(e){return!!e&&(e.endsWithParent||ye(e.starts))}function we(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((function(t){return o(e,{variants:null},t)}))),e.cachedVariants?e.cachedVariants:ye(e)?o(e,{starts:e.starts?o(e.starts):null}):Object.isFrozen(e)?o(e):e}var xe="11.3.1";class Ee extends Error{constructor(e,t){super(e),this.name="HTMLInjectionError",this.html=t}}const _e=a,ke=o,je=Symbol("nomatch"),Te=7,Ce=function(e){const t=Object.create(null),n=Object.create(null),i=[];let a=!0;const o="Could not find the language '{}', did you forget to load/include a language module?",c={disableAutodetect:!0,name:"Plain text",contains:[]};let l={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:p};function u(e){return l.noHighlightRe.test(e)}function d(e){let t=e.className+" ";t+=e.parentNode?e.parentNode.className:"";const n=l.languageDetectRe.exec(t);if(n){const t=B(n[1]);return t||(ue(o.replace("{}",n[1])),ue("Falling back to no-highlight mode for this block.",e)),t?n[1]:"no-highlight"}return t.split(/\s+/).find(e=>u(e)||B(e))}function h(e,t,n){let i="",s="";"object"===typeof t?(i=e,n=t.ignoreIllegals,s=t.language):(de("10.7.0","highlight(lang, code, ...args) has been deprecated."),de("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),s=e,i=t),void 0===n&&(n=!0);const r={code:i,language:s};P("before:highlight",r);const a=r.result?r.result:f(r.language,r.code,n);return a.code=r.code,P("after:highlight",a),a}function f(e,n,i,s){const c=Object.create(null);function u(e,t){return e.keywords[t]}function d(){if(!O.keywords)return void L.addText(I);let e=0;O.keywordPatternRe.lastIndex=0;let t=O.keywordPatternRe.exec(I),n="";while(t){n+=I.substring(e,t.index);const i=T.case_insensitive?t[0].toLowerCase():t[0],s=u(O,i);if(s){const[e,r]=s;if(L.addText(n),n="",c[i]=(c[i]||0)+1,c[i]<=Te&&(A+=r),e.startsWith("_"))n+=t[0];else{const n=T.classNameAliases[e]||e;L.addKeyword(t[0],n)}}else n+=t[0];e=O.keywordPatternRe.lastIndex,t=O.keywordPatternRe.exec(I)}n+=I.substr(e),L.addText(n)}function h(){if(""===I)return;let e=null;if("string"===typeof O.subLanguage){if(!t[O.subLanguage])return void L.addText(I);e=f(O.subLanguage,I,!0,N[O.subLanguage]),N[O.subLanguage]=e._top}else e=x(I,O.subLanguage.length?O.subLanguage:null);O.relevance>0&&(A+=e.relevance),L.addSublanguage(e._emitter,e.language)}function p(){null!=O.subLanguage?h():d(),I=""}function g(e,t){let n=1;while(void 0!==t[n]){if(!e._emit[n]){n++;continue}const i=T.classNameAliases[e[n]]||e[n],s=t[n];i?L.addKeyword(s,i):(I=s,d(),I=""),n++}}function m(e,t){return e.scope&&"string"===typeof e.scope&&L.openNode(T.classNameAliases[e.scope]||e.scope),e.beginScope&&(e.beginScope._wrap?(L.addKeyword(I,T.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),I=""):e.beginScope._multi&&(g(e.beginScope,t),I="")),O=Object.create(e,{parent:{value:O}}),O}function b(e,t,n){let i=E(e.endRe,n);if(i){if(e["on:end"]){const n=new r(e);e["on:end"](t,n),n.isMatchIgnored&&(i=!1)}if(i){while(e.endsParent&&e.parent)e=e.parent;return e}}if(e.endsWithParent)return b(e.parent,t,n)}function v(e){return 0===O.matcher.regexIndex?(I+=e[0],1):(R=!0,0)}function y(e){const t=e[0],n=e.rule,i=new r(n),s=[n.__beforeBegin,n["on:begin"]];for(const r of s)if(r&&(r(e,i),i.isMatchIgnored))return v(t);return n.skip?I+=t:(n.excludeBegin&&(I+=t),p(),n.returnBegin||n.excludeBegin||(I=t)),m(n,e),n.returnBegin?0:t.length}function w(e){const t=e[0],i=n.substr(e.index),s=b(O,e,i);if(!s)return je;const r=O;O.endScope&&O.endScope._wrap?(p(),L.addKeyword(t,O.endScope._wrap)):O.endScope&&O.endScope._multi?(p(),g(O.endScope,e)):r.skip?I+=t:(r.returnEnd||r.excludeEnd||(I+=t),p(),r.excludeEnd&&(I=t));do{O.scope&&L.closeNode(),O.skip||O.subLanguage||(A+=O.relevance),O=O.parent}while(O!==s.parent);return s.starts&&m(s.starts,e),r.returnEnd?0:t.length}function _(){const e=[];for(let t=O;t!==T;t=t.parent)t.scope&&e.unshift(t.scope);e.forEach(e=>L.openNode(e))}let k={};function j(t,s){const r=s&&s[0];if(I+=t,null==r)return p(),0;if("begin"===k.type&&"end"===s.type&&k.index===s.index&&""===r){if(I+=n.slice(s.index,s.index+1),!a){const t=new Error(`0 width match regex (${e})`);throw t.languageName=e,t.badRule=k.rule,t}return 1}if(k=s,"begin"===s.type)return y(s);if("illegal"===s.type&&!i){const e=new Error('Illegal lexeme "'+r+'" for mode "'+(O.scope||"")+'"');throw e.mode=O,e}if("end"===s.type){const e=w(s);if(e!==je)return e}if("illegal"===s.type&&""===r)return 1;if($>1e5&&$>3*s.index){const e=new Error("potential infinite loop, way more iterations than matches");throw e}return I+=r,r.length}const T=B(e);if(!T)throw le(o.replace("{}",e)),new Error('Unknown language: "'+e+'"');const C=ve(T);let S="",O=s||C;const N={},L=new l.__emitter(l);_();let I="",A=0,M=0,$=0,R=!1;try{for(O.matcher.considerAll();;){$++,R?R=!1:O.matcher.considerAll(),O.matcher.lastIndex=M;const e=O.matcher.exec(n);if(!e)break;const t=n.substring(M,e.index),i=j(t,e);M=e.index+i}return j(n.substr(M)),L.closeAllNodes(),L.finalize(),S=L.toHTML(),{language:e,value:S,relevance:A,illegal:!1,_emitter:L,_top:O}}catch(D){if(D.message&&D.message.includes("Illegal"))return{language:e,value:_e(n),illegal:!0,relevance:0,_illegalBy:{message:D.message,index:M,context:n.slice(M-100,M+100),mode:D.mode,resultSoFar:S},_emitter:L};if(a)return{language:e,value:_e(n),illegal:!1,relevance:0,errorRaised:D,_emitter:L,_top:O};throw D}}function y(e){const t={value:_e(e),illegal:!1,relevance:0,_top:c,_emitter:new l.__emitter(l)};return t._emitter.addText(e),t}function x(e,n){n=n||l.languages||Object.keys(t);const i=y(e),s=n.filter(B).filter($).map(t=>f(t,e,!1));s.unshift(i);const r=s.sort((e,t)=>{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language&&t.language){if(B(e.language).supersetOf===t.language)return 1;if(B(t.language).supersetOf===e.language)return-1}return 0}),[a,o]=r,c=a;return c.secondBest=o,c}function _(e,t,i){const s=t&&n[t]||i;e.classList.add("hljs"),e.classList.add("language-"+s)}function k(e){let t=null;const n=d(e);if(u(n))return;if(P("before:highlightElement",{el:e,language:n}),e.children.length>0&&(l.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/issues/2886"),console.warn(e)),l.throwUnescapedHTML)){const t=new Ee("One of your code blocks includes unescaped HTML.",e.innerHTML);throw t}t=e;const i=t.textContent,s=n?h(i,{language:n,ignoreIllegals:!0}):x(i);e.innerHTML=s.value,_(e,n,s.language),e.result={language:s.language,re:s.relevance,relevance:s.relevance},s.secondBest&&(e.secondBest={language:s.secondBest.language,relevance:s.secondBest.relevance}),P("after:highlightElement",{el:e,result:s,text:i})}function j(e){l=ke(l,e)}const T=()=>{O(),de("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")};function C(){O(),de("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")}let S=!1;function O(){if("loading"===document.readyState)return void(S=!0);const e=document.querySelectorAll(l.cssSelector);e.forEach(k)}function N(){S&&O()}function L(n,i){let s=null;try{s=i(e)}catch(r){if(le("Language definition for '{}' could not be registered.".replace("{}",n)),!a)throw r;le(r),s=c}s.name||(s.name=n),t[n]=s,s.rawDefinition=i.bind(null,e),s.aliases&&M(s.aliases,{languageName:n})}function I(e){delete t[e];for(const t of Object.keys(n))n[t]===e&&delete n[t]}function A(){return Object.keys(t)}function B(e){return e=(e||"").toLowerCase(),t[e]||t[n[e]]}function M(e,{languageName:t}){"string"===typeof e&&(e=[e]),e.forEach(e=>{n[e.toLowerCase()]=t})}function $(e){const t=B(e);return t&&!t.disableAutodetect}function R(e){e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=t=>{e["before:highlightBlock"](Object.assign({block:t.el},t))}),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=t=>{e["after:highlightBlock"](Object.assign({block:t.el},t))})}function D(e){R(e),i.push(e)}function P(e,t){const n=e;i.forEach((function(e){e[n]&&e[n](t)}))}function F(e){return de("10.7.0","highlightBlock will be removed entirely in v12.0"),de("10.7.0","Please use highlightElement now."),k(e)}"undefined"!==typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",N,!1),Object.assign(e,{highlight:h,highlightAuto:x,highlightAll:O,highlightElement:k,highlightBlock:F,configure:j,initHighlighting:T,initHighlightingOnLoad:C,registerLanguage:L,unregisterLanguage:I,listLanguages:A,getLanguage:B,registerAliases:M,autoDetection:$,inherit:ke,addPlugin:D}),e.debugMode=function(){a=!1},e.safeMode=function(){a=!0},e.versionString=xe,e.regex={concat:v,lookahead:g,either:w,optional:b,anyNumberOfTimes:m};for(const r in Y)"object"===typeof Y[r]&&s(Y[r]);return Object.assign(e,Y),e};var Se=Ce({});e.exports=Se,Se.HighlightJS=Se,Se.default=Se},1417:function(e,t,n){var i={"./markdown":["84cb","highlight-js-custom-markdown"],"./markdown.js":["84cb","highlight-js-custom-markdown"],"./swift":["81c8","highlight-js-custom-swift"],"./swift.js":["81c8","highlight-js-custom-swift"]};function s(e){if(!n.o(i,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=i[e],s=t[0];return n.e(t[1]).then((function(){return n(s)}))}s.keys=function(){return Object.keys(i)},s.id="1417",e.exports=s},"146e":function(e,t,n){"use strict";var i=n("3908"),s=n("8a61");t["a"]={mixins:[s["a"]],async mounted(){this.$route.hash&&(await Object(i["a"])(8),this.scrollToElement(this.$route.hash))}}},2224:function(e,t,n){"use strict";n("b392")},"25a9":function(e,t,n){"use strict";n.d(t,"b",(function(){return m})),n.d(t,"c",(function(){return b})),n.d(t,"a",(function(){return v}));var i=n("748c"),s=n("d26a");const r={major:0,minor:2,patch:0};function a({major:e,minor:t,patch:n}){return[e,t,n].join(".")}const o=a(r);function c(e){return`[Swift-DocC-Render] The render node version for this page has a higher minor version (${e}) than Swift-DocC-Render supports (${o}). Compatibility is not guaranteed.`}const l=e=>`[Swift-DocC-Render] The render node version for this page (${e}) has a different major version component than Swift-DocC-Render supports (${o}). Compatibility is not guaranteed.`;function u(e){const{major:t,minor:n}=e,{major:i,minor:s}=r;return t!==i?l(a(e)):n>s?c(a(e)):""}function d(e){if(!e)return;const t=u(e);t&&console.warn(t)}var h=n("6842");class p extends Error{constructor(e){super("Unable to fetch data"),this.route=e}}async function f(e,t={}){function n(e){return("ide"!==Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET||0!==e.status)&&!e.ok}const i=new URL(e,window.location.href),r=Object(s["c"])(t);r&&(i.search=r);const a=await fetch(i.href);if(n(a))throw a;const o=await a.json();return d(o.schemaVersion),o}function g(e){const t=e.replace(/\/$/,"");return Object(i["c"])([h["a"],"data",t])+".json"}async function m(e,t,n){const i=g(e.path);let s;try{s=await f(i,e.query)}catch(r){if("ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET)throw console.error(r),!1;r.status&&404===r.status?n({name:"not-found",params:[e.path]}):n(new p(e))}return s}function b(e,t){return!Object(s["a"])(e,t)}function v(e){return JSON.parse(JSON.stringify(e))}},2976:function(e,t,n){},"2ab3":function(e,t,n){var i={"./bash":["f0f8","highlight-js-bash"],"./bash.js":["f0f8","highlight-js-bash"],"./c":["1fe5","highlight-js-c"],"./c.js":["1fe5","highlight-js-c"],"./cpp":["0209","highlight-js-cpp"],"./cpp.js":["0209","highlight-js-cpp"],"./css":["ee8c","highlight-js-css"],"./css.js":["ee8c","highlight-js-css"],"./diff":["48b8","highlight-js-diff"],"./diff.js":["48b8","highlight-js-diff"],"./http":["c01d","highlight-js-http"],"./http.js":["c01d","highlight-js-http"],"./java":["332f","highlight-js-java"],"./java.js":["332f","highlight-js-java"],"./javascript":["4dd1","highlight-js-javascript"],"./javascript.js":["4dd1","highlight-js-javascript"],"./json":["5ad2","highlight-js-json"],"./json.js":["5ad2","highlight-js-json"],"./llvm":["7c30","highlight-js-llvm"],"./llvm.js":["7c30","highlight-js-llvm"],"./markdown":["04b0","highlight-js-markdown"],"./markdown.js":["04b0","highlight-js-markdown"],"./objectivec":["9bf2","highlight-js-objectivec"],"./objectivec.js":["9bf2","highlight-js-objectivec"],"./perl":["6a51","highlight-js-perl"],"./perl.js":["6a51","highlight-js-perl"],"./php":["2907","highlight-js-php"],"./php.js":["2907","highlight-js-php"],"./python":["9510","highlight-js-python"],"./python.js":["9510","highlight-js-python"],"./ruby":["82cb","highlight-js-ruby"],"./ruby.js":["82cb","highlight-js-ruby"],"./scss":["6113","highlight-js-scss"],"./scss.js":["6113","highlight-js-scss"],"./shell":["b65b","highlight-js-shell"],"./shell.js":["b65b","highlight-js-shell"],"./swift":["2a39","highlight-js-swift"],"./swift.js":["2a39","highlight-js-swift"],"./xml":["8dcb","highlight-js-xml"],"./xml.js":["8dcb","highlight-js-xml"]};function s(e){if(!n.o(i,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=i[e],s=t[0];return n.e(t[1]).then((function(){return n.t(s,7)}))}s.keys=function(){return Object.keys(i)},s.id="2ab3",e.exports=s},"2d80":function(e,t,n){"use strict";n("3705")},"30b0":function(e,t,n){},"34b0":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-chevron-right-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M2.964 1.366l0.649-0.76 7.426 6.343-7.423 6.445-0.655-0.755 6.545-5.683-6.542-5.59z"}})])},s=[],r=n("be08"),a={name:"InlineChevronRightIcon",components:{SVGIcon:r["a"]}},o=a,c=n("2877"),l=Object(c["a"])(o,i,s,!1,null,null,null);t["a"]=l.exports},3705:function(e,t,n){},"3b8f":function(e,t,n){},"47cc":function(e,t,n){},"4c7a":function(e,t,n){},"502c":function(e,t,n){"use strict";n("e1d1")},"50fc":function(e,t,n){},"52e4":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("WordBreak",{attrs:{tag:"code"}},[e._t("default")],2)},s=[],r=n("7b1f"),a={name:"CodeVoice",components:{WordBreak:r["a"]}},o=a,c=(n("8c92"),n("2877")),l=Object(c["a"])(o,i,s,!1,null,"05f4a5b7",null);t["a"]=l.exports},5677:function(e,t,n){"use strict";var i=n("e3ab"),s=n("7b69"),r=n("52e4"),a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"DictionaryExample"},[e._t("default"),n("CollapsibleCodeListing",{attrs:{content:e.example.content,showLineNumbers:""}})],2)},o=[],c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"collapsible-code-listing",class:{"single-line":1===e.content[0].code.length}},[n("pre",[n("div",e._l(this.content,(function(t,i){return n("div",{key:i,class:["container-general",{collapsible:!0===t.collapsible},{collapsed:!0===t.collapsible&&e.collapsed}]},e._l(t.code,(function(t,i){return n("code",{key:i,staticClass:"code-line-container"},[e._v("\n "),n("div",{directives:[{name:"show",rawName:"v-show",value:e.showLineNumbers,expression:"showLineNumbers"}],staticClass:"code-number"}),e._v("\n "),n("div",{staticClass:"code-line"},[e._v(e._s(t))]),e._v("\n ")])})),0)})),0)])])},l=[],u={name:"CollapsibleCodeListing",props:{collapsed:{type:Boolean,required:!1},content:{type:Array,required:!0},showLineNumbers:{type:Boolean,default:()=>!0}}},d=u,h=(n("c919"),n("2877")),p=Object(h["a"])(d,c,l,!1,null,"369467b5",null),f=p.exports,g={name:"DictionaryExample",components:{CollapsibleCodeListing:f},props:{example:{type:Object,required:!0}}},m=g,b=Object(h["a"])(m,a,o,!1,null,null,null),v=b.exports,y=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Row",{staticClass:"endpoint-example"},[n("Column",{staticClass:"example-code"},[e._t("default"),n("Tabnav",{model:{value:e.currentTab,callback:function(t){e.currentTab=t},expression:"currentTab"}},[n("TabnavItem",{attrs:{value:e.Tab.request}},[e._v(e._s(e.Tab.request))]),n("TabnavItem",{attrs:{value:e.Tab.response}},[e._v(e._s(e.Tab.response))])],1),n("div",{staticClass:"output"},[e.isCurrent(e.Tab.request)?n("div",{staticClass:"code"},[n("CollapsibleCodeListing",e._b({attrs:{collapsed:e.isCollapsed,showLineNumbers:""}},"CollapsibleCodeListing",e.request,!1))],1):e._e(),e.isCurrent(e.Tab.response)?n("div",{staticClass:"code"},[n("CollapsibleCodeListing",e._b({attrs:{collapsed:e.isCollapsed,showLineNumbers:""}},"CollapsibleCodeListing",e.response,!1))],1):e._e()]),e.isCollapsible?n("div",{staticClass:"controls"},[e.isCollapsed?n("a",{staticClass:"toggle",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.showMore.apply(null,arguments)}}},[n("InlinePlusCircleSolidIcon",{staticClass:"control-icon icon-inline"}),e._v(" More ")],1):n("a",{staticClass:"toggle",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.showLess.apply(null,arguments)}}},[n("InlineMinusCircleSolidIcon",{staticClass:"control-icon icon-inline"}),e._v(" Less ")],1)]):e._e()],2)],1)},w=[],x=n("0f00"),E=n("620a"),_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("nav",{staticClass:"tabnav"},[n("ul",{staticClass:"tabnav-items"},[e._t("default")],2)])},k=[];const j="tabnavData";var T={name:"Tabnav",constants:{ProvideKey:j},provide(){const e={selectTab:this.selectTab};return Object.defineProperty(e,"activeTab",{enumerable:!0,get:()=>this.value}),{[j]:e}},props:{value:{type:String,required:!0}},methods:{selectTab(e){this.$emit("input",e)}}},C=T,S=(n("bab1"),Object(h["a"])(C,_,k,!1,null,"42371214",null)),O=S.exports,N=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"tabnav-item"},[n("a",{staticClass:"tabnav-link",class:{active:e.isActive},attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.tabnavData.selectTab(e.value)}}},[e._t("default")],2)])},L=[],I={name:"TabnavItem",inject:{tabnavData:{default:{activeTab:null,selectTab:()=>{}}}},props:{value:{type:String,default:""}},computed:{isActive({tabnavData:e,value:t}){return e.activeTab===t}}},A=I,B=(n("c064"),Object(h["a"])(A,N,L,!1,null,"723a9588",null)),M=B.exports,$=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-plus-circle-solid-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M7.005 0.5h-0.008c-1.791 0.004-3.412 0.729-4.589 1.9l0-0c-1.179 1.177-1.908 2.803-1.908 4.6 0 3.59 2.91 6.5 6.5 6.5s6.5-2.91 6.5-6.5c0-3.587-2.906-6.496-6.492-6.5h-0zM4.005 7.52v-1h2.5v-2.51h1v2.51h2.5v1h-2.501v2.49h-1v-2.49z"}})])},R=[],D=n("be08"),P={name:"InlinePlusCircleSolidIcon",components:{SVGIcon:D["a"]}},F=P,H=Object(h["a"])(F,$,R,!1,null,null,null),q=H.exports,W=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-minus-circle-solid-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"m6.98999129.48999129c3.58985091 0 6.50000001 2.91014913 6.50000001 6.5 0 3.58985091-2.9101491 6.50000001-6.50000001 6.50000001-3.58985087 0-6.5-2.9101491-6.5-6.50000001 0-3.58985087 2.91014913-6.5 6.5-6.5zm3 6.02001742h-6v1h6z","fill-rule":"evenodd"}})])},V=[],U={name:"InlineMinusCircleSolidIcon",components:{SVGIcon:D["a"]}},z=U,G=Object(h["a"])(z,W,V,!1,null,null,null),K=G.exports;const Y={request:"Request",response:"Response"};var X={name:"EndpointExample",components:{InlineMinusCircleSolidIcon:K,InlinePlusCircleSolidIcon:q,TabnavItem:M,Tabnav:O,CollapsibleCodeListing:f,Row:x["a"],Column:E["a"]},constants:{Tab:Y},props:{request:{type:Object,required:!0},response:{type:Object,required:!0}},data(){return{isCollapsed:!0,currentTab:Y.request}},computed:{Tab:()=>Y,isCollapsible:({response:e,request:t,currentTab:n})=>{const i={[Y.request]:t.content,[Y.response]:e.content}[n]||[];return i.some(({collapsible:e})=>e)}},methods:{isCurrent(e){return this.currentTab===e},showMore(){this.isCollapsed=!1},showLess(){this.isCollapsed=!0}}},Z=X,J=(n("9a2b"),Object(h["a"])(Z,y,w,!1,null,"6197ce3f",null)),Q=J.exports,ee=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("figure",{attrs:{id:e.anchor}},[e._t("default")],2)},te=[],ne={name:"Figure",props:{anchor:{type:String,required:!0}}},ie=ne,se=(n("57ea"),Object(h["a"])(ie,ee,te,!1,null,"7be42fb4",null)),re=se.exports,ae=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("figcaption",{staticClass:"caption"},[n("strong",[e._v(e._s(e.title))]),e._v(" "),e._t("default")],2)},oe=[],ce={name:"FigureCaption",props:{title:{type:String,required:!0}}},le=ce,ue=(n("e7fb"),Object(h["a"])(le,ae,oe,!1,null,"0bcb8b58",null)),de=ue.exports,he=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ImageAsset",{attrs:{alt:e.alt,variants:e.variants}})},pe=[],fe=n("8bd9"),ge={name:"InlineImage",components:{ImageAsset:fe["a"]},props:{alt:{type:String,default:""},variants:{type:Array,required:!0}}},me=ge,be=(n("cb92"),Object(h["a"])(me,he,pe,!1,null,"3a939631",null)),ve=be.exports,ye=n("86d8"),we=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"table-wrapper"},[n("table",[e._t("default")],2)])},xe=[],Ee={name:"Table"},_e=Ee,ke=(n("72af"),n("90f3"),Object(h["a"])(_e,we,xe,!1,null,"358dcd5e",null)),je=ke.exports,Te=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("s",[e._t("default")],2)},Ce=[],Se={name:"StrikeThrough"},Oe=Se,Ne=(n("830f"),Object(h["a"])(Oe,Te,Ce,!1,null,"eb91ce54",null)),Le=Ne.exports;const Ie={aside:"aside",codeListing:"codeListing",endpointExample:"endpointExample",heading:"heading",orderedList:"orderedList",paragraph:"paragraph",table:"table",termList:"termList",unorderedList:"unorderedList",dictionaryExample:"dictionaryExample"},Ae={codeVoice:"codeVoice",emphasis:"emphasis",image:"image",inlineHead:"inlineHead",link:"link",newTerm:"newTerm",reference:"reference",strong:"strong",text:"text",superscript:"superscript",subscript:"subscript",strikethrough:"strikethrough"},Be={both:"both",column:"column",none:"none",row:"row"};function Me(e,t){const n=n=>n.map(Me(e,t)),a=t=>t.map(t=>e("li",{},n(t.content))),o=(t,i=Be.none)=>{switch(i){case Be.both:{const[i,...s]=t;return[e("thead",{},[e("tr",{},i.map(t=>e("th",{attrs:{scope:"col"}},n(t))))]),e("tbody",{},s.map(([t,...i])=>e("tr",{},[e("th",{attrs:{scope:"row"}},n(t)),...i.map(t=>e("td",{},n(t)))])))]}case Be.column:return[e("tbody",{},t.map(([t,...i])=>e("tr",{},[e("th",{attrs:{scope:"row"}},n(t)),...i.map(t=>e("td",{},n(t)))])))];case Be.row:{const[i,...s]=t;return[e("thead",{},[e("tr",{},i.map(t=>e("th",{attrs:{scope:"col"}},n(t))))]),e("tbody",{},s.map(t=>e("tr",{},t.map(t=>e("td",{},n(t))))))]}default:return[e("tbody",{},t.map(t=>e("tr",{},t.map(t=>e("td",{},n(t))))))]}},c=({metadata:{abstract:t,anchor:i,title:s},...r})=>e(re,{props:{anchor:i}},[...s&&t&&t.length?[e(de,{props:{title:s}},n(t))]:[],n([r])]);return function(l){switch(l.type){case Ie.aside:{const t={kind:l.style,name:l.name};return e(i["a"],{props:t},n(l.content))}case Ie.codeListing:{if(l.metadata&&l.metadata.anchor)return c(l);const t={syntax:l.syntax,fileType:l.fileType,content:l.code,showLineNumbers:l.showLineNumbers};return e(s["a"],{props:t})}case Ie.endpointExample:{const t={request:l.request,response:l.response};return e(Q,{props:t},n(l.summary||[]))}case Ie.heading:return e("h"+l.level,{attrs:{id:l.anchor}},l.text);case Ie.orderedList:return e("ol",{},a(l.items));case Ie.paragraph:return e("p",{},n(l.inlineContent));case Ie.table:return l.metadata&&l.metadata.anchor?c(l):e(je,{},o(l.rows,l.header));case Ie.termList:return e("dl",{},l.items.map(({term:t,definition:i})=>[e("dt",{},n(t.inlineContent)),e("dd",{},n(i.content))]));case Ie.unorderedList:return e("ul",{},a(l.items));case Ie.dictionaryExample:{const t={example:l.example};return e(v,{props:t},n(l.summary||[]))}case Ae.codeVoice:return e(r["a"],{},l.code);case Ae.emphasis:case Ae.newTerm:return e("em",n(l.inlineContent));case Ae.image:{if(l.metadata&&l.metadata.anchor)return c(l);const n=t[l.identifier];return n?e(ve,{props:{alt:n.alt,variants:n.variants}}):null}case Ae.link:return e("a",{attrs:{href:l.destination}},l.title);case Ae.reference:{const i=t[l.identifier];if(!i)return null;const s=l.overridingTitleInlineContent||i.titleInlineContent,r=l.overridingTitle||i.title;return e(ye["a"],{props:{url:i.url,kind:i.kind,role:i.role,isActive:l.isActive,ideTitle:i.ideTitle,titleStyle:i.titleStyle}},s?n(s):r)}case Ae.strong:case Ae.inlineHead:return e("strong",n(l.inlineContent));case Ae.text:return l.text;case Ae.superscript:return e("sup",n(l.inlineContent));case Ae.subscript:return e("sub",n(l.inlineContent));case Ae.strikethrough:return e(Le,n(l.inlineContent));default:return null}}}var $e,Re,De={name:"ContentNode",constants:{TableHeaderStyle:Be},render:function(e){return e(this.tag,{class:"content"},this.content.map(Me(e,this.references),this))},inject:{references:{default(){return{}}}},props:{content:{type:Array,required:!0},tag:{type:String,default:()=>"div"}},methods:{map(e){function t(n=[]){return n.map(n=>{switch(n.type){case Ie.aside:return e({...n,content:t(n.content)});case Ie.dictionaryExample:return e({...n,summary:t(n.summary)});case Ie.paragraph:case Ae.emphasis:case Ae.strong:case Ae.inlineHead:case Ae.superscript:case Ae.subscript:case Ae.strikethrough:case Ae.newTerm:return e({...n,inlineContent:t(n.inlineContent)});case Ie.orderedList:case Ie.unorderedList:return e({...n,items:n.items.map(e=>({...e,content:t(e.content)}))});case Ie.table:return e({...n,rows:n.rows.map(e=>e.map(t))});case Ie.termList:return e({...n,items:n.items.map(e=>({...e,term:{inlineContent:t(e.term.inlineContent)},definition:{content:t(e.definition.content)}}))});default:return e(n)}})}return t(this.content)},forEach(e){function t(n=[]){n.forEach(n=>{switch(e(n),n.type){case Ie.aside:t(n.content);break;case Ie.paragraph:case Ae.emphasis:case Ae.strong:case Ae.inlineHead:case Ae.newTerm:case Ae.superscript:case Ae.subscript:case Ae.strikethrough:t(n.inlineContent);break;case Ie.orderedList:case Ie.unorderedList:n.items.forEach(e=>t(e.content));break;case Ie.dictionaryExample:t(n.summary);break;case Ie.table:n.rows.forEach(e=>{e.forEach(t)});break;case Ie.termList:n.items.forEach(e=>{t(e.term.inlineContent),t(e.definition.content)});break}})}return t(this.content)}},BlockType:Ie,InlineType:Ae},Pe=De,Fe=Object(h["a"])(Pe,$e,Re,!1,null,null,null);t["a"]=Fe.exports},"57ea":function(e,t,n){"use strict";n("971b")},"598a":function(e,t,n){},"620a":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"col",class:e.classes},[e._t("default")],2)},s=[];const r=0,a=12,o=new Set(["large","medium","small"]),c=e=>({type:Object,default:()=>({}),validator:t=>Object.keys(t).every(n=>o.has(n)&&e(t[n]))}),l=c(e=>"boolean"===typeof e),u=c(e=>"number"===typeof e&&e>=r&&e<=a);var d={name:"GridColumn",props:{isCentered:l,isUnCentered:l,span:{...u,default:()=>({large:a})}},computed:{classes:function(){return{["large-"+this.span.large]:void 0!==this.span.large,["medium-"+this.span.medium]:void 0!==this.span.medium,["small-"+this.span.small]:void 0!==this.span.small,"large-centered":!!this.isCentered.large,"medium-centered":!!this.isCentered.medium,"small-centered":!!this.isCentered.small,"large-uncentered":!!this.isUnCentered.large,"medium-uncentered":!!this.isUnCentered.medium,"small-uncentered":!!this.isUnCentered.small}}}},h=d,p=(n("6e4a"),n("2877")),f=Object(p["a"])(h,i,s,!1,null,"2ee3ad8b",null);t["a"]=f.exports},"621f":function(e,t,n){"use strict";n("b1d4")},"63b8":function(e,t,n){"use strict";n.d(t,"a",(function(){return i})),n.d(t,"b",(function(){return r}));const i={large:"large",medium:"medium",small:"small"},s={[i.small]:0,[i.medium]:1,[i.large]:2};function r(e,t){return s[e]>s[t]}},"66cd":function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));const i={article:"article",codeListing:"codeListing",collection:"collection",collectionGroup:"collectionGroup",containerSymbol:"containerSymbol",devLink:"devLink",dictionarySymbol:"dictionarySymbol",generic:"generic",link:"link",media:"media",pseudoCollection:"pseudoCollection",pseudoSymbol:"pseudoSymbol",restRequestSymbol:"restRequestSymbol",sampleCode:"sampleCode",symbol:"symbol",table:"table",learn:"learn",overview:"overview",project:"project",tutorial:"tutorial",resources:"resources"}},"6cc4":function(e,t,n){},"6e4a":function(e,t,n){"use strict";n("05a1")},"72af":function(e,t,n){"use strict";n("d541")},"72e7":function(e,t,n){"use strict";const i={up:"up",down:"down"};t["a"]={constants:{IntersectionDirections:i},data(){return{intersectionObserver:null,intersectionPreviousScrollY:0,intersectionScrollDirection:i.down}},computed:{intersectionThreshold(){const e=[];for(let t=0;t<=1;t+=.01)e.push(t);return e},intersectionRoot(){return null},intersectionRootMargin(){return"0px 0px 0px 0px"},intersectionObserverOptions(){return{root:this.intersectionRoot,rootMargin:this.intersectionRootMargin,threshold:this.intersectionThreshold}}},async mounted(){await n.e("chunk-2d0d3105").then(n.t.bind(null,"5abe",7)),this.intersectionObserver=new IntersectionObserver(e=>{this.detectIntersectionScrollDirection();const t=this.onIntersect;t?e.forEach(t):console.warn("onIntersect not implemented")},this.intersectionObserverOptions),this.getIntersectionTargets().forEach(e=>{this.intersectionObserver.observe(e)})},beforeDestroy(){this.intersectionObserver&&this.intersectionObserver.disconnect()},methods:{getIntersectionTargets(){return[this.$el]},detectIntersectionScrollDirection(){window.scrollYthis.intersectionPreviousScrollY&&(this.intersectionScrollDirection=i.up),this.intersectionPreviousScrollY=window.scrollY}}}},"748c":function(e,t,n){"use strict";n.d(t,"d",(function(){return s})),n.d(t,"a",(function(){return r})),n.d(t,"c",(function(){return a})),n.d(t,"b",(function(){return o}));var i=n("6842");function s(e){return e.reduce((e,t)=>(t.traits.includes("dark")?e.dark.push(t):e.light.push(t),e),{light:[],dark:[]})}function r(e){const t=["1x","2x","3x"];return t.reduce((t,n)=>{const i=e.find(e=>e.traits.includes(n));return i?t.concat({density:n,src:i.url,size:i.size}):t},[])}function a(e){const t="/",n=new RegExp(t+"+","g");return e.join(t).replace(n,t)}function o(e){return e&&"string"===typeof e&&!e.startsWith(i["a"])&&e.startsWith("/")?a([i["a"],e]):e}},"76ab":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.resolvedComponent,e._b({tag:"component",staticClass:"button-cta",class:{"is-dark":e.isDark}},"component",e.componentProps,!1),[e._t("default")],2)},s=[],r=n("86d8"),a={name:"ButtonLink",components:{Reference:r["a"]},props:{url:{type:String,required:!1},isDark:{type:Boolean,default:!1}},computed:{resolvedComponent:({url:e})=>e?r["a"]:"button",componentProps:({url:e})=>e?{url:e}:{}}},o=a,c=(n("621f"),n("2877")),l=Object(c["a"])(o,i,s,!1,null,"494ad9c8",null);t["a"]=l.exports},"7b1f":function(e,t,n){"use strict";var i,s,r={functional:!0,name:"WordBreak",render(e,{props:t,slots:n,data:i}){const s=n().default||[],r=s.filter(e=>e.text&&!e.tag);if(0===r.length||r.length!==s.length)return e(t.tag,i,s);const a=r.map(({text:e})=>e).join(),o=[];let c=null,l=0;while(null!==(c=t.safeBoundaryPattern.exec(a))){const t=c.index+1;o.push(a.slice(l,t)),o.push(e("wbr",{key:c.index})),l=t}return o.push(a.slice(l,a.length)),e(t.tag,i,o)},props:{safeBoundaryPattern:{type:RegExp,default:()=>/([a-z](?=[A-Z])|(:)\w|\w(?=[._]\w))/g},tag:{type:String,default:()=>"span"}}},a=r,o=n("2877"),c=Object(o["a"])(a,i,s,!1,null,null,null);t["a"]=c.exports},"7b69":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"code-listing",class:{"single-line":1===e.syntaxHighlightedLines.length},attrs:{"data-syntax":e.syntaxNameNormalized}},[e.fileName?n("Filename",{attrs:{isActionable:e.isFileNameActionable,fileType:e.fileType},on:{click:function(t){return e.$emit("file-name-click")}}},[e._v(e._s(e.fileName)+" ")]):e._e(),n("div",{staticClass:"container-general"},[n("pre",[n("code",e._l(e.syntaxHighlightedLines,(function(t,i){return n("span",{key:i,class:["code-line-container",{highlighted:e.isHighlighted(i)}]},[n("span",{directives:[{name:"show",rawName:"v-show",value:e.showLineNumbers,expression:"showLineNumbers"}],staticClass:"code-number",attrs:{"data-line-number":e.lineNumberFor(i)}}),e._v("\n"),n("span",{staticClass:"code-line",domProps:{innerHTML:e._s(t)}})])})),0)])])],1)},s=[],r=n("002d"),a=n("8649"),o=n("1020"),c=n.n(o);const l={bash:["sh","zsh"],c:["h"],cpp:["cc","c++","h++","hpp","hh","hxx","cxx"],css:[],diff:["patch"],http:["https"],java:["jsp"],javascript:["js","jsx","mjs","cjs"],json:[],llvm:[],markdown:["md","mkdown","mkd"],objectivec:["mm","objc","obj-c"],perl:["pl","pm"],php:[],python:["py","gyp","ipython"],ruby:["rb","gemspec","podspec","thor","irb"],scss:[],shell:["console","shellsession"],swift:[],xml:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"]},u=new Set(["markdown","swift"]),d=Object.entries(l),h=new Set(Object.keys(l)),p=new Map;async function f(e){const t=[e];try{return await t.reduce(async(e,t)=>{let i;await e,i=u.has(t)?await n("1417")("./"+t):await n("2ab3")("./"+t),c.a.registerLanguage(t,i.default)},Promise.resolve()),!0}catch(i){return console.error(`Could not load ${e} file`),!1}}function g(e){if(h.has(e))return e;const t=d.find(([,t])=>t.includes(e));return t?t[0]:null}function m(e){if(p.has(e))return p.get(e);const t=g(e);return p.set(e,t),t}c.a.configure({classPrefix:"syntax-",languages:[...h]});const b=async e=>{const t=m(e);return!(!t||c.a.listLanguages().includes(t))&&f(t)},v=/\r\n|\r|\n/g,y=/syntax-/;function w(e){return 0===e.length?[]:e.split(v)}function x(e){return(e.trim().match(v)||[]).length}function E(e){const t=document.createElement("template");return t.innerHTML=e,t.content.childNodes}function _(e){const{className:t}=e;if(!y.test(t))return null;const n=w(e.innerHTML).reduce((e,n)=>`${e}${n}\n`,"");return E(n.trim())}function k(e){return Array.from(e.childNodes).forEach(e=>{if(x(e.textContent))try{const t=e.childNodes.length?k(e):_(e);t&&e.replaceWith(...t)}catch(t){console.error(t)}}),_(e)}function j(e,t){if(!c.a.getLanguage(t))throw new Error("Unsupported language for syntax highlighting: "+t);return c.a.highlight(e,{language:t,ignoreIllegals:!0}).value}function T(e,t){const n=e.join("\n"),i=j(n,t),s=document.createElement("code");return s.innerHTML=i,k(s),w(s.innerHTML)}var C=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"filename"},[e.isActionable?n("a",{attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[n("FileIcon",{attrs:{fileType:e.fileType}}),e._t("default")],2):n("span",[n("FileIcon",{attrs:{fileType:e.fileType}}),e._t("default")],2)])},S=[],O=function(){var e=this,t=e.$createElement,n=e._self._c||t;return"swift"===e.fileType?n("SwiftFileIcon",{staticClass:"file-icon"}):n("GenericFileIcon",{staticClass:"file-icon"})},N=[],L=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"swift-file-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z"}}),n("path",{attrs:{d:"M7 1h1v4h-1z"}}),n("path",{attrs:{d:"M7 5h5v1h-5z"}})])},I=[],A=n("be08"),B={name:"SwiftFileIcon",components:{SVGIcon:A["a"]}},M=B,$=n("2877"),R=Object($["a"])(M,L,I,!1,null,null,null),D=R.exports,P=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"generic-file-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z"}}),n("path",{attrs:{d:"M7 1h1v4h-1z"}}),n("path",{attrs:{d:"M7 5h5v1h-5z"}})])},F=[],H={name:"GenericFileIcon",components:{SVGIcon:A["a"]}},q=H,W=Object($["a"])(q,P,F,!1,null,null,null),V=W.exports,U={name:"CodeListingFileIcon",components:{SwiftFileIcon:D,GenericFileIcon:V},props:{fileType:String}},z=U,G=(n("e6db"),Object($["a"])(z,O,N,!1,null,"7c381064",null)),K=G.exports,Y={name:"CodeListingFilename",components:{FileIcon:K},props:{isActionable:{type:Boolean,default:()=>!1},fileType:String}},X=Y,Z=(n("8608"),Object($["a"])(X,C,S,!1,null,"c8c40662",null)),J=Z.exports,Q={name:"CodeListing",components:{Filename:J},data(){return{syntaxHighlightedLines:[]}},props:{fileName:String,isFileNameActionable:{type:Boolean,default:()=>!1},syntax:String,fileType:String,content:{type:Array,required:!0},startLineNumber:{type:Number,default:()=>1},highlights:{type:Array,default:()=>[]},showLineNumbers:{type:Boolean,default:()=>!1}},computed:{escapedContent:({content:e})=>e.map(r["c"]),highlightedLineNumbers(){return new Set(this.highlights.map(({line:e})=>e))},syntaxNameNormalized(){const e={occ:a["a"].objectiveC.key.url};return e[this.syntax]||this.syntax}},watch:{content:{handler:"syntaxHighlightLines",immediate:!0}},methods:{isHighlighted(e){return this.highlightedLineNumbers.has(this.lineNumberFor(e))},lineNumberFor(e){return this.startLineNumber+e},async syntaxHighlightLines(){let e;try{await b(this.syntaxNameNormalized),e=T(this.content,this.syntaxNameNormalized)}catch(t){e=this.escapedContent}this.syntaxHighlightedLines=e.map(e=>""===e?"\n":e)}}},ee=Q,te=(n("2d80"),Object($["a"])(ee,i,s,!1,null,"193a0b82",null));t["a"]=te.exports},"80c8":function(e,t,n){},"830f":function(e,t,n){"use strict";n("30b0")},8608:function(e,t,n){"use strict";n("a7f3")},8649:function(e,t,n){"use strict";t["a"]={objectiveC:{name:"Objective-C",key:{api:"occ",url:"objc"}},swift:{name:"Swift",key:{api:"swift",url:"swift"}}}},"86d8":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.refComponent,{tag:"component",attrs:{url:e.urlWithParams,"is-active":e.isActiveComputed}},[e._t("default")],2)},s=[],r=n("d26a"),a=n("66cd"),o=n("9895"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isActive?n("a",{attrs:{href:e.url}},[e._t("default")],2):n("span",[e._t("default")],2)},l=[],u={name:"ReferenceExternal",props:{url:{type:String,required:!0},isActive:{type:Boolean,default:!0}}},d=u,h=n("2877"),p=Object(h["a"])(d,c,l,!1,null,null,null),f=p.exports,g=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ReferenceInternal",e._b({},"ReferenceInternal",e.$props,!1),[n("CodeVoice",[e._t("default")],2)],1)},m=[],b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isActive?n("router-link",{attrs:{to:e.url}},[e._t("default")],2):n("span",[e._t("default")],2)},v=[],y={name:"ReferenceInternal",props:{url:{type:String,required:!0},isActive:{type:Boolean,default:!0}}},w=y,x=Object(h["a"])(w,b,v,!1,null,null,null),E=x.exports,_=n("52e4"),k={name:"ReferenceInternalSymbol",props:E.props,components:{ReferenceInternal:E,CodeVoice:_["a"]}},j=k,T=Object(h["a"])(j,g,m,!1,null,null,null),C=T.exports,S={name:"Reference",computed:{isInternal({url:e}){if(!e.startsWith("/")&&!e.startsWith("#"))return!1;const{resolved:{name:t}={}}=this.$router.resolve(e)||{};return t!==o["b"]},isSymbolReference(){return"symbol"===this.kind&&(this.role===a["a"].symbol||this.role===a["a"].dictionarySymbol)},isDisplaySymbol({isSymbolReference:e,titleStyle:t,ideTitle:n}){return n?e&&"symbol"===t:e},refComponent(){return this.isInternal?this.isDisplaySymbol?C:E:f},urlWithParams({isInternal:e}){return e?Object(r["b"])(this.url,this.$route.query):this.url},isActiveComputed({url:e,isActive:t}){return!(!e||!t)}},props:{url:{type:String,required:!0},kind:{type:String,required:!1},role:{type:String,required:!1},isActive:{type:Boolean,required:!1,default:!0},ideTitle:{type:String,required:!1},titleStyle:{type:String,required:!1}}},O=S,N=Object(h["a"])(O,i,s,!1,null,null,null);t["a"]=N.exports},"8a61":function(e,t,n){"use strict";t["a"]={methods:{scrollToElement(e){const t=this.$router.resolve({hash:e});return this.$router.options.scrollBehavior(t.route).then(({selector:e,offset:t})=>{const n=document.querySelector(e);return n?(n.scrollIntoView(),window.scrollBy(-t.x,-t.y),n):null})}}}},"8bd9":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("picture",[e.prefersAuto&&e.darkVariantAttributes?n("source",{attrs:{media:"(prefers-color-scheme: dark)",srcset:e.darkVariantAttributes.srcSet}}):e._e(),e.prefersDark&&e.darkVariantAttributes?n("img",e._b({attrs:{alt:e.alt}},"img",e.darkVariantAttributes,!1)):n("img",e._b({attrs:{alt:e.alt}},"img",e.defaultAttributes,!1))])},s=[],r=n("748c"),a={props:{variants:{type:Array,required:!0}},computed:{variantsGroupedByAppearance(){return Object(r["d"])(this.variants)},lightVariants(){return Object(r["a"])(this.variantsGroupedByAppearance.light)},darkVariants(){return Object(r["a"])(this.variantsGroupedByAppearance.dark)}}},o=n("e425"),c=n("821b");function l(e){if(!e.length)return null;const t=e.map(e=>`${Object(r["b"])(e.src)} ${e.density}`).join(", "),n=e[0],i={srcSet:t,src:Object(r["b"])(n.src)},{width:s}=n.size||{width:null};return s&&(i.width=s,i.height="auto"),i}var u={name:"ImageAsset",mixins:[a],data:()=>({appState:o["a"].state}),computed:{defaultAttributes:({lightVariantAttributes:e,darkVariantAttributes:t})=>e||t,darkVariantAttributes:({darkVariants:e})=>l(e),lightVariantAttributes:({lightVariants:e})=>l(e),preferredColorScheme:({appState:e})=>e.preferredColorScheme,prefersAuto:({preferredColorScheme:e})=>e===c["a"].auto.value,prefersDark:({preferredColorScheme:e})=>e===c["a"].dark.value},props:{alt:{type:String,default:""},variants:{type:Array,required:!0}}},d=u,h=n("2877"),p=Object(h["a"])(d,i,s,!1,null,null,null);t["a"]=p.exports},"8c92":function(e,t,n){"use strict";n("80c8")},"90f3":function(e,t,n){"use strict";n("6cc4")},9152:function(e,t,n){"use strict";n("50fc")},"95da":function(e,t,n){"use strict";function i(e,t){const n=document.body;let s=e,r=e;while(s=s.previousElementSibling)t(s);while(r=r.nextElementSibling)t(r);e.parentElement&&e.parentElement!==n&&i(e.parentElement,t)}const s="data-original-",r="aria-hidden",a=s+r,o=e=>{let t=e.getAttribute(a);t||(t=e.getAttribute(r)||"",e.setAttribute(a,t)),e.setAttribute(r,"true")},c=e=>{const t=e.getAttribute(a);"string"===typeof t&&(t.length?e.setAttribute(r,t):e.removeAttribute(r)),e.removeAttribute(a)};t["a"]={hide(e){i(e,o)},show(e){i(e,c)}}},"971b":function(e,t,n){},"9a2b":function(e,t,n){"use strict";n("dce7")},"9b30":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{staticClass:"nav-menu-items",attrs:{"data-previous-menu-children-count":e.previousSiblingChildren}},[e._t("default")],2)},s=[],r={name:"NavMenuItems",props:{previousSiblingChildren:{type:Number,default:0}}},a=r,o=(n("502c"),n("2877")),c=Object(o["a"])(a,i,s,!1,null,"aa06bfc4",null);t["a"]=c.exports},"9bb2":function(e,t,n){"use strict";n("3b8f")},a1bd:function(e,t,n){},a7f3:function(e,t,n){},a97e:function(e,t,n){"use strict";var i=n("63b8");const s={default:"default",nav:"nav"},r={[s.default]:{[i["a"].large]:{minWidth:1069,contentWidth:980},[i["a"].medium]:{minWidth:736,maxWidth:1068,contentWidth:692},[i["a"].small]:{minWidth:320,maxWidth:735,contentWidth:280}},[s.nav]:{[i["a"].large]:{minWidth:1024},[i["a"].medium]:{minWidth:768,maxWidth:1023},[i["a"].small]:{minWidth:320,maxWidth:767}}},a=e=>e?`(max-width: ${e}px)`:"",o=e=>e?`(min-width: ${e}px)`:"";function c({minWidth:e,maxWidth:t}){return["only screen",o(e),a(t)].filter(Boolean).join(" and ")}function l({maxWidth:e,minWidth:t}){return window.matchMedia(c({minWidth:t,maxWidth:e}))}var u,d,h={name:"BreakpointEmitter",constants:{BreakpointAttributes:r,BreakpointName:i["a"],BreakpointScopes:s},props:{scope:{type:String,default:()=>s.default,validator:e=>e in s}},render(){return this.$scopedSlots.default?this.$scopedSlots.default({matchingBreakpoint:this.matchingBreakpoint}):null},data:()=>({matchingBreakpoint:null}),methods:{initMediaQuery(e,t){const n=l(t),i=t=>this.handleMediaQueryChange(t,e);n.addListener(i),this.$once("hook:beforeDestroy",()=>{n.removeListener(i)}),i(n)},handleMediaQueryChange(e,t){e.matches&&(this.matchingBreakpoint=t,this.$emit("change",t))}},mounted(){const e=r[this.scope]||{};Object.entries(e).forEach(([e,t])=>{this.initMediaQuery(e,t)})}},p=h,f=n("2877"),g=Object(f["a"])(p,u,d,!1,null,null,null);t["a"]=g.exports},b1d4:function(e,t,n){},b392:function(e,t,n){},bab1:function(e,t,n){"use strict";n("a1bd")},bb52:function(e,t,n){"use strict";t["a"]={inject:{performanceMetricsEnabled:{default:!1},isTargetIDE:{default:!1}},methods:{newContentMounted(){let e;this.performanceMetricsEnabled&&(e=Math.round(window.performance.now()),window.renderedTimes||(window.renderedTimes=[]),window.renderedTimes.push(e)),this.$bridge.send({type:"rendered",data:{time:e}})}}}},be08:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("svg",{staticClass:"svg-icon",attrs:{"aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg"}},[e._t("default")],2)},s=[],r={name:"SVGIcon"},a=r,o=(n("9bb2"),n("2877")),c=Object(o["a"])(a,i,s,!1,null,"0137d411",null);t["a"]=c.exports},c064:function(e,t,n){"use strict";n("ca8c")},c081:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.action?n("DestinationDataProvider",{attrs:{destination:e.action},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.url,s=t.title;return n("ButtonLink",{attrs:{url:i,isDark:e.isDark}},[e._v(" "+e._s(s)+" ")])}}],null,!1,1264376715)}):e._e()},s=[],r=n("76ab"),a=n("c7ea"),o={name:"CallToActionButton",components:{DestinationDataProvider:a["a"],ButtonLink:r["a"]},props:{action:{type:Object,required:!0},isDark:{type:Boolean,default:!1}}},c=o,l=n("2877"),u=Object(l["a"])(c,i,s,!1,null,null,null);t["a"]=u.exports},c7ea:function(e,t,n){"use strict";const i={link:"link",reference:"reference",text:"text"};var s,r,a={name:"DestinationDataProvider",props:{destination:{type:Object,required:!0,default:()=>({})}},inject:{references:{default:()=>({})},isTargetIDE:{default:()=>!1}},constants:{DestinationType:i},computed:{isExternal:({reference:e,destination:t})=>e.type===i.link||t.type===i.link,shouldAppendOpensInBrowser:({isExternal:e,isTargetIDE:t})=>e&&t,reference:({references:e,destination:t})=>e[t.identifier]||{},linkUrl:({destination:e,reference:t})=>({[i.link]:e.destination,[i.reference]:t.url,[i.text]:e.text}[e.type]),linkTitle:({reference:e,destination:t})=>({[i.link]:t.title,[i.reference]:t.overridingTitle||e.title,[i.text]:""}[t.type])},methods:{formatAriaLabel(e){return this.shouldAppendOpensInBrowser?e+" (opens in browser)":e}},render(){return this.$scopedSlots.default({url:this.linkUrl||"",title:this.linkTitle||"",formatAriaLabel:this.formatAriaLabel,isExternal:this.isExternal})}},o=a,c=n("2877"),l=Object(c["a"])(o,s,r,!1,null,null,null);t["a"]=l.exports},c8e2:function(e,t,n){"use strict";function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.d(t,"a",(function(){return o}));const s=["input","select","textarea","button","optgroup","option","menuitem","fieldset","object","a[href]","*[tabindex]","*[contenteditable]"],r=s.join(",");var a={getTabbableElements(e){const t=e.querySelectorAll(r),n=t.length;let i;const s=[];for(i=0;i=0},isFocusableElement(e){const t=e.nodeName.toLowerCase(),n=s.includes(t);return!("a"!==t||!e.getAttribute("href"))||(n?!e.disabled:"true"===e.getAttribute("contenteditable")||!Number.isNaN(parseFloat(e.getAttribute("tabindex"))))}};class o{constructor(e){i(this,"focusContainer",null),i(this,"tabTargets",[]),i(this,"firstTabTarget",null),i(this,"lastTabTarget",null),i(this,"lastFocusedElement",null),this.focusContainer=e,this.onFocus=this.onFocus.bind(this)}updateFocusContainer(e){this.focusContainer=e}start(){this.collectTabTargets(),this.firstTabTarget?this.focusContainer.contains(document.activeElement)||this.firstTabTarget.focus():console.warn("There are no focusable elements. FocusTrap needs at least one."),this.lastFocusedElement=document.activeElement,document.addEventListener("focus",this.onFocus,!0)}stop(){document.removeEventListener("focus",this.onFocus,!0)}collectTabTargets(){this.tabTargets=a.getTabbableElements(this.focusContainer),this.firstTabTarget=this.tabTargets[0],this.lastTabTarget=this.tabTargets[this.tabTargets.length-1]}onFocus(e){if(this.focusContainer.contains(e.target))this.lastFocusedElement=e.target;else{if(e.preventDefault(),this.collectTabTargets(),this.lastFocusedElement===this.lastTabTarget||!this.lastFocusedElement)return this.firstTabTarget.focus(),void(this.lastFocusedElement=this.firstTabTarget);this.lastFocusedElement===this.firstTabTarget&&(this.lastTabTarget.focus(),this.lastFocusedElement=this.lastTabTarget)}}destroy(){this.stop(),this.focusContainer=null,this.tabTargets=[],this.firstTabTarget=null,this.lastTabTarget=null,this.lastFocusedElement=null}}},c919:function(e,t,n){"use strict";n("e5ca")},ca8c:function(e,t,n){},cb92:function(e,t,n){"use strict";n("598a")},cbcf:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("nav",{ref:"nav",staticClass:"nav",class:e.rootClasses,attrs:{role:"navigation"}},[n("div",{ref:"wrapper",staticClass:"nav__wrapper"},[n("div",{staticClass:"nav__background"}),e.hasOverlay?n("div",{staticClass:"nav-overlay",on:{click:e.closeNav}}):e._e(),n("div",{staticClass:"nav-content"},[e.$slots.default?n("div",{staticClass:"nav-title"},[e._t("default")],2):e._e(),e._t("after-title"),n("div",{staticClass:"nav-menu"},[n("a",{ref:"axToggle",staticClass:"nav-ax-toggle",attrs:{href:"#",role:"button"},on:{click:function(t){return t.preventDefault(),e.toggleNav.apply(null,arguments)}}},[n("span",{staticClass:"visuallyhidden"},[e.isOpen?[e._v("Close Menu")]:[e._v("Open Menu")]],2)]),n("div",{ref:"tray",staticClass:"nav-menu-tray",on:{transitionend:function(t){return t.target!==t.currentTarget?null:e.onTransitionEnd.apply(null,arguments)},click:e.handleTrayClick}},[e._t("tray",(function(){return[n("NavMenuItems",[e._t("menu-items")],2)]}))],2)]),n("div",{staticClass:"nav-actions"},[n("a",{staticClass:"nav-menucta",attrs:{href:"#",tabindex:"-1","aria-hidden":"true"},on:{click:function(t){return t.preventDefault(),e.toggleNav.apply(null,arguments)}}},[n("span",{staticClass:"nav-menucta-chevron"})])])],2),e._t("after-content")],2),n("BreakpointEmitter",{attrs:{scope:e.BreakpointScopes.nav},on:{change:e.onBreakpointChange}})],1)},s=[],r=n("72e7"),a=n("9b30"),o=n("a97e"),c=n("c8e2"),l=n("f2af"),u=n("942d"),d=n("63b8"),h=n("95da");const{BreakpointName:p,BreakpointScopes:f}=o["a"].constants,g={isDark:"theme-dark",isOpen:"nav--is-open",inBreakpoint:"nav--in-breakpoint-range",isTransitioning:"nav--is-opening",isSticking:"nav--is-sticking",hasSolidBackground:"nav--solid-background",hasNoBorder:"nav--noborder",hasFullWidthBorder:"nav--fullwidth-border"};var m={name:"NavBase",components:{NavMenuItems:a["a"],BreakpointEmitter:o["a"]},constants:{NavStateClasses:g},props:{breakpoint:{type:String,default:p.small},hasOverlay:{type:Boolean,default:!0},hasSolidBackground:{type:Boolean,default:!1},hasNoBorder:{type:Boolean,default:!1},hasFullWidthBorder:{type:Boolean,default:!1},isDark:{type:Boolean,default:!1}},mixins:[r["a"]],data(){return{isOpen:!1,inBreakpoint:!1,isTransitioning:!1,isSticking:!1,focusTrapInstance:null}},computed:{BreakpointScopes:()=>f,rootClasses:({isOpen:e,inBreakpoint:t,isTransitioning:n,isSticking:i,hasSolidBackground:s,hasNoBorder:r,hasFullWidthBorder:a,isDark:o})=>({[g.isDark]:o,[g.isOpen]:e,[g.inBreakpoint]:t,[g.isTransitioning]:n,[g.isSticking]:i,[g.hasSolidBackground]:s,[g.hasNoBorder]:r,[g.hasFullWidthBorder]:a})},watch:{isOpen(e){this.$emit("change",e),e?this.onExpand():this.onClose()}},async mounted(){window.addEventListener("keydown",this.onEscape),window.addEventListener("popstate",this.closeNav),window.addEventListener("orientationchange",this.closeNav),document.addEventListener("click",this.handleClickOutside),await this.$nextTick(),this.focusTrapInstance=new c["a"](this.$refs.wrapper)},beforeDestroy(){window.removeEventListener("keydown",this.onEscape),window.removeEventListener("popstate",this.closeNav),window.removeEventListener("orientationchange",this.closeNav),document.removeEventListener("click",this.handleClickOutside),this.isOpen&&this.toggleScrollLock(!1),this.focusTrapInstance.destroy()},methods:{getIntersectionTargets(){return[document.getElementById(u["b"])||this.$el]},toggleNav(){this.isOpen=!this.isOpen,this.isTransitioning=!0},closeNav(){this.isOpen=!1},async onTransitionEnd({propertyName:e}){"max-height"===e&&(this.$emit("changed",this.isOpen),this.isTransitioning=!1,this.isOpen?(this.$emit("opened"),this.toggleScrollLock(!0)):this.$emit("closed"))},onBreakpointChange(e){const t=Object(d["b"])(e,this.breakpoint);this.inBreakpoint=!t,t&&this.closeNav()},onIntersect({intersectionRatio:e}){window.scrollY<0||(this.isSticking=1!==e)},onEscape({key:e}){"Escape"===e&&this.isOpen&&(this.closeNav(),this.$refs.axToggle.focus())},handleTrayClick({target:e}){e.href&&this.closeNav()},handleClickOutside({target:e}){this.$refs.nav.contains(e)||this.closeNav()},toggleScrollLock(e){e?l["a"].lockScroll(this.$refs.tray):l["a"].unlockScroll(this.$refs.tray)},onExpand(){this.$emit("open"),this.focusTrapInstance.start(),h["a"].hide(this.$refs.wrapper)},onClose(){this.$emit("close"),this.toggleScrollLock(!1),this.focusTrapInstance.stop(),h["a"].show(this.$refs.wrapper)}}},b=m,v=(n("ef28"),n("2877")),y=Object(v["a"])(b,i,s,!1,null,"aada5b66",null);t["a"]=y.exports},d541:function(e,t,n){},d8ce:function(e,t,n){"use strict";var i=n("6842");t["a"]={created(){if(this.pageTitle){const e=Object(i["c"])(["meta","title"],"Documentation"),t=[this.pageTitle,e].filter(Boolean);document.title=t.join(" | ")}}}},dce7:function(e,t,n){},e1d1:function(e,t,n){},e3ab:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("aside",{class:e.kind,attrs:{"aria-label":e.kind}},[n("p",{staticClass:"label"},[e._v(e._s(e.label))]),e._t("default")],2)},s=[];const r={deprecated:"deprecated",experiment:"experiment",important:"important",note:"note",tip:"tip",warning:"warning"};var a={name:"Aside",props:{kind:{type:String,required:!0,validator:e=>Object.prototype.hasOwnProperty.call(r,e)},name:{type:String,required:!1}},computed:{label:({kind:e,name:t})=>t||{[r.deprecated]:"Deprecated",[r.experiment]:"Experiment",[r.important]:"Important",[r.note]:"Note",[r.tip]:"Tip",[r.warning]:"Warning"}[e]}},o=a,c=(n("9152"),n("2877")),l=Object(c["a"])(o,i,s,!1,null,"5117d474",null);t["a"]=l.exports},e5ca:function(e,t,n){},e6db:function(e,t,n){"use strict";n("47cc")},e7fb:function(e,t,n){"use strict";n("4c7a")},ef28:function(e,t,n){"use strict";n("2976")},f2af:function(e,t,n){"use strict";let i=!1,s=-1,r=0;const a=()=>window.navigator&&window.navigator.platform&&(/iP(ad|hone|od)/.test(window.navigator.platform)||"MacIntel"===window.navigator.platform&&window.navigator.maxTouchPoints>1);function o(e){e.touches.length>1||e.preventDefault()}const c=e=>!!e&&e.scrollHeight-e.scrollTop<=e.clientHeight;function l(){r=document.body.getBoundingClientRect().top,document.body.style.overflow="hidden scroll",document.body.style.top=r+"px",document.body.style.position="fixed",document.body.style.width="100%"}function u(e){e.ontouchstart=null,e.ontouchmove=null,document.removeEventListener("touchmove",o)}function d(e,t){const n=e.targetTouches[0].clientY-s;return 0===t.scrollTop&&n>0||c(t)&&n<0?o(e):(e.stopPropagation(),!0)}function h(e){e.ontouchstart=e=>{1===e.targetTouches.length&&(s=e.targetTouches[0].clientY)},e.ontouchmove=t=>{1===t.targetTouches.length&&d(t,e)},document.addEventListener("touchmove",o,{passive:!1})}t["a"]={lockScroll(e){i||(a()?h(e):l(),i=!0)},unlockScroll(e){i&&(a()?u(e):(document.body.style.cssText="",window.scrollTo(0,Math.abs(r))),i=!1)}}}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-bash.1b52852f.js b/JellyfinAPI.doccarchive/js/highlight-js-bash.1b52852f.js new file mode 100644 index 000000000..6db177863 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-bash.1b52852f.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-bash"],{f0f8:function(e,s){function t(e){const s=e.regex,t={},n={begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[t]}]};Object.assign(t,{className:"variable",variants:[{begin:s.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},n]});const a={className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},i={begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,className:"string"})]}},c={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,t,a]};a.contains.push(c);const o={className:"",begin:/\\"/},r={className:"string",begin:/'/,end:/'/},l={begin:/\$\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,t]},p=["fish","bash","zsh","sh","csh","ksh","tcsh","dash","scsh"],d=e.SHEBANG({binary:`(${p.join("|")})`,relevance:10}),h={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0},m=["if","then","else","elif","fi","for","while","in","do","done","case","esac","function"],u=["true","false"],b={match:/(\/[a-z._-]+)+/},g=["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset"],f=["alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","type","typeset","ulimit","unalias"],w=["autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp"],k=["chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"];return{name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z._-]+\b/,keyword:m,literal:u,built_in:[...g,...f,"set","shopt",...w,...k]},contains:[d,e.SHEBANG(),h,l,e.HASH_COMMENT_MODE,i,b,c,o,r,t]}}e.exports=t}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-c.d1db3f17.js b/JellyfinAPI.doccarchive/js/highlight-js-c.d1db3f17.js new file mode 100644 index 000000000..3bc41acb9 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-c.d1db3f17.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-c"],{"1fe5":function(e,n){function s(e){const n=e.regex,s=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),t="decltype\\(auto\\)",a="[a-zA-Z_]\\w*::",i="<[^<>]+>",r="("+t+"|"+n.optional(a)+"[a-zA-Z_]\\w*"+n.optional(i)+")",l={className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{match:/\batomic_[a-z]{3,6}\b/}]},o="\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)",c={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+o+"|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},d={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},u={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(c,{className:"string"}),{className:"string",begin:/<.*?>/},s,e.C_BLOCK_COMMENT_MODE]},g={className:"title",begin:n.optional(a)+e.IDENT_RE,relevance:0},p=n.optional(a)+e.IDENT_RE+"\\s*\\(",m=["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],_=["float","double","signed","unsigned","int","short","long","char","void","_Bool","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal128","const","static","complex","bool","imaginary"],f={keyword:m,type:_,literal:"true false NULL",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"},b=[u,l,s,e.C_BLOCK_COMMENT_MODE,d,c],w={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:f,contains:b.concat([{begin:/\(/,end:/\)/,keywords:f,contains:b.concat(["self"]),relevance:0}]),relevance:0},h={begin:"("+r+"[\\*&\\s]+)+"+p,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:f,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:t,keywords:f,relevance:0},{begin:p,returnBegin:!0,contains:[e.inherit(g,{className:"title.function"})],relevance:0},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:f,relevance:0,contains:[s,e.C_BLOCK_COMMENT_MODE,c,d,l,{begin:/\(/,end:/\)/,keywords:f,relevance:0,contains:["self",s,e.C_BLOCK_COMMENT_MODE,c,d,l]}]},l,s,e.C_BLOCK_COMMENT_MODE,u]};return{name:"C",aliases:["h"],keywords:f,disableAutodetect:!0,illegal:"=]/,contains:[{beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:u,strings:c,keywords:f}}}e.exports=s}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-cpp.eaddddbe.js b/JellyfinAPI.doccarchive/js/highlight-js-cpp.eaddddbe.js new file mode 100644 index 000000000..db9fd8205 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-cpp.eaddddbe.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-cpp"],{"0209":function(e,t){function n(e){const t=e.regex,n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),a="decltype\\(auto\\)",i="[a-zA-Z_]\\w*::",r="<[^<>]+>",s="(?!struct)("+a+"|"+t.optional(i)+"[a-zA-Z_]\\w*"+t.optional(r)+")",c={className:"type",begin:"\\b[a-z\\d_]*_t\\b"},o="\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)",l={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+o+"|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},d={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},u={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(l,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},p={className:"title",begin:t.optional(i)+e.IDENT_RE,relevance:0},_=t.optional(i)+e.IDENT_RE+"\\s*\\(",m=["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],g=["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],f=["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"],b=["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"],h=["NULL","false","nullopt","nullptr","true"],w=["_Pragma"],y={type:g,keyword:m,literal:h,built_in:w,_type_hints:f},v={className:"function.dispatch",relevance:0,keywords:{_hint:b},begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))},k=[v,u,c,n,e.C_BLOCK_COMMENT_MODE,d,l],x={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:y,contains:k.concat([{begin:/\(/,end:/\)/,keywords:y,contains:k.concat(["self"]),relevance:0}]),relevance:0},E={className:"function",begin:"("+s+"[\\*&\\s]+)+"+_,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:y,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:a,keywords:y,relevance:0},{begin:_,returnBegin:!0,contains:[p],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[l,d]},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:y,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,l,d,c,{begin:/\(/,end:/\)/,keywords:y,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,l,d,c]}]},c,n,e.C_BLOCK_COMMENT_MODE,u]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:y,illegal:"",keywords:y,contains:["self",c]},{begin:e.IDENT_RE+"::",keywords:y},{match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],className:{1:"keyword",3:"title.class"}}])}}e.exports=n}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-css.75eab1fe.js b/JellyfinAPI.doccarchive/js/highlight-js-css.75eab1fe.js new file mode 100644 index 000000000..3d507d0bc --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-css.75eab1fe.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-css"],{ee8c:function(e,t){const o=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z][A-Za-z0-9_-]*/}}),i=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],r=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],a=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],n=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],l=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-height","max-width","min-height","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse();function s(e){const t=e.regex,s=o(e),d={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},c="and or not only",g=/@-?\w[\w]*(-\w+)*/,m="[a-zA-Z-][a-zA-Z0-9_-]*",p=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},contains:[s.BLOCK_COMMENT,d,s.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:"selector-class",begin:"\\."+m,relevance:0},s.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{begin:":("+a.join("|")+")"},{begin:":(:)?("+n.join("|")+")"}]},s.CSS_VARIABLE,{className:"attribute",begin:"\\b("+l.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,contains:[s.BLOCK_COMMENT,s.HEXCOLOR,s.IMPORTANT,s.CSS_NUMBER_MODE,...p,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"},contains:[{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},s.FUNCTION_DISPATCH]},{begin:t.lookahead(/@/),end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword",begin:g},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:c,attribute:r.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute"},...p,s.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"\\b("+i.join("|")+")\\b"}]}}e.exports=s}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-custom-markdown.7cffc4b3.js b/JellyfinAPI.doccarchive/js/highlight-js-custom-markdown.7cffc4b3.js new file mode 100644 index 000000000..5271416ee --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-custom-markdown.7cffc4b3.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-custom-markdown","highlight-js-markdown"],{"04b0":function(n,e){function a(n){const e=n.regex,a={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml",relevance:0},i={begin:"^[-\\*]{3,}",end:"$"},s={className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},t={className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},c={begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]},d=/[A-Za-z][A-Za-z0-9+.-]*/,l={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:e.concat(/\[.+?\]\(/,d,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}]},g={className:"strong",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},o={className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};g.contains.push(o),o.contains.push(g);let r=[a,l];g.contains=g.contains.concat(r),o.contains=o.contains.concat(r),r=r.concat(g,o);const b={className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:r},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:r}]}]},u={className:"quote",begin:"^>\\s+",contains:r,end:"$"};return{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[b,a,t,g,o,u,s,i,l,c]}}n.exports=a},"84cb":function(n,e,a){"use strict";a.r(e);var i=a("04b0"),s=a.n(i);const t={begin:"",returnBegin:!0,contains:[{className:"link",begin:"doc:",end:">",excludeEnd:!0}]},c={className:"link",begin:/`{2}(?!`)/,end:/`{2}(?!`)/,excludeBegin:!0,excludeEnd:!0},d={begin:"^>\\s+[Note:|Tip:|Important:|Experiment:|Warning:]",end:"$",returnBegin:!0,contains:[{className:"quote",begin:"^>",end:"\\s+"},{className:"type",begin:"Note|Tip|Important|Experiment|Warning",end:":"},{className:"quote",begin:".*",end:"$",endsParent:!0}]},l={begin:"@",end:"[{\\)\\s]",returnBegin:!0,contains:[{className:"title",begin:"@",end:"[\\s+(]",excludeEnd:!0},{begin:":",end:"[,\\)\n\t]",excludeBegin:!0,keywords:{literal:"true false null undefined"},contains:[{className:"number",begin:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",endsWithParent:!0,excludeEnd:!0},{className:"string",variants:[{begin:/"""/,end:/"""/},{begin:/"/,end:/"/}],endsParent:!0},{className:"link",begin:"http|https",endsWithParent:!0,excludeEnd:!0}]}]};e["default"]=function(n){const e=s()(n),a=e.contains.find(({className:n})=>"code"===n);a.variants=a.variants.filter(({begin:n})=>!n.includes("( {4}|\\t)"));const i=[...e.contains.filter(({className:n})=>"code"!==n),a];return{...e,contains:[c,t,d,l,...i]}}}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-custom-swift.52388c22.js b/JellyfinAPI.doccarchive/js/highlight-js-custom-swift.52388c22.js new file mode 100644 index 000000000..7ec1215bf --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-custom-swift.52388c22.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-custom-swift","highlight-js-swift"],{"2a39":function(e,n){function t(e){return e?"string"===typeof e?e:e.source:null}function a(e){return i("(?=",e,")")}function i(...e){const n=e.map(e=>t(e)).join("");return n}function s(e){const n=e[e.length-1];return"object"===typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}}function c(...e){const n=s(e),a="("+(n.capture?"":"?:")+e.map(e=>t(e)).join("|")+")";return a}const u=e=>i(/\b/,e,/\w$/.test(e)?/\b/:/\B/),o=["Protocol","Type"].map(u),r=["init","self"].map(u),l=["Any","Self"],m=["actor","associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],p=["false","nil","true"],d=["assignment","associativity","higherThan","left","lowerThan","none","right"],F=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],b=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],f=c(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),h=c(f,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),w=i(f,h,"*"),y=c(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),g=c(y,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),E=i(y,g,"*"),v=i(/[A-Z]/,g,"*"),A=["autoclosure",i(/convention\(/,c("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",i(/objc\(/,E,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","testable","UIApplicationMain","unknown","usableFromInline"],N=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];function C(e){const n={match:/\s+/,relevance:0},t=e.COMMENT("/\\*","\\*/",{contains:["self"]}),s=[e.C_LINE_COMMENT_MODE,t],f={match:[/\./,c(...o,...r)],className:{2:"keyword"}},y={match:i(/\./,c(...m)),relevance:0},C=m.filter(e=>"string"===typeof e).concat(["_|0"]),k=m.filter(e=>"string"!==typeof e).concat(l).map(u),D={variants:[{className:"keyword",match:c(...k,...r)}]},B={$pattern:c(/\b\w+/,/#\w+/),keyword:C.concat(F),literal:p},_=[f,y,D],S={match:i(/\./,c(...b)),relevance:0},x={className:"built_in",match:i(/\b/,c(...b),/(?=\()/)},M=[S,x],I={match:/->/,relevance:0},$={className:"operator",relevance:0,variants:[{match:w},{match:`\\.(\\.|${h})+`}]},O=[I,$],L="([0-9]_*)+",T="([0-9a-fA-F]_*)+",j={className:"number",relevance:0,variants:[{match:`\\b(${L})(\\.(${L}))?([eE][+-]?(${L}))?\\b`},{match:`\\b0x(${T})(\\.(${T}))?([pP][+-]?(${L}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},K=(e="")=>({className:"subst",variants:[{match:i(/\\/,e,/[0\\tnr"']/)},{match:i(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),P=(e="")=>({className:"subst",match:i(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),z=(e="")=>({className:"subst",label:"interpol",begin:i(/\\/,e,/\(/),end:/\)/}),q=(e="")=>({begin:i(e,/"""/),end:i(/"""/,e),contains:[K(e),P(e),z(e)]}),U=(e="")=>({begin:i(e,/"/),end:i(/"/,e),contains:[K(e),z(e)]}),Z={className:"string",variants:[q(),q("#"),q("##"),q("###"),U(),U("#"),U("##"),U("###")]},V={match:i(/`/,E,/`/)},W={className:"variable",match:/\$\d+/},G={className:"variable",match:`\\$${g}+`},J=[V,W,G],R={match:/(@|#)available/,className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:N,contains:[...O,j,Z]}]}},X={className:"keyword",match:i(/@/,c(...A))},H={className:"meta",match:i(/@/,E)},Q=[R,X,H],Y={match:a(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:i(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,g,"+")},{className:"type",match:v,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:i(/\s+&\s+/,a(v)),relevance:0}]},ee={begin://,keywords:B,contains:[...s,..._,...Q,I,Y]};Y.contains.push(ee);const ne={match:i(E,/\s*:/),keywords:"_|0",relevance:0},te={begin:/\(/,end:/\)/,relevance:0,keywords:B,contains:["self",ne,...s,..._,...M,...O,j,Z,...J,...Q,Y]},ae={begin://,contains:[...s,Y]},ie={begin:c(a(i(E,/\s*:/)),a(i(E,/\s+/,E,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:E}]},se={begin:/\(/,end:/\)/,keywords:B,contains:[ie,...s,..._,...O,j,Z,...Q,Y,te],endsParent:!0,illegal:/["']/},ce={match:[/func/,/\s+/,c(V.match,E,w)],className:{1:"keyword",3:"title.function"},contains:[ae,se,n],illegal:[/\[/,/%/]},ue={match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},contains:[ae,se,n],illegal:/\[|%/},oe={match:[/operator/,/\s+/,w],className:{1:"keyword",3:"title"}},re={begin:[/precedencegroup/,/\s+/,v],className:{1:"keyword",3:"title"},contains:[Y],keywords:[...d,...p],end:/}/};for(const a of Z.variants){const e=a.contains.find(e=>"interpol"===e.label);e.keywords=B;const n=[..._,...M,...O,j,Z,...J];e.contains=[...n,{begin:/\(/,end:/\)/,contains:["self",...n]}]}return{name:"Swift",keywords:B,contains:[...s,ce,ue,{beginKeywords:"struct protocol class extension enum actor",end:"\\{",excludeEnd:!0,keywords:B,contains:[e.inherit(e.TITLE_MODE,{className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),..._]},oe,re,{beginKeywords:"import",end:/$/,contains:[...s],relevance:0},..._,...M,...O,j,Z,...J,...Q,Y,te]}}e.exports=C},"81c8":function(e,n,t){"use strict";t.r(n);var a=t("2a39"),i=t.n(a);n["default"]=function(e){const n=i()(e),t=({beginKeywords:e=""})=>e.split(" ").includes("class"),a=n.contains.findIndex(t);if(a>=0){const{beginKeywords:e,...t}=n.contains[a];n.contains[a]={...t,begin:/(struct|protocol|extension|enum|actor|class\b(?!.*\bfunc\b))/}}return n}}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-diff.62d66733.js b/JellyfinAPI.doccarchive/js/highlight-js-diff.62d66733.js new file mode 100644 index 000000000..64337fa82 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-diff.62d66733.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-diff"],{"48b8":function(e,n){function a(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=a}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-http.163e45b6.js b/JellyfinAPI.doccarchive/js/highlight-js-http.163e45b6.js new file mode 100644 index 000000000..14f39a9f4 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-http.163e45b6.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-http"],{c01d:function(e,n){function a(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-java.8326d9d8.js b/JellyfinAPI.doccarchive/js/highlight-js-java.8326d9d8.js new file mode 100644 index 000000000..f11ca2a2a --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-java.8326d9d8.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-java"],{"332f":function(e,a){var n="[0-9](_*[0-9])*",s=`\\.(${n})`,i="[0-9a-fA-F](_*[0-9a-fA-F])*",t={className:"number",variants:[{begin:`(\\b(${n})((${s})|\\.)?|(${s}))[eE][+-]?(${n})[fFdD]?\\b`},{begin:`\\b(${n})((${s})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${s})[fFdD]?\\b`},{begin:`\\b(${n})[fFdD]\\b`},{begin:`\\b0[xX]((${i})\\.?|(${i})?\\.(${i}))[pP][+-]?(${n})[fFdD]?\\b`},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${i})[lL]?\\b`},{begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],relevance:0};function r(e,a,n){return-1===n?"":e.replace(a,s=>r(e,a,n-1))}function c(e){e.regex;const a="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",n=a+r("(?:<"+a+"~~~(?:\\s*,\\s*"+a+"~~~)*>)?",/~~~/g,2),s=["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do"],i=["super","this"],c=["false","true","null"],l=["char","boolean","long","float","int","byte","short","double"],o={keyword:s,literal:c,type:l,built_in:i},b={className:"meta",begin:"@"+a,contains:[{begin:/\(/,end:/\)/,contains:["self"]}]},_={className:"params",begin:/\(/,end:/\)/,keywords:o,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0};return{name:"Java",aliases:["jsp"],keywords:o,illegal:/<\/|#/,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{begin:/import java\.[a-z]+\./,keywords:"import",relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,className:"string",contains:[e.BACKSLASH_ESCAPE]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,a],className:{1:"keyword",3:"title.class"}},{begin:[a,/\s+/,a,/\s+/,/=/],className:{1:"type",3:"variable",5:"operator"}},{begin:[/record/,/\s+/,a],className:{1:"keyword",3:"title.class"},contains:[_,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"new throw return else",relevance:0},{begin:["(?:"+n+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{2:"title.function"},keywords:o,contains:[{className:"params",begin:/\(/,end:/\)/,keywords:o,relevance:0,contains:[b,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,t,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},t,b]}}e.exports=c}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-javascript.acb8a8eb.js b/JellyfinAPI.doccarchive/js/highlight-js-javascript.acb8a8eb.js new file mode 100644 index 000000000..ac843fc04 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-javascript.acb8a8eb.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-javascript"],{"4dd1":function(e,n){const a="[A-Za-z$_][0-9A-Za-z$_]*",t=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],s=["true","false","null","undefined","NaN","Infinity"],c=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],r=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],i=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],o=["arguments","this","super","console","window","document","localStorage","module","global"],l=[].concat(i,c,r);function b(e){const n=e.regex,b=(e,{after:n})=>{const a="",end:""},u=/<[A-Za-z0-9\\._:-]+\s*\/>/,m={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{const a=e[0].length+e.index,t=e.input[a];if("<"===t||","===t)return void n.ignoreMatch();let s;">"===t&&(b(e,{after:a})||n.ignoreMatch());const c=e.input.substr(a);(s=c.match(/^\s+extends\s+/))&&0===s.index&&n.ignoreMatch()}},E={$pattern:a,keyword:t,literal:s,built_in:l,"variable.language":o},A="[0-9](_?[0-9])*",y=`\\.(${A})`,N="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",f={className:"number",variants:[{begin:`(\\b(${N})((${y})|\\.)?|(${y}))[eE][+-]?(${A})\\b`},{begin:`\\b(${N})\\b((${y})\\b|\\.)?|(${y})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},h={className:"subst",begin:"\\$\\{",end:"\\}",keywords:E,contains:[]},_={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"xml"}},p={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"css"}},v={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,h]},w=e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:d+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),S={className:"comment",variants:[w,e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},R=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,_,p,v,f];h.contains=R.concat({begin:/\{/,end:/\}/,keywords:E,contains:["self"].concat(R)});const k=[].concat(S,h.contains),O=k.concat([{begin:/\(/,end:/\)/,keywords:E,contains:["self"].concat(k)}]),I={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:E,contains:O},x={variants:[{match:[/class/,/\s+/,d,/\s+/,/extends/,/\s+/,n.concat(d,"(",n.concat(/\./,d),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,d],scope:{1:"keyword",3:"title.class"}}]},T={relevance:0,match:n.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]+|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+/),className:"title.class",keywords:{_:[...c,...r]}},C={label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},M={variants:[{match:[/function/,/\s+/,d,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[I],illegal:/%/},B={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"};function $(e){return n.concat("(?!",e.join("|"),")")}const D={match:n.concat(/\b/,$([...i,"super"]),d,n.lookahead(/\(/)),className:"title.function",relevance:0},U={begin:n.concat(/\./,n.lookahead(n.concat(d,/(?![0-9A-Za-z$_(])/))),end:d,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},Z={match:[/get|set/,/\s+/,d,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},I]},z="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",F={match:[/const|var|let/,/\s+/,d,/\s*/,/=\s*/,n.lookahead(z)],className:{1:"keyword",3:"title.function"},contains:[I]};return{name:"Javascript",aliases:["js","jsx","mjs","cjs"],keywords:E,exports:{PARAMS_CONTAINS:O,CLASS_REFERENCE:T},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),C,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,_,p,v,S,f,T,{className:"attr",begin:d+n.lookahead(":"),relevance:0},F,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[S,e.REGEXP_MODE,{className:"function",begin:z,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:E,contains:O}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:g.begin,end:g.end},{match:u},{begin:m.begin,"on:begin":m.isTrulyOpeningTag,end:m.end}],subLanguage:"xml",contains:[{begin:m.begin,end:m.end,skip:!0,contains:["self"]}]}]},M,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[I,e.inherit(e.TITLE_MODE,{begin:d,className:"title.function"})]},{match:/\.\.\./,relevance:0},U,{match:"\\$"+d,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[I]},D,B,x,Z,{match:/\$[(.]/}]}}e.exports=b}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-json.471128d2.js b/JellyfinAPI.doccarchive/js/highlight-js-json.471128d2.js new file mode 100644 index 000000000..c87d3c3bc --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-json.471128d2.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-json"],{"5ad2":function(n,e){function a(n){const e={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},a={match:/[{}[\],:]/,className:"punctuation",relevance:0},s={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}n.exports=a}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-llvm.6100b125.js b/JellyfinAPI.doccarchive/js/highlight-js-llvm.6100b125.js new file mode 100644 index 000000000..0beb806ec --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-llvm.6100b125.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-llvm"],{"7c30":function(e,n){function a(e){const n=e.regex,a=/([-a-zA-Z$._][\w$.-]*)/,t={className:"type",begin:/\bi\d+(?=\s|\b)/},i={className:"operator",relevance:0,begin:/=/},c={className:"punctuation",relevance:0,begin:/,/},l={className:"number",variants:[{begin:/0[xX][a-fA-F0-9]+/},{begin:/-?\d+(?:[.]\d+)?(?:[eE][-+]?\d+(?:[.]\d+)?)?/}],relevance:0},r={className:"symbol",variants:[{begin:/^\s*[a-z]+:/}],relevance:0},s={className:"variable",variants:[{begin:n.concat(/%/,a)},{begin:/%\d+/},{begin:/#\d+/}]},o={className:"title",variants:[{begin:n.concat(/@/,a)},{begin:/@\d+/},{begin:n.concat(/!/,a)},{begin:n.concat(/!\d+/,a)},{begin:/!\d+/}]};return{name:"LLVM IR",keywords:"begin end true false declare define global constant private linker_private internal available_externally linkonce linkonce_odr weak weak_odr appending dllimport dllexport common default hidden protected extern_weak external thread_local zeroinitializer undef null to tail target triple datalayout volatile nuw nsw nnan ninf nsz arcp fast exact inbounds align addrspace section alias module asm sideeffect gc dbg linker_private_weak attributes blockaddress initialexec localdynamic localexec prefix unnamed_addr ccc fastcc coldcc x86_stdcallcc x86_fastcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc ptx_device ptx_kernel intel_ocl_bicc msp430_intrcc spir_func spir_kernel x86_64_sysvcc x86_64_win64cc x86_thiscallcc cc c signext zeroext inreg sret nounwind noreturn noalias nocapture byval nest readnone readonly inlinehint noinline alwaysinline optsize ssp sspreq noredzone noimplicitfloat naked builtin cold nobuiltin noduplicate nonlazybind optnone returns_twice sanitize_address sanitize_memory sanitize_thread sspstrong uwtable returned type opaque eq ne slt sgt sle sge ult ugt ule uge oeq one olt ogt ole oge ord uno ueq une x acq_rel acquire alignstack atomic catch cleanup filter inteldialect max min monotonic nand personality release seq_cst singlethread umax umin unordered xchg add fadd sub fsub mul fmul udiv sdiv fdiv urem srem frem shl lshr ashr and or xor icmp fcmp phi call trunc zext sext fptrunc fpext uitofp sitofp fptoui fptosi inttoptr ptrtoint bitcast addrspacecast select va_arg ret br switch invoke unwind unreachable indirectbr landingpad resume malloc alloca free load store getelementptr extractelement insertelement shufflevector getresult extractvalue insertvalue atomicrmw cmpxchg fence argmemonly double",contains:[t,e.COMMENT(/;\s*$/,null,{relevance:0}),e.COMMENT(/;/,/$/),e.QUOTE_STRING_MODE,{className:"string",variants:[{begin:/"/,end:/[^\\]"/}]},o,c,i,s,r,l]}}e.exports=a}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-markdown.90077643.js b/JellyfinAPI.doccarchive/js/highlight-js-markdown.90077643.js new file mode 100644 index 000000000..dc8d097c0 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-markdown.90077643.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-markdown"],{"04b0":function(n,e){function a(n){const e=n.regex,a={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml",relevance:0},i={begin:"^[-\\*]{3,}",end:"$"},s={className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},c={className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},t={begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]},g=/[A-Za-z][A-Za-z0-9+.-]*/,d={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:e.concat(/\[.+?\]\(/,g,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}]},l={className:"strong",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},o={className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};l.contains.push(o),o.contains.push(l);let b=[a,d];l.contains=l.contains.concat(b),o.contains=o.contains.concat(b),b=b.concat(l,o);const r={className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:b},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:b}]}]},m={className:"quote",begin:"^>\\s+",contains:b,end:"$"};return{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[r,a,c,l,o,m,s,i,d,t]}}n.exports=a}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-objectivec.bcdf5156.js b/JellyfinAPI.doccarchive/js/highlight-js-objectivec.bcdf5156.js new file mode 100644 index 000000000..2456ffc89 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-objectivec.bcdf5156.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-objectivec"],{"9bf2":function(e,n){function _(e){const n={className:"built_in",begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},_=/[a-zA-Z@][a-zA-Z0-9_]*/,i=["int","float","while","char","export","sizeof","typedef","const","struct","for","union","unsigned","long","volatile","static","bool","mutable","if","do","return","goto","void","enum","else","break","extern","asm","case","short","default","double","register","explicit","signed","typename","this","switch","continue","wchar_t","inline","readonly","assign","readwrite","self","@synchronized","id","typeof","nonatomic","super","unichar","IBOutlet","IBAction","strong","weak","copy","in","out","inout","bycopy","byref","oneway","__strong","__weak","__block","__autoreleasing","@private","@protected","@public","@try","@property","@end","@throw","@catch","@finally","@autoreleasepool","@synthesize","@dynamic","@selector","@optional","@required","@encode","@package","@import","@defs","@compatibility_alias","__bridge","__bridge_transfer","__bridge_retained","__bridge_retain","__covariant","__contravariant","__kindof","_Nonnull","_Nullable","_Null_unspecified","__FUNCTION__","__PRETTY_FUNCTION__","__attribute__","getter","setter","retain","unsafe_unretained","nonnull","nullable","null_unspecified","null_resettable","class","instancetype","NS_DESIGNATED_INITIALIZER","NS_UNAVAILABLE","NS_REQUIRES_SUPER","NS_RETURNS_INNER_POINTER","NS_INLINE","NS_AVAILABLE","NS_DEPRECATED","NS_ENUM","NS_OPTIONS","NS_SWIFT_UNAVAILABLE","NS_ASSUME_NONNULL_BEGIN","NS_ASSUME_NONNULL_END","NS_REFINED_FOR_SWIFT","NS_SWIFT_NAME","NS_SWIFT_NOTHROW","NS_DURING","NS_HANDLER","NS_ENDHANDLER","NS_VALUERETURN","NS_VOIDRETURN"],t=["false","true","FALSE","TRUE","nil","YES","NO","NULL"],a=["BOOL","dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"],o={$pattern:_,keyword:i,literal:t,built_in:a},s={$pattern:_,keyword:["@interface","@class","@protocol","@implementation"]};return{name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],keywords:o,illegal:"/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+s.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:s,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}}e.exports=_}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-perl.757d7b6f.js b/JellyfinAPI.doccarchive/js/highlight-js-perl.757d7b6f.js new file mode 100644 index 000000000..a4c74d111 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-perl.757d7b6f.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-perl"],{"6a51":function(e,n){function t(e){const n=e.regex,t=["abs","accept","alarm","and","atan2","bind","binmode","bless","break","caller","chdir","chmod","chomp","chop","chown","chr","chroot","close","closedir","connect","continue","cos","crypt","dbmclose","dbmopen","defined","delete","die","do","dump","each","else","elsif","endgrent","endhostent","endnetent","endprotoent","endpwent","endservent","eof","eval","exec","exists","exit","exp","fcntl","fileno","flock","for","foreach","fork","format","formline","getc","getgrent","getgrgid","getgrnam","gethostbyaddr","gethostbyname","gethostent","getlogin","getnetbyaddr","getnetbyname","getnetent","getpeername","getpgrp","getpriority","getprotobyname","getprotobynumber","getprotoent","getpwent","getpwnam","getpwuid","getservbyname","getservbyport","getservent","getsockname","getsockopt","given","glob","gmtime","goto","grep","gt","hex","if","index","int","ioctl","join","keys","kill","last","lc","lcfirst","length","link","listen","local","localtime","log","lstat","lt","ma","map","mkdir","msgctl","msgget","msgrcv","msgsnd","my","ne","next","no","not","oct","open","opendir","or","ord","our","pack","package","pipe","pop","pos","print","printf","prototype","push","q|0","qq","quotemeta","qw","qx","rand","read","readdir","readline","readlink","readpipe","recv","redo","ref","rename","require","reset","return","reverse","rewinddir","rindex","rmdir","say","scalar","seek","seekdir","select","semctl","semget","semop","send","setgrent","sethostent","setnetent","setpgrp","setpriority","setprotoent","setpwent","setservent","setsockopt","shift","shmctl","shmget","shmread","shmwrite","shutdown","sin","sleep","socket","socketpair","sort","splice","split","sprintf","sqrt","srand","stat","state","study","sub","substr","symlink","syscall","sysopen","sysread","sysseek","system","syswrite","tell","telldir","tie","tied","time","times","tr","truncate","uc","ucfirst","umask","undef","unless","unlink","unpack","unshift","untie","until","use","utime","values","vec","wait","waitpid","wantarray","warn","when","while","write","x|0","xor","y|0"],s=/[dualxmsipngr]{0,12}/,r={$pattern:/[\w.]+/,keyword:t.join(" ")},i={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:r},a={begin:/->\{/,end:/\}/},o={variants:[{begin:/\$\d/},{begin:n.concat(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")},{begin:/[$%@][^\s\w{]/,relevance:0}]},c=[e.BACKSLASH_ESCAPE,i,o],g=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],l=(e,t,r="\\1")=>{const i="\\1"===r?r:n.concat(r,t);return n.concat(n.concat("(?:",e,")"),t,/(?:\\.|[^\\\/])*?/,i,/(?:\\.|[^\\\/])*?/,r,s)},d=(e,t,r)=>n.concat(n.concat("(?:",e,")"),t,/(?:\\.|[^\\\/])*?/,r,s),p=[o,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{endsWithParent:!0}),a,{className:"string",contains:c,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{begin:l("s|tr|y",n.either(...g,{capture:!0}))},{begin:l("s|tr|y","\\(","\\)")},{begin:l("s|tr|y","\\[","\\]")},{begin:l("s|tr|y","\\{","\\}")}],relevance:2},{className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{begin:d("(?:m|qr)?",/\//,/\//)},{begin:d("m|qr",n.either(...g,{capture:!0}),/\1/)},{begin:d("m|qr",/\(/,/\)/)},{begin:d("m|qr",/\[/,/\]/)},{begin:d("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return i.contains=p,a.contains=p,{name:"Perl",aliases:["pl","pm"],keywords:r,contains:p}}e.exports=t}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-php.cc8d6c27.js b/JellyfinAPI.doccarchive/js/highlight-js-php.cc8d6c27.js new file mode 100644 index 000000000..3d12a9c9e --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-php.cc8d6c27.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-php"],{2907:function(e,r){function t(e){const r={className:"variable",begin:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*(?![A-Za-z0-9])(?![$])"},t={className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{begin:/\?>/}]},a={className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},n=e.inherit(e.APOS_STRING_MODE,{illegal:null}),i=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(a)}),o=e.END_SAME_AS_BEGIN({begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/,contains:e.QUOTE_STRING_MODE.contains.concat(a)}),l={className:"string",contains:[e.BACKSLASH_ESCAPE,t],variants:[e.inherit(n,{begin:"b'",end:"'"}),e.inherit(i,{begin:'b"',end:'"'}),i,n,o]},c={className:"number",variants:[{begin:"\\b0b[01]+(?:_[01]+)*\\b"},{begin:"\\b0o[0-7]+(?:_[0-7]+)*\\b"},{begin:"\\b0x[\\da-f]+(?:_[\\da-f]+)*\\b"},{begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:e[+-]?\\d+)?"}],relevance:0},s={keyword:"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield",literal:"false null true",built_in:"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass"};return{case_insensitive:!0,keywords:s,contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$",{contains:[t]}),e.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0,keywords:"__halt_compiler"}),t,{className:"keyword",begin:/\$this\b/},r,{begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{className:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:s,contains:["self",r,e.C_BLOCK_COMMENT_MODE,l,c]}]},{className:"class",variants:[{beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",relevance:0,end:";",contains:[e.UNDERSCORE_TITLE_MODE]},l,c]}}e.exports=t}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-python.c214ed92.js b/JellyfinAPI.doccarchive/js/highlight-js-python.c214ed92.js new file mode 100644 index 000000000..c8d2ed8d9 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-python.c214ed92.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-python"],{9510:function(e,n){function a(e){const n=e.regex,a=/[\p{XID_Start}_]\p{XID_Continue}*/u,i=["and","as","assert","async","await","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],s=["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],t=["__debug__","Ellipsis","False","None","NotImplemented","True"],r=["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"],l={$pattern:/[A-Za-z]\w+|__\w+__/,keyword:i,built_in:s,literal:t,type:r},o={className:"meta",begin:/^(>>>|\.\.\.) /},b={className:"subst",begin:/\{/,end:/\}/,keywords:l,illegal:/#/},c={begin:/\{\{/,relevance:0},d={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,o],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,o],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,o,c,b]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,o,c,b]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,c,b]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,c,b]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},p="[0-9](_?[0-9])*",g=`(\\b(${p}))?\\.(${p})|\\b(${p})\\.`,m={className:"number",relevance:0,variants:[{begin:`(\\b(${p})|(${g}))[eE][+-]?(${p})[jJ]?\\b`},{begin:`(${g})[jJ]?`},{begin:"\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\b"},{begin:"\\b0[bB](_?[01])+[lL]?\\b"},{begin:"\\b0[oO](_?[0-7])+[lL]?\\b"},{begin:"\\b0[xX](_?[0-9a-fA-F])+[lL]?\\b"},{begin:`\\b(${p})[jJ]\\b`}]},_={className:"comment",begin:n.lookahead(/# type:/),end:/$/,keywords:l,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},u={className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:["self",o,m,d,e.HASH_COMMENT_MODE]}]};return b.contains=[d,m,o],{name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:l,illegal:/(<\/|->|\?)|=>/,contains:[o,m,{begin:/\bself\b/},{beginKeywords:"if",relevance:0},d,_,e.HASH_COMMENT_MODE,{match:[/def/,/\s+/,a],scope:{1:"keyword",3:"title.function"},contains:[u]},{variants:[{match:[/class/,/\s+/,a,/\s*/,/\(\s*/,a,/\s*\)/]},{match:[/class/,/\s+/,a]}],scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[m,u,d]}]}}e.exports=a}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-ruby.f889d392.js b/JellyfinAPI.doccarchive/js/highlight-js-ruby.f889d392.js new file mode 100644 index 000000000..a8355da1c --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-ruby.f889d392.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-ruby"],{"82cb":function(e,n){function a(e){const n=e.regex,a="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",i={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__",built_in:"proc lambda",literal:"true false nil"},s={className:"doctag",begin:"@[A-Za-z]+"},b={begin:"#<",end:">"},c=[e.COMMENT("#","$",{contains:[s]}),e.COMMENT("^=begin","^=end",{contains:[s],relevance:10}),e.COMMENT("^__END__","\\n$")],r={className:"subst",begin:/#\{/,end:/\}/,keywords:i},d={className:"string",contains:[e.BACKSLASH_ESCAPE,r],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{begin:n.concat(/<<[-~]?'?/,n.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,r]})]}]},t="[1-9](_?[0-9])*|0",o="[0-9](_?[0-9])*",g={className:"number",relevance:0,variants:[{begin:`\\b(${t})(\\.(${o}))?([eE][+-]?(${o})|r)?i?\\b`},{begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{begin:"\\b0(_?[0-7])+r?i?\\b"}]},l={className:"params",begin:"\\(",end:"\\)",endsParent:!0,keywords:i},_=[d,{className:"class",beginKeywords:"class module",end:"$|;",illegal:/=/,contains:[e.inherit(e.TITLE_MODE,{begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|!)?"}),{begin:"<\\s*",contains:[{begin:"("+e.IDENT_RE+"::)?"+e.IDENT_RE,relevance:0}]}].concat(c)},{className:"function",begin:n.concat(/def\s+/,n.lookahead(a+"\\s*(\\(|;|$)")),relevance:0,keywords:"def",end:"$|;",contains:[e.inherit(e.TITLE_MODE,{begin:a}),l].concat(c)},{begin:e.IDENT_RE+"::"},{className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[d,{begin:a}],relevance:0},g,{className:"variable",begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{className:"params",begin:/\|/,end:/\|/,relevance:0,keywords:i},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{className:"regexp",contains:[e.BACKSLASH_ESCAPE,r],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(b,c),relevance:0}].concat(b,c);r.contains=_,l.contains=_;const w="[>?]>",E="[\\w#]+\\(\\w+\\):\\d+:\\d+>",u="(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>",N=[{begin:/^\s*=>/,starts:{end:"$",contains:_}},{className:"meta",begin:"^("+w+"|"+E+"|"+u+")(?=[ ])",starts:{end:"$",contains:_}}];return c.unshift(b),{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:i,illegal:/\/\*/,contains:[e.SHEBANG({binary:"ruby"})].concat(N).concat(c).concat(_)}}e.exports=a}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-scss.62ee18da.js b/JellyfinAPI.doccarchive/js/highlight-js-scss.62ee18da.js new file mode 100644 index 000000000..8f46244fd --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-scss.62ee18da.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-scss"],{6113:function(e,t){const i=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z][A-Za-z0-9_-]*/}}),o=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],r=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],a=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],n=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],l=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-height","max-width","min-height","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse();function s(e){const t=i(e),s=n,d=a,c="@[a-z-]+",p="and or not only",g="[a-zA-Z-][a-zA-Z0-9_-]*",m={className:"variable",begin:"(\\$"+g+")\\b"};return{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.CSS_NUMBER_MODE,{className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",begin:"\\b("+o.join("|")+")\\b",relevance:0},{className:"selector-pseudo",begin:":("+d.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+s.join("|")+")"},m,{begin:/\(/,end:/\)/,contains:[t.CSS_NUMBER_MODE]},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+l.join("|")+")\\b"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:/:/,end:/[;}{]/,contains:[t.BLOCK_COMMENT,m,t.HEXCOLOR,t.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.IMPORTANT]},{begin:"@(page|font-face)",keywords:{$pattern:c,keyword:"@page @font-face"}},{begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:p,attribute:r.join(" ")},contains:[{begin:c,className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"},m,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.HEXCOLOR,t.CSS_NUMBER_MODE]},t.FUNCTION_DISPATCH]}}e.exports=s}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-shell.dd7f411f.js b/JellyfinAPI.doccarchive/js/highlight-js-shell.dd7f411f.js new file mode 100644 index 000000000..999f4527c --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-shell.dd7f411f.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-shell"],{b65b:function(s,n){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-swift.84f3e88c.js b/JellyfinAPI.doccarchive/js/highlight-js-swift.84f3e88c.js new file mode 100644 index 000000000..89d1daf12 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-swift.84f3e88c.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-swift"],{"2a39":function(e,n){function a(e){return e?"string"===typeof e?e:e.source:null}function t(e){return i("(?=",e,")")}function i(...e){const n=e.map(e=>a(e)).join("");return n}function s(e){const n=e[e.length-1];return"object"===typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}}function u(...e){const n=s(e),t="("+(n.capture?"":"?:")+e.map(e=>a(e)).join("|")+")";return t}const c=e=>i(/\b/,e,/\w$/.test(e)?/\b/:/\B/),o=["Protocol","Type"].map(c),r=["init","self"].map(c),l=["Any","Self"],m=["actor","associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],p=["false","nil","true"],d=["assignment","associativity","higherThan","left","lowerThan","none","right"],F=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],b=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],h=u(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),f=u(h,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),w=i(h,f,"*"),y=u(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),g=u(y,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),E=i(y,g,"*"),v=i(/[A-Z]/,g,"*"),A=["autoclosure",i(/convention\(/,u("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",i(/objc\(/,E,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","testable","UIApplicationMain","unknown","usableFromInline"],N=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];function C(e){const n={match:/\s+/,relevance:0},a=e.COMMENT("/\\*","\\*/",{contains:["self"]}),s=[e.C_LINE_COMMENT_MODE,a],h={match:[/\./,u(...o,...r)],className:{2:"keyword"}},y={match:i(/\./,u(...m)),relevance:0},C=m.filter(e=>"string"===typeof e).concat(["_|0"]),k=m.filter(e=>"string"!==typeof e).concat(l).map(c),D={variants:[{className:"keyword",match:u(...k,...r)}]},B={$pattern:u(/\b\w+/,/#\w+/),keyword:C.concat(F),literal:p},_=[h,y,D],S={match:i(/\./,u(...b)),relevance:0},M={className:"built_in",match:i(/\b/,u(...b),/(?=\()/)},x=[S,M],$={match:/->/,relevance:0},I={className:"operator",relevance:0,variants:[{match:w},{match:`\\.(\\.|${f})+`}]},O=[$,I],L="([0-9]_*)+",T="([0-9a-fA-F]_*)+",j={className:"number",relevance:0,variants:[{match:`\\b(${L})(\\.(${L}))?([eE][+-]?(${L}))?\\b`},{match:`\\b0x(${T})(\\.(${T}))?([pP][+-]?(${L}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},P=(e="")=>({className:"subst",variants:[{match:i(/\\/,e,/[0\\tnr"']/)},{match:i(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),K=(e="")=>({className:"subst",match:i(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),z=(e="")=>({className:"subst",label:"interpol",begin:i(/\\/,e,/\(/),end:/\)/}),q=(e="")=>({begin:i(e,/"""/),end:i(/"""/,e),contains:[P(e),K(e),z(e)]}),U=(e="")=>({begin:i(e,/"/),end:i(/"/,e),contains:[P(e),z(e)]}),Z={className:"string",variants:[q(),q("#"),q("##"),q("###"),U(),U("#"),U("##"),U("###")]},V={match:i(/`/,E,/`/)},W={className:"variable",match:/\$\d+/},G={className:"variable",match:`\\$${g}+`},J=[V,W,G],R={match:/(@|#)available/,className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:N,contains:[...O,j,Z]}]}},X={className:"keyword",match:i(/@/,u(...A))},H={className:"meta",match:i(/@/,E)},Q=[R,X,H],Y={match:t(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:i(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,g,"+")},{className:"type",match:v,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:i(/\s+&\s+/,t(v)),relevance:0}]},ee={begin://,keywords:B,contains:[...s,..._,...Q,$,Y]};Y.contains.push(ee);const ne={match:i(E,/\s*:/),keywords:"_|0",relevance:0},ae={begin:/\(/,end:/\)/,relevance:0,keywords:B,contains:["self",ne,...s,..._,...x,...O,j,Z,...J,...Q,Y]},te={begin://,contains:[...s,Y]},ie={begin:u(t(i(E,/\s*:/)),t(i(E,/\s+/,E,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:E}]},se={begin:/\(/,end:/\)/,keywords:B,contains:[ie,...s,..._,...O,j,Z,...Q,Y,ae],endsParent:!0,illegal:/["']/},ue={match:[/func/,/\s+/,u(V.match,E,w)],className:{1:"keyword",3:"title.function"},contains:[te,se,n],illegal:[/\[/,/%/]},ce={match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},contains:[te,se,n],illegal:/\[|%/},oe={match:[/operator/,/\s+/,w],className:{1:"keyword",3:"title"}},re={begin:[/precedencegroup/,/\s+/,v],className:{1:"keyword",3:"title"},contains:[Y],keywords:[...d,...p],end:/}/};for(const t of Z.variants){const e=t.contains.find(e=>"interpol"===e.label);e.keywords=B;const n=[..._,...x,...O,j,Z,...J];e.contains=[...n,{begin:/\(/,end:/\)/,contains:["self",...n]}]}return{name:"Swift",keywords:B,contains:[...s,ue,ce,{beginKeywords:"struct protocol class extension enum actor",end:"\\{",excludeEnd:!0,keywords:B,contains:[e.inherit(e.TITLE_MODE,{className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),..._]},oe,re,{beginKeywords:"import",end:/$/,contains:[...s],relevance:0},..._,...x,...O,j,Z,...J,...Q,Y,ae]}}e.exports=C}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/highlight-js-xml.9c3688c7.js b/JellyfinAPI.doccarchive/js/highlight-js-xml.9c3688c7.js new file mode 100644 index 000000000..55cc1e274 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/highlight-js-xml.9c3688c7.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-xml"],{"8dcb":function(e,n){function a(e){const n=e.regex,a=n.concat(/[A-Z_]/,n.optional(/[A-Z0-9_.-]*:/),/[A-Z0-9_.-]*/),s=/[A-Za-z0-9._:-]+/,t={className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},i={begin:/\s/,contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},c=e.inherit(i,{begin:/\(/,end:/\)/}),l=e.inherit(e.APOS_STRING_MODE,{className:"string"}),r=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),g={endsWithParent:!0,illegal:/`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,contains:[{className:"meta",begin://,relevance:10,contains:[i,r,l,c,{begin:/\[/,end:/\]/,contains:[{className:"meta",begin://,contains:[i,c,r,l]}]}]},e.COMMENT(//,{relevance:10}),{begin://,relevance:10},t,{className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",begin:/)/,end:/>/,keywords:{name:"style"},contains:[g],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:/)/,end:/>/,keywords:{name:"script"},contains:[g],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:/<>|<\/>/},{className:"tag",begin:n.concat(//,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",begin:a,relevance:0,starts:g}]},{className:"tag",begin:n.concat(/<\//,n.lookahead(n.concat(a,/>/))),contains:[{className:"name",begin:a,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}e.exports=a}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/index.4dfda72c.js b/JellyfinAPI.doccarchive/js/index.4dfda72c.js new file mode 100644 index 000000000..8a5346956 --- /dev/null +++ b/JellyfinAPI.doccarchive/js/index.4dfda72c.js @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */(function(e){function t(t){for(var i,r,h=t[0],c=t[1],a=t[2],l=0,u=[];l])/g,r=/^-+/,n=/["'&<>]/g;function s(e){return e.trim().replace(i,"-").replace(r,"").toLowerCase()}function h(e){const t=e=>({'"':""","'":"'","&":"&","<":"<",">":">"}[e]||e);return e.replace(n,t)}const c={zero:"zero",one:"one",two:"two",few:"few",many:"many",other:"other"},a={cardinal:"cardinal",ordinal:"ordinal"};function l(e,t){const{cardinal:o}=a,{one:i,other:r}=c,n="en",s=1===t?i:r;if(!e[n]||!e[n][s])throw new Error("No default choices provided to pluralize using default locale "+n);let h=n,l=s;if("Intl"in window&&"PluralRules"in window.Intl){const i=navigator.languages?navigator.languages:[navigator.language],r=new Intl.PluralRules(i,{type:o}),n=r.select(t),s=r.resolvedOptions().locale;e[s]&&e[s][n]&&(h=s,l=n)}return e[h][l]}function u(e){const t=/#(\d)(.*)/.exec(e);if(null===t)return e;const[o,i]=t.slice(1),r=`\\3${o} `;return`#${r}${i}`}},"1b02":function(e,t,o){"use strict";o("a6ff")},"2be1":function(e,t,o){"use strict";o("9b4f")},3908:function(e,t,o){"use strict";function i(e){let t=null,o=e-1;const i=new Promise(e=>{t=e});return requestAnimationFrame((function e(){o-=1,o<=0?t():requestAnimationFrame(e)})),i}o.d(t,"a",(function(){return i}))},"5c0b":function(e,t,o){"use strict";o("9c0c")},6842:function(e,t,o){"use strict";function i(e,t,o){let i,r=e,n=t;for("string"===typeof n&&(n=[n]),i=0;ie.json()).catch(()=>({}))}const h=(e,t)=>i(r,e,t)},7138:function(e,t,o){"use strict";o("813c")},"813c":function(e,t,o){},"821b":function(e,t,o){"use strict";t["a"]={auto:{label:"Auto",value:"auto"},dark:{label:"Dark",value:"dark"},light:{label:"Light",value:"light"}}},"942d":function(e,t,o){"use strict";o.d(t,"a",(function(){return i})),o.d(t,"b",(function(){return r}));const i=52,r="nav-sticky-anchor"},9895:function(e,t,o){"use strict";o.d(t,"b",(function(){return i})),o.d(t,"a",(function(){return r}));const i="not-found",r="documentation-topic"},"9b4f":function(e,t,o){},"9c0c":function(e,t,o){},a6aa:function(e,t,o){"use strict";o("d964")},a6ff:function(e,t,o){},d26a:function(e,t,o){"use strict";o.d(t,"c",(function(){return r})),o.d(t,"b",(function(){return n})),o.d(t,"a",(function(){return s}));var i={input:"input",tags:"tags"};function r(e={}){return Object.entries(e).reduce((e,[t,o])=>o?e.concat(`${encodeURIComponent(t)}=${encodeURIComponent(o)}`):e,[]).join("&")}function n(e,{changes:t,language:o,context:i}={}){const[n,s]=e.split("#"),h=n.match(/\?.*/),c=r({changes:t,language:o,context:i}),a=h?"&":"?",l=s?n:e,u=c?`${a}${c}`:"",d=s?"#"+s:"";return`${l}${u}${d}`}function s(e,t){const{query:{changes:o,[i.input]:r,[i.tags]:n,...s}={}}=e,{query:{changes:h,[i.input]:c,[i.tags]:a,...l}={}}=t;return e.name===t.name&&JSON.stringify({path:e.path,query:s})===JSON.stringify({path:t.path,query:l})}},d369:function(e,t,o){"use strict";const i={getItem:e=>{try{return localStorage.getItem(e)}catch(t){return null}},setItem:(e,t)=>{try{localStorage.setItem(e,t)}catch(o){}}},r={preferredColorScheme:"developer.setting.preferredColorScheme",preferredLanguage:"docs.setting.preferredLanguage"},n={preferredColorScheme:"docs.setting.preferredColorScheme"};t["a"]=Object.defineProperties({},Object.keys(r).reduce((e,t)=>({...e,[t]:{get:()=>{const e=n[t],o=i.getItem(r[t]);return e?o||i.getItem(e):o},set:e=>i.setItem(r[t],e)}}),{}))},d964:function(e,t,o){},e425:function(e,t,o){"use strict";var i=o("821b"),r=o("d369");const n="undefined"!==typeof window.matchMedia&&[i["a"].light.value,i["a"].dark.value,"no-preference"].some(e=>window.matchMedia(`(prefers-color-scheme: ${e})`).matches),s=n?i["a"].auto:i["a"].light;t["a"]={state:{preferredColorScheme:r["a"].preferredColorScheme||s.value,supportsAutoColorScheme:n,systemColorScheme:i["a"].light.value},setPreferredColorScheme(e){this.state.preferredColorScheme=e,r["a"].preferredColorScheme=e},setSystemColorScheme(e){this.state.systemColorScheme=e},syncPreferredColorScheme(){r["a"].preferredColorScheme&&r["a"].preferredColorScheme!==this.state.preferredColorScheme&&(this.state.preferredColorScheme=r["a"].preferredColorScheme)}}},e4ca:function(e,t,o){},e51f:function(e,t,o){"use strict";o("e4ca")},ed96:function(e,t,o){o.p=window.baseUrl},f161:function(e,t,o){"use strict";o.r(t);o("ed96");var i=o("2b0e"),r=o("8c4f"),n=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{class:{fromkeyboard:e.fromKeyboard,hascustomheader:e.hasCustomHeader},attrs:{id:"app"}},[o("a",{attrs:{href:"#main",id:"skip-nav"}},[e._v("Skip Navigation")]),o("InitialLoadingPlaceholder"),e._t("header",(function(){return[e.hasCustomHeader?o("custom-header",{attrs:{"data-color-scheme":e.preferredColorScheme}}):e._e()]}),{isTargetIDE:e.isTargetIDE}),o("div",{attrs:{id:e.baseNavStickyAnchorId}}),e._t("default",(function(){return[o("router-view"),e.hasCustomFooter?o("custom-footer",{attrs:{"data-color-scheme":e.preferredColorScheme}}):o("Footer")]}),{isTargetIDE:e.isTargetIDE}),e._t("footer",null,{isTargetIDE:e.isTargetIDE})],2)},s=[],h=o("e425"),c=o("821b"),a=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("footer",{staticClass:"footer"},[o("div",{staticClass:"row"},[o("ColorSchemeToggle")],1)])},l=[],u=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"color-scheme-toggle",attrs:{"aria-label":"Select a color scheme preference",role:"radiogroup",tabindex:"0"}},e._l(e.options,(function(t){return o("label",{key:t.value},[o("input",{attrs:{type:"radio"},domProps:{checked:t.value==e.preferredColorScheme,value:t.value},on:{input:e.setPreferredColorScheme}}),o("div",{staticClass:"text"},[e._v(e._s(t.label))])])})),0)},d=[],g={name:"ColorSchemeToggle",data:()=>({appState:h["a"].state}),computed:{options:({supportsAutoColorScheme:e})=>[c["a"].light,c["a"].dark,...e?[c["a"].auto]:[]],preferredColorScheme:({appState:e})=>e.preferredColorScheme,supportsAutoColorScheme:({appState:e})=>e.supportsAutoColorScheme},methods:{setPreferredColorScheme:e=>{h["a"].setPreferredColorScheme(e.target.value)}},watch:{preferredColorScheme:{immediate:!0,handler(e){document.body.dataset.colorScheme=e}}}},f=g,p=(o("2be1"),o("2877")),m=Object(p["a"])(f,u,d,!1,null,"4472ec1e",null),j=m.exports,v={name:"Footer",components:{ColorSchemeToggle:j}},w=v,b=(o("1b02"),Object(p["a"])(w,a,l,!1,null,"67c823d8",null)),y=b.exports,S=function(){var e=this,t=e.$createElement,o=e._self._c||t;return e.loaded?e._e():o("div",{staticClass:"InitialLoadingPlaceholder",attrs:{id:"loading-placeholder"}})},E=[],C={name:"InitialLoadingPlaceholder",data(){return{loaded:!1}},created(){this.$router.onReady(()=>{this.loaded=!0})}},_=C,P=(o("e51f"),Object(p["a"])(_,S,E,!1,null,"47e4ace8",null)),T=P.exports,k=o("942d"),A=o("6842");function O(e,t){return e&&"object"===typeof e&&Object.prototype.hasOwnProperty.call(e,t)&&"string"===typeof e[t]}function L(e,t,o,i){if(!t||"object"!==typeof t||i&&(O(t,"light")||O(t,"dark"))){let r=t;if(O(t,i)&&(r=t[i]),"object"===typeof r)return;o[e]=r}else Object.entries(t).forEach(([t,r])=>{const n=[e,t].join("-");L(n,r,o,i)})}function D(e,t="light"){const o={},i=e||{};return L("-",i,o,t),o}var I={name:"CoreApp",components:{Footer:y,InitialLoadingPlaceholder:T},provide(){return{isTargetIDE:this.isTargetIDE,performanceMetricsEnabled:"true"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_PERFORMANCE_ENABLED}},data(){return{appState:h["a"].state,fromKeyboard:!1,isTargetIDE:"ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET,themeSettings:A["d"],baseNavStickyAnchorId:k["b"]}},computed:{currentColorScheme:({appState:e})=>e.systemColorScheme,preferredColorScheme:({appState:e})=>e.preferredColorScheme,CSSCustomProperties:({themeSettings:e,currentColorScheme:t})=>D(e.theme,t),hasCustomHeader:()=>!!window.customElements.get("custom-header"),hasCustomFooter:()=>!!window.customElements.get("custom-footer")},props:{enableThemeSettings:{type:Boolean,default:!0}},watch:{CSSCustomProperties:{immediate:!0,handler(e){this.detachStylesFromRoot(e),this.attachStylesToRoot(e)}}},async created(){window.addEventListener("keydown",this.onKeyDown),this.$bridge.on("navigation",this.handleNavigationRequest),this.enableThemeSettings&&Object.assign(this.themeSettings,await Object(A["b"])()),window.addEventListener("pageshow",this.syncPreferredColorScheme),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("pageshow",this.syncPreferredColorScheme)})},mounted(){(document.querySelector(".footer-current-year")||{}).innerText=(new Date).getFullYear(),this.attachColorSchemeListeners()},beforeDestroy(){this.fromKeyboard?window.removeEventListener("mousedown",this.onMouseDown):window.removeEventListener("keydown",this.onKeyDown),this.$bridge.off("navigation",this.handleNavigationRequest),this.detachStylesFromRoot(this.CSSCustomProperties)},methods:{onKeyDown(){this.fromKeyboard=!0,window.addEventListener("mousedown",this.onMouseDown),window.removeEventListener("keydown",this.onKeyDown)},onMouseDown(){this.fromKeyboard=!1,window.addEventListener("keydown",this.onKeyDown),window.removeEventListener("mousedown",this.onMouseDown)},handleNavigationRequest(e){this.$router.push(e)},attachColorSchemeListeners(){if(!window.matchMedia)return;const e=window.matchMedia("(prefers-color-scheme: dark)");e.addListener(this.onColorSchemePreferenceChange),this.$once("hook:beforeDestroy",()=>{e.removeListener(this.onColorSchemePreferenceChange)}),this.onColorSchemePreferenceChange(e)},onColorSchemePreferenceChange({matches:e}){const t=e?c["a"].dark:c["a"].light;h["a"].setSystemColorScheme(t.value)},attachStylesToRoot(e){const t=document.documentElement;Object.entries(e).filter(([,e])=>Boolean(e)).forEach(([e,o])=>{t.style.setProperty(e,o)})},detachStylesFromRoot(e){const t=document.documentElement;Object.entries(e).forEach(([e])=>{t.style.removeProperty(e)})},syncPreferredColorScheme(){h["a"].syncPreferredColorScheme()}}},x=I,$=(o("5c0b"),o("a6aa"),Object(p["a"])(x,n,s,!1,null,"bf0cd418",null)),N=$.exports;class R{constructor(){this.$send=()=>{}}send(e){this.$send(e)}}class U{constructor(){const{webkit:{messageHandlers:{bridge:e={}}={}}={}}=window;this.bridge=e;const{postMessage:t=(()=>{})}=e;this.$send=t.bind(e)}send(e){this.$send(e)}}class B{constructor(e=new R){this.backend=e,this.listeners={}}send(e){this.backend.send(e)}receive(e){this.emit(e.type,e.data)}emit(e,t){this.listeners[e]&&this.listeners[e].forEach(e=>e(t))}on(e,t){this.listeners[e]||(this.listeners[e]=new Set),this.listeners[e].add(t)}off(e,t){this.listeners[e]&&this.listeners[e].delete(t)}}var M={install(e,t){let o;o=t.performanceMetricsEnabled||"ide"===t.appTarget?new U:new R,e.prototype.$bridge=new B(o)}};function V(e){return"custom-"+e}function q(e){return class extends HTMLElement{constructor(){super();const t=this.attachShadow({mode:"open"}),o=e.content.cloneNode(!0);t.appendChild(o)}}}function F(e){const t=V(e),o=document.getElementById(t);o&&window.customElements.define(t,q(o))}function H(e,t={names:["header","footer"]}){const{names:o}=t;e.config.ignoredElements=/^custom-/,o.forEach(F)}function K(e,t){const{value:o=!1}=t;e.style.display=o?"none":""}var G={hide:K};function J(e,{performanceMetrics:t=!1}={}){e.config.productionTip=!1,e.use(H),e.directive("hide",G.hide),e.use(M,{appTarget:Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET,performanceMetricsEnabled:t}),window.bridge=e.prototype.$bridge,e.config.performance=t}var z=o("9895"),Y=o("3908"),X=o("002d"),Q=o("d26a");function W(){const{location:e}=window;return e.pathname+e.search+e.hash}async function Z(e,t,o){if(o)return await this.app.$nextTick(),o;if(e.hash){const{name:t,query:o,hash:i}=e,r=t.includes(z["a"]),n=!!o.changes,s=r&&n?k["a"]:0,h=k["a"]+s,c="ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET?0:h;return{selector:Object(X["b"])(i),offset:{x:0,y:c}}}return!Object(Q["a"])(e,t)&&{x:0,y:0}}async function ee(){let e=window.sessionStorage.getItem("scrollPosition");if(e){try{e=JSON.parse(e)}catch(t){return void console.error("Error parsing scrollPosition from sessionStorage",t)}W()===e.location&&(await Object(Y["a"])(2),window.scrollTo(e.x,e.y))}}function te(){window.location.hash||sessionStorage.setItem("scrollPosition",JSON.stringify({x:window.pageXOffset,y:window.pageYOffset,location:W()}))}var oe=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("GenericError")},ie=[],re=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"generic-error"},[o("div",{staticClass:"container"},[o("h1",{staticClass:"title error-content"},[e._v(e._s(e.message))]),e._t("default")],2)])},ne=[],se={name:"GenericError",props:{message:{type:String,default:"An unknown error occurred."}}},he=se,ce=(o("7138"),Object(p["a"])(he,re,ne,!1,null,"790053de",null)),ae=ce.exports,le={name:"ServerError",components:{GenericError:ae}},ue=le,de=Object(p["a"])(ue,oe,ie,!1,null,null,null),ge=de.exports,fe=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("GenericError",{attrs:{message:"The page you’re looking for can’t be found."}},[e._t("default")],2)},pe=[],me={name:"NotFound",components:{GenericError:ae}},je=me,ve=Object(p["a"])(je,fe,pe,!1,null,null,null),we=ve.exports,be=[{path:"/tutorials/:id",name:"tutorials-overview",component:()=>Promise.all([o.e("documentation-topic~topic~tutorials-overview"),o.e("tutorials-overview")]).then(o.bind(null,"f025"))},{path:"/tutorials/:id/*",name:"topic",component:()=>Promise.all([o.e("documentation-topic~topic~tutorials-overview"),o.e("topic")]).then(o.bind(null,"3213"))},{path:"/documentation/*",name:z["a"],component:()=>Promise.all([o.e("documentation-topic~topic~tutorials-overview"),o.e("documentation-topic")]).then(o.bind(null,"f8ac"))},{path:"*",name:z["b"],component:we},{path:"*",name:"server-error",component:ge}];function ye(e={}){const t=new r["a"]({mode:"history",base:A["a"],scrollBehavior:Z,...e,routes:e.routes||be});return t.onReady(()=>{"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual"),ee()}),"ide"!==Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET&&t.onError(e=>{const{route:o={path:"/"}}=e;t.replace({name:"server-error",params:[o.path]})}),window.addEventListener("unload",te),t}i["default"].use(J),i["default"].use(r["a"]),new i["default"]({router:ye(),render:e=>e(N)}).$mount("#app")}}); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/js/topic.d56fc284.js b/JellyfinAPI.doccarchive/js/topic.d56fc284.js new file mode 100644 index 000000000..2bb66540d --- /dev/null +++ b/JellyfinAPI.doccarchive/js/topic.d56fc284.js @@ -0,0 +1,20 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["topic"],{"00f4":function(e,t,n){"use strict";n("282f")},"0466":function(e,t,n){},"0530":function(e,t,n){"use strict";n("dbeb")},"0b61":function(e,t,n){},1006:function(e,t,n){"use strict";n("a95e")},"14b7":function(e,t,n){},"1aae":function(e,t,n){},"1d42":function(e,t,n){},"1dd5":function(e,t,n){"use strict";n("7b17")},"26d3":function(e,t,n){"use strict";n("bf0f")},"282f":function(e,t,n){},"2b88":function(e,t,n){"use strict"; +/*! + * portal-vue © Thorsten Lünborg, 2019 + * + * Version: 2.1.7 + * + * LICENCE: MIT + * + * https://github.com/linusborg/portal-vue + * + */function s(e){return e&&"object"===typeof e&&"default"in e?e["default"]:e}Object.defineProperty(t,"__esModule",{value:!0});var i=s(n("2b0e"));function r(e){return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e){return a(e)||l(e)||c()}function a(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t1&&void 0!==arguments[1]?arguments[1]:{};return e.reduce((function(e,n){var s=n.passengers[0],i="function"===typeof s?s(t):n.passengers;return e.concat(i)}),[])}function h(e,t){return e.map((function(e,t){return[t,e]})).sort((function(e,n){return t(e[1],n[1])||e[0]-n[0]})).map((function(e){return e[1]}))}function m(e,t){return t.reduce((function(t,n){return e.hasOwnProperty(n)&&(t[n]=e[n]),t}),{})}var f={},v={},g={},y=i.extend({data:function(){return{transports:f,targets:v,sources:g,trackInstances:u}},methods:{open:function(e){if(u){var t=e.to,n=e.from,s=e.passengers,r=e.order,o=void 0===r?1/0:r;if(t&&n&&s){var a={to:t,from:n,passengers:d(s),order:o},l=Object.keys(this.transports);-1===l.indexOf(t)&&i.set(this.transports,t,[]);var c=this.$_getTransportIndex(a),p=this.transports[t].slice(0);-1===c?p.push(a):p[c]=a,this.transports[t]=h(p,(function(e,t){return e.order-t.order}))}}},close:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=e.to,s=e.from;if(n&&(s||!1!==t)&&this.transports[n])if(t)this.transports[n]=[];else{var i=this.$_getTransportIndex(e);if(i>=0){var r=this.transports[n].slice(0);r.splice(i,1),this.transports[n]=r}}},registerTarget:function(e,t,n){u&&(this.trackInstances&&!n&&this.targets[e]&&console.warn("[portal-vue]: Target ".concat(e," already exists")),this.$set(this.targets,e,Object.freeze([t])))},unregisterTarget:function(e){this.$delete(this.targets,e)},registerSource:function(e,t,n){u&&(this.trackInstances&&!n&&this.sources[e]&&console.warn("[portal-vue]: source ".concat(e," already exists")),this.$set(this.sources,e,Object.freeze([t])))},unregisterSource:function(e){this.$delete(this.sources,e)},hasTarget:function(e){return!(!this.targets[e]||!this.targets[e][0])},hasSource:function(e){return!(!this.sources[e]||!this.sources[e][0])},hasContentFor:function(e){return!!this.transports[e]&&!!this.transports[e].length},$_getTransportIndex:function(e){var t=e.to,n=e.from;for(var s in this.transports[t])if(this.transports[t][s].from===n)return+s;return-1}}}),b=new y(f),C=1,w=i.extend({name:"portal",props:{disabled:{type:Boolean},name:{type:String,default:function(){return String(C++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}}},created:function(){var e=this;this.$nextTick((function(){b.registerSource(e.name,e)}))},mounted:function(){this.disabled||this.sendUpdate()},updated:function(){this.disabled?this.clear():this.sendUpdate()},beforeDestroy:function(){b.unregisterSource(this.name),this.clear()},watch:{to:function(e,t){t&&t!==e&&this.clear(t),this.sendUpdate()}},methods:{clear:function(e){var t={from:this.name,to:e||this.to};b.close(t)},normalizeSlots:function(){return this.$scopedSlots.default?[this.$scopedSlots.default]:this.$slots.default},normalizeOwnChildren:function(e){return"function"===typeof e?e(this.slotProps):e},sendUpdate:function(){var e=this.normalizeSlots();if(e){var t={from:this.name,to:this.to,passengers:o(e),order:this.order};b.open(t)}else this.clear()}},render:function(e){var t=this.$slots.default||this.$scopedSlots.default||[],n=this.tag;return t&&this.disabled?t.length<=1&&this.slim?this.normalizeOwnChildren(t)[0]:e(n,[this.normalizeOwnChildren(t)]):this.slim?e():e(n,{class:{"v-portal":!0},style:{display:"none"},key:"v-portal-placeholder"})}}),_=i.extend({name:"portalTarget",props:{multiple:{type:Boolean,default:!1},name:{type:String,required:!0},slim:{type:Boolean,default:!1},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},data:function(){return{transports:b.transports,firstRender:!0}},created:function(){var e=this;this.$nextTick((function(){b.registerTarget(e.name,e)}))},watch:{ownTransports:function(){this.$emit("change",this.children().length>0)},name:function(e,t){b.unregisterTarget(t),b.registerTarget(e,this)}},mounted:function(){var e=this;this.transition&&this.$nextTick((function(){e.firstRender=!1}))},beforeDestroy:function(){b.unregisterTarget(this.name)},computed:{ownTransports:function(){var e=this.transports[this.name]||[];return this.multiple?e:0===e.length?[]:[e[e.length-1]]},passengers:function(){return p(this.ownTransports,this.slotProps)}},methods:{children:function(){return 0!==this.passengers.length?this.passengers:this.$scopedSlots.default?this.$scopedSlots.default(this.slotProps):this.$slots.default||[]},noWrapper:function(){var e=this.slim&&!this.transition;return e&&this.children().length>1&&console.warn("[portal-vue]: PortalTarget with `slim` option received more than one child element."),e}},render:function(e){var t=this.noWrapper(),n=this.children(),s=this.transition||this.tag;return t?n[0]:this.slim&&!s?e():e(s,{props:{tag:this.transition&&this.tag?this.tag:void 0},class:{"vue-portal-target":!0}},n)}}),k=0,S=["disabled","name","order","slim","slotProps","tag","to"],x=["multiple","transition"],T=i.extend({name:"MountingPortal",inheritAttrs:!1,props:{append:{type:[Boolean,String]},bail:{type:Boolean},mountTo:{type:String,required:!0},disabled:{type:Boolean},name:{type:String,default:function(){return"mounted_"+String(k++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}},multiple:{type:Boolean,default:!1},targetSlim:{type:Boolean},targetSlotProps:{type:Object,default:function(){return{}}},targetTag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},created:function(){if("undefined"!==typeof document){var e=document.querySelector(this.mountTo);if(e){var t=this.$props;if(b.targets[t.name])t.bail?console.warn("[portal-vue]: Target ".concat(t.name," is already mounted.\n Aborting because 'bail: true' is set")):this.portalTarget=b.targets[t.name];else{var n=t.append;if(n){var s="string"===typeof n?n:"DIV",i=document.createElement(s);e.appendChild(i),e=i}var r=m(this.$props,x);r.slim=this.targetSlim,r.tag=this.targetTag,r.slotProps=this.targetSlotProps,r.name=this.to,this.portalTarget=new _({el:e,parent:this.$parent||this,propsData:r})}}else console.error("[portal-vue]: Mount Point '".concat(this.mountTo,"' not found in document"))}},beforeDestroy:function(){var e=this.portalTarget;if(this.append){var t=e.$el;t.parentNode.removeChild(t)}e.$destroy()},render:function(e){if(!this.portalTarget)return console.warn("[portal-vue] Target wasn't mounted"),e();if(!this.$scopedSlots.manual){var t=m(this.$props,S);return e(w,{props:t,attrs:this.$attrs,on:this.$listeners,scopedSlots:this.$scopedSlots},this.$slots.default)}var n=this.$scopedSlots.manual({to:this.to});return Array.isArray(n)&&(n=n[0]),n||e()}});function A(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.component(t.portalName||"Portal",w),e.component(t.portalTargetName||"PortalTarget",_),e.component(t.MountingPortalName||"MountingPortal",T)}var $={install:A};t.default=$,t.Portal=w,t.PortalTarget=_,t.MountingPortal=T,t.Wormhole=b},"2f9d":function(e,t,n){"use strict";n("525c")},"2fac":function(e,t,n){"use strict";n("1d42")},3012:function(e,t,n){"use strict";n("a60e")},"311b":function(e,t,n){},3213:function(e,t,n){"use strict";n.r(t);var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[e.topicData?n(e.componentFor(e.topicData),e._b({key:e.topicKey,tag:"component",attrs:{hierarchy:e.hierarchy}},"component",e.propsFor(e.topicData),!1)):e._e()],1)},i=[],r=n("25a9"),o=n("a97e");const{BreakpointName:a}=o["a"].constants;var l,c,u={state:{linkableSections:[],breakpoint:a.large},addLinkableSection(e){const t={...e,visibility:0};t.sectionNumber=this.state.linkableSections.length,this.state.linkableSections.push(t)},reset(){this.state.linkableSections=[],this.state.breakpoint=a.large},updateLinkableSection(e){this.state.linkableSections=this.state.linkableSections.map(t=>e.anchor===t.anchor?{...t,visibility:e.visibility}:t)},updateBreakpoint(e){this.state.breakpoint=e}},d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"article"},[e.isTargetIDE?e._e():n("NavigationBar",{attrs:{chapters:e.hierarchy.modules,technology:e.metadata.category,topic:e.heroTitle||"",rootReference:e.hierarchy.reference}}),n("main",{attrs:{id:"main",role:"main",tabindex:"0"}},[e._t("above-hero"),e._l(e.sections,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:"component"},"component",e.propsFor(t),!1))}))],2),n("PortalTarget",{attrs:{name:"modal-destination",multiple:""}})],1)},p=[],h=n("2b88"),m=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavBase",{attrs:{id:"nav","aria-label":e.technology,hasSolidBackground:""}},[n("template",{slot:"default"},[n("ReferenceUrlProvider",{attrs:{reference:e.rootReference},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.urlWithParams;return n("NavTitleContainer",{attrs:{to:s}},[n("template",{slot:"default"},[e._v(e._s(e.technology))]),n("template",{slot:"subhead"},[e._v("Tutorials")])],2)}}])})],1),n("template",{slot:"after-title"},[n("div",{staticClass:"separator"})]),n("template",{slot:"tray"},[n("div",{staticClass:"mobile-dropdown-container"},[n("MobileDropdown",{attrs:{options:e.chapters,sections:e.optionsForSections,currentOption:e.currentSection?e.currentSection.title:""},on:{"select-section":e.onSelectSection}})],1),n("div",{staticClass:"dropdown-container"},[n("PrimaryDropdown",{staticClass:"primary-dropdown",attrs:{options:e.chapters,currentOption:e.topic}}),n("ChevronIcon",{staticClass:"icon-inline"}),e.currentSection?n("SecondaryDropdown",{staticClass:"secondary-dropdown",attrs:{options:e.optionsForSections,currentOption:e.currentSection.title,sectionTracker:e.sectionIndicatorText},on:{"select-section":e.onSelectSection}}):e._e()],1)])],2)},f=[],v=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"chevron-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M3.22 1.184l0.325-0.38 7.235 6.201-7.235 6.19-0.325-0.38 6.792-5.811-6.792-5.82z"}})])},g=[],y=n("be08"),b={name:"ChevronIcon",components:{SVGIcon:y["a"]}},C=b,w=n("2877"),_=Object(w["a"])(C,v,g,!1,null,null,null),k=_.exports,S=n("d26a"),x={name:"ReferenceUrlProvider",inject:{references:{default:()=>({})}},props:{reference:{type:String,required:!0}},computed:{resolvedReference:({references:e,reference:t})=>e[t]||{},url:({resolvedReference:e})=>e.url,title:({resolvedReference:e})=>e.title},render(){return this.$scopedSlots.default({url:this.url,urlWithParams:Object(S["b"])(this.url,this.$route.query),title:this.title,reference:this.resolvedReference})}},T=x,A=Object(w["a"])(T,l,c,!1,null,null,null),$=A.exports,I=n("8a61"),O=n("cbcf"),P=n("653a"),N=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItems",{staticClass:"mobile-dropdown"},e._l(e.options,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(s){var i=s.title;return n("NavMenuItemBase",{staticClass:"chapter-list",attrs:{role:"group"}},[n("p",{staticClass:"chapter-name"},[e._v(e._s(i))]),n("ul",{staticClass:"tutorial-list"},e._l(t.projects,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.url,i=t.urlWithParams,r=t.title;return n("li",{staticClass:"tutorial-list-item"},[n("router-link",{staticClass:"option tutorial",attrs:{to:i,value:r}},[e._v(" "+e._s(r)+" ")]),s===e.$route.path?n("ul",{staticClass:"section-list",attrs:{role:"listbox"}},e._l(e.sections,(function(t){return n("li",{key:t.title},[n("router-link",{class:e.classesFor(t),attrs:{to:{path:t.path,query:e.$route.query},value:t.title},nativeOn:{click:function(n){return e.onClick(t)}}},[e._v(" "+e._s(t.title)+" ")])],1)})),0):e._e()],1)}}],null,!0)})})),1)])}}],null,!0)})})),1)},j=[],B=n("863d"),D=n("9b30"),M={name:"MobileDropdown",components:{NavMenuItems:D["a"],NavMenuItemBase:B["a"],ReferenceUrlProvider:$},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0},sections:{type:Array,required:!1,default:()=>[]}},methods:{classesFor(e){return["option","section",{active:this.currentOption===e.title},this.depthClass(e)]},depthClass(e){const{depth:t=0}=e;return"depth"+t},onClick(e){this.$emit("select-section",e.path)}}},q=M,E=(n("2fac"),Object(w["a"])(q,N,j,!1,null,"3d58f504",null)),R=E.exports,V=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("DropdownCustom",{staticClass:"tutorial-dropdown",attrs:{value:e.currentOption,"aria-label":"Current section",isSmall:""},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.closeAndFocusToggler,i=t.contentClasses,r=t.navigateOverOptions,o=t.OptionClass,a=t.ActiveOptionClass;return[n("ul",{staticClass:"options",class:i,attrs:{role:"listbox",tabindex:"0"}},e._l(e.options,(function(t){return n("router-link",{key:t.title,attrs:{to:{path:t.path,query:e.$route.query},custom:""},scopedSlots:e._u([{key:"default",fn:function(i){var l,c=i.navigate;return[n("li",{class:[o,(l={},l[a]=e.currentOption===t.title,l)],attrs:{role:"option",value:t.title,"aria-selected":e.currentOption===t.title,"aria-current":e.ariaCurrent(t.title),tabindex:-1},on:{click:function(n){return e.setActive(t,c,s,n)},keydown:[function(n){return!n.type.indexOf("key")&&e._k(n.keyCode,"enter",13,n.key,"Enter")?null:e.setActive(t,c,s,n)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),r(t,1))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),r(t,-1))}]}},[e._v(" "+e._s(t.title)+" ")])]}}],null,!0)})})),1)]}}])},[n("template",{slot:"toggle-post-content"},[n("span",{staticClass:"section-tracker"},[e._v(e._s(e.sectionTracker))])])],2)},L=[],F=function(){var e,t=this,n=t.$createElement,s=t._self._c||n;return s("BaseDropdown",{staticClass:"dropdown-custom",class:(e={},e[t.OpenedClass]=t.isOpen,e["dropdown-small"]=t.isSmall,e),attrs:{value:t.value},scopedSlots:t._u([{key:"dropdown",fn:function(e){var n=e.dropdownClasses;return[s("span",{staticClass:"visuallyhidden",attrs:{id:"DropdownLabel_"+t._uid}},[t._v(t._s(t.ariaLabel))]),s("button",{ref:"dropdownToggle",staticClass:"form-dropdown-toggle",class:n,attrs:{role:"button",id:"DropdownToggle_"+t._uid,"aria-labelledby":"DropdownLabel_"+t._uid+" DropdownToggle_"+t._uid,"aria-expanded":t.isOpen?"true":"false","aria-haspopup":"true"},on:{click:t.toggleDropdown,keydown:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.closeAndFocusToggler.apply(null,arguments)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))}]}},[s("span",{staticClass:"form-dropdown-title"},[t._v(t._s(t.value))]),t._t("toggle-post-content")],2)]}}],null,!0)},[s("template",{slot:"eyebrow"},[t._t("eyebrow")],2),s("template",{slot:"after"},[t._t("default",null,null,{value:t.value,isOpen:t.isOpen,contentClasses:["form-dropdown-content",{"is-open":t.isOpen}],closeDropdown:t.closeDropdown,onChangeAction:t.onChangeAction,closeAndFocusToggler:t.closeAndFocusToggler,navigateOverOptions:t.navigateOverOptions,OptionClass:t.OptionClass,ActiveOptionClass:t.ActiveOptionClass})],2)],2)},z=[],H=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"form-element"},[e._t("dropdown",(function(){return[n("select",e._b({directives:[{name:"model",rawName:"v-model",value:e.modelValue,expression:"modelValue"}],class:e.dropdownClasses,on:{change:function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){var t="_value"in e?e._value:e.value;return t}));e.modelValue=t.target.multiple?n:n[0]}}},"select",e.$attrs,!1),[e._t("default")],2)]}),{dropdownClasses:e.dropdownClasses,value:e.value}),n("InlineChevronDownIcon",{staticClass:"form-icon",attrs:{"aria-hidden":"true"}}),e.$slots.eyebrow?n("span",{staticClass:"form-label",attrs:{"aria-hidden":"true"}},[e._t("eyebrow")],2):e._e(),e._t("after")],2)},G=[],U=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-chevron-down-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M12.634 2.964l0.76 0.649-6.343 7.426-6.445-7.423 0.755-0.655 5.683 6.545 5.59-6.542z"}})])},W=[],Q={name:"InlineChevronDownIcon",components:{SVGIcon:y["a"]}},K=Q,X=Object(w["a"])(K,U,W,!1,null,null,null),J=X.exports,Y={name:"BaseDropdown",inheritAttrs:!1,props:{value:{type:String,default:""}},components:{InlineChevronDownIcon:J},computed:{modelValue:{get:({value:e})=>e,set(e){this.$emit("input",e)}},dropdownClasses({value:e}){return["form-dropdown",{"form-dropdown-selectnone":""===e,"no-eyebrow":!this.$slots.eyebrow}]}}},Z=Y,ee=(n("ed71"),Object(w["a"])(Z,H,G,!1,null,"998803d8",null)),te=ee.exports;const ne="is-open",se="option",ie="option-active";var re={name:"DropdownCustom",components:{BaseDropdown:te},constants:{OpenedClass:ne,OptionClass:se,ActiveOptionClass:ie},props:{value:{type:String,default:""},ariaLabel:{type:String,default:""},isSmall:{type:Boolean,default:!1}},data(){return{isOpen:!1,OpenedClass:ne,OptionClass:se,ActiveOptionClass:ie}},mounted(){document.addEventListener("click",this.closeOnLoseFocus)},beforeDestroy(){document.removeEventListener("click",this.closeOnLoseFocus)},methods:{onChangeAction(e){this.$emit("input",e)},toggleDropdown(){this.isOpen?this.closeDropdown():this.openDropdown()},async closeAndFocusToggler(){this.closeDropdown(),await this.$nextTick(),this.$refs.dropdownToggle.focus()},closeDropdown(){this.isOpen=!1,this.$emit("close")},openDropdown(){this.isOpen=!0,this.$emit("open"),this.focusActiveLink()},closeOnLoseFocus(e){!this.$el.contains(e.target)&&this.isOpen&&this.closeDropdown()},navigateOverOptions({target:e},t){const n=this.$el.querySelectorAll("."+se),s=Array.from(n),i=s.indexOf(e),r=s[i+t];r&&r.focus()},async focusActiveLink(){const e=this.$el.querySelector("."+ie);e&&(await this.$nextTick(),e.focus())}}},oe=re,ae=(n("811c"),Object(w["a"])(oe,F,z,!1,null,"47f38161",null)),le=ae.exports,ce={name:"SecondaryDropdown",components:{DropdownCustom:le},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0},sectionTracker:{type:String,required:!1}},methods:{ariaCurrent(e){return this.currentOption===e&&"section"},setActive(e,t,n,s){t(s),this.$emit("select-section",e.path),n()}}},ue=ce,de=(n("5952"),Object(w["a"])(ue,V,L,!1,null,"4a151342",null)),pe=de.exports,he=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("DropdownCustom",{staticClass:"tutorial-dropdown",attrs:{value:e.currentOption,"aria-label":"Current tutorial",isSmall:""},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.closeAndFocusToggler,i=t.contentClasses,r=t.closeDropdown,o=t.navigateOverOptions,a=t.OptionClass,l=t.ActiveOptionClass;return[n("ul",{staticClass:"options",class:i,attrs:{tabindex:"0"}},e._l(e.options,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(i){var c=i.title;return n("li",{staticClass:"chapter-list",attrs:{role:"group"}},[n("p",{staticClass:"chapter-name"},[e._v(e._s(c))]),n("ul",{attrs:{role:"listbox"}},e._l(t.projects,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.urlWithParams,c=t.title;return[n("router-link",{attrs:{to:i,custom:""},scopedSlots:e._u([{key:"default",fn:function(t){var i,u=t.navigate,d=t.isActive;return[n("li",{class:(i={},i[a]=!0,i[l]=d,i),attrs:{role:"option",value:c,"aria-selected":d,"aria-current":!!d&&"tutorial",tabindex:-1},on:{click:function(t){return e.setActive(u,r,t)},keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.setActive(u,r,t)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),o(t,1))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),o(t,-1))}]}},[e._v(" "+e._s(c)+" ")])]}}],null,!0)})]}}],null,!0)})})),1)])}}],null,!0)})})),1)]}}])})},me=[],fe={name:"PrimaryDropdown",components:{DropdownCustom:le,ReferenceUrlProvider:$},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0}},methods:{setActive(e,t,n){e(n),t()}}},ve=fe,ge=(n("e4e4"),Object(w["a"])(ve,he,me,!1,null,"78dc103f",null)),ye=ge.exports,be={name:"NavigationBar",components:{NavTitleContainer:P["a"],NavBase:O["a"],ReferenceUrlProvider:$,PrimaryDropdown:ye,SecondaryDropdown:pe,MobileDropdown:R,ChevronIcon:k},mixins:[I["a"]],inject:["store"],props:{chapters:{type:Array,required:!0},technology:{type:String,required:!0},topic:{type:String,required:!0},rootReference:{type:String,required:!0}},data(){return{currentSection:{sectionNumber:0,title:"Introduction"},tutorialState:this.store.state}},watch:{pageSectionWithHighestVisibility(e){e&&(this.currentSection=e)}},computed:{pageSections(){const e=this.$route.path.replace(/#$/,"");return this.tutorialState.linkableSections.map(t=>({...t,path:`${e}#${t.anchor}`}))},optionsForSections(){return this.pageSections.map(({depth:e,path:t,title:n})=>({depth:e,path:t,title:n}))},pageSectionWithHighestVisibility(){return[...this.pageSections].sort((e,t)=>t.visibility-e.visibility).find(e=>e.visibility>0)},sectionIndicatorText(){const e=this.tutorialState.linkableSections.length-1,{sectionNumber:t}=this.currentSection||{};if(0!==t)return`(${t} of ${e})`}},methods:{onSelectSection(e){const t="#"+e.split("#")[1];this.scrollToElement(t)}}},Ce=be,we=(n("6cd7"),Object(w["a"])(Ce,m,f,!1,null,"7138b5bf",null)),_e=we.exports,ke=n("d8ce"),Se=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"body"},[n("BodyContent",{attrs:{content:e.content}})],1)},xe=[],Te=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("article",{staticClass:"body-content"},e._l(e.content,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:"component",staticClass:"layout"},"component",e.propsFor(t),!1))})),1)},Ae=[],$e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"columns",class:e.classes},[e._l(e.columns,(function(t,s){return[n("Asset",{key:t.media,attrs:{identifier:t.media,videoAutoplays:!1}}),t.content?n("ContentNode",{key:s,attrs:{content:t.content}}):e._e()]}))],2)},Ie=[],Oe=n("80e4"),Pe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseContentNode",{attrs:{content:e.articleContent}})},Ne=[],je=n("5677"),Be={name:"ContentNode",components:{BaseContentNode:je["a"]},props:je["a"].props,computed:{articleContent(){return this.map(e=>{switch(e.type){case je["a"].BlockType.codeListing:return{...e,showLineNumbers:!0};case je["a"].BlockType.heading:{const{anchor:t,...n}=e;return n}default:return e}})}},methods:je["a"].methods,BlockType:je["a"].BlockType,InlineType:je["a"].InlineType},De=Be,Me=(n("cb8d"),Object(w["a"])(De,Pe,Ne,!1,null,"3cfe1c35",null)),qe=Me.exports,Ee={name:"Columns",components:{Asset:Oe["a"],ContentNode:qe},props:{columns:{type:Array,required:!0}},computed:{classes(){return{"cols-2":2===this.columns.length,"cols-3":3===this.columns.length}}}},Re=Ee,Ve=(n("e9b0"),Object(w["a"])(Re,$e,Ie,!1,null,"30edf911",null)),Le=Ve.exports,Fe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"content-and-media",class:e.classes},[n("ContentNode",{attrs:{content:e.content}}),n("Asset",{attrs:{identifier:e.media}})],1)},ze=[];const He={leading:"leading",trailing:"trailing"};var Ge={name:"ContentAndMedia",components:{Asset:Oe["a"],ContentNode:qe},props:{content:qe.props.content,media:Oe["a"].props.identifier,mediaPosition:{type:String,default:()=>He.trailing,validator:e=>Object.prototype.hasOwnProperty.call(He,e)}},computed:{classes(){return{"media-leading":this.mediaPosition===He.leading,"media-trailing":this.mediaPosition===He.trailing}}},MediaPosition:He},Ue=Ge,We=(n("1006"),Object(w["a"])(Ue,Fe,ze,!1,null,"3fa44f9e",null)),Qe=We.exports,Ke=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"full-width"},e._l(e.groups,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:"component",staticClass:"group"},"component",e.propsFor(t),!1),[n("ContentNode",{attrs:{content:t.content}})],1)})),1)},Xe=[],Je=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.tag,{tag:"component",attrs:{id:e.anchor}},[e._t("default")],2)},Ye=[],Ze=n("72e7"),et={name:"LinkableElement",mixins:[Ze["a"]],inject:{navigationBarHeight:{default(){}},store:{default(){return{addLinkableSection(){},updateLinkableSection(){}}}}},props:{anchor:{type:String,required:!0},depth:{type:Number,default:()=>0},tag:{type:String,default:()=>"div"},title:{type:String,required:!0}},computed:{intersectionRootMargin(){const e=this.navigationBarHeight?`-${this.navigationBarHeight}px`:"0%";return e+" 0% -50% 0%"}},created(){this.store.addLinkableSection({anchor:this.anchor,depth:this.depth,title:this.title,visibility:0})},methods:{onIntersect(e){const t=Math.min(1,e.intersectionRatio);this.store.updateLinkableSection({anchor:this.anchor,depth:this.depth,title:this.title,visibility:t})}}},tt=et,nt=Object(w["a"])(tt,Je,Ye,!1,null,null,null),st=nt.exports;const{BlockType:it}=qe;var rt={name:"FullWidth",components:{ContentNode:qe,LinkableElement:st},props:qe.props,computed:{groups:({content:e})=>e.reduce((e,t)=>0===e.length||t.type===it.heading?[...e,{heading:t.type===it.heading?t:null,content:[t]}]:[...e.slice(0,e.length-1),{heading:e[e.length-1].heading,content:e[e.length-1].content.concat(t)}],[])},methods:{componentFor(e){return e.heading?st:"div"},depthFor(e){switch(e.level){case 1:case 2:return 0;default:return 1}},propsFor(e){return e.heading?{anchor:e.heading.anchor,depth:this.depthFor(e.heading),title:e.heading.text}:{}}}},ot=rt,at=(n("aece"),Object(w["a"])(ot,Ke,Xe,!1,null,"1f2be54b",null)),lt=at.exports;const ct={columns:"columns",contentAndMedia:"contentAndMedia",fullWidth:"fullWidth"};var ut={name:"BodyContent",props:{content:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(ct,e))}},methods:{componentFor(e){return{[ct.columns]:Le,[ct.contentAndMedia]:Qe,[ct.fullWidth]:lt}[e.kind]},propsFor(e){const{content:t,kind:n,media:s,mediaPosition:i}=e;return{[ct.columns]:{columns:t},[ct.contentAndMedia]:{content:t,media:s,mediaPosition:i},[ct.fullWidth]:{content:t}}[n]}},LayoutKind:ct},dt=ut,pt=(n("1dd5"),Object(w["a"])(dt,Te,Ae,!1,null,"4d5a806e",null)),ht=pt.exports,mt={name:"Body",components:{BodyContent:ht},props:ht.props},ft=mt,vt=(n("5237"),Object(w["a"])(ft,Se,xe,!1,null,"6499e2f2",null)),gt=vt.exports,yt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialCTA",e._b({},"TutorialCTA",e.$props,!1))},bt=[],Ct=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseCTA",e._b({attrs:{label:"Next"}},"BaseCTA",e.baseProps,!1))},wt=[],_t=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"call-to-action"},[n("Row",[n("LeftColumn",[n("span",{staticClass:"label"},[e._v(e._s(e.label))]),n("h2",[e._v(" "+e._s(e.title)+" ")]),e.abstract?n("ContentNode",{staticClass:"description",attrs:{content:[e.abstractParagraph]}}):e._e(),e.action?n("Button",{attrs:{action:e.action}}):e._e()],1),n("RightColumn",{staticClass:"right-column"},[e.media?n("Asset",{staticClass:"media",attrs:{identifier:e.media}}):e._e()],1)],1)],1)},kt=[],St=n("0f00"),xt=n("620a"),Tt=n("c081"),At={name:"CallToAction",components:{Asset:Oe["a"],Button:Tt["a"],ContentNode:je["a"],LeftColumn:{render(e){return e(xt["a"],{props:{span:{large:5,small:12}}},this.$slots.default)}},RightColumn:{render(e){return e(xt["a"],{props:{span:{large:6,small:12}}},this.$slots.default)}},Row:St["a"]},props:{title:{type:String,required:!0},label:{type:String,required:!0},abstract:{type:Array,required:!1},action:{type:Object,required:!1},media:{type:String,required:!1}},computed:{abstractParagraph(){return{type:"paragraph",inlineContent:this.abstract}}}},$t=At,It=(n("80f7"),Object(w["a"])($t,_t,kt,!1,null,"2016b288",null)),Ot=It.exports,Pt={name:"CallToAction",components:{BaseCTA:Ot},computed:{baseProps(){return{title:this.title,abstract:this.abstract,action:this.action,media:this.media}}},props:{title:{type:String,required:!0},abstract:{type:Array,required:!1},action:{type:Object,required:!1},media:{type:String,required:!1}}},Nt=Pt,jt=Object(w["a"])(Nt,Ct,wt,!1,null,null,null),Bt=jt.exports,Dt={name:"CallToAction",components:{TutorialCTA:Bt},props:Bt.props},Mt=Dt,qt=(n("3e1b"),Object(w["a"])(Mt,yt,bt,!1,null,"426a965c",null)),Et=qt.exports,Rt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialHero",e._b({},"TutorialHero",e.$props,!1))},Vt=[],Lt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"tutorial-hero",attrs:{anchor:"introduction",title:e.sectionTitle}},[n("div",{staticClass:"hero dark"},[e.backgroundImageUrl?n("div",{staticClass:"bg",style:e.bgStyle}):e._e(),e._t("above-title"),n("Row",[n("Column",[n("Headline",{attrs:{level:1}},[e.chapter?n("template",{slot:"eyebrow"},[e._v(e._s(e.chapter))]):e._e(),e._v(" "+e._s(e.title)+" ")],2),e.content||e.video?n("div",{staticClass:"intro"},[e.content?n("ContentNode",{attrs:{content:e.content}}):e._e(),e.video?[n("p",[n("a",{staticClass:"call-to-action",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.toggleCallToActionModal.apply(null,arguments)}}},[e._v(" Watch intro video "),n("PlayIcon",{staticClass:"cta-icon icon-inline"})],1)]),n("GenericModal",{attrs:{visible:e.callToActionModalVisible,isFullscreen:"",theme:"dark"},on:{"update:visible":function(t){e.callToActionModalVisible=t}}},[n("Asset",{directives:[{name:"show",rawName:"v-show",value:e.callToActionModalVisible,expression:"callToActionModalVisible"}],ref:"asset",staticClass:"video-asset",attrs:{identifier:e.video},on:{videoEnded:e.handleVideoEnd}})],1)]:e._e()],2):e._e(),n("Metadata",{staticClass:"metadata",attrs:{projectFilesUrl:e.projectFilesUrl,estimatedTimeInMinutes:e.estimatedTimeInMinutes,xcodeRequirement:e.xcodeRequirementData}})],1)],1)],2)])},Ft=[],zt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"headline"},[e.$slots.eyebrow?n("span",{staticClass:"eyebrow"},[e._t("eyebrow")],2):e._e(),n("Heading",{staticClass:"heading",attrs:{level:e.level}},[e._t("default")],2)],1)},Ht=[];const Gt=1,Ut=6,Wt={type:Number,required:!0,validator:e=>e>=Gt&&e<=Ut},Qt={name:"Heading",render:function(e){return e("h"+this.level,this.$slots.default)},props:{level:Wt}};var Kt={name:"Headline",components:{Heading:Qt},props:{level:Wt}},Xt=Kt,Jt=(n("323a"),Object(w["a"])(Xt,zt,Ht,!1,null,"1898f592",null)),Yt=Jt.exports,Zt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("PortalSource",{attrs:{to:"modal-destination",disabled:!e.isVisible}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.isVisible,expression:"isVisible"}],staticClass:"generic-modal",class:[e.stateClasses,e.themeClass],style:e.modalColors,attrs:{role:"dialog"}},[n("div",{staticClass:"backdrop",on:{click:e.onClickOutside}}),n("div",{ref:"container",staticClass:"container",style:{width:e.width}},[e.showClose?n("button",{ref:"close",staticClass:"close",attrs:{"aria-label":"Close"},on:{click:function(t){return t.preventDefault(),e.closeModal.apply(null,arguments)}}},[n("CloseIcon")],1):e._e(),n("div",{staticClass:"modal-content"},[e._t("default")],2)])])])},en=[],tn=n("f2af"),nn=n("c8e2"),sn=n("95da"),rn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"close-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"m10.3772239 3.1109127.7266116.7266116-3.27800002 3.2763884 3.27072752 3.2703884-.7266116.7266116-3.27011592-3.271-3.26211596 3.2637276-.7266116-.7266116 3.26272756-3.263116-3.27-3.26911596.72661159-.72661159 3.26938841 3.26972755z","fill-rule":"evenodd"}})])},on=[],an={name:"CloseIcon",components:{SVGIcon:y["a"]}},ln=an,cn=Object(w["a"])(ln,rn,on,!1,null,null,null),un=cn.exports;const dn={light:"light",dark:"dark",dynamic:"dynamic",code:"code"};var pn={name:"GenericModal",model:{prop:"visible",event:"update:visible"},components:{CloseIcon:un,PortalSource:h["Portal"]},props:{visible:{type:Boolean,default:!1},isFullscreen:{type:Boolean,default:!1},theme:{type:String,validator:e=>Object.keys(dn).includes(e),default:dn.light},codeBackgroundColorOverride:{type:String,default:""},width:{type:String,default:null},showClose:{type:Boolean,default:!0}},data(){return{lastFocusItem:null,prefersDarkStyle:!1,focusTrapInstance:null}},computed:{isVisible:{get:({visible:e})=>e,set(e){this.$emit("update:visible",e)}},modalColors(){return{"--background":this.codeBackgroundColorOverride}},themeClass({theme:e,prefersDarkStyle:t,isThemeDynamic:n}){let s={};return n&&(s={"theme-light":!t,"theme-dark":t}),["theme-"+e,s]},stateClasses:({isFullscreen:e,isVisible:t,showClose:n})=>({"modal-fullscreen":e,"modal-standard":!e,"modal-open":t,"modal-with-close":n}),isThemeDynamic:({theme:e})=>e===dn.dynamic||e===dn.code},watch:{isVisible(e){e?this.onShow():this.onHide()}},mounted(){if(this.focusTrapInstance=new nn["a"],document.addEventListener("keydown",this.onEscapeClick),this.isThemeDynamic){const e=window.matchMedia("(prefers-color-scheme: dark)");e.addListener(this.onColorSchemePreferenceChange),this.$once("hook:beforeDestroy",()=>{e.removeListener(this.onColorSchemePreferenceChange)}),this.onColorSchemePreferenceChange(e)}},beforeDestroy(){this.isVisible&&tn["a"].unlockScroll(this.$refs.container),document.removeEventListener("keydown",this.onEscapeClick),this.focusTrapInstance.destroy()},methods:{async onShow(){await this.$nextTick(),tn["a"].lockScroll(this.$refs.container),await this.focusCloseButton(),this.focusTrapInstance.updateFocusContainer(this.$refs.container),this.focusTrapInstance.start(),sn["a"].hide(this.$refs.container)},onHide(){tn["a"].unlockScroll(this.$refs.container),this.focusTrapInstance.stop(),this.lastFocusItem&&(this.lastFocusItem.focus({preventScroll:!0}),this.lastFocusItem=null),this.$emit("close"),sn["a"].show(this.$refs.container)},closeModal(){this.isVisible=!1},onClickOutside(){this.closeModal()},onEscapeClick({key:e}){this.isVisible&&"Escape"===e&&this.closeModal()},onColorSchemePreferenceChange({matches:e}){this.prefersDarkStyle=e},async focusCloseButton(){this.lastFocusItem=document.activeElement,await this.$nextTick(),this.$refs.close&&this.$refs.close.focus(),this.$emit("open")}}},hn=pn,mn=(n("bd7a"),Object(w["a"])(hn,Zt,en,!1,null,"0e383dfa",null)),fn=mn.exports,vn=n("c4dd"),gn=n("748c"),yn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"metadata"},[e.estimatedTimeInMinutes?n("div",{staticClass:"item",attrs:{"aria-label":e.estimatedTimeInMinutes+" minutes estimated time"}},[n("div",{staticClass:"content",attrs:{"aria-hidden":"true"}},[n("div",{staticClass:"duration"},[e._v(" "+e._s(e.estimatedTimeInMinutes)+" "),n("div",{staticClass:"minutes"},[e._v("min")])])]),n("div",{staticClass:"bottom",attrs:{"aria-hidden":"true"}},[e._v("Estimated Time")])]):e._e(),e.projectFilesUrl?n("div",{staticClass:"item"},[n("DownloadIcon",{staticClass:"item-large-icon icon-inline"}),n("div",{staticClass:"content bottom"},[n("a",{staticClass:"content-link project-download",attrs:{href:e.projectFilesUrl}},[e._v(" Project files "),n("InlineDownloadIcon",{staticClass:"small-icon icon-inline"})],1)])],1):e._e(),e.xcodeRequirement?n("div",{staticClass:"item"},[n("XcodeIcon",{staticClass:"item-large-icon icon-inline"}),n("div",{staticClass:"content bottom"},[e.isTargetIDE?n("span",[e._v(e._s(e.xcodeRequirement.title))]):n("a",{staticClass:"content-link",attrs:{href:e.xcodeRequirement.url}},[e._v(" "+e._s(e.xcodeRequirement.title)+" "),n("InlineChevronRightIcon",{staticClass:"icon-inline small-icon xcode-icon"})],1)])],1):e._e()])},bn=[],Cn=n("de60"),wn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"xcode-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M2.668 4.452l-1.338-2.229 0.891-0.891 2.229 1.338 1.338 2.228 3.667 3.666 0.194-0.194 2.933 2.933c0.13 0.155 0.209 0.356 0.209 0.576 0 0.497-0.403 0.9-0.9 0.9-0.22 0-0.421-0.079-0.577-0.209l0.001 0.001-2.934-2.933 0.181-0.181-3.666-3.666z"}}),n("path",{attrs:{d:"M11.824 1.277l-0.908 0.908c-0.091 0.091-0.147 0.216-0.147 0.354 0 0.106 0.033 0.205 0.090 0.286l-0.001-0.002 0.058 0.069 0.185 0.185c0.090 0.090 0.215 0.146 0.353 0.146 0.107 0 0.205-0.033 0.286-0.090l-0.002 0.001 0.069-0.057 0.909-0.908c0.118 0.24 0.187 0.522 0.187 0.82 0 1.045-0.848 1.893-1.893 1.893-0.296 0-0.577-0.068-0.826-0.189l0.011 0.005-5.5 5.5c0.116 0.238 0.184 0.518 0.184 0.813 0 1.045-0.848 1.893-1.893 1.893-0.296 0-0.576-0.068-0.826-0.189l0.011 0.005 0.908-0.909c0.090-0.090 0.146-0.215 0.146-0.353 0-0.107-0.033-0.205-0.090-0.286l0.001 0.002-0.057-0.069-0.185-0.185c-0.091-0.091-0.216-0.147-0.354-0.147-0.106 0-0.205 0.033-0.286 0.090l0.002-0.001-0.069 0.058-0.908 0.908c-0.116-0.238-0.184-0.518-0.184-0.813 0-1.045 0.847-1.892 1.892-1.892 0.293 0 0.571 0.067 0.819 0.186l-0.011-0.005 5.5-5.5c-0.116-0.238-0.184-0.519-0.184-0.815 0-1.045 0.847-1.892 1.892-1.892 0.296 0 0.577 0.068 0.827 0.19l-0.011-0.005z"}})])},_n=[],kn={name:"XcodeIcon",components:{SVGIcon:y["a"]}},Sn=kn,xn=Object(w["a"])(Sn,wn,_n,!1,null,null,null),Tn=xn.exports,An=n("34b0"),$n=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-download-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},In=[],On={name:"InlineDownloadIcon",components:{SVGIcon:y["a"]}},Pn=On,Nn=Object(w["a"])(Pn,$n,In,!1,null,null,null),jn=Nn.exports,Bn={name:"HeroMetadata",components:{InlineDownloadIcon:jn,InlineChevronRightIcon:An["a"],DownloadIcon:Cn["a"],XcodeIcon:Tn},inject:["isTargetIDE"],props:{projectFilesUrl:{type:String},estimatedTimeInMinutes:{type:Number},xcodeRequirement:{type:Object,required:!1}}},Dn=Bn,Mn=(n("5356"),Object(w["a"])(Dn,yn,bn,!1,null,"2fa6f125",null)),qn=Mn.exports,En={name:"Hero",components:{PlayIcon:vn["a"],GenericModal:fn,Column:{render(e){return e(xt["a"],{props:{span:{large:7,medium:9,small:12}}},this.$slots.default)}},ContentNode:je["a"],Headline:Yt,Metadata:qn,Row:St["a"],Asset:Oe["a"],LinkableSection:st},inject:["references"],props:{title:{type:String,required:!0},chapter:{type:String},content:{type:Array},projectFiles:{type:String},estimatedTimeInMinutes:{type:Number},xcodeRequirement:{type:String,required:!1},video:{type:String},backgroundImage:{type:String}},computed:{backgroundImageUrl(){const e=this.references[this.backgroundImage]||{},{variants:t=[]}=e,n=t.find(e=>e.traits.includes("light"));return n?Object(gn["b"])(n.url):""},projectFilesUrl(){return this.projectFiles?Object(gn["b"])(this.references[this.projectFiles].url):null},bgStyle(){return{backgroundImage:`url('${this.backgroundImageUrl}')`}},xcodeRequirementData(){return this.references[this.xcodeRequirement]},sectionTitle(){return"Introduction"}},data(){return{callToActionModalVisible:!1}},methods:{async toggleCallToActionModal(){this.callToActionModalVisible=!0,await this.$nextTick();const e=this.$refs.asset.$el.querySelector("video");if(e)try{await e.play(),e.muted=!1}catch(t){}},handleVideoEnd(){this.callToActionModalVisible=!1}}},Rn=En,Vn=(n("3c4b"),Object(w["a"])(Rn,Lt,Ft,!1,null,"cb87b2d0",null)),Ln=Vn.exports,Fn={name:"Hero",components:{TutorialHero:Ln},props:Ln.props},zn=Fn,Hn=(n("2f9d"),Object(w["a"])(zn,Rt,Vt,!1,null,"35a9482f",null)),Gn=Hn.exports,Un=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialAssessments",e._b({},"TutorialAssessments",e.$props,!1),[n("p",{attrs:{slot:"success"},slot:"success"},[e._v("Great job, you've answered all the questions for this article.")])])},Wn=[],Qn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"assessments-wrapper",attrs:{anchor:e.anchor,title:e.title}},[n("Row",{ref:"assessments",staticClass:"assessments"},[n("MainColumn",[n("Row",{staticClass:"banner"},[n("HeaderColumn",[n("h2",{staticClass:"title"},[e._v(e._s(e.title))])])],1),e.completed?n("div",{staticClass:"success"},[e._t("success",(function(){return[n("p",[e._v("Great job, you've answered all the questions for this tutorial.")])]}))],2):n("div",[n("Progress",e._b({ref:"progress"},"Progress",e.progress,!1)),n("Quiz",{key:e.activeIndex,attrs:{choices:e.activeAssessment.choices,content:e.activeAssessment.content,isLast:e.isLast,title:e.activeAssessment.title},on:{submit:e.onSubmit,advance:e.onAdvance,"see-results":e.onSeeResults}})],1)],1)],1)],1)},Kn=[],Xn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Row",[n("p",{staticClass:"title"},[e._v("Question "+e._s(e.index)+" of "+e._s(e.total))])])},Jn=[],Yn={name:"AssessmentsProgress",components:{Row:St["a"]},props:{index:{type:Number,required:!0},total:{type:Number,required:!0}}},Zn=Yn,es=(n("0530"),Object(w["a"])(Zn,Xn,Jn,!1,null,"8ec95972",null)),ts=es.exports,ns=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"quiz"},[n("ContentNode",{staticClass:"title",attrs:{content:e.title}}),e.content?n("ContentNode",{staticClass:"question-content",attrs:{content:e.content}}):e._e(),n("div",{staticClass:"choices"},e._l(e.choices,(function(t,s){return n("label",{key:s,class:e.choiceClasses[s]},[n(e.getIconComponent(s),{tag:"component",staticClass:"choice-icon"}),n("input",{directives:[{name:"model",rawName:"v-model",value:e.selectedIndex,expression:"selectedIndex"}],attrs:{type:"radio",name:"assessment"},domProps:{value:s,checked:e._q(e.selectedIndex,s)},on:{change:function(t){e.selectedIndex=s}}}),n("ContentNode",{staticClass:"question",attrs:{content:t.content}}),e.userChoices[s].checked?[n("ContentNode",{staticClass:"answer",attrs:{content:t.justification}}),t.reaction?n("p",{staticClass:"answer"},[e._v(e._s(t.reaction))]):e._e(),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"assertive"}},[e._v(" "+e._s(t.isCorrect?"Correct Answer":"Incorrect Answer")+" ")])]:e._e()],2)})),0),n("div",{staticClass:"controls"},[n("ButtonLink",{staticClass:"check",attrs:{disabled:null===e.selectedIndex||e.showNextQuestion},nativeOn:{click:function(t){return e.submit.apply(null,arguments)}}},[e._v(" Submit ")]),e.isLast?n("ButtonLink",{staticClass:"results",attrs:{disabled:!e.showNextQuestion},nativeOn:{click:function(t){return e.seeResults.apply(null,arguments)}}},[e._v(" Next ")]):n("ButtonLink",{staticClass:"next",attrs:{disabled:!e.showNextQuestion},nativeOn:{click:function(t){return e.advance.apply(null,arguments)}}},[e._v(" Next Question ")])],1)],1)},ss=[],is=n("76ab"),rs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"reset-circle-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M3.828 4.539l0.707-0.707 5.657 5.657-0.707 0.707-5.657-5.657z"}}),n("path",{attrs:{d:"M3.828 9.489l5.657-5.657 0.707 0.707-5.657 5.657-0.707-0.707z"}})])},os=[],as={name:"ResetCircleIcon",components:{SVGIcon:y["a"]}},ls=as,cs=Object(w["a"])(ls,rs,os,!1,null,null,null),us=cs.exports,ds=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"check-circle-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M9.626 3.719l0.866 0.5-3.5 6.062-3.464-2 0.5-0.866 2.6 1.5z"}})])},ps=[],hs={name:"CheckCircleIcon",components:{SVGIcon:y["a"]}},ms=hs,fs=Object(w["a"])(ms,ds,ps,!1,null,null,null),vs=fs.exports,gs={name:"Quiz",components:{CheckCircleIcon:vs,ResetCircleIcon:us,ContentNode:je["a"],ButtonLink:is["a"]},props:{content:{type:Array,required:!1},choices:{type:Array,required:!0},isLast:{type:Boolean,default:!1},title:{type:Array,required:!0}},data(){return{userChoices:this.choices.map(()=>({checked:!1})),selectedIndex:null}},computed:{correctChoices(){return this.choices.reduce((e,t,n)=>t.isCorrect?e.add(n):e,new Set)},choiceClasses(){return this.userChoices.map((e,t)=>({choice:!0,active:this.selectedIndex===t,disabled:e.checked||this.showNextQuestion,correct:e.checked&&this.choices[t].isCorrect,incorrect:e.checked&&!this.choices[t].isCorrect}))},showNextQuestion(){return Array.from(this.correctChoices).every(e=>this.userChoices[e].checked)}},methods:{getIconComponent(e){const t=this.userChoices[e];if(t&&t.checked)return this.choices[e].isCorrect?vs:us},submit(){this.$set(this.userChoices,this.selectedIndex,{checked:!0}),this.$emit("submit")},advance(){this.$emit("advance")},seeResults(){this.$emit("see-results")}}},ys=gs,bs=(n("26d3"),Object(w["a"])(ys,ns,ss,!1,null,"71da656d",null)),Cs=bs.exports;const ws=12;var _s={name:"Assessments",components:{LinkableSection:st,Quiz:Cs,Progress:ts,Row:St["a"],HeaderColumn:{render(e){return e(xt["a"],{props:{isCentered:{large:!0},span:{large:10}}},this.$slots.default)}},MainColumn:{render(e){return e(xt["a"],{props:{isCentered:{large:!0},span:{large:10,medium:10,small:12}}},this.$slots.default)}}},props:{assessments:{type:Array,required:!0},anchor:{type:String,required:!0}},inject:["navigationBarHeight"],data(){return{activeIndex:0,completed:!1}},computed:{activeAssessment(){return this.assessments[this.activeIndex]},isLast(){return this.activeIndex===this.assessments.length-1},progress(){return{index:this.activeIndex+1,total:this.assessments.length}},title(){return"Check Your Understanding"}},methods:{scrollTo(e,t=0){e.scrollIntoView(!0),window.scrollBy(0,-this.navigationBarHeight-t)},onSubmit(){this.$nextTick(()=>{this.scrollTo(this.$refs.progress.$el,ws)})},onAdvance(){this.activeIndex+=1,this.$nextTick(()=>{this.scrollTo(this.$refs.progress.$el,ws)})},onSeeResults(){this.completed=!0,this.$nextTick(()=>{this.scrollTo(this.$refs.assessments.$el,ws)})}}},ks=_s,Ss=(n("71b5"),Object(w["a"])(ks,Qn,Kn,!1,null,"6bd5c4e9",null)),xs=Ss.exports,Ts={name:"Assessments",components:{TutorialAssessments:xs},props:xs.props},As=Ts,$s=(n("f264"),Object(w["a"])(As,Un,Wn,!1,null,"3c94366b",null)),Is=$s.exports;const Os={articleBody:"articleBody",callToAction:"callToAction",hero:"hero",assessments:"assessments"};var Ps={name:"Article",components:{NavigationBar:_e,PortalTarget:h["PortalTarget"]},mixins:[ke["a"]],inject:{isTargetIDE:{default:!1},store:{default(){return{reset(){}}}}},props:{hierarchy:{type:Object,required:!0},metadata:{type:Object,required:!0},references:{type:Object,required:!0},sections:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(Os,e))}},computed:{heroSection(){return this.sections.find(this.isHero)},heroTitle(){return(this.heroSection||{}).title},pageTitle(){return this.heroTitle?`${this.heroTitle} — ${this.metadata.category} Tutorials`:void 0}},methods:{componentFor(e){const{kind:t}=e;return{[Os.articleBody]:gt,[Os.callToAction]:Et,[Os.hero]:Gn,[Os.assessments]:Is}[t]},isHero(e){return e.kind===Os.hero},propsFor(e){const{abstract:t,action:n,anchor:s,assessments:i,backgroundImage:r,chapter:o,content:a,estimatedTimeInMinutes:l,kind:c,media:u,projectFiles:d,title:p,video:h,xcodeRequirement:m}=e;return{[Os.articleBody]:{content:a},[Os.callToAction]:{abstract:t,action:n,media:u,title:p},[Os.hero]:{backgroundImage:r,chapter:o,content:a,estimatedTimeInMinutes:l,projectFiles:d,title:p,video:h,xcodeRequirement:m},[Os.assessments]:{anchor:s,assessments:i}}[c]}},provide(){return{references:this.references}},created(){this.store.reset()},SectionKind:Os},Ns=Ps,js=(n("ee73"),Object(w["a"])(Ns,d,p,!1,null,"5f5888a5",null)),Bs=js.exports,Ds=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"tutorial"},[e.isTargetIDE?e._e():n("NavigationBar",{attrs:{technology:e.metadata.category,chapters:e.hierarchy.modules,topic:e.tutorialTitle||"",rootReference:e.hierarchy.reference}}),n("main",{attrs:{id:"main",role:"main",tabindex:"0"}},[e._l(e.sections,(function(e,t){return n("Section",{key:t,attrs:{section:e}})})),n("BreakpointEmitter",{on:{change:e.handleBreakpointChange}})],2),n("PortalTarget",{attrs:{name:"modal-destination",multiple:""}})],1)},Ms=[],qs=n("66c9"),Es={computed:{isClientMobile(){let e=!1;return e="maxTouchPoints"in navigator||"msMaxTouchPoints"in navigator?Boolean(navigator.maxTouchPoints||navigator.msMaxTouchPoints):window.matchMedia?window.matchMedia("(pointer:coarse)").matches:"orientation"in window,e}}},Rs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"sections"},e._l(e.tasks,(function(t,s){return n("Section",e._b({key:s,attrs:{id:t.anchor,sectionNumber:s+1,isRuntimePreviewVisible:e.isRuntimePreviewVisible},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}},"Section",t,!1))})),1)},Vs=[],Ls=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"section",attrs:{anchor:e.anchor,title:e.introProps.title}},[n("Intro",e._b({},"Intro",e.introProps,!1)),e.stepsSection.length>0?n("Steps",{attrs:{content:e.stepsSection,isRuntimePreviewVisible:e.isRuntimePreviewVisible,sectionNumber:e.sectionNumber},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}}):e._e()],1)},Fs=[],zs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"intro-container"},[n("Row",{class:["intro","intro-"+e.sectionNumber,{ide:e.isTargetIDE}]},[n("Column",{staticClass:"left"},[n("Headline",{attrs:{level:2}},[n("router-link",{attrs:{slot:"eyebrow",to:e.sectionLink},slot:"eyebrow"},[e._v(" Section "+e._s(e.sectionNumber)+" ")]),e._v(" "+e._s(e.title)+" ")],1),n("ContentNode",{attrs:{content:e.content}})],1),n("Column",{staticClass:"right"},[n("div",{staticClass:"media"},[e.media?n("Asset",{attrs:{identifier:e.media,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,videoAutoplays:!e.isClientMobile}}):e._e()],1)])],1),e.expandedSections.length>0?n("ExpandedIntro",{staticClass:"expanded-intro",attrs:{content:e.expandedSections}}):e._e()],1)},Hs=[],Gs={name:"SectionIntro",inject:{isClientMobile:{default:()=>!1},isTargetIDE:{default:()=>!1}},components:{Asset:Oe["a"],ContentNode:je["a"],ExpandedIntro:ht,Headline:Yt,Row:St["a"],Column:{render(e){return e(xt["a"],{props:{span:{large:6,small:12}}},this.$slots.default)}}},props:{sectionAnchor:{type:String,required:!0},content:{type:Array,required:!0},media:{type:String,required:!0},title:{type:String,required:!0},sectionNumber:{type:Number,required:!0},expandedSections:{type:Array,default:()=>[]}},methods:{focus(){this.$emit("focus",this.media)}},computed:{sectionLink(){return{path:this.$route.path,hash:this.sectionAnchor,query:this.$route.query}}}},Us=Gs,Ws=(n("4896"),Object(w["a"])(Us,zs,Hs,!1,null,"54daa228",null)),Qs=Ws.exports,Ks=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"steps"},[n("div",{staticClass:"content-container"},e._l(e.contentNodes,(function(t,s){return n(t.component,e._b({key:s,ref:"contentNodes",refInFor:!0,tag:"component",class:e.contentClass(s),attrs:{currentIndex:e.activeStep}},"component",t.props,!1))})),1),e.isBreakpointSmall?e._e():n("BackgroundTheme",{staticClass:"asset-container",class:e.assetContainerClasses},[n("transition",{attrs:{name:"fade"}},[e.visibleAsset.media?n("div",{key:e.visibleAsset.media,class:["asset-wrapper",{ide:e.isTargetIDE}]},[n("Asset",{ref:"asset",staticClass:"step-asset",attrs:{identifier:e.visibleAsset.media,showsReplayButton:"",showsVideoControls:!1}})],1):e._e(),e.visibleAsset.code?n("CodePreview",{attrs:{code:e.visibleAsset.code,preview:e.visibleAsset.runtimePreview,isRuntimePreviewVisible:e.isRuntimePreviewVisible},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}},[e.visibleAsset.runtimePreview?n("transition",{attrs:{name:"fade"}},[n("Asset",{key:e.visibleAsset.runtimePreview,attrs:{identifier:e.visibleAsset.runtimePreview}})],1):e._e()],1):e._e()],1)],1)],1)},Xs=[],Js=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["code-preview",{ide:e.isTargetIDE}]},[n("CodeTheme",[e.code?n("CodeListing",e._b({attrs:{showLineNumbers:""}},"CodeListing",e.codeProps,!1)):e._e()],1),n("div",{staticClass:"runtime-preview",class:e.runtimePreviewClasses,style:e.previewStyles},[n("button",{staticClass:"header",attrs:{disabled:!e.hasRuntimePreview,title:e.runtimePreviewTitle},on:{click:e.togglePreview}},[n("span",{staticClass:"runtime-preview-label",attrs:{"aria-label":e.textAriaLabel}},[e._v(e._s(e.togglePreviewText))]),n("DiagonalArrowIcon",{staticClass:"icon-inline preview-icon",class:[e.shouldDisplayHideLabel?"preview-hide":"preview-show"]})],1),n("transition",{on:{leave:e.handleLeave}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.shouldDisplayHideLabel,expression:"shouldDisplayHideLabel"}],staticClass:"runtime-preview-asset"},[e._t("default")],2)])],1)],1)},Ys=[],Zs=n("7b69"),ei=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"diagonal-arrow",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M0.010 12.881l10.429-10.477-3.764 0.824-0.339-1.549 7.653-1.679-1.717 7.622-1.546-0.349 0.847-3.759-10.442 10.487z"}})])},ti=[],ni={name:"DiagonalArrowIcon",components:{SVGIcon:y["a"]}},si=ni,ii=Object(w["a"])(si,ei,ti,!1,null,null,null),ri=ii.exports,oi=n("8590");const{BreakpointName:ai}=o["a"].constants;function li({width:e,height:t},n=1){const s=400,i=e<=s?1.75:3;return{width:e/(i/n),height:t/(i/n)}}var ci={name:"CodePreview",inject:["references","isTargetIDE","store"],components:{DiagonalArrowIcon:ri,CodeListing:Zs["a"],CodeTheme:oi["a"]},props:{code:{type:String,required:!0},preview:{type:String,required:!1},isRuntimePreviewVisible:{type:Boolean,required:!0}},data(){return{tutorialState:this.store.state}},computed:{currentBreakpoint(){return this.tutorialState.breakpoint},hasRuntimePreview(){return!!this.preview},previewAssetSize(){const e=this.hasRuntimePreview?this.references[this.preview]:{},t=(e.variants||[{}])[0]||{},n={width:900};let s=t.size||{};s.width||s.height||(s=n);const i=this.currentBreakpoint===ai.medium?.8:1;return li(s,i)},previewSize(){const e={width:102,height:32};return this.shouldDisplayHideLabel&&this.previewAssetSize?{width:this.previewAssetSize.width,height:this.previewAssetSize.height+e.height}:e},previewStyles(){const{width:e,height:t}=this.previewSize;return{width:e+"px",height:t+"px"}},codeProps(){return this.references[this.code]},runtimePreviewClasses(){return{collapsed:!this.shouldDisplayHideLabel,disabled:!this.hasRuntimePreview,"runtime-preview-ide":this.isTargetIDE}},shouldDisplayHideLabel(){return this.hasRuntimePreview&&this.isRuntimePreviewVisible},runtimePreviewTitle(){return this.hasRuntimePreview?null:"No preview available for this step."},togglePreviewText(){return this.hasRuntimePreview?"Preview":"No Preview"},textAriaLabel:({shouldDisplayHideLabel:e,togglePreviewText:t})=>`${t}, ${e?"Hide":"Show"}`},methods:{handleLeave(e,t){setTimeout(t,200)},togglePreview(){this.hasRuntimePreview&&this.$emit("runtime-preview-toggle",!this.isRuntimePreviewVisible)}}},ui=ci,di=(n("7bc6"),Object(w["a"])(ui,Js,Ys,!1,null,"1890a2ba",null)),pi=di.exports,hi=n("3908"),mi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{style:e.backgroundStyle},[e._t("default")],2)},fi=[],vi={name:"BackgroundTheme",data(){return{codeThemeState:qs["a"].state}},computed:{backgroundStyle(){const{codeColors:e}=this.codeThemeState;return e?{"--background":e.background}:null}}},gi=vi,yi=Object(w["a"])(gi,mi,fi,!1,null,null,null),bi=yi.exports,Ci=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["step-container","step-"+e.stepNumber]},[n("div",{ref:"step",staticClass:"step",class:{focused:e.isActive},attrs:{"data-index":e.index}},[n("p",{staticClass:"step-label"},[e._v("Step "+e._s(e.stepNumber))]),n("ContentNode",{attrs:{content:e.content}}),e.caption&&e.caption.length>0?n("ContentNode",{staticClass:"caption",attrs:{content:e.caption}}):e._e()],1),e.isBreakpointSmall||!e.isTargetIDE?n("div",{staticClass:"media-container"},[e.media?n("Asset",{attrs:{identifier:e.media,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,videoAutoplays:!e.isClientMobile}}):e._e(),e.code?n("MobileCodePreview",{attrs:{code:e.code}},[e.runtimePreview?n("Asset",{staticClass:"preview",attrs:{identifier:e.runtimePreview}}):e._e()],1):e._e()],1):e._e()])},wi=[],_i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BackgroundTheme",{staticClass:"mobile-code-preview"},[e.code?n("GenericModal",{staticClass:"full-code-listing-modal",attrs:{theme:e.isTargetIDE?"code":"light",codeBackgroundColorOverride:e.modalBackgroundColor,isFullscreen:"",visible:e.fullCodeIsVisible},on:{"update:visible":function(t){e.fullCodeIsVisible=t}}},[n("div",{staticClass:"full-code-listing-modal-content"},[n("CodeTheme",[n("CodeListing",e._b({staticClass:"full-code-listing",attrs:{showLineNumbers:""}},"CodeListing",e.codeProps,!1))],1)],1)]):e._e(),n("CodeTheme",[e.code?n("MobileCodeListing",e._b({attrs:{showLineNumbers:""},on:{"file-name-click":e.toggleFullCode}},"MobileCodeListing",e.codeProps,!1)):e._e()],1),n("CodeTheme",{staticClass:"preview-toggle-container"},[n("PreviewToggle",{attrs:{isActionable:!!e.$slots.default},on:{click:e.togglePreview}})],1),e.$slots.default?n("GenericModal",{staticClass:"runtime-preview-modal",attrs:{theme:e.isTargetIDE?"dynamic":"light",isFullscreen:"",visible:e.previewIsVisible},on:{"update:visible":function(t){e.previewIsVisible=t}}},[n("div",{staticClass:"runtime-preview-modal-content"},[n("span",{staticClass:"runtime-preview-label"},[e._v("Preview")]),e._t("default")],2)]):e._e()],1)},ki=[],Si=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"code-listing-preview",attrs:{"data-syntax":e.syntax}},[n("CodeListing",{attrs:{fileName:e.fileName,syntax:e.syntax,fileType:e.fileType,content:e.previewedLines,startLineNumber:e.displayedRange.start,highlights:e.highlights,showLineNumbers:"",isFileNameActionable:""},on:{"file-name-click":function(t){return e.$emit("file-name-click")}}})],1)},xi=[],Ti={name:"MobileCodeListing",components:{CodeListing:Zs["a"]},props:{fileName:String,syntax:String,fileType:String,content:{type:Array,required:!0},highlights:{type:Array,default:()=>[]}},computed:{highlightedLineNumbers(){return new Set(this.highlights.map(({line:e})=>e))},firstHighlightRange(){if(0===this.highlightedLineNumbers.size)return{start:1,end:this.content.length};const e=Math.min(...this.highlightedLineNumbers.values());let t=e;while(this.highlightedLineNumbers.has(t+1))t+=1;return{start:e,end:t}},displayedRange(){const e=this.firstHighlightRange,t=e.start-2<1?1:e.start-2,n=e.end+3>=this.content.length+1?this.content.length+1:e.end+3;return{start:t,end:n}},previewedLines(){return this.content.slice(this.displayedRange.start-1,this.displayedRange.end-1)}}},Ai=Ti,$i=(n("fae5"),Object(w["a"])(Ai,Si,xi,!1,null,"5ad4e037",null)),Ii=$i.exports,Oi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"toggle-preview"},[e.isActionable?n("a",{staticClass:"toggle-text",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[e._v(" Preview "),n("InlinePlusCircleIcon",{staticClass:"toggle-icon icon-inline"})],1):n("span",{staticClass:"toggle-text"},[e._v(" No preview ")])])},Pi=[],Ni=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-plus-circle-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M4 6.52h6v1h-6v-1z"}}),n("path",{attrs:{d:"M6.5 4.010h1v6h-1v-6z"}})])},ji=[],Bi={name:"InlinePlusCircleIcon",components:{SVGIcon:y["a"]}},Di=Bi,Mi=Object(w["a"])(Di,Ni,ji,!1,null,null,null),qi=Mi.exports,Ei={name:"MobileCodePreviewToggle",components:{InlinePlusCircleIcon:qi},props:{isActionable:{type:Boolean,required:!0}}},Ri=Ei,Vi=(n("e97b"),Object(w["a"])(Ri,Oi,Pi,!1,null,"d0709828",null)),Li=Vi.exports,Fi={name:"MobileCodePreview",inject:["references","isTargetIDE","store"],components:{GenericModal:fn,CodeListing:Zs["a"],MobileCodeListing:Ii,PreviewToggle:Li,CodeTheme:oi["a"],BackgroundTheme:bi},props:{code:{type:String,required:!0}},computed:{codeProps(){return this.references[this.code]},modalBackgroundColor(){const{codeColors:e}=this.store.state;return e?e.background:null}},data(){return{previewIsVisible:!1,fullCodeIsVisible:!1}},methods:{togglePreview(){this.previewIsVisible=!this.previewIsVisible},toggleFullCode(){this.fullCodeIsVisible=!this.fullCodeIsVisible}}},zi=Fi,Hi=(n("3012"),Object(w["a"])(zi,_i,ki,!1,null,"b130569c",null)),Gi=Hi.exports;const{BreakpointName:Ui}=o["a"].constants;var Wi={name:"Step",components:{Asset:Oe["a"],MobileCodePreview:Gi,ContentNode:je["a"]},inject:["isTargetIDE","isClientMobile","store"],props:{code:{type:String,required:!1},content:{type:Array,required:!0},caption:{type:Array,required:!1},media:{type:String,required:!1},runtimePreview:{type:String,required:!1},sectionNumber:{type:Number,required:!0},stepNumber:{type:Number,required:!0},numberOfSteps:{type:Number,required:!0},index:{type:Number,required:!0},currentIndex:{type:Number,required:!0}},data(){return{tutorialState:this.store.state}},computed:{isBreakpointSmall(){return this.tutorialState.breakpoint===Ui.small},isActive:({index:e,currentIndex:t})=>e===t}},Qi=Wi,Ki=(n("bc03"),Object(w["a"])(Qi,Ci,wi,!1,null,"4abdd121",null)),Xi=Ki.exports;const{BreakpointName:Ji}=o["a"].constants,{IntersectionDirections:Yi}=Ze["a"].constants,Zi="-35% 0% -65% 0%";var er={name:"SectionSteps",components:{ContentNode:je["a"],Step:Xi,Asset:Oe["a"],CodePreview:pi,BackgroundTheme:bi},mixins:[Ze["a"]],constants:{IntersectionMargins:Zi},inject:["isTargetIDE","store"],data(){const e=this.content.findIndex(this.isStepNode),{code:t,media:n,runtimePreview:s}=this.content[e]||{};return{tutorialState:this.store.state,visibleAsset:{media:n,code:t,runtimePreview:s},activeStep:e}},computed:{assetContainerClasses(){return{"for-step-code":!!this.visibleAsset.code,ide:this.isTargetIDE}},numberOfSteps(){return this.content.filter(this.isStepNode).length},contentNodes(){return this.content.reduce(({stepCounter:e,nodes:t},n,s)=>{const{type:i,...r}=n,o=this.isStepNode(n),a=o?e+1:e;return o?{stepCounter:e+1,nodes:t.concat({component:Xi,type:i,props:{...r,stepNumber:a,index:s,numberOfSteps:this.numberOfSteps,sectionNumber:this.sectionNumber}})}:{stepCounter:e,nodes:t.concat({component:je["a"],type:i,props:{content:[n]}})}},{stepCounter:0,nodes:[]}).nodes},isBreakpointSmall(){return this.tutorialState.breakpoint===Ji.small},stepNodes:({contentNodes:e,isStepNode:t})=>e.filter(t),intersectionRootMargin:()=>Zi},async mounted(){await Object(hi["a"])(8),this.findClosestStepNode()},methods:{isStepNode({type:e}){return"step"===e},contentClass(e){return{["interstitial interstitial-"+(e+1)]:!this.isStepNode(this.content[e])}},onReverseIntoLastStep(){const{asset:e}=this.$refs;if(e){const t=e.$el.querySelector("video");t&&(t.currentTime=0,t.play().catch(()=>{}))}},onFocus(e){const{code:t,media:n,runtimePreview:s}=this.content[e];this.activeStep=e,this.visibleAsset={code:t,media:n,runtimePreview:s}},onRuntimePreviewToggle(e){this.$emit("runtime-preview-toggle",e)},findClosestStepNode(){const e=.333*window.innerHeight;let t=null,n=0;this.stepNodes.forEach(s=>{const{index:i}=s.props,r=this.$refs.contentNodes[i].$refs.step;if(!r)return;const{top:o,bottom:a}=r.getBoundingClientRect(),l=o-e,c=a-e,u=Math.abs(l+c);(0===n||u<=n)&&(n=u,t=i)}),null!==t&&this.onFocus(t)},getIntersectionTargets(){const{stepNodes:e,$refs:t}=this;return e.map(({props:{index:e}})=>t.contentNodes[e].$refs.step)},onIntersect(e){const{target:t,isIntersecting:n}=e;if(!n)return;const s=parseFloat(t.getAttribute("data-index"));this.intersectionScrollDirection===Yi.down&&s===this.stepNodes[this.stepNodes.length-1].props.index&&this.onReverseIntoLastStep(),this.onFocus(s)}},props:{content:{type:Array,required:!0},isRuntimePreviewVisible:{type:Boolean,require:!0},sectionNumber:{type:Number,required:!0}}},tr=er,nr=(n("00f4"),Object(w["a"])(tr,Ks,Xs,!1,null,"25d30c2c",null)),sr=nr.exports,ir={name:"Section",components:{Intro:Qs,LinkableSection:st,Steps:sr},computed:{introProps(){const[{content:e,media:t},...n]=this.contentSection;return{content:e,expandedSections:n,media:t,sectionAnchor:this.anchor,sectionNumber:this.sectionNumber,title:this.title}}},props:{anchor:{type:String,required:!0},title:{type:String,required:!0},contentSection:{type:Array,required:!0},stepsSection:{type:Array,required:!0},sectionNumber:{type:Number,required:!0},isRuntimePreviewVisible:{type:Boolean,required:!0}},methods:{onRuntimePreviewToggle(e){this.$emit("runtime-preview-toggle",e)}}},rr=ir,or=(n("9dc4"),Object(w["a"])(rr,Ls,Fs,!1,null,"6b3a0b3a",null)),ar=or.exports,lr={name:"SectionList",components:{Section:ar},data(){return{isRuntimePreviewVisible:!0}},props:{tasks:{type:Array,required:!0}},methods:{onRuntimePreviewToggle(e){this.isRuntimePreviewVisible=e}}},cr=lr,ur=(n("4d07"),Object(w["a"])(cr,Rs,Vs,!1,null,"79a75e9e",null)),dr=ur.exports;const pr={assessments:xs,hero:Ln,tasks:dr,callToAction:Bt},hr=new Set(Object.keys(pr)),mr={name:"TutorialSection",render:function(e){const{kind:t,...n}=this.section,s=pr[t];return s?e(s,{props:n}):null},props:{section:{type:Object,required:!0,validator:e=>hr.has(e.kind)}}};var fr={name:"Tutorial",mixins:[ke["a"],Es],components:{NavigationBar:_e,Section:mr,PortalTarget:h["PortalTarget"],BreakpointEmitter:o["a"]},inject:["isTargetIDE","store"],computed:{heroSection(){return this.sections.find(({kind:e})=>"hero"===e)},tutorialTitle(){return(this.heroSection||{}).title},pageTitle(){return this.tutorialTitle?`${this.tutorialTitle} — ${this.metadata.category} Tutorials`:void 0}},props:{sections:{type:Array,required:!0},references:{type:Object,required:!0},hierarchy:{type:Object,required:!0},metadata:{type:Object,required:!0}},methods:{handleBreakpointChange(e){this.store.updateBreakpoint(e)},handleCodeColorsChange(e){qs["a"].updateCodeColors(e)}},created(){this.store.reset()},mounted(){this.$bridge.on("codeColors",this.handleCodeColorsChange),this.$bridge.send({type:"requestCodeColors"})},provide(){return{references:this.references,isClientMobile:this.isClientMobile}},beforeDestroy(){this.$bridge.off("codeColors",this.handleCodeColorsChange)}},vr=fr,gr=(n("3d7d"),Object(w["a"])(vr,Ds,Ms,!1,null,"6e17d3d0",null)),yr=gr.exports,br=n("bb52"),Cr=n("146e");const wr={article:"article",tutorial:"project"};var _r={name:"Topic",inject:{isTargetIDE:{default:!1}},mixins:[br["a"],Cr["a"]],data(){return{topicData:null}},computed:{navigationBarHeight(){return this.isTargetIDE?0:52},store(){return u},hierarchy(){const{hierarchy:e={}}=this.topicData,{technologyNavigation:t=["overview","tutorials","resources"]}=e||{};return{...e,technologyNavigation:t}},topicKey:({$route:e,topicData:t})=>[e.path,t.identifier.interfaceLanguage].join()},beforeRouteEnter(e,t,n){Object(r["b"])(e,t,n).then(e=>n(t=>{t.topicData=e})).catch(n)},beforeRouteUpdate(e,t,n){Object(r["c"])(e,t)?Object(r["b"])(e,t,n).then(e=>{this.topicData=e,n()}).catch(n):n()},created(){this.store.reset()},mounted(){this.$bridge.on("contentUpdate",e=>{this.topicData=e})},methods:{componentFor(e){const{kind:t}=e;return{[wr.article]:Bs,[wr.tutorial]:yr}[t]},propsFor(e){const{hierarchy:t,kind:n,metadata:s,references:i,sections:r}=e;return{[wr.article]:{hierarchy:t,metadata:s,references:i,sections:r},[wr.tutorial]:{hierarchy:t,metadata:s,references:i,sections:r}}[n]}},provide(){return{navigationBarHeight:this.navigationBarHeight,store:this.store}},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},kr=_r,Sr=Object(w["a"])(kr,s,i,!1,null,null,null);t["default"]=Sr.exports},"323a":function(e,t,n){"use strict";n("0b61")},"32b1":function(e,t,n){},"385e":function(e,t,n){},"39d2":function(e,t,n){},"3c4b":function(e,t,n){"use strict";n("1aae")},"3d7d":function(e,t,n){"use strict";n("311b")},"3e1b":function(e,t,n){"use strict";n("c5c1")},"3f84":function(e,t,n){"use strict";n("bc48")},4237:function(e,t,n){},4896:function(e,t,n){"use strict";n("fa9c")},"4b4a":function(e,t,n){},"4d07":function(e,t,n){"use strict";n("b52e")},"4eea":function(e,t,n){},5237:function(e,t,n){"use strict";n("4b4a")},"525c":function(e,t,n){},5356:function(e,t,n){"use strict";n("7e3c")},5952:function(e,t,n){"use strict";n("14b7")},"5da4":function(e,t,n){},"63a8":function(e,t,n){},"64fc":function(e,t,n){},"653a":function(e,t,n){"use strict";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("router-link",{staticClass:"nav-title-content",attrs:{to:e.to}},[n("span",{staticClass:"title"},[e._t("default")],2),n("span",{staticClass:"subhead"},[e._v(" "),e._t("subhead")],2)])},i=[],r={name:"NavTitleContainer",props:{to:{type:[String,Object],required:!0}}},o=r,a=(n("a497"),n("2877")),l=Object(a["a"])(o,s,i,!1,null,"60ea3af8",null);t["a"]=l.exports},"66c9":function(e,t,n){"use strict";t["a"]={state:{codeColors:null},reset(){this.state.codeColors=null},updateCodeColors(e){const t=e=>e?`rgba(${e.red}, ${e.green}, ${e.blue}, ${e.alpha})`:null;this.state.codeColors=Object.entries(e).reduce((e,[n,s])=>({...e,[n]:t(s)}),{})}}},"6cd7":function(e,t,n){"use strict";n("a59d")},7096:function(e,t,n){},"71b5":function(e,t,n){"use strict";n("7ca3")},7839:function(e,t,n){"use strict";n("385e")},"78b2":function(e,t,n){},"7b17":function(e,t,n){},"7bc6":function(e,t,n){"use strict";n("b5e5")},"7ca3":function(e,t,n){},"7e3c":function(e,t,n){},"80e4":function(e,t,n){"use strict";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"asset"},[n(e.assetComponent,e._g(e._b({tag:"component"},"component",e.assetProps,!1),e.assetListeners))],1)},i=[],r=n("8bd9"),o=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("video",{attrs:{controls:e.showsControls,autoplay:e.autoplays,poster:e.normalizeAssetUrl(e.defaultPosterAttributes.url),muted:"",playsinline:""},domProps:{muted:!0},on:{playing:function(t){return e.$emit("playing")},ended:function(t){return e.$emit("ended")}}},[n("source",{attrs:{src:e.normalizeAssetUrl(e.videoAttributes.url)}})])},a=[],l=n("748c"),c=n("e425"),u=n("821b"),d={name:"VideoAsset",props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0},posterVariants:{type:Array,required:!1,default:()=>[]}},data:()=>({appState:c["a"].state}),computed:{preferredColorScheme:({appState:e})=>e.preferredColorScheme,systemColorScheme:({appState:e})=>e.systemColorScheme,userPrefersDark:({preferredColorScheme:e,systemColorScheme:t})=>e===u["a"].dark.value||e===u["a"].auto.value&&t===u["a"].dark.value,shouldShowDarkVariant:({darkVideoVariantAttributes:e,userPrefersDark:t})=>e&&t,defaultVideoAttributes(){return this.videoVariantsGroupedByAppearance.light[0]||this.darkVideoVariantAttributes||{}},darkVideoVariantAttributes(){return this.videoVariantsGroupedByAppearance.dark[0]},videoVariantsGroupedByAppearance(){return Object(l["d"])(this.variants)},posterVariantsGroupedByAppearance(){return Object(l["d"])(this.posterVariants)},defaultPosterAttributes:({posterVariantsGroupedByAppearance:e,userPrefersDark:t})=>t&&e.dark.length?e.dark[0]:e.light[0]||{},videoAttributes:({darkVideoVariantAttributes:e,defaultVideoAttributes:t,shouldShowDarkVariant:n})=>n?e:t},methods:{normalizeAssetUrl:l["b"]}},p=d,h=n("2877"),m=Object(h["a"])(p,o,a,!1,null,null,null),f=m.exports,v=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"video-replay-container"},[n("VideoAsset",{ref:"asset",attrs:{variants:e.variants,showsControls:e.showsControls,autoplays:e.autoplays},on:{ended:e.onVideoEnd}}),n("a",{staticClass:"replay-button",class:{visible:this.showsReplayButton},attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.replay.apply(null,arguments)}}},[e._v(" Replay "),n("InlineReplayIcon",{staticClass:"replay-icon icon-inline"})],1)],1)},g=[],y=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-replay-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M2.254 10.201c-1.633-2.613-0.838-6.056 1.775-7.689 2.551-1.594 5.892-0.875 7.569 1.592l0.12 0.184-0.848 0.53c-1.34-2.145-4.166-2.797-6.311-1.457s-2.797 4.166-1.457 6.311 4.166 2.797 6.311 1.457c1.006-0.629 1.71-1.603 2.003-2.723l0.056-0.242 0.98 0.201c-0.305 1.487-1.197 2.792-2.51 3.612-2.613 1.633-6.056 0.838-7.689-1.775z"}}),n("path",{attrs:{d:"M10.76 1.355l0.984-0.18 0.851 4.651-4.56-1.196 0.254-0.967 3.040 0.796z"}})])},b=[],C=n("be08"),w={name:"InlineReplayIcon",components:{SVGIcon:C["a"]}},_=w,k=Object(h["a"])(_,y,b,!1,null,null,null),S=k.exports,x={name:"ReplayableVideoAsset",components:{InlineReplayIcon:S,VideoAsset:f},props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0}},data(){return{showsReplayButton:!1}},methods:{async replay(){const e=this.$refs.asset.$el;e&&(this.showsReplayButton=!1,e.currentTime=0,await e.play())},onVideoEnd(){this.showsReplayButton=!0}}},T=x,A=(n("3f84"),Object(h["a"])(T,v,g,!1,null,"7335dbb2",null)),$=A.exports;const I={video:"video",image:"image"};var O={name:"Asset",components:{ImageAsset:r["a"],VideoAsset:f},constants:{AssetTypes:I},inject:["references"],props:{identifier:{type:String,required:!0},showsReplayButton:{type:Boolean,default:()=>!1},showsVideoControls:{type:Boolean,default:()=>!0},videoAutoplays:{type:Boolean,default:()=>!0}},computed:{rawAsset(){return this.references[this.identifier]||{}},isRawAssetVideo:({rawAsset:e})=>e.type===I.video,videoPoster(){return this.isRawAssetVideo&&this.references[this.rawAsset.poster]},asset(){return this.isRawAssetVideo&&this.prefersReducedMotion&&this.videoPoster||this.rawAsset},assetComponent(){switch(this.asset.type){case I.image:return r["a"];case I.video:return this.showsReplayButton?$:f;default:return}},prefersReducedMotion(){return window.matchMedia("(prefers-reduced-motion)").matches},assetProps(){return{[I.image]:this.imageProps,[I.video]:this.videoProps}[this.asset.type]},imageProps(){return{alt:this.asset.alt,variants:this.asset.variants}},videoProps(){return{variants:this.asset.variants,showsControls:this.showsVideoControls,autoplays:!this.prefersReducedMotion&&this.videoAutoplays,posterVariants:this.videoPoster?this.videoPoster.variants:[]}},assetListeners(){return{[I.image]:null,[I.video]:{ended:()=>this.$emit("videoEnded")}}[this.asset.type]}}},P=O,N=(n("7839"),Object(h["a"])(P,s,i,!1,null,"1b5cc854",null));t["a"]=N.exports},"80f7":function(e,t,n){"use strict";n("4eea")},"811c":function(e,t,n){"use strict";n("4237")},8590:function(e,t,n){"use strict";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{style:e.codeStyle},[e._t("default")],2)},i=[],r=n("66c9");const o=0,a=255;function l(e){const t=e.match(/rgba\((\d+),\s*(\d+),\s*(\d+),\s*(\d+\.?\d*|\.\d+)\s*\)/);if(!t)throw new Error("invalid rgba() input");const n=10;return{r:parseInt(t[1],n),g:parseInt(t[2],n),b:parseInt(t[3],n),a:parseFloat(t[4])}}function c(e){const{r:t,g:n,b:s}=l(e);return.2126*t+.7152*n+.0722*s}function u(e,t){const n=Math.round(a*t),s=l(e),{a:i}=s,[r,c,u]=[s.r,s.g,s.b].map(e=>Math.max(o,Math.min(a,e+n)));return`rgba(${r}, ${c}, ${u}, ${i})`}function d(e,t){return u(e,t)}function p(e,t){return u(e,-1*t)}var h={name:"CodeTheme",data(){return{codeThemeState:r["a"].state}},computed:{codeStyle(){const{codeColors:e}=this.codeThemeState;return e?{"--text":e.text,"--background":e.background,"--line-highlight":e.lineHighlight,"--url":e.commentURL,"--syntax-comment":e.comment,"--syntax-quote":e.comment,"--syntax-keyword":e.keyword,"--syntax-literal":e.keyword,"--syntax-selector-tag":e.keyword,"--syntax-string":e.stringLiteral,"--syntax-bullet":e.stringLiteral,"--syntax-meta":e.keyword,"--syntax-number":e.stringLiteral,"--syntax-symbol":e.stringLiteral,"--syntax-tag":e.stringLiteral,"--syntax-attr":e.typeAnnotation,"--syntax-built_in":e.typeAnnotation,"--syntax-builtin-name":e.typeAnnotation,"--syntax-class":e.typeAnnotation,"--syntax-params":e.typeAnnotation,"--syntax-section":e.typeAnnotation,"--syntax-title":e.typeAnnotation,"--syntax-type":e.typeAnnotation,"--syntax-attribute":e.keyword,"--syntax-identifier":e.text,"--syntax-subst":e.text,"--color-syntax-param-internal-name":this.internalParamNameColor}:null},internalParamNameColor(){const{background:e,text:t}=this.codeThemeState.codeColors;try{const n=c(e),s=n!0},autoplays:{type:Boolean,default:()=>!0},posterVariants:{type:Array,required:!1,default:()=>[]}},data:()=>({appState:l["a"].state}),computed:{preferredColorScheme:({appState:t})=>t.preferredColorScheme,systemColorScheme:({appState:t})=>t.systemColorScheme,userPrefersDark:({preferredColorScheme:t,systemColorScheme:e})=>t===u["a"].dark.value||t===u["a"].auto.value&&e===u["a"].dark.value,shouldShowDarkVariant:({darkVideoVariantAttributes:t,userPrefersDark:e})=>t&&e,defaultVideoAttributes(){return this.videoVariantsGroupedByAppearance.light[0]||this.darkVideoVariantAttributes||{}},darkVideoVariantAttributes(){return this.videoVariantsGroupedByAppearance.dark[0]},videoVariantsGroupedByAppearance(){return Object(c["d"])(this.variants)},posterVariantsGroupedByAppearance(){return Object(c["d"])(this.posterVariants)},defaultPosterAttributes:({posterVariantsGroupedByAppearance:t,userPrefersDark:e})=>e&&t.dark.length?t.dark[0]:t.light[0]||{},videoAttributes:({darkVideoVariantAttributes:t,defaultVideoAttributes:e,shouldShowDarkVariant:n})=>n?t:e},methods:{normalizeAssetUrl:c["b"]}},p=d,m=n("2877"),h=Object(m["a"])(p,o,r,!1,null,null,null),v=h.exports,f=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"video-replay-container"},[n("VideoAsset",{ref:"asset",attrs:{variants:t.variants,showsControls:t.showsControls,autoplays:t.autoplays},on:{ended:t.onVideoEnd}}),n("a",{staticClass:"replay-button",class:{visible:this.showsReplayButton},attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.replay.apply(null,arguments)}}},[t._v(" Replay "),n("InlineReplayIcon",{staticClass:"replay-icon icon-inline"})],1)],1)},y=[],b=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"inline-replay-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M2.254 10.201c-1.633-2.613-0.838-6.056 1.775-7.689 2.551-1.594 5.892-0.875 7.569 1.592l0.12 0.184-0.848 0.53c-1.34-2.145-4.166-2.797-6.311-1.457s-2.797 4.166-1.457 6.311 4.166 2.797 6.311 1.457c1.006-0.629 1.71-1.603 2.003-2.723l0.056-0.242 0.98 0.201c-0.305 1.487-1.197 2.792-2.51 3.612-2.613 1.633-6.056 0.838-7.689-1.775z"}}),n("path",{attrs:{d:"M10.76 1.355l0.984-0.18 0.851 4.651-4.56-1.196 0.254-0.967 3.040 0.796z"}})])},C=[],_=n("be08"),g={name:"InlineReplayIcon",components:{SVGIcon:_["a"]}},V=g,S=Object(m["a"])(V,b,C,!1,null,null,null),A=S.exports,T={name:"ReplayableVideoAsset",components:{InlineReplayIcon:A,VideoAsset:v},props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0}},data(){return{showsReplayButton:!1}},methods:{async replay(){const t=this.$refs.asset.$el;t&&(this.showsReplayButton=!1,t.currentTime=0,await t.play())},onVideoEnd(){this.showsReplayButton=!0}}},w=T,k=(n("3f84"),Object(m["a"])(w,f,y,!1,null,"7335dbb2",null)),I=k.exports;const x={video:"video",image:"image"};var O={name:"Asset",components:{ImageAsset:i["a"],VideoAsset:v},constants:{AssetTypes:x},inject:["references"],props:{identifier:{type:String,required:!0},showsReplayButton:{type:Boolean,default:()=>!1},showsVideoControls:{type:Boolean,default:()=>!0},videoAutoplays:{type:Boolean,default:()=>!0}},computed:{rawAsset(){return this.references[this.identifier]||{}},isRawAssetVideo:({rawAsset:t})=>t.type===x.video,videoPoster(){return this.isRawAssetVideo&&this.references[this.rawAsset.poster]},asset(){return this.isRawAssetVideo&&this.prefersReducedMotion&&this.videoPoster||this.rawAsset},assetComponent(){switch(this.asset.type){case x.image:return i["a"];case x.video:return this.showsReplayButton?I:v;default:return}},prefersReducedMotion(){return window.matchMedia("(prefers-reduced-motion)").matches},assetProps(){return{[x.image]:this.imageProps,[x.video]:this.videoProps}[this.asset.type]},imageProps(){return{alt:this.asset.alt,variants:this.asset.variants}},videoProps(){return{variants:this.asset.variants,showsControls:this.showsVideoControls,autoplays:!this.prefersReducedMotion&&this.videoAutoplays,posterVariants:this.videoPoster?this.videoPoster.variants:[]}},assetListeners(){return{[x.image]:null,[x.video]:{ended:()=>this.$emit("videoEnded")}}[this.asset.type]}}},j=O,N=(n("7839"),Object(m["a"])(j,s,a,!1,null,"1b5cc854",null));e["a"]=N.exports},"82d9":function(t,e,n){},"85fb":function(t,e,n){},"8d2d":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"tutorial-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M0.933 6.067h3.733v1.867h-3.733v-1.867z"}}),n("path",{attrs:{d:"M0.933 1.867h3.733v1.867h-3.733v-1.867z"}}),n("path",{attrs:{d:"M13.067 1.867v10.267h-7.467v-10.267zM12.133 2.8h-5.6v8.4h5.6z"}}),n("path",{attrs:{d:"M0.933 10.267h3.733v1.867h-3.733v-1.867z"}})])},a=[],i=n("be08"),o={name:"TutorialIcon",components:{SVGIcon:i["a"]}},r=o,c=n("2877"),l=Object(c["a"])(r,s,a,!1,null,null,null);e["a"]=l.exports},"8f86":function(t,e,n){},"9b79":function(t,e,n){},"9f56":function(t,e,n){},a497:function(t,e,n){"use strict";n("da75")},a8f9:function(t,e,n){"use strict";n("d4d0")},a9f1:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"article-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z"}}),n("path",{attrs:{d:"M7 1h1v4h-1z"}}),n("path",{attrs:{d:"M7 5h5v1h-5z"}})])},a=[],i=n("be08"),o={name:"ArticleIcon",components:{SVGIcon:i["a"]}},r=o,c=n("2877"),l=Object(c["a"])(r,s,a,!1,null,null,null);e["a"]=l.exports},b185:function(t,e,n){},b9c2:function(t,e,n){},bc48:function(t,e,n){},be3b:function(t,e,n){"use strict";n("fb27")},c4dd:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"play-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M10.195 7.010l-5 3v-6l5 3z"}})])},a=[],i=n("be08"),o={name:"PlayIcon",components:{SVGIcon:i["a"]}},r=o,c=n("2877"),l=Object(c["a"])(r,s,a,!1,null,null,null);e["a"]=l.exports},c802:function(t,e,n){"use strict";n("f084")},c8fd:function(t,e,n){"use strict";n("1509")},d4d0:function(t,e,n){},d647:function(t,e,n){"use strict";n("b185")},da75:function(t,e,n){},dcb9:function(t,e,n){},de60:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"download-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},a=[],i=n("be08"),o={name:"DownloadIcon",components:{SVGIcon:i["a"]}},r=o,c=n("2877"),l=Object(c["a"])(r,s,a,!1,null,null,null);e["a"]=l.exports},e929:function(t,e,n){"use strict";n("54b0")},ec73:function(t,e,n){},ee29:function(t,e,n){"use strict";n("b9c2")},f025:function(t,e,n){"use strict";n.r(e);var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.topicData?n("Overview",t._b({key:t.topicKey},"Overview",t.overviewProps,!1)):t._e()},a=[],i=n("25a9"),o=n("bb52"),r=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tutorials-overview"},[t.isTargetIDE?t._e():n("Nav",{staticClass:"theme-dark",attrs:{sections:t.otherSections}},[t._v(" "+t._s(t.title)+" ")]),n("main",{staticClass:"main",attrs:{id:"main",role:"main",tabindex:"0"}},[n("div",{staticClass:"radial-gradient"},[t._t("above-hero"),t.heroSection?n("Hero",{attrs:{action:t.heroSection.action,content:t.heroSection.content,estimatedTime:t.metadata.estimatedTime,image:t.heroSection.image,title:t.heroSection.title}}):t._e()],2),t.otherSections.length>0?n("LearningPath",{attrs:{sections:t.otherSections}}):t._e()],1)],1)},c=[],l={state:{activeTutorialLink:null,activeVolume:null},reset(){this.state.activeTutorialLink=null,this.state.activeVolume=null},setActiveSidebarLink(t){this.state.activeTutorialLink=t},setActiveVolume(t){this.state.activeVolume=t}},u=n("d8ce"),d=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"hero"},[n("div",{staticClass:"copy-container"},[n("h1",{staticClass:"title"},[t._v(t._s(t.title))]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e(),t.estimatedTime?n("p",{staticClass:"meta"},[n("TimerIcon"),n("span",{staticClass:"meta-content"},[n("strong",{staticClass:"time"},[t._v(t._s(t.estimatedTime))]),n("span",[t._v(" Estimated Time")])])],1):t._e(),t.action?n("CallToActionButton",{attrs:{action:t.action,"aria-label":t.action.overridingTitle+" with "+t.title,isDark:""}}):t._e()],1),t.image?n("Asset",{attrs:{identifier:t.image}}):t._e()],1)},p=[],m=n("80e4"),h=n("c081"),v=n("5677"),f=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"timer-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 2c-2.761 0-5 2.239-5 5s2.239 5 5 5c2.761 0 5-2.239 5-5v0c0-2.761-2.239-5-5-5v0z"}}),n("path",{attrs:{d:"M6.51 3.51h1.5v3.5h-1.5v-3.5z"}}),n("path",{attrs:{d:"M6.51 7.010h4v1.5h-4v-1.5z"}})])},y=[],b=n("be08"),C={name:"TimerIcon",components:{SVGIcon:b["a"]}},_=C,g=n("2877"),V=Object(g["a"])(_,f,y,!1,null,null,null),S=V.exports,A={name:"Hero",components:{Asset:m["a"],CallToActionButton:h["a"],ContentNode:v["a"],TimerIcon:S},props:{action:{type:Object,required:!1},content:{type:Array,required:!1},estimatedTime:{type:String,required:!1},image:{type:String,required:!1},title:{type:String,required:!0}}},T=A,w=(n("f974"),Object(g["a"])(T,d,p,!1,null,"fc7f508c",null)),k=w.exports,I=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"learning-path",class:t.classes},[n("div",{staticClass:"main-container"},[t.isTargetIDE?t._e():n("div",{staticClass:"secondary-content-container"},[n("TutorialsNavigation",{attrs:{sections:t.sections,"aria-label":"On this page"}})],1),n("div",{staticClass:"primary-content-container"},[n("div",{staticClass:"content-sections-container"},[t._l(t.volumes,(function(e,s){return n("Volume",t._b({key:"volume_"+s,staticClass:"content-section"},"Volume",t.propsFor(e),!1))})),t._l(t.otherSections,(function(e,s){return n(t.componentFor(e),t._b({key:"resource_"+s,tag:"component",staticClass:"content-section"},"component",t.propsFor(e),!1))}))],2)])])])},x=[],O=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"resources",attrs:{id:"resources",tabindex:"-1"}},[n("VolumeName",{attrs:{name:"Resources",content:t.content}}),n("TileGroup",{attrs:{tiles:t.tiles}})],1)},j=[],N=n("72e7");const E={topOneThird:"-30% 0% -70% 0%",center:"-50% 0% -50% 0%"};var M={mixins:[N["a"]],computed:{intersectionRoot(){return null},intersectionRootMargin(){return E.center}},methods:{onIntersect(t){if(!t.isIntersecting)return;const e=this.onIntersectViewport;e?e():console.warn("onIntersectViewportCenter not implemented")}}},$=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"volume-name"},[t.image?n("Asset",{staticClass:"image",attrs:{identifier:t.image,"aria-hidden":"true"}}):t._e(),n("h2",{staticClass:"name"},[t._v(" "+t._s(t.name)+" ")]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e()],1)},q=[],B={name:"VolumeName",components:{ContentNode:v["a"],Asset:m["a"]},props:{image:{type:String,required:!1},content:{type:Array,required:!1},name:{type:String,required:!1}}},R=B,z=(n("c802"),Object(g["a"])(R,$,q,!1,null,"14577284",null)),L=z.exports,D=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tile-group",class:t.countClass},t._l(t.tiles,(function(e){return n("Tile",t._b({key:e.title},"Tile",t.propsFor(e),!1))})),1)},G=[],P=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tile"},[t.identifier?n("div",{staticClass:"icon"},[n(t.iconComponent,{tag:"component"})],1):t._e(),n("div",{staticClass:"title"},[t._v(t._s(t.title))]),n("ContentNode",{attrs:{content:t.content}}),t.action?n("DestinationDataProvider",{attrs:{destination:t.action},scopedSlots:t._u([{key:"default",fn:function(e){var s=e.url,a=e.title;return n("Reference",{staticClass:"link",attrs:{url:s}},[t._v(" "+t._s(a)+" "),n("InlineChevronRightIcon",{staticClass:"link-icon icon-inline"})],1)}}],null,!1,3874201962)}):t._e()],1)},F=[],H=n("3b96"),K=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"document-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M11.2,5.3,8,2l-.1-.1H2.8V12.1h8.5V6.3l-.1-1ZM8,3.2l2,2.1H8Zm2.4,8H3.6V2.8H7V6.3h3.4Z"}})])},U=[],Z={name:"DocumentIcon",components:{SVGIcon:b["a"]}},J=Z,Q=(n("77e2"),Object(g["a"])(J,K,U,!1,null,"56114692",null)),W=Q.exports,X=n("de60"),Y=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"forum-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M13 1v9h-7l-1.5 3-1.5-3h-2v-9zM12 2h-10v7h1.616l0.884 1.763 0.88-1.763h6.62z"}}),n("path",{attrs:{d:"M3 4h8.001v1h-8.001v-1z"}}),n("path",{attrs:{d:"M3 6h8.001v1h-8.001v-1z"}})])},tt=[],et={name:"ForumIcon",components:{SVGIcon:b["a"]}},nt=et,st=Object(g["a"])(nt,Y,tt,!1,null,null,null),at=st.exports,it=n("c4dd"),ot=n("86d8"),rt=n("34b0"),ct=n("c7ea");const lt={documentation:"documentation",downloads:"downloads",featured:"featured",forums:"forums",sampleCode:"sampleCode",videos:"videos"};var ut,dt,pt={name:"Tile",constants:{Identifier:lt},components:{DestinationDataProvider:ct["a"],InlineChevronRightIcon:rt["a"],ContentNode:v["a"],CurlyBracketsIcon:H["a"],DocumentIcon:W,DownloadIcon:X["a"],ForumIcon:at,PlayIcon:it["a"],Reference:ot["a"]},props:{action:{type:Object,required:!1},content:{type:Array,required:!0},identifier:{type:String,required:!1},title:{type:String,require:!0}},computed:{iconComponent:({identifier:t})=>({[lt.documentation]:W,[lt.downloads]:X["a"],[lt.forums]:at,[lt.sampleCode]:H["a"],[lt.videos]:it["a"]}[t])}},mt=pt,ht=(n("0175"),Object(g["a"])(mt,P,F,!1,null,"86db603a",null)),vt=ht.exports,ft={name:"TileGroup",components:{Tile:vt},props:{tiles:{type:Array,required:!0}},computed:{countClass:({tiles:t})=>"count-"+t.length},methods:{propsFor:({action:t,content:e,identifier:n,title:s})=>({action:t,content:e,identifier:n,title:s})}},yt=ft,bt=(n("f0ca"),Object(g["a"])(yt,D,G,!1,null,"015f9f13",null)),Ct=bt.exports,_t={name:"Resources",mixins:[M],inject:{store:{default:()=>({setActiveSidebarLink(){},setActiveVolume(){}})}},components:{VolumeName:L,TileGroup:Ct},computed:{intersectionRootMargin:()=>E.topOneThird},props:{content:{type:Array,required:!1},tiles:{type:Array,required:!0}},methods:{onIntersectViewport(){this.store.setActiveSidebarLink("Resources"),this.store.setActiveVolume(null)}}},gt=_t,Vt=(n("5668"),Object(g["a"])(gt,O,j,!1,null,"49ba6f62",null)),St=Vt.exports,At=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("nav",{staticClass:"tutorials-navigation"},[n("TutorialsNavigationList",t._l(t.sections,(function(e,s){return n("li",{key:e.name+"_"+s,class:t.sectionClasses(e)},[t.isVolume(e)?n(t.componentForVolume(e),t._b({tag:"component",on:{"select-menu":t.onSelectMenu,"deselect-menu":t.onDeselectMenu}},"component",t.propsForVolume(e),!1),t._l(e.chapters,(function(e){return n("li",{key:e.name},[n("TutorialsNavigationLink",[t._v(" "+t._s(e.name)+" ")])],1)})),0):t.isResources(e)?n("TutorialsNavigationLink",[t._v(" Resources ")]):t._e()],1)})),0)],1)},Tt=[],wt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("router-link",{staticClass:"tutorials-navigation-link",class:{active:t.active},attrs:{to:t.fragment},nativeOn:{click:function(e){return t.handleFocus.apply(null,arguments)}}},[t._t("default")],2)},kt=[],It=n("002d"),xt=n("8a61"),Ot={name:"TutorialsNavigationLink",mixins:[xt["a"]],inject:{store:{default:()=>({state:{}})}},data(){return{state:this.store.state}},computed:{active:({state:{activeTutorialLink:t},text:e})=>e===t,fragment:({text:t,$route:e})=>({hash:Object(It["a"])(t),query:e.query}),text:({$slots:{default:[{text:t}]}})=>t.trim()},methods:{async handleFocus(){const{hash:t}=this.fragment,e=document.getElementById(t);e&&(e.focus(),await this.scrollToElement("#"+t))}}},jt=Ot,Nt=(n("6962"),Object(g["a"])(jt,wt,kt,!1,null,"6bb99205",null)),Et=Nt.exports,Mt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("ol",{staticClass:"tutorials-navigation-list",attrs:{role:"list"}},[t._t("default")],2)},$t=[],qt={name:"TutorialsNavigationList"},Bt=qt,Rt=(n("202a"),Object(g["a"])(Bt,Mt,$t,!1,null,"6f2800d1",null)),zt=Rt.exports,Lt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tutorials-navigation-menu",class:{collapsed:t.collapsed}},[n("button",{staticClass:"toggle",attrs:{"aria-expanded":t.collapsed?"false":"true",type:"button"},on:{click:function(e){return e.stopPropagation(),t.onClick.apply(null,arguments)}}},[n("span",{staticClass:"text"},[t._v(t._s(t.title))]),n("InlineCloseIcon",{staticClass:"toggle-icon icon-inline"})],1),n("transition-expand",[t.collapsed?t._e():n("div",{staticClass:"tutorials-navigation-menu-content"},[n("TutorialsNavigationList",{attrs:{"aria-label":"Chapters"}},[t._t("default")],2)],1)])],1)},Dt=[],Gt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"inline-close-icon",attrs:{viewBox:"0 0 14 14"}},[n("path",{attrs:{d:"M11.91 1l1.090 1.090-4.917 4.915 4.906 4.905-1.090 1.090-4.906-4.905-4.892 4.894-1.090-1.090 4.892-4.894-4.903-4.904 1.090-1.090 4.903 4.904z"}})])},Pt=[],Ft={name:"InlineCloseIcon",components:{SVGIcon:b["a"]}},Ht=Ft,Kt=Object(g["a"])(Ht,Gt,Pt,!1,null,null,null),Ut=Kt.exports,Zt={name:"TransitionExpand",functional:!0,render(t,e){const n={props:{name:"expand"},on:{afterEnter(t){t.style.height="auto"},enter(t){const{width:e}=getComputedStyle(t);t.style.width=e,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";const{height:n}=getComputedStyle(t);t.style.width=null,t.style.position=null,t.style.visibility=null,t.style.height=0,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=n})},leave(t){const{height:e}=getComputedStyle(t);t.style.height=e,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=0})}}};return t("transition",n,e.children)}},Jt=Zt,Qt=(n("032c"),Object(g["a"])(Jt,ut,dt,!1,null,null,null)),Wt=Qt.exports,Xt={name:"TutorialsNavigationMenu",components:{InlineCloseIcon:Ut,TransitionExpand:Wt,TutorialsNavigationList:zt},props:{collapsed:{type:Boolean,default:!0},title:{type:String,required:!0}},methods:{onClick(){this.collapsed?this.$emit("select-menu",this.title):this.$emit("deselect-menu")}}},Yt=Xt,te=(n("d647"),Object(g["a"])(Yt,Lt,Dt,!1,null,"6513d652",null)),ee=te.exports;const ne={resources:"resources",volume:"volume"};var se={name:"TutorialsNavigation",components:{TutorialsNavigationLink:Et,TutorialsNavigationList:zt,TutorialsNavigationMenu:ee},constants:{SectionKind:ne},inject:{store:{default:()=>({setActiveVolume(){}})}},data(){return{state:this.store.state}},props:{sections:{type:Array,required:!0}},computed:{activeVolume:({state:t})=>t.activeVolume},methods:{sectionClasses(t){return{volume:this.isVolume(t),"volume--named":this.isNamedVolume(t),resource:this.isResources(t)}},componentForVolume:({name:t})=>t?ee:zt,isResources:({kind:t})=>t===ne.resources,isVolume:({kind:t})=>t===ne.volume,activateFirstNamedVolume(){const{isNamedVolume:t,sections:e}=this,n=e.find(t);n&&this.store.setActiveVolume(n.name)},isNamedVolume(t){return this.isVolume(t)&&t.name},onDeselectMenu(){this.store.setActiveVolume(null)},onSelectMenu(t){this.store.setActiveVolume(t)},propsForVolume({name:t}){const{activeVolume:e}=this;return t?{collapsed:t!==e,title:t}:{"aria-label":"Chapters"}}},created(){this.activateFirstNamedVolume()}},ae=se,ie=(n("095b"),Object(g["a"])(ae,At,Tt,!1,null,"0cbd8adb",null)),oe=ie.exports,re=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"volume"},[t.name?n("VolumeName",t._b({},"VolumeName",{name:t.name,image:t.image,content:t.content},!1)):t._e(),t._l(t.chapters,(function(e,s){return n("Chapter",{key:e.name,staticClass:"tile",attrs:{content:e.content,image:e.image,name:e.name,number:s+1,topics:t.lookupTopics(e.tutorials),volumeHasName:!!t.name}})}))],2)},ce=[],le=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"chapter",attrs:{id:t.anchor,tabindex:"-1"}},[n("div",{staticClass:"info"},[n("Asset",{attrs:{identifier:t.image,"aria-hidden":"true"}}),n("div",{staticClass:"intro"},[n(t.volumeHasName?"h3":"h2",{tag:"component",staticClass:"name",attrs:{"aria-label":t.name+" - Chapter "+t.number}},[n("span",{staticClass:"eyebrow",attrs:{"aria-hidden":"true"}},[t._v("Chapter "+t._s(t.number))]),n("span",{staticClass:"name-text",attrs:{"aria-hidden":"true"}},[t._v(t._s(t.name))])]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e()],1)],1),n("TopicList",{attrs:{topics:t.topics}})],1)},ue=[],de=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("ol",{staticClass:"topic-list"},t._l(t.topics,(function(e){return n("li",{key:e.url,staticClass:"topic",class:t.kindClassFor(e)},[n("div",{staticClass:"topic-icon"},[n(t.iconComponent(e),{tag:"component"})],1),n("router-link",{staticClass:"container",attrs:{to:t.buildUrl(e.url,t.$route.query),"aria-label":t.ariaLabelFor(e)}},[n("div",{staticClass:"link"},[t._v(t._s(e.title))]),e.estimatedTime?n("div",{staticClass:"time"},[n("TimerIcon"),n("span",{staticClass:"time-label"},[t._v(t._s(e.estimatedTime))])],1):t._e()])],1)})),0)},pe=[],me=n("a9f1"),he=n("8d2d"),ve=n("d26a");const fe={article:"article",tutorial:"project"},ye={article:"article",tutorial:"tutorial"},be={[fe.article]:"Article",[fe.tutorial]:"Tutorial"};var Ce={name:"ChapterTopicList",components:{TimerIcon:S},constants:{TopicKind:fe,TopicKindClass:ye,TopicKindIconLabel:be},props:{topics:{type:Array,required:!0}},methods:{buildUrl:ve["b"],iconComponent:({kind:t})=>({[fe.article]:me["a"],[fe.tutorial]:he["a"]}[t]),kindClassFor:({kind:t})=>({[fe.article]:ye.article,[fe.tutorial]:ye.tutorial}[t]),formatTime:t=>t.replace("min"," minutes").replace("hrs"," hours"),ariaLabelFor({title:t,estimatedTime:e,kind:n}){const s=[t,be[n]];return e&&s.push(this.formatTime(e)+" Estimated Time"),s.join(" - ")}}},_e=Ce,ge=(n("be3b"),Object(g["a"])(_e,de,pe,!1,null,"9a8371c6",null)),Ve=ge.exports,Se={name:"Chapter",mixins:[M],inject:{store:{default:()=>({setActiveSidebarLink(){},setActiveVolume(){}})}},components:{Asset:m["a"],ContentNode:v["a"],TopicList:Ve},props:{content:{type:Array,required:!1},image:{type:String,required:!0},name:{type:String,required:!0},number:{type:Number,required:!0},topics:{type:Array,required:!0},volumeHasName:{type:Boolean,default:!1}},computed:{anchor:({name:t})=>Object(It["a"])(t),intersectionRootMargin:()=>E.topOneThird},methods:{onIntersectViewport(){this.store.setActiveSidebarLink(this.name),this.volumeHasName||this.store.setActiveVolume(null)}}},Ae=Se,Te=(n("f31c"),Object(g["a"])(Ae,le,ue,!1,null,"1d13969f",null)),we=Te.exports,ke={name:"Volume",mixins:[M],components:{VolumeName:L,Chapter:we},computed:{intersectionRootMargin:()=>E.topOneThird},inject:{references:{default:()=>({})},store:{default:()=>({setActiveVolume(){}})}},props:{chapters:{type:Array,required:!0},content:{type:Array,required:!1},image:{type:String,required:!1},name:{type:String,required:!1}},methods:{lookupTopics(t){return t.reduce((t,e)=>t.concat(this.references[e]||[]),[])},onIntersectViewport(){this.name&&this.store.setActiveVolume(this.name)}}},Ie=ke,xe=(n("ee29"),Object(g["a"])(Ie,re,ce,!1,null,"2129f58c",null)),Oe=xe.exports;const je={resources:"resources",volume:"volume"};var Ne={name:"LearningPath",components:{Resources:St,TutorialsNavigation:oe,Volume:Oe},constants:{SectionKind:je},inject:{isTargetIDE:{default:!1}},props:{sections:{type:Array,required:!0,validator:t=>t.every(t=>Object.prototype.hasOwnProperty.call(je,t.kind))}},computed:{classes:({isTargetIDE:t})=>({ide:t}),partitionedSections:({sections:t})=>t.reduce(([t,e],n)=>n.kind===je.volume?[t.concat(n),e]:[t,e.concat(n)],[[],[]]),volumes:({partitionedSections:t})=>t[0],otherSections:({partitionedSections:t})=>t[1]},methods:{componentFor:({kind:t})=>({[je.resources]:St,[je.volume]:Oe}[t]),propsFor:({chapters:t,content:e,image:n,kind:s,name:a,tiles:i})=>({[je.resources]:{content:e,tiles:i},[je.volume]:{chapters:t,content:e,image:n,name:a}}[s])}},Ee=Ne,Me=(n("e929"),Object(g["a"])(Ee,I,x,!1,null,"48bfa85c",null)),$e=Me.exports,qe=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("NavBase",[n("NavTitleContainer",{attrs:{to:t.buildUrl(t.$route.path,t.$route.query)}},[n("template",{slot:"default"},[t._t("default")],2),n("template",{slot:"subhead"},[t._v("Tutorials")])],2),n("template",{slot:"menu-items"},[n("li",[n("TutorialsNavigation",{attrs:{sections:t.sections}})],1)])],2)},Be=[],Re=n("cbcf"),ze=n("653a");const Le={resources:"resources",volume:"volume"};var De={name:"Nav",constants:{SectionKind:Le},components:{NavTitleContainer:ze["a"],TutorialsNavigation:oe,NavBase:Re["a"]},props:{sections:{type:Array,require:!0}},methods:{buildUrl:ve["b"]}},Ge=De,Pe=(n("a8f9"),Object(g["a"])(Ge,qe,Be,!1,null,"07700f98",null)),Fe=Pe.exports;const He={hero:"hero",resources:"resources",volume:"volume"};var Ke={name:"TutorialsOverview",components:{Hero:k,LearningPath:$e,Nav:Fe},mixins:[u["a"]],constants:{SectionKind:He},inject:{isTargetIDE:{default:!1}},props:{metadata:{type:Object,default:()=>({})},references:{type:Object,default:()=>({})},sections:{type:Array,default:()=>[],validator:t=>t.every(t=>Object.prototype.hasOwnProperty.call(He,t.kind))}},computed:{pageTitle:({title:t})=>[t,"Tutorials"].join(" "),partitionedSections:({sections:t})=>t.reduce(([t,e],n)=>n.kind===He.hero?[t.concat(n),e]:[t,e.concat(n)],[[],[]]),heroSections:({partitionedSections:t})=>t[0],otherSections:({partitionedSections:t})=>t[1],heroSection:({heroSections:t})=>t[0],store:()=>l,title:({metadata:{category:t=""}})=>t},provide(){return{references:this.references,store:this.store}},created(){this.store.reset()}},Ue=Ke,Ze=(n("c8fd"),Object(g["a"])(Ue,r,c,!1,null,"0c0b1eea",null)),Je=Ze.exports,Qe=n("146e"),We={name:"TutorialsOverview",components:{Overview:Je},mixins:[o["a"],Qe["a"]],data(){return{topicData:null}},computed:{overviewProps:({topicData:{metadata:t,references:e,sections:n}})=>({metadata:t,references:e,sections:n}),topicKey:({$route:t,topicData:e})=>[t.path,e.identifier.interfaceLanguage].join()},beforeRouteEnter(t,e,n){Object(i["b"])(t,e,n).then(t=>n(e=>{e.topicData=t})).catch(n)},beforeRouteUpdate(t,e,n){Object(i["c"])(t,e)?Object(i["b"])(t,e,n).then(t=>{this.topicData=t,n()}).catch(n):n()},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},Xe=We,Ye=Object(g["a"])(Xe,s,a,!1,null,null,null);e["default"]=Ye.exports},f084:function(t,e,n){},f0ca:function(t,e,n){"use strict";n("8f86")},f31c:function(t,e,n){"use strict";n("9f56")},f974:function(t,e,n){"use strict";n("dcb9")},fb27:function(t,e,n){},fb73:function(t,e,n){}}]); \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/metadata.json b/JellyfinAPI.doccarchive/metadata.json new file mode 100644 index 000000000..55f1726f0 --- /dev/null +++ b/JellyfinAPI.doccarchive/metadata.json @@ -0,0 +1 @@ +{"bundleDisplayName":"JellyfinAPI","bundleIdentifier":"JellyfinAPI","schemaVersion":{"major":0,"minor":1,"patch":0}} \ No newline at end of file diff --git a/JellyfinAPI.doccarchive/theme-settings.json b/JellyfinAPI.doccarchive/theme-settings.json new file mode 100644 index 000000000..c26c16f74 --- /dev/null +++ b/JellyfinAPI.doccarchive/theme-settings.json @@ -0,0 +1,59 @@ +{ + "meta": {}, + "theme": { + "colors": { + "text": "", + "text-background": "", + "grid": "", + "article-background": "", + "generic-modal-background": "", + "secondary-label": "", + "header-text": "", + "not-found": { + "input-border": "" + }, + "runtime-preview": { + "text": "" + }, + "tabnav-item": { + "border-color": "" + }, + "svg-icon": { + "fill-light": "", + "fill-dark": "" + }, + "loading-placeholder": { + "background": "" + }, + "button": { + "text": "", + "light": { + "background": "", + "backgroundHover": "", + "backgroundActive": "" + }, + "dark": { + "background": "", + "backgroundHover": "", + "backgroundActive": "" + } + }, + "link": null + }, + "style": { + "button": { + "borderRadius": null + } + }, + "typography": { + "html-font": "" + } + }, + "features": { + "docs": { + "summary": { + "hide": false + } + } + } +} diff --git a/JellyfinAPI.podspec b/JellyfinAPI.podspec deleted file mode 100644 index a7f1b7348..000000000 --- a/JellyfinAPI.podspec +++ /dev/null @@ -1,15 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'JellyfinAPI' - s.ios.deployment_target = '9.0' - s.osx.deployment_target = '10.11' - s.tvos.deployment_target = '9.0' - s.watchos.deployment_target = '3.0' - s.version = '10.8.0' - s.source = { :git => 'git@github.com:OpenAPITools/openapi-generator.git', :tag => 'v10.8.0' } - s.authors = 'OpenAPI Generator' - s.license = 'Proprietary' - s.homepage = 'https://github.com/OpenAPITools/openapi-generator' - s.summary = 'JellyfinAPI Swift SDK' - s.source_files = 'Sources/JellyfinAPI/**/*.swift' - s.dependency 'AnyCodable-FlightSchool', '~> 0.6.1' -end diff --git a/Package.resolved b/Package.resolved new file mode 100644 index 000000000..a56d3dc87 --- /dev/null +++ b/Package.resolved @@ -0,0 +1,25 @@ +{ + "object": { + "pins": [ + { + "package": "Get", + "repositoryURL": "https://github.com/kean/Get", + "state": { + "branch": null, + "revision": "db5248ce985c703c5ea0030b7c4d3f908db304c9", + "version": "1.0.2" + } + }, + { + "package": "URLQueryEncoder", + "repositoryURL": "https://github.com/CreateAPI/URLQueryEncoder", + "state": { + "branch": null, + "revision": "4cc975d4d075d0e62699a796a08284e217d4ee93", + "version": "0.2.0" + } + } + ] + }, + "version": 1 +} diff --git a/Package.swift b/Package.swift index e62514268..4e1f6f6e2 100644 --- a/Package.swift +++ b/Package.swift @@ -1,33 +1,56 @@ -// swift-tools-version:5.1 +// swift-tools-version:5.6 +// The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription let package = Package( name: "JellyfinAPI", platforms: [ - .iOS(.v9), - .macOS(.v10_11), - .tvOS(.v9), - .watchOS(.v3), + .iOS(.v13), + .macCatalyst(.v13), + .macOS(.v10_15), + .watchOS(.v6), + .tvOS(.v13), ], products: [ - // Products define the executables and libraries produced by a package, and make them visible to other packages. - .library( - name: "JellyfinAPI", - targets: ["JellyfinAPI"] - ), + .library(name: "JellyfinAPI", targets: ["JellyfinAPI"]), ], dependencies: [ - // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.1"), + .package(url: "https://github.com/kean/Get", from: "1.0.2"), + .package(url: "https://github.com/CreateAPI/URLQueryEncoder", from: "0.2.0"), ], targets: [ - // Targets are the basic building blocks of a package. A target can define a module or a test suite. - // Targets can depend on other targets in this package, and on products in packages which this package depends on. .target( name: "JellyfinAPI", - dependencies: ["AnyCodable", ], - path: "Sources/JellyfinAPI" + dependencies: [ + .product(name: "Get", package: "Get"), + .product(name: "URLQueryEncoder", package: "URLQueryEncoder"), + ], + path: "Sources", + exclude: [ + "jellyfin-openapi-stable.json", + "create-api-config.yaml", + ] + ), + .binaryTarget( + name: "create-api", + url: "https://github.com/CreateAPI/CreateAPI/releases/download/0.1.0/create-api.artifactbundle.zip", + checksum: "4e9d1fb023c52e423d57de0928da5d943e3e4c81f6cb903523654867e6372db7" + ), + .plugin( + name: "CreateAPI", + capability: .command( + intent: .custom( + verb: "generate-api", + description: "Generates the OpenAPI entities and paths using CreateAPI" + ), + permissions: [ + .writeToPackageDirectory(reason: "To output the generated source code"), + ] + ), + dependencies: [ + .target(name: "create-api"), + ] ), ] ) diff --git a/Plugins/CreateAPI/GeneratePlugin.swift b/Plugins/CreateAPI/GeneratePlugin.swift new file mode 100644 index 000000000..3ea84f67f --- /dev/null +++ b/Plugins/CreateAPI/GeneratePlugin.swift @@ -0,0 +1,31 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import PackagePlugin + +@main +struct Plugin: CommandPlugin { + func performCommand(context: PluginContext, arguments: [String]) async throws { + let createAPICommand = try context.tool(named: "create-api") + let workingDirectory = context.package.directory.appending("Sources") + + let process = Process() + process.currentDirectoryURL = URL(fileURLWithPath: workingDirectory.string) + process.executableURL = URL(fileURLWithPath: createAPICommand.path.string) + process.arguments = [ + "generate", + "jellyfin-openapi-stable.json", + "--config", "create-api-config.yaml", + "--output", ".", + ] + + try process.run() + process.waitUntilExit() + } +} diff --git a/README.md b/README.md index 16b5752e0..8186bbf8c 100644 --- a/README.md +++ b/README.md @@ -1,839 +1,40 @@ -# Swift5 API client for JellyfinAPI +# Swift SDK Jellyfin -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) +Swift SDK to work with Jellyfin servers. -## Overview -This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. +> Generated using [CreateAPI](https://github.com/CreateAPI/CreateAPI) -- API version: 10.8.0 -- Package version: -- Build package: org.openapitools.codegen.languages.Swift5ClientCodegen +## Usage -## Installation +The provided `JellyfinClient` uses an underlying [Get APIClient](https://github.com/kean/Get) to provide basic functionality for interfacing with a Jellyfin server: +- inject required headers for every request +- encoding/decoding of all `Date` values to expected +- `signIn` for generating a session access token +- `signOut` for revoking the current access token -### Carthage +```swift +// Create +let jellyfinClient = JellyfinClient(configuration: configuration) -Run `carthage update` +// Provided by JellyfinClient +let response = jellyfinClient.signIn(username: "jelly", password: "fin") +``` -### CocoaPods +You can forego `JellyfinClient` and use your own network stack, using the provided **Entities** and **Paths**. -Run `pod install` +## Generation -## Documentation for API Endpoints - -All URIs are relative to *http://localhost* - -Class | Method | HTTP request | Description ------------- | ------------- | ------------- | ------------- -*ActivityLogAPI* | [**getLogEntries**](docs/ActivityLogAPI.md#getlogentries) | **GET** /System/ActivityLog/Entries | Gets activity log entries. -*ApiKeyAPI* | [**createKey**](docs/ApiKeyAPI.md#createkey) | **POST** /Auth/Keys | Create a new api key. -*ApiKeyAPI* | [**getKeys**](docs/ApiKeyAPI.md#getkeys) | **GET** /Auth/Keys | Get all keys. -*ApiKeyAPI* | [**revokeKey**](docs/ApiKeyAPI.md#revokekey) | **DELETE** /Auth/Keys/{key} | Remove an api key. -*ArtistsAPI* | [**getAlbumArtists**](docs/ArtistsAPI.md#getalbumartists) | **GET** /Artists/AlbumArtists | Gets all album artists from a given item, folder, or the entire library. -*ArtistsAPI* | [**getArtistByName**](docs/ArtistsAPI.md#getartistbyname) | **GET** /Artists/{name} | Gets an artist by name. -*ArtistsAPI* | [**getArtists**](docs/ArtistsAPI.md#getartists) | **GET** /Artists | Gets all artists from a given item, folder, or the entire library. -*AudioAPI* | [**getAudioStream**](docs/AudioAPI.md#getaudiostream) | **GET** /Audio/{itemId}/stream | Gets an audio stream. -*AudioAPI* | [**getAudioStreamByContainer**](docs/AudioAPI.md#getaudiostreambycontainer) | **GET** /Audio/{itemId}/stream.{container} | Gets an audio stream. -*AudioAPI* | [**headAudioStream**](docs/AudioAPI.md#headaudiostream) | **HEAD** /Audio/{itemId}/stream | Gets an audio stream. -*AudioAPI* | [**headAudioStreamByContainer**](docs/AudioAPI.md#headaudiostreambycontainer) | **HEAD** /Audio/{itemId}/stream.{container} | Gets an audio stream. -*BrandingAPI* | [**getBrandingCss**](docs/BrandingAPI.md#getbrandingcss) | **GET** /Branding/Css | Gets branding css. -*BrandingAPI* | [**getBrandingCss2**](docs/BrandingAPI.md#getbrandingcss2) | **GET** /Branding/Css.css | Gets branding css. -*BrandingAPI* | [**getBrandingOptions**](docs/BrandingAPI.md#getbrandingoptions) | **GET** /Branding/Configuration | Gets branding configuration. -*ChannelsAPI* | [**getAllChannelFeatures**](docs/ChannelsAPI.md#getallchannelfeatures) | **GET** /Channels/Features | Get all channel features. -*ChannelsAPI* | [**getChannelFeatures**](docs/ChannelsAPI.md#getchannelfeatures) | **GET** /Channels/{channelId}/Features | Get channel features. -*ChannelsAPI* | [**getChannelItems**](docs/ChannelsAPI.md#getchannelitems) | **GET** /Channels/{channelId}/Items | Get channel items. -*ChannelsAPI* | [**getChannels**](docs/ChannelsAPI.md#getchannels) | **GET** /Channels | Gets available channels. -*ChannelsAPI* | [**getLatestChannelItems**](docs/ChannelsAPI.md#getlatestchannelitems) | **GET** /Channels/Items/Latest | Gets latest channel items. -*ClientLogAPI* | [**logFile**](docs/ClientLogAPI.md#logfile) | **POST** /ClientLog/Document | Upload a document. -*CollectionAPI* | [**addToCollection**](docs/CollectionAPI.md#addtocollection) | **POST** /Collections/{collectionId}/Items | Adds items to a collection. -*CollectionAPI* | [**createCollection**](docs/CollectionAPI.md#createcollection) | **POST** /Collections | Creates a new collection. -*CollectionAPI* | [**removeFromCollection**](docs/CollectionAPI.md#removefromcollection) | **DELETE** /Collections/{collectionId}/Items | Removes items from a collection. -*ConfigurationAPI* | [**getConfiguration**](docs/ConfigurationAPI.md#getconfiguration) | **GET** /System/Configuration | Gets application configuration. -*ConfigurationAPI* | [**getDefaultMetadataOptions**](docs/ConfigurationAPI.md#getdefaultmetadataoptions) | **GET** /System/Configuration/MetadataOptions/Default | Gets a default MetadataOptions object. -*ConfigurationAPI* | [**getNamedConfiguration**](docs/ConfigurationAPI.md#getnamedconfiguration) | **GET** /System/Configuration/{key} | Gets a named configuration. -*ConfigurationAPI* | [**updateConfiguration**](docs/ConfigurationAPI.md#updateconfiguration) | **POST** /System/Configuration | Updates application configuration. -*ConfigurationAPI* | [**updateMediaEncoderPath**](docs/ConfigurationAPI.md#updatemediaencoderpath) | **POST** /System/MediaEncoder/Path | Updates the path to the media encoder. -*ConfigurationAPI* | [**updateNamedConfiguration**](docs/ConfigurationAPI.md#updatenamedconfiguration) | **POST** /System/Configuration/{key} | Updates named configuration. -*DashboardAPI* | [**getConfigurationPages**](docs/DashboardAPI.md#getconfigurationpages) | **GET** /web/ConfigurationPages | Gets the configuration pages. -*DashboardAPI* | [**getDashboardConfigurationPage**](docs/DashboardAPI.md#getdashboardconfigurationpage) | **GET** /web/ConfigurationPage | Gets a dashboard configuration page. -*DevicesAPI* | [**deleteDevice**](docs/DevicesAPI.md#deletedevice) | **DELETE** /Devices | Deletes a device. -*DevicesAPI* | [**getDeviceInfo**](docs/DevicesAPI.md#getdeviceinfo) | **GET** /Devices/Info | Get info for a device. -*DevicesAPI* | [**getDeviceOptions**](docs/DevicesAPI.md#getdeviceoptions) | **GET** /Devices/Options | Get options for a device. -*DevicesAPI* | [**getDevices**](docs/DevicesAPI.md#getdevices) | **GET** /Devices | Get Devices. -*DevicesAPI* | [**updateDeviceOptions**](docs/DevicesAPI.md#updatedeviceoptions) | **POST** /Devices/Options | Update device options. -*DisplayPreferencesAPI* | [**getDisplayPreferences**](docs/DisplayPreferencesAPI.md#getdisplaypreferences) | **GET** /DisplayPreferences/{displayPreferencesId} | Get Display Preferences. -*DisplayPreferencesAPI* | [**updateDisplayPreferences**](docs/DisplayPreferencesAPI.md#updatedisplaypreferences) | **POST** /DisplayPreferences/{displayPreferencesId} | Update Display Preferences. -*DlnaAPI* | [**createProfile**](docs/DlnaAPI.md#createprofile) | **POST** /Dlna/Profiles | Creates a profile. -*DlnaAPI* | [**deleteProfile**](docs/DlnaAPI.md#deleteprofile) | **DELETE** /Dlna/Profiles/{profileId} | Deletes a profile. -*DlnaAPI* | [**getDefaultProfile**](docs/DlnaAPI.md#getdefaultprofile) | **GET** /Dlna/Profiles/Default | Gets the default profile. -*DlnaAPI* | [**getProfile**](docs/DlnaAPI.md#getprofile) | **GET** /Dlna/Profiles/{profileId} | Gets a single profile. -*DlnaAPI* | [**getProfileInfos**](docs/DlnaAPI.md#getprofileinfos) | **GET** /Dlna/ProfileInfos | Get profile infos. -*DlnaAPI* | [**updateProfile**](docs/DlnaAPI.md#updateprofile) | **POST** /Dlna/Profiles/{profileId} | Updates a profile. -*DlnaServerAPI* | [**getConnectionManager**](docs/DlnaServerAPI.md#getconnectionmanager) | **GET** /Dlna/{serverId}/ConnectionManager | Gets Dlna media receiver registrar xml. -*DlnaServerAPI* | [**getConnectionManager2**](docs/DlnaServerAPI.md#getconnectionmanager2) | **GET** /Dlna/{serverId}/ConnectionManager/ConnectionManager | Gets Dlna media receiver registrar xml. -*DlnaServerAPI* | [**getConnectionManager3**](docs/DlnaServerAPI.md#getconnectionmanager3) | **GET** /Dlna/{serverId}/ConnectionManager/ConnectionManager.xml | Gets Dlna media receiver registrar xml. -*DlnaServerAPI* | [**getContentDirectory**](docs/DlnaServerAPI.md#getcontentdirectory) | **GET** /Dlna/{serverId}/ContentDirectory | Gets Dlna content directory xml. -*DlnaServerAPI* | [**getContentDirectory2**](docs/DlnaServerAPI.md#getcontentdirectory2) | **GET** /Dlna/{serverId}/ContentDirectory/ContentDirectory | Gets Dlna content directory xml. -*DlnaServerAPI* | [**getContentDirectory3**](docs/DlnaServerAPI.md#getcontentdirectory3) | **GET** /Dlna/{serverId}/ContentDirectory/ContentDirectory.xml | Gets Dlna content directory xml. -*DlnaServerAPI* | [**getDescriptionXml**](docs/DlnaServerAPI.md#getdescriptionxml) | **GET** /Dlna/{serverId}/description | Get Description Xml. -*DlnaServerAPI* | [**getDescriptionXml2**](docs/DlnaServerAPI.md#getdescriptionxml2) | **GET** /Dlna/{serverId}/description.xml | Get Description Xml. -*DlnaServerAPI* | [**getIcon**](docs/DlnaServerAPI.md#geticon) | **GET** /Dlna/icons/{fileName} | Gets a server icon. -*DlnaServerAPI* | [**getIconId**](docs/DlnaServerAPI.md#geticonid) | **GET** /Dlna/{serverId}/icons/{fileName} | Gets a server icon. -*DlnaServerAPI* | [**getMediaReceiverRegistrar**](docs/DlnaServerAPI.md#getmediareceiverregistrar) | **GET** /Dlna/{serverId}/MediaReceiverRegistrar | Gets Dlna media receiver registrar xml. -*DlnaServerAPI* | [**getMediaReceiverRegistrar2**](docs/DlnaServerAPI.md#getmediareceiverregistrar2) | **GET** /Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar | Gets Dlna media receiver registrar xml. -*DlnaServerAPI* | [**getMediaReceiverRegistrar3**](docs/DlnaServerAPI.md#getmediareceiverregistrar3) | **GET** /Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar.xml | Gets Dlna media receiver registrar xml. -*DlnaServerAPI* | [**processConnectionManagerControlRequest**](docs/DlnaServerAPI.md#processconnectionmanagercontrolrequest) | **POST** /Dlna/{serverId}/ConnectionManager/Control | Process a connection manager control request. -*DlnaServerAPI* | [**processContentDirectoryControlRequest**](docs/DlnaServerAPI.md#processcontentdirectorycontrolrequest) | **POST** /Dlna/{serverId}/ContentDirectory/Control | Process a content directory control request. -*DlnaServerAPI* | [**processMediaReceiverRegistrarControlRequest**](docs/DlnaServerAPI.md#processmediareceiverregistrarcontrolrequest) | **POST** /Dlna/{serverId}/MediaReceiverRegistrar/Control | Process a media receiver registrar control request. -*DynamicHlsAPI* | [**getHlsAudioSegment**](docs/DynamicHlsAPI.md#gethlsaudiosegment) | **GET** /Audio/{itemId}/hls1/{playlistId}/{segmentId}.{container} | Gets a video stream using HTTP live streaming. -*DynamicHlsAPI* | [**getHlsVideoSegment**](docs/DynamicHlsAPI.md#gethlsvideosegment) | **GET** /Videos/{itemId}/hls1/{playlistId}/{segmentId}.{container} | Gets a video stream using HTTP live streaming. -*DynamicHlsAPI* | [**getLiveHlsStream**](docs/DynamicHlsAPI.md#getlivehlsstream) | **GET** /Videos/{itemId}/live.m3u8 | Gets a hls live stream. -*DynamicHlsAPI* | [**getMasterHlsAudioPlaylist**](docs/DynamicHlsAPI.md#getmasterhlsaudioplaylist) | **GET** /Audio/{itemId}/master.m3u8 | Gets an audio hls playlist stream. -*DynamicHlsAPI* | [**getMasterHlsVideoPlaylist**](docs/DynamicHlsAPI.md#getmasterhlsvideoplaylist) | **GET** /Videos/{itemId}/master.m3u8 | Gets a video hls playlist stream. -*DynamicHlsAPI* | [**getVariantHlsAudioPlaylist**](docs/DynamicHlsAPI.md#getvarianthlsaudioplaylist) | **GET** /Audio/{itemId}/main.m3u8 | Gets an audio stream using HTTP live streaming. -*DynamicHlsAPI* | [**getVariantHlsVideoPlaylist**](docs/DynamicHlsAPI.md#getvarianthlsvideoplaylist) | **GET** /Videos/{itemId}/main.m3u8 | Gets a video stream using HTTP live streaming. -*DynamicHlsAPI* | [**headMasterHlsAudioPlaylist**](docs/DynamicHlsAPI.md#headmasterhlsaudioplaylist) | **HEAD** /Audio/{itemId}/master.m3u8 | Gets an audio hls playlist stream. -*DynamicHlsAPI* | [**headMasterHlsVideoPlaylist**](docs/DynamicHlsAPI.md#headmasterhlsvideoplaylist) | **HEAD** /Videos/{itemId}/master.m3u8 | Gets a video hls playlist stream. -*EnvironmentAPI* | [**getDefaultDirectoryBrowser**](docs/EnvironmentAPI.md#getdefaultdirectorybrowser) | **GET** /Environment/DefaultDirectoryBrowser | Get Default directory browser. -*EnvironmentAPI* | [**getDirectoryContents**](docs/EnvironmentAPI.md#getdirectorycontents) | **GET** /Environment/DirectoryContents | Gets the contents of a given directory in the file system. -*EnvironmentAPI* | [**getDrives**](docs/EnvironmentAPI.md#getdrives) | **GET** /Environment/Drives | Gets available drives from the server's file system. -*EnvironmentAPI* | [**getNetworkShares**](docs/EnvironmentAPI.md#getnetworkshares) | **GET** /Environment/NetworkShares | Gets network paths. -*EnvironmentAPI* | [**getParentPath**](docs/EnvironmentAPI.md#getparentpath) | **GET** /Environment/ParentPath | Gets the parent path of a given path. -*EnvironmentAPI* | [**validatePath**](docs/EnvironmentAPI.md#validatepath) | **POST** /Environment/ValidatePath | Validates path. -*FilterAPI* | [**getQueryFilters**](docs/FilterAPI.md#getqueryfilters) | **GET** /Items/Filters2 | Gets query filters. -*FilterAPI* | [**getQueryFiltersLegacy**](docs/FilterAPI.md#getqueryfilterslegacy) | **GET** /Items/Filters | Gets legacy query filters. -*GenresAPI* | [**getGenre**](docs/GenresAPI.md#getgenre) | **GET** /Genres/{genreName} | Gets a genre, by name. -*GenresAPI* | [**getGenres**](docs/GenresAPI.md#getgenres) | **GET** /Genres | Gets all genres from a given item, folder, or the entire library. -*HlsSegmentAPI* | [**getHlsAudioSegmentLegacyAac**](docs/HlsSegmentAPI.md#gethlsaudiosegmentlegacyaac) | **GET** /Audio/{itemId}/hls/{segmentId}/stream.aac | Gets the specified audio segment for an audio item. -*HlsSegmentAPI* | [**getHlsAudioSegmentLegacyMp3**](docs/HlsSegmentAPI.md#gethlsaudiosegmentlegacymp3) | **GET** /Audio/{itemId}/hls/{segmentId}/stream.mp3 | Gets the specified audio segment for an audio item. -*HlsSegmentAPI* | [**getHlsPlaylistLegacy**](docs/HlsSegmentAPI.md#gethlsplaylistlegacy) | **GET** /Videos/{itemId}/hls/{playlistId}/stream.m3u8 | Gets a hls video playlist. -*HlsSegmentAPI* | [**getHlsVideoSegmentLegacy**](docs/HlsSegmentAPI.md#gethlsvideosegmentlegacy) | **GET** /Videos/{itemId}/hls/{playlistId}/{segmentId}.{segmentContainer} | Gets a hls video segment. -*HlsSegmentAPI* | [**stopEncodingProcess**](docs/HlsSegmentAPI.md#stopencodingprocess) | **DELETE** /Videos/ActiveEncodings | Stops an active encoding. -*ImageAPI* | [**deleteItemImage**](docs/ImageAPI.md#deleteitemimage) | **DELETE** /Items/{itemId}/Images/{imageType} | Delete an item's image. -*ImageAPI* | [**deleteItemImageByIndex**](docs/ImageAPI.md#deleteitemimagebyindex) | **DELETE** /Items/{itemId}/Images/{imageType}/{imageIndex} | Delete an item's image. -*ImageAPI* | [**deleteUserImage**](docs/ImageAPI.md#deleteuserimage) | **DELETE** /Users/{userId}/Images/{imageType} | Delete the user's image. -*ImageAPI* | [**deleteUserImageByIndex**](docs/ImageAPI.md#deleteuserimagebyindex) | **DELETE** /Users/{userId}/Images/{imageType}/{index} | Delete the user's image. -*ImageAPI* | [**getArtistImage**](docs/ImageAPI.md#getartistimage) | **GET** /Artists/{name}/Images/{imageType}/{imageIndex} | Get artist image by name. -*ImageAPI* | [**getGenreImage**](docs/ImageAPI.md#getgenreimage) | **GET** /Genres/{name}/Images/{imageType} | Get genre image by name. -*ImageAPI* | [**getGenreImageByIndex**](docs/ImageAPI.md#getgenreimagebyindex) | **GET** /Genres/{name}/Images/{imageType}/{imageIndex} | Get genre image by name. -*ImageAPI* | [**getItemImage**](docs/ImageAPI.md#getitemimage) | **GET** /Items/{itemId}/Images/{imageType} | Gets the item's image. -*ImageAPI* | [**getItemImage2**](docs/ImageAPI.md#getitemimage2) | **GET** /Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount} | Gets the item's image. -*ImageAPI* | [**getItemImageByIndex**](docs/ImageAPI.md#getitemimagebyindex) | **GET** /Items/{itemId}/Images/{imageType}/{imageIndex} | Gets the item's image. -*ImageAPI* | [**getItemImageInfos**](docs/ImageAPI.md#getitemimageinfos) | **GET** /Items/{itemId}/Images | Get item image infos. -*ImageAPI* | [**getMusicGenreImage**](docs/ImageAPI.md#getmusicgenreimage) | **GET** /MusicGenres/{name}/Images/{imageType} | Get music genre image by name. -*ImageAPI* | [**getMusicGenreImageByIndex**](docs/ImageAPI.md#getmusicgenreimagebyindex) | **GET** /MusicGenres/{name}/Images/{imageType}/{imageIndex} | Get music genre image by name. -*ImageAPI* | [**getPersonImage**](docs/ImageAPI.md#getpersonimage) | **GET** /Persons/{name}/Images/{imageType} | Get person image by name. -*ImageAPI* | [**getPersonImageByIndex**](docs/ImageAPI.md#getpersonimagebyindex) | **GET** /Persons/{name}/Images/{imageType}/{imageIndex} | Get person image by name. -*ImageAPI* | [**getSplashscreen**](docs/ImageAPI.md#getsplashscreen) | **GET** /Branding/Splashscreen | Generates or gets the splashscreen. -*ImageAPI* | [**getStudioImage**](docs/ImageAPI.md#getstudioimage) | **GET** /Studios/{name}/Images/{imageType} | Get studio image by name. -*ImageAPI* | [**getStudioImageByIndex**](docs/ImageAPI.md#getstudioimagebyindex) | **GET** /Studios/{name}/Images/{imageType}/{imageIndex} | Get studio image by name. -*ImageAPI* | [**getUserImage**](docs/ImageAPI.md#getuserimage) | **GET** /Users/{userId}/Images/{imageType} | Get user profile image. -*ImageAPI* | [**getUserImageByIndex**](docs/ImageAPI.md#getuserimagebyindex) | **GET** /Users/{userId}/Images/{imageType}/{imageIndex} | Get user profile image. -*ImageAPI* | [**headArtistImage**](docs/ImageAPI.md#headartistimage) | **HEAD** /Artists/{name}/Images/{imageType}/{imageIndex} | Get artist image by name. -*ImageAPI* | [**headGenreImage**](docs/ImageAPI.md#headgenreimage) | **HEAD** /Genres/{name}/Images/{imageType} | Get genre image by name. -*ImageAPI* | [**headGenreImageByIndex**](docs/ImageAPI.md#headgenreimagebyindex) | **HEAD** /Genres/{name}/Images/{imageType}/{imageIndex} | Get genre image by name. -*ImageAPI* | [**headItemImage**](docs/ImageAPI.md#headitemimage) | **HEAD** /Items/{itemId}/Images/{imageType} | Gets the item's image. -*ImageAPI* | [**headItemImage2**](docs/ImageAPI.md#headitemimage2) | **HEAD** /Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount} | Gets the item's image. -*ImageAPI* | [**headItemImageByIndex**](docs/ImageAPI.md#headitemimagebyindex) | **HEAD** /Items/{itemId}/Images/{imageType}/{imageIndex} | Gets the item's image. -*ImageAPI* | [**headMusicGenreImage**](docs/ImageAPI.md#headmusicgenreimage) | **HEAD** /MusicGenres/{name}/Images/{imageType} | Get music genre image by name. -*ImageAPI* | [**headMusicGenreImageByIndex**](docs/ImageAPI.md#headmusicgenreimagebyindex) | **HEAD** /MusicGenres/{name}/Images/{imageType}/{imageIndex} | Get music genre image by name. -*ImageAPI* | [**headPersonImage**](docs/ImageAPI.md#headpersonimage) | **HEAD** /Persons/{name}/Images/{imageType} | Get person image by name. -*ImageAPI* | [**headPersonImageByIndex**](docs/ImageAPI.md#headpersonimagebyindex) | **HEAD** /Persons/{name}/Images/{imageType}/{imageIndex} | Get person image by name. -*ImageAPI* | [**headStudioImage**](docs/ImageAPI.md#headstudioimage) | **HEAD** /Studios/{name}/Images/{imageType} | Get studio image by name. -*ImageAPI* | [**headStudioImageByIndex**](docs/ImageAPI.md#headstudioimagebyindex) | **HEAD** /Studios/{name}/Images/{imageType}/{imageIndex} | Get studio image by name. -*ImageAPI* | [**headUserImage**](docs/ImageAPI.md#headuserimage) | **HEAD** /Users/{userId}/Images/{imageType} | Get user profile image. -*ImageAPI* | [**headUserImageByIndex**](docs/ImageAPI.md#headuserimagebyindex) | **HEAD** /Users/{userId}/Images/{imageType}/{imageIndex} | Get user profile image. -*ImageAPI* | [**postUserImage**](docs/ImageAPI.md#postuserimage) | **POST** /Users/{userId}/Images/{imageType} | Sets the user image. -*ImageAPI* | [**postUserImageByIndex**](docs/ImageAPI.md#postuserimagebyindex) | **POST** /Users/{userId}/Images/{imageType}/{index} | Sets the user image. -*ImageAPI* | [**setItemImage**](docs/ImageAPI.md#setitemimage) | **POST** /Items/{itemId}/Images/{imageType} | Set item image. -*ImageAPI* | [**setItemImageByIndex**](docs/ImageAPI.md#setitemimagebyindex) | **POST** /Items/{itemId}/Images/{imageType}/{imageIndex} | Set item image. -*ImageAPI* | [**updateItemImageIndex**](docs/ImageAPI.md#updateitemimageindex) | **POST** /Items/{itemId}/Images/{imageType}/{imageIndex}/Index | Updates the index for an item image. -*ImageAPI* | [**uploadCustomSplashscreen**](docs/ImageAPI.md#uploadcustomsplashscreen) | **POST** /Branding/Splashscreen | Uploads a custom splashscreen. -*ImageByNameAPI* | [**getGeneralImage**](docs/ImageByNameAPI.md#getgeneralimage) | **GET** /Images/General/{name}/{type} | Get General Image. -*ImageByNameAPI* | [**getGeneralImages**](docs/ImageByNameAPI.md#getgeneralimages) | **GET** /Images/General | Get all general images. -*ImageByNameAPI* | [**getMediaInfoImage**](docs/ImageByNameAPI.md#getmediainfoimage) | **GET** /Images/MediaInfo/{theme}/{name} | Get media info image. -*ImageByNameAPI* | [**getMediaInfoImages**](docs/ImageByNameAPI.md#getmediainfoimages) | **GET** /Images/MediaInfo | Get all media info images. -*ImageByNameAPI* | [**getRatingImage**](docs/ImageByNameAPI.md#getratingimage) | **GET** /Images/Ratings/{theme}/{name} | Get rating image. -*ImageByNameAPI* | [**getRatingImages**](docs/ImageByNameAPI.md#getratingimages) | **GET** /Images/Ratings | Get all general images. -*InstantMixAPI* | [**getInstantMixFromAlbum**](docs/InstantMixAPI.md#getinstantmixfromalbum) | **GET** /Albums/{id}/InstantMix | Creates an instant playlist based on a given album. -*InstantMixAPI* | [**getInstantMixFromArtists**](docs/InstantMixAPI.md#getinstantmixfromartists) | **GET** /Artists/{id}/InstantMix | Creates an instant playlist based on a given artist. -*InstantMixAPI* | [**getInstantMixFromArtists2**](docs/InstantMixAPI.md#getinstantmixfromartists2) | **GET** /Artists/InstantMix | Creates an instant playlist based on a given artist. -*InstantMixAPI* | [**getInstantMixFromItem**](docs/InstantMixAPI.md#getinstantmixfromitem) | **GET** /Items/{id}/InstantMix | Creates an instant playlist based on a given item. -*InstantMixAPI* | [**getInstantMixFromMusicGenreById**](docs/InstantMixAPI.md#getinstantmixfrommusicgenrebyid) | **GET** /MusicGenres/InstantMix | Creates an instant playlist based on a given genre. -*InstantMixAPI* | [**getInstantMixFromMusicGenreByName**](docs/InstantMixAPI.md#getinstantmixfrommusicgenrebyname) | **GET** /MusicGenres/{name}/InstantMix | Creates an instant playlist based on a given genre. -*InstantMixAPI* | [**getInstantMixFromPlaylist**](docs/InstantMixAPI.md#getinstantmixfromplaylist) | **GET** /Playlists/{id}/InstantMix | Creates an instant playlist based on a given playlist. -*InstantMixAPI* | [**getInstantMixFromSong**](docs/InstantMixAPI.md#getinstantmixfromsong) | **GET** /Songs/{id}/InstantMix | Creates an instant playlist based on a given song. -*ItemLookupAPI* | [**applySearchCriteria**](docs/ItemLookupAPI.md#applysearchcriteria) | **POST** /Items/RemoteSearch/Apply/{itemId} | Applies search criteria to an item and refreshes metadata. -*ItemLookupAPI* | [**getBookRemoteSearchResults**](docs/ItemLookupAPI.md#getbookremotesearchresults) | **POST** /Items/RemoteSearch/Book | Get book remote search. -*ItemLookupAPI* | [**getBoxSetRemoteSearchResults**](docs/ItemLookupAPI.md#getboxsetremotesearchresults) | **POST** /Items/RemoteSearch/BoxSet | Get box set remote search. -*ItemLookupAPI* | [**getExternalIdInfos**](docs/ItemLookupAPI.md#getexternalidinfos) | **GET** /Items/{itemId}/ExternalIdInfos | Get the item's external id info. -*ItemLookupAPI* | [**getMovieRemoteSearchResults**](docs/ItemLookupAPI.md#getmovieremotesearchresults) | **POST** /Items/RemoteSearch/Movie | Get movie remote search. -*ItemLookupAPI* | [**getMusicAlbumRemoteSearchResults**](docs/ItemLookupAPI.md#getmusicalbumremotesearchresults) | **POST** /Items/RemoteSearch/MusicAlbum | Get music album remote search. -*ItemLookupAPI* | [**getMusicArtistRemoteSearchResults**](docs/ItemLookupAPI.md#getmusicartistremotesearchresults) | **POST** /Items/RemoteSearch/MusicArtist | Get music artist remote search. -*ItemLookupAPI* | [**getMusicVideoRemoteSearchResults**](docs/ItemLookupAPI.md#getmusicvideoremotesearchresults) | **POST** /Items/RemoteSearch/MusicVideo | Get music video remote search. -*ItemLookupAPI* | [**getPersonRemoteSearchResults**](docs/ItemLookupAPI.md#getpersonremotesearchresults) | **POST** /Items/RemoteSearch/Person | Get person remote search. -*ItemLookupAPI* | [**getSeriesRemoteSearchResults**](docs/ItemLookupAPI.md#getseriesremotesearchresults) | **POST** /Items/RemoteSearch/Series | Get series remote search. -*ItemLookupAPI* | [**getTrailerRemoteSearchResults**](docs/ItemLookupAPI.md#gettrailerremotesearchresults) | **POST** /Items/RemoteSearch/Trailer | Get trailer remote search. -*ItemRefreshAPI* | [**refreshItem**](docs/ItemRefreshAPI.md#refreshitem) | **POST** /Items/{itemId}/Refresh | Refreshes metadata for an item. -*ItemUpdateAPI* | [**getMetadataEditorInfo**](docs/ItemUpdateAPI.md#getmetadataeditorinfo) | **GET** /Items/{itemId}/MetadataEditor | Gets metadata editor info for an item. -*ItemUpdateAPI* | [**updateItem**](docs/ItemUpdateAPI.md#updateitem) | **POST** /Items/{itemId} | Updates an item. -*ItemUpdateAPI* | [**updateItemContentType**](docs/ItemUpdateAPI.md#updateitemcontenttype) | **POST** /Items/{itemId}/ContentType | Updates an item's content type. -*ItemsAPI* | [**getItems**](docs/ItemsAPI.md#getitems) | **GET** /Items | Gets items based on a query. -*ItemsAPI* | [**getItemsByUserId**](docs/ItemsAPI.md#getitemsbyuserid) | **GET** /Users/{userId}/Items | Gets items based on a query. -*ItemsAPI* | [**getResumeItems**](docs/ItemsAPI.md#getresumeitems) | **GET** /Users/{userId}/Items/Resume | Gets items based on a query. -*LibraryAPI* | [**deleteItem**](docs/LibraryAPI.md#deleteitem) | **DELETE** /Items/{itemId} | Deletes an item from the library and filesystem. -*LibraryAPI* | [**deleteItems**](docs/LibraryAPI.md#deleteitems) | **DELETE** /Items | Deletes items from the library and filesystem. -*LibraryAPI* | [**getAncestors**](docs/LibraryAPI.md#getancestors) | **GET** /Items/{itemId}/Ancestors | Gets all parents of an item. -*LibraryAPI* | [**getCriticReviews**](docs/LibraryAPI.md#getcriticreviews) | **GET** /Items/{itemId}/CriticReviews | Gets critic review for an item. -*LibraryAPI* | [**getDownload**](docs/LibraryAPI.md#getdownload) | **GET** /Items/{itemId}/Download | Downloads item media. -*LibraryAPI* | [**getFile**](docs/LibraryAPI.md#getfile) | **GET** /Items/{itemId}/File | Get the original file of an item. -*LibraryAPI* | [**getItemCounts**](docs/LibraryAPI.md#getitemcounts) | **GET** /Items/Counts | Get item counts. -*LibraryAPI* | [**getLibraryOptionsInfo**](docs/LibraryAPI.md#getlibraryoptionsinfo) | **GET** /Libraries/AvailableOptions | Gets the library options info. -*LibraryAPI* | [**getMediaFolders**](docs/LibraryAPI.md#getmediafolders) | **GET** /Library/MediaFolders | Gets all user media folders. -*LibraryAPI* | [**getPhysicalPaths**](docs/LibraryAPI.md#getphysicalpaths) | **GET** /Library/PhysicalPaths | Gets a list of physical paths from virtual folders. -*LibraryAPI* | [**getSimilarAlbums**](docs/LibraryAPI.md#getsimilaralbums) | **GET** /Albums/{itemId}/Similar | Gets similar items. -*LibraryAPI* | [**getSimilarArtists**](docs/LibraryAPI.md#getsimilarartists) | **GET** /Artists/{itemId}/Similar | Gets similar items. -*LibraryAPI* | [**getSimilarItems**](docs/LibraryAPI.md#getsimilaritems) | **GET** /Items/{itemId}/Similar | Gets similar items. -*LibraryAPI* | [**getSimilarMovies**](docs/LibraryAPI.md#getsimilarmovies) | **GET** /Movies/{itemId}/Similar | Gets similar items. -*LibraryAPI* | [**getSimilarShows**](docs/LibraryAPI.md#getsimilarshows) | **GET** /Shows/{itemId}/Similar | Gets similar items. -*LibraryAPI* | [**getSimilarTrailers**](docs/LibraryAPI.md#getsimilartrailers) | **GET** /Trailers/{itemId}/Similar | Gets similar items. -*LibraryAPI* | [**getThemeMedia**](docs/LibraryAPI.md#getthememedia) | **GET** /Items/{itemId}/ThemeMedia | Get theme songs and videos for an item. -*LibraryAPI* | [**getThemeSongs**](docs/LibraryAPI.md#getthemesongs) | **GET** /Items/{itemId}/ThemeSongs | Get theme songs for an item. -*LibraryAPI* | [**getThemeVideos**](docs/LibraryAPI.md#getthemevideos) | **GET** /Items/{itemId}/ThemeVideos | Get theme videos for an item. -*LibraryAPI* | [**postAddedMovies**](docs/LibraryAPI.md#postaddedmovies) | **POST** /Library/Movies/Added | Reports that new movies have been added by an external source. -*LibraryAPI* | [**postAddedSeries**](docs/LibraryAPI.md#postaddedseries) | **POST** /Library/Series/Added | Reports that new episodes of a series have been added by an external source. -*LibraryAPI* | [**postUpdatedMedia**](docs/LibraryAPI.md#postupdatedmedia) | **POST** /Library/Media/Updated | Reports that new movies have been added by an external source. -*LibraryAPI* | [**postUpdatedMovies**](docs/LibraryAPI.md#postupdatedmovies) | **POST** /Library/Movies/Updated | Reports that new movies have been added by an external source. -*LibraryAPI* | [**postUpdatedSeries**](docs/LibraryAPI.md#postupdatedseries) | **POST** /Library/Series/Updated | Reports that new episodes of a series have been added by an external source. -*LibraryAPI* | [**refreshLibrary**](docs/LibraryAPI.md#refreshlibrary) | **POST** /Library/Refresh | Starts a library scan. -*LibraryStructureAPI* | [**addMediaPath**](docs/LibraryStructureAPI.md#addmediapath) | **POST** /Library/VirtualFolders/Paths | Add a media path to a library. -*LibraryStructureAPI* | [**addVirtualFolder**](docs/LibraryStructureAPI.md#addvirtualfolder) | **POST** /Library/VirtualFolders | Adds a virtual folder. -*LibraryStructureAPI* | [**getVirtualFolders**](docs/LibraryStructureAPI.md#getvirtualfolders) | **GET** /Library/VirtualFolders | Gets all virtual folders. -*LibraryStructureAPI* | [**removeMediaPath**](docs/LibraryStructureAPI.md#removemediapath) | **DELETE** /Library/VirtualFolders/Paths | Remove a media path. -*LibraryStructureAPI* | [**removeVirtualFolder**](docs/LibraryStructureAPI.md#removevirtualfolder) | **DELETE** /Library/VirtualFolders | Removes a virtual folder. -*LibraryStructureAPI* | [**renameVirtualFolder**](docs/LibraryStructureAPI.md#renamevirtualfolder) | **POST** /Library/VirtualFolders/Name | Renames a virtual folder. -*LibraryStructureAPI* | [**updateLibraryOptions**](docs/LibraryStructureAPI.md#updatelibraryoptions) | **POST** /Library/VirtualFolders/LibraryOptions | Update library options. -*LibraryStructureAPI* | [**updateMediaPath**](docs/LibraryStructureAPI.md#updatemediapath) | **POST** /Library/VirtualFolders/Paths/Update | Updates a media path. -*LiveTvAPI* | [**addListingProvider**](docs/LiveTvAPI.md#addlistingprovider) | **POST** /LiveTv/ListingProviders | Adds a listings provider. -*LiveTvAPI* | [**addTunerHost**](docs/LiveTvAPI.md#addtunerhost) | **POST** /LiveTv/TunerHosts | Adds a tuner host. -*LiveTvAPI* | [**cancelSeriesTimer**](docs/LiveTvAPI.md#cancelseriestimer) | **DELETE** /LiveTv/SeriesTimers/{timerId} | Cancels a live tv series timer. -*LiveTvAPI* | [**cancelTimer**](docs/LiveTvAPI.md#canceltimer) | **DELETE** /LiveTv/Timers/{timerId} | Cancels a live tv timer. -*LiveTvAPI* | [**createSeriesTimer**](docs/LiveTvAPI.md#createseriestimer) | **POST** /LiveTv/SeriesTimers | Creates a live tv series timer. -*LiveTvAPI* | [**createTimer**](docs/LiveTvAPI.md#createtimer) | **POST** /LiveTv/Timers | Creates a live tv timer. -*LiveTvAPI* | [**deleteListingProvider**](docs/LiveTvAPI.md#deletelistingprovider) | **DELETE** /LiveTv/ListingProviders | Delete listing provider. -*LiveTvAPI* | [**deleteRecording**](docs/LiveTvAPI.md#deleterecording) | **DELETE** /LiveTv/Recordings/{recordingId} | Deletes a live tv recording. -*LiveTvAPI* | [**deleteTunerHost**](docs/LiveTvAPI.md#deletetunerhost) | **DELETE** /LiveTv/TunerHosts | Deletes a tuner host. -*LiveTvAPI* | [**discoverTuners**](docs/LiveTvAPI.md#discovertuners) | **GET** /LiveTv/Tuners/Discover | Discover tuners. -*LiveTvAPI* | [**discvoverTuners**](docs/LiveTvAPI.md#discvovertuners) | **GET** /LiveTv/Tuners/Discvover | Discover tuners. -*LiveTvAPI* | [**getChannel**](docs/LiveTvAPI.md#getchannel) | **GET** /LiveTv/Channels/{channelId} | Gets a live tv channel. -*LiveTvAPI* | [**getChannelMappingOptions**](docs/LiveTvAPI.md#getchannelmappingoptions) | **GET** /LiveTv/ChannelMappingOptions | Get channel mapping options. -*LiveTvAPI* | [**getDefaultListingProvider**](docs/LiveTvAPI.md#getdefaultlistingprovider) | **GET** /LiveTv/ListingProviders/Default | Gets default listings provider info. -*LiveTvAPI* | [**getDefaultTimer**](docs/LiveTvAPI.md#getdefaulttimer) | **GET** /LiveTv/Timers/Defaults | Gets the default values for a new timer. -*LiveTvAPI* | [**getGuideInfo**](docs/LiveTvAPI.md#getguideinfo) | **GET** /LiveTv/GuideInfo | Get guid info. -*LiveTvAPI* | [**getLineups**](docs/LiveTvAPI.md#getlineups) | **GET** /LiveTv/ListingProviders/Lineups | Gets available lineups. -*LiveTvAPI* | [**getLiveRecordingFile**](docs/LiveTvAPI.md#getliverecordingfile) | **GET** /LiveTv/LiveRecordings/{recordingId}/stream | Gets a live tv recording stream. -*LiveTvAPI* | [**getLiveStreamFile**](docs/LiveTvAPI.md#getlivestreamfile) | **GET** /LiveTv/LiveStreamFiles/{streamId}/stream.{container} | Gets a live tv channel stream. -*LiveTvAPI* | [**getLiveTvChannels**](docs/LiveTvAPI.md#getlivetvchannels) | **GET** /LiveTv/Channels | Gets available live tv channels. -*LiveTvAPI* | [**getLiveTvInfo**](docs/LiveTvAPI.md#getlivetvinfo) | **GET** /LiveTv/Info | Gets available live tv services. -*LiveTvAPI* | [**getLiveTvPrograms**](docs/LiveTvAPI.md#getlivetvprograms) | **GET** /LiveTv/Programs | Gets available live tv epgs. -*LiveTvAPI* | [**getProgram**](docs/LiveTvAPI.md#getprogram) | **GET** /LiveTv/Programs/{programId} | Gets a live tv program. -*LiveTvAPI* | [**getPrograms**](docs/LiveTvAPI.md#getprograms) | **POST** /LiveTv/Programs | Gets available live tv epgs. -*LiveTvAPI* | [**getRecommendedPrograms**](docs/LiveTvAPI.md#getrecommendedprograms) | **GET** /LiveTv/Programs/Recommended | Gets recommended live tv epgs. -*LiveTvAPI* | [**getRecording**](docs/LiveTvAPI.md#getrecording) | **GET** /LiveTv/Recordings/{recordingId} | Gets a live tv recording. -*LiveTvAPI* | [**getRecordingFolders**](docs/LiveTvAPI.md#getrecordingfolders) | **GET** /LiveTv/Recordings/Folders | Gets recording folders. -*LiveTvAPI* | [**getRecordingGroup**](docs/LiveTvAPI.md#getrecordinggroup) | **GET** /LiveTv/Recordings/Groups/{groupId} | Get recording group. -*LiveTvAPI* | [**getRecordingGroups**](docs/LiveTvAPI.md#getrecordinggroups) | **GET** /LiveTv/Recordings/Groups | Gets live tv recording groups. -*LiveTvAPI* | [**getRecordings**](docs/LiveTvAPI.md#getrecordings) | **GET** /LiveTv/Recordings | Gets live tv recordings. -*LiveTvAPI* | [**getRecordingsSeries**](docs/LiveTvAPI.md#getrecordingsseries) | **GET** /LiveTv/Recordings/Series | Gets live tv recording series. -*LiveTvAPI* | [**getSchedulesDirectCountries**](docs/LiveTvAPI.md#getschedulesdirectcountries) | **GET** /LiveTv/ListingProviders/SchedulesDirect/Countries | Gets available countries. -*LiveTvAPI* | [**getSeriesTimer**](docs/LiveTvAPI.md#getseriestimer) | **GET** /LiveTv/SeriesTimers/{timerId} | Gets a live tv series timer. -*LiveTvAPI* | [**getSeriesTimers**](docs/LiveTvAPI.md#getseriestimers) | **GET** /LiveTv/SeriesTimers | Gets live tv series timers. -*LiveTvAPI* | [**getTimer**](docs/LiveTvAPI.md#gettimer) | **GET** /LiveTv/Timers/{timerId} | Gets a timer. -*LiveTvAPI* | [**getTimers**](docs/LiveTvAPI.md#gettimers) | **GET** /LiveTv/Timers | Gets the live tv timers. -*LiveTvAPI* | [**getTunerHostTypes**](docs/LiveTvAPI.md#gettunerhosttypes) | **GET** /LiveTv/TunerHosts/Types | Get tuner host types. -*LiveTvAPI* | [**resetTuner**](docs/LiveTvAPI.md#resettuner) | **POST** /LiveTv/Tuners/{tunerId}/Reset | Resets a tv tuner. -*LiveTvAPI* | [**setChannelMapping**](docs/LiveTvAPI.md#setchannelmapping) | **POST** /LiveTv/ChannelMappings | Set channel mappings. -*LiveTvAPI* | [**updateSeriesTimer**](docs/LiveTvAPI.md#updateseriestimer) | **POST** /LiveTv/SeriesTimers/{timerId} | Updates a live tv series timer. -*LiveTvAPI* | [**updateTimer**](docs/LiveTvAPI.md#updatetimer) | **POST** /LiveTv/Timers/{timerId} | Updates a live tv timer. -*LocalizationAPI* | [**getCountries**](docs/LocalizationAPI.md#getcountries) | **GET** /Localization/Countries | Gets known countries. -*LocalizationAPI* | [**getCultures**](docs/LocalizationAPI.md#getcultures) | **GET** /Localization/Cultures | Gets known cultures. -*LocalizationAPI* | [**getLocalizationOptions**](docs/LocalizationAPI.md#getlocalizationoptions) | **GET** /Localization/Options | Gets localization options. -*LocalizationAPI* | [**getParentalRatings**](docs/LocalizationAPI.md#getparentalratings) | **GET** /Localization/ParentalRatings | Gets known parental ratings. -*MediaInfoAPI* | [**closeLiveStream**](docs/MediaInfoAPI.md#closelivestream) | **POST** /LiveStreams/Close | Closes a media source. -*MediaInfoAPI* | [**getBitrateTestBytes**](docs/MediaInfoAPI.md#getbitratetestbytes) | **GET** /Playback/BitrateTest | Tests the network with a request with the size of the bitrate. -*MediaInfoAPI* | [**getPlaybackInfo**](docs/MediaInfoAPI.md#getplaybackinfo) | **GET** /Items/{itemId}/PlaybackInfo | Gets live playback media info for an item. -*MediaInfoAPI* | [**getPostedPlaybackInfo**](docs/MediaInfoAPI.md#getpostedplaybackinfo) | **POST** /Items/{itemId}/PlaybackInfo | Gets live playback media info for an item. -*MediaInfoAPI* | [**openLiveStream**](docs/MediaInfoAPI.md#openlivestream) | **POST** /LiveStreams/Open | Opens a media source. -*MoviesAPI* | [**getMovieRecommendations**](docs/MoviesAPI.md#getmovierecommendations) | **GET** /Movies/Recommendations | Gets movie recommendations. -*MusicGenresAPI* | [**getMusicGenre**](docs/MusicGenresAPI.md#getmusicgenre) | **GET** /MusicGenres/{genreName} | Gets a music genre, by name. -*MusicGenresAPI* | [**getMusicGenres**](docs/MusicGenresAPI.md#getmusicgenres) | **GET** /MusicGenres | Gets all music genres from a given item, folder, or the entire library. -*NotificationsAPI* | [**createAdminNotification**](docs/NotificationsAPI.md#createadminnotification) | **POST** /Notifications/Admin | Sends a notification to all admins. -*NotificationsAPI* | [**getNotificationServices**](docs/NotificationsAPI.md#getnotificationservices) | **GET** /Notifications/Services | Gets notification services. -*NotificationsAPI* | [**getNotificationTypes**](docs/NotificationsAPI.md#getnotificationtypes) | **GET** /Notifications/Types | Gets notification types. -*NotificationsAPI* | [**getNotifications**](docs/NotificationsAPI.md#getnotifications) | **GET** /Notifications/{userId} | Gets a user's notifications. -*NotificationsAPI* | [**getNotificationsSummary**](docs/NotificationsAPI.md#getnotificationssummary) | **GET** /Notifications/{userId}/Summary | Gets a user's notification summary. -*NotificationsAPI* | [**setRead**](docs/NotificationsAPI.md#setread) | **POST** /Notifications/{userId}/Read | Sets notifications as read. -*NotificationsAPI* | [**setUnread**](docs/NotificationsAPI.md#setunread) | **POST** /Notifications/{userId}/Unread | Sets notifications as unread. -*PackageAPI* | [**cancelPackageInstallation**](docs/PackageAPI.md#cancelpackageinstallation) | **DELETE** /Packages/Installing/{packageId} | Cancels a package installation. -*PackageAPI* | [**getPackageInfo**](docs/PackageAPI.md#getpackageinfo) | **GET** /Packages/{name} | Gets a package by name or assembly GUID. -*PackageAPI* | [**getPackages**](docs/PackageAPI.md#getpackages) | **GET** /Packages | Gets available packages. -*PackageAPI* | [**getRepositories**](docs/PackageAPI.md#getrepositories) | **GET** /Repositories | Gets all package repositories. -*PackageAPI* | [**installPackage**](docs/PackageAPI.md#installpackage) | **POST** /Packages/Installed/{name} | Installs a package. -*PackageAPI* | [**setRepositories**](docs/PackageAPI.md#setrepositories) | **POST** /Repositories | Sets the enabled and existing package repositories. -*PersonsAPI* | [**getPerson**](docs/PersonsAPI.md#getperson) | **GET** /Persons/{name} | Get person by name. -*PersonsAPI* | [**getPersons**](docs/PersonsAPI.md#getpersons) | **GET** /Persons | Gets all persons. -*PlaylistsAPI* | [**addToPlaylist**](docs/PlaylistsAPI.md#addtoplaylist) | **POST** /Playlists/{playlistId}/Items | Adds items to a playlist. -*PlaylistsAPI* | [**createPlaylist**](docs/PlaylistsAPI.md#createplaylist) | **POST** /Playlists | Creates a new playlist. -*PlaylistsAPI* | [**getPlaylistItems**](docs/PlaylistsAPI.md#getplaylistitems) | **GET** /Playlists/{playlistId}/Items | Gets the original items of a playlist. -*PlaylistsAPI* | [**moveItem**](docs/PlaylistsAPI.md#moveitem) | **POST** /Playlists/{playlistId}/Items/{itemId}/Move/{newIndex} | Moves a playlist item. -*PlaylistsAPI* | [**removeFromPlaylist**](docs/PlaylistsAPI.md#removefromplaylist) | **DELETE** /Playlists/{playlistId}/Items | Removes items from a playlist. -*PlaystateAPI* | [**markPlayedItem**](docs/PlaystateAPI.md#markplayeditem) | **POST** /Users/{userId}/PlayedItems/{itemId} | Marks an item as played for user. -*PlaystateAPI* | [**markUnplayedItem**](docs/PlaystateAPI.md#markunplayeditem) | **DELETE** /Users/{userId}/PlayedItems/{itemId} | Marks an item as unplayed for user. -*PlaystateAPI* | [**onPlaybackProgress**](docs/PlaystateAPI.md#onplaybackprogress) | **POST** /Users/{userId}/PlayingItems/{itemId}/Progress | Reports a user's playback progress. -*PlaystateAPI* | [**onPlaybackStart**](docs/PlaystateAPI.md#onplaybackstart) | **POST** /Users/{userId}/PlayingItems/{itemId} | Reports that a user has begun playing an item. -*PlaystateAPI* | [**onPlaybackStopped**](docs/PlaystateAPI.md#onplaybackstopped) | **DELETE** /Users/{userId}/PlayingItems/{itemId} | Reports that a user has stopped playing an item. -*PlaystateAPI* | [**pingPlaybackSession**](docs/PlaystateAPI.md#pingplaybacksession) | **POST** /Sessions/Playing/Ping | Pings a playback session. -*PlaystateAPI* | [**reportPlaybackProgress**](docs/PlaystateAPI.md#reportplaybackprogress) | **POST** /Sessions/Playing/Progress | Reports playback progress within a session. -*PlaystateAPI* | [**reportPlaybackStart**](docs/PlaystateAPI.md#reportplaybackstart) | **POST** /Sessions/Playing | Reports playback has started within a session. -*PlaystateAPI* | [**reportPlaybackStopped**](docs/PlaystateAPI.md#reportplaybackstopped) | **POST** /Sessions/Playing/Stopped | Reports playback has stopped within a session. -*PluginsAPI* | [**disablePlugin**](docs/PluginsAPI.md#disableplugin) | **POST** /Plugins/{pluginId}/{version}/Disable | Disable a plugin. -*PluginsAPI* | [**enablePlugin**](docs/PluginsAPI.md#enableplugin) | **POST** /Plugins/{pluginId}/{version}/Enable | Enables a disabled plugin. -*PluginsAPI* | [**getPluginConfiguration**](docs/PluginsAPI.md#getpluginconfiguration) | **GET** /Plugins/{pluginId}/Configuration | Gets plugin configuration. -*PluginsAPI* | [**getPluginImage**](docs/PluginsAPI.md#getpluginimage) | **GET** /Plugins/{pluginId}/{version}/Image | Gets a plugin's image. -*PluginsAPI* | [**getPluginManifest**](docs/PluginsAPI.md#getpluginmanifest) | **POST** /Plugins/{pluginId}/Manifest | Gets a plugin's manifest. -*PluginsAPI* | [**getPlugins**](docs/PluginsAPI.md#getplugins) | **GET** /Plugins | Gets a list of currently installed plugins. -*PluginsAPI* | [**uninstallPlugin**](docs/PluginsAPI.md#uninstallplugin) | **DELETE** /Plugins/{pluginId} | Uninstalls a plugin. -*PluginsAPI* | [**uninstallPluginByVersion**](docs/PluginsAPI.md#uninstallpluginbyversion) | **DELETE** /Plugins/{pluginId}/{version} | Uninstalls a plugin by version. -*PluginsAPI* | [**updatePluginConfiguration**](docs/PluginsAPI.md#updatepluginconfiguration) | **POST** /Plugins/{pluginId}/Configuration | Updates plugin configuration. -*QuickConnectAPI* | [**authorize**](docs/QuickConnectAPI.md#authorize) | **POST** /QuickConnect/Authorize | Authorizes a pending quick connect request. -*QuickConnectAPI* | [**connect**](docs/QuickConnectAPI.md#connect) | **GET** /QuickConnect/Connect | Attempts to retrieve authentication information. -*QuickConnectAPI* | [**getEnabled**](docs/QuickConnectAPI.md#getenabled) | **GET** /QuickConnect/Enabled | Gets the current quick connect state. -*QuickConnectAPI* | [**initiate**](docs/QuickConnectAPI.md#initiate) | **GET** /QuickConnect/Initiate | Initiate a new quick connect request. -*RemoteImageAPI* | [**downloadRemoteImage**](docs/RemoteImageAPI.md#downloadremoteimage) | **POST** /Items/{itemId}/RemoteImages/Download | Downloads a remote image for an item. -*RemoteImageAPI* | [**getRemoteImageProviders**](docs/RemoteImageAPI.md#getremoteimageproviders) | **GET** /Items/{itemId}/RemoteImages/Providers | Gets available remote image providers for an item. -*RemoteImageAPI* | [**getRemoteImages**](docs/RemoteImageAPI.md#getremoteimages) | **GET** /Items/{itemId}/RemoteImages | Gets available remote images for an item. -*ScheduledTasksAPI* | [**getTask**](docs/ScheduledTasksAPI.md#gettask) | **GET** /ScheduledTasks/{taskId} | Get task by id. -*ScheduledTasksAPI* | [**getTasks**](docs/ScheduledTasksAPI.md#gettasks) | **GET** /ScheduledTasks | Get tasks. -*ScheduledTasksAPI* | [**startTask**](docs/ScheduledTasksAPI.md#starttask) | **POST** /ScheduledTasks/Running/{taskId} | Start specified task. -*ScheduledTasksAPI* | [**stopTask**](docs/ScheduledTasksAPI.md#stoptask) | **DELETE** /ScheduledTasks/Running/{taskId} | Stop specified task. -*ScheduledTasksAPI* | [**updateTask**](docs/ScheduledTasksAPI.md#updatetask) | **POST** /ScheduledTasks/{taskId}/Triggers | Update specified task triggers. -*SearchAPI* | [**callGet**](docs/SearchAPI.md#callget) | **GET** /Search/Hints | Gets the search hint result. -*SessionAPI* | [**addUserToSession**](docs/SessionAPI.md#addusertosession) | **POST** /Sessions/{sessionId}/User/{userId} | Adds an additional user to a session. -*SessionAPI* | [**displayContent**](docs/SessionAPI.md#displaycontent) | **POST** /Sessions/{sessionId}/Viewing | Instructs a session to browse to an item or view. -*SessionAPI* | [**getAuthProviders**](docs/SessionAPI.md#getauthproviders) | **GET** /Auth/Providers | Get all auth providers. -*SessionAPI* | [**getPasswordResetProviders**](docs/SessionAPI.md#getpasswordresetproviders) | **GET** /Auth/PasswordResetProviders | Get all password reset providers. -*SessionAPI* | [**getSessions**](docs/SessionAPI.md#getsessions) | **GET** /Sessions | Gets a list of sessions. -*SessionAPI* | [**play**](docs/SessionAPI.md#play) | **POST** /Sessions/{sessionId}/Playing | Instructs a session to play an item. -*SessionAPI* | [**postCapabilities**](docs/SessionAPI.md#postcapabilities) | **POST** /Sessions/Capabilities | Updates capabilities for a device. -*SessionAPI* | [**postFullCapabilities**](docs/SessionAPI.md#postfullcapabilities) | **POST** /Sessions/Capabilities/Full | Updates capabilities for a device. -*SessionAPI* | [**removeUserFromSession**](docs/SessionAPI.md#removeuserfromsession) | **DELETE** /Sessions/{sessionId}/User/{userId} | Removes an additional user from a session. -*SessionAPI* | [**reportSessionEnded**](docs/SessionAPI.md#reportsessionended) | **POST** /Sessions/Logout | Reports that a session has ended. -*SessionAPI* | [**reportViewing**](docs/SessionAPI.md#reportviewing) | **POST** /Sessions/Viewing | Reports that a session is viewing an item. -*SessionAPI* | [**sendFullGeneralCommand**](docs/SessionAPI.md#sendfullgeneralcommand) | **POST** /Sessions/{sessionId}/Command | Issues a full general command to a client. -*SessionAPI* | [**sendGeneralCommand**](docs/SessionAPI.md#sendgeneralcommand) | **POST** /Sessions/{sessionId}/Command/{command} | Issues a general command to a client. -*SessionAPI* | [**sendMessageCommand**](docs/SessionAPI.md#sendmessagecommand) | **POST** /Sessions/{sessionId}/Message | Issues a command to a client to display a message to the user. -*SessionAPI* | [**sendPlaystateCommand**](docs/SessionAPI.md#sendplaystatecommand) | **POST** /Sessions/{sessionId}/Playing/{command} | Issues a playstate command to a client. -*SessionAPI* | [**sendSystemCommand**](docs/SessionAPI.md#sendsystemcommand) | **POST** /Sessions/{sessionId}/System/{command} | Issues a system command to a client. -*StartupAPI* | [**completeWizard**](docs/StartupAPI.md#completewizard) | **POST** /Startup/Complete | Completes the startup wizard. -*StartupAPI* | [**getFirstUser**](docs/StartupAPI.md#getfirstuser) | **GET** /Startup/User | Gets the first user. -*StartupAPI* | [**getFirstUser2**](docs/StartupAPI.md#getfirstuser2) | **GET** /Startup/FirstUser | Gets the first user. -*StartupAPI* | [**getStartupConfiguration**](docs/StartupAPI.md#getstartupconfiguration) | **GET** /Startup/Configuration | Gets the initial startup wizard configuration. -*StartupAPI* | [**setRemoteAccess**](docs/StartupAPI.md#setremoteaccess) | **POST** /Startup/RemoteAccess | Sets remote access and UPnP. -*StartupAPI* | [**updateInitialConfiguration**](docs/StartupAPI.md#updateinitialconfiguration) | **POST** /Startup/Configuration | Sets the initial startup wizard configuration. -*StartupAPI* | [**updateStartupUser**](docs/StartupAPI.md#updatestartupuser) | **POST** /Startup/User | Sets the user name and password. -*StudiosAPI* | [**getStudio**](docs/StudiosAPI.md#getstudio) | **GET** /Studios/{name} | Gets a studio by name. -*StudiosAPI* | [**getStudios**](docs/StudiosAPI.md#getstudios) | **GET** /Studios | Gets all studios from a given item, folder, or the entire library. -*SubtitleAPI* | [**deleteSubtitle**](docs/SubtitleAPI.md#deletesubtitle) | **DELETE** /Videos/{itemId}/Subtitles/{index} | Deletes an external subtitle file. -*SubtitleAPI* | [**downloadRemoteSubtitles**](docs/SubtitleAPI.md#downloadremotesubtitles) | **POST** /Items/{itemId}/RemoteSearch/Subtitles/{subtitleId} | Downloads a remote subtitle. -*SubtitleAPI* | [**getFallbackFont**](docs/SubtitleAPI.md#getfallbackfont) | **GET** /FallbackFont/Fonts/{name} | Gets a fallback font file. -*SubtitleAPI* | [**getFallbackFontList**](docs/SubtitleAPI.md#getfallbackfontlist) | **GET** /FallbackFont/Fonts | Gets a list of available fallback font files. -*SubtitleAPI* | [**getRemoteSubtitles**](docs/SubtitleAPI.md#getremotesubtitles) | **GET** /Providers/Subtitles/Subtitles/{id} | Gets the remote subtitles. -*SubtitleAPI* | [**getSubtitle**](docs/SubtitleAPI.md#getsubtitle) | **GET** /Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/Stream.{routeFormat} | Gets subtitles in a specified format. -*SubtitleAPI* | [**getSubtitlePlaylist**](docs/SubtitleAPI.md#getsubtitleplaylist) | **GET** /Videos/{itemId}/{mediaSourceId}/Subtitles/{index}/subtitles.m3u8 | Gets an HLS subtitle playlist. -*SubtitleAPI* | [**getSubtitleWithTicks**](docs/SubtitleAPI.md#getsubtitlewithticks) | **GET** /Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/{routeStartPositionTicks}/Stream.{routeFormat} | Gets subtitles in a specified format. -*SubtitleAPI* | [**searchRemoteSubtitles**](docs/SubtitleAPI.md#searchremotesubtitles) | **GET** /Items/{itemId}/RemoteSearch/Subtitles/{language} | Search remote subtitles. -*SubtitleAPI* | [**uploadSubtitle**](docs/SubtitleAPI.md#uploadsubtitle) | **POST** /Videos/{itemId}/Subtitles | Upload an external subtitle file. -*SuggestionsAPI* | [**getSuggestions**](docs/SuggestionsAPI.md#getsuggestions) | **GET** /Users/{userId}/Suggestions | Gets suggestions. -*SyncPlayAPI* | [**syncPlayBuffering**](docs/SyncPlayAPI.md#syncplaybuffering) | **POST** /SyncPlay/Buffering | Notify SyncPlay group that member is buffering. -*SyncPlayAPI* | [**syncPlayCreateGroup**](docs/SyncPlayAPI.md#syncplaycreategroup) | **POST** /SyncPlay/New | Create a new SyncPlay group. -*SyncPlayAPI* | [**syncPlayGetGroups**](docs/SyncPlayAPI.md#syncplaygetgroups) | **GET** /SyncPlay/List | Gets all SyncPlay groups. -*SyncPlayAPI* | [**syncPlayJoinGroup**](docs/SyncPlayAPI.md#syncplayjoingroup) | **POST** /SyncPlay/Join | Join an existing SyncPlay group. -*SyncPlayAPI* | [**syncPlayLeaveGroup**](docs/SyncPlayAPI.md#syncplayleavegroup) | **POST** /SyncPlay/Leave | Leave the joined SyncPlay group. -*SyncPlayAPI* | [**syncPlayMovePlaylistItem**](docs/SyncPlayAPI.md#syncplaymoveplaylistitem) | **POST** /SyncPlay/MovePlaylistItem | Request to move an item in the playlist in SyncPlay group. -*SyncPlayAPI* | [**syncPlayNextItem**](docs/SyncPlayAPI.md#syncplaynextitem) | **POST** /SyncPlay/NextItem | Request next item in SyncPlay group. -*SyncPlayAPI* | [**syncPlayPause**](docs/SyncPlayAPI.md#syncplaypause) | **POST** /SyncPlay/Pause | Request pause in SyncPlay group. -*SyncPlayAPI* | [**syncPlayPing**](docs/SyncPlayAPI.md#syncplayping) | **POST** /SyncPlay/Ping | Update session ping. -*SyncPlayAPI* | [**syncPlayPreviousItem**](docs/SyncPlayAPI.md#syncplaypreviousitem) | **POST** /SyncPlay/PreviousItem | Request previous item in SyncPlay group. -*SyncPlayAPI* | [**syncPlayQueue**](docs/SyncPlayAPI.md#syncplayqueue) | **POST** /SyncPlay/Queue | Request to queue items to the playlist of a SyncPlay group. -*SyncPlayAPI* | [**syncPlayReady**](docs/SyncPlayAPI.md#syncplayready) | **POST** /SyncPlay/Ready | Notify SyncPlay group that member is ready for playback. -*SyncPlayAPI* | [**syncPlayRemoveFromPlaylist**](docs/SyncPlayAPI.md#syncplayremovefromplaylist) | **POST** /SyncPlay/RemoveFromPlaylist | Request to remove items from the playlist in SyncPlay group. -*SyncPlayAPI* | [**syncPlaySeek**](docs/SyncPlayAPI.md#syncplayseek) | **POST** /SyncPlay/Seek | Request seek in SyncPlay group. -*SyncPlayAPI* | [**syncPlaySetIgnoreWait**](docs/SyncPlayAPI.md#syncplaysetignorewait) | **POST** /SyncPlay/SetIgnoreWait | Request SyncPlay group to ignore member during group-wait. -*SyncPlayAPI* | [**syncPlaySetNewQueue**](docs/SyncPlayAPI.md#syncplaysetnewqueue) | **POST** /SyncPlay/SetNewQueue | Request to set new playlist in SyncPlay group. -*SyncPlayAPI* | [**syncPlaySetPlaylistItem**](docs/SyncPlayAPI.md#syncplaysetplaylistitem) | **POST** /SyncPlay/SetPlaylistItem | Request to change playlist item in SyncPlay group. -*SyncPlayAPI* | [**syncPlaySetRepeatMode**](docs/SyncPlayAPI.md#syncplaysetrepeatmode) | **POST** /SyncPlay/SetRepeatMode | Request to set repeat mode in SyncPlay group. -*SyncPlayAPI* | [**syncPlaySetShuffleMode**](docs/SyncPlayAPI.md#syncplaysetshufflemode) | **POST** /SyncPlay/SetShuffleMode | Request to set shuffle mode in SyncPlay group. -*SyncPlayAPI* | [**syncPlayStop**](docs/SyncPlayAPI.md#syncplaystop) | **POST** /SyncPlay/Stop | Request stop in SyncPlay group. -*SyncPlayAPI* | [**syncPlayUnpause**](docs/SyncPlayAPI.md#syncplayunpause) | **POST** /SyncPlay/Unpause | Request unpause in SyncPlay group. -*SystemAPI* | [**getEndpointInfo**](docs/SystemAPI.md#getendpointinfo) | **GET** /System/Endpoint | Gets information about the request endpoint. -*SystemAPI* | [**getLogFile**](docs/SystemAPI.md#getlogfile) | **GET** /System/Logs/Log | Gets a log file. -*SystemAPI* | [**getPingSystem**](docs/SystemAPI.md#getpingsystem) | **GET** /System/Ping | Pings the system. -*SystemAPI* | [**getPublicSystemInfo**](docs/SystemAPI.md#getpublicsysteminfo) | **GET** /System/Info/Public | Gets public information about the server. -*SystemAPI* | [**getServerLogs**](docs/SystemAPI.md#getserverlogs) | **GET** /System/Logs | Gets a list of available server log files. -*SystemAPI* | [**getSystemInfo**](docs/SystemAPI.md#getsysteminfo) | **GET** /System/Info | Gets information about the server. -*SystemAPI* | [**getWakeOnLanInfo**](docs/SystemAPI.md#getwakeonlaninfo) | **GET** /System/WakeOnLanInfo | Gets wake on lan information. -*SystemAPI* | [**postPingSystem**](docs/SystemAPI.md#postpingsystem) | **POST** /System/Ping | Pings the system. -*SystemAPI* | [**restartApplication**](docs/SystemAPI.md#restartapplication) | **POST** /System/Restart | Restarts the application. -*SystemAPI* | [**shutdownApplication**](docs/SystemAPI.md#shutdownapplication) | **POST** /System/Shutdown | Shuts down the application. -*TimeSyncAPI* | [**getUtcTime**](docs/TimeSyncAPI.md#getutctime) | **GET** /GetUtcTime | Gets the current UTC time. -*TmdbAPI* | [**tmdbClientConfiguration**](docs/TmdbAPI.md#tmdbclientconfiguration) | **GET** /Tmdb/ClientConfiguration | Gets the TMDb image configuration options. -*TrailersAPI* | [**getTrailers**](docs/TrailersAPI.md#gettrailers) | **GET** /Trailers | Finds movies and trailers similar to a given trailer. -*TvShowsAPI* | [**getEpisodes**](docs/TvShowsAPI.md#getepisodes) | **GET** /Shows/{seriesId}/Episodes | Gets episodes for a tv season. -*TvShowsAPI* | [**getNextUp**](docs/TvShowsAPI.md#getnextup) | **GET** /Shows/NextUp | Gets a list of next up episodes. -*TvShowsAPI* | [**getSeasons**](docs/TvShowsAPI.md#getseasons) | **GET** /Shows/{seriesId}/Seasons | Gets seasons for a tv series. -*TvShowsAPI* | [**getUpcomingEpisodes**](docs/TvShowsAPI.md#getupcomingepisodes) | **GET** /Shows/Upcoming | Gets a list of upcoming episodes. -*UniversalAudioAPI* | [**getUniversalAudioStream**](docs/UniversalAudioAPI.md#getuniversalaudiostream) | **GET** /Audio/{itemId}/universal | Gets an audio stream. -*UniversalAudioAPI* | [**headUniversalAudioStream**](docs/UniversalAudioAPI.md#headuniversalaudiostream) | **HEAD** /Audio/{itemId}/universal | Gets an audio stream. -*UserAPI* | [**authenticateUser**](docs/UserAPI.md#authenticateuser) | **POST** /Users/{userId}/Authenticate | Authenticates a user. -*UserAPI* | [**authenticateUserByName**](docs/UserAPI.md#authenticateuserbyname) | **POST** /Users/AuthenticateByName | Authenticates a user by name. -*UserAPI* | [**authenticateWithQuickConnect**](docs/UserAPI.md#authenticatewithquickconnect) | **POST** /Users/AuthenticateWithQuickConnect | Authenticates a user with quick connect. -*UserAPI* | [**createUserByName**](docs/UserAPI.md#createuserbyname) | **POST** /Users/New | Creates a user. -*UserAPI* | [**deleteUser**](docs/UserAPI.md#deleteuser) | **DELETE** /Users/{userId} | Deletes a user. -*UserAPI* | [**forgotPassword**](docs/UserAPI.md#forgotpassword) | **POST** /Users/ForgotPassword | Initiates the forgot password process for a local user. -*UserAPI* | [**forgotPasswordPin**](docs/UserAPI.md#forgotpasswordpin) | **POST** /Users/ForgotPassword/Pin | Redeems a forgot password pin. -*UserAPI* | [**getCurrentUser**](docs/UserAPI.md#getcurrentuser) | **GET** /Users/Me | Gets the user based on auth token. -*UserAPI* | [**getPublicUsers**](docs/UserAPI.md#getpublicusers) | **GET** /Users/Public | Gets a list of publicly visible users for display on a login screen. -*UserAPI* | [**getUserById**](docs/UserAPI.md#getuserbyid) | **GET** /Users/{userId} | Gets a user by Id. -*UserAPI* | [**getUsers**](docs/UserAPI.md#getusers) | **GET** /Users | Gets a list of users. -*UserAPI* | [**updateUser**](docs/UserAPI.md#updateuser) | **POST** /Users/{userId} | Updates a user. -*UserAPI* | [**updateUserConfiguration**](docs/UserAPI.md#updateuserconfiguration) | **POST** /Users/{userId}/Configuration | Updates a user configuration. -*UserAPI* | [**updateUserEasyPassword**](docs/UserAPI.md#updateusereasypassword) | **POST** /Users/{userId}/EasyPassword | Updates a user's easy password. -*UserAPI* | [**updateUserPassword**](docs/UserAPI.md#updateuserpassword) | **POST** /Users/{userId}/Password | Updates a user's password. -*UserAPI* | [**updateUserPolicy**](docs/UserAPI.md#updateuserpolicy) | **POST** /Users/{userId}/Policy | Updates a user policy. -*UserLibraryAPI* | [**deleteUserItemRating**](docs/UserLibraryAPI.md#deleteuseritemrating) | **DELETE** /Users/{userId}/Items/{itemId}/Rating | Deletes a user's saved personal rating for an item. -*UserLibraryAPI* | [**getIntros**](docs/UserLibraryAPI.md#getintros) | **GET** /Users/{userId}/Items/{itemId}/Intros | Gets intros to play before the main media item plays. -*UserLibraryAPI* | [**getItem**](docs/UserLibraryAPI.md#getitem) | **GET** /Users/{userId}/Items/{itemId} | Gets an item from a user's library. -*UserLibraryAPI* | [**getLatestMedia**](docs/UserLibraryAPI.md#getlatestmedia) | **GET** /Users/{userId}/Items/Latest | Gets latest media. -*UserLibraryAPI* | [**getLocalTrailers**](docs/UserLibraryAPI.md#getlocaltrailers) | **GET** /Users/{userId}/Items/{itemId}/LocalTrailers | Gets local trailers for an item. -*UserLibraryAPI* | [**getRootFolder**](docs/UserLibraryAPI.md#getrootfolder) | **GET** /Users/{userId}/Items/Root | Gets the root folder from a user's library. -*UserLibraryAPI* | [**getSpecialFeatures**](docs/UserLibraryAPI.md#getspecialfeatures) | **GET** /Users/{userId}/Items/{itemId}/SpecialFeatures | Gets special features for an item. -*UserLibraryAPI* | [**markFavoriteItem**](docs/UserLibraryAPI.md#markfavoriteitem) | **POST** /Users/{userId}/FavoriteItems/{itemId} | Marks an item as a favorite. -*UserLibraryAPI* | [**unmarkFavoriteItem**](docs/UserLibraryAPI.md#unmarkfavoriteitem) | **DELETE** /Users/{userId}/FavoriteItems/{itemId} | Unmarks item as a favorite. -*UserLibraryAPI* | [**updateUserItemRating**](docs/UserLibraryAPI.md#updateuseritemrating) | **POST** /Users/{userId}/Items/{itemId}/Rating | Updates a user's rating for an item. -*UserViewsAPI* | [**getGroupingOptions**](docs/UserViewsAPI.md#getgroupingoptions) | **GET** /Users/{userId}/GroupingOptions | Get user view grouping options. -*UserViewsAPI* | [**getUserViews**](docs/UserViewsAPI.md#getuserviews) | **GET** /Users/{userId}/Views | Get user views. -*VideoAttachmentsAPI* | [**getAttachment**](docs/VideoAttachmentsAPI.md#getattachment) | **GET** /Videos/{videoId}/{mediaSourceId}/Attachments/{index} | Get video attachment. -*VideosAPI* | [**deleteAlternateSources**](docs/VideosAPI.md#deletealternatesources) | **DELETE** /Videos/{itemId}/AlternateSources | Removes alternate video sources. -*VideosAPI* | [**getAdditionalPart**](docs/VideosAPI.md#getadditionalpart) | **GET** /Videos/{itemId}/AdditionalParts | Gets additional parts for a video. -*VideosAPI* | [**getVideoStream**](docs/VideosAPI.md#getvideostream) | **GET** /Videos/{itemId}/stream | Gets a video stream. -*VideosAPI* | [**getVideoStreamByContainer**](docs/VideosAPI.md#getvideostreambycontainer) | **GET** /Videos/{itemId}/stream.{container} | Gets a video stream. -*VideosAPI* | [**headVideoStream**](docs/VideosAPI.md#headvideostream) | **HEAD** /Videos/{itemId}/stream | Gets a video stream. -*VideosAPI* | [**headVideoStreamByContainer**](docs/VideosAPI.md#headvideostreambycontainer) | **HEAD** /Videos/{itemId}/stream.{container} | Gets a video stream. -*VideosAPI* | [**mergeVersions**](docs/VideosAPI.md#mergeversions) | **POST** /Videos/MergeVersions | Merges videos into a single record. -*YearsAPI* | [**getYear**](docs/YearsAPI.md#getyear) | **GET** /Years/{year} | Gets a year. -*YearsAPI* | [**getYears**](docs/YearsAPI.md#getyears) | **GET** /Years | Get years. - - -## Documentation For Models - - - [AccessSchedule](docs/AccessSchedule.md) - - [ActivityLogEntry](docs/ActivityLogEntry.md) - - [ActivityLogEntryQueryResult](docs/ActivityLogEntryQueryResult.md) - - [AddListingProviderRequest](docs/AddListingProviderRequest.md) - - [AddMediaPathRequest](docs/AddMediaPathRequest.md) - - [AddTunerHostRequest](docs/AddTunerHostRequest.md) - - [AddVirtualFolderDto](docs/AddVirtualFolderDto.md) - - [AddVirtualFolderDtoLibraryOptions](docs/AddVirtualFolderDtoLibraryOptions.md) - - [AddVirtualFolderRequest](docs/AddVirtualFolderRequest.md) - - [AdminNotificationDto](docs/AdminNotificationDto.md) - - [AlbumInfo](docs/AlbumInfo.md) - - [AlbumInfoRemoteSearchQuery](docs/AlbumInfoRemoteSearchQuery.md) - - [AlbumInfoRemoteSearchQuerySearchInfo](docs/AlbumInfoRemoteSearchQuerySearchInfo.md) - - [AllThemeMediaResult](docs/AllThemeMediaResult.md) - - [AllThemeMediaResultThemeVideosResult](docs/AllThemeMediaResultThemeVideosResult.md) - - [ApplySearchCriteriaRequest](docs/ApplySearchCriteriaRequest.md) - - [Architecture](docs/Architecture.md) - - [ArtistInfo](docs/ArtistInfo.md) - - [ArtistInfoRemoteSearchQuery](docs/ArtistInfoRemoteSearchQuery.md) - - [ArtistInfoRemoteSearchQuerySearchInfo](docs/ArtistInfoRemoteSearchQuerySearchInfo.md) - - [AuthenticateUserByName](docs/AuthenticateUserByName.md) - - [AuthenticateUserByNameRequest](docs/AuthenticateUserByNameRequest.md) - - [AuthenticateWithQuickConnectRequest](docs/AuthenticateWithQuickConnectRequest.md) - - [AuthenticationInfo](docs/AuthenticationInfo.md) - - [AuthenticationInfoQueryResult](docs/AuthenticationInfoQueryResult.md) - - [AuthenticationResult](docs/AuthenticationResult.md) - - [AuthenticationResultSessionInfo](docs/AuthenticationResultSessionInfo.md) - - [AuthenticationResultUser](docs/AuthenticationResultUser.md) - - [BaseItem](docs/BaseItem.md) - - [BaseItemDto](docs/BaseItemDto.md) - - [BaseItemDtoImageBlurHashes](docs/BaseItemDtoImageBlurHashes.md) - - [BaseItemDtoQueryResult](docs/BaseItemDtoQueryResult.md) - - [BaseItemDtoUserData](docs/BaseItemDtoUserData.md) - - [BaseItemKind](docs/BaseItemKind.md) - - [BaseItemPerson](docs/BaseItemPerson.md) - - [BaseItemPersonImageBlurHashes](docs/BaseItemPersonImageBlurHashes.md) - - [BookInfo](docs/BookInfo.md) - - [BookInfoRemoteSearchQuery](docs/BookInfoRemoteSearchQuery.md) - - [BookInfoRemoteSearchQuerySearchInfo](docs/BookInfoRemoteSearchQuerySearchInfo.md) - - [BoxSetInfo](docs/BoxSetInfo.md) - - [BoxSetInfoRemoteSearchQuery](docs/BoxSetInfoRemoteSearchQuery.md) - - [BoxSetInfoRemoteSearchQuerySearchInfo](docs/BoxSetInfoRemoteSearchQuerySearchInfo.md) - - [BrandingOptions](docs/BrandingOptions.md) - - [BufferRequestDto](docs/BufferRequestDto.md) - - [ChannelFeatures](docs/ChannelFeatures.md) - - [ChannelItemSortField](docs/ChannelItemSortField.md) - - [ChannelMappingOptionsDto](docs/ChannelMappingOptionsDto.md) - - [ChannelMediaContentType](docs/ChannelMediaContentType.md) - - [ChannelMediaType](docs/ChannelMediaType.md) - - [ChannelType](docs/ChannelType.md) - - [ChapterInfo](docs/ChapterInfo.md) - - [ClientCapabilities](docs/ClientCapabilities.md) - - [ClientCapabilitiesDeviceProfile](docs/ClientCapabilitiesDeviceProfile.md) - - [ClientCapabilitiesDto](docs/ClientCapabilitiesDto.md) - - [ClientLogDocumentResponseDto](docs/ClientLogDocumentResponseDto.md) - - [CodecProfile](docs/CodecProfile.md) - - [CodecType](docs/CodecType.md) - - [CollectionCreationResult](docs/CollectionCreationResult.md) - - [CollectionTypeOptions](docs/CollectionTypeOptions.md) - - [ConfigImageTypes](docs/ConfigImageTypes.md) - - [ConfigurationPageInfo](docs/ConfigurationPageInfo.md) - - [ContainerProfile](docs/ContainerProfile.md) - - [ControlResponse](docs/ControlResponse.md) - - [CountryInfo](docs/CountryInfo.md) - - [CreateAdminNotificationRequest](docs/CreateAdminNotificationRequest.md) - - [CreatePlaylistDto](docs/CreatePlaylistDto.md) - - [CreatePlaylistRequest](docs/CreatePlaylistRequest.md) - - [CreateProfileRequest](docs/CreateProfileRequest.md) - - [CreateSeriesTimerRequest](docs/CreateSeriesTimerRequest.md) - - [CreateTimerRequest](docs/CreateTimerRequest.md) - - [CreateUserByName](docs/CreateUserByName.md) - - [CreateUserByNameRequest](docs/CreateUserByNameRequest.md) - - [CultureDto](docs/CultureDto.md) - - [DayOfWeek](docs/DayOfWeek.md) - - [DayPattern](docs/DayPattern.md) - - [DefaultDirectoryBrowserInfoDto](docs/DefaultDirectoryBrowserInfoDto.md) - - [DeviceIdentification](docs/DeviceIdentification.md) - - [DeviceInfo](docs/DeviceInfo.md) - - [DeviceInfoCapabilities](docs/DeviceInfoCapabilities.md) - - [DeviceInfoQueryResult](docs/DeviceInfoQueryResult.md) - - [DeviceOptions](docs/DeviceOptions.md) - - [DeviceOptionsDto](docs/DeviceOptionsDto.md) - - [DeviceProfile](docs/DeviceProfile.md) - - [DeviceProfileIdentification](docs/DeviceProfileIdentification.md) - - [DeviceProfileInfo](docs/DeviceProfileInfo.md) - - [DeviceProfileType](docs/DeviceProfileType.md) - - [DirectPlayProfile](docs/DirectPlayProfile.md) - - [DisplayPreferencesDto](docs/DisplayPreferencesDto.md) - - [DlnaOptions](docs/DlnaOptions.md) - - [DlnaProfileType](docs/DlnaProfileType.md) - - [DynamicDayOfWeek](docs/DynamicDayOfWeek.md) - - [EmbeddedSubtitleOptions](docs/EmbeddedSubtitleOptions.md) - - [EncodingContext](docs/EncodingContext.md) - - [EncodingOptions](docs/EncodingOptions.md) - - [EndPointInfo](docs/EndPointInfo.md) - - [ExternalIdInfo](docs/ExternalIdInfo.md) - - [ExternalIdMediaType](docs/ExternalIdMediaType.md) - - [ExternalUrl](docs/ExternalUrl.md) - - [FFmpegLocation](docs/FFmpegLocation.md) - - [FileSystemEntryInfo](docs/FileSystemEntryInfo.md) - - [FileSystemEntryType](docs/FileSystemEntryType.md) - - [FontFile](docs/FontFile.md) - - [ForgotPasswordAction](docs/ForgotPasswordAction.md) - - [ForgotPasswordDto](docs/ForgotPasswordDto.md) - - [ForgotPasswordPinDto](docs/ForgotPasswordPinDto.md) - - [ForgotPasswordPinRequest](docs/ForgotPasswordPinRequest.md) - - [ForgotPasswordRequest](docs/ForgotPasswordRequest.md) - - [ForgotPasswordResult](docs/ForgotPasswordResult.md) - - [GeneralCommand](docs/GeneralCommand.md) - - [GeneralCommandType](docs/GeneralCommandType.md) - - [GetBookRemoteSearchResultsRequest](docs/GetBookRemoteSearchResultsRequest.md) - - [GetBoxSetRemoteSearchResultsRequest](docs/GetBoxSetRemoteSearchResultsRequest.md) - - [GetMovieRemoteSearchResultsRequest](docs/GetMovieRemoteSearchResultsRequest.md) - - [GetMusicAlbumRemoteSearchResultsRequest](docs/GetMusicAlbumRemoteSearchResultsRequest.md) - - [GetMusicArtistRemoteSearchResultsRequest](docs/GetMusicArtistRemoteSearchResultsRequest.md) - - [GetMusicVideoRemoteSearchResultsRequest](docs/GetMusicVideoRemoteSearchResultsRequest.md) - - [GetPersonRemoteSearchResultsRequest](docs/GetPersonRemoteSearchResultsRequest.md) - - [GetPostedPlaybackInfoRequest](docs/GetPostedPlaybackInfoRequest.md) - - [GetProgramsDto](docs/GetProgramsDto.md) - - [GetProgramsRequest](docs/GetProgramsRequest.md) - - [GetSeriesRemoteSearchResultsRequest](docs/GetSeriesRemoteSearchResultsRequest.md) - - [GetTrailerRemoteSearchResultsRequest](docs/GetTrailerRemoteSearchResultsRequest.md) - - [GroupInfoDto](docs/GroupInfoDto.md) - - [GroupQueueMode](docs/GroupQueueMode.md) - - [GroupRepeatMode](docs/GroupRepeatMode.md) - - [GroupShuffleMode](docs/GroupShuffleMode.md) - - [GroupStateType](docs/GroupStateType.md) - - [GroupUpdateType](docs/GroupUpdateType.md) - - [GuideInfo](docs/GuideInfo.md) - - [HardwareEncodingType](docs/HardwareEncodingType.md) - - [HeaderMatchType](docs/HeaderMatchType.md) - - [HttpHeaderInfo](docs/HttpHeaderInfo.md) - - [IPlugin](docs/IPlugin.md) - - [IgnoreWaitRequestDto](docs/IgnoreWaitRequestDto.md) - - [ImageByNameInfo](docs/ImageByNameInfo.md) - - [ImageFormat](docs/ImageFormat.md) - - [ImageInfo](docs/ImageInfo.md) - - [ImageOption](docs/ImageOption.md) - - [ImageOrientation](docs/ImageOrientation.md) - - [ImageProviderInfo](docs/ImageProviderInfo.md) - - [ImageSavingConvention](docs/ImageSavingConvention.md) - - [ImageType](docs/ImageType.md) - - [InstallationInfo](docs/InstallationInfo.md) - - [InstallationInfoPackageInfo](docs/InstallationInfoPackageInfo.md) - - [IsoType](docs/IsoType.md) - - [ItemCounts](docs/ItemCounts.md) - - [ItemFields](docs/ItemFields.md) - - [ItemFilter](docs/ItemFilter.md) - - [JoinGroupRequestDto](docs/JoinGroupRequestDto.md) - - [KeepUntil](docs/KeepUntil.md) - - [LibraryOptionInfoDto](docs/LibraryOptionInfoDto.md) - - [LibraryOptions](docs/LibraryOptions.md) - - [LibraryOptionsResultDto](docs/LibraryOptionsResultDto.md) - - [LibraryTypeOptionsDto](docs/LibraryTypeOptionsDto.md) - - [LibraryUpdateInfo](docs/LibraryUpdateInfo.md) - - [ListingsProviderInfo](docs/ListingsProviderInfo.md) - - [LiveStreamResponse](docs/LiveStreamResponse.md) - - [LiveStreamResponseMediaSource](docs/LiveStreamResponseMediaSource.md) - - [LiveTvInfo](docs/LiveTvInfo.md) - - [LiveTvOptions](docs/LiveTvOptions.md) - - [LiveTvServiceInfo](docs/LiveTvServiceInfo.md) - - [LiveTvServiceStatus](docs/LiveTvServiceStatus.md) - - [LocalizationOption](docs/LocalizationOption.md) - - [LocationType](docs/LocationType.md) - - [LogFile](docs/LogFile.md) - - [LogLevel](docs/LogLevel.md) - - [MediaAttachment](docs/MediaAttachment.md) - - [MediaEncoderPathDto](docs/MediaEncoderPathDto.md) - - [MediaPathDto](docs/MediaPathDto.md) - - [MediaPathDtoPathInfo](docs/MediaPathDtoPathInfo.md) - - [MediaPathInfo](docs/MediaPathInfo.md) - - [MediaProtocol](docs/MediaProtocol.md) - - [MediaSourceInfo](docs/MediaSourceInfo.md) - - [MediaSourceType](docs/MediaSourceType.md) - - [MediaStream](docs/MediaStream.md) - - [MediaStreamType](docs/MediaStreamType.md) - - [MediaUpdateInfoDto](docs/MediaUpdateInfoDto.md) - - [MediaUpdateInfoPathDto](docs/MediaUpdateInfoPathDto.md) - - [MediaUrl](docs/MediaUrl.md) - - [MessageCommand](docs/MessageCommand.md) - - [MetadataConfiguration](docs/MetadataConfiguration.md) - - [MetadataEditorInfo](docs/MetadataEditorInfo.md) - - [MetadataField](docs/MetadataField.md) - - [MetadataOptions](docs/MetadataOptions.md) - - [MetadataRefreshMode](docs/MetadataRefreshMode.md) - - [MovePlaylistItemRequestDto](docs/MovePlaylistItemRequestDto.md) - - [MovieInfo](docs/MovieInfo.md) - - [MovieInfoRemoteSearchQuery](docs/MovieInfoRemoteSearchQuery.md) - - [MovieInfoRemoteSearchQuerySearchInfo](docs/MovieInfoRemoteSearchQuerySearchInfo.md) - - [MusicVideoInfo](docs/MusicVideoInfo.md) - - [MusicVideoInfoRemoteSearchQuery](docs/MusicVideoInfoRemoteSearchQuery.md) - - [MusicVideoInfoRemoteSearchQuerySearchInfo](docs/MusicVideoInfoRemoteSearchQuerySearchInfo.md) - - [NameGuidPair](docs/NameGuidPair.md) - - [NameIdPair](docs/NameIdPair.md) - - [NameValuePair](docs/NameValuePair.md) - - [NetworkConfiguration](docs/NetworkConfiguration.md) - - [NewGroupRequestDto](docs/NewGroupRequestDto.md) - - [NextItemRequestDto](docs/NextItemRequestDto.md) - - [NotificationDto](docs/NotificationDto.md) - - [NotificationLevel](docs/NotificationLevel.md) - - [NotificationOption](docs/NotificationOption.md) - - [NotificationOptions](docs/NotificationOptions.md) - - [NotificationResultDto](docs/NotificationResultDto.md) - - [NotificationTypeInfo](docs/NotificationTypeInfo.md) - - [NotificationsSummaryDto](docs/NotificationsSummaryDto.md) - - [ObjectGroupUpdate](docs/ObjectGroupUpdate.md) - - [OpenLiveStreamDto](docs/OpenLiveStreamDto.md) - - [OpenLiveStreamRequest](docs/OpenLiveStreamRequest.md) - - [PackageInfo](docs/PackageInfo.md) - - [ParentalRating](docs/ParentalRating.md) - - [PathSubstitution](docs/PathSubstitution.md) - - [PersonLookupInfo](docs/PersonLookupInfo.md) - - [PersonLookupInfoRemoteSearchQuery](docs/PersonLookupInfoRemoteSearchQuery.md) - - [PersonLookupInfoRemoteSearchQuerySearchInfo](docs/PersonLookupInfoRemoteSearchQuerySearchInfo.md) - - [PinRedeemResult](docs/PinRedeemResult.md) - - [PingRequestDto](docs/PingRequestDto.md) - - [PlayAccess](docs/PlayAccess.md) - - [PlayCommand](docs/PlayCommand.md) - - [PlayMethod](docs/PlayMethod.md) - - [PlayRequest](docs/PlayRequest.md) - - [PlayRequestDto](docs/PlayRequestDto.md) - - [PlaybackErrorCode](docs/PlaybackErrorCode.md) - - [PlaybackInfoDto](docs/PlaybackInfoDto.md) - - [PlaybackInfoResponse](docs/PlaybackInfoResponse.md) - - [PlaybackProgressInfo](docs/PlaybackProgressInfo.md) - - [PlaybackProgressInfoItem](docs/PlaybackProgressInfoItem.md) - - [PlaybackStartInfo](docs/PlaybackStartInfo.md) - - [PlaybackStopInfo](docs/PlaybackStopInfo.md) - - [PlayerStateInfo](docs/PlayerStateInfo.md) - - [PlaylistCreationResult](docs/PlaylistCreationResult.md) - - [PlaystateCommand](docs/PlaystateCommand.md) - - [PlaystateRequest](docs/PlaystateRequest.md) - - [PluginInfo](docs/PluginInfo.md) - - [PluginStatus](docs/PluginStatus.md) - - [PostFullCapabilitiesRequest](docs/PostFullCapabilitiesRequest.md) - - [PostUpdatedMediaRequest](docs/PostUpdatedMediaRequest.md) - - [PreviousItemRequestDto](docs/PreviousItemRequestDto.md) - - [ProblemDetails](docs/ProblemDetails.md) - - [ProfileCondition](docs/ProfileCondition.md) - - [ProfileConditionType](docs/ProfileConditionType.md) - - [ProfileConditionValue](docs/ProfileConditionValue.md) - - [ProgramAudio](docs/ProgramAudio.md) - - [PublicSystemInfo](docs/PublicSystemInfo.md) - - [QueryFilters](docs/QueryFilters.md) - - [QueryFiltersLegacy](docs/QueryFiltersLegacy.md) - - [QueueItem](docs/QueueItem.md) - - [QueueRequestDto](docs/QueueRequestDto.md) - - [QuickConnectDto](docs/QuickConnectDto.md) - - [QuickConnectResult](docs/QuickConnectResult.md) - - [RatingType](docs/RatingType.md) - - [ReadyRequestDto](docs/ReadyRequestDto.md) - - [RecommendationDto](docs/RecommendationDto.md) - - [RecommendationType](docs/RecommendationType.md) - - [RecordingStatus](docs/RecordingStatus.md) - - [RemoteImageInfo](docs/RemoteImageInfo.md) - - [RemoteImageResult](docs/RemoteImageResult.md) - - [RemoteSearchResult](docs/RemoteSearchResult.md) - - [RemoteSubtitleInfo](docs/RemoteSubtitleInfo.md) - - [RemoveFromPlaylistRequestDto](docs/RemoveFromPlaylistRequestDto.md) - - [RepeatMode](docs/RepeatMode.md) - - [ReportPlaybackProgressRequest](docs/ReportPlaybackProgressRequest.md) - - [ReportPlaybackStartRequest](docs/ReportPlaybackStartRequest.md) - - [ReportPlaybackStoppedRequest](docs/ReportPlaybackStoppedRequest.md) - - [RepositoryInfo](docs/RepositoryInfo.md) - - [ResponseProfile](docs/ResponseProfile.md) - - [ScrollDirection](docs/ScrollDirection.md) - - [SearchHint](docs/SearchHint.md) - - [SearchHintResult](docs/SearchHintResult.md) - - [SeekRequestDto](docs/SeekRequestDto.md) - - [SendCommand](docs/SendCommand.md) - - [SendCommandType](docs/SendCommandType.md) - - [SendFullGeneralCommandRequest](docs/SendFullGeneralCommandRequest.md) - - [SendMessageCommandRequest](docs/SendMessageCommandRequest.md) - - [SendToUserType](docs/SendToUserType.md) - - [SeriesInfo](docs/SeriesInfo.md) - - [SeriesInfoRemoteSearchQuery](docs/SeriesInfoRemoteSearchQuery.md) - - [SeriesInfoRemoteSearchQuerySearchInfo](docs/SeriesInfoRemoteSearchQuerySearchInfo.md) - - [SeriesStatus](docs/SeriesStatus.md) - - [SeriesTimerInfoDto](docs/SeriesTimerInfoDto.md) - - [SeriesTimerInfoDtoQueryResult](docs/SeriesTimerInfoDtoQueryResult.md) - - [ServerConfiguration](docs/ServerConfiguration.md) - - [ServerDiscoveryInfo](docs/ServerDiscoveryInfo.md) - - [SessionInfo](docs/SessionInfo.md) - - [SessionInfoCapabilities](docs/SessionInfoCapabilities.md) - - [SessionInfoFullNowPlayingItem](docs/SessionInfoFullNowPlayingItem.md) - - [SessionInfoNowPlayingItem](docs/SessionInfoNowPlayingItem.md) - - [SessionInfoNowViewingItem](docs/SessionInfoNowViewingItem.md) - - [SessionInfoPlayState](docs/SessionInfoPlayState.md) - - [SessionInfoTranscodingInfo](docs/SessionInfoTranscodingInfo.md) - - [SessionMessageType](docs/SessionMessageType.md) - - [SessionUserInfo](docs/SessionUserInfo.md) - - [SetChannelMappingDto](docs/SetChannelMappingDto.md) - - [SetChannelMappingRequest](docs/SetChannelMappingRequest.md) - - [SetPlaylistItemRequestDto](docs/SetPlaylistItemRequestDto.md) - - [SetRemoteAccessRequest](docs/SetRemoteAccessRequest.md) - - [SetRepeatModeRequestDto](docs/SetRepeatModeRequestDto.md) - - [SetShuffleModeRequestDto](docs/SetShuffleModeRequestDto.md) - - [SongInfo](docs/SongInfo.md) - - [SortOrder](docs/SortOrder.md) - - [SpecialViewOptionDto](docs/SpecialViewOptionDto.md) - - [StartupConfigurationDto](docs/StartupConfigurationDto.md) - - [StartupRemoteAccessDto](docs/StartupRemoteAccessDto.md) - - [StartupUserDto](docs/StartupUserDto.md) - - [SubtitleDeliveryMethod](docs/SubtitleDeliveryMethod.md) - - [SubtitleOptions](docs/SubtitleOptions.md) - - [SubtitlePlaybackMode](docs/SubtitlePlaybackMode.md) - - [SubtitleProfile](docs/SubtitleProfile.md) - - [SyncPlayBufferingRequest](docs/SyncPlayBufferingRequest.md) - - [SyncPlayCreateGroupRequest](docs/SyncPlayCreateGroupRequest.md) - - [SyncPlayJoinGroupRequest](docs/SyncPlayJoinGroupRequest.md) - - [SyncPlayMovePlaylistItemRequest](docs/SyncPlayMovePlaylistItemRequest.md) - - [SyncPlayNextItemRequest](docs/SyncPlayNextItemRequest.md) - - [SyncPlayPingRequest](docs/SyncPlayPingRequest.md) - - [SyncPlayPreviousItemRequest](docs/SyncPlayPreviousItemRequest.md) - - [SyncPlayQueueRequest](docs/SyncPlayQueueRequest.md) - - [SyncPlayReadyRequest](docs/SyncPlayReadyRequest.md) - - [SyncPlayRemoveFromPlaylistRequest](docs/SyncPlayRemoveFromPlaylistRequest.md) - - [SyncPlaySeekRequest](docs/SyncPlaySeekRequest.md) - - [SyncPlaySetIgnoreWaitRequest](docs/SyncPlaySetIgnoreWaitRequest.md) - - [SyncPlaySetNewQueueRequest](docs/SyncPlaySetNewQueueRequest.md) - - [SyncPlaySetPlaylistItemRequest](docs/SyncPlaySetPlaylistItemRequest.md) - - [SyncPlaySetRepeatModeRequest](docs/SyncPlaySetRepeatModeRequest.md) - - [SyncPlaySetShuffleModeRequest](docs/SyncPlaySetShuffleModeRequest.md) - - [SyncPlayUserAccessType](docs/SyncPlayUserAccessType.md) - - [SystemInfo](docs/SystemInfo.md) - - [TaskCompletionStatus](docs/TaskCompletionStatus.md) - - [TaskInfo](docs/TaskInfo.md) - - [TaskInfoLastExecutionResult](docs/TaskInfoLastExecutionResult.md) - - [TaskResult](docs/TaskResult.md) - - [TaskState](docs/TaskState.md) - - [TaskTriggerInfo](docs/TaskTriggerInfo.md) - - [ThemeMediaResult](docs/ThemeMediaResult.md) - - [TimerEventInfo](docs/TimerEventInfo.md) - - [TimerInfoDto](docs/TimerInfoDto.md) - - [TimerInfoDtoProgramInfo](docs/TimerInfoDtoProgramInfo.md) - - [TimerInfoDtoQueryResult](docs/TimerInfoDtoQueryResult.md) - - [TrailerInfo](docs/TrailerInfo.md) - - [TrailerInfoRemoteSearchQuery](docs/TrailerInfoRemoteSearchQuery.md) - - [TrailerInfoRemoteSearchQuerySearchInfo](docs/TrailerInfoRemoteSearchQuerySearchInfo.md) - - [TranscodeSeekInfo](docs/TranscodeSeekInfo.md) - - [TranscodingInfo](docs/TranscodingInfo.md) - - [TranscodingProfile](docs/TranscodingProfile.md) - - [TransportStreamTimestamp](docs/TransportStreamTimestamp.md) - - [TunerChannelMapping](docs/TunerChannelMapping.md) - - [TunerHostInfo](docs/TunerHostInfo.md) - - [TypeOptions](docs/TypeOptions.md) - - [UnratedItem](docs/UnratedItem.md) - - [UpdateConfigurationRequest](docs/UpdateConfigurationRequest.md) - - [UpdateDeviceOptionsRequest](docs/UpdateDeviceOptionsRequest.md) - - [UpdateDisplayPreferencesRequest](docs/UpdateDisplayPreferencesRequest.md) - - [UpdateInitialConfigurationRequest](docs/UpdateInitialConfigurationRequest.md) - - [UpdateItemRequest](docs/UpdateItemRequest.md) - - [UpdateLibraryOptionsDto](docs/UpdateLibraryOptionsDto.md) - - [UpdateLibraryOptionsRequest](docs/UpdateLibraryOptionsRequest.md) - - [UpdateMediaEncoderPathRequest](docs/UpdateMediaEncoderPathRequest.md) - - [UpdateMediaPathRequest](docs/UpdateMediaPathRequest.md) - - [UpdateMediaPathRequestDto](docs/UpdateMediaPathRequestDto.md) - - [UpdateMediaPathRequestDtoPathInfo](docs/UpdateMediaPathRequestDtoPathInfo.md) - - [UpdateStartupUserRequest](docs/UpdateStartupUserRequest.md) - - [UpdateUserConfigurationRequest](docs/UpdateUserConfigurationRequest.md) - - [UpdateUserEasyPassword](docs/UpdateUserEasyPassword.md) - - [UpdateUserEasyPasswordRequest](docs/UpdateUserEasyPasswordRequest.md) - - [UpdateUserPassword](docs/UpdateUserPassword.md) - - [UpdateUserPasswordRequest](docs/UpdateUserPasswordRequest.md) - - [UpdateUserPolicyRequest](docs/UpdateUserPolicyRequest.md) - - [UpdateUserRequest](docs/UpdateUserRequest.md) - - [UploadSubtitleDto](docs/UploadSubtitleDto.md) - - [UploadSubtitleRequest](docs/UploadSubtitleRequest.md) - - [UserConfiguration](docs/UserConfiguration.md) - - [UserDto](docs/UserDto.md) - - [UserDtoConfiguration](docs/UserDtoConfiguration.md) - - [UserDtoPolicy](docs/UserDtoPolicy.md) - - [UserItemDataDto](docs/UserItemDataDto.md) - - [UserPolicy](docs/UserPolicy.md) - - [UtcTimeResponse](docs/UtcTimeResponse.md) - - [ValidatePathDto](docs/ValidatePathDto.md) - - [ValidatePathRequest](docs/ValidatePathRequest.md) - - [VersionInfo](docs/VersionInfo.md) - - [Video3DFormat](docs/Video3DFormat.md) - - [VideoType](docs/VideoType.md) - - [VirtualFolderInfo](docs/VirtualFolderInfo.md) - - [VirtualFolderInfoLibraryOptions](docs/VirtualFolderInfoLibraryOptions.md) - - [WakeOnLanInfo](docs/WakeOnLanInfo.md) - - [XbmcMetadataOptions](docs/XbmcMetadataOptions.md) - - [XmlAttribute](docs/XmlAttribute.md) - - -## Documentation For Authorization - - -## CustomAuthentication - -- **Type**: API key -- **API key parameter name**: Authorization -- **Location**: HTTP header - - -## Author +The mechanism for generating **Entities**, **Extensions**, and **Paths** with CreateAPI is provided as an Xcode command plugin. +1. Download [the latest Jellyfin schema](https://api.jellyfin.org/openapi/jellyfin-openapi-stable.json) +2. Move the schema to **Sources** +3. Delete the current **Entities**, **Extensions**, and **Paths** directories +4. Run the following command in the package directory: +```bash +# runs the CreateAPI Xcode command plugin +$ swift package --allow-writing-to-package-directory generate-api +``` +5. New **Entities**, **Extensions**, and **Paths** directories should be available within the package +Alternatively, you can generate your own Swift Jellyfin SDK using [CreateAPI](https://github.com/CreateAPI/CreateAPI) or any other OpenAPI generator. \ No newline at end of file diff --git a/Sources/.DS_Store b/Sources/.DS_Store index 5008ddfcf..af67c7883 100644 Binary files a/Sources/.DS_Store and b/Sources/.DS_Store differ diff --git a/Sources/Entities/AccessSchedule.swift b/Sources/Entities/AccessSchedule.swift new file mode 100644 index 000000000..76155b70f --- /dev/null +++ b/Sources/Entities/AccessSchedule.swift @@ -0,0 +1,55 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// An entity representing a user's access schedule. +public struct AccessSchedule: Codable, Identifiable { + /// Gets or sets the day of week. + public var dayOfWeek: DynamicDayOfWeek? + /// Gets or sets the end hour. + public var endHour: Double? + /// Gets the id of this instance. + public var id: Int32? + /// Gets or sets the start hour. + public var startHour: Double? + /// Gets the id of the associated user. + public var userID: String? + + public init( + dayOfWeek: DynamicDayOfWeek? = nil, + endHour: Double? = nil, + id: Int32? = nil, + startHour: Double? = nil, + userID: String? = nil + ) { + self.dayOfWeek = dayOfWeek + self.endHour = endHour + self.id = id + self.startHour = startHour + self.userID = userID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.dayOfWeek = try values.decodeIfPresent(DynamicDayOfWeek.self, forKey: "DayOfWeek") + self.endHour = try values.decodeIfPresent(Double.self, forKey: "EndHour") + self.id = try values.decodeIfPresent(Int32.self, forKey: "Id") + self.startHour = try values.decodeIfPresent(Double.self, forKey: "StartHour") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(dayOfWeek, forKey: "DayOfWeek") + try values.encodeIfPresent(endHour, forKey: "EndHour") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(startHour, forKey: "StartHour") + try values.encodeIfPresent(userID, forKey: "UserId") + } +} diff --git a/Sources/Entities/ActivityLogEntry.swift b/Sources/Entities/ActivityLogEntry.swift new file mode 100644 index 000000000..a9bc46590 --- /dev/null +++ b/Sources/Entities/ActivityLogEntry.swift @@ -0,0 +1,87 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// An activity log entry. +public struct ActivityLogEntry: Codable, Identifiable { + /// Gets or sets the date. + public var date: Date? + /// Gets or sets the identifier. + public var id: Int64? + /// Gets or sets the item identifier. + public var itemID: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the overview. + public var overview: String? + /// Gets or sets the log severity. + public var severity: LogLevel? + /// Gets or sets the short overview. + public var shortOverview: String? + /// Gets or sets the type. + public var type: String? + /// Gets or sets the user identifier. + public var userID: String? + /// Gets or sets the user primary image tag. + /// + /// - warning: Deprecated. + public var userPrimaryImageTag: String? + + public init( + date: Date? = nil, + id: Int64? = nil, + itemID: String? = nil, + name: String? = nil, + overview: String? = nil, + severity: LogLevel? = nil, + shortOverview: String? = nil, + type: String? = nil, + userID: String? = nil, + userPrimaryImageTag: String? = nil + ) { + self.date = date + self.id = id + self.itemID = itemID + self.name = name + self.overview = overview + self.severity = severity + self.shortOverview = shortOverview + self.type = type + self.userID = userID + self.userPrimaryImageTag = userPrimaryImageTag + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.date = try values.decodeIfPresent(Date.self, forKey: "Date") + self.id = try values.decodeIfPresent(Int64.self, forKey: "Id") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.overview = try values.decodeIfPresent(String.self, forKey: "Overview") + self.severity = try values.decodeIfPresent(LogLevel.self, forKey: "Severity") + self.shortOverview = try values.decodeIfPresent(String.self, forKey: "ShortOverview") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + self.userPrimaryImageTag = try values.decodeIfPresent(String.self, forKey: "UserPrimaryImageTag") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(date, forKey: "Date") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(overview, forKey: "Overview") + try values.encodeIfPresent(severity, forKey: "Severity") + try values.encodeIfPresent(shortOverview, forKey: "ShortOverview") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(userID, forKey: "UserId") + try values.encodeIfPresent(userPrimaryImageTag, forKey: "UserPrimaryImageTag") + } +} diff --git a/Sources/Entities/ActivityLogEntryQueryResult.swift b/Sources/Entities/ActivityLogEntryQueryResult.swift new file mode 100644 index 000000000..3bd83a8b6 --- /dev/null +++ b/Sources/Entities/ActivityLogEntryQueryResult.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ActivityLogEntryQueryResult: Codable { + /// Gets or sets the items. + public var items: [ActivityLogEntry]? + /// Gets or sets the index of the first record in Items. + public var startIndex: Int32? + /// Gets or sets the total number of records available. + public var totalRecordCount: Int32? + + public init(items: [ActivityLogEntry]? = nil, startIndex: Int32? = nil, totalRecordCount: Int32? = nil) { + self.items = items + self.startIndex = startIndex + self.totalRecordCount = totalRecordCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.items = try values.decodeIfPresent([ActivityLogEntry].self, forKey: "Items") + self.startIndex = try values.decodeIfPresent(Int32.self, forKey: "StartIndex") + self.totalRecordCount = try values.decodeIfPresent(Int32.self, forKey: "TotalRecordCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(items, forKey: "Items") + try values.encodeIfPresent(startIndex, forKey: "StartIndex") + try values.encodeIfPresent(totalRecordCount, forKey: "TotalRecordCount") + } +} diff --git a/Sources/Entities/AddVirtualFolderDto.swift b/Sources/Entities/AddVirtualFolderDto.swift new file mode 100644 index 000000000..63941587c --- /dev/null +++ b/Sources/Entities/AddVirtualFolderDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Add virtual folder dto. +public struct AddVirtualFolderDto: Codable { + /// Gets or sets library options. + public var libraryOptions: LibraryOptions? + + public init(libraryOptions: LibraryOptions? = nil) { + self.libraryOptions = libraryOptions + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.libraryOptions = try values.decodeIfPresent(LibraryOptions.self, forKey: "LibraryOptions") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(libraryOptions, forKey: "LibraryOptions") + } +} diff --git a/Sources/Entities/AdminNotificationDto.swift b/Sources/Entities/AdminNotificationDto.swift new file mode 100644 index 000000000..458960bf3 --- /dev/null +++ b/Sources/Entities/AdminNotificationDto.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The admin notification dto. +public struct AdminNotificationDto: Codable { + /// Gets or sets the notification description. + public var description: String? + /// Gets or sets the notification name. + public var name: String? + /// Gets or sets the notification level. + public var notificationLevel: NotificationLevel? + /// Gets or sets the notification url. + public var url: String? + + public init(description: String? = nil, name: String? = nil, notificationLevel: NotificationLevel? = nil, url: String? = nil) { + self.description = description + self.name = name + self.notificationLevel = notificationLevel + self.url = url + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.description = try values.decodeIfPresent(String.self, forKey: "Description") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.notificationLevel = try values.decodeIfPresent(NotificationLevel.self, forKey: "NotificationLevel") + self.url = try values.decodeIfPresent(String.self, forKey: "Url") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(description, forKey: "Description") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(notificationLevel, forKey: "NotificationLevel") + try values.encodeIfPresent(url, forKey: "Url") + } +} diff --git a/Sources/Entities/AlbumInfo.swift b/Sources/Entities/AlbumInfo.swift new file mode 100644 index 000000000..959b1776b --- /dev/null +++ b/Sources/Entities/AlbumInfo.swift @@ -0,0 +1,103 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct AlbumInfo: Codable { + /// Gets or sets the album artist. + public var albumArtists: [String]? + /// Gets or sets the artist provider ids. + public var artistProviderIDs: [String: String]? + public var indexNumber: Int32? + public var isAutomated: Bool? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the metadata language. + public var metadataLanguage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the original title. + public var originalTitle: String? + public var parentIndexNumber: Int32? + /// Gets or sets the path. + public var path: String? + public var premiereDate: Date? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + public var songInfos: [SongInfo]? + /// Gets or sets the year. + public var year: Int32? + + public init( + albumArtists: [String]? = nil, + artistProviderIDs: [String: String]? = nil, + indexNumber: Int32? = nil, + isAutomated: Bool? = nil, + metadataCountryCode: String? = nil, + metadataLanguage: String? = nil, + name: String? = nil, + originalTitle: String? = nil, + parentIndexNumber: Int32? = nil, + path: String? = nil, + premiereDate: Date? = nil, + providerIDs: [String: String]? = nil, + songInfos: [SongInfo]? = nil, + year: Int32? = nil + ) { + self.albumArtists = albumArtists + self.artistProviderIDs = artistProviderIDs + self.indexNumber = indexNumber + self.isAutomated = isAutomated + self.metadataCountryCode = metadataCountryCode + self.metadataLanguage = metadataLanguage + self.name = name + self.originalTitle = originalTitle + self.parentIndexNumber = parentIndexNumber + self.path = path + self.premiereDate = premiereDate + self.providerIDs = providerIDs + self.songInfos = songInfos + self.year = year + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.albumArtists = try values.decodeIfPresent([String].self, forKey: "AlbumArtists") + self.artistProviderIDs = try values.decodeIfPresent([String: String].self, forKey: "ArtistProviderIds") + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isAutomated = try values.decodeIfPresent(Bool.self, forKey: "IsAutomated") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataLanguage = try values.decodeIfPresent(String.self, forKey: "MetadataLanguage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.songInfos = try values.decodeIfPresent([SongInfo].self, forKey: "SongInfos") + self.year = try values.decodeIfPresent(Int32.self, forKey: "Year") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(albumArtists, forKey: "AlbumArtists") + try values.encodeIfPresent(artistProviderIDs, forKey: "ArtistProviderIds") + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isAutomated, forKey: "IsAutomated") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataLanguage, forKey: "MetadataLanguage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(songInfos, forKey: "SongInfos") + try values.encodeIfPresent(year, forKey: "Year") + } +} diff --git a/Sources/Entities/AlbumInfoRemoteSearchQuery.swift b/Sources/Entities/AlbumInfoRemoteSearchQuery.swift new file mode 100644 index 000000000..9a4ebf1af --- /dev/null +++ b/Sources/Entities/AlbumInfoRemoteSearchQuery.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct AlbumInfoRemoteSearchQuery: Codable { + /// Gets or sets a value indicating whether disabled providers should be included. + public var isIncludeDisabledProviders: Bool? + public var itemID: String? + public var searchInfo: AlbumInfo? + /// Gets or sets the provider name to search within if set. + public var searchProviderName: String? + + public init( + isIncludeDisabledProviders: Bool? = nil, + itemID: String? = nil, + searchInfo: AlbumInfo? = nil, + searchProviderName: String? = nil + ) { + self.isIncludeDisabledProviders = isIncludeDisabledProviders + self.itemID = itemID + self.searchInfo = searchInfo + self.searchProviderName = searchProviderName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isIncludeDisabledProviders = try values.decodeIfPresent(Bool.self, forKey: "IncludeDisabledProviders") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.searchInfo = try values.decodeIfPresent(AlbumInfo.self, forKey: "SearchInfo") + self.searchProviderName = try values.decodeIfPresent(String.self, forKey: "SearchProviderName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isIncludeDisabledProviders, forKey: "IncludeDisabledProviders") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(searchInfo, forKey: "SearchInfo") + try values.encodeIfPresent(searchProviderName, forKey: "SearchProviderName") + } +} diff --git a/Sources/Entities/AllThemeMediaResult.swift b/Sources/Entities/AllThemeMediaResult.swift new file mode 100644 index 000000000..32d278d76 --- /dev/null +++ b/Sources/Entities/AllThemeMediaResult.swift @@ -0,0 +1,42 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct AllThemeMediaResult: Codable { + /// Class ThemeMediaResult. + public var soundtrackSongsResult: ThemeMediaResult? + /// Class ThemeMediaResult. + public var themeSongsResult: ThemeMediaResult? + /// Class ThemeMediaResult. + public var themeVideosResult: ThemeMediaResult? + + public init( + soundtrackSongsResult: ThemeMediaResult? = nil, + themeSongsResult: ThemeMediaResult? = nil, + themeVideosResult: ThemeMediaResult? = nil + ) { + self.soundtrackSongsResult = soundtrackSongsResult + self.themeSongsResult = themeSongsResult + self.themeVideosResult = themeVideosResult + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.soundtrackSongsResult = try values.decodeIfPresent(ThemeMediaResult.self, forKey: "SoundtrackSongsResult") + self.themeSongsResult = try values.decodeIfPresent(ThemeMediaResult.self, forKey: "ThemeSongsResult") + self.themeVideosResult = try values.decodeIfPresent(ThemeMediaResult.self, forKey: "ThemeVideosResult") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(soundtrackSongsResult, forKey: "SoundtrackSongsResult") + try values.encodeIfPresent(themeSongsResult, forKey: "ThemeSongsResult") + try values.encodeIfPresent(themeVideosResult, forKey: "ThemeVideosResult") + } +} diff --git a/Sources/Entities/Architecture.swift b/Sources/Entities/Architecture.swift new file mode 100644 index 000000000..cff820701 --- /dev/null +++ b/Sources/Entities/Architecture.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum Architecture: String, Codable, CaseIterable { + case x86 = "X86" + case x64 = "X64" + case arm = "Arm" + case arm64 = "Arm64" + case wasm = "Wasm" + case s390x = "S390x" +} diff --git a/Sources/Entities/ArtistInfo.swift b/Sources/Entities/ArtistInfo.swift new file mode 100644 index 000000000..bb0112f40 --- /dev/null +++ b/Sources/Entities/ArtistInfo.swift @@ -0,0 +1,91 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ArtistInfo: Codable { + public var indexNumber: Int32? + public var isAutomated: Bool? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the metadata language. + public var metadataLanguage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the original title. + public var originalTitle: String? + public var parentIndexNumber: Int32? + /// Gets or sets the path. + public var path: String? + public var premiereDate: Date? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + public var songInfos: [SongInfo]? + /// Gets or sets the year. + public var year: Int32? + + public init( + indexNumber: Int32? = nil, + isAutomated: Bool? = nil, + metadataCountryCode: String? = nil, + metadataLanguage: String? = nil, + name: String? = nil, + originalTitle: String? = nil, + parentIndexNumber: Int32? = nil, + path: String? = nil, + premiereDate: Date? = nil, + providerIDs: [String: String]? = nil, + songInfos: [SongInfo]? = nil, + year: Int32? = nil + ) { + self.indexNumber = indexNumber + self.isAutomated = isAutomated + self.metadataCountryCode = metadataCountryCode + self.metadataLanguage = metadataLanguage + self.name = name + self.originalTitle = originalTitle + self.parentIndexNumber = parentIndexNumber + self.path = path + self.premiereDate = premiereDate + self.providerIDs = providerIDs + self.songInfos = songInfos + self.year = year + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isAutomated = try values.decodeIfPresent(Bool.self, forKey: "IsAutomated") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataLanguage = try values.decodeIfPresent(String.self, forKey: "MetadataLanguage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.songInfos = try values.decodeIfPresent([SongInfo].self, forKey: "SongInfos") + self.year = try values.decodeIfPresent(Int32.self, forKey: "Year") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isAutomated, forKey: "IsAutomated") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataLanguage, forKey: "MetadataLanguage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(songInfos, forKey: "SongInfos") + try values.encodeIfPresent(year, forKey: "Year") + } +} diff --git a/Sources/Entities/ArtistInfoRemoteSearchQuery.swift b/Sources/Entities/ArtistInfoRemoteSearchQuery.swift new file mode 100644 index 000000000..c928da68a --- /dev/null +++ b/Sources/Entities/ArtistInfoRemoteSearchQuery.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ArtistInfoRemoteSearchQuery: Codable { + /// Gets or sets a value indicating whether disabled providers should be included. + public var isIncludeDisabledProviders: Bool? + public var itemID: String? + public var searchInfo: ArtistInfo? + /// Gets or sets the provider name to search within if set. + public var searchProviderName: String? + + public init( + isIncludeDisabledProviders: Bool? = nil, + itemID: String? = nil, + searchInfo: ArtistInfo? = nil, + searchProviderName: String? = nil + ) { + self.isIncludeDisabledProviders = isIncludeDisabledProviders + self.itemID = itemID + self.searchInfo = searchInfo + self.searchProviderName = searchProviderName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isIncludeDisabledProviders = try values.decodeIfPresent(Bool.self, forKey: "IncludeDisabledProviders") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.searchInfo = try values.decodeIfPresent(ArtistInfo.self, forKey: "SearchInfo") + self.searchProviderName = try values.decodeIfPresent(String.self, forKey: "SearchProviderName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isIncludeDisabledProviders, forKey: "IncludeDisabledProviders") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(searchInfo, forKey: "SearchInfo") + try values.encodeIfPresent(searchProviderName, forKey: "SearchProviderName") + } +} diff --git a/Sources/Entities/AuthenticateUserByName.swift b/Sources/Entities/AuthenticateUserByName.swift new file mode 100644 index 000000000..44e2ff80b --- /dev/null +++ b/Sources/Entities/AuthenticateUserByName.swift @@ -0,0 +1,41 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The authenticate user by name request body. +public struct AuthenticateUserByName: Codable { + /// Gets or sets the sha1-hashed password. + /// + /// - warning: Deprecated. + public var password: String? + /// Gets or sets the plain text password. + public var pw: String? + /// Gets or sets the username. + public var username: String? + + public init(password: String? = nil, pw: String? = nil, username: String? = nil) { + self.password = password + self.pw = pw + self.username = username + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.password = try values.decodeIfPresent(String.self, forKey: "Password") + self.pw = try values.decodeIfPresent(String.self, forKey: "Pw") + self.username = try values.decodeIfPresent(String.self, forKey: "Username") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(password, forKey: "Password") + try values.encodeIfPresent(pw, forKey: "Pw") + try values.encodeIfPresent(username, forKey: "Username") + } +} diff --git a/Sources/Entities/AuthenticationInfo.swift b/Sources/Entities/AuthenticationInfo.swift new file mode 100644 index 000000000..1da70607b --- /dev/null +++ b/Sources/Entities/AuthenticationInfo.swift @@ -0,0 +1,94 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct AuthenticationInfo: Codable, Identifiable { + /// Gets or sets the access token. + public var accessToken: String? + /// Gets or sets the name of the application. + public var appName: String? + /// Gets or sets the application version. + public var appVersion: String? + /// Gets or sets the date created. + public var dateCreated: Date? + public var dateLastActivity: Date? + /// Gets or sets the date revoked. + public var dateRevoked: Date? + /// Gets or sets the device identifier. + public var deviceID: String? + /// Gets or sets the name of the device. + public var deviceName: String? + /// Gets or sets the identifier. + public var id: Int64? + /// Gets or sets a value indicating whether this instance is active. + public var isActive: Bool? + /// Gets or sets the user identifier. + public var userID: String? + public var userName: String? + + public init( + accessToken: String? = nil, + appName: String? = nil, + appVersion: String? = nil, + dateCreated: Date? = nil, + dateLastActivity: Date? = nil, + dateRevoked: Date? = nil, + deviceID: String? = nil, + deviceName: String? = nil, + id: Int64? = nil, + isActive: Bool? = nil, + userID: String? = nil, + userName: String? = nil + ) { + self.accessToken = accessToken + self.appName = appName + self.appVersion = appVersion + self.dateCreated = dateCreated + self.dateLastActivity = dateLastActivity + self.dateRevoked = dateRevoked + self.deviceID = deviceID + self.deviceName = deviceName + self.id = id + self.isActive = isActive + self.userID = userID + self.userName = userName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.accessToken = try values.decodeIfPresent(String.self, forKey: "AccessToken") + self.appName = try values.decodeIfPresent(String.self, forKey: "AppName") + self.appVersion = try values.decodeIfPresent(String.self, forKey: "AppVersion") + self.dateCreated = try values.decodeIfPresent(Date.self, forKey: "DateCreated") + self.dateLastActivity = try values.decodeIfPresent(Date.self, forKey: "DateLastActivity") + self.dateRevoked = try values.decodeIfPresent(Date.self, forKey: "DateRevoked") + self.deviceID = try values.decodeIfPresent(String.self, forKey: "DeviceId") + self.deviceName = try values.decodeIfPresent(String.self, forKey: "DeviceName") + self.id = try values.decodeIfPresent(Int64.self, forKey: "Id") + self.isActive = try values.decodeIfPresent(Bool.self, forKey: "IsActive") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + self.userName = try values.decodeIfPresent(String.self, forKey: "UserName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(accessToken, forKey: "AccessToken") + try values.encodeIfPresent(appName, forKey: "AppName") + try values.encodeIfPresent(appVersion, forKey: "AppVersion") + try values.encodeIfPresent(dateCreated, forKey: "DateCreated") + try values.encodeIfPresent(dateLastActivity, forKey: "DateLastActivity") + try values.encodeIfPresent(dateRevoked, forKey: "DateRevoked") + try values.encodeIfPresent(deviceID, forKey: "DeviceId") + try values.encodeIfPresent(deviceName, forKey: "DeviceName") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(isActive, forKey: "IsActive") + try values.encodeIfPresent(userID, forKey: "UserId") + try values.encodeIfPresent(userName, forKey: "UserName") + } +} diff --git a/Sources/Entities/AuthenticationInfoQueryResult.swift b/Sources/Entities/AuthenticationInfoQueryResult.swift new file mode 100644 index 000000000..2caca1fcd --- /dev/null +++ b/Sources/Entities/AuthenticationInfoQueryResult.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct AuthenticationInfoQueryResult: Codable { + /// Gets or sets the items. + public var items: [AuthenticationInfo]? + /// Gets or sets the index of the first record in Items. + public var startIndex: Int32? + /// Gets or sets the total number of records available. + public var totalRecordCount: Int32? + + public init(items: [AuthenticationInfo]? = nil, startIndex: Int32? = nil, totalRecordCount: Int32? = nil) { + self.items = items + self.startIndex = startIndex + self.totalRecordCount = totalRecordCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.items = try values.decodeIfPresent([AuthenticationInfo].self, forKey: "Items") + self.startIndex = try values.decodeIfPresent(Int32.self, forKey: "StartIndex") + self.totalRecordCount = try values.decodeIfPresent(Int32.self, forKey: "TotalRecordCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(items, forKey: "Items") + try values.encodeIfPresent(startIndex, forKey: "StartIndex") + try values.encodeIfPresent(totalRecordCount, forKey: "TotalRecordCount") + } +} diff --git a/Sources/Entities/AuthenticationResult.swift b/Sources/Entities/AuthenticationResult.swift new file mode 100644 index 000000000..b9d94c811 --- /dev/null +++ b/Sources/Entities/AuthenticationResult.swift @@ -0,0 +1,41 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct AuthenticationResult: Codable { + public var accessToken: String? + public var serverID: String? + /// Class SessionInfo. + public var sessionInfo: SessionInfo? + /// Class UserDto. + public var user: UserDto? + + public init(accessToken: String? = nil, serverID: String? = nil, sessionInfo: SessionInfo? = nil, user: UserDto? = nil) { + self.accessToken = accessToken + self.serverID = serverID + self.sessionInfo = sessionInfo + self.user = user + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.accessToken = try values.decodeIfPresent(String.self, forKey: "AccessToken") + self.serverID = try values.decodeIfPresent(String.self, forKey: "ServerId") + self.sessionInfo = try values.decodeIfPresent(SessionInfo.self, forKey: "SessionInfo") + self.user = try values.decodeIfPresent(UserDto.self, forKey: "User") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(accessToken, forKey: "AccessToken") + try values.encodeIfPresent(serverID, forKey: "ServerId") + try values.encodeIfPresent(sessionInfo, forKey: "SessionInfo") + try values.encodeIfPresent(user, forKey: "User") + } +} diff --git a/Sources/Entities/BaseItem.swift b/Sources/Entities/BaseItem.swift new file mode 100644 index 000000000..02f463b7e --- /dev/null +++ b/Sources/Entities/BaseItem.swift @@ -0,0 +1,81 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class BaseItem. +public struct BaseItem: Codable { + public var container: String? + public var dateLastSaved: Date? + public var extraIDs: [String]? + public var height: Int32? + public var isHD: Bool? + public var isShortcut: Bool? + /// Gets or sets the remote trailers. + public var remoteTrailers: [MediaURL]? + public var shortcutPath: String? + public var size: Int64? + public var isSupportsExternalTransfer: Bool? + public var width: Int32? + + public init( + container: String? = nil, + dateLastSaved: Date? = nil, + extraIDs: [String]? = nil, + height: Int32? = nil, + isHD: Bool? = nil, + isShortcut: Bool? = nil, + remoteTrailers: [MediaURL]? = nil, + shortcutPath: String? = nil, + size: Int64? = nil, + isSupportsExternalTransfer: Bool? = nil, + width: Int32? = nil + ) { + self.container = container + self.dateLastSaved = dateLastSaved + self.extraIDs = extraIDs + self.height = height + self.isHD = isHD + self.isShortcut = isShortcut + self.remoteTrailers = remoteTrailers + self.shortcutPath = shortcutPath + self.size = size + self.isSupportsExternalTransfer = isSupportsExternalTransfer + self.width = width + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.container = try values.decodeIfPresent(String.self, forKey: "Container") + self.dateLastSaved = try values.decodeIfPresent(Date.self, forKey: "DateLastSaved") + self.extraIDs = try values.decodeIfPresent([String].self, forKey: "ExtraIds") + self.height = try values.decodeIfPresent(Int32.self, forKey: "Height") + self.isHD = try values.decodeIfPresent(Bool.self, forKey: "IsHD") + self.isShortcut = try values.decodeIfPresent(Bool.self, forKey: "IsShortcut") + self.remoteTrailers = try values.decodeIfPresent([MediaURL].self, forKey: "RemoteTrailers") + self.shortcutPath = try values.decodeIfPresent(String.self, forKey: "ShortcutPath") + self.size = try values.decodeIfPresent(Int64.self, forKey: "Size") + self.isSupportsExternalTransfer = try values.decodeIfPresent(Bool.self, forKey: "SupportsExternalTransfer") + self.width = try values.decodeIfPresent(Int32.self, forKey: "Width") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(container, forKey: "Container") + try values.encodeIfPresent(dateLastSaved, forKey: "DateLastSaved") + try values.encodeIfPresent(extraIDs, forKey: "ExtraIds") + try values.encodeIfPresent(height, forKey: "Height") + try values.encodeIfPresent(isHD, forKey: "IsHD") + try values.encodeIfPresent(isShortcut, forKey: "IsShortcut") + try values.encodeIfPresent(remoteTrailers, forKey: "RemoteTrailers") + try values.encodeIfPresent(shortcutPath, forKey: "ShortcutPath") + try values.encodeIfPresent(size, forKey: "Size") + try values.encodeIfPresent(isSupportsExternalTransfer, forKey: "SupportsExternalTransfer") + try values.encodeIfPresent(width, forKey: "Width") + } +} diff --git a/Sources/Entities/BaseItemDto.swift b/Sources/Entities/BaseItemDto.swift new file mode 100644 index 000000000..9291eb553 --- /dev/null +++ b/Sources/Entities/BaseItemDto.swift @@ -0,0 +1,977 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// This is strictly used as a data transfer object from the api layer. +/// +/// This holds information about a BaseItem in a format that is convenient for the client. +public struct BaseItemDto: Codable, Identifiable { + /// Gets or sets the air days. + public var airDays: [DayOfWeek]? + /// Gets or sets the air time. + public var airTime: String? + public var airsAfterSeasonNumber: Int32? + public var airsBeforeEpisodeNumber: Int32? + public var airsBeforeSeasonNumber: Int32? + /// Gets or sets the album. + public var album: String? + /// Gets or sets the album artist. + public var albumArtist: String? + /// Gets or sets the album artists. + public var albumArtists: [NameGuidPair]? + /// Gets or sets the album count. + public var albumCount: Int32? + /// Gets or sets the album id. + public var albumID: String? + /// Gets or sets the album image tag. + public var albumPrimaryImageTag: String? + public var altitude: Double? + public var aperture: Double? + public var artistCount: Int32? + /// Gets or sets the artist items. + public var artistItems: [NameGuidPair]? + /// Gets or sets the artists. + public var artists: [String]? + /// Gets or sets the aspect ratio. + public var aspectRatio: String? + /// Gets or sets the audio. + public var audio: ProgramAudio? + /// Gets or sets the backdrop image tags. + public var backdropImageTags: [String]? + public var cameraMake: String? + public var cameraModel: String? + public var canDelete: Bool? + public var canDownload: Bool? + /// Gets or sets the channel identifier. + public var channelID: String? + public var channelName: String? + public var channelNumber: String? + /// Gets or sets the channel primary image tag. + public var channelPrimaryImageTag: String? + /// Gets or sets the type of the channel. + public var channelType: ChannelType? + /// Gets or sets the chapters. + public var chapters: [ChapterInfo]? + /// Gets or sets the child count. + public var childCount: Int32? + /// Gets or sets the type of the collection. + public var collectionType: String? + /// Gets or sets the community rating. + public var communityRating: Float? + /// Gets or sets the completion percentage. + public var completionPercentage: Double? + public var container: String? + /// Gets or sets the critic rating. + public var criticRating: Float? + /// Gets or sets the cumulative run time ticks. + public var cumulativeRunTimeTicks: Int64? + /// Gets or sets the custom rating. + public var customRating: String? + /// Gets or sets the date created. + public var dateCreated: Date? + public var dateLastMediaAdded: Date? + /// Gets or sets the display order. + public var displayOrder: String? + /// Gets or sets the display preferences id. + public var displayPreferencesID: String? + public var enableMediaSourceDisplay: Bool? + /// Gets or sets the end date. + public var endDate: Date? + /// Gets or sets the episode count. + public var episodeCount: Int32? + /// Gets or sets the episode title. + public var episodeTitle: String? + /// Gets or sets the etag. + public var etag: String? + public var exposureTime: Double? + /// Gets or sets the external urls. + public var externalURLs: [ExternalURL]? + public var extraType: String? + public var focalLength: Double? + public var forcedSortName: String? + public var genreItems: [NameGuidPair]? + /// Gets or sets the genres. + public var genres: [String]? + public var hasSubtitles: Bool? + public var height: Int32? + /// Gets or sets the id. + public var id: String? + /// Gets or sets the blurhashes for the image tags. + /// + /// Maps image type to dictionary mapping image tag to blurhash value. + public var imageBlurHashes: ImageBlurHashes? + public var imageOrientation: ImageOrientation? + /// Gets or sets the image tags. + public var imageTags: [String: String]? + /// Gets or sets the index number. + public var indexNumber: Int32? + /// Gets or sets the index number end. + public var indexNumberEnd: Int32? + /// Gets or sets a value indicating whether this instance is folder. + public var isFolder: Bool? + /// Gets or sets a value indicating whether this instance is HD. + public var isHD: Bool? + /// Gets or sets a value indicating whether this instance is kids. + public var isKids: Bool? + /// Gets or sets a value indicating whether this instance is live. + public var isLive: Bool? + /// Gets or sets a value indicating whether this instance is movie. + public var isMovie: Bool? + /// Gets or sets a value indicating whether this instance is news. + public var isNews: Bool? + /// Gets or sets a value indicating whether this instance is place holder. + public var isPlaceHolder: Bool? + /// Gets or sets a value indicating whether this instance is premiere. + public var isPremiere: Bool? + /// Gets or sets a value indicating whether this instance is repeat. + public var isRepeat: Bool? + /// Gets or sets a value indicating whether this instance is series. + public var isSeries: Bool? + /// Gets or sets a value indicating whether this instance is sports. + public var isSports: Bool? + public var isoSpeedRating: Int32? + /// Gets or sets the type of the iso. + public var isoType: IsoType? + public var latitude: Double? + /// Gets or sets the local trailer count. + public var localTrailerCount: Int32? + /// Gets or sets the type of the location. + public var locationType: LocationType? + /// Gets or sets a value indicating whether [enable internet providers]. + public var lockData: Bool? + /// Gets or sets the locked fields. + public var lockedFields: [MetadataField]? + public var longitude: Double? + public var mediaSourceCount: Int32? + /// Gets or sets the media versions. + public var mediaSources: [MediaSourceInfo]? + /// Gets or sets the media streams. + public var mediaStreams: [MediaStream]? + /// Gets or sets the type of the media. + public var mediaType: String? + /// Gets or sets the movie count. + public var movieCount: Int32? + /// Gets or sets the music video count. + public var musicVideoCount: Int32? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the number. + public var number: String? + /// Gets or sets the official rating. + public var officialRating: String? + public var originalTitle: String? + /// Gets or sets the overview. + public var overview: String? + /// Gets or sets the parent art image tag. + public var parentArtImageTag: String? + /// Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. + public var parentArtItemID: String? + /// Gets or sets the parent backdrop image tags. + public var parentBackdropImageTags: [String]? + /// Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. + public var parentBackdropItemID: String? + /// Gets or sets the parent id. + public var parentID: String? + /// Gets or sets the parent index number. + public var parentIndexNumber: Int32? + /// Gets or sets the parent logo image tag. + public var parentLogoImageTag: String? + /// Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. + public var parentLogoItemID: String? + /// Gets or sets the parent primary image item identifier. + public var parentPrimaryImageItemID: String? + /// Gets or sets the parent primary image tag. + public var parentPrimaryImageTag: String? + /// Gets or sets the parent thumb image tag. + public var parentThumbImageTag: String? + /// Gets or sets the parent thumb item id. + public var parentThumbItemID: String? + /// Gets or sets the part count. + public var partCount: Int32? + /// Gets or sets the path. + public var path: String? + /// Gets or sets the people. + public var people: [BaseItemPerson]? + /// Gets or sets the play access. + public var playAccess: PlayAccess? + /// Gets or sets the playlist item identifier. + public var playlistItemID: String? + public var preferredMetadataCountryCode: String? + public var preferredMetadataLanguage: String? + /// Gets or sets the premiere date. + public var premiereDate: Date? + /// Gets or sets the primary image aspect ratio, after image enhancements. + public var primaryImageAspectRatio: Double? + public var productionLocations: [String]? + /// Gets or sets the production year. + public var productionYear: Int32? + public var programCount: Int32? + /// Gets or sets the program identifier. + public var programID: String? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + /// Gets or sets the recursive item count. + public var recursiveItemCount: Int32? + /// Gets or sets the trailer urls. + public var remoteTrailers: [MediaURL]? + /// Gets or sets the run time ticks. + public var runTimeTicks: Int64? + /// Gets or sets the screenshot image tags. + public var screenshotImageTags: [String]? + /// Gets or sets the season identifier. + public var seasonID: String? + /// Gets or sets the name of the season. + public var seasonName: String? + /// Gets or sets the series count. + public var seriesCount: Int32? + /// Gets or sets the series id. + public var seriesID: String? + /// Gets or sets the name of the series. + public var seriesName: String? + /// Gets or sets the series primary image tag. + public var seriesPrimaryImageTag: String? + /// Gets or sets the series studio. + public var seriesStudio: String? + /// Gets or sets the series thumb image tag. + public var seriesThumbImageTag: String? + /// Gets or sets the series timer identifier. + public var seriesTimerID: String? + /// Gets or sets the server identifier. + public var serverID: String? + public var shutterSpeed: Double? + public var software: String? + /// Gets or sets the song count. + public var songCount: Int32? + /// Gets or sets the name of the sort. + public var sortName: String? + /// Gets or sets the type of the source. + public var sourceType: String? + /// Gets or sets the special feature count. + public var specialFeatureCount: Int32? + /// Gets or sets the start date of the recording, in UTC. + public var startDate: Date? + /// Gets or sets the status. + public var status: String? + /// Gets or sets the studios. + public var studios: [NameGuidPair]? + /// Gets or sets a value indicating whether [supports synchronize]. + public var isSupportsSync: Bool? + /// Gets or sets the taglines. + public var taglines: [String]? + /// Gets or sets the tags. + public var tags: [String]? + /// Gets or sets the timer identifier. + public var timerID: String? + /// Gets or sets the trailer count. + public var trailerCount: Int32? + /// Gets or sets the type. + public var type: BaseItemKind? + /// Gets or sets the user data for this item based on the user it's being requested for. + public var userData: UserItemDataDto? + /// Gets or sets the video3 D format. + public var video3DFormat: Video3DFormat? + /// Gets or sets the type of the video. + public var videoType: VideoType? + public var width: Int32? + + /// Gets or sets the blurhashes for the image tags. + /// + /// Maps image type to dictionary mapping image tag to blurhash value. + public struct ImageBlurHashes: Codable { + public var art: [String: String]? + public var backdrop: [String: String]? + public var banner: [String: String]? + public var box: [String: String]? + public var boxRear: [String: String]? + public var chapter: [String: String]? + public var disc: [String: String]? + public var logo: [String: String]? + public var menu: [String: String]? + public var primary: [String: String]? + public var profile: [String: String]? + public var screenshot: [String: String]? + public var thumb: [String: String]? + + public init( + art: [String: String]? = nil, + backdrop: [String: String]? = nil, + banner: [String: String]? = nil, + box: [String: String]? = nil, + boxRear: [String: String]? = nil, + chapter: [String: String]? = nil, + disc: [String: String]? = nil, + logo: [String: String]? = nil, + menu: [String: String]? = nil, + primary: [String: String]? = nil, + profile: [String: String]? = nil, + screenshot: [String: String]? = nil, + thumb: [String: String]? = nil + ) { + self.art = art + self.backdrop = backdrop + self.banner = banner + self.box = box + self.boxRear = boxRear + self.chapter = chapter + self.disc = disc + self.logo = logo + self.menu = menu + self.primary = primary + self.profile = profile + self.screenshot = screenshot + self.thumb = thumb + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.art = try values.decodeIfPresent([String: String].self, forKey: "Art") + self.backdrop = try values.decodeIfPresent([String: String].self, forKey: "Backdrop") + self.banner = try values.decodeIfPresent([String: String].self, forKey: "Banner") + self.box = try values.decodeIfPresent([String: String].self, forKey: "Box") + self.boxRear = try values.decodeIfPresent([String: String].self, forKey: "BoxRear") + self.chapter = try values.decodeIfPresent([String: String].self, forKey: "Chapter") + self.disc = try values.decodeIfPresent([String: String].self, forKey: "Disc") + self.logo = try values.decodeIfPresent([String: String].self, forKey: "Logo") + self.menu = try values.decodeIfPresent([String: String].self, forKey: "Menu") + self.primary = try values.decodeIfPresent([String: String].self, forKey: "Primary") + self.profile = try values.decodeIfPresent([String: String].self, forKey: "Profile") + self.screenshot = try values.decodeIfPresent([String: String].self, forKey: "Screenshot") + self.thumb = try values.decodeIfPresent([String: String].self, forKey: "Thumb") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(art, forKey: "Art") + try values.encodeIfPresent(backdrop, forKey: "Backdrop") + try values.encodeIfPresent(banner, forKey: "Banner") + try values.encodeIfPresent(box, forKey: "Box") + try values.encodeIfPresent(boxRear, forKey: "BoxRear") + try values.encodeIfPresent(chapter, forKey: "Chapter") + try values.encodeIfPresent(disc, forKey: "Disc") + try values.encodeIfPresent(logo, forKey: "Logo") + try values.encodeIfPresent(menu, forKey: "Menu") + try values.encodeIfPresent(primary, forKey: "Primary") + try values.encodeIfPresent(profile, forKey: "Profile") + try values.encodeIfPresent(screenshot, forKey: "Screenshot") + try values.encodeIfPresent(thumb, forKey: "Thumb") + } + } + + public init( + airDays: [DayOfWeek]? = nil, + airTime: String? = nil, + airsAfterSeasonNumber: Int32? = nil, + airsBeforeEpisodeNumber: Int32? = nil, + airsBeforeSeasonNumber: Int32? = nil, + album: String? = nil, + albumArtist: String? = nil, + albumArtists: [NameGuidPair]? = nil, + albumCount: Int32? = nil, + albumID: String? = nil, + albumPrimaryImageTag: String? = nil, + altitude: Double? = nil, + aperture: Double? = nil, + artistCount: Int32? = nil, + artistItems: [NameGuidPair]? = nil, + artists: [String]? = nil, + aspectRatio: String? = nil, + audio: ProgramAudio? = nil, + backdropImageTags: [String]? = nil, + cameraMake: String? = nil, + cameraModel: String? = nil, + canDelete: Bool? = nil, + canDownload: Bool? = nil, + channelID: String? = nil, + channelName: String? = nil, + channelNumber: String? = nil, + channelPrimaryImageTag: String? = nil, + channelType: ChannelType? = nil, + chapters: [ChapterInfo]? = nil, + childCount: Int32? = nil, + collectionType: String? = nil, + communityRating: Float? = nil, + completionPercentage: Double? = nil, + container: String? = nil, + criticRating: Float? = nil, + cumulativeRunTimeTicks: Int64? = nil, + customRating: String? = nil, + dateCreated: Date? = nil, + dateLastMediaAdded: Date? = nil, + displayOrder: String? = nil, + displayPreferencesID: String? = nil, + enableMediaSourceDisplay: Bool? = nil, + endDate: Date? = nil, + episodeCount: Int32? = nil, + episodeTitle: String? = nil, + etag: String? = nil, + exposureTime: Double? = nil, + externalURLs: [ExternalURL]? = nil, + extraType: String? = nil, + focalLength: Double? = nil, + forcedSortName: String? = nil, + genreItems: [NameGuidPair]? = nil, + genres: [String]? = nil, + hasSubtitles: Bool? = nil, + height: Int32? = nil, + id: String? = nil, + imageBlurHashes: ImageBlurHashes? = nil, + imageOrientation: ImageOrientation? = nil, + imageTags: [String: String]? = nil, + indexNumber: Int32? = nil, + indexNumberEnd: Int32? = nil, + isFolder: Bool? = nil, + isHD: Bool? = nil, + isKids: Bool? = nil, + isLive: Bool? = nil, + isMovie: Bool? = nil, + isNews: Bool? = nil, + isPlaceHolder: Bool? = nil, + isPremiere: Bool? = nil, + isRepeat: Bool? = nil, + isSeries: Bool? = nil, + isSports: Bool? = nil, + isoSpeedRating: Int32? = nil, + isoType: IsoType? = nil, + latitude: Double? = nil, + localTrailerCount: Int32? = nil, + locationType: LocationType? = nil, + lockData: Bool? = nil, + lockedFields: [MetadataField]? = nil, + longitude: Double? = nil, + mediaSourceCount: Int32? = nil, + mediaSources: [MediaSourceInfo]? = nil, + mediaStreams: [MediaStream]? = nil, + mediaType: String? = nil, + movieCount: Int32? = nil, + musicVideoCount: Int32? = nil, + name: String? = nil, + number: String? = nil, + officialRating: String? = nil, + originalTitle: String? = nil, + overview: String? = nil, + parentArtImageTag: String? = nil, + parentArtItemID: String? = nil, + parentBackdropImageTags: [String]? = nil, + parentBackdropItemID: String? = nil, + parentID: String? = nil, + parentIndexNumber: Int32? = nil, + parentLogoImageTag: String? = nil, + parentLogoItemID: String? = nil, + parentPrimaryImageItemID: String? = nil, + parentPrimaryImageTag: String? = nil, + parentThumbImageTag: String? = nil, + parentThumbItemID: String? = nil, + partCount: Int32? = nil, + path: String? = nil, + people: [BaseItemPerson]? = nil, + playAccess: PlayAccess? = nil, + playlistItemID: String? = nil, + preferredMetadataCountryCode: String? = nil, + preferredMetadataLanguage: String? = nil, + premiereDate: Date? = nil, + primaryImageAspectRatio: Double? = nil, + productionLocations: [String]? = nil, + productionYear: Int32? = nil, + programCount: Int32? = nil, + programID: String? = nil, + providerIDs: [String: String]? = nil, + recursiveItemCount: Int32? = nil, + remoteTrailers: [MediaURL]? = nil, + runTimeTicks: Int64? = nil, + screenshotImageTags: [String]? = nil, + seasonID: String? = nil, + seasonName: String? = nil, + seriesCount: Int32? = nil, + seriesID: String? = nil, + seriesName: String? = nil, + seriesPrimaryImageTag: String? = nil, + seriesStudio: String? = nil, + seriesThumbImageTag: String? = nil, + seriesTimerID: String? = nil, + serverID: String? = nil, + shutterSpeed: Double? = nil, + software: String? = nil, + songCount: Int32? = nil, + sortName: String? = nil, + sourceType: String? = nil, + specialFeatureCount: Int32? = nil, + startDate: Date? = nil, + status: String? = nil, + studios: [NameGuidPair]? = nil, + isSupportsSync: Bool? = nil, + taglines: [String]? = nil, + tags: [String]? = nil, + timerID: String? = nil, + trailerCount: Int32? = nil, + type: BaseItemKind? = nil, + userData: UserItemDataDto? = nil, + video3DFormat: Video3DFormat? = nil, + videoType: VideoType? = nil, + width: Int32? = nil + ) { + self.airDays = airDays + self.airTime = airTime + self.airsAfterSeasonNumber = airsAfterSeasonNumber + self.airsBeforeEpisodeNumber = airsBeforeEpisodeNumber + self.airsBeforeSeasonNumber = airsBeforeSeasonNumber + self.album = album + self.albumArtist = albumArtist + self.albumArtists = albumArtists + self.albumCount = albumCount + self.albumID = albumID + self.albumPrimaryImageTag = albumPrimaryImageTag + self.altitude = altitude + self.aperture = aperture + self.artistCount = artistCount + self.artistItems = artistItems + self.artists = artists + self.aspectRatio = aspectRatio + self.audio = audio + self.backdropImageTags = backdropImageTags + self.cameraMake = cameraMake + self.cameraModel = cameraModel + self.canDelete = canDelete + self.canDownload = canDownload + self.channelID = channelID + self.channelName = channelName + self.channelNumber = channelNumber + self.channelPrimaryImageTag = channelPrimaryImageTag + self.channelType = channelType + self.chapters = chapters + self.childCount = childCount + self.collectionType = collectionType + self.communityRating = communityRating + self.completionPercentage = completionPercentage + self.container = container + self.criticRating = criticRating + self.cumulativeRunTimeTicks = cumulativeRunTimeTicks + self.customRating = customRating + self.dateCreated = dateCreated + self.dateLastMediaAdded = dateLastMediaAdded + self.displayOrder = displayOrder + self.displayPreferencesID = displayPreferencesID + self.enableMediaSourceDisplay = enableMediaSourceDisplay + self.endDate = endDate + self.episodeCount = episodeCount + self.episodeTitle = episodeTitle + self.etag = etag + self.exposureTime = exposureTime + self.externalURLs = externalURLs + self.extraType = extraType + self.focalLength = focalLength + self.forcedSortName = forcedSortName + self.genreItems = genreItems + self.genres = genres + self.hasSubtitles = hasSubtitles + self.height = height + self.id = id + self.imageBlurHashes = imageBlurHashes + self.imageOrientation = imageOrientation + self.imageTags = imageTags + self.indexNumber = indexNumber + self.indexNumberEnd = indexNumberEnd + self.isFolder = isFolder + self.isHD = isHD + self.isKids = isKids + self.isLive = isLive + self.isMovie = isMovie + self.isNews = isNews + self.isPlaceHolder = isPlaceHolder + self.isPremiere = isPremiere + self.isRepeat = isRepeat + self.isSeries = isSeries + self.isSports = isSports + self.isoSpeedRating = isoSpeedRating + self.isoType = isoType + self.latitude = latitude + self.localTrailerCount = localTrailerCount + self.locationType = locationType + self.lockData = lockData + self.lockedFields = lockedFields + self.longitude = longitude + self.mediaSourceCount = mediaSourceCount + self.mediaSources = mediaSources + self.mediaStreams = mediaStreams + self.mediaType = mediaType + self.movieCount = movieCount + self.musicVideoCount = musicVideoCount + self.name = name + self.number = number + self.officialRating = officialRating + self.originalTitle = originalTitle + self.overview = overview + self.parentArtImageTag = parentArtImageTag + self.parentArtItemID = parentArtItemID + self.parentBackdropImageTags = parentBackdropImageTags + self.parentBackdropItemID = parentBackdropItemID + self.parentID = parentID + self.parentIndexNumber = parentIndexNumber + self.parentLogoImageTag = parentLogoImageTag + self.parentLogoItemID = parentLogoItemID + self.parentPrimaryImageItemID = parentPrimaryImageItemID + self.parentPrimaryImageTag = parentPrimaryImageTag + self.parentThumbImageTag = parentThumbImageTag + self.parentThumbItemID = parentThumbItemID + self.partCount = partCount + self.path = path + self.people = people + self.playAccess = playAccess + self.playlistItemID = playlistItemID + self.preferredMetadataCountryCode = preferredMetadataCountryCode + self.preferredMetadataLanguage = preferredMetadataLanguage + self.premiereDate = premiereDate + self.primaryImageAspectRatio = primaryImageAspectRatio + self.productionLocations = productionLocations + self.productionYear = productionYear + self.programCount = programCount + self.programID = programID + self.providerIDs = providerIDs + self.recursiveItemCount = recursiveItemCount + self.remoteTrailers = remoteTrailers + self.runTimeTicks = runTimeTicks + self.screenshotImageTags = screenshotImageTags + self.seasonID = seasonID + self.seasonName = seasonName + self.seriesCount = seriesCount + self.seriesID = seriesID + self.seriesName = seriesName + self.seriesPrimaryImageTag = seriesPrimaryImageTag + self.seriesStudio = seriesStudio + self.seriesThumbImageTag = seriesThumbImageTag + self.seriesTimerID = seriesTimerID + self.serverID = serverID + self.shutterSpeed = shutterSpeed + self.software = software + self.songCount = songCount + self.sortName = sortName + self.sourceType = sourceType + self.specialFeatureCount = specialFeatureCount + self.startDate = startDate + self.status = status + self.studios = studios + self.isSupportsSync = isSupportsSync + self.taglines = taglines + self.tags = tags + self.timerID = timerID + self.trailerCount = trailerCount + self.type = type + self.userData = userData + self.video3DFormat = video3DFormat + self.videoType = videoType + self.width = width + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.airDays = try values.decodeIfPresent([DayOfWeek].self, forKey: "AirDays") + self.airTime = try values.decodeIfPresent(String.self, forKey: "AirTime") + self.airsAfterSeasonNumber = try values.decodeIfPresent(Int32.self, forKey: "AirsAfterSeasonNumber") + self.airsBeforeEpisodeNumber = try values.decodeIfPresent(Int32.self, forKey: "AirsBeforeEpisodeNumber") + self.airsBeforeSeasonNumber = try values.decodeIfPresent(Int32.self, forKey: "AirsBeforeSeasonNumber") + self.album = try values.decodeIfPresent(String.self, forKey: "Album") + self.albumArtist = try values.decodeIfPresent(String.self, forKey: "AlbumArtist") + self.albumArtists = try values.decodeIfPresent([NameGuidPair].self, forKey: "AlbumArtists") + self.albumCount = try values.decodeIfPresent(Int32.self, forKey: "AlbumCount") + self.albumID = try values.decodeIfPresent(String.self, forKey: "AlbumId") + self.albumPrimaryImageTag = try values.decodeIfPresent(String.self, forKey: "AlbumPrimaryImageTag") + self.altitude = try values.decodeIfPresent(Double.self, forKey: "Altitude") + self.aperture = try values.decodeIfPresent(Double.self, forKey: "Aperture") + self.artistCount = try values.decodeIfPresent(Int32.self, forKey: "ArtistCount") + self.artistItems = try values.decodeIfPresent([NameGuidPair].self, forKey: "ArtistItems") + self.artists = try values.decodeIfPresent([String].self, forKey: "Artists") + self.aspectRatio = try values.decodeIfPresent(String.self, forKey: "AspectRatio") + self.audio = try values.decodeIfPresent(ProgramAudio.self, forKey: "Audio") + self.backdropImageTags = try values.decodeIfPresent([String].self, forKey: "BackdropImageTags") + self.cameraMake = try values.decodeIfPresent(String.self, forKey: "CameraMake") + self.cameraModel = try values.decodeIfPresent(String.self, forKey: "CameraModel") + self.canDelete = try values.decodeIfPresent(Bool.self, forKey: "CanDelete") + self.canDownload = try values.decodeIfPresent(Bool.self, forKey: "CanDownload") + self.channelID = try values.decodeIfPresent(String.self, forKey: "ChannelId") + self.channelName = try values.decodeIfPresent(String.self, forKey: "ChannelName") + self.channelNumber = try values.decodeIfPresent(String.self, forKey: "ChannelNumber") + self.channelPrimaryImageTag = try values.decodeIfPresent(String.self, forKey: "ChannelPrimaryImageTag") + self.channelType = try values.decodeIfPresent(ChannelType.self, forKey: "ChannelType") + self.chapters = try values.decodeIfPresent([ChapterInfo].self, forKey: "Chapters") + self.childCount = try values.decodeIfPresent(Int32.self, forKey: "ChildCount") + self.collectionType = try values.decodeIfPresent(String.self, forKey: "CollectionType") + self.communityRating = try values.decodeIfPresent(Float.self, forKey: "CommunityRating") + self.completionPercentage = try values.decodeIfPresent(Double.self, forKey: "CompletionPercentage") + self.container = try values.decodeIfPresent(String.self, forKey: "Container") + self.criticRating = try values.decodeIfPresent(Float.self, forKey: "CriticRating") + self.cumulativeRunTimeTicks = try values.decodeIfPresent(Int64.self, forKey: "CumulativeRunTimeTicks") + self.customRating = try values.decodeIfPresent(String.self, forKey: "CustomRating") + self.dateCreated = try values.decodeIfPresent(Date.self, forKey: "DateCreated") + self.dateLastMediaAdded = try values.decodeIfPresent(Date.self, forKey: "DateLastMediaAdded") + self.displayOrder = try values.decodeIfPresent(String.self, forKey: "DisplayOrder") + self.displayPreferencesID = try values.decodeIfPresent(String.self, forKey: "DisplayPreferencesId") + self.enableMediaSourceDisplay = try values.decodeIfPresent(Bool.self, forKey: "EnableMediaSourceDisplay") + self.endDate = try values.decodeIfPresent(Date.self, forKey: "EndDate") + self.episodeCount = try values.decodeIfPresent(Int32.self, forKey: "EpisodeCount") + self.episodeTitle = try values.decodeIfPresent(String.self, forKey: "EpisodeTitle") + self.etag = try values.decodeIfPresent(String.self, forKey: "Etag") + self.exposureTime = try values.decodeIfPresent(Double.self, forKey: "ExposureTime") + self.externalURLs = try values.decodeIfPresent([ExternalURL].self, forKey: "ExternalUrls") + self.extraType = try values.decodeIfPresent(String.self, forKey: "ExtraType") + self.focalLength = try values.decodeIfPresent(Double.self, forKey: "FocalLength") + self.forcedSortName = try values.decodeIfPresent(String.self, forKey: "ForcedSortName") + self.genreItems = try values.decodeIfPresent([NameGuidPair].self, forKey: "GenreItems") + self.genres = try values.decodeIfPresent([String].self, forKey: "Genres") + self.hasSubtitles = try values.decodeIfPresent(Bool.self, forKey: "HasSubtitles") + self.height = try values.decodeIfPresent(Int32.self, forKey: "Height") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.imageBlurHashes = try values.decodeIfPresent(ImageBlurHashes.self, forKey: "ImageBlurHashes") + self.imageOrientation = try values.decodeIfPresent(ImageOrientation.self, forKey: "ImageOrientation") + self.imageTags = try values.decodeIfPresent([String: String].self, forKey: "ImageTags") + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.indexNumberEnd = try values.decodeIfPresent(Int32.self, forKey: "IndexNumberEnd") + self.isFolder = try values.decodeIfPresent(Bool.self, forKey: "IsFolder") + self.isHD = try values.decodeIfPresent(Bool.self, forKey: "IsHD") + self.isKids = try values.decodeIfPresent(Bool.self, forKey: "IsKids") + self.isLive = try values.decodeIfPresent(Bool.self, forKey: "IsLive") + self.isMovie = try values.decodeIfPresent(Bool.self, forKey: "IsMovie") + self.isNews = try values.decodeIfPresent(Bool.self, forKey: "IsNews") + self.isPlaceHolder = try values.decodeIfPresent(Bool.self, forKey: "IsPlaceHolder") + self.isPremiere = try values.decodeIfPresent(Bool.self, forKey: "IsPremiere") + self.isRepeat = try values.decodeIfPresent(Bool.self, forKey: "IsRepeat") + self.isSeries = try values.decodeIfPresent(Bool.self, forKey: "IsSeries") + self.isSports = try values.decodeIfPresent(Bool.self, forKey: "IsSports") + self.isoSpeedRating = try values.decodeIfPresent(Int32.self, forKey: "IsoSpeedRating") + self.isoType = try values.decodeIfPresent(IsoType.self, forKey: "IsoType") + self.latitude = try values.decodeIfPresent(Double.self, forKey: "Latitude") + self.localTrailerCount = try values.decodeIfPresent(Int32.self, forKey: "LocalTrailerCount") + self.locationType = try values.decodeIfPresent(LocationType.self, forKey: "LocationType") + self.lockData = try values.decodeIfPresent(Bool.self, forKey: "LockData") + self.lockedFields = try values.decodeIfPresent([MetadataField].self, forKey: "LockedFields") + self.longitude = try values.decodeIfPresent(Double.self, forKey: "Longitude") + self.mediaSourceCount = try values.decodeIfPresent(Int32.self, forKey: "MediaSourceCount") + self.mediaSources = try values.decodeIfPresent([MediaSourceInfo].self, forKey: "MediaSources") + self.mediaStreams = try values.decodeIfPresent([MediaStream].self, forKey: "MediaStreams") + self.mediaType = try values.decodeIfPresent(String.self, forKey: "MediaType") + self.movieCount = try values.decodeIfPresent(Int32.self, forKey: "MovieCount") + self.musicVideoCount = try values.decodeIfPresent(Int32.self, forKey: "MusicVideoCount") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.number = try values.decodeIfPresent(String.self, forKey: "Number") + self.officialRating = try values.decodeIfPresent(String.self, forKey: "OfficialRating") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.overview = try values.decodeIfPresent(String.self, forKey: "Overview") + self.parentArtImageTag = try values.decodeIfPresent(String.self, forKey: "ParentArtImageTag") + self.parentArtItemID = try values.decodeIfPresent(String.self, forKey: "ParentArtItemId") + self.parentBackdropImageTags = try values.decodeIfPresent([String].self, forKey: "ParentBackdropImageTags") + self.parentBackdropItemID = try values.decodeIfPresent(String.self, forKey: "ParentBackdropItemId") + self.parentID = try values.decodeIfPresent(String.self, forKey: "ParentId") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.parentLogoImageTag = try values.decodeIfPresent(String.self, forKey: "ParentLogoImageTag") + self.parentLogoItemID = try values.decodeIfPresent(String.self, forKey: "ParentLogoItemId") + self.parentPrimaryImageItemID = try values.decodeIfPresent(String.self, forKey: "ParentPrimaryImageItemId") + self.parentPrimaryImageTag = try values.decodeIfPresent(String.self, forKey: "ParentPrimaryImageTag") + self.parentThumbImageTag = try values.decodeIfPresent(String.self, forKey: "ParentThumbImageTag") + self.parentThumbItemID = try values.decodeIfPresent(String.self, forKey: "ParentThumbItemId") + self.partCount = try values.decodeIfPresent(Int32.self, forKey: "PartCount") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.people = try values.decodeIfPresent([BaseItemPerson].self, forKey: "People") + self.playAccess = try values.decodeIfPresent(PlayAccess.self, forKey: "PlayAccess") + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + self.preferredMetadataCountryCode = try values.decodeIfPresent(String.self, forKey: "PreferredMetadataCountryCode") + self.preferredMetadataLanguage = try values.decodeIfPresent(String.self, forKey: "PreferredMetadataLanguage") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.primaryImageAspectRatio = try values.decodeIfPresent(Double.self, forKey: "PrimaryImageAspectRatio") + self.productionLocations = try values.decodeIfPresent([String].self, forKey: "ProductionLocations") + self.productionYear = try values.decodeIfPresent(Int32.self, forKey: "ProductionYear") + self.programCount = try values.decodeIfPresent(Int32.self, forKey: "ProgramCount") + self.programID = try values.decodeIfPresent(String.self, forKey: "ProgramId") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.recursiveItemCount = try values.decodeIfPresent(Int32.self, forKey: "RecursiveItemCount") + self.remoteTrailers = try values.decodeIfPresent([MediaURL].self, forKey: "RemoteTrailers") + self.runTimeTicks = try values.decodeIfPresent(Int64.self, forKey: "RunTimeTicks") + self.screenshotImageTags = try values.decodeIfPresent([String].self, forKey: "ScreenshotImageTags") + self.seasonID = try values.decodeIfPresent(String.self, forKey: "SeasonId") + self.seasonName = try values.decodeIfPresent(String.self, forKey: "SeasonName") + self.seriesCount = try values.decodeIfPresent(Int32.self, forKey: "SeriesCount") + self.seriesID = try values.decodeIfPresent(String.self, forKey: "SeriesId") + self.seriesName = try values.decodeIfPresent(String.self, forKey: "SeriesName") + self.seriesPrimaryImageTag = try values.decodeIfPresent(String.self, forKey: "SeriesPrimaryImageTag") + self.seriesStudio = try values.decodeIfPresent(String.self, forKey: "SeriesStudio") + self.seriesThumbImageTag = try values.decodeIfPresent(String.self, forKey: "SeriesThumbImageTag") + self.seriesTimerID = try values.decodeIfPresent(String.self, forKey: "SeriesTimerId") + self.serverID = try values.decodeIfPresent(String.self, forKey: "ServerId") + self.shutterSpeed = try values.decodeIfPresent(Double.self, forKey: "ShutterSpeed") + self.software = try values.decodeIfPresent(String.self, forKey: "Software") + self.songCount = try values.decodeIfPresent(Int32.self, forKey: "SongCount") + self.sortName = try values.decodeIfPresent(String.self, forKey: "SortName") + self.sourceType = try values.decodeIfPresent(String.self, forKey: "SourceType") + self.specialFeatureCount = try values.decodeIfPresent(Int32.self, forKey: "SpecialFeatureCount") + self.startDate = try values.decodeIfPresent(Date.self, forKey: "StartDate") + self.status = try values.decodeIfPresent(String.self, forKey: "Status") + self.studios = try values.decodeIfPresent([NameGuidPair].self, forKey: "Studios") + self.isSupportsSync = try values.decodeIfPresent(Bool.self, forKey: "SupportsSync") + self.taglines = try values.decodeIfPresent([String].self, forKey: "Taglines") + self.tags = try values.decodeIfPresent([String].self, forKey: "Tags") + self.timerID = try values.decodeIfPresent(String.self, forKey: "TimerId") + self.trailerCount = try values.decodeIfPresent(Int32.self, forKey: "TrailerCount") + self.type = try values.decodeIfPresent(BaseItemKind.self, forKey: "Type") + self.userData = try values.decodeIfPresent(UserItemDataDto.self, forKey: "UserData") + self.video3DFormat = try values.decodeIfPresent(Video3DFormat.self, forKey: "Video3DFormat") + self.videoType = try values.decodeIfPresent(VideoType.self, forKey: "VideoType") + self.width = try values.decodeIfPresent(Int32.self, forKey: "Width") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(airDays, forKey: "AirDays") + try values.encodeIfPresent(airTime, forKey: "AirTime") + try values.encodeIfPresent(airsAfterSeasonNumber, forKey: "AirsAfterSeasonNumber") + try values.encodeIfPresent(airsBeforeEpisodeNumber, forKey: "AirsBeforeEpisodeNumber") + try values.encodeIfPresent(airsBeforeSeasonNumber, forKey: "AirsBeforeSeasonNumber") + try values.encodeIfPresent(album, forKey: "Album") + try values.encodeIfPresent(albumArtist, forKey: "AlbumArtist") + try values.encodeIfPresent(albumArtists, forKey: "AlbumArtists") + try values.encodeIfPresent(albumCount, forKey: "AlbumCount") + try values.encodeIfPresent(albumID, forKey: "AlbumId") + try values.encodeIfPresent(albumPrimaryImageTag, forKey: "AlbumPrimaryImageTag") + try values.encodeIfPresent(altitude, forKey: "Altitude") + try values.encodeIfPresent(aperture, forKey: "Aperture") + try values.encodeIfPresent(artistCount, forKey: "ArtistCount") + try values.encodeIfPresent(artistItems, forKey: "ArtistItems") + try values.encodeIfPresent(artists, forKey: "Artists") + try values.encodeIfPresent(aspectRatio, forKey: "AspectRatio") + try values.encodeIfPresent(audio, forKey: "Audio") + try values.encodeIfPresent(backdropImageTags, forKey: "BackdropImageTags") + try values.encodeIfPresent(cameraMake, forKey: "CameraMake") + try values.encodeIfPresent(cameraModel, forKey: "CameraModel") + try values.encodeIfPresent(canDelete, forKey: "CanDelete") + try values.encodeIfPresent(canDownload, forKey: "CanDownload") + try values.encodeIfPresent(channelID, forKey: "ChannelId") + try values.encodeIfPresent(channelName, forKey: "ChannelName") + try values.encodeIfPresent(channelNumber, forKey: "ChannelNumber") + try values.encodeIfPresent(channelPrimaryImageTag, forKey: "ChannelPrimaryImageTag") + try values.encodeIfPresent(channelType, forKey: "ChannelType") + try values.encodeIfPresent(chapters, forKey: "Chapters") + try values.encodeIfPresent(childCount, forKey: "ChildCount") + try values.encodeIfPresent(collectionType, forKey: "CollectionType") + try values.encodeIfPresent(communityRating, forKey: "CommunityRating") + try values.encodeIfPresent(completionPercentage, forKey: "CompletionPercentage") + try values.encodeIfPresent(container, forKey: "Container") + try values.encodeIfPresent(criticRating, forKey: "CriticRating") + try values.encodeIfPresent(cumulativeRunTimeTicks, forKey: "CumulativeRunTimeTicks") + try values.encodeIfPresent(customRating, forKey: "CustomRating") + try values.encodeIfPresent(dateCreated, forKey: "DateCreated") + try values.encodeIfPresent(dateLastMediaAdded, forKey: "DateLastMediaAdded") + try values.encodeIfPresent(displayOrder, forKey: "DisplayOrder") + try values.encodeIfPresent(displayPreferencesID, forKey: "DisplayPreferencesId") + try values.encodeIfPresent(enableMediaSourceDisplay, forKey: "EnableMediaSourceDisplay") + try values.encodeIfPresent(endDate, forKey: "EndDate") + try values.encodeIfPresent(episodeCount, forKey: "EpisodeCount") + try values.encodeIfPresent(episodeTitle, forKey: "EpisodeTitle") + try values.encodeIfPresent(etag, forKey: "Etag") + try values.encodeIfPresent(exposureTime, forKey: "ExposureTime") + try values.encodeIfPresent(externalURLs, forKey: "ExternalUrls") + try values.encodeIfPresent(extraType, forKey: "ExtraType") + try values.encodeIfPresent(focalLength, forKey: "FocalLength") + try values.encodeIfPresent(forcedSortName, forKey: "ForcedSortName") + try values.encodeIfPresent(genreItems, forKey: "GenreItems") + try values.encodeIfPresent(genres, forKey: "Genres") + try values.encodeIfPresent(hasSubtitles, forKey: "HasSubtitles") + try values.encodeIfPresent(height, forKey: "Height") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(imageBlurHashes, forKey: "ImageBlurHashes") + try values.encodeIfPresent(imageOrientation, forKey: "ImageOrientation") + try values.encodeIfPresent(imageTags, forKey: "ImageTags") + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(indexNumberEnd, forKey: "IndexNumberEnd") + try values.encodeIfPresent(isFolder, forKey: "IsFolder") + try values.encodeIfPresent(isHD, forKey: "IsHD") + try values.encodeIfPresent(isKids, forKey: "IsKids") + try values.encodeIfPresent(isLive, forKey: "IsLive") + try values.encodeIfPresent(isMovie, forKey: "IsMovie") + try values.encodeIfPresent(isNews, forKey: "IsNews") + try values.encodeIfPresent(isPlaceHolder, forKey: "IsPlaceHolder") + try values.encodeIfPresent(isPremiere, forKey: "IsPremiere") + try values.encodeIfPresent(isRepeat, forKey: "IsRepeat") + try values.encodeIfPresent(isSeries, forKey: "IsSeries") + try values.encodeIfPresent(isSports, forKey: "IsSports") + try values.encodeIfPresent(isoSpeedRating, forKey: "IsoSpeedRating") + try values.encodeIfPresent(isoType, forKey: "IsoType") + try values.encodeIfPresent(latitude, forKey: "Latitude") + try values.encodeIfPresent(localTrailerCount, forKey: "LocalTrailerCount") + try values.encodeIfPresent(locationType, forKey: "LocationType") + try values.encodeIfPresent(lockData, forKey: "LockData") + try values.encodeIfPresent(lockedFields, forKey: "LockedFields") + try values.encodeIfPresent(longitude, forKey: "Longitude") + try values.encodeIfPresent(mediaSourceCount, forKey: "MediaSourceCount") + try values.encodeIfPresent(mediaSources, forKey: "MediaSources") + try values.encodeIfPresent(mediaStreams, forKey: "MediaStreams") + try values.encodeIfPresent(mediaType, forKey: "MediaType") + try values.encodeIfPresent(movieCount, forKey: "MovieCount") + try values.encodeIfPresent(musicVideoCount, forKey: "MusicVideoCount") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(number, forKey: "Number") + try values.encodeIfPresent(officialRating, forKey: "OfficialRating") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(overview, forKey: "Overview") + try values.encodeIfPresent(parentArtImageTag, forKey: "ParentArtImageTag") + try values.encodeIfPresent(parentArtItemID, forKey: "ParentArtItemId") + try values.encodeIfPresent(parentBackdropImageTags, forKey: "ParentBackdropImageTags") + try values.encodeIfPresent(parentBackdropItemID, forKey: "ParentBackdropItemId") + try values.encodeIfPresent(parentID, forKey: "ParentId") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(parentLogoImageTag, forKey: "ParentLogoImageTag") + try values.encodeIfPresent(parentLogoItemID, forKey: "ParentLogoItemId") + try values.encodeIfPresent(parentPrimaryImageItemID, forKey: "ParentPrimaryImageItemId") + try values.encodeIfPresent(parentPrimaryImageTag, forKey: "ParentPrimaryImageTag") + try values.encodeIfPresent(parentThumbImageTag, forKey: "ParentThumbImageTag") + try values.encodeIfPresent(parentThumbItemID, forKey: "ParentThumbItemId") + try values.encodeIfPresent(partCount, forKey: "PartCount") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(people, forKey: "People") + try values.encodeIfPresent(playAccess, forKey: "PlayAccess") + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + try values.encodeIfPresent(preferredMetadataCountryCode, forKey: "PreferredMetadataCountryCode") + try values.encodeIfPresent(preferredMetadataLanguage, forKey: "PreferredMetadataLanguage") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(primaryImageAspectRatio, forKey: "PrimaryImageAspectRatio") + try values.encodeIfPresent(productionLocations, forKey: "ProductionLocations") + try values.encodeIfPresent(productionYear, forKey: "ProductionYear") + try values.encodeIfPresent(programCount, forKey: "ProgramCount") + try values.encodeIfPresent(programID, forKey: "ProgramId") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(recursiveItemCount, forKey: "RecursiveItemCount") + try values.encodeIfPresent(remoteTrailers, forKey: "RemoteTrailers") + try values.encodeIfPresent(runTimeTicks, forKey: "RunTimeTicks") + try values.encodeIfPresent(screenshotImageTags, forKey: "ScreenshotImageTags") + try values.encodeIfPresent(seasonID, forKey: "SeasonId") + try values.encodeIfPresent(seasonName, forKey: "SeasonName") + try values.encodeIfPresent(seriesCount, forKey: "SeriesCount") + try values.encodeIfPresent(seriesID, forKey: "SeriesId") + try values.encodeIfPresent(seriesName, forKey: "SeriesName") + try values.encodeIfPresent(seriesPrimaryImageTag, forKey: "SeriesPrimaryImageTag") + try values.encodeIfPresent(seriesStudio, forKey: "SeriesStudio") + try values.encodeIfPresent(seriesThumbImageTag, forKey: "SeriesThumbImageTag") + try values.encodeIfPresent(seriesTimerID, forKey: "SeriesTimerId") + try values.encodeIfPresent(serverID, forKey: "ServerId") + try values.encodeIfPresent(shutterSpeed, forKey: "ShutterSpeed") + try values.encodeIfPresent(software, forKey: "Software") + try values.encodeIfPresent(songCount, forKey: "SongCount") + try values.encodeIfPresent(sortName, forKey: "SortName") + try values.encodeIfPresent(sourceType, forKey: "SourceType") + try values.encodeIfPresent(specialFeatureCount, forKey: "SpecialFeatureCount") + try values.encodeIfPresent(startDate, forKey: "StartDate") + try values.encodeIfPresent(status, forKey: "Status") + try values.encodeIfPresent(studios, forKey: "Studios") + try values.encodeIfPresent(isSupportsSync, forKey: "SupportsSync") + try values.encodeIfPresent(taglines, forKey: "Taglines") + try values.encodeIfPresent(tags, forKey: "Tags") + try values.encodeIfPresent(timerID, forKey: "TimerId") + try values.encodeIfPresent(trailerCount, forKey: "TrailerCount") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(userData, forKey: "UserData") + try values.encodeIfPresent(video3DFormat, forKey: "Video3DFormat") + try values.encodeIfPresent(videoType, forKey: "VideoType") + try values.encodeIfPresent(width, forKey: "Width") + } +} diff --git a/Sources/Entities/BaseItemDtoQueryResult.swift b/Sources/Entities/BaseItemDtoQueryResult.swift new file mode 100644 index 000000000..e6ddb9ac6 --- /dev/null +++ b/Sources/Entities/BaseItemDtoQueryResult.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct BaseItemDtoQueryResult: Codable { + /// Gets or sets the items. + public var items: [BaseItemDto]? + /// Gets or sets the index of the first record in Items. + public var startIndex: Int32? + /// Gets or sets the total number of records available. + public var totalRecordCount: Int32? + + public init(items: [BaseItemDto]? = nil, startIndex: Int32? = nil, totalRecordCount: Int32? = nil) { + self.items = items + self.startIndex = startIndex + self.totalRecordCount = totalRecordCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.items = try values.decodeIfPresent([BaseItemDto].self, forKey: "Items") + self.startIndex = try values.decodeIfPresent(Int32.self, forKey: "StartIndex") + self.totalRecordCount = try values.decodeIfPresent(Int32.self, forKey: "TotalRecordCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(items, forKey: "Items") + try values.encodeIfPresent(startIndex, forKey: "StartIndex") + try values.encodeIfPresent(totalRecordCount, forKey: "TotalRecordCount") + } +} diff --git a/Sources/JellyfinAPI/Models/BaseItemKind.swift b/Sources/Entities/BaseItemKind.swift similarity index 82% rename from Sources/JellyfinAPI/Models/BaseItemKind.swift rename to Sources/Entities/BaseItemKind.swift index abd328bb5..7a08f99e0 100644 --- a/Sources/JellyfinAPI/Models/BaseItemKind.swift +++ b/Sources/Entities/BaseItemKind.swift @@ -1,16 +1,14 @@ // -// BaseItemKind.swift +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. // -// Generated by openapi-generator -// https://openapi-generator.tech +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors // import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif -/** The base item kind. */ +/// The base item kind. public enum BaseItemKind: String, Codable, CaseIterable { case aggregateFolder = "AggregateFolder" case audio = "Audio" diff --git a/Sources/Entities/BaseItemPerson.swift b/Sources/Entities/BaseItemPerson.swift new file mode 100644 index 000000000..b575494b2 --- /dev/null +++ b/Sources/Entities/BaseItemPerson.swift @@ -0,0 +1,142 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// This is used by the api to get information about a Person within a BaseItem. +public struct BaseItemPerson: Codable, Identifiable { + /// Gets or sets the identifier. + public var id: String? + /// Gets or sets the primary image blurhash. + public var imageBlurHashes: ImageBlurHashes? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the primary image tag. + public var primaryImageTag: String? + /// Gets or sets the role. + public var role: String? + /// Gets or sets the type. + public var type: String? + + /// Gets or sets the primary image blurhash. + public struct ImageBlurHashes: Codable { + public var art: [String: String]? + public var backdrop: [String: String]? + public var banner: [String: String]? + public var box: [String: String]? + public var boxRear: [String: String]? + public var chapter: [String: String]? + public var disc: [String: String]? + public var logo: [String: String]? + public var menu: [String: String]? + public var primary: [String: String]? + public var profile: [String: String]? + public var screenshot: [String: String]? + public var thumb: [String: String]? + + public init( + art: [String: String]? = nil, + backdrop: [String: String]? = nil, + banner: [String: String]? = nil, + box: [String: String]? = nil, + boxRear: [String: String]? = nil, + chapter: [String: String]? = nil, + disc: [String: String]? = nil, + logo: [String: String]? = nil, + menu: [String: String]? = nil, + primary: [String: String]? = nil, + profile: [String: String]? = nil, + screenshot: [String: String]? = nil, + thumb: [String: String]? = nil + ) { + self.art = art + self.backdrop = backdrop + self.banner = banner + self.box = box + self.boxRear = boxRear + self.chapter = chapter + self.disc = disc + self.logo = logo + self.menu = menu + self.primary = primary + self.profile = profile + self.screenshot = screenshot + self.thumb = thumb + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.art = try values.decodeIfPresent([String: String].self, forKey: "Art") + self.backdrop = try values.decodeIfPresent([String: String].self, forKey: "Backdrop") + self.banner = try values.decodeIfPresent([String: String].self, forKey: "Banner") + self.box = try values.decodeIfPresent([String: String].self, forKey: "Box") + self.boxRear = try values.decodeIfPresent([String: String].self, forKey: "BoxRear") + self.chapter = try values.decodeIfPresent([String: String].self, forKey: "Chapter") + self.disc = try values.decodeIfPresent([String: String].self, forKey: "Disc") + self.logo = try values.decodeIfPresent([String: String].self, forKey: "Logo") + self.menu = try values.decodeIfPresent([String: String].self, forKey: "Menu") + self.primary = try values.decodeIfPresent([String: String].self, forKey: "Primary") + self.profile = try values.decodeIfPresent([String: String].self, forKey: "Profile") + self.screenshot = try values.decodeIfPresent([String: String].self, forKey: "Screenshot") + self.thumb = try values.decodeIfPresent([String: String].self, forKey: "Thumb") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(art, forKey: "Art") + try values.encodeIfPresent(backdrop, forKey: "Backdrop") + try values.encodeIfPresent(banner, forKey: "Banner") + try values.encodeIfPresent(box, forKey: "Box") + try values.encodeIfPresent(boxRear, forKey: "BoxRear") + try values.encodeIfPresent(chapter, forKey: "Chapter") + try values.encodeIfPresent(disc, forKey: "Disc") + try values.encodeIfPresent(logo, forKey: "Logo") + try values.encodeIfPresent(menu, forKey: "Menu") + try values.encodeIfPresent(primary, forKey: "Primary") + try values.encodeIfPresent(profile, forKey: "Profile") + try values.encodeIfPresent(screenshot, forKey: "Screenshot") + try values.encodeIfPresent(thumb, forKey: "Thumb") + } + } + + public init( + id: String? = nil, + imageBlurHashes: ImageBlurHashes? = nil, + name: String? = nil, + primaryImageTag: String? = nil, + role: String? = nil, + type: String? = nil + ) { + self.id = id + self.imageBlurHashes = imageBlurHashes + self.name = name + self.primaryImageTag = primaryImageTag + self.role = role + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.imageBlurHashes = try values.decodeIfPresent(ImageBlurHashes.self, forKey: "ImageBlurHashes") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.primaryImageTag = try values.decodeIfPresent(String.self, forKey: "PrimaryImageTag") + self.role = try values.decodeIfPresent(String.self, forKey: "Role") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(imageBlurHashes, forKey: "ImageBlurHashes") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(primaryImageTag, forKey: "PrimaryImageTag") + try values.encodeIfPresent(role, forKey: "Role") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/BookInfo.swift b/Sources/Entities/BookInfo.swift new file mode 100644 index 000000000..646752203 --- /dev/null +++ b/Sources/Entities/BookInfo.swift @@ -0,0 +1,91 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct BookInfo: Codable { + public var indexNumber: Int32? + public var isAutomated: Bool? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the metadata language. + public var metadataLanguage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the original title. + public var originalTitle: String? + public var parentIndexNumber: Int32? + /// Gets or sets the path. + public var path: String? + public var premiereDate: Date? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + public var seriesName: String? + /// Gets or sets the year. + public var year: Int32? + + public init( + indexNumber: Int32? = nil, + isAutomated: Bool? = nil, + metadataCountryCode: String? = nil, + metadataLanguage: String? = nil, + name: String? = nil, + originalTitle: String? = nil, + parentIndexNumber: Int32? = nil, + path: String? = nil, + premiereDate: Date? = nil, + providerIDs: [String: String]? = nil, + seriesName: String? = nil, + year: Int32? = nil + ) { + self.indexNumber = indexNumber + self.isAutomated = isAutomated + self.metadataCountryCode = metadataCountryCode + self.metadataLanguage = metadataLanguage + self.name = name + self.originalTitle = originalTitle + self.parentIndexNumber = parentIndexNumber + self.path = path + self.premiereDate = premiereDate + self.providerIDs = providerIDs + self.seriesName = seriesName + self.year = year + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isAutomated = try values.decodeIfPresent(Bool.self, forKey: "IsAutomated") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataLanguage = try values.decodeIfPresent(String.self, forKey: "MetadataLanguage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.seriesName = try values.decodeIfPresent(String.self, forKey: "SeriesName") + self.year = try values.decodeIfPresent(Int32.self, forKey: "Year") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isAutomated, forKey: "IsAutomated") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataLanguage, forKey: "MetadataLanguage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(seriesName, forKey: "SeriesName") + try values.encodeIfPresent(year, forKey: "Year") + } +} diff --git a/Sources/Entities/BookInfoRemoteSearchQuery.swift b/Sources/Entities/BookInfoRemoteSearchQuery.swift new file mode 100644 index 000000000..f253b84a2 --- /dev/null +++ b/Sources/Entities/BookInfoRemoteSearchQuery.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct BookInfoRemoteSearchQuery: Codable { + /// Gets or sets a value indicating whether disabled providers should be included. + public var isIncludeDisabledProviders: Bool? + public var itemID: String? + public var searchInfo: BookInfo? + /// Gets or sets the provider name to search within if set. + public var searchProviderName: String? + + public init( + isIncludeDisabledProviders: Bool? = nil, + itemID: String? = nil, + searchInfo: BookInfo? = nil, + searchProviderName: String? = nil + ) { + self.isIncludeDisabledProviders = isIncludeDisabledProviders + self.itemID = itemID + self.searchInfo = searchInfo + self.searchProviderName = searchProviderName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isIncludeDisabledProviders = try values.decodeIfPresent(Bool.self, forKey: "IncludeDisabledProviders") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.searchInfo = try values.decodeIfPresent(BookInfo.self, forKey: "SearchInfo") + self.searchProviderName = try values.decodeIfPresent(String.self, forKey: "SearchProviderName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isIncludeDisabledProviders, forKey: "IncludeDisabledProviders") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(searchInfo, forKey: "SearchInfo") + try values.encodeIfPresent(searchProviderName, forKey: "SearchProviderName") + } +} diff --git a/Sources/Entities/BoxSetInfo.swift b/Sources/Entities/BoxSetInfo.swift new file mode 100644 index 000000000..00eb195ee --- /dev/null +++ b/Sources/Entities/BoxSetInfo.swift @@ -0,0 +1,86 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct BoxSetInfo: Codable { + public var indexNumber: Int32? + public var isAutomated: Bool? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the metadata language. + public var metadataLanguage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the original title. + public var originalTitle: String? + public var parentIndexNumber: Int32? + /// Gets or sets the path. + public var path: String? + public var premiereDate: Date? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + /// Gets or sets the year. + public var year: Int32? + + public init( + indexNumber: Int32? = nil, + isAutomated: Bool? = nil, + metadataCountryCode: String? = nil, + metadataLanguage: String? = nil, + name: String? = nil, + originalTitle: String? = nil, + parentIndexNumber: Int32? = nil, + path: String? = nil, + premiereDate: Date? = nil, + providerIDs: [String: String]? = nil, + year: Int32? = nil + ) { + self.indexNumber = indexNumber + self.isAutomated = isAutomated + self.metadataCountryCode = metadataCountryCode + self.metadataLanguage = metadataLanguage + self.name = name + self.originalTitle = originalTitle + self.parentIndexNumber = parentIndexNumber + self.path = path + self.premiereDate = premiereDate + self.providerIDs = providerIDs + self.year = year + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isAutomated = try values.decodeIfPresent(Bool.self, forKey: "IsAutomated") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataLanguage = try values.decodeIfPresent(String.self, forKey: "MetadataLanguage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.year = try values.decodeIfPresent(Int32.self, forKey: "Year") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isAutomated, forKey: "IsAutomated") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataLanguage, forKey: "MetadataLanguage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(year, forKey: "Year") + } +} diff --git a/Sources/Entities/BoxSetInfoRemoteSearchQuery.swift b/Sources/Entities/BoxSetInfoRemoteSearchQuery.swift new file mode 100644 index 000000000..3354a729c --- /dev/null +++ b/Sources/Entities/BoxSetInfoRemoteSearchQuery.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct BoxSetInfoRemoteSearchQuery: Codable { + /// Gets or sets a value indicating whether disabled providers should be included. + public var isIncludeDisabledProviders: Bool? + public var itemID: String? + public var searchInfo: BoxSetInfo? + /// Gets or sets the provider name to search within if set. + public var searchProviderName: String? + + public init( + isIncludeDisabledProviders: Bool? = nil, + itemID: String? = nil, + searchInfo: BoxSetInfo? = nil, + searchProviderName: String? = nil + ) { + self.isIncludeDisabledProviders = isIncludeDisabledProviders + self.itemID = itemID + self.searchInfo = searchInfo + self.searchProviderName = searchProviderName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isIncludeDisabledProviders = try values.decodeIfPresent(Bool.self, forKey: "IncludeDisabledProviders") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.searchInfo = try values.decodeIfPresent(BoxSetInfo.self, forKey: "SearchInfo") + self.searchProviderName = try values.decodeIfPresent(String.self, forKey: "SearchProviderName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isIncludeDisabledProviders, forKey: "IncludeDisabledProviders") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(searchInfo, forKey: "SearchInfo") + try values.encodeIfPresent(searchProviderName, forKey: "SearchProviderName") + } +} diff --git a/Sources/Entities/BrandingOptions.swift b/Sources/Entities/BrandingOptions.swift new file mode 100644 index 000000000..3a449870c --- /dev/null +++ b/Sources/Entities/BrandingOptions.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The branding options. +public struct BrandingOptions: Codable { + /// Gets or sets the custom CSS. + public var customCss: String? + /// Gets or sets the login disclaimer. + public var loginDisclaimer: String? + /// Gets or sets a value indicating whether to enable the splashscreen. + public var isSplashscreenEnabled: Bool? + + public init(customCss: String? = nil, loginDisclaimer: String? = nil, isSplashscreenEnabled: Bool? = nil) { + self.customCss = customCss + self.loginDisclaimer = loginDisclaimer + self.isSplashscreenEnabled = isSplashscreenEnabled + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.customCss = try values.decodeIfPresent(String.self, forKey: "CustomCss") + self.loginDisclaimer = try values.decodeIfPresent(String.self, forKey: "LoginDisclaimer") + self.isSplashscreenEnabled = try values.decodeIfPresent(Bool.self, forKey: "SplashscreenEnabled") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(customCss, forKey: "CustomCss") + try values.encodeIfPresent(loginDisclaimer, forKey: "LoginDisclaimer") + try values.encodeIfPresent(isSplashscreenEnabled, forKey: "SplashscreenEnabled") + } +} diff --git a/Sources/Entities/BufferRequestDto.swift b/Sources/Entities/BufferRequestDto.swift new file mode 100644 index 000000000..6cba8fb7e --- /dev/null +++ b/Sources/Entities/BufferRequestDto.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class BufferRequestDto. +public struct BufferRequestDto: Codable { + /// Gets or sets a value indicating whether the client playback is unpaused. + public var isPlaying: Bool? + /// Gets or sets the playlist item identifier of the playing item. + public var playlistItemID: String? + /// Gets or sets the position ticks. + public var positionTicks: Int64? + /// Gets or sets when the request has been made by the client. + public var when: Date? + + public init(isPlaying: Bool? = nil, playlistItemID: String? = nil, positionTicks: Int64? = nil, when: Date? = nil) { + self.isPlaying = isPlaying + self.playlistItemID = playlistItemID + self.positionTicks = positionTicks + self.when = when + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isPlaying = try values.decodeIfPresent(Bool.self, forKey: "IsPlaying") + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + self.positionTicks = try values.decodeIfPresent(Int64.self, forKey: "PositionTicks") + self.when = try values.decodeIfPresent(Date.self, forKey: "When") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isPlaying, forKey: "IsPlaying") + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + try values.encodeIfPresent(positionTicks, forKey: "PositionTicks") + try values.encodeIfPresent(when, forKey: "When") + } +} diff --git a/Sources/Entities/ChannelFeatures.swift b/Sources/Entities/ChannelFeatures.swift new file mode 100644 index 000000000..511f6d5bc --- /dev/null +++ b/Sources/Entities/ChannelFeatures.swift @@ -0,0 +1,96 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ChannelFeatures: Codable, Identifiable { + /// Gets or sets the automatic refresh levels. + public var autoRefreshLevels: Int32? + /// Gets or sets a value indicating whether this instance can filter. + public var canFilter: Bool? + /// Gets or sets a value indicating whether this instance can search. + public var canSearch: Bool? + /// Gets or sets the content types. + public var contentTypes: [ChannelMediaContentType]? + /// Gets or sets the default sort orders. + public var defaultSortFields: [ChannelItemSortField]? + /// Gets or sets the identifier. + public var id: String? + /// Gets or sets the maximum number of records the channel allows retrieving at a time. + public var maxPageSize: Int32? + /// Gets or sets the media types. + public var mediaTypes: [ChannelMediaType]? + /// Gets or sets the name. + public var name: String? + /// Gets or sets a value indicating whether [supports content downloading]. + public var isSupportsContentDownloading: Bool? + /// Gets or sets a value indicating whether [supports latest media]. + public var isSupportsLatestMedia: Bool? + /// Gets or sets a value indicating whether a sort ascending/descending toggle is supported. + public var isSupportsSortOrderToggle: Bool? + + public init( + autoRefreshLevels: Int32? = nil, + canFilter: Bool? = nil, + canSearch: Bool? = nil, + contentTypes: [ChannelMediaContentType]? = nil, + defaultSortFields: [ChannelItemSortField]? = nil, + id: String? = nil, + maxPageSize: Int32? = nil, + mediaTypes: [ChannelMediaType]? = nil, + name: String? = nil, + isSupportsContentDownloading: Bool? = nil, + isSupportsLatestMedia: Bool? = nil, + isSupportsSortOrderToggle: Bool? = nil + ) { + self.autoRefreshLevels = autoRefreshLevels + self.canFilter = canFilter + self.canSearch = canSearch + self.contentTypes = contentTypes + self.defaultSortFields = defaultSortFields + self.id = id + self.maxPageSize = maxPageSize + self.mediaTypes = mediaTypes + self.name = name + self.isSupportsContentDownloading = isSupportsContentDownloading + self.isSupportsLatestMedia = isSupportsLatestMedia + self.isSupportsSortOrderToggle = isSupportsSortOrderToggle + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.autoRefreshLevels = try values.decodeIfPresent(Int32.self, forKey: "AutoRefreshLevels") + self.canFilter = try values.decodeIfPresent(Bool.self, forKey: "CanFilter") + self.canSearch = try values.decodeIfPresent(Bool.self, forKey: "CanSearch") + self.contentTypes = try values.decodeIfPresent([ChannelMediaContentType].self, forKey: "ContentTypes") + self.defaultSortFields = try values.decodeIfPresent([ChannelItemSortField].self, forKey: "DefaultSortFields") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.maxPageSize = try values.decodeIfPresent(Int32.self, forKey: "MaxPageSize") + self.mediaTypes = try values.decodeIfPresent([ChannelMediaType].self, forKey: "MediaTypes") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.isSupportsContentDownloading = try values.decodeIfPresent(Bool.self, forKey: "SupportsContentDownloading") + self.isSupportsLatestMedia = try values.decodeIfPresent(Bool.self, forKey: "SupportsLatestMedia") + self.isSupportsSortOrderToggle = try values.decodeIfPresent(Bool.self, forKey: "SupportsSortOrderToggle") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(autoRefreshLevels, forKey: "AutoRefreshLevels") + try values.encodeIfPresent(canFilter, forKey: "CanFilter") + try values.encodeIfPresent(canSearch, forKey: "CanSearch") + try values.encodeIfPresent(contentTypes, forKey: "ContentTypes") + try values.encodeIfPresent(defaultSortFields, forKey: "DefaultSortFields") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(maxPageSize, forKey: "MaxPageSize") + try values.encodeIfPresent(mediaTypes, forKey: "MediaTypes") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(isSupportsContentDownloading, forKey: "SupportsContentDownloading") + try values.encodeIfPresent(isSupportsLatestMedia, forKey: "SupportsLatestMedia") + try values.encodeIfPresent(isSupportsSortOrderToggle, forKey: "SupportsSortOrderToggle") + } +} diff --git a/Sources/Entities/ChannelItemSortField.swift b/Sources/Entities/ChannelItemSortField.swift new file mode 100644 index 000000000..c915e6d2a --- /dev/null +++ b/Sources/Entities/ChannelItemSortField.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum ChannelItemSortField: String, Codable, CaseIterable { + case name = "Name" + case communityRating = "CommunityRating" + case premiereDate = "PremiereDate" + case dateCreated = "DateCreated" + case runtime = "Runtime" + case playCount = "PlayCount" + case communityPlayCount = "CommunityPlayCount" +} diff --git a/Sources/Entities/ChannelMappingOptionsDto.swift b/Sources/Entities/ChannelMappingOptionsDto.swift new file mode 100644 index 000000000..563aa17b3 --- /dev/null +++ b/Sources/Entities/ChannelMappingOptionsDto.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Channel mapping options dto. +public struct ChannelMappingOptionsDto: Codable { + /// Gets or sets list of mappings. + public var mappings: [NameValuePair]? + /// Gets or sets list of provider channels. + public var providerChannels: [NameIDPair]? + /// Gets or sets provider name. + public var providerName: String? + /// Gets or sets list of tuner channels. + public var tunerChannels: [TunerChannelMapping]? + + public init( + mappings: [NameValuePair]? = nil, + providerChannels: [NameIDPair]? = nil, + providerName: String? = nil, + tunerChannels: [TunerChannelMapping]? = nil + ) { + self.mappings = mappings + self.providerChannels = providerChannels + self.providerName = providerName + self.tunerChannels = tunerChannels + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.mappings = try values.decodeIfPresent([NameValuePair].self, forKey: "Mappings") + self.providerChannels = try values.decodeIfPresent([NameIDPair].self, forKey: "ProviderChannels") + self.providerName = try values.decodeIfPresent(String.self, forKey: "ProviderName") + self.tunerChannels = try values.decodeIfPresent([TunerChannelMapping].self, forKey: "TunerChannels") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(mappings, forKey: "Mappings") + try values.encodeIfPresent(providerChannels, forKey: "ProviderChannels") + try values.encodeIfPresent(providerName, forKey: "ProviderName") + try values.encodeIfPresent(tunerChannels, forKey: "TunerChannels") + } +} diff --git a/Sources/Entities/ChannelMediaContentType.swift b/Sources/Entities/ChannelMediaContentType.swift new file mode 100644 index 000000000..c0ba9617a --- /dev/null +++ b/Sources/Entities/ChannelMediaContentType.swift @@ -0,0 +1,20 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum ChannelMediaContentType: String, Codable, CaseIterable { + case clip = "Clip" + case podcast = "Podcast" + case trailer = "Trailer" + case movie = "Movie" + case episode = "Episode" + case song = "Song" + case movieExtra = "MovieExtra" + case tvExtra = "TvExtra" +} diff --git a/Sources/Entities/ChannelMediaType.swift b/Sources/Entities/ChannelMediaType.swift new file mode 100644 index 000000000..4ec7f6784 --- /dev/null +++ b/Sources/Entities/ChannelMediaType.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum ChannelMediaType: String, Codable, CaseIterable { + case audio = "Audio" + case video = "Video" + case photo = "Photo" +} diff --git a/Sources/Entities/ChannelType.swift b/Sources/Entities/ChannelType.swift new file mode 100644 index 000000000..a4948919c --- /dev/null +++ b/Sources/Entities/ChannelType.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum ChannelType. +public enum ChannelType: String, Codable, CaseIterable { + case tv = "TV" + case radio = "Radio" +} diff --git a/Sources/Entities/ChapterInfo.swift b/Sources/Entities/ChapterInfo.swift new file mode 100644 index 000000000..f89b35a73 --- /dev/null +++ b/Sources/Entities/ChapterInfo.swift @@ -0,0 +1,53 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class ChapterInfo. +public struct ChapterInfo: Codable { + public var imageDateModified: Date? + /// Gets or sets the image path. + public var imagePath: String? + public var imageTag: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the start position ticks. + public var startPositionTicks: Int64? + + public init( + imageDateModified: Date? = nil, + imagePath: String? = nil, + imageTag: String? = nil, + name: String? = nil, + startPositionTicks: Int64? = nil + ) { + self.imageDateModified = imageDateModified + self.imagePath = imagePath + self.imageTag = imageTag + self.name = name + self.startPositionTicks = startPositionTicks + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.imageDateModified = try values.decodeIfPresent(Date.self, forKey: "ImageDateModified") + self.imagePath = try values.decodeIfPresent(String.self, forKey: "ImagePath") + self.imageTag = try values.decodeIfPresent(String.self, forKey: "ImageTag") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.startPositionTicks = try values.decodeIfPresent(Int64.self, forKey: "StartPositionTicks") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(imageDateModified, forKey: "ImageDateModified") + try values.encodeIfPresent(imagePath, forKey: "ImagePath") + try values.encodeIfPresent(imageTag, forKey: "ImageTag") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(startPositionTicks, forKey: "StartPositionTicks") + } +} diff --git a/Sources/Entities/ClientCapabilities.swift b/Sources/Entities/ClientCapabilities.swift new file mode 100644 index 000000000..1310170d3 --- /dev/null +++ b/Sources/Entities/ClientCapabilities.swift @@ -0,0 +1,85 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ClientCapabilities: Codable { + public var appStoreURL: String? + /// A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. + /// + ///
+ /// + /// Specifically, it defines the supported containers and + /// + /// codecs (video and/or audio, including codec profiles and levels) + /// + /// the device is able to direct play (without transcoding or remuxing), + /// + /// as well as which containers/codecs to transcode to in case it isn't. + public var deviceProfile: DeviceProfile? + public var iconURL: String? + public var messageCallbackURL: String? + public var playableMediaTypes: [String]? + public var supportedCommands: [GeneralCommandType]? + public var isSupportsContentUploading: Bool? + public var isSupportsMediaControl: Bool? + public var isSupportsPersistentIdentifier: Bool? + public var isSupportsSync: Bool? + + public init( + appStoreURL: String? = nil, + deviceProfile: DeviceProfile? = nil, + iconURL: String? = nil, + messageCallbackURL: String? = nil, + playableMediaTypes: [String]? = nil, + supportedCommands: [GeneralCommandType]? = nil, + isSupportsContentUploading: Bool? = nil, + isSupportsMediaControl: Bool? = nil, + isSupportsPersistentIdentifier: Bool? = nil, + isSupportsSync: Bool? = nil + ) { + self.appStoreURL = appStoreURL + self.deviceProfile = deviceProfile + self.iconURL = iconURL + self.messageCallbackURL = messageCallbackURL + self.playableMediaTypes = playableMediaTypes + self.supportedCommands = supportedCommands + self.isSupportsContentUploading = isSupportsContentUploading + self.isSupportsMediaControl = isSupportsMediaControl + self.isSupportsPersistentIdentifier = isSupportsPersistentIdentifier + self.isSupportsSync = isSupportsSync + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.appStoreURL = try values.decodeIfPresent(String.self, forKey: "AppStoreUrl") + self.deviceProfile = try values.decodeIfPresent(DeviceProfile.self, forKey: "DeviceProfile") + self.iconURL = try values.decodeIfPresent(String.self, forKey: "IconUrl") + self.messageCallbackURL = try values.decodeIfPresent(String.self, forKey: "MessageCallbackUrl") + self.playableMediaTypes = try values.decodeIfPresent([String].self, forKey: "PlayableMediaTypes") + self.supportedCommands = try values.decodeIfPresent([GeneralCommandType].self, forKey: "SupportedCommands") + self.isSupportsContentUploading = try values.decodeIfPresent(Bool.self, forKey: "SupportsContentUploading") + self.isSupportsMediaControl = try values.decodeIfPresent(Bool.self, forKey: "SupportsMediaControl") + self.isSupportsPersistentIdentifier = try values.decodeIfPresent(Bool.self, forKey: "SupportsPersistentIdentifier") + self.isSupportsSync = try values.decodeIfPresent(Bool.self, forKey: "SupportsSync") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(appStoreURL, forKey: "AppStoreUrl") + try values.encodeIfPresent(deviceProfile, forKey: "DeviceProfile") + try values.encodeIfPresent(iconURL, forKey: "IconUrl") + try values.encodeIfPresent(messageCallbackURL, forKey: "MessageCallbackUrl") + try values.encodeIfPresent(playableMediaTypes, forKey: "PlayableMediaTypes") + try values.encodeIfPresent(supportedCommands, forKey: "SupportedCommands") + try values.encodeIfPresent(isSupportsContentUploading, forKey: "SupportsContentUploading") + try values.encodeIfPresent(isSupportsMediaControl, forKey: "SupportsMediaControl") + try values.encodeIfPresent(isSupportsPersistentIdentifier, forKey: "SupportsPersistentIdentifier") + try values.encodeIfPresent(isSupportsSync, forKey: "SupportsSync") + } +} diff --git a/Sources/Entities/ClientCapabilitiesDto.swift b/Sources/Entities/ClientCapabilitiesDto.swift new file mode 100644 index 000000000..3f1e948b1 --- /dev/null +++ b/Sources/Entities/ClientCapabilitiesDto.swift @@ -0,0 +1,95 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Client capabilities dto. +public struct ClientCapabilitiesDto: Codable { + /// Gets or sets the app store url. + public var appStoreURL: String? + /// A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. + /// + ///
+ /// + /// Specifically, it defines the supported containers and + /// + /// codecs (video and/or audio, including codec profiles and levels) + /// + /// the device is able to direct play (without transcoding or remuxing), + /// + /// as well as which containers/codecs to transcode to in case it isn't. + public var deviceProfile: DeviceProfile? + /// Gets or sets the icon url. + public var iconURL: String? + /// Gets or sets the message callback url. + public var messageCallbackURL: String? + /// Gets or sets the list of playable media types. + public var playableMediaTypes: [String]? + /// Gets or sets the list of supported commands. + public var supportedCommands: [GeneralCommandType]? + /// Gets or sets a value indicating whether session supports content uploading. + public var isSupportsContentUploading: Bool? + /// Gets or sets a value indicating whether session supports media control. + public var isSupportsMediaControl: Bool? + /// Gets or sets a value indicating whether session supports a persistent identifier. + public var isSupportsPersistentIdentifier: Bool? + /// Gets or sets a value indicating whether session supports sync. + public var isSupportsSync: Bool? + + public init( + appStoreURL: String? = nil, + deviceProfile: DeviceProfile? = nil, + iconURL: String? = nil, + messageCallbackURL: String? = nil, + playableMediaTypes: [String]? = nil, + supportedCommands: [GeneralCommandType]? = nil, + isSupportsContentUploading: Bool? = nil, + isSupportsMediaControl: Bool? = nil, + isSupportsPersistentIdentifier: Bool? = nil, + isSupportsSync: Bool? = nil + ) { + self.appStoreURL = appStoreURL + self.deviceProfile = deviceProfile + self.iconURL = iconURL + self.messageCallbackURL = messageCallbackURL + self.playableMediaTypes = playableMediaTypes + self.supportedCommands = supportedCommands + self.isSupportsContentUploading = isSupportsContentUploading + self.isSupportsMediaControl = isSupportsMediaControl + self.isSupportsPersistentIdentifier = isSupportsPersistentIdentifier + self.isSupportsSync = isSupportsSync + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.appStoreURL = try values.decodeIfPresent(String.self, forKey: "AppStoreUrl") + self.deviceProfile = try values.decodeIfPresent(DeviceProfile.self, forKey: "DeviceProfile") + self.iconURL = try values.decodeIfPresent(String.self, forKey: "IconUrl") + self.messageCallbackURL = try values.decodeIfPresent(String.self, forKey: "MessageCallbackUrl") + self.playableMediaTypes = try values.decodeIfPresent([String].self, forKey: "PlayableMediaTypes") + self.supportedCommands = try values.decodeIfPresent([GeneralCommandType].self, forKey: "SupportedCommands") + self.isSupportsContentUploading = try values.decodeIfPresent(Bool.self, forKey: "SupportsContentUploading") + self.isSupportsMediaControl = try values.decodeIfPresent(Bool.self, forKey: "SupportsMediaControl") + self.isSupportsPersistentIdentifier = try values.decodeIfPresent(Bool.self, forKey: "SupportsPersistentIdentifier") + self.isSupportsSync = try values.decodeIfPresent(Bool.self, forKey: "SupportsSync") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(appStoreURL, forKey: "AppStoreUrl") + try values.encodeIfPresent(deviceProfile, forKey: "DeviceProfile") + try values.encodeIfPresent(iconURL, forKey: "IconUrl") + try values.encodeIfPresent(messageCallbackURL, forKey: "MessageCallbackUrl") + try values.encodeIfPresent(playableMediaTypes, forKey: "PlayableMediaTypes") + try values.encodeIfPresent(supportedCommands, forKey: "SupportedCommands") + try values.encodeIfPresent(isSupportsContentUploading, forKey: "SupportsContentUploading") + try values.encodeIfPresent(isSupportsMediaControl, forKey: "SupportsMediaControl") + try values.encodeIfPresent(isSupportsPersistentIdentifier, forKey: "SupportsPersistentIdentifier") + try values.encodeIfPresent(isSupportsSync, forKey: "SupportsSync") + } +} diff --git a/Sources/Entities/ClientLogDocumentResponseDto.swift b/Sources/Entities/ClientLogDocumentResponseDto.swift new file mode 100644 index 000000000..5695fe6d9 --- /dev/null +++ b/Sources/Entities/ClientLogDocumentResponseDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Client log document response dto. +public struct ClientLogDocumentResponseDto: Codable { + /// Gets the resulting filename. + public var fileName: String? + + public init(fileName: String? = nil) { + self.fileName = fileName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.fileName = try values.decodeIfPresent(String.self, forKey: "FileName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(fileName, forKey: "FileName") + } +} diff --git a/Sources/Entities/CodecProfile.swift b/Sources/Entities/CodecProfile.swift new file mode 100644 index 000000000..abfd80c6f --- /dev/null +++ b/Sources/Entities/CodecProfile.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct CodecProfile: Codable { + public var applyConditions: [ProfileCondition]? + public var codec: String? + public var conditions: [ProfileCondition]? + public var container: String? + public var type: CodecType? + + public init( + applyConditions: [ProfileCondition]? = nil, + codec: String? = nil, + conditions: [ProfileCondition]? = nil, + container: String? = nil, + type: CodecType? = nil + ) { + self.applyConditions = applyConditions + self.codec = codec + self.conditions = conditions + self.container = container + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.applyConditions = try values.decodeIfPresent([ProfileCondition].self, forKey: "ApplyConditions") + self.codec = try values.decodeIfPresent(String.self, forKey: "Codec") + self.conditions = try values.decodeIfPresent([ProfileCondition].self, forKey: "Conditions") + self.container = try values.decodeIfPresent(String.self, forKey: "Container") + self.type = try values.decodeIfPresent(CodecType.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(applyConditions, forKey: "ApplyConditions") + try values.encodeIfPresent(codec, forKey: "Codec") + try values.encodeIfPresent(conditions, forKey: "Conditions") + try values.encodeIfPresent(container, forKey: "Container") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/CodecType.swift b/Sources/Entities/CodecType.swift new file mode 100644 index 000000000..58814ba34 --- /dev/null +++ b/Sources/Entities/CodecType.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum CodecType: String, Codable, CaseIterable { + case video = "Video" + case videoAudio = "VideoAudio" + case audio = "Audio" +} diff --git a/Sources/Entities/CollectionCreationResult.swift b/Sources/Entities/CollectionCreationResult.swift new file mode 100644 index 000000000..8f15fbacd --- /dev/null +++ b/Sources/Entities/CollectionCreationResult.swift @@ -0,0 +1,27 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct CollectionCreationResult: Codable, Identifiable { + public var id: String? + + public init(id: String? = nil) { + self.id = id + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + } +} diff --git a/Sources/Entities/CollectionTypeOptions.swift b/Sources/Entities/CollectionTypeOptions.swift new file mode 100644 index 000000000..3067287e3 --- /dev/null +++ b/Sources/Entities/CollectionTypeOptions.swift @@ -0,0 +1,20 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum CollectionTypeOptions: String, Codable, CaseIterable { + case movies = "Movies" + case tvShows = "TvShows" + case music = "Music" + case musicVideos = "MusicVideos" + case homeVideos = "HomeVideos" + case boxSets = "BoxSets" + case books = "Books" + case mixed = "Mixed" +} diff --git a/Sources/Entities/ConfigImageTypes.swift b/Sources/Entities/ConfigImageTypes.swift new file mode 100644 index 000000000..34f34a187 --- /dev/null +++ b/Sources/Entities/ConfigImageTypes.swift @@ -0,0 +1,59 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ConfigImageTypes: Codable { + public var backdropSizes: [String]? + public var baseURL: String? + public var logoSizes: [String]? + public var posterSizes: [String]? + public var profileSizes: [String]? + public var secureBaseURL: String? + public var stillSizes: [String]? + + public init( + backdropSizes: [String]? = nil, + baseURL: String? = nil, + logoSizes: [String]? = nil, + posterSizes: [String]? = nil, + profileSizes: [String]? = nil, + secureBaseURL: String? = nil, + stillSizes: [String]? = nil + ) { + self.backdropSizes = backdropSizes + self.baseURL = baseURL + self.logoSizes = logoSizes + self.posterSizes = posterSizes + self.profileSizes = profileSizes + self.secureBaseURL = secureBaseURL + self.stillSizes = stillSizes + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.backdropSizes = try values.decodeIfPresent([String].self, forKey: "BackdropSizes") + self.baseURL = try values.decodeIfPresent(String.self, forKey: "BaseUrl") + self.logoSizes = try values.decodeIfPresent([String].self, forKey: "LogoSizes") + self.posterSizes = try values.decodeIfPresent([String].self, forKey: "PosterSizes") + self.profileSizes = try values.decodeIfPresent([String].self, forKey: "ProfileSizes") + self.secureBaseURL = try values.decodeIfPresent(String.self, forKey: "SecureBaseUrl") + self.stillSizes = try values.decodeIfPresent([String].self, forKey: "StillSizes") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(backdropSizes, forKey: "BackdropSizes") + try values.encodeIfPresent(baseURL, forKey: "BaseUrl") + try values.encodeIfPresent(logoSizes, forKey: "LogoSizes") + try values.encodeIfPresent(posterSizes, forKey: "PosterSizes") + try values.encodeIfPresent(profileSizes, forKey: "ProfileSizes") + try values.encodeIfPresent(secureBaseURL, forKey: "SecureBaseUrl") + try values.encodeIfPresent(stillSizes, forKey: "StillSizes") + } +} diff --git a/Sources/Entities/ConfigurationPageInfo.swift b/Sources/Entities/ConfigurationPageInfo.swift new file mode 100644 index 000000000..3d58af4bc --- /dev/null +++ b/Sources/Entities/ConfigurationPageInfo.swift @@ -0,0 +1,61 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The configuration page info. +public struct ConfigurationPageInfo: Codable { + /// Gets or sets the display name. + public var displayName: String? + /// Gets or sets a value indicating whether the configurations page is enabled in the main menu. + public var enableInMainMenu: Bool? + /// Gets or sets the menu icon. + public var menuIcon: String? + /// Gets or sets the menu section. + public var menuSection: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the plugin id. + public var pluginID: String? + + public init( + displayName: String? = nil, + enableInMainMenu: Bool? = nil, + menuIcon: String? = nil, + menuSection: String? = nil, + name: String? = nil, + pluginID: String? = nil + ) { + self.displayName = displayName + self.enableInMainMenu = enableInMainMenu + self.menuIcon = menuIcon + self.menuSection = menuSection + self.name = name + self.pluginID = pluginID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.displayName = try values.decodeIfPresent(String.self, forKey: "DisplayName") + self.enableInMainMenu = try values.decodeIfPresent(Bool.self, forKey: "EnableInMainMenu") + self.menuIcon = try values.decodeIfPresent(String.self, forKey: "MenuIcon") + self.menuSection = try values.decodeIfPresent(String.self, forKey: "MenuSection") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.pluginID = try values.decodeIfPresent(String.self, forKey: "PluginId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(displayName, forKey: "DisplayName") + try values.encodeIfPresent(enableInMainMenu, forKey: "EnableInMainMenu") + try values.encodeIfPresent(menuIcon, forKey: "MenuIcon") + try values.encodeIfPresent(menuSection, forKey: "MenuSection") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(pluginID, forKey: "PluginId") + } +} diff --git a/Sources/Entities/ContainerProfile.swift b/Sources/Entities/ContainerProfile.swift new file mode 100644 index 000000000..06b300fc9 --- /dev/null +++ b/Sources/Entities/ContainerProfile.swift @@ -0,0 +1,35 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ContainerProfile: Codable { + public var conditions: [ProfileCondition]? + public var container: String? + public var type: DlnaProfileType? + + public init(conditions: [ProfileCondition]? = nil, container: String? = nil, type: DlnaProfileType? = nil) { + self.conditions = conditions + self.container = container + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.conditions = try values.decodeIfPresent([ProfileCondition].self, forKey: "Conditions") + self.container = try values.decodeIfPresent(String.self, forKey: "Container") + self.type = try values.decodeIfPresent(DlnaProfileType.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(conditions, forKey: "Conditions") + try values.encodeIfPresent(container, forKey: "Container") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/ControlResponse.swift b/Sources/Entities/ControlResponse.swift new file mode 100644 index 000000000..2a627a168 --- /dev/null +++ b/Sources/Entities/ControlResponse.swift @@ -0,0 +1,35 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ControlResponse: Codable { + public var headers: [String: String]? + public var isSuccessful: Bool? + public var xml: String? + + public init(headers: [String: String]? = nil, isSuccessful: Bool? = nil, xml: String? = nil) { + self.headers = headers + self.isSuccessful = isSuccessful + self.xml = xml + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.headers = try values.decodeIfPresent([String: String].self, forKey: "Headers") + self.isSuccessful = try values.decodeIfPresent(Bool.self, forKey: "IsSuccessful") + self.xml = try values.decodeIfPresent(String.self, forKey: "Xml") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(headers, forKey: "Headers") + try values.encodeIfPresent(isSuccessful, forKey: "IsSuccessful") + try values.encodeIfPresent(xml, forKey: "Xml") + } +} diff --git a/Sources/Entities/CountryInfo.swift b/Sources/Entities/CountryInfo.swift new file mode 100644 index 000000000..d210bd380 --- /dev/null +++ b/Sources/Entities/CountryInfo.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class CountryInfo. +public struct CountryInfo: Codable { + /// Gets or sets the display name. + public var displayName: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the name of the three letter ISO region. + public var threeLetterISORegionName: String? + /// Gets or sets the name of the two letter ISO region. + public var twoLetterISORegionName: String? + + public init( + displayName: String? = nil, + name: String? = nil, + threeLetterISORegionName: String? = nil, + twoLetterISORegionName: String? = nil + ) { + self.displayName = displayName + self.name = name + self.threeLetterISORegionName = threeLetterISORegionName + self.twoLetterISORegionName = twoLetterISORegionName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.displayName = try values.decodeIfPresent(String.self, forKey: "DisplayName") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.threeLetterISORegionName = try values.decodeIfPresent(String.self, forKey: "ThreeLetterISORegionName") + self.twoLetterISORegionName = try values.decodeIfPresent(String.self, forKey: "TwoLetterISORegionName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(displayName, forKey: "DisplayName") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(threeLetterISORegionName, forKey: "ThreeLetterISORegionName") + try values.encodeIfPresent(twoLetterISORegionName, forKey: "TwoLetterISORegionName") + } +} diff --git a/Sources/Entities/CreatePlaylistDto.swift b/Sources/Entities/CreatePlaylistDto.swift new file mode 100644 index 000000000..9ba9831e9 --- /dev/null +++ b/Sources/Entities/CreatePlaylistDto.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Create new playlist dto. +public struct CreatePlaylistDto: Codable { + /// Gets or sets item ids to add to the playlist. + public var ids: [String]? + /// Gets or sets the media type. + public var mediaType: String? + /// Gets or sets the name of the new playlist. + public var name: String? + /// Gets or sets the user id. + public var userID: String? + + public init(ids: [String]? = nil, mediaType: String? = nil, name: String? = nil, userID: String? = nil) { + self.ids = ids + self.mediaType = mediaType + self.name = name + self.userID = userID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.ids = try values.decodeIfPresent([String].self, forKey: "Ids") + self.mediaType = try values.decodeIfPresent(String.self, forKey: "MediaType") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(ids, forKey: "Ids") + try values.encodeIfPresent(mediaType, forKey: "MediaType") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(userID, forKey: "UserId") + } +} diff --git a/Sources/Entities/CreateUserByName.swift b/Sources/Entities/CreateUserByName.swift new file mode 100644 index 000000000..d116a3caf --- /dev/null +++ b/Sources/Entities/CreateUserByName.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The create user by name request body. +public struct CreateUserByName: Codable { + /// Gets or sets the username. + public var name: String? + /// Gets or sets the password. + public var password: String? + + public init(name: String? = nil, password: String? = nil) { + self.name = name + self.password = password + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.password = try values.decodeIfPresent(String.self, forKey: "Password") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(password, forKey: "Password") + } +} diff --git a/Sources/Entities/CultureDto.swift b/Sources/Entities/CultureDto.swift new file mode 100644 index 000000000..35c06eef6 --- /dev/null +++ b/Sources/Entities/CultureDto.swift @@ -0,0 +1,54 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class CultureDto. +public struct CultureDto: Codable { + /// Gets the display name. + public var displayName: String? + /// Gets the name. + public var name: String? + /// Gets the name of the three letter ISO language. + public var threeLetterISOLanguageName: String? + public var threeLetterISOLanguageNames: [String]? + /// Gets the name of the two letter ISO language. + public var twoLetterISOLanguageName: String? + + public init( + displayName: String? = nil, + name: String? = nil, + threeLetterISOLanguageName: String? = nil, + threeLetterISOLanguageNames: [String]? = nil, + twoLetterISOLanguageName: String? = nil + ) { + self.displayName = displayName + self.name = name + self.threeLetterISOLanguageName = threeLetterISOLanguageName + self.threeLetterISOLanguageNames = threeLetterISOLanguageNames + self.twoLetterISOLanguageName = twoLetterISOLanguageName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.displayName = try values.decodeIfPresent(String.self, forKey: "DisplayName") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.threeLetterISOLanguageName = try values.decodeIfPresent(String.self, forKey: "ThreeLetterISOLanguageName") + self.threeLetterISOLanguageNames = try values.decodeIfPresent([String].self, forKey: "ThreeLetterISOLanguageNames") + self.twoLetterISOLanguageName = try values.decodeIfPresent(String.self, forKey: "TwoLetterISOLanguageName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(displayName, forKey: "DisplayName") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(threeLetterISOLanguageName, forKey: "ThreeLetterISOLanguageName") + try values.encodeIfPresent(threeLetterISOLanguageNames, forKey: "ThreeLetterISOLanguageNames") + try values.encodeIfPresent(twoLetterISOLanguageName, forKey: "TwoLetterISOLanguageName") + } +} diff --git a/Sources/Entities/DayOfWeek.swift b/Sources/Entities/DayOfWeek.swift new file mode 100644 index 000000000..6a1918ad4 --- /dev/null +++ b/Sources/Entities/DayOfWeek.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum DayOfWeek: String, Codable, CaseIterable { + case sunday = "Sunday" + case monday = "Monday" + case tuesday = "Tuesday" + case wednesday = "Wednesday" + case thursday = "Thursday" + case friday = "Friday" + case saturday = "Saturday" +} diff --git a/Sources/Entities/DayPattern.swift b/Sources/Entities/DayPattern.swift new file mode 100644 index 000000000..73571c27e --- /dev/null +++ b/Sources/Entities/DayPattern.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum DayPattern: String, Codable, CaseIterable { + case daily = "Daily" + case weekdays = "Weekdays" + case weekends = "Weekends" +} diff --git a/Sources/Entities/DefaultDirectoryBrowserInfoDto.swift b/Sources/Entities/DefaultDirectoryBrowserInfoDto.swift new file mode 100644 index 000000000..1c8df3612 --- /dev/null +++ b/Sources/Entities/DefaultDirectoryBrowserInfoDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Default directory browser info. +public struct DefaultDirectoryBrowserInfoDto: Codable { + /// Gets or sets the path. + public var path: String? + + public init(path: String? = nil) { + self.path = path + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(path, forKey: "Path") + } +} diff --git a/Sources/Entities/DeviceIdentification.swift b/Sources/Entities/DeviceIdentification.swift new file mode 100644 index 000000000..61000a1e4 --- /dev/null +++ b/Sources/Entities/DeviceIdentification.swift @@ -0,0 +1,78 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct DeviceIdentification: Codable { + /// Gets or sets the name of the friendly. + public var friendlyName: String? + /// Gets or sets the headers. + public var headers: [HTTPHeaderInfo]? + /// Gets or sets the manufacturer. + public var manufacturer: String? + /// Gets or sets the manufacturer URL. + public var manufacturerURL: String? + /// Gets or sets the model description. + public var modelDescription: String? + /// Gets or sets the name of the model. + public var modelName: String? + /// Gets or sets the model number. + public var modelNumber: String? + /// Gets or sets the model URL. + public var modelURL: String? + /// Gets or sets the serial number. + public var serialNumber: String? + + public init( + friendlyName: String? = nil, + headers: [HTTPHeaderInfo]? = nil, + manufacturer: String? = nil, + manufacturerURL: String? = nil, + modelDescription: String? = nil, + modelName: String? = nil, + modelNumber: String? = nil, + modelURL: String? = nil, + serialNumber: String? = nil + ) { + self.friendlyName = friendlyName + self.headers = headers + self.manufacturer = manufacturer + self.manufacturerURL = manufacturerURL + self.modelDescription = modelDescription + self.modelName = modelName + self.modelNumber = modelNumber + self.modelURL = modelURL + self.serialNumber = serialNumber + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.friendlyName = try values.decodeIfPresent(String.self, forKey: "FriendlyName") + self.headers = try values.decodeIfPresent([HTTPHeaderInfo].self, forKey: "Headers") + self.manufacturer = try values.decodeIfPresent(String.self, forKey: "Manufacturer") + self.manufacturerURL = try values.decodeIfPresent(String.self, forKey: "ManufacturerUrl") + self.modelDescription = try values.decodeIfPresent(String.self, forKey: "ModelDescription") + self.modelName = try values.decodeIfPresent(String.self, forKey: "ModelName") + self.modelNumber = try values.decodeIfPresent(String.self, forKey: "ModelNumber") + self.modelURL = try values.decodeIfPresent(String.self, forKey: "ModelUrl") + self.serialNumber = try values.decodeIfPresent(String.self, forKey: "SerialNumber") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(friendlyName, forKey: "FriendlyName") + try values.encodeIfPresent(headers, forKey: "Headers") + try values.encodeIfPresent(manufacturer, forKey: "Manufacturer") + try values.encodeIfPresent(manufacturerURL, forKey: "ManufacturerUrl") + try values.encodeIfPresent(modelDescription, forKey: "ModelDescription") + try values.encodeIfPresent(modelName, forKey: "ModelName") + try values.encodeIfPresent(modelNumber, forKey: "ModelNumber") + try values.encodeIfPresent(modelURL, forKey: "ModelUrl") + try values.encodeIfPresent(serialNumber, forKey: "SerialNumber") + } +} diff --git a/Sources/Entities/DeviceInfo.swift b/Sources/Entities/DeviceInfo.swift new file mode 100644 index 000000000..b8bec37dc --- /dev/null +++ b/Sources/Entities/DeviceInfo.swift @@ -0,0 +1,82 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct DeviceInfo: Codable, Identifiable { + /// Gets or sets the access token. + public var accessToken: String? + /// Gets or sets the name of the application. + public var appName: String? + /// Gets or sets the application version. + public var appVersion: String? + /// Gets or sets the capabilities. + public var capabilities: ClientCapabilities? + /// Gets or sets the date last modified. + public var dateLastActivity: Date? + public var iconURL: String? + /// Gets or sets the identifier. + public var id: String? + /// Gets or sets the last user identifier. + public var lastUserID: String? + /// Gets or sets the last name of the user. + public var lastUserName: String? + public var name: String? + + public init( + accessToken: String? = nil, + appName: String? = nil, + appVersion: String? = nil, + capabilities: ClientCapabilities? = nil, + dateLastActivity: Date? = nil, + iconURL: String? = nil, + id: String? = nil, + lastUserID: String? = nil, + lastUserName: String? = nil, + name: String? = nil + ) { + self.accessToken = accessToken + self.appName = appName + self.appVersion = appVersion + self.capabilities = capabilities + self.dateLastActivity = dateLastActivity + self.iconURL = iconURL + self.id = id + self.lastUserID = lastUserID + self.lastUserName = lastUserName + self.name = name + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.accessToken = try values.decodeIfPresent(String.self, forKey: "AccessToken") + self.appName = try values.decodeIfPresent(String.self, forKey: "AppName") + self.appVersion = try values.decodeIfPresent(String.self, forKey: "AppVersion") + self.capabilities = try values.decodeIfPresent(ClientCapabilities.self, forKey: "Capabilities") + self.dateLastActivity = try values.decodeIfPresent(Date.self, forKey: "DateLastActivity") + self.iconURL = try values.decodeIfPresent(String.self, forKey: "IconUrl") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.lastUserID = try values.decodeIfPresent(String.self, forKey: "LastUserId") + self.lastUserName = try values.decodeIfPresent(String.self, forKey: "LastUserName") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(accessToken, forKey: "AccessToken") + try values.encodeIfPresent(appName, forKey: "AppName") + try values.encodeIfPresent(appVersion, forKey: "AppVersion") + try values.encodeIfPresent(capabilities, forKey: "Capabilities") + try values.encodeIfPresent(dateLastActivity, forKey: "DateLastActivity") + try values.encodeIfPresent(iconURL, forKey: "IconUrl") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(lastUserID, forKey: "LastUserId") + try values.encodeIfPresent(lastUserName, forKey: "LastUserName") + try values.encodeIfPresent(name, forKey: "Name") + } +} diff --git a/Sources/Entities/DeviceInfoQueryResult.swift b/Sources/Entities/DeviceInfoQueryResult.swift new file mode 100644 index 000000000..abd767e22 --- /dev/null +++ b/Sources/Entities/DeviceInfoQueryResult.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct DeviceInfoQueryResult: Codable { + /// Gets or sets the items. + public var items: [DeviceInfo]? + /// Gets or sets the index of the first record in Items. + public var startIndex: Int32? + /// Gets or sets the total number of records available. + public var totalRecordCount: Int32? + + public init(items: [DeviceInfo]? = nil, startIndex: Int32? = nil, totalRecordCount: Int32? = nil) { + self.items = items + self.startIndex = startIndex + self.totalRecordCount = totalRecordCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.items = try values.decodeIfPresent([DeviceInfo].self, forKey: "Items") + self.startIndex = try values.decodeIfPresent(Int32.self, forKey: "StartIndex") + self.totalRecordCount = try values.decodeIfPresent(Int32.self, forKey: "TotalRecordCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(items, forKey: "Items") + try values.encodeIfPresent(startIndex, forKey: "StartIndex") + try values.encodeIfPresent(totalRecordCount, forKey: "TotalRecordCount") + } +} diff --git a/Sources/Entities/DeviceOptions.swift b/Sources/Entities/DeviceOptions.swift new file mode 100644 index 000000000..dbda68edf --- /dev/null +++ b/Sources/Entities/DeviceOptions.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// An entity representing custom options for a device. +public struct DeviceOptions: Codable, Identifiable { + /// Gets or sets the custom name. + public var customName: String? + /// Gets the device id. + public var deviceID: String? + /// Gets the id. + public var id: Int32? + + public init(customName: String? = nil, deviceID: String? = nil, id: Int32? = nil) { + self.customName = customName + self.deviceID = deviceID + self.id = id + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.customName = try values.decodeIfPresent(String.self, forKey: "CustomName") + self.deviceID = try values.decodeIfPresent(String.self, forKey: "DeviceId") + self.id = try values.decodeIfPresent(Int32.self, forKey: "Id") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(customName, forKey: "CustomName") + try values.encodeIfPresent(deviceID, forKey: "DeviceId") + try values.encodeIfPresent(id, forKey: "Id") + } +} diff --git a/Sources/Entities/DeviceOptionsDto.swift b/Sources/Entities/DeviceOptionsDto.swift new file mode 100644 index 000000000..eef0cd969 --- /dev/null +++ b/Sources/Entities/DeviceOptionsDto.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// A dto representing custom options for a device. +public struct DeviceOptionsDto: Codable, Identifiable { + /// Gets or sets the custom name. + public var customName: String? + /// Gets or sets the device id. + public var deviceID: String? + /// Gets or sets the id. + public var id: Int32? + + public init(customName: String? = nil, deviceID: String? = nil, id: Int32? = nil) { + self.customName = customName + self.deviceID = deviceID + self.id = id + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.customName = try values.decodeIfPresent(String.self, forKey: "CustomName") + self.deviceID = try values.decodeIfPresent(String.self, forKey: "DeviceId") + self.id = try values.decodeIfPresent(Int32.self, forKey: "Id") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(customName, forKey: "CustomName") + try values.encodeIfPresent(deviceID, forKey: "DeviceId") + try values.encodeIfPresent(id, forKey: "Id") + } +} diff --git a/Sources/Entities/DeviceProfile.swift b/Sources/Entities/DeviceProfile.swift new file mode 100644 index 000000000..19318b095 --- /dev/null +++ b/Sources/Entities/DeviceProfile.swift @@ -0,0 +1,269 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. +/// +///
+/// +/// Specifically, it defines the supported containers and +/// +/// codecs (video and/or audio, including codec profiles and levels) +/// +/// the device is able to direct play (without transcoding or remuxing), +/// +/// as well as which containers/codecs to transcode to in case it isn't. +public struct DeviceProfile: Codable, Identifiable { + /// Gets or sets the AlbumArtPn. + public var albumArtPn: String? + /// Gets or sets the codec profiles. + public var codecProfiles: [CodecProfile]? + /// Gets or sets the container profiles. + public var containerProfiles: [ContainerProfile]? + /// Gets or sets the direct play profiles. + public var directPlayProfiles: [DirectPlayProfile]? + /// Gets or sets a value indicating whether EnableAlbumArtInDidl. + public var enableAlbumArtInDidl: Bool + /// Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar. + public var enableMSMediaReceiverRegistrar: Bool + /// Gets or sets a value indicating whether EnableSingleAlbumArtLimit. + public var enableSingleAlbumArtLimit: Bool + /// Gets or sets a value indicating whether EnableSingleSubtitleLimit. + public var enableSingleSubtitleLimit: Bool + /// Gets or sets the friendly name of the device profile, which can be shown to users. + public var friendlyName: String? + /// Gets or sets the Id. + public var id: String? + /// Gets or sets the Identification. + public var identification: DeviceIdentification? + /// Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests. + public var isIgnoreTranscodeByteRangeRequests: Bool + /// Gets or sets the manufacturer of the device which this profile represents. + public var manufacturer: String? + /// Gets or sets an url for the manufacturer of the device which this profile represents. + public var manufacturerURL: String? + /// Gets or sets the MaxAlbumArtHeight. + public var maxAlbumArtHeight: Int32? + /// Gets or sets the MaxAlbumArtWidth. + public var maxAlbumArtWidth: Int32? + /// Gets or sets the maximum allowed height of embedded icons. + public var maxIconHeight: Int32? + /// Gets or sets the maximum allowed width of embedded icons. + public var maxIconWidth: Int32? + /// Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files). + public var maxStaticBitrate: Int32? + /// Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files. + public var maxStaticMusicBitrate: Int32? + /// Gets or sets the maximum allowed bitrate for all streamed content. + public var maxStreamingBitrate: Int32? + /// Gets or sets the model description of the device which this profile represents. + public var modelDescription: String? + /// Gets or sets the model name of the device which this profile represents. + public var modelName: String? + /// Gets or sets the model number of the device which this profile represents. + public var modelNumber: String? + /// Gets or sets the ModelUrl. + public var modelURL: String? + /// Gets or sets the maximum allowed bitrate for transcoded music streams. + public var musicStreamingTranscodingBitrate: Int32? + /// Gets or sets the name of this device profile. + public var name: String? + /// Gets or sets the ProtocolInfo. + public var protocolInfo: String? + /// Gets or sets a value indicating whether RequiresPlainFolders. + public var requiresPlainFolders: Bool + /// Gets or sets a value indicating whether RequiresPlainVideoItems. + public var requiresPlainVideoItems: Bool + /// Gets or sets the ResponseProfiles. + public var responseProfiles: [ResponseProfile]? + /// Gets or sets the serial number of the device which this profile represents. + public var serialNumber: String? + /// Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace. + public var sonyAggregationFlags: String? + /// Gets or sets the subtitle profiles. + public var subtitleProfiles: [SubtitleProfile]? + /// Gets or sets the SupportedMediaTypes. + public var supportedMediaTypes: String? + /// Gets or sets the TimelineOffsetSeconds. + public var timelineOffsetSeconds: Int32? + /// Gets or sets the transcoding profiles. + public var transcodingProfiles: [TranscodingProfile]? + /// Gets or sets the UserId. + public var userID: String? + /// Gets or sets the XmlRootAttributes. + public var xmlRootAttributes: [XmlAttribute]? + + public init( + albumArtPn: String? = nil, + codecProfiles: [CodecProfile]? = nil, + containerProfiles: [ContainerProfile]? = nil, + directPlayProfiles: [DirectPlayProfile]? = nil, + enableAlbumArtInDidl: Bool? = nil, + enableMSMediaReceiverRegistrar: Bool? = nil, + enableSingleAlbumArtLimit: Bool? = nil, + enableSingleSubtitleLimit: Bool? = nil, + friendlyName: String? = nil, + id: String? = nil, + identification: DeviceIdentification? = nil, + isIgnoreTranscodeByteRangeRequests: Bool? = nil, + manufacturer: String? = nil, + manufacturerURL: String? = nil, + maxAlbumArtHeight: Int32? = nil, + maxAlbumArtWidth: Int32? = nil, + maxIconHeight: Int32? = nil, + maxIconWidth: Int32? = nil, + maxStaticBitrate: Int32? = nil, + maxStaticMusicBitrate: Int32? = nil, + maxStreamingBitrate: Int32? = nil, + modelDescription: String? = nil, + modelName: String? = nil, + modelNumber: String? = nil, + modelURL: String? = nil, + musicStreamingTranscodingBitrate: Int32? = nil, + name: String? = nil, + protocolInfo: String? = nil, + requiresPlainFolders: Bool? = nil, + requiresPlainVideoItems: Bool? = nil, + responseProfiles: [ResponseProfile]? = nil, + serialNumber: String? = nil, + sonyAggregationFlags: String? = nil, + subtitleProfiles: [SubtitleProfile]? = nil, + supportedMediaTypes: String? = nil, + timelineOffsetSeconds: Int32? = nil, + transcodingProfiles: [TranscodingProfile]? = nil, + userID: String? = nil, + xmlRootAttributes: [XmlAttribute]? = nil + ) { + self.albumArtPn = albumArtPn + self.codecProfiles = codecProfiles + self.containerProfiles = containerProfiles + self.directPlayProfiles = directPlayProfiles + self.enableAlbumArtInDidl = enableAlbumArtInDidl ?? false + self.enableMSMediaReceiverRegistrar = enableMSMediaReceiverRegistrar ?? false + self.enableSingleAlbumArtLimit = enableSingleAlbumArtLimit ?? false + self.enableSingleSubtitleLimit = enableSingleSubtitleLimit ?? false + self.friendlyName = friendlyName + self.id = id + self.identification = identification + self.isIgnoreTranscodeByteRangeRequests = isIgnoreTranscodeByteRangeRequests ?? false + self.manufacturer = manufacturer + self.manufacturerURL = manufacturerURL + self.maxAlbumArtHeight = maxAlbumArtHeight + self.maxAlbumArtWidth = maxAlbumArtWidth + self.maxIconHeight = maxIconHeight + self.maxIconWidth = maxIconWidth + self.maxStaticBitrate = maxStaticBitrate + self.maxStaticMusicBitrate = maxStaticMusicBitrate + self.maxStreamingBitrate = maxStreamingBitrate + self.modelDescription = modelDescription + self.modelName = modelName + self.modelNumber = modelNumber + self.modelURL = modelURL + self.musicStreamingTranscodingBitrate = musicStreamingTranscodingBitrate + self.name = name + self.protocolInfo = protocolInfo + self.requiresPlainFolders = requiresPlainFolders ?? false + self.requiresPlainVideoItems = requiresPlainVideoItems ?? false + self.responseProfiles = responseProfiles + self.serialNumber = serialNumber + self.sonyAggregationFlags = sonyAggregationFlags + self.subtitleProfiles = subtitleProfiles + self.supportedMediaTypes = supportedMediaTypes + self.timelineOffsetSeconds = timelineOffsetSeconds + self.transcodingProfiles = transcodingProfiles + self.userID = userID + self.xmlRootAttributes = xmlRootAttributes + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.albumArtPn = try values.decodeIfPresent(String.self, forKey: "AlbumArtPn") + self.codecProfiles = try values.decodeIfPresent([CodecProfile].self, forKey: "CodecProfiles") + self.containerProfiles = try values.decodeIfPresent([ContainerProfile].self, forKey: "ContainerProfiles") + self.directPlayProfiles = try values.decodeIfPresent([DirectPlayProfile].self, forKey: "DirectPlayProfiles") + self.enableAlbumArtInDidl = try values.decodeIfPresent(Bool.self, forKey: "EnableAlbumArtInDidl") ?? false + self.enableMSMediaReceiverRegistrar = try values.decodeIfPresent(Bool.self, forKey: "EnableMSMediaReceiverRegistrar") ?? false + self.enableSingleAlbumArtLimit = try values.decodeIfPresent(Bool.self, forKey: "EnableSingleAlbumArtLimit") ?? false + self.enableSingleSubtitleLimit = try values.decodeIfPresent(Bool.self, forKey: "EnableSingleSubtitleLimit") ?? false + self.friendlyName = try values.decodeIfPresent(String.self, forKey: "FriendlyName") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.identification = try values.decodeIfPresent(DeviceIdentification.self, forKey: "Identification") + self.isIgnoreTranscodeByteRangeRequests = try values.decodeIfPresent(Bool.self, forKey: "IgnoreTranscodeByteRangeRequests") ?? false + self.manufacturer = try values.decodeIfPresent(String.self, forKey: "Manufacturer") + self.manufacturerURL = try values.decodeIfPresent(String.self, forKey: "ManufacturerUrl") + self.maxAlbumArtHeight = try values.decodeIfPresent(Int32.self, forKey: "MaxAlbumArtHeight") + self.maxAlbumArtWidth = try values.decodeIfPresent(Int32.self, forKey: "MaxAlbumArtWidth") + self.maxIconHeight = try values.decodeIfPresent(Int32.self, forKey: "MaxIconHeight") + self.maxIconWidth = try values.decodeIfPresent(Int32.self, forKey: "MaxIconWidth") + self.maxStaticBitrate = try values.decodeIfPresent(Int32.self, forKey: "MaxStaticBitrate") + self.maxStaticMusicBitrate = try values.decodeIfPresent(Int32.self, forKey: "MaxStaticMusicBitrate") + self.maxStreamingBitrate = try values.decodeIfPresent(Int32.self, forKey: "MaxStreamingBitrate") + self.modelDescription = try values.decodeIfPresent(String.self, forKey: "ModelDescription") + self.modelName = try values.decodeIfPresent(String.self, forKey: "ModelName") + self.modelNumber = try values.decodeIfPresent(String.self, forKey: "ModelNumber") + self.modelURL = try values.decodeIfPresent(String.self, forKey: "ModelUrl") + self.musicStreamingTranscodingBitrate = try values.decodeIfPresent(Int32.self, forKey: "MusicStreamingTranscodingBitrate") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.protocolInfo = try values.decodeIfPresent(String.self, forKey: "ProtocolInfo") + self.requiresPlainFolders = try values.decodeIfPresent(Bool.self, forKey: "RequiresPlainFolders") ?? false + self.requiresPlainVideoItems = try values.decodeIfPresent(Bool.self, forKey: "RequiresPlainVideoItems") ?? false + self.responseProfiles = try values.decodeIfPresent([ResponseProfile].self, forKey: "ResponseProfiles") + self.serialNumber = try values.decodeIfPresent(String.self, forKey: "SerialNumber") + self.sonyAggregationFlags = try values.decodeIfPresent(String.self, forKey: "SonyAggregationFlags") + self.subtitleProfiles = try values.decodeIfPresent([SubtitleProfile].self, forKey: "SubtitleProfiles") + self.supportedMediaTypes = try values.decodeIfPresent(String.self, forKey: "SupportedMediaTypes") + self.timelineOffsetSeconds = try values.decodeIfPresent(Int32.self, forKey: "TimelineOffsetSeconds") + self.transcodingProfiles = try values.decodeIfPresent([TranscodingProfile].self, forKey: "TranscodingProfiles") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + self.xmlRootAttributes = try values.decodeIfPresent([XmlAttribute].self, forKey: "XmlRootAttributes") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(albumArtPn, forKey: "AlbumArtPn") + try values.encodeIfPresent(codecProfiles, forKey: "CodecProfiles") + try values.encodeIfPresent(containerProfiles, forKey: "ContainerProfiles") + try values.encodeIfPresent(directPlayProfiles, forKey: "DirectPlayProfiles") + try values.encodeIfPresent(enableAlbumArtInDidl, forKey: "EnableAlbumArtInDidl") + try values.encodeIfPresent(enableMSMediaReceiverRegistrar, forKey: "EnableMSMediaReceiverRegistrar") + try values.encodeIfPresent(enableSingleAlbumArtLimit, forKey: "EnableSingleAlbumArtLimit") + try values.encodeIfPresent(enableSingleSubtitleLimit, forKey: "EnableSingleSubtitleLimit") + try values.encodeIfPresent(friendlyName, forKey: "FriendlyName") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(identification, forKey: "Identification") + try values.encodeIfPresent(isIgnoreTranscodeByteRangeRequests, forKey: "IgnoreTranscodeByteRangeRequests") + try values.encodeIfPresent(manufacturer, forKey: "Manufacturer") + try values.encodeIfPresent(manufacturerURL, forKey: "ManufacturerUrl") + try values.encodeIfPresent(maxAlbumArtHeight, forKey: "MaxAlbumArtHeight") + try values.encodeIfPresent(maxAlbumArtWidth, forKey: "MaxAlbumArtWidth") + try values.encodeIfPresent(maxIconHeight, forKey: "MaxIconHeight") + try values.encodeIfPresent(maxIconWidth, forKey: "MaxIconWidth") + try values.encodeIfPresent(maxStaticBitrate, forKey: "MaxStaticBitrate") + try values.encodeIfPresent(maxStaticMusicBitrate, forKey: "MaxStaticMusicBitrate") + try values.encodeIfPresent(maxStreamingBitrate, forKey: "MaxStreamingBitrate") + try values.encodeIfPresent(modelDescription, forKey: "ModelDescription") + try values.encodeIfPresent(modelName, forKey: "ModelName") + try values.encodeIfPresent(modelNumber, forKey: "ModelNumber") + try values.encodeIfPresent(modelURL, forKey: "ModelUrl") + try values.encodeIfPresent(musicStreamingTranscodingBitrate, forKey: "MusicStreamingTranscodingBitrate") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(protocolInfo, forKey: "ProtocolInfo") + try values.encodeIfPresent(requiresPlainFolders, forKey: "RequiresPlainFolders") + try values.encodeIfPresent(requiresPlainVideoItems, forKey: "RequiresPlainVideoItems") + try values.encodeIfPresent(responseProfiles, forKey: "ResponseProfiles") + try values.encodeIfPresent(serialNumber, forKey: "SerialNumber") + try values.encodeIfPresent(sonyAggregationFlags, forKey: "SonyAggregationFlags") + try values.encodeIfPresent(subtitleProfiles, forKey: "SubtitleProfiles") + try values.encodeIfPresent(supportedMediaTypes, forKey: "SupportedMediaTypes") + try values.encodeIfPresent(timelineOffsetSeconds, forKey: "TimelineOffsetSeconds") + try values.encodeIfPresent(transcodingProfiles, forKey: "TranscodingProfiles") + try values.encodeIfPresent(userID, forKey: "UserId") + try values.encodeIfPresent(xmlRootAttributes, forKey: "XmlRootAttributes") + } +} diff --git a/Sources/Entities/DeviceProfileInfo.swift b/Sources/Entities/DeviceProfileInfo.swift new file mode 100644 index 000000000..5813efcb1 --- /dev/null +++ b/Sources/Entities/DeviceProfileInfo.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct DeviceProfileInfo: Codable, Identifiable { + /// Gets or sets the identifier. + public var id: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the type. + public var type: DeviceProfileType? + + public init(id: String? = nil, name: String? = nil, type: DeviceProfileType? = nil) { + self.id = id + self.name = name + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.type = try values.decodeIfPresent(DeviceProfileType.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/DeviceProfileType.swift b/Sources/Entities/DeviceProfileType.swift new file mode 100644 index 000000000..06b36d2e9 --- /dev/null +++ b/Sources/Entities/DeviceProfileType.swift @@ -0,0 +1,14 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum DeviceProfileType: String, Codable, CaseIterable { + case system = "System" + case user = "User" +} diff --git a/Sources/Entities/DirectPlayProfile.swift b/Sources/Entities/DirectPlayProfile.swift new file mode 100644 index 000000000..5f70c4612 --- /dev/null +++ b/Sources/Entities/DirectPlayProfile.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct DirectPlayProfile: Codable { + public var audioCodec: String? + public var container: String? + public var type: DlnaProfileType? + public var videoCodec: String? + + public init(audioCodec: String? = nil, container: String? = nil, type: DlnaProfileType? = nil, videoCodec: String? = nil) { + self.audioCodec = audioCodec + self.container = container + self.type = type + self.videoCodec = videoCodec + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.audioCodec = try values.decodeIfPresent(String.self, forKey: "AudioCodec") + self.container = try values.decodeIfPresent(String.self, forKey: "Container") + self.type = try values.decodeIfPresent(DlnaProfileType.self, forKey: "Type") + self.videoCodec = try values.decodeIfPresent(String.self, forKey: "VideoCodec") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(audioCodec, forKey: "AudioCodec") + try values.encodeIfPresent(container, forKey: "Container") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(videoCodec, forKey: "VideoCodec") + } +} diff --git a/Sources/Entities/DisplayPreferencesDto.swift b/Sources/Entities/DisplayPreferencesDto.swift new file mode 100644 index 000000000..1fe56c8ed --- /dev/null +++ b/Sources/Entities/DisplayPreferencesDto.swift @@ -0,0 +1,109 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Defines the display preferences for any item that supports them (usually Folders). +public struct DisplayPreferencesDto: Codable, Identifiable { + /// Gets or sets the client. + public var client: String? + /// Gets or sets the custom prefs. + public var customPrefs: [String: String]? + /// Gets or sets the user id. + public var id: String? + /// Gets or sets the index by. + public var indexBy: String? + /// Gets or sets the height of the primary image. + public var primaryImageHeight: Int32? + /// Gets or sets the width of the primary image. + public var primaryImageWidth: Int32? + /// Gets or sets a value indicating whether [remember indexing]. + public var isRememberIndexing: Bool? + /// Gets or sets a value indicating whether [remember sorting]. + public var isRememberSorting: Bool? + /// Gets or sets the scroll direction. + public var scrollDirection: ScrollDirection? + /// Gets or sets a value indicating whether to show backdrops on this item. + public var isShowBackdrop: Bool? + /// Gets or sets a value indicating whether [show sidebar]. + public var isShowSidebar: Bool? + /// Gets or sets the sort by. + public var sortBy: String? + /// Gets or sets the sort order. + public var sortOrder: SortOrder? + /// Gets or sets the type of the view. + public var viewType: String? + + public init( + client: String? = nil, + customPrefs: [String: String]? = nil, + id: String? = nil, + indexBy: String? = nil, + primaryImageHeight: Int32? = nil, + primaryImageWidth: Int32? = nil, + isRememberIndexing: Bool? = nil, + isRememberSorting: Bool? = nil, + scrollDirection: ScrollDirection? = nil, + isShowBackdrop: Bool? = nil, + isShowSidebar: Bool? = nil, + sortBy: String? = nil, + sortOrder: SortOrder? = nil, + viewType: String? = nil + ) { + self.client = client + self.customPrefs = customPrefs + self.id = id + self.indexBy = indexBy + self.primaryImageHeight = primaryImageHeight + self.primaryImageWidth = primaryImageWidth + self.isRememberIndexing = isRememberIndexing + self.isRememberSorting = isRememberSorting + self.scrollDirection = scrollDirection + self.isShowBackdrop = isShowBackdrop + self.isShowSidebar = isShowSidebar + self.sortBy = sortBy + self.sortOrder = sortOrder + self.viewType = viewType + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.client = try values.decodeIfPresent(String.self, forKey: "Client") + self.customPrefs = try values.decodeIfPresent([String: String].self, forKey: "CustomPrefs") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.indexBy = try values.decodeIfPresent(String.self, forKey: "IndexBy") + self.primaryImageHeight = try values.decodeIfPresent(Int32.self, forKey: "PrimaryImageHeight") + self.primaryImageWidth = try values.decodeIfPresent(Int32.self, forKey: "PrimaryImageWidth") + self.isRememberIndexing = try values.decodeIfPresent(Bool.self, forKey: "RememberIndexing") + self.isRememberSorting = try values.decodeIfPresent(Bool.self, forKey: "RememberSorting") + self.scrollDirection = try values.decodeIfPresent(ScrollDirection.self, forKey: "ScrollDirection") + self.isShowBackdrop = try values.decodeIfPresent(Bool.self, forKey: "ShowBackdrop") + self.isShowSidebar = try values.decodeIfPresent(Bool.self, forKey: "ShowSidebar") + self.sortBy = try values.decodeIfPresent(String.self, forKey: "SortBy") + self.sortOrder = try values.decodeIfPresent(SortOrder.self, forKey: "SortOrder") + self.viewType = try values.decodeIfPresent(String.self, forKey: "ViewType") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(client, forKey: "Client") + try values.encodeIfPresent(customPrefs, forKey: "CustomPrefs") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(indexBy, forKey: "IndexBy") + try values.encodeIfPresent(primaryImageHeight, forKey: "PrimaryImageHeight") + try values.encodeIfPresent(primaryImageWidth, forKey: "PrimaryImageWidth") + try values.encodeIfPresent(isRememberIndexing, forKey: "RememberIndexing") + try values.encodeIfPresent(isRememberSorting, forKey: "RememberSorting") + try values.encodeIfPresent(scrollDirection, forKey: "ScrollDirection") + try values.encodeIfPresent(isShowBackdrop, forKey: "ShowBackdrop") + try values.encodeIfPresent(isShowSidebar, forKey: "ShowSidebar") + try values.encodeIfPresent(sortBy, forKey: "SortBy") + try values.encodeIfPresent(sortOrder, forKey: "SortOrder") + try values.encodeIfPresent(viewType, forKey: "ViewType") + } +} diff --git a/Sources/Entities/DlnaOptions.swift b/Sources/Entities/DlnaOptions.swift new file mode 100644 index 000000000..f5453ad31 --- /dev/null +++ b/Sources/Entities/DlnaOptions.swift @@ -0,0 +1,97 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The DlnaOptions class contains the user definable parameters for the dlna subsystems. +public struct DlnaOptions: Codable { + /// Gets or sets the frequency at which ssdp alive notifications are transmitted. + public var aliveMessageIntervalSeconds: Int32? + /// Gets or sets a value indicating whether playTo device profiles should be created. + public var isAutoCreatePlayToProfiles: Bool? + /// Gets or sets the frequency at which ssdp alive notifications are transmitted. MIGRATING - TO BE REMOVED ONCE WEB HAS BEEN ALTERED. + public var blastAliveMessageIntervalSeconds: Int32? + /// Gets or sets a value indicating whether to blast alive messages. + public var isBlastAliveMessages: Bool? + /// Gets or sets the ssdp client discovery interval time (in seconds). + /// + /// This is the time after which the server will send a ssdp search request. + public var clientDiscoveryIntervalSeconds: Int32? + /// Gets or sets the default user account that the dlna server uses. + public var defaultUserID: String? + /// Gets or sets a value indicating whether detailed dlna server logs are sent to the console/log. + /// + /// If the setting "Emby.Dlna": "Debug" msut be set in logging.default.json for this property to work. + public var enableDebugLog: Bool? + /// Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna playTo subsystem. + public var enablePlayTo: Bool? + /// Gets or sets a value indicating whether whether detailed playTo debug logs are sent to the console/log. + /// + /// If the setting "Emby.Dlna.PlayTo": "Debug" msut be set in logging.default.json for this property to work. + public var enablePlayToTracing: Bool? + /// Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna server subsystem. + public var enableServer: Bool? + /// Gets or sets a value indicating whether to send only matched host. + public var isSendOnlyMatchedHost: Bool? + + public init( + aliveMessageIntervalSeconds: Int32? = nil, + isAutoCreatePlayToProfiles: Bool? = nil, + blastAliveMessageIntervalSeconds: Int32? = nil, + isBlastAliveMessages: Bool? = nil, + clientDiscoveryIntervalSeconds: Int32? = nil, + defaultUserID: String? = nil, + enableDebugLog: Bool? = nil, + enablePlayTo: Bool? = nil, + enablePlayToTracing: Bool? = nil, + enableServer: Bool? = nil, + isSendOnlyMatchedHost: Bool? = nil + ) { + self.aliveMessageIntervalSeconds = aliveMessageIntervalSeconds + self.isAutoCreatePlayToProfiles = isAutoCreatePlayToProfiles + self.blastAliveMessageIntervalSeconds = blastAliveMessageIntervalSeconds + self.isBlastAliveMessages = isBlastAliveMessages + self.clientDiscoveryIntervalSeconds = clientDiscoveryIntervalSeconds + self.defaultUserID = defaultUserID + self.enableDebugLog = enableDebugLog + self.enablePlayTo = enablePlayTo + self.enablePlayToTracing = enablePlayToTracing + self.enableServer = enableServer + self.isSendOnlyMatchedHost = isSendOnlyMatchedHost + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.aliveMessageIntervalSeconds = try values.decodeIfPresent(Int32.self, forKey: "AliveMessageIntervalSeconds") + self.isAutoCreatePlayToProfiles = try values.decodeIfPresent(Bool.self, forKey: "AutoCreatePlayToProfiles") + self.blastAliveMessageIntervalSeconds = try values.decodeIfPresent(Int32.self, forKey: "BlastAliveMessageIntervalSeconds") + self.isBlastAliveMessages = try values.decodeIfPresent(Bool.self, forKey: "BlastAliveMessages") + self.clientDiscoveryIntervalSeconds = try values.decodeIfPresent(Int32.self, forKey: "ClientDiscoveryIntervalSeconds") + self.defaultUserID = try values.decodeIfPresent(String.self, forKey: "DefaultUserId") + self.enableDebugLog = try values.decodeIfPresent(Bool.self, forKey: "EnableDebugLog") + self.enablePlayTo = try values.decodeIfPresent(Bool.self, forKey: "EnablePlayTo") + self.enablePlayToTracing = try values.decodeIfPresent(Bool.self, forKey: "EnablePlayToTracing") + self.enableServer = try values.decodeIfPresent(Bool.self, forKey: "EnableServer") + self.isSendOnlyMatchedHost = try values.decodeIfPresent(Bool.self, forKey: "SendOnlyMatchedHost") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(aliveMessageIntervalSeconds, forKey: "AliveMessageIntervalSeconds") + try values.encodeIfPresent(isAutoCreatePlayToProfiles, forKey: "AutoCreatePlayToProfiles") + try values.encodeIfPresent(blastAliveMessageIntervalSeconds, forKey: "BlastAliveMessageIntervalSeconds") + try values.encodeIfPresent(isBlastAliveMessages, forKey: "BlastAliveMessages") + try values.encodeIfPresent(clientDiscoveryIntervalSeconds, forKey: "ClientDiscoveryIntervalSeconds") + try values.encodeIfPresent(defaultUserID, forKey: "DefaultUserId") + try values.encodeIfPresent(enableDebugLog, forKey: "EnableDebugLog") + try values.encodeIfPresent(enablePlayTo, forKey: "EnablePlayTo") + try values.encodeIfPresent(enablePlayToTracing, forKey: "EnablePlayToTracing") + try values.encodeIfPresent(enableServer, forKey: "EnableServer") + try values.encodeIfPresent(isSendOnlyMatchedHost, forKey: "SendOnlyMatchedHost") + } +} diff --git a/Sources/Entities/DlnaProfileType.swift b/Sources/Entities/DlnaProfileType.swift new file mode 100644 index 000000000..09f09eb52 --- /dev/null +++ b/Sources/Entities/DlnaProfileType.swift @@ -0,0 +1,16 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum DlnaProfileType: String, Codable, CaseIterable { + case audio = "Audio" + case video = "Video" + case photo = "Photo" + case subtitle = "Subtitle" +} diff --git a/Sources/Entities/DynamicDayOfWeek.swift b/Sources/Entities/DynamicDayOfWeek.swift new file mode 100644 index 000000000..c979b6852 --- /dev/null +++ b/Sources/Entities/DynamicDayOfWeek.swift @@ -0,0 +1,23 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// An enum that represents a day of the week, weekdays, weekends, or all days. +public enum DynamicDayOfWeek: String, Codable, CaseIterable { + case sunday = "Sunday" + case monday = "Monday" + case tuesday = "Tuesday" + case wednesday = "Wednesday" + case thursday = "Thursday" + case friday = "Friday" + case saturday = "Saturday" + case everyday = "Everyday" + case weekday = "Weekday" + case weekend = "Weekend" +} diff --git a/Sources/Entities/EmbeddedSubtitleOptions.swift b/Sources/Entities/EmbeddedSubtitleOptions.swift new file mode 100644 index 000000000..c94e06e78 --- /dev/null +++ b/Sources/Entities/EmbeddedSubtitleOptions.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// An enum representing the options to disable embedded subs. +public enum EmbeddedSubtitleOptions: String, Codable, CaseIterable { + case allowAll = "AllowAll" + case allowText = "AllowText" + case allowImage = "AllowImage" + case allowNone = "AllowNone" +} diff --git a/Sources/Entities/EncodingContext.swift b/Sources/Entities/EncodingContext.swift new file mode 100644 index 000000000..c19307cf6 --- /dev/null +++ b/Sources/Entities/EncodingContext.swift @@ -0,0 +1,14 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum EncodingContext: String, Codable, CaseIterable { + case streaming = "Streaming" + case `static` = "Static" +} diff --git a/Sources/Entities/EncodingOptions.swift b/Sources/Entities/EncodingOptions.swift new file mode 100644 index 000000000..7cf65f0be --- /dev/null +++ b/Sources/Entities/EncodingOptions.swift @@ -0,0 +1,222 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct EncodingOptions: Codable { + public var allowHevcEncoding: Bool? + public var allowOnDemandMetadataBasedKeyframeExtractionForExtensions: [String]? + public var isDeinterlaceDoubleRate: Bool? + public var deinterlaceMethod: String? + public var downMixAudioBoost: Double? + public var enableDecodingColorDepth10Hevc: Bool? + public var enableDecodingColorDepth10Vp9: Bool? + public var enableEnhancedNvdecDecoder: Bool? + public var enableFallbackFont: Bool? + public var enableHardwareEncoding: Bool? + public var enableIntelLowPowerH264HwEncoder: Bool? + public var enableIntelLowPowerHevcHwEncoder: Bool? + public var enableSubtitleExtraction: Bool? + public var enableThrottling: Bool? + public var enableTonemapping: Bool? + public var enableVppTonemapping: Bool? + /// Gets or sets the FFmpeg path as set by the user via the UI. + public var encoderAppPath: String? + /// Gets or sets the current FFmpeg path being used by the system and displayed on the transcode page. + public var encoderAppPathDisplay: String? + public var encoderPreset: String? + public var encodingThreadCount: Int32? + public var fallbackFontPath: String? + public var h264Crf: Int32? + public var h265Crf: Int32? + public var hardwareAccelerationType: String? + public var hardwareDecodingCodecs: [String]? + public var maxMuxingQueueSize: Int32? + public var isPreferSystemNativeHwDecoder: Bool? + public var throttleDelaySeconds: Int32? + public var tonemappingAlgorithm: String? + public var tonemappingDesat: Double? + public var tonemappingParam: Double? + public var tonemappingPeak: Double? + public var tonemappingRange: String? + public var tonemappingThreshold: Double? + public var transcodingTempPath: String? + public var vaapiDevice: String? + public var vppTonemappingBrightness: Double? + public var vppTonemappingContrast: Double? + + public init( + allowHevcEncoding: Bool? = nil, + allowOnDemandMetadataBasedKeyframeExtractionForExtensions: [String]? = nil, + isDeinterlaceDoubleRate: Bool? = nil, + deinterlaceMethod: String? = nil, + downMixAudioBoost: Double? = nil, + enableDecodingColorDepth10Hevc: Bool? = nil, + enableDecodingColorDepth10Vp9: Bool? = nil, + enableEnhancedNvdecDecoder: Bool? = nil, + enableFallbackFont: Bool? = nil, + enableHardwareEncoding: Bool? = nil, + enableIntelLowPowerH264HwEncoder: Bool? = nil, + enableIntelLowPowerHevcHwEncoder: Bool? = nil, + enableSubtitleExtraction: Bool? = nil, + enableThrottling: Bool? = nil, + enableTonemapping: Bool? = nil, + enableVppTonemapping: Bool? = nil, + encoderAppPath: String? = nil, + encoderAppPathDisplay: String? = nil, + encoderPreset: String? = nil, + encodingThreadCount: Int32? = nil, + fallbackFontPath: String? = nil, + h264Crf: Int32? = nil, + h265Crf: Int32? = nil, + hardwareAccelerationType: String? = nil, + hardwareDecodingCodecs: [String]? = nil, + maxMuxingQueueSize: Int32? = nil, + isPreferSystemNativeHwDecoder: Bool? = nil, + throttleDelaySeconds: Int32? = nil, + tonemappingAlgorithm: String? = nil, + tonemappingDesat: Double? = nil, + tonemappingParam: Double? = nil, + tonemappingPeak: Double? = nil, + tonemappingRange: String? = nil, + tonemappingThreshold: Double? = nil, + transcodingTempPath: String? = nil, + vaapiDevice: String? = nil, + vppTonemappingBrightness: Double? = nil, + vppTonemappingContrast: Double? = nil + ) { + self.allowHevcEncoding = allowHevcEncoding + self.allowOnDemandMetadataBasedKeyframeExtractionForExtensions = allowOnDemandMetadataBasedKeyframeExtractionForExtensions + self.isDeinterlaceDoubleRate = isDeinterlaceDoubleRate + self.deinterlaceMethod = deinterlaceMethod + self.downMixAudioBoost = downMixAudioBoost + self.enableDecodingColorDepth10Hevc = enableDecodingColorDepth10Hevc + self.enableDecodingColorDepth10Vp9 = enableDecodingColorDepth10Vp9 + self.enableEnhancedNvdecDecoder = enableEnhancedNvdecDecoder + self.enableFallbackFont = enableFallbackFont + self.enableHardwareEncoding = enableHardwareEncoding + self.enableIntelLowPowerH264HwEncoder = enableIntelLowPowerH264HwEncoder + self.enableIntelLowPowerHevcHwEncoder = enableIntelLowPowerHevcHwEncoder + self.enableSubtitleExtraction = enableSubtitleExtraction + self.enableThrottling = enableThrottling + self.enableTonemapping = enableTonemapping + self.enableVppTonemapping = enableVppTonemapping + self.encoderAppPath = encoderAppPath + self.encoderAppPathDisplay = encoderAppPathDisplay + self.encoderPreset = encoderPreset + self.encodingThreadCount = encodingThreadCount + self.fallbackFontPath = fallbackFontPath + self.h264Crf = h264Crf + self.h265Crf = h265Crf + self.hardwareAccelerationType = hardwareAccelerationType + self.hardwareDecodingCodecs = hardwareDecodingCodecs + self.maxMuxingQueueSize = maxMuxingQueueSize + self.isPreferSystemNativeHwDecoder = isPreferSystemNativeHwDecoder + self.throttleDelaySeconds = throttleDelaySeconds + self.tonemappingAlgorithm = tonemappingAlgorithm + self.tonemappingDesat = tonemappingDesat + self.tonemappingParam = tonemappingParam + self.tonemappingPeak = tonemappingPeak + self.tonemappingRange = tonemappingRange + self.tonemappingThreshold = tonemappingThreshold + self.transcodingTempPath = transcodingTempPath + self.vaapiDevice = vaapiDevice + self.vppTonemappingBrightness = vppTonemappingBrightness + self.vppTonemappingContrast = vppTonemappingContrast + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.allowHevcEncoding = try values.decodeIfPresent(Bool.self, forKey: "AllowHevcEncoding") + self.allowOnDemandMetadataBasedKeyframeExtractionForExtensions = try values.decodeIfPresent( + [String].self, + forKey: "AllowOnDemandMetadataBasedKeyframeExtractionForExtensions" + ) + self.isDeinterlaceDoubleRate = try values.decodeIfPresent(Bool.self, forKey: "DeinterlaceDoubleRate") + self.deinterlaceMethod = try values.decodeIfPresent(String.self, forKey: "DeinterlaceMethod") + self.downMixAudioBoost = try values.decodeIfPresent(Double.self, forKey: "DownMixAudioBoost") + self.enableDecodingColorDepth10Hevc = try values.decodeIfPresent(Bool.self, forKey: "EnableDecodingColorDepth10Hevc") + self.enableDecodingColorDepth10Vp9 = try values.decodeIfPresent(Bool.self, forKey: "EnableDecodingColorDepth10Vp9") + self.enableEnhancedNvdecDecoder = try values.decodeIfPresent(Bool.self, forKey: "EnableEnhancedNvdecDecoder") + self.enableFallbackFont = try values.decodeIfPresent(Bool.self, forKey: "EnableFallbackFont") + self.enableHardwareEncoding = try values.decodeIfPresent(Bool.self, forKey: "EnableHardwareEncoding") + self.enableIntelLowPowerH264HwEncoder = try values.decodeIfPresent(Bool.self, forKey: "EnableIntelLowPowerH264HwEncoder") + self.enableIntelLowPowerHevcHwEncoder = try values.decodeIfPresent(Bool.self, forKey: "EnableIntelLowPowerHevcHwEncoder") + self.enableSubtitleExtraction = try values.decodeIfPresent(Bool.self, forKey: "EnableSubtitleExtraction") + self.enableThrottling = try values.decodeIfPresent(Bool.self, forKey: "EnableThrottling") + self.enableTonemapping = try values.decodeIfPresent(Bool.self, forKey: "EnableTonemapping") + self.enableVppTonemapping = try values.decodeIfPresent(Bool.self, forKey: "EnableVppTonemapping") + self.encoderAppPath = try values.decodeIfPresent(String.self, forKey: "EncoderAppPath") + self.encoderAppPathDisplay = try values.decodeIfPresent(String.self, forKey: "EncoderAppPathDisplay") + self.encoderPreset = try values.decodeIfPresent(String.self, forKey: "EncoderPreset") + self.encodingThreadCount = try values.decodeIfPresent(Int32.self, forKey: "EncodingThreadCount") + self.fallbackFontPath = try values.decodeIfPresent(String.self, forKey: "FallbackFontPath") + self.h264Crf = try values.decodeIfPresent(Int32.self, forKey: "H264Crf") + self.h265Crf = try values.decodeIfPresent(Int32.self, forKey: "H265Crf") + self.hardwareAccelerationType = try values.decodeIfPresent(String.self, forKey: "HardwareAccelerationType") + self.hardwareDecodingCodecs = try values.decodeIfPresent([String].self, forKey: "HardwareDecodingCodecs") + self.maxMuxingQueueSize = try values.decodeIfPresent(Int32.self, forKey: "MaxMuxingQueueSize") + self.isPreferSystemNativeHwDecoder = try values.decodeIfPresent(Bool.self, forKey: "PreferSystemNativeHwDecoder") + self.throttleDelaySeconds = try values.decodeIfPresent(Int32.self, forKey: "ThrottleDelaySeconds") + self.tonemappingAlgorithm = try values.decodeIfPresent(String.self, forKey: "TonemappingAlgorithm") + self.tonemappingDesat = try values.decodeIfPresent(Double.self, forKey: "TonemappingDesat") + self.tonemappingParam = try values.decodeIfPresent(Double.self, forKey: "TonemappingParam") + self.tonemappingPeak = try values.decodeIfPresent(Double.self, forKey: "TonemappingPeak") + self.tonemappingRange = try values.decodeIfPresent(String.self, forKey: "TonemappingRange") + self.tonemappingThreshold = try values.decodeIfPresent(Double.self, forKey: "TonemappingThreshold") + self.transcodingTempPath = try values.decodeIfPresent(String.self, forKey: "TranscodingTempPath") + self.vaapiDevice = try values.decodeIfPresent(String.self, forKey: "VaapiDevice") + self.vppTonemappingBrightness = try values.decodeIfPresent(Double.self, forKey: "VppTonemappingBrightness") + self.vppTonemappingContrast = try values.decodeIfPresent(Double.self, forKey: "VppTonemappingContrast") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(allowHevcEncoding, forKey: "AllowHevcEncoding") + try values.encodeIfPresent( + allowOnDemandMetadataBasedKeyframeExtractionForExtensions, + forKey: "AllowOnDemandMetadataBasedKeyframeExtractionForExtensions" + ) + try values.encodeIfPresent(isDeinterlaceDoubleRate, forKey: "DeinterlaceDoubleRate") + try values.encodeIfPresent(deinterlaceMethod, forKey: "DeinterlaceMethod") + try values.encodeIfPresent(downMixAudioBoost, forKey: "DownMixAudioBoost") + try values.encodeIfPresent(enableDecodingColorDepth10Hevc, forKey: "EnableDecodingColorDepth10Hevc") + try values.encodeIfPresent(enableDecodingColorDepth10Vp9, forKey: "EnableDecodingColorDepth10Vp9") + try values.encodeIfPresent(enableEnhancedNvdecDecoder, forKey: "EnableEnhancedNvdecDecoder") + try values.encodeIfPresent(enableFallbackFont, forKey: "EnableFallbackFont") + try values.encodeIfPresent(enableHardwareEncoding, forKey: "EnableHardwareEncoding") + try values.encodeIfPresent(enableIntelLowPowerH264HwEncoder, forKey: "EnableIntelLowPowerH264HwEncoder") + try values.encodeIfPresent(enableIntelLowPowerHevcHwEncoder, forKey: "EnableIntelLowPowerHevcHwEncoder") + try values.encodeIfPresent(enableSubtitleExtraction, forKey: "EnableSubtitleExtraction") + try values.encodeIfPresent(enableThrottling, forKey: "EnableThrottling") + try values.encodeIfPresent(enableTonemapping, forKey: "EnableTonemapping") + try values.encodeIfPresent(enableVppTonemapping, forKey: "EnableVppTonemapping") + try values.encodeIfPresent(encoderAppPath, forKey: "EncoderAppPath") + try values.encodeIfPresent(encoderAppPathDisplay, forKey: "EncoderAppPathDisplay") + try values.encodeIfPresent(encoderPreset, forKey: "EncoderPreset") + try values.encodeIfPresent(encodingThreadCount, forKey: "EncodingThreadCount") + try values.encodeIfPresent(fallbackFontPath, forKey: "FallbackFontPath") + try values.encodeIfPresent(h264Crf, forKey: "H264Crf") + try values.encodeIfPresent(h265Crf, forKey: "H265Crf") + try values.encodeIfPresent(hardwareAccelerationType, forKey: "HardwareAccelerationType") + try values.encodeIfPresent(hardwareDecodingCodecs, forKey: "HardwareDecodingCodecs") + try values.encodeIfPresent(maxMuxingQueueSize, forKey: "MaxMuxingQueueSize") + try values.encodeIfPresent(isPreferSystemNativeHwDecoder, forKey: "PreferSystemNativeHwDecoder") + try values.encodeIfPresent(throttleDelaySeconds, forKey: "ThrottleDelaySeconds") + try values.encodeIfPresent(tonemappingAlgorithm, forKey: "TonemappingAlgorithm") + try values.encodeIfPresent(tonemappingDesat, forKey: "TonemappingDesat") + try values.encodeIfPresent(tonemappingParam, forKey: "TonemappingParam") + try values.encodeIfPresent(tonemappingPeak, forKey: "TonemappingPeak") + try values.encodeIfPresent(tonemappingRange, forKey: "TonemappingRange") + try values.encodeIfPresent(tonemappingThreshold, forKey: "TonemappingThreshold") + try values.encodeIfPresent(transcodingTempPath, forKey: "TranscodingTempPath") + try values.encodeIfPresent(vaapiDevice, forKey: "VaapiDevice") + try values.encodeIfPresent(vppTonemappingBrightness, forKey: "VppTonemappingBrightness") + try values.encodeIfPresent(vppTonemappingContrast, forKey: "VppTonemappingContrast") + } +} diff --git a/Sources/Entities/EndPointInfo.swift b/Sources/Entities/EndPointInfo.swift new file mode 100644 index 000000000..19cb859d2 --- /dev/null +++ b/Sources/Entities/EndPointInfo.swift @@ -0,0 +1,31 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct EndPointInfo: Codable { + public var isInNetwork: Bool? + public var isLocal: Bool? + + public init(isInNetwork: Bool? = nil, isLocal: Bool? = nil) { + self.isInNetwork = isInNetwork + self.isLocal = isLocal + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isInNetwork = try values.decodeIfPresent(Bool.self, forKey: "IsInNetwork") + self.isLocal = try values.decodeIfPresent(Bool.self, forKey: "IsLocal") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isInNetwork, forKey: "IsInNetwork") + try values.encodeIfPresent(isLocal, forKey: "IsLocal") + } +} diff --git a/Sources/Entities/ExternalIDInfo.swift b/Sources/Entities/ExternalIDInfo.swift new file mode 100644 index 000000000..52c53ee07 --- /dev/null +++ b/Sources/Entities/ExternalIDInfo.swift @@ -0,0 +1,50 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Represents the external id information for serialization to the client. +public struct ExternalIDInfo: Codable { + /// Gets or sets the unique key for this id. This key should be unique across all providers. + public var key: String? + /// Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc). + public var name: String? + /// Gets or sets the specific media type for this id. This is used to distinguish between the different + /// + /// external id types for providers with multiple ids. + /// + /// A null value indicates there is no specific media type associated with the external id, or this is the + /// + /// default id for the external provider so there is no need to specify a type. + public var type: ExternalIDMediaType? + /// Gets or sets the URL format string. + public var urlFormatString: String? + + public init(key: String? = nil, name: String? = nil, type: ExternalIDMediaType? = nil, urlFormatString: String? = nil) { + self.key = key + self.name = name + self.type = type + self.urlFormatString = urlFormatString + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.key = try values.decodeIfPresent(String.self, forKey: "Key") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.type = try values.decodeIfPresent(ExternalIDMediaType.self, forKey: "Type") + self.urlFormatString = try values.decodeIfPresent(String.self, forKey: "UrlFormatString") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(key, forKey: "Key") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(urlFormatString, forKey: "UrlFormatString") + } +} diff --git a/Sources/Entities/ExternalIDMediaType.swift b/Sources/Entities/ExternalIDMediaType.swift new file mode 100644 index 000000000..8d75c2639 --- /dev/null +++ b/Sources/Entities/ExternalIDMediaType.swift @@ -0,0 +1,25 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo. +public enum ExternalIDMediaType: String, Codable, CaseIterable { + case album = "Album" + case albumArtist = "AlbumArtist" + case artist = "Artist" + case boxSet = "BoxSet" + case episode = "Episode" + case movie = "Movie" + case otherArtist = "OtherArtist" + case person = "Person" + case releaseGroup = "ReleaseGroup" + case season = "Season" + case series = "Series" + case track = "Track" +} diff --git a/Sources/Entities/ExternalURL.swift b/Sources/Entities/ExternalURL.swift new file mode 100644 index 000000000..d60c7fa6f --- /dev/null +++ b/Sources/Entities/ExternalURL.swift @@ -0,0 +1,33 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ExternalURL: Codable { + /// Gets or sets the name. + public var name: String? + /// Gets or sets the type of the item. + public var url: String? + + public init(name: String? = nil, url: String? = nil) { + self.name = name + self.url = url + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.url = try values.decodeIfPresent(String.self, forKey: "Url") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(url, forKey: "Url") + } +} diff --git a/Sources/Entities/FFmpegLocation.swift b/Sources/Entities/FFmpegLocation.swift new file mode 100644 index 000000000..f009e3254 --- /dev/null +++ b/Sources/Entities/FFmpegLocation.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum describing the location of the FFmpeg tool. +public enum FFmpegLocation: String, Codable, CaseIterable { + case notFound = "NotFound" + case setByArgument = "SetByArgument" + case custom = "Custom" + case system = "System" +} diff --git a/Sources/Entities/FileSystemEntryInfo.swift b/Sources/Entities/FileSystemEntryInfo.swift new file mode 100644 index 000000000..27df374e3 --- /dev/null +++ b/Sources/Entities/FileSystemEntryInfo.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class FileSystemEntryInfo. +public struct FileSystemEntryInfo: Codable { + /// Gets the name. + public var name: String? + /// Gets the path. + public var path: String? + /// Gets the type. + public var type: FileSystemEntryType? + + public init(name: String? = nil, path: String? = nil, type: FileSystemEntryType? = nil) { + self.name = name + self.path = path + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.type = try values.decodeIfPresent(FileSystemEntryType.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/FileSystemEntryType.swift b/Sources/Entities/FileSystemEntryType.swift new file mode 100644 index 000000000..ab9257cd9 --- /dev/null +++ b/Sources/Entities/FileSystemEntryType.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum FileSystemEntryType. +public enum FileSystemEntryType: String, Codable, CaseIterable { + case file = "File" + case directory = "Directory" + case networkComputer = "NetworkComputer" + case networkShare = "NetworkShare" +} diff --git a/Sources/Entities/FontFile.swift b/Sources/Entities/FontFile.swift new file mode 100644 index 000000000..658086fbe --- /dev/null +++ b/Sources/Entities/FontFile.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class FontFile. +public struct FontFile: Codable { + /// Gets or sets the date created. + public var dateCreated: Date? + /// Gets or sets the date modified. + public var dateModified: Date? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the size. + public var size: Int64? + + public init(dateCreated: Date? = nil, dateModified: Date? = nil, name: String? = nil, size: Int64? = nil) { + self.dateCreated = dateCreated + self.dateModified = dateModified + self.name = name + self.size = size + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.dateCreated = try values.decodeIfPresent(Date.self, forKey: "DateCreated") + self.dateModified = try values.decodeIfPresent(Date.self, forKey: "DateModified") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.size = try values.decodeIfPresent(Int64.self, forKey: "Size") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(dateCreated, forKey: "DateCreated") + try values.encodeIfPresent(dateModified, forKey: "DateModified") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(size, forKey: "Size") + } +} diff --git a/Sources/Entities/ForgotPasswordAction.swift b/Sources/Entities/ForgotPasswordAction.swift new file mode 100644 index 000000000..7054a6657 --- /dev/null +++ b/Sources/Entities/ForgotPasswordAction.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum ForgotPasswordAction: String, Codable, CaseIterable { + case contactAdmin = "ContactAdmin" + case pinCode = "PinCode" + case inNetworkRequired = "InNetworkRequired" +} diff --git a/Sources/Entities/ForgotPasswordDto.swift b/Sources/Entities/ForgotPasswordDto.swift new file mode 100644 index 000000000..f53538ce7 --- /dev/null +++ b/Sources/Entities/ForgotPasswordDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Forgot Password request body DTO. +public struct ForgotPasswordDto: Codable { + /// Gets or sets the entered username to have its password reset. + public var enteredUsername: String + + public init(enteredUsername: String) { + self.enteredUsername = enteredUsername + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.enteredUsername = try values.decode(String.self, forKey: "EnteredUsername") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encode(enteredUsername, forKey: "EnteredUsername") + } +} diff --git a/Sources/Entities/ForgotPasswordPinDto.swift b/Sources/Entities/ForgotPasswordPinDto.swift new file mode 100644 index 000000000..462604621 --- /dev/null +++ b/Sources/Entities/ForgotPasswordPinDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Forgot Password Pin enter request body DTO. +public struct ForgotPasswordPinDto: Codable { + /// Gets or sets the entered pin to have the password reset. + public var pin: String + + public init(pin: String) { + self.pin = pin + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.pin = try values.decode(String.self, forKey: "Pin") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encode(pin, forKey: "Pin") + } +} diff --git a/Sources/Entities/ForgotPasswordResult.swift b/Sources/Entities/ForgotPasswordResult.swift new file mode 100644 index 000000000..847816b24 --- /dev/null +++ b/Sources/Entities/ForgotPasswordResult.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ForgotPasswordResult: Codable { + /// Gets or sets the action. + public var action: ForgotPasswordAction? + /// Gets or sets the pin expiration date. + public var pinExpirationDate: Date? + /// Gets or sets the pin file. + public var pinFile: String? + + public init(action: ForgotPasswordAction? = nil, pinExpirationDate: Date? = nil, pinFile: String? = nil) { + self.action = action + self.pinExpirationDate = pinExpirationDate + self.pinFile = pinFile + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.action = try values.decodeIfPresent(ForgotPasswordAction.self, forKey: "Action") + self.pinExpirationDate = try values.decodeIfPresent(Date.self, forKey: "PinExpirationDate") + self.pinFile = try values.decodeIfPresent(String.self, forKey: "PinFile") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(action, forKey: "Action") + try values.encodeIfPresent(pinExpirationDate, forKey: "PinExpirationDate") + try values.encodeIfPresent(pinFile, forKey: "PinFile") + } +} diff --git a/Sources/Entities/GeneralCommand.swift b/Sources/Entities/GeneralCommand.swift new file mode 100644 index 000000000..bb676cc54 --- /dev/null +++ b/Sources/Entities/GeneralCommand.swift @@ -0,0 +1,36 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct GeneralCommand: Codable { + public var arguments: [String: String]? + public var controllingUserID: String? + /// This exists simply to identify a set of known commands. + public var name: GeneralCommandType? + + public init(arguments: [String: String]? = nil, controllingUserID: String? = nil, name: GeneralCommandType? = nil) { + self.arguments = arguments + self.controllingUserID = controllingUserID + self.name = name + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.arguments = try values.decodeIfPresent([String: String].self, forKey: "Arguments") + self.controllingUserID = try values.decodeIfPresent(String.self, forKey: "ControllingUserId") + self.name = try values.decodeIfPresent(GeneralCommandType.self, forKey: "Name") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(arguments, forKey: "Arguments") + try values.encodeIfPresent(controllingUserID, forKey: "ControllingUserId") + try values.encodeIfPresent(name, forKey: "Name") + } +} diff --git a/Sources/JellyfinAPI/Models/GeneralCommandType.swift b/Sources/Entities/GeneralCommandType.swift similarity index 83% rename from Sources/JellyfinAPI/Models/GeneralCommandType.swift rename to Sources/Entities/GeneralCommandType.swift index b980718e0..73cfe6612 100644 --- a/Sources/JellyfinAPI/Models/GeneralCommandType.swift +++ b/Sources/Entities/GeneralCommandType.swift @@ -1,16 +1,14 @@ // -// GeneralCommandType.swift +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. // -// Generated by openapi-generator -// https://openapi-generator.tech +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors // import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif -/** This exists simply to identify a set of known commands. */ +/// This exists simply to identify a set of known commands. public enum GeneralCommandType: String, Codable, CaseIterable { case moveUp = "MoveUp" case moveDown = "MoveDown" diff --git a/Sources/Entities/GetProgramsDto.swift b/Sources/Entities/GetProgramsDto.swift new file mode 100644 index 000000000..cd98f9923 --- /dev/null +++ b/Sources/Entities/GetProgramsDto.swift @@ -0,0 +1,229 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Get programs dto. +public struct GetProgramsDto: Codable { + /// Gets or sets the channels to return guide information for. + public var channelIDs: [String]? + /// Gets or sets the image types to include in the output. + /// + /// Optional. + public var enableImageTypes: [ImageType]? + /// Gets or sets include image information in output. + /// + /// Optional. + public var enableImages: Bool? + /// Gets or sets a value indicating whether retrieve total record count. + public var enableTotalRecordCount: Bool? + /// Gets or sets include user data. + /// + /// Optional. + public var enableUserData: Bool? + /// Gets or sets specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. + /// + /// Optional. + public var fields: [ItemFields]? + /// Gets or sets the genre ids to return guide information for. + public var genreIDs: [String]? + /// Gets or sets the genres to return guide information for. + public var genres: [String]? + /// Gets or sets filter by programs that have completed airing, or not. + /// + /// Optional. + public var hasAired: Bool? + /// Gets or sets the max number of images to return, per image type. + /// + /// Optional. + public var imageTypeLimit: Int32? + /// Gets or sets filter by programs that are currently airing, or not. + /// + /// Optional. + public var isAiring: Bool? + /// Gets or sets filter for kids. + /// + /// Optional. + public var isKids: Bool? + /// Gets or sets filter for movies. + /// + /// Optional. + public var isMovie: Bool? + /// Gets or sets filter for news. + /// + /// Optional. + public var isNews: Bool? + /// Gets or sets filter for series. + /// + /// Optional. + public var isSeries: Bool? + /// Gets or sets filter for sports. + /// + /// Optional. + public var isSports: Bool? + /// Gets or sets filter by library series id. + /// + /// Optional. + public var librarySeriesID: String? + /// Gets or sets the maximum number of records to return. + /// + /// Optional. + public var limit: Int32? + /// Gets or sets the maximum premiere end date. + /// + /// Optional. + public var maxEndDate: Date? + /// Gets or sets the maximum premiere start date. + /// + /// Optional. + public var maxStartDate: Date? + /// Gets or sets the minimum premiere end date. + /// + /// Optional. + public var minEndDate: Date? + /// Gets or sets the minimum premiere start date. + /// + /// Optional. + public var minStartDate: Date? + /// Gets or sets filter by series timer id. + /// + /// Optional. + public var seriesTimerID: String? + /// Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate. + /// + /// Optional. + public var sortBy: [String]? + /// Gets or sets sort Order - Ascending,Descending. + public var sortOrder: [SortOrder]? + /// Gets or sets the record index to start at. All items with a lower index will be dropped from the results. + /// + /// Optional. + public var startIndex: Int32? + /// Gets or sets optional. Filter by user id. + public var userID: String? + + public init( + channelIDs: [String]? = nil, + enableImageTypes: [ImageType]? = nil, + enableImages: Bool? = nil, + enableTotalRecordCount: Bool? = nil, + enableUserData: Bool? = nil, + fields: [ItemFields]? = nil, + genreIDs: [String]? = nil, + genres: [String]? = nil, + hasAired: Bool? = nil, + imageTypeLimit: Int32? = nil, + isAiring: Bool? = nil, + isKids: Bool? = nil, + isMovie: Bool? = nil, + isNews: Bool? = nil, + isSeries: Bool? = nil, + isSports: Bool? = nil, + librarySeriesID: String? = nil, + limit: Int32? = nil, + maxEndDate: Date? = nil, + maxStartDate: Date? = nil, + minEndDate: Date? = nil, + minStartDate: Date? = nil, + seriesTimerID: String? = nil, + sortBy: [String]? = nil, + sortOrder: [SortOrder]? = nil, + startIndex: Int32? = nil, + userID: String? = nil + ) { + self.channelIDs = channelIDs + self.enableImageTypes = enableImageTypes + self.enableImages = enableImages + self.enableTotalRecordCount = enableTotalRecordCount + self.enableUserData = enableUserData + self.fields = fields + self.genreIDs = genreIDs + self.genres = genres + self.hasAired = hasAired + self.imageTypeLimit = imageTypeLimit + self.isAiring = isAiring + self.isKids = isKids + self.isMovie = isMovie + self.isNews = isNews + self.isSeries = isSeries + self.isSports = isSports + self.librarySeriesID = librarySeriesID + self.limit = limit + self.maxEndDate = maxEndDate + self.maxStartDate = maxStartDate + self.minEndDate = minEndDate + self.minStartDate = minStartDate + self.seriesTimerID = seriesTimerID + self.sortBy = sortBy + self.sortOrder = sortOrder + self.startIndex = startIndex + self.userID = userID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.channelIDs = try values.decodeIfPresent([String].self, forKey: "ChannelIds") + self.enableImageTypes = try values.decodeIfPresent([ImageType].self, forKey: "EnableImageTypes") + self.enableImages = try values.decodeIfPresent(Bool.self, forKey: "EnableImages") + self.enableTotalRecordCount = try values.decodeIfPresent(Bool.self, forKey: "EnableTotalRecordCount") + self.enableUserData = try values.decodeIfPresent(Bool.self, forKey: "EnableUserData") + self.fields = try values.decodeIfPresent([ItemFields].self, forKey: "Fields") + self.genreIDs = try values.decodeIfPresent([String].self, forKey: "GenreIds") + self.genres = try values.decodeIfPresent([String].self, forKey: "Genres") + self.hasAired = try values.decodeIfPresent(Bool.self, forKey: "HasAired") + self.imageTypeLimit = try values.decodeIfPresent(Int32.self, forKey: "ImageTypeLimit") + self.isAiring = try values.decodeIfPresent(Bool.self, forKey: "IsAiring") + self.isKids = try values.decodeIfPresent(Bool.self, forKey: "IsKids") + self.isMovie = try values.decodeIfPresent(Bool.self, forKey: "IsMovie") + self.isNews = try values.decodeIfPresent(Bool.self, forKey: "IsNews") + self.isSeries = try values.decodeIfPresent(Bool.self, forKey: "IsSeries") + self.isSports = try values.decodeIfPresent(Bool.self, forKey: "IsSports") + self.librarySeriesID = try values.decodeIfPresent(String.self, forKey: "LibrarySeriesId") + self.limit = try values.decodeIfPresent(Int32.self, forKey: "Limit") + self.maxEndDate = try values.decodeIfPresent(Date.self, forKey: "MaxEndDate") + self.maxStartDate = try values.decodeIfPresent(Date.self, forKey: "MaxStartDate") + self.minEndDate = try values.decodeIfPresent(Date.self, forKey: "MinEndDate") + self.minStartDate = try values.decodeIfPresent(Date.self, forKey: "MinStartDate") + self.seriesTimerID = try values.decodeIfPresent(String.self, forKey: "SeriesTimerId") + self.sortBy = try values.decodeIfPresent([String].self, forKey: "SortBy") + self.sortOrder = try values.decodeIfPresent([SortOrder].self, forKey: "SortOrder") + self.startIndex = try values.decodeIfPresent(Int32.self, forKey: "StartIndex") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(channelIDs, forKey: "ChannelIds") + try values.encodeIfPresent(enableImageTypes, forKey: "EnableImageTypes") + try values.encodeIfPresent(enableImages, forKey: "EnableImages") + try values.encodeIfPresent(enableTotalRecordCount, forKey: "EnableTotalRecordCount") + try values.encodeIfPresent(enableUserData, forKey: "EnableUserData") + try values.encodeIfPresent(fields, forKey: "Fields") + try values.encodeIfPresent(genreIDs, forKey: "GenreIds") + try values.encodeIfPresent(genres, forKey: "Genres") + try values.encodeIfPresent(hasAired, forKey: "HasAired") + try values.encodeIfPresent(imageTypeLimit, forKey: "ImageTypeLimit") + try values.encodeIfPresent(isAiring, forKey: "IsAiring") + try values.encodeIfPresent(isKids, forKey: "IsKids") + try values.encodeIfPresent(isMovie, forKey: "IsMovie") + try values.encodeIfPresent(isNews, forKey: "IsNews") + try values.encodeIfPresent(isSeries, forKey: "IsSeries") + try values.encodeIfPresent(isSports, forKey: "IsSports") + try values.encodeIfPresent(librarySeriesID, forKey: "LibrarySeriesId") + try values.encodeIfPresent(limit, forKey: "Limit") + try values.encodeIfPresent(maxEndDate, forKey: "MaxEndDate") + try values.encodeIfPresent(maxStartDate, forKey: "MaxStartDate") + try values.encodeIfPresent(minEndDate, forKey: "MinEndDate") + try values.encodeIfPresent(minStartDate, forKey: "MinStartDate") + try values.encodeIfPresent(seriesTimerID, forKey: "SeriesTimerId") + try values.encodeIfPresent(sortBy, forKey: "SortBy") + try values.encodeIfPresent(sortOrder, forKey: "SortOrder") + try values.encodeIfPresent(startIndex, forKey: "StartIndex") + try values.encodeIfPresent(userID, forKey: "UserId") + } +} diff --git a/Sources/Entities/GroupInfoDto.swift b/Sources/Entities/GroupInfoDto.swift new file mode 100644 index 000000000..149e6d13a --- /dev/null +++ b/Sources/Entities/GroupInfoDto.swift @@ -0,0 +1,55 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class GroupInfoDto. +public struct GroupInfoDto: Codable { + /// Gets the group identifier. + public var groupID: String? + /// Gets the group name. + public var groupName: String? + /// Gets the date when this DTO has been created. + public var lastUpdatedAt: Date? + /// Gets the participants. + public var participants: [String]? + /// Gets the group state. + public var state: GroupStateType? + + public init( + groupID: String? = nil, + groupName: String? = nil, + lastUpdatedAt: Date? = nil, + participants: [String]? = nil, + state: GroupStateType? = nil + ) { + self.groupID = groupID + self.groupName = groupName + self.lastUpdatedAt = lastUpdatedAt + self.participants = participants + self.state = state + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.groupID = try values.decodeIfPresent(String.self, forKey: "GroupId") + self.groupName = try values.decodeIfPresent(String.self, forKey: "GroupName") + self.lastUpdatedAt = try values.decodeIfPresent(Date.self, forKey: "LastUpdatedAt") + self.participants = try values.decodeIfPresent([String].self, forKey: "Participants") + self.state = try values.decodeIfPresent(GroupStateType.self, forKey: "State") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(groupID, forKey: "GroupId") + try values.encodeIfPresent(groupName, forKey: "GroupName") + try values.encodeIfPresent(lastUpdatedAt, forKey: "LastUpdatedAt") + try values.encodeIfPresent(participants, forKey: "Participants") + try values.encodeIfPresent(state, forKey: "State") + } +} diff --git a/Sources/Entities/GroupQueueMode.swift b/Sources/Entities/GroupQueueMode.swift new file mode 100644 index 000000000..1c18acb2c --- /dev/null +++ b/Sources/Entities/GroupQueueMode.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum GroupQueueMode. +public enum GroupQueueMode: String, Codable, CaseIterable { + case queue = "Queue" + case queueNext = "QueueNext" +} diff --git a/Sources/Entities/GroupRepeatMode.swift b/Sources/Entities/GroupRepeatMode.swift new file mode 100644 index 000000000..998ca9266 --- /dev/null +++ b/Sources/Entities/GroupRepeatMode.swift @@ -0,0 +1,16 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum GroupRepeatMode. +public enum GroupRepeatMode: String, Codable, CaseIterable { + case repeatOne = "RepeatOne" + case repeatAll = "RepeatAll" + case repeatNone = "RepeatNone" +} diff --git a/Sources/Entities/GroupShuffleMode.swift b/Sources/Entities/GroupShuffleMode.swift new file mode 100644 index 000000000..a57699ed7 --- /dev/null +++ b/Sources/Entities/GroupShuffleMode.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum GroupShuffleMode. +public enum GroupShuffleMode: String, Codable, CaseIterable { + case sorted = "Sorted" + case shuffle = "Shuffle" +} diff --git a/Sources/Entities/GroupStateType.swift b/Sources/Entities/GroupStateType.swift new file mode 100644 index 000000000..9e3a85a16 --- /dev/null +++ b/Sources/Entities/GroupStateType.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum GroupState. +public enum GroupStateType: String, Codable, CaseIterable { + case idle = "Idle" + case waiting = "Waiting" + case paused = "Paused" + case playing = "Playing" +} diff --git a/Sources/Entities/GroupUpdateType.swift b/Sources/Entities/GroupUpdateType.swift new file mode 100644 index 000000000..acd00b3ee --- /dev/null +++ b/Sources/Entities/GroupUpdateType.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum GroupUpdateType. +public enum GroupUpdateType: String, Codable, CaseIterable { + case userJoined = "UserJoined" + case userLeft = "UserLeft" + case groupJoined = "GroupJoined" + case groupLeft = "GroupLeft" + case stateUpdate = "StateUpdate" + case playQueue = "PlayQueue" + case notInGroup = "NotInGroup" + case groupDoesNotExist = "GroupDoesNotExist" + case createGroupDenied = "CreateGroupDenied" + case joinGroupDenied = "JoinGroupDenied" + case libraryAccessDenied = "LibraryAccessDenied" +} diff --git a/Sources/Entities/GuideInfo.swift b/Sources/Entities/GuideInfo.swift new file mode 100644 index 000000000..fd48817f8 --- /dev/null +++ b/Sources/Entities/GuideInfo.swift @@ -0,0 +1,33 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct GuideInfo: Codable { + /// Gets or sets the end date. + public var endDate: Date? + /// Gets or sets the start date. + public var startDate: Date? + + public init(endDate: Date? = nil, startDate: Date? = nil) { + self.endDate = endDate + self.startDate = startDate + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.endDate = try values.decodeIfPresent(Date.self, forKey: "EndDate") + self.startDate = try values.decodeIfPresent(Date.self, forKey: "StartDate") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(endDate, forKey: "EndDate") + try values.encodeIfPresent(startDate, forKey: "StartDate") + } +} diff --git a/Sources/Entities/HTTPHeaderInfo.swift b/Sources/Entities/HTTPHeaderInfo.swift new file mode 100644 index 000000000..54b15e9b0 --- /dev/null +++ b/Sources/Entities/HTTPHeaderInfo.swift @@ -0,0 +1,35 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct HTTPHeaderInfo: Codable { + public var match: HeaderMatchType? + public var name: String? + public var value: String? + + public init(match: HeaderMatchType? = nil, name: String? = nil, value: String? = nil) { + self.match = match + self.name = name + self.value = value + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.match = try values.decodeIfPresent(HeaderMatchType.self, forKey: "Match") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.value = try values.decodeIfPresent(String.self, forKey: "Value") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(match, forKey: "Match") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(value, forKey: "Value") + } +} diff --git a/Sources/Entities/HardwareEncodingType.swift b/Sources/Entities/HardwareEncodingType.swift new file mode 100644 index 000000000..7b63fe47b --- /dev/null +++ b/Sources/Entities/HardwareEncodingType.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum HardwareEncodingType. +public enum HardwareEncodingType: String, Codable, CaseIterable { + case amf = "AMF" + case qsv = "QSV" + case nvenc = "NVENC" + case v4l2m2m = "V4L2M2M" + case vaapi = "VAAPI" + case videoToolBox = "VideoToolBox" +} diff --git a/Sources/Entities/HeaderMatchType.swift b/Sources/Entities/HeaderMatchType.swift new file mode 100644 index 000000000..964278a54 --- /dev/null +++ b/Sources/Entities/HeaderMatchType.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum HeaderMatchType: String, Codable, CaseIterable { + case equals = "Equals" + case regex = "Regex" + case substring = "Substring" +} diff --git a/Sources/Entities/IPlugin.swift b/Sources/Entities/IPlugin.swift new file mode 100644 index 000000000..a0d219c82 --- /dev/null +++ b/Sources/Entities/IPlugin.swift @@ -0,0 +1,67 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Defines the MediaBrowser.Common.Plugins.IPlugin. +public struct IPlugin: Codable, Identifiable { + /// Gets the path to the assembly file. + public var assemblyFilePath: String? + /// Gets a value indicating whether the plugin can be uninstalled. + public var canUninstall: Bool? + /// Gets the full path to the data folder, where the plugin can store any miscellaneous files needed. + public var dataFolderPath: String? + /// Gets the Description. + public var description: String? + /// Gets the unique id. + public var id: String? + /// Gets the name of the plugin. + public var name: String? + /// Gets the plugin version. + public var version: String? + + public init( + assemblyFilePath: String? = nil, + canUninstall: Bool? = nil, + dataFolderPath: String? = nil, + description: String? = nil, + id: String? = nil, + name: String? = nil, + version: String? = nil + ) { + self.assemblyFilePath = assemblyFilePath + self.canUninstall = canUninstall + self.dataFolderPath = dataFolderPath + self.description = description + self.id = id + self.name = name + self.version = version + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.assemblyFilePath = try values.decodeIfPresent(String.self, forKey: "AssemblyFilePath") + self.canUninstall = try values.decodeIfPresent(Bool.self, forKey: "CanUninstall") + self.dataFolderPath = try values.decodeIfPresent(String.self, forKey: "DataFolderPath") + self.description = try values.decodeIfPresent(String.self, forKey: "Description") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.version = try values.decodeIfPresent(String.self, forKey: "Version") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(assemblyFilePath, forKey: "AssemblyFilePath") + try values.encodeIfPresent(canUninstall, forKey: "CanUninstall") + try values.encodeIfPresent(dataFolderPath, forKey: "DataFolderPath") + try values.encodeIfPresent(description, forKey: "Description") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(version, forKey: "Version") + } +} diff --git a/Sources/Entities/IgnoreWaitRequestDto.swift b/Sources/Entities/IgnoreWaitRequestDto.swift new file mode 100644 index 000000000..8a0725f1a --- /dev/null +++ b/Sources/Entities/IgnoreWaitRequestDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class IgnoreWaitRequestDto. +public struct IgnoreWaitRequestDto: Codable { + /// Gets or sets a value indicating whether the client should be ignored. + public var isIgnoreWait: Bool? + + public init(isIgnoreWait: Bool? = nil) { + self.isIgnoreWait = isIgnoreWait + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isIgnoreWait = try values.decodeIfPresent(Bool.self, forKey: "IgnoreWait") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isIgnoreWait, forKey: "IgnoreWait") + } +} diff --git a/Sources/Entities/ImageByNameInfo.swift b/Sources/Entities/ImageByNameInfo.swift new file mode 100644 index 000000000..1dcfa1b8d --- /dev/null +++ b/Sources/Entities/ImageByNameInfo.swift @@ -0,0 +1,48 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ImageByNameInfo: Codable { + /// Gets or sets the context. + public var context: String? + /// Gets or sets the length of the file. + public var fileLength: Int64? + /// Gets or sets the format. + public var format: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the theme. + public var theme: String? + + public init(context: String? = nil, fileLength: Int64? = nil, format: String? = nil, name: String? = nil, theme: String? = nil) { + self.context = context + self.fileLength = fileLength + self.format = format + self.name = name + self.theme = theme + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.context = try values.decodeIfPresent(String.self, forKey: "Context") + self.fileLength = try values.decodeIfPresent(Int64.self, forKey: "FileLength") + self.format = try values.decodeIfPresent(String.self, forKey: "Format") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.theme = try values.decodeIfPresent(String.self, forKey: "Theme") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(context, forKey: "Context") + try values.encodeIfPresent(fileLength, forKey: "FileLength") + try values.encodeIfPresent(format, forKey: "Format") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(theme, forKey: "Theme") + } +} diff --git a/Sources/Entities/ImageFormat.swift b/Sources/Entities/ImageFormat.swift new file mode 100644 index 000000000..ac2a4eeb1 --- /dev/null +++ b/Sources/Entities/ImageFormat.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum ImageOutputFormat. +public enum ImageFormat: String, Codable, CaseIterable { + case bmp = "Bmp" + case gif = "Gif" + case jpg = "Jpg" + case png = "Png" + case webp = "Webp" +} diff --git a/Sources/Entities/ImageInfo.swift b/Sources/Entities/ImageInfo.swift new file mode 100644 index 000000000..d7e730049 --- /dev/null +++ b/Sources/Entities/ImageInfo.swift @@ -0,0 +1,73 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class ImageInfo. +public struct ImageInfo: Codable { + /// Gets or sets the blurhash. + public var blurHash: String? + /// Gets or sets the height. + public var height: Int32? + /// Gets or sets the index of the image. + public var imageIndex: Int32? + /// Gets or sets the image tag. + public var imageTag: String? + /// Gets or sets the type of the image. + public var imageType: ImageType? + /// Gets or sets the path. + public var path: String? + /// Gets or sets the size. + public var size: Int64? + /// Gets or sets the width. + public var width: Int32? + + public init( + blurHash: String? = nil, + height: Int32? = nil, + imageIndex: Int32? = nil, + imageTag: String? = nil, + imageType: ImageType? = nil, + path: String? = nil, + size: Int64? = nil, + width: Int32? = nil + ) { + self.blurHash = blurHash + self.height = height + self.imageIndex = imageIndex + self.imageTag = imageTag + self.imageType = imageType + self.path = path + self.size = size + self.width = width + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.blurHash = try values.decodeIfPresent(String.self, forKey: "BlurHash") + self.height = try values.decodeIfPresent(Int32.self, forKey: "Height") + self.imageIndex = try values.decodeIfPresent(Int32.self, forKey: "ImageIndex") + self.imageTag = try values.decodeIfPresent(String.self, forKey: "ImageTag") + self.imageType = try values.decodeIfPresent(ImageType.self, forKey: "ImageType") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.size = try values.decodeIfPresent(Int64.self, forKey: "Size") + self.width = try values.decodeIfPresent(Int32.self, forKey: "Width") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(blurHash, forKey: "BlurHash") + try values.encodeIfPresent(height, forKey: "Height") + try values.encodeIfPresent(imageIndex, forKey: "ImageIndex") + try values.encodeIfPresent(imageTag, forKey: "ImageTag") + try values.encodeIfPresent(imageType, forKey: "ImageType") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(size, forKey: "Size") + try values.encodeIfPresent(width, forKey: "Width") + } +} diff --git a/Sources/Entities/ImageOption.swift b/Sources/Entities/ImageOption.swift new file mode 100644 index 000000000..d4792aa87 --- /dev/null +++ b/Sources/Entities/ImageOption.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ImageOption: Codable { + /// Gets or sets the limit. + public var limit: Int32? + /// Gets or sets the minimum width. + public var minWidth: Int32? + /// Gets or sets the type. + public var type: ImageType? + + public init(limit: Int32? = nil, minWidth: Int32? = nil, type: ImageType? = nil) { + self.limit = limit + self.minWidth = minWidth + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.limit = try values.decodeIfPresent(Int32.self, forKey: "Limit") + self.minWidth = try values.decodeIfPresent(Int32.self, forKey: "MinWidth") + self.type = try values.decodeIfPresent(ImageType.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(limit, forKey: "Limit") + try values.encodeIfPresent(minWidth, forKey: "MinWidth") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/ImageOrientation.swift b/Sources/Entities/ImageOrientation.swift new file mode 100644 index 000000000..ce65fa1a6 --- /dev/null +++ b/Sources/Entities/ImageOrientation.swift @@ -0,0 +1,20 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum ImageOrientation: String, Codable, CaseIterable { + case topLeft = "TopLeft" + case topRight = "TopRight" + case bottomRight = "BottomRight" + case bottomLeft = "BottomLeft" + case leftTop = "LeftTop" + case rightTop = "RightTop" + case rightBottom = "RightBottom" + case leftBottom = "LeftBottom" +} diff --git a/Sources/Entities/ImageProviderInfo.swift b/Sources/Entities/ImageProviderInfo.swift new file mode 100644 index 000000000..9c23a3d04 --- /dev/null +++ b/Sources/Entities/ImageProviderInfo.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class ImageProviderInfo. +public struct ImageProviderInfo: Codable { + /// Gets the name. + public var name: String? + /// Gets the supported image types. + public var supportedImages: [ImageType]? + + public init(name: String? = nil, supportedImages: [ImageType]? = nil) { + self.name = name + self.supportedImages = supportedImages + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.supportedImages = try values.decodeIfPresent([ImageType].self, forKey: "SupportedImages") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(supportedImages, forKey: "SupportedImages") + } +} diff --git a/Sources/Entities/ImageSavingConvention.swift b/Sources/Entities/ImageSavingConvention.swift new file mode 100644 index 000000000..1493c107d --- /dev/null +++ b/Sources/Entities/ImageSavingConvention.swift @@ -0,0 +1,14 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum ImageSavingConvention: String, Codable, CaseIterable { + case legacy = "Legacy" + case compatible = "Compatible" +} diff --git a/Sources/Entities/ImageType.swift b/Sources/Entities/ImageType.swift new file mode 100644 index 000000000..000634293 --- /dev/null +++ b/Sources/Entities/ImageType.swift @@ -0,0 +1,26 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum ImageType. +public enum ImageType: String, Codable, CaseIterable { + case primary = "Primary" + case art = "Art" + case backdrop = "Backdrop" + case banner = "Banner" + case logo = "Logo" + case thumb = "Thumb" + case disc = "Disc" + case box = "Box" + case screenshot = "Screenshot" + case menu = "Menu" + case chapter = "Chapter" + case boxRear = "BoxRear" + case profile = "Profile" +} diff --git a/Sources/Entities/InstallationInfo.swift b/Sources/Entities/InstallationInfo.swift new file mode 100644 index 000000000..767cbaba7 --- /dev/null +++ b/Sources/Entities/InstallationInfo.swift @@ -0,0 +1,67 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class InstallationInfo. +public struct InstallationInfo: Codable { + /// Gets or sets the changelog for this version. + public var changelog: String? + /// Gets or sets a checksum for the binary. + public var checksum: String? + /// Gets or sets the Id. + public var guid: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets package information for the installation. + public var packageInfo: PackageInfo? + /// Gets or sets the source URL. + public var sourceURL: String? + /// Gets or sets the version. + public var version: String? + + public init( + changelog: String? = nil, + checksum: String? = nil, + guid: String? = nil, + name: String? = nil, + packageInfo: PackageInfo? = nil, + sourceURL: String? = nil, + version: String? = nil + ) { + self.changelog = changelog + self.checksum = checksum + self.guid = guid + self.name = name + self.packageInfo = packageInfo + self.sourceURL = sourceURL + self.version = version + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.changelog = try values.decodeIfPresent(String.self, forKey: "Changelog") + self.checksum = try values.decodeIfPresent(String.self, forKey: "Checksum") + self.guid = try values.decodeIfPresent(String.self, forKey: "Guid") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.packageInfo = try values.decodeIfPresent(PackageInfo.self, forKey: "PackageInfo") + self.sourceURL = try values.decodeIfPresent(String.self, forKey: "SourceUrl") + self.version = try values.decodeIfPresent(String.self, forKey: "Version") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(changelog, forKey: "Changelog") + try values.encodeIfPresent(checksum, forKey: "Checksum") + try values.encodeIfPresent(guid, forKey: "Guid") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(packageInfo, forKey: "PackageInfo") + try values.encodeIfPresent(sourceURL, forKey: "SourceUrl") + try values.encodeIfPresent(version, forKey: "Version") + } +} diff --git a/Sources/Entities/IsoType.swift b/Sources/Entities/IsoType.swift new file mode 100644 index 000000000..c22c707ec --- /dev/null +++ b/Sources/Entities/IsoType.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum IsoType. +public enum IsoType: String, Codable, CaseIterable { + case dvd = "Dvd" + case bluRay = "BluRay" +} diff --git a/Sources/Entities/ItemCounts.swift b/Sources/Entities/ItemCounts.swift new file mode 100644 index 000000000..995be6109 --- /dev/null +++ b/Sources/Entities/ItemCounts.swift @@ -0,0 +1,97 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class LibrarySummary. +public struct ItemCounts: Codable { + /// Gets or sets the album count. + public var albumCount: Int32? + /// Gets or sets the artist count. + public var artistCount: Int32? + /// Gets or sets the book count. + public var bookCount: Int32? + /// Gets or sets the box set count. + public var boxSetCount: Int32? + /// Gets or sets the episode count. + public var episodeCount: Int32? + /// Gets or sets the item count. + public var itemCount: Int32? + /// Gets or sets the movie count. + public var movieCount: Int32? + /// Gets or sets the music video count. + public var musicVideoCount: Int32? + /// Gets or sets the program count. + public var programCount: Int32? + /// Gets or sets the series count. + public var seriesCount: Int32? + /// Gets or sets the song count. + public var songCount: Int32? + /// Gets or sets the trailer count. + public var trailerCount: Int32? + + public init( + albumCount: Int32? = nil, + artistCount: Int32? = nil, + bookCount: Int32? = nil, + boxSetCount: Int32? = nil, + episodeCount: Int32? = nil, + itemCount: Int32? = nil, + movieCount: Int32? = nil, + musicVideoCount: Int32? = nil, + programCount: Int32? = nil, + seriesCount: Int32? = nil, + songCount: Int32? = nil, + trailerCount: Int32? = nil + ) { + self.albumCount = albumCount + self.artistCount = artistCount + self.bookCount = bookCount + self.boxSetCount = boxSetCount + self.episodeCount = episodeCount + self.itemCount = itemCount + self.movieCount = movieCount + self.musicVideoCount = musicVideoCount + self.programCount = programCount + self.seriesCount = seriesCount + self.songCount = songCount + self.trailerCount = trailerCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.albumCount = try values.decodeIfPresent(Int32.self, forKey: "AlbumCount") + self.artistCount = try values.decodeIfPresent(Int32.self, forKey: "ArtistCount") + self.bookCount = try values.decodeIfPresent(Int32.self, forKey: "BookCount") + self.boxSetCount = try values.decodeIfPresent(Int32.self, forKey: "BoxSetCount") + self.episodeCount = try values.decodeIfPresent(Int32.self, forKey: "EpisodeCount") + self.itemCount = try values.decodeIfPresent(Int32.self, forKey: "ItemCount") + self.movieCount = try values.decodeIfPresent(Int32.self, forKey: "MovieCount") + self.musicVideoCount = try values.decodeIfPresent(Int32.self, forKey: "MusicVideoCount") + self.programCount = try values.decodeIfPresent(Int32.self, forKey: "ProgramCount") + self.seriesCount = try values.decodeIfPresent(Int32.self, forKey: "SeriesCount") + self.songCount = try values.decodeIfPresent(Int32.self, forKey: "SongCount") + self.trailerCount = try values.decodeIfPresent(Int32.self, forKey: "TrailerCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(albumCount, forKey: "AlbumCount") + try values.encodeIfPresent(artistCount, forKey: "ArtistCount") + try values.encodeIfPresent(bookCount, forKey: "BookCount") + try values.encodeIfPresent(boxSetCount, forKey: "BoxSetCount") + try values.encodeIfPresent(episodeCount, forKey: "EpisodeCount") + try values.encodeIfPresent(itemCount, forKey: "ItemCount") + try values.encodeIfPresent(movieCount, forKey: "MovieCount") + try values.encodeIfPresent(musicVideoCount, forKey: "MusicVideoCount") + try values.encodeIfPresent(programCount, forKey: "ProgramCount") + try values.encodeIfPresent(seriesCount, forKey: "SeriesCount") + try values.encodeIfPresent(songCount, forKey: "SongCount") + try values.encodeIfPresent(trailerCount, forKey: "TrailerCount") + } +} diff --git a/Sources/JellyfinAPI/Models/ItemFields.swift b/Sources/Entities/ItemFields.swift similarity index 76% rename from Sources/JellyfinAPI/Models/ItemFields.swift rename to Sources/Entities/ItemFields.swift index b1156823a..e65c6394f 100644 --- a/Sources/JellyfinAPI/Models/ItemFields.swift +++ b/Sources/Entities/ItemFields.swift @@ -1,16 +1,14 @@ // -// ItemFields.swift +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. // -// Generated by openapi-generator -// https://openapi-generator.tech +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors // import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif -/** Used to control the data that gets attached to DtoBaseItems. */ +/// Used to control the data that gets attached to DtoBaseItems. public enum ItemFields: String, Codable, CaseIterable { case airTime = "AirTime" case canDelete = "CanDelete" @@ -22,22 +20,22 @@ public enum ItemFields: String, Codable, CaseIterable { case customRating = "CustomRating" case dateCreated = "DateCreated" case dateLastMediaAdded = "DateLastMediaAdded" - case displayPreferencesId = "DisplayPreferencesId" + case displayPreferencesID = "DisplayPreferencesId" case etag = "Etag" - case externalUrls = "ExternalUrls" + case externalURLs = "ExternalUrls" case genres = "Genres" - case homePageUrl = "HomePageUrl" + case homePageURL = "HomePageUrl" case itemCounts = "ItemCounts" case mediaSourceCount = "MediaSourceCount" case mediaSources = "MediaSources" case originalTitle = "OriginalTitle" case overview = "Overview" - case parentId = "ParentId" + case parentID = "ParentId" case path = "Path" case people = "People" case playAccess = "PlayAccess" case productionLocations = "ProductionLocations" - case providerIds = "ProviderIds" + case providerIDs = "ProviderIds" case primaryImageAspectRatio = "PrimaryImageAspectRatio" case recursiveItemCount = "RecursiveItemCount" case settings = "Settings" @@ -55,12 +53,12 @@ public enum ItemFields: String, Codable, CaseIterable { case mediaStreams = "MediaStreams" case seasonUserData = "SeasonUserData" case serviceName = "ServiceName" - case themeSongIds = "ThemeSongIds" - case themeVideoIds = "ThemeVideoIds" + case themeSongIDs = "ThemeSongIds" + case themeVideoIDs = "ThemeVideoIds" case externalEtag = "ExternalEtag" case presentationUniqueKey = "PresentationUniqueKey" case inheritedParentalRatingValue = "InheritedParentalRatingValue" - case externalSeriesId = "ExternalSeriesId" + case externalSeriesID = "ExternalSeriesId" case seriesPresentationUniqueKey = "SeriesPresentationUniqueKey" case dateLastRefreshed = "DateLastRefreshed" case dateLastSaved = "DateLastSaved" @@ -69,7 +67,7 @@ public enum ItemFields: String, Codable, CaseIterable { case enableMediaSourceDisplay = "EnableMediaSourceDisplay" case width = "Width" case height = "Height" - case extraIds = "ExtraIds" + case extraIDs = "ExtraIds" case localTrailerCount = "LocalTrailerCount" case isHD = "IsHD" case specialFeatureCount = "SpecialFeatureCount" diff --git a/Sources/Entities/ItemFilter.swift b/Sources/Entities/ItemFilter.swift new file mode 100644 index 000000000..dd0edcfce --- /dev/null +++ b/Sources/Entities/ItemFilter.swift @@ -0,0 +1,22 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum ItemFilter. +public enum ItemFilter: String, Codable, CaseIterable { + case isFolder = "IsFolder" + case isNotFolder = "IsNotFolder" + case isUnplayed = "IsUnplayed" + case isPlayed = "IsPlayed" + case isFavorite = "IsFavorite" + case isResumable = "IsResumable" + case likes = "Likes" + case dislikes = "Dislikes" + case isFavoriteOrLikes = "IsFavoriteOrLikes" +} diff --git a/Sources/Entities/JoinGroupRequestDto.swift b/Sources/Entities/JoinGroupRequestDto.swift new file mode 100644 index 000000000..43aae1f1a --- /dev/null +++ b/Sources/Entities/JoinGroupRequestDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class JoinGroupRequestDto. +public struct JoinGroupRequestDto: Codable { + /// Gets or sets the group identifier. + public var groupID: String? + + public init(groupID: String? = nil) { + self.groupID = groupID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.groupID = try values.decodeIfPresent(String.self, forKey: "GroupId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(groupID, forKey: "GroupId") + } +} diff --git a/Sources/Entities/KeepUntil.swift b/Sources/Entities/KeepUntil.swift new file mode 100644 index 000000000..b55471ed4 --- /dev/null +++ b/Sources/Entities/KeepUntil.swift @@ -0,0 +1,16 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum KeepUntil: String, Codable, CaseIterable { + case untilDeleted = "UntilDeleted" + case untilSpaceNeeded = "UntilSpaceNeeded" + case untilWatched = "UntilWatched" + case untilDate = "UntilDate" +} diff --git a/Sources/Entities/LibraryOptionInfoDto.swift b/Sources/Entities/LibraryOptionInfoDto.swift new file mode 100644 index 000000000..4bf981ec2 --- /dev/null +++ b/Sources/Entities/LibraryOptionInfoDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Library option info dto. +public struct LibraryOptionInfoDto: Codable { + /// Gets or sets a value indicating whether default enabled. + public var isDefaultEnabled: Bool? + /// Gets or sets name. + public var name: String? + + public init(isDefaultEnabled: Bool? = nil, name: String? = nil) { + self.isDefaultEnabled = isDefaultEnabled + self.name = name + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isDefaultEnabled = try values.decodeIfPresent(Bool.self, forKey: "DefaultEnabled") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isDefaultEnabled, forKey: "DefaultEnabled") + try values.encodeIfPresent(name, forKey: "Name") + } +} diff --git a/Sources/Entities/LibraryOptions.swift b/Sources/Entities/LibraryOptions.swift new file mode 100644 index 000000000..fc21e17fe --- /dev/null +++ b/Sources/Entities/LibraryOptions.swift @@ -0,0 +1,169 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct LibraryOptions: Codable { + /// An enum representing the options to disable embedded subs. + public var allowEmbeddedSubtitles: EmbeddedSubtitleOptions? + public var automaticRefreshIntervalDays: Int32? + public var isAutomaticallyAddToCollection: Bool? + public var disabledLocalMetadataReaders: [String]? + public var disabledSubtitleFetchers: [String]? + public var enableAutomaticSeriesGrouping: Bool? + public var enableChapterImageExtraction: Bool? + public var enableEmbeddedEpisodeInfos: Bool? + public var enableEmbeddedTitles: Bool? + /// - warning: Deprecated. + public var enableInternetProviders: Bool? + public var enablePhotos: Bool? + public var enableRealtimeMonitor: Bool? + public var isExtractChapterImagesDuringLibraryScan: Bool? + public var localMetadataReaderOrder: [String]? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + public var metadataSavers: [String]? + public var pathInfos: [MediaPathInfo]? + /// Gets or sets the preferred metadata language. + public var preferredMetadataLanguage: String? + public var requirePerfectSubtitleMatch: Bool? + public var isSaveLocalMetadata: Bool? + public var isSaveSubtitlesWithMedia: Bool? + public var seasonZeroDisplayName: String? + public var isSkipSubtitlesIfAudioTrackMatches: Bool? + public var isSkipSubtitlesIfEmbeddedSubtitlesPresent: Bool? + public var subtitleDownloadLanguages: [String]? + public var subtitleFetcherOrder: [String]? + public var typeOptions: [TypeOptions]? + + public init( + allowEmbeddedSubtitles: EmbeddedSubtitleOptions? = nil, + automaticRefreshIntervalDays: Int32? = nil, + isAutomaticallyAddToCollection: Bool? = nil, + disabledLocalMetadataReaders: [String]? = nil, + disabledSubtitleFetchers: [String]? = nil, + enableAutomaticSeriesGrouping: Bool? = nil, + enableChapterImageExtraction: Bool? = nil, + enableEmbeddedEpisodeInfos: Bool? = nil, + enableEmbeddedTitles: Bool? = nil, + enableInternetProviders: Bool? = nil, + enablePhotos: Bool? = nil, + enableRealtimeMonitor: Bool? = nil, + isExtractChapterImagesDuringLibraryScan: Bool? = nil, + localMetadataReaderOrder: [String]? = nil, + metadataCountryCode: String? = nil, + metadataSavers: [String]? = nil, + pathInfos: [MediaPathInfo]? = nil, + preferredMetadataLanguage: String? = nil, + requirePerfectSubtitleMatch: Bool? = nil, + isSaveLocalMetadata: Bool? = nil, + isSaveSubtitlesWithMedia: Bool? = nil, + seasonZeroDisplayName: String? = nil, + isSkipSubtitlesIfAudioTrackMatches: Bool? = nil, + isSkipSubtitlesIfEmbeddedSubtitlesPresent: Bool? = nil, + subtitleDownloadLanguages: [String]? = nil, + subtitleFetcherOrder: [String]? = nil, + typeOptions: [TypeOptions]? = nil + ) { + self.allowEmbeddedSubtitles = allowEmbeddedSubtitles + self.automaticRefreshIntervalDays = automaticRefreshIntervalDays + self.isAutomaticallyAddToCollection = isAutomaticallyAddToCollection + self.disabledLocalMetadataReaders = disabledLocalMetadataReaders + self.disabledSubtitleFetchers = disabledSubtitleFetchers + self.enableAutomaticSeriesGrouping = enableAutomaticSeriesGrouping + self.enableChapterImageExtraction = enableChapterImageExtraction + self.enableEmbeddedEpisodeInfos = enableEmbeddedEpisodeInfos + self.enableEmbeddedTitles = enableEmbeddedTitles + self.enableInternetProviders = enableInternetProviders + self.enablePhotos = enablePhotos + self.enableRealtimeMonitor = enableRealtimeMonitor + self.isExtractChapterImagesDuringLibraryScan = isExtractChapterImagesDuringLibraryScan + self.localMetadataReaderOrder = localMetadataReaderOrder + self.metadataCountryCode = metadataCountryCode + self.metadataSavers = metadataSavers + self.pathInfos = pathInfos + self.preferredMetadataLanguage = preferredMetadataLanguage + self.requirePerfectSubtitleMatch = requirePerfectSubtitleMatch + self.isSaveLocalMetadata = isSaveLocalMetadata + self.isSaveSubtitlesWithMedia = isSaveSubtitlesWithMedia + self.seasonZeroDisplayName = seasonZeroDisplayName + self.isSkipSubtitlesIfAudioTrackMatches = isSkipSubtitlesIfAudioTrackMatches + self.isSkipSubtitlesIfEmbeddedSubtitlesPresent = isSkipSubtitlesIfEmbeddedSubtitlesPresent + self.subtitleDownloadLanguages = subtitleDownloadLanguages + self.subtitleFetcherOrder = subtitleFetcherOrder + self.typeOptions = typeOptions + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.allowEmbeddedSubtitles = try values.decodeIfPresent(EmbeddedSubtitleOptions.self, forKey: "AllowEmbeddedSubtitles") + self.automaticRefreshIntervalDays = try values.decodeIfPresent(Int32.self, forKey: "AutomaticRefreshIntervalDays") + self.isAutomaticallyAddToCollection = try values.decodeIfPresent(Bool.self, forKey: "AutomaticallyAddToCollection") + self.disabledLocalMetadataReaders = try values.decodeIfPresent([String].self, forKey: "DisabledLocalMetadataReaders") + self.disabledSubtitleFetchers = try values.decodeIfPresent([String].self, forKey: "DisabledSubtitleFetchers") + self.enableAutomaticSeriesGrouping = try values.decodeIfPresent(Bool.self, forKey: "EnableAutomaticSeriesGrouping") + self.enableChapterImageExtraction = try values.decodeIfPresent(Bool.self, forKey: "EnableChapterImageExtraction") + self.enableEmbeddedEpisodeInfos = try values.decodeIfPresent(Bool.self, forKey: "EnableEmbeddedEpisodeInfos") + self.enableEmbeddedTitles = try values.decodeIfPresent(Bool.self, forKey: "EnableEmbeddedTitles") + self.enableInternetProviders = try values.decodeIfPresent(Bool.self, forKey: "EnableInternetProviders") + self.enablePhotos = try values.decodeIfPresent(Bool.self, forKey: "EnablePhotos") + self.enableRealtimeMonitor = try values.decodeIfPresent(Bool.self, forKey: "EnableRealtimeMonitor") + self.isExtractChapterImagesDuringLibraryScan = try values.decodeIfPresent( + Bool.self, + forKey: "ExtractChapterImagesDuringLibraryScan" + ) + self.localMetadataReaderOrder = try values.decodeIfPresent([String].self, forKey: "LocalMetadataReaderOrder") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataSavers = try values.decodeIfPresent([String].self, forKey: "MetadataSavers") + self.pathInfos = try values.decodeIfPresent([MediaPathInfo].self, forKey: "PathInfos") + self.preferredMetadataLanguage = try values.decodeIfPresent(String.self, forKey: "PreferredMetadataLanguage") + self.requirePerfectSubtitleMatch = try values.decodeIfPresent(Bool.self, forKey: "RequirePerfectSubtitleMatch") + self.isSaveLocalMetadata = try values.decodeIfPresent(Bool.self, forKey: "SaveLocalMetadata") + self.isSaveSubtitlesWithMedia = try values.decodeIfPresent(Bool.self, forKey: "SaveSubtitlesWithMedia") + self.seasonZeroDisplayName = try values.decodeIfPresent(String.self, forKey: "SeasonZeroDisplayName") + self.isSkipSubtitlesIfAudioTrackMatches = try values.decodeIfPresent(Bool.self, forKey: "SkipSubtitlesIfAudioTrackMatches") + self.isSkipSubtitlesIfEmbeddedSubtitlesPresent = try values.decodeIfPresent( + Bool.self, + forKey: "SkipSubtitlesIfEmbeddedSubtitlesPresent" + ) + self.subtitleDownloadLanguages = try values.decodeIfPresent([String].self, forKey: "SubtitleDownloadLanguages") + self.subtitleFetcherOrder = try values.decodeIfPresent([String].self, forKey: "SubtitleFetcherOrder") + self.typeOptions = try values.decodeIfPresent([TypeOptions].self, forKey: "TypeOptions") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(allowEmbeddedSubtitles, forKey: "AllowEmbeddedSubtitles") + try values.encodeIfPresent(automaticRefreshIntervalDays, forKey: "AutomaticRefreshIntervalDays") + try values.encodeIfPresent(isAutomaticallyAddToCollection, forKey: "AutomaticallyAddToCollection") + try values.encodeIfPresent(disabledLocalMetadataReaders, forKey: "DisabledLocalMetadataReaders") + try values.encodeIfPresent(disabledSubtitleFetchers, forKey: "DisabledSubtitleFetchers") + try values.encodeIfPresent(enableAutomaticSeriesGrouping, forKey: "EnableAutomaticSeriesGrouping") + try values.encodeIfPresent(enableChapterImageExtraction, forKey: "EnableChapterImageExtraction") + try values.encodeIfPresent(enableEmbeddedEpisodeInfos, forKey: "EnableEmbeddedEpisodeInfos") + try values.encodeIfPresent(enableEmbeddedTitles, forKey: "EnableEmbeddedTitles") + try values.encodeIfPresent(enableInternetProviders, forKey: "EnableInternetProviders") + try values.encodeIfPresent(enablePhotos, forKey: "EnablePhotos") + try values.encodeIfPresent(enableRealtimeMonitor, forKey: "EnableRealtimeMonitor") + try values.encodeIfPresent(isExtractChapterImagesDuringLibraryScan, forKey: "ExtractChapterImagesDuringLibraryScan") + try values.encodeIfPresent(localMetadataReaderOrder, forKey: "LocalMetadataReaderOrder") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataSavers, forKey: "MetadataSavers") + try values.encodeIfPresent(pathInfos, forKey: "PathInfos") + try values.encodeIfPresent(preferredMetadataLanguage, forKey: "PreferredMetadataLanguage") + try values.encodeIfPresent(requirePerfectSubtitleMatch, forKey: "RequirePerfectSubtitleMatch") + try values.encodeIfPresent(isSaveLocalMetadata, forKey: "SaveLocalMetadata") + try values.encodeIfPresent(isSaveSubtitlesWithMedia, forKey: "SaveSubtitlesWithMedia") + try values.encodeIfPresent(seasonZeroDisplayName, forKey: "SeasonZeroDisplayName") + try values.encodeIfPresent(isSkipSubtitlesIfAudioTrackMatches, forKey: "SkipSubtitlesIfAudioTrackMatches") + try values.encodeIfPresent(isSkipSubtitlesIfEmbeddedSubtitlesPresent, forKey: "SkipSubtitlesIfEmbeddedSubtitlesPresent") + try values.encodeIfPresent(subtitleDownloadLanguages, forKey: "SubtitleDownloadLanguages") + try values.encodeIfPresent(subtitleFetcherOrder, forKey: "SubtitleFetcherOrder") + try values.encodeIfPresent(typeOptions, forKey: "TypeOptions") + } +} diff --git a/Sources/Entities/LibraryOptionsResultDto.swift b/Sources/Entities/LibraryOptionsResultDto.swift new file mode 100644 index 000000000..553e1a2f1 --- /dev/null +++ b/Sources/Entities/LibraryOptionsResultDto.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Library options result dto. +public struct LibraryOptionsResultDto: Codable { + /// Gets or sets the metadata readers. + public var metadataReaders: [LibraryOptionInfoDto]? + /// Gets or sets the metadata savers. + public var metadataSavers: [LibraryOptionInfoDto]? + /// Gets or sets the subtitle fetchers. + public var subtitleFetchers: [LibraryOptionInfoDto]? + /// Gets or sets the type options. + public var typeOptions: [LibraryTypeOptionsDto]? + + public init( + metadataReaders: [LibraryOptionInfoDto]? = nil, + metadataSavers: [LibraryOptionInfoDto]? = nil, + subtitleFetchers: [LibraryOptionInfoDto]? = nil, + typeOptions: [LibraryTypeOptionsDto]? = nil + ) { + self.metadataReaders = metadataReaders + self.metadataSavers = metadataSavers + self.subtitleFetchers = subtitleFetchers + self.typeOptions = typeOptions + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.metadataReaders = try values.decodeIfPresent([LibraryOptionInfoDto].self, forKey: "MetadataReaders") + self.metadataSavers = try values.decodeIfPresent([LibraryOptionInfoDto].self, forKey: "MetadataSavers") + self.subtitleFetchers = try values.decodeIfPresent([LibraryOptionInfoDto].self, forKey: "SubtitleFetchers") + self.typeOptions = try values.decodeIfPresent([LibraryTypeOptionsDto].self, forKey: "TypeOptions") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(metadataReaders, forKey: "MetadataReaders") + try values.encodeIfPresent(metadataSavers, forKey: "MetadataSavers") + try values.encodeIfPresent(subtitleFetchers, forKey: "SubtitleFetchers") + try values.encodeIfPresent(typeOptions, forKey: "TypeOptions") + } +} diff --git a/Sources/Entities/LibraryTypeOptionsDto.swift b/Sources/Entities/LibraryTypeOptionsDto.swift new file mode 100644 index 000000000..d71eb38e5 --- /dev/null +++ b/Sources/Entities/LibraryTypeOptionsDto.swift @@ -0,0 +1,55 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Library type options dto. +public struct LibraryTypeOptionsDto: Codable { + /// Gets or sets the default image options. + public var defaultImageOptions: [ImageOption]? + /// Gets or sets the image fetchers. + public var imageFetchers: [LibraryOptionInfoDto]? + /// Gets or sets the metadata fetchers. + public var metadataFetchers: [LibraryOptionInfoDto]? + /// Gets or sets the supported image types. + public var supportedImageTypes: [ImageType]? + /// Gets or sets the type. + public var type: String? + + public init( + defaultImageOptions: [ImageOption]? = nil, + imageFetchers: [LibraryOptionInfoDto]? = nil, + metadataFetchers: [LibraryOptionInfoDto]? = nil, + supportedImageTypes: [ImageType]? = nil, + type: String? = nil + ) { + self.defaultImageOptions = defaultImageOptions + self.imageFetchers = imageFetchers + self.metadataFetchers = metadataFetchers + self.supportedImageTypes = supportedImageTypes + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.defaultImageOptions = try values.decodeIfPresent([ImageOption].self, forKey: "DefaultImageOptions") + self.imageFetchers = try values.decodeIfPresent([LibraryOptionInfoDto].self, forKey: "ImageFetchers") + self.metadataFetchers = try values.decodeIfPresent([LibraryOptionInfoDto].self, forKey: "MetadataFetchers") + self.supportedImageTypes = try values.decodeIfPresent([ImageType].self, forKey: "SupportedImageTypes") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(defaultImageOptions, forKey: "DefaultImageOptions") + try values.encodeIfPresent(imageFetchers, forKey: "ImageFetchers") + try values.encodeIfPresent(metadataFetchers, forKey: "MetadataFetchers") + try values.encodeIfPresent(supportedImageTypes, forKey: "SupportedImageTypes") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/LibraryUpdateInfo.swift b/Sources/Entities/LibraryUpdateInfo.swift new file mode 100644 index 000000000..3be86af19 --- /dev/null +++ b/Sources/Entities/LibraryUpdateInfo.swift @@ -0,0 +1,65 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class LibraryUpdateInfo. +public struct LibraryUpdateInfo: Codable { + public var collectionFolders: [String]? + /// Gets or sets the folders added to. + public var foldersAddedTo: [String]? + /// Gets or sets the folders removed from. + public var foldersRemovedFrom: [String]? + public var isEmpty: Bool? + /// Gets or sets the items added. + public var itemsAdded: [String]? + /// Gets or sets the items removed. + public var itemsRemoved: [String]? + /// Gets or sets the items updated. + public var itemsUpdated: [String]? + + public init( + collectionFolders: [String]? = nil, + foldersAddedTo: [String]? = nil, + foldersRemovedFrom: [String]? = nil, + isEmpty: Bool? = nil, + itemsAdded: [String]? = nil, + itemsRemoved: [String]? = nil, + itemsUpdated: [String]? = nil + ) { + self.collectionFolders = collectionFolders + self.foldersAddedTo = foldersAddedTo + self.foldersRemovedFrom = foldersRemovedFrom + self.isEmpty = isEmpty + self.itemsAdded = itemsAdded + self.itemsRemoved = itemsRemoved + self.itemsUpdated = itemsUpdated + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.collectionFolders = try values.decodeIfPresent([String].self, forKey: "CollectionFolders") + self.foldersAddedTo = try values.decodeIfPresent([String].self, forKey: "FoldersAddedTo") + self.foldersRemovedFrom = try values.decodeIfPresent([String].self, forKey: "FoldersRemovedFrom") + self.isEmpty = try values.decodeIfPresent(Bool.self, forKey: "IsEmpty") + self.itemsAdded = try values.decodeIfPresent([String].self, forKey: "ItemsAdded") + self.itemsRemoved = try values.decodeIfPresent([String].self, forKey: "ItemsRemoved") + self.itemsUpdated = try values.decodeIfPresent([String].self, forKey: "ItemsUpdated") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(collectionFolders, forKey: "CollectionFolders") + try values.encodeIfPresent(foldersAddedTo, forKey: "FoldersAddedTo") + try values.encodeIfPresent(foldersRemovedFrom, forKey: "FoldersRemovedFrom") + try values.encodeIfPresent(isEmpty, forKey: "IsEmpty") + try values.encodeIfPresent(itemsAdded, forKey: "ItemsAdded") + try values.encodeIfPresent(itemsRemoved, forKey: "ItemsRemoved") + try values.encodeIfPresent(itemsUpdated, forKey: "ItemsUpdated") + } +} diff --git a/Sources/Entities/ListingsProviderInfo.swift b/Sources/Entities/ListingsProviderInfo.swift new file mode 100644 index 000000000..d6ac2555b --- /dev/null +++ b/Sources/Entities/ListingsProviderInfo.swift @@ -0,0 +1,114 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ListingsProviderInfo: Codable, Identifiable { + public var channelMappings: [NameValuePair]? + public var country: String? + public var enableAllTuners: Bool? + public var enabledTuners: [String]? + public var id: String? + public var kidsCategories: [String]? + public var listingsID: String? + public var movieCategories: [String]? + public var moviePrefix: String? + public var newsCategories: [String]? + public var password: String? + public var path: String? + public var preferredLanguage: String? + public var sportsCategories: [String]? + public var type: String? + public var userAgent: String? + public var username: String? + public var zipCode: String? + + public init( + channelMappings: [NameValuePair]? = nil, + country: String? = nil, + enableAllTuners: Bool? = nil, + enabledTuners: [String]? = nil, + id: String? = nil, + kidsCategories: [String]? = nil, + listingsID: String? = nil, + movieCategories: [String]? = nil, + moviePrefix: String? = nil, + newsCategories: [String]? = nil, + password: String? = nil, + path: String? = nil, + preferredLanguage: String? = nil, + sportsCategories: [String]? = nil, + type: String? = nil, + userAgent: String? = nil, + username: String? = nil, + zipCode: String? = nil + ) { + self.channelMappings = channelMappings + self.country = country + self.enableAllTuners = enableAllTuners + self.enabledTuners = enabledTuners + self.id = id + self.kidsCategories = kidsCategories + self.listingsID = listingsID + self.movieCategories = movieCategories + self.moviePrefix = moviePrefix + self.newsCategories = newsCategories + self.password = password + self.path = path + self.preferredLanguage = preferredLanguage + self.sportsCategories = sportsCategories + self.type = type + self.userAgent = userAgent + self.username = username + self.zipCode = zipCode + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.channelMappings = try values.decodeIfPresent([NameValuePair].self, forKey: "ChannelMappings") + self.country = try values.decodeIfPresent(String.self, forKey: "Country") + self.enableAllTuners = try values.decodeIfPresent(Bool.self, forKey: "EnableAllTuners") + self.enabledTuners = try values.decodeIfPresent([String].self, forKey: "EnabledTuners") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.kidsCategories = try values.decodeIfPresent([String].self, forKey: "KidsCategories") + self.listingsID = try values.decodeIfPresent(String.self, forKey: "ListingsId") + self.movieCategories = try values.decodeIfPresent([String].self, forKey: "MovieCategories") + self.moviePrefix = try values.decodeIfPresent(String.self, forKey: "MoviePrefix") + self.newsCategories = try values.decodeIfPresent([String].self, forKey: "NewsCategories") + self.password = try values.decodeIfPresent(String.self, forKey: "Password") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.preferredLanguage = try values.decodeIfPresent(String.self, forKey: "PreferredLanguage") + self.sportsCategories = try values.decodeIfPresent([String].self, forKey: "SportsCategories") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + self.userAgent = try values.decodeIfPresent(String.self, forKey: "UserAgent") + self.username = try values.decodeIfPresent(String.self, forKey: "Username") + self.zipCode = try values.decodeIfPresent(String.self, forKey: "ZipCode") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(channelMappings, forKey: "ChannelMappings") + try values.encodeIfPresent(country, forKey: "Country") + try values.encodeIfPresent(enableAllTuners, forKey: "EnableAllTuners") + try values.encodeIfPresent(enabledTuners, forKey: "EnabledTuners") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(kidsCategories, forKey: "KidsCategories") + try values.encodeIfPresent(listingsID, forKey: "ListingsId") + try values.encodeIfPresent(movieCategories, forKey: "MovieCategories") + try values.encodeIfPresent(moviePrefix, forKey: "MoviePrefix") + try values.encodeIfPresent(newsCategories, forKey: "NewsCategories") + try values.encodeIfPresent(password, forKey: "Password") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(preferredLanguage, forKey: "PreferredLanguage") + try values.encodeIfPresent(sportsCategories, forKey: "SportsCategories") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(userAgent, forKey: "UserAgent") + try values.encodeIfPresent(username, forKey: "Username") + try values.encodeIfPresent(zipCode, forKey: "ZipCode") + } +} diff --git a/Sources/Entities/LiveStreamResponse.swift b/Sources/Entities/LiveStreamResponse.swift new file mode 100644 index 000000000..11e75c1a2 --- /dev/null +++ b/Sources/Entities/LiveStreamResponse.swift @@ -0,0 +1,27 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct LiveStreamResponse: Codable { + public var mediaSource: MediaSourceInfo? + + public init(mediaSource: MediaSourceInfo? = nil) { + self.mediaSource = mediaSource + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.mediaSource = try values.decodeIfPresent(MediaSourceInfo.self, forKey: "MediaSource") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(mediaSource, forKey: "MediaSource") + } +} diff --git a/Sources/Entities/LiveTvInfo.swift b/Sources/Entities/LiveTvInfo.swift new file mode 100644 index 000000000..439feb2b5 --- /dev/null +++ b/Sources/Entities/LiveTvInfo.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct LiveTvInfo: Codable { + /// Gets or sets the enabled users. + public var enabledUsers: [String]? + /// Gets or sets a value indicating whether this instance is enabled. + public var isEnabled: Bool? + /// Gets or sets the services. + public var services: [LiveTvServiceInfo]? + + public init(enabledUsers: [String]? = nil, isEnabled: Bool? = nil, services: [LiveTvServiceInfo]? = nil) { + self.enabledUsers = enabledUsers + self.isEnabled = isEnabled + self.services = services + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.enabledUsers = try values.decodeIfPresent([String].self, forKey: "EnabledUsers") + self.isEnabled = try values.decodeIfPresent(Bool.self, forKey: "IsEnabled") + self.services = try values.decodeIfPresent([LiveTvServiceInfo].self, forKey: "Services") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(enabledUsers, forKey: "EnabledUsers") + try values.encodeIfPresent(isEnabled, forKey: "IsEnabled") + try values.encodeIfPresent(services, forKey: "Services") + } +} diff --git a/Sources/Entities/LiveTvOptions.swift b/Sources/Entities/LiveTvOptions.swift new file mode 100644 index 000000000..0f483ed11 --- /dev/null +++ b/Sources/Entities/LiveTvOptions.swift @@ -0,0 +1,92 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct LiveTvOptions: Codable { + public var enableOriginalAudioWithEncodedRecordings: Bool? + public var enableRecordingSubfolders: Bool? + public var guideDays: Int32? + public var listingProviders: [ListingsProviderInfo]? + public var mediaLocationsCreated: [String]? + public var movieRecordingPath: String? + public var postPaddingSeconds: Int32? + public var prePaddingSeconds: Int32? + public var recordingPath: String? + public var recordingPostProcessor: String? + public var recordingPostProcessorArguments: String? + public var seriesRecordingPath: String? + public var tunerHosts: [TunerHostInfo]? + + public init( + enableOriginalAudioWithEncodedRecordings: Bool? = nil, + enableRecordingSubfolders: Bool? = nil, + guideDays: Int32? = nil, + listingProviders: [ListingsProviderInfo]? = nil, + mediaLocationsCreated: [String]? = nil, + movieRecordingPath: String? = nil, + postPaddingSeconds: Int32? = nil, + prePaddingSeconds: Int32? = nil, + recordingPath: String? = nil, + recordingPostProcessor: String? = nil, + recordingPostProcessorArguments: String? = nil, + seriesRecordingPath: String? = nil, + tunerHosts: [TunerHostInfo]? = nil + ) { + self.enableOriginalAudioWithEncodedRecordings = enableOriginalAudioWithEncodedRecordings + self.enableRecordingSubfolders = enableRecordingSubfolders + self.guideDays = guideDays + self.listingProviders = listingProviders + self.mediaLocationsCreated = mediaLocationsCreated + self.movieRecordingPath = movieRecordingPath + self.postPaddingSeconds = postPaddingSeconds + self.prePaddingSeconds = prePaddingSeconds + self.recordingPath = recordingPath + self.recordingPostProcessor = recordingPostProcessor + self.recordingPostProcessorArguments = recordingPostProcessorArguments + self.seriesRecordingPath = seriesRecordingPath + self.tunerHosts = tunerHosts + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.enableOriginalAudioWithEncodedRecordings = try values.decodeIfPresent( + Bool.self, + forKey: "EnableOriginalAudioWithEncodedRecordings" + ) + self.enableRecordingSubfolders = try values.decodeIfPresent(Bool.self, forKey: "EnableRecordingSubfolders") + self.guideDays = try values.decodeIfPresent(Int32.self, forKey: "GuideDays") + self.listingProviders = try values.decodeIfPresent([ListingsProviderInfo].self, forKey: "ListingProviders") + self.mediaLocationsCreated = try values.decodeIfPresent([String].self, forKey: "MediaLocationsCreated") + self.movieRecordingPath = try values.decodeIfPresent(String.self, forKey: "MovieRecordingPath") + self.postPaddingSeconds = try values.decodeIfPresent(Int32.self, forKey: "PostPaddingSeconds") + self.prePaddingSeconds = try values.decodeIfPresent(Int32.self, forKey: "PrePaddingSeconds") + self.recordingPath = try values.decodeIfPresent(String.self, forKey: "RecordingPath") + self.recordingPostProcessor = try values.decodeIfPresent(String.self, forKey: "RecordingPostProcessor") + self.recordingPostProcessorArguments = try values.decodeIfPresent(String.self, forKey: "RecordingPostProcessorArguments") + self.seriesRecordingPath = try values.decodeIfPresent(String.self, forKey: "SeriesRecordingPath") + self.tunerHosts = try values.decodeIfPresent([TunerHostInfo].self, forKey: "TunerHosts") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(enableOriginalAudioWithEncodedRecordings, forKey: "EnableOriginalAudioWithEncodedRecordings") + try values.encodeIfPresent(enableRecordingSubfolders, forKey: "EnableRecordingSubfolders") + try values.encodeIfPresent(guideDays, forKey: "GuideDays") + try values.encodeIfPresent(listingProviders, forKey: "ListingProviders") + try values.encodeIfPresent(mediaLocationsCreated, forKey: "MediaLocationsCreated") + try values.encodeIfPresent(movieRecordingPath, forKey: "MovieRecordingPath") + try values.encodeIfPresent(postPaddingSeconds, forKey: "PostPaddingSeconds") + try values.encodeIfPresent(prePaddingSeconds, forKey: "PrePaddingSeconds") + try values.encodeIfPresent(recordingPath, forKey: "RecordingPath") + try values.encodeIfPresent(recordingPostProcessor, forKey: "RecordingPostProcessor") + try values.encodeIfPresent(recordingPostProcessorArguments, forKey: "RecordingPostProcessorArguments") + try values.encodeIfPresent(seriesRecordingPath, forKey: "SeriesRecordingPath") + try values.encodeIfPresent(tunerHosts, forKey: "TunerHosts") + } +} diff --git a/Sources/Entities/LiveTvServiceInfo.swift b/Sources/Entities/LiveTvServiceInfo.swift new file mode 100644 index 000000000..d0681fda3 --- /dev/null +++ b/Sources/Entities/LiveTvServiceInfo.swift @@ -0,0 +1,72 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class ServiceInfo. +public struct LiveTvServiceInfo: Codable { + /// Gets or sets a value indicating whether this instance has update available. + public var hasUpdateAvailable: Bool? + /// Gets or sets the home page URL. + public var homePageURL: String? + /// Gets or sets a value indicating whether this instance is visible. + public var isVisible: Bool? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the status. + public var status: LiveTvServiceStatus? + /// Gets or sets the status message. + public var statusMessage: String? + public var tuners: [String]? + /// Gets or sets the version. + public var version: String? + + public init( + hasUpdateAvailable: Bool? = nil, + homePageURL: String? = nil, + isVisible: Bool? = nil, + name: String? = nil, + status: LiveTvServiceStatus? = nil, + statusMessage: String? = nil, + tuners: [String]? = nil, + version: String? = nil + ) { + self.hasUpdateAvailable = hasUpdateAvailable + self.homePageURL = homePageURL + self.isVisible = isVisible + self.name = name + self.status = status + self.statusMessage = statusMessage + self.tuners = tuners + self.version = version + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.hasUpdateAvailable = try values.decodeIfPresent(Bool.self, forKey: "HasUpdateAvailable") + self.homePageURL = try values.decodeIfPresent(String.self, forKey: "HomePageUrl") + self.isVisible = try values.decodeIfPresent(Bool.self, forKey: "IsVisible") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.status = try values.decodeIfPresent(LiveTvServiceStatus.self, forKey: "Status") + self.statusMessage = try values.decodeIfPresent(String.self, forKey: "StatusMessage") + self.tuners = try values.decodeIfPresent([String].self, forKey: "Tuners") + self.version = try values.decodeIfPresent(String.self, forKey: "Version") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(hasUpdateAvailable, forKey: "HasUpdateAvailable") + try values.encodeIfPresent(homePageURL, forKey: "HomePageUrl") + try values.encodeIfPresent(isVisible, forKey: "IsVisible") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(status, forKey: "Status") + try values.encodeIfPresent(statusMessage, forKey: "StatusMessage") + try values.encodeIfPresent(tuners, forKey: "Tuners") + try values.encodeIfPresent(version, forKey: "Version") + } +} diff --git a/Sources/Entities/LiveTvServiceStatus.swift b/Sources/Entities/LiveTvServiceStatus.swift new file mode 100644 index 000000000..fb2d8abe4 --- /dev/null +++ b/Sources/Entities/LiveTvServiceStatus.swift @@ -0,0 +1,14 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum LiveTvServiceStatus: String, Codable, CaseIterable { + case ok = "Ok" + case unavailable = "Unavailable" +} diff --git a/Sources/Entities/LocalizationOption.swift b/Sources/Entities/LocalizationOption.swift new file mode 100644 index 000000000..af6a3a93f --- /dev/null +++ b/Sources/Entities/LocalizationOption.swift @@ -0,0 +1,31 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct LocalizationOption: Codable { + public var name: String? + public var value: String? + + public init(name: String? = nil, value: String? = nil) { + self.name = name + self.value = value + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.value = try values.decodeIfPresent(String.self, forKey: "Value") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(value, forKey: "Value") + } +} diff --git a/Sources/Entities/LocationType.swift b/Sources/Entities/LocationType.swift new file mode 100644 index 000000000..f9915d16d --- /dev/null +++ b/Sources/Entities/LocationType.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum LocationType. +public enum LocationType: String, Codable, CaseIterable { + case fileSystem = "FileSystem" + case remote = "Remote" + case virtual = "Virtual" + case offline = "Offline" +} diff --git a/Sources/Entities/LogFile.swift b/Sources/Entities/LogFile.swift new file mode 100644 index 000000000..bd0e0931f --- /dev/null +++ b/Sources/Entities/LogFile.swift @@ -0,0 +1,43 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct LogFile: Codable { + /// Gets or sets the date created. + public var dateCreated: Date? + /// Gets or sets the date modified. + public var dateModified: Date? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the size. + public var size: Int64? + + public init(dateCreated: Date? = nil, dateModified: Date? = nil, name: String? = nil, size: Int64? = nil) { + self.dateCreated = dateCreated + self.dateModified = dateModified + self.name = name + self.size = size + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.dateCreated = try values.decodeIfPresent(Date.self, forKey: "DateCreated") + self.dateModified = try values.decodeIfPresent(Date.self, forKey: "DateModified") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.size = try values.decodeIfPresent(Int64.self, forKey: "Size") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(dateCreated, forKey: "DateCreated") + try values.encodeIfPresent(dateModified, forKey: "DateModified") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(size, forKey: "Size") + } +} diff --git a/Sources/Entities/LogLevel.swift b/Sources/Entities/LogLevel.swift new file mode 100644 index 000000000..cbf41c522 --- /dev/null +++ b/Sources/Entities/LogLevel.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum LogLevel: String, Codable, CaseIterable { + case trace = "Trace" + case debug = "Debug" + case information = "Information" + case warning = "Warning" + case error = "Error" + case critical = "Critical" + case none = "None" +} diff --git a/Sources/Entities/MediaAttachment.swift b/Sources/Entities/MediaAttachment.swift new file mode 100644 index 000000000..4eb25909d --- /dev/null +++ b/Sources/Entities/MediaAttachment.swift @@ -0,0 +1,67 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class MediaAttachment. +public struct MediaAttachment: Codable { + /// Gets or sets the codec. + public var codec: String? + /// Gets or sets the codec tag. + public var codecTag: String? + /// Gets or sets the comment. + public var comment: String? + /// Gets or sets the delivery URL. + public var deliveryURL: String? + /// Gets or sets the filename. + public var fileName: String? + /// Gets or sets the index. + public var index: Int32? + /// Gets or sets the MIME type. + public var mimeType: String? + + public init( + codec: String? = nil, + codecTag: String? = nil, + comment: String? = nil, + deliveryURL: String? = nil, + fileName: String? = nil, + index: Int32? = nil, + mimeType: String? = nil + ) { + self.codec = codec + self.codecTag = codecTag + self.comment = comment + self.deliveryURL = deliveryURL + self.fileName = fileName + self.index = index + self.mimeType = mimeType + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.codec = try values.decodeIfPresent(String.self, forKey: "Codec") + self.codecTag = try values.decodeIfPresent(String.self, forKey: "CodecTag") + self.comment = try values.decodeIfPresent(String.self, forKey: "Comment") + self.deliveryURL = try values.decodeIfPresent(String.self, forKey: "DeliveryUrl") + self.fileName = try values.decodeIfPresent(String.self, forKey: "FileName") + self.index = try values.decodeIfPresent(Int32.self, forKey: "Index") + self.mimeType = try values.decodeIfPresent(String.self, forKey: "MimeType") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(codec, forKey: "Codec") + try values.encodeIfPresent(codecTag, forKey: "CodecTag") + try values.encodeIfPresent(comment, forKey: "Comment") + try values.encodeIfPresent(deliveryURL, forKey: "DeliveryUrl") + try values.encodeIfPresent(fileName, forKey: "FileName") + try values.encodeIfPresent(index, forKey: "Index") + try values.encodeIfPresent(mimeType, forKey: "MimeType") + } +} diff --git a/Sources/Entities/MediaEncoderPathDto.swift b/Sources/Entities/MediaEncoderPathDto.swift new file mode 100644 index 000000000..b0b7a3e57 --- /dev/null +++ b/Sources/Entities/MediaEncoderPathDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Media Encoder Path Dto. +public struct MediaEncoderPathDto: Codable { + /// Gets or sets media encoder path. + public var path: String? + /// Gets or sets media encoder path type. + public var pathType: String? + + public init(path: String? = nil, pathType: String? = nil) { + self.path = path + self.pathType = pathType + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.pathType = try values.decodeIfPresent(String.self, forKey: "PathType") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(pathType, forKey: "PathType") + } +} diff --git a/Sources/Entities/MediaPathDto.swift b/Sources/Entities/MediaPathDto.swift new file mode 100644 index 000000000..789366579 --- /dev/null +++ b/Sources/Entities/MediaPathDto.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Media Path dto. +public struct MediaPathDto: Codable { + /// Gets or sets the name of the library. + public var name: String + /// Gets or sets the path to add. + public var path: String? + /// Gets or sets the path info. + public var pathInfo: MediaPathInfo? + + public init(name: String, path: String? = nil, pathInfo: MediaPathInfo? = nil) { + self.name = name + self.path = path + self.pathInfo = pathInfo + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decode(String.self, forKey: "Name") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.pathInfo = try values.decodeIfPresent(MediaPathInfo.self, forKey: "PathInfo") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encode(name, forKey: "Name") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(pathInfo, forKey: "PathInfo") + } +} diff --git a/Sources/Entities/MediaPathInfo.swift b/Sources/Entities/MediaPathInfo.swift new file mode 100644 index 000000000..ead7d55e8 --- /dev/null +++ b/Sources/Entities/MediaPathInfo.swift @@ -0,0 +1,31 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct MediaPathInfo: Codable { + public var networkPath: String? + public var path: String? + + public init(networkPath: String? = nil, path: String? = nil) { + self.networkPath = networkPath + self.path = path + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.networkPath = try values.decodeIfPresent(String.self, forKey: "NetworkPath") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(networkPath, forKey: "NetworkPath") + try values.encodeIfPresent(path, forKey: "Path") + } +} diff --git a/Sources/Entities/MediaProtocol.swift b/Sources/Entities/MediaProtocol.swift new file mode 100644 index 000000000..66894bc1f --- /dev/null +++ b/Sources/Entities/MediaProtocol.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum MediaProtocol: String, Codable, CaseIterable { + case file = "File" + case http = "Http" + case rtmp = "Rtmp" + case rtsp = "Rtsp" + case udp = "Udp" + case rtp = "Rtp" + case ftp = "Ftp" +} diff --git a/Sources/Entities/MediaSourceInfo.swift b/Sources/Entities/MediaSourceInfo.swift new file mode 100644 index 000000000..80cad7828 --- /dev/null +++ b/Sources/Entities/MediaSourceInfo.swift @@ -0,0 +1,237 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct MediaSourceInfo: Codable, Identifiable { + public var analyzeDurationMs: Int32? + public var bitrate: Int32? + public var bufferMs: Int32? + public var container: String? + public var defaultAudioStreamIndex: Int32? + public var defaultSubtitleStreamIndex: Int32? + public var eTag: String? + public var encoderPath: String? + public var encoderProtocol: MediaProtocol? + public var formats: [String]? + public var isGenPtsInput: Bool? + public var id: String? + public var isIgnoreDts: Bool? + public var isIgnoreIndex: Bool? + public var isInfiniteStream: Bool? + /// Gets or sets a value indicating whether the media is remote. + /// + /// Differentiate internet url vs local network. + public var isRemote: Bool? + public var isoType: IsoType? + public var liveStreamID: String? + public var mediaAttachments: [MediaAttachment]? + public var mediaStreams: [MediaStream]? + public var name: String? + public var openToken: String? + public var path: String? + public var `protocol`: MediaProtocol? + public var isReadAtNativeFramerate: Bool? + public var requiredHTTPHeaders: [String: String]? + public var requiresClosing: Bool? + public var requiresLooping: Bool? + public var requiresOpening: Bool? + public var runTimeTicks: Int64? + public var size: Int64? + public var isSupportsDirectPlay: Bool? + public var isSupportsDirectStream: Bool? + public var isSupportsProbing: Bool? + public var isSupportsTranscoding: Bool? + public var timestamp: TransportStreamTimestamp? + public var transcodingContainer: String? + public var transcodingSubProtocol: String? + public var transcodingURL: String? + public var type: MediaSourceType? + public var video3DFormat: Video3DFormat? + public var videoType: VideoType? + + public init( + analyzeDurationMs: Int32? = nil, + bitrate: Int32? = nil, + bufferMs: Int32? = nil, + container: String? = nil, + defaultAudioStreamIndex: Int32? = nil, + defaultSubtitleStreamIndex: Int32? = nil, + eTag: String? = nil, + encoderPath: String? = nil, + encoderProtocol: MediaProtocol? = nil, + formats: [String]? = nil, + isGenPtsInput: Bool? = nil, + id: String? = nil, + isIgnoreDts: Bool? = nil, + isIgnoreIndex: Bool? = nil, + isInfiniteStream: Bool? = nil, + isRemote: Bool? = nil, + isoType: IsoType? = nil, + liveStreamID: String? = nil, + mediaAttachments: [MediaAttachment]? = nil, + mediaStreams: [MediaStream]? = nil, + name: String? = nil, + openToken: String? = nil, + path: String? = nil, + protocol: MediaProtocol? = nil, + isReadAtNativeFramerate: Bool? = nil, + requiredHTTPHeaders: [String: String]? = nil, + requiresClosing: Bool? = nil, + requiresLooping: Bool? = nil, + requiresOpening: Bool? = nil, + runTimeTicks: Int64? = nil, + size: Int64? = nil, + isSupportsDirectPlay: Bool? = nil, + isSupportsDirectStream: Bool? = nil, + isSupportsProbing: Bool? = nil, + isSupportsTranscoding: Bool? = nil, + timestamp: TransportStreamTimestamp? = nil, + transcodingContainer: String? = nil, + transcodingSubProtocol: String? = nil, + transcodingURL: String? = nil, + type: MediaSourceType? = nil, + video3DFormat: Video3DFormat? = nil, + videoType: VideoType? = nil + ) { + self.analyzeDurationMs = analyzeDurationMs + self.bitrate = bitrate + self.bufferMs = bufferMs + self.container = container + self.defaultAudioStreamIndex = defaultAudioStreamIndex + self.defaultSubtitleStreamIndex = defaultSubtitleStreamIndex + self.eTag = eTag + self.encoderPath = encoderPath + self.encoderProtocol = encoderProtocol + self.formats = formats + self.isGenPtsInput = isGenPtsInput + self.id = id + self.isIgnoreDts = isIgnoreDts + self.isIgnoreIndex = isIgnoreIndex + self.isInfiniteStream = isInfiniteStream + self.isRemote = isRemote + self.isoType = isoType + self.liveStreamID = liveStreamID + self.mediaAttachments = mediaAttachments + self.mediaStreams = mediaStreams + self.name = name + self.openToken = openToken + self.path = path + self.protocol = `protocol` + self.isReadAtNativeFramerate = isReadAtNativeFramerate + self.requiredHTTPHeaders = requiredHTTPHeaders + self.requiresClosing = requiresClosing + self.requiresLooping = requiresLooping + self.requiresOpening = requiresOpening + self.runTimeTicks = runTimeTicks + self.size = size + self.isSupportsDirectPlay = isSupportsDirectPlay + self.isSupportsDirectStream = isSupportsDirectStream + self.isSupportsProbing = isSupportsProbing + self.isSupportsTranscoding = isSupportsTranscoding + self.timestamp = timestamp + self.transcodingContainer = transcodingContainer + self.transcodingSubProtocol = transcodingSubProtocol + self.transcodingURL = transcodingURL + self.type = type + self.video3DFormat = video3DFormat + self.videoType = videoType + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.analyzeDurationMs = try values.decodeIfPresent(Int32.self, forKey: "AnalyzeDurationMs") + self.bitrate = try values.decodeIfPresent(Int32.self, forKey: "Bitrate") + self.bufferMs = try values.decodeIfPresent(Int32.self, forKey: "BufferMs") + self.container = try values.decodeIfPresent(String.self, forKey: "Container") + self.defaultAudioStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "DefaultAudioStreamIndex") + self.defaultSubtitleStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "DefaultSubtitleStreamIndex") + self.eTag = try values.decodeIfPresent(String.self, forKey: "ETag") + self.encoderPath = try values.decodeIfPresent(String.self, forKey: "EncoderPath") + self.encoderProtocol = try values.decodeIfPresent(MediaProtocol.self, forKey: "EncoderProtocol") + self.formats = try values.decodeIfPresent([String].self, forKey: "Formats") + self.isGenPtsInput = try values.decodeIfPresent(Bool.self, forKey: "GenPtsInput") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.isIgnoreDts = try values.decodeIfPresent(Bool.self, forKey: "IgnoreDts") + self.isIgnoreIndex = try values.decodeIfPresent(Bool.self, forKey: "IgnoreIndex") + self.isInfiniteStream = try values.decodeIfPresent(Bool.self, forKey: "IsInfiniteStream") + self.isRemote = try values.decodeIfPresent(Bool.self, forKey: "IsRemote") + self.isoType = try values.decodeIfPresent(IsoType.self, forKey: "IsoType") + self.liveStreamID = try values.decodeIfPresent(String.self, forKey: "LiveStreamId") + self.mediaAttachments = try values.decodeIfPresent([MediaAttachment].self, forKey: "MediaAttachments") + self.mediaStreams = try values.decodeIfPresent([MediaStream].self, forKey: "MediaStreams") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.openToken = try values.decodeIfPresent(String.self, forKey: "OpenToken") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.protocol = try values.decodeIfPresent(MediaProtocol.self, forKey: "Protocol") + self.isReadAtNativeFramerate = try values.decodeIfPresent(Bool.self, forKey: "ReadAtNativeFramerate") + self.requiredHTTPHeaders = try values.decodeIfPresent([String: String].self, forKey: "RequiredHttpHeaders") + self.requiresClosing = try values.decodeIfPresent(Bool.self, forKey: "RequiresClosing") + self.requiresLooping = try values.decodeIfPresent(Bool.self, forKey: "RequiresLooping") + self.requiresOpening = try values.decodeIfPresent(Bool.self, forKey: "RequiresOpening") + self.runTimeTicks = try values.decodeIfPresent(Int64.self, forKey: "RunTimeTicks") + self.size = try values.decodeIfPresent(Int64.self, forKey: "Size") + self.isSupportsDirectPlay = try values.decodeIfPresent(Bool.self, forKey: "SupportsDirectPlay") + self.isSupportsDirectStream = try values.decodeIfPresent(Bool.self, forKey: "SupportsDirectStream") + self.isSupportsProbing = try values.decodeIfPresent(Bool.self, forKey: "SupportsProbing") + self.isSupportsTranscoding = try values.decodeIfPresent(Bool.self, forKey: "SupportsTranscoding") + self.timestamp = try values.decodeIfPresent(TransportStreamTimestamp.self, forKey: "Timestamp") + self.transcodingContainer = try values.decodeIfPresent(String.self, forKey: "TranscodingContainer") + self.transcodingSubProtocol = try values.decodeIfPresent(String.self, forKey: "TranscodingSubProtocol") + self.transcodingURL = try values.decodeIfPresent(String.self, forKey: "TranscodingUrl") + self.type = try values.decodeIfPresent(MediaSourceType.self, forKey: "Type") + self.video3DFormat = try values.decodeIfPresent(Video3DFormat.self, forKey: "Video3DFormat") + self.videoType = try values.decodeIfPresent(VideoType.self, forKey: "VideoType") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(analyzeDurationMs, forKey: "AnalyzeDurationMs") + try values.encodeIfPresent(bitrate, forKey: "Bitrate") + try values.encodeIfPresent(bufferMs, forKey: "BufferMs") + try values.encodeIfPresent(container, forKey: "Container") + try values.encodeIfPresent(defaultAudioStreamIndex, forKey: "DefaultAudioStreamIndex") + try values.encodeIfPresent(defaultSubtitleStreamIndex, forKey: "DefaultSubtitleStreamIndex") + try values.encodeIfPresent(eTag, forKey: "ETag") + try values.encodeIfPresent(encoderPath, forKey: "EncoderPath") + try values.encodeIfPresent(encoderProtocol, forKey: "EncoderProtocol") + try values.encodeIfPresent(formats, forKey: "Formats") + try values.encodeIfPresent(isGenPtsInput, forKey: "GenPtsInput") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(isIgnoreDts, forKey: "IgnoreDts") + try values.encodeIfPresent(isIgnoreIndex, forKey: "IgnoreIndex") + try values.encodeIfPresent(isInfiniteStream, forKey: "IsInfiniteStream") + try values.encodeIfPresent(isRemote, forKey: "IsRemote") + try values.encodeIfPresent(isoType, forKey: "IsoType") + try values.encodeIfPresent(liveStreamID, forKey: "LiveStreamId") + try values.encodeIfPresent(mediaAttachments, forKey: "MediaAttachments") + try values.encodeIfPresent(mediaStreams, forKey: "MediaStreams") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(openToken, forKey: "OpenToken") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(`protocol`, forKey: "Protocol") + try values.encodeIfPresent(isReadAtNativeFramerate, forKey: "ReadAtNativeFramerate") + try values.encodeIfPresent(requiredHTTPHeaders, forKey: "RequiredHttpHeaders") + try values.encodeIfPresent(requiresClosing, forKey: "RequiresClosing") + try values.encodeIfPresent(requiresLooping, forKey: "RequiresLooping") + try values.encodeIfPresent(requiresOpening, forKey: "RequiresOpening") + try values.encodeIfPresent(runTimeTicks, forKey: "RunTimeTicks") + try values.encodeIfPresent(size, forKey: "Size") + try values.encodeIfPresent(isSupportsDirectPlay, forKey: "SupportsDirectPlay") + try values.encodeIfPresent(isSupportsDirectStream, forKey: "SupportsDirectStream") + try values.encodeIfPresent(isSupportsProbing, forKey: "SupportsProbing") + try values.encodeIfPresent(isSupportsTranscoding, forKey: "SupportsTranscoding") + try values.encodeIfPresent(timestamp, forKey: "Timestamp") + try values.encodeIfPresent(transcodingContainer, forKey: "TranscodingContainer") + try values.encodeIfPresent(transcodingSubProtocol, forKey: "TranscodingSubProtocol") + try values.encodeIfPresent(transcodingURL, forKey: "TranscodingUrl") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(video3DFormat, forKey: "Video3DFormat") + try values.encodeIfPresent(videoType, forKey: "VideoType") + } +} diff --git a/Sources/Entities/MediaSourceType.swift b/Sources/Entities/MediaSourceType.swift new file mode 100644 index 000000000..c52c95b69 --- /dev/null +++ b/Sources/Entities/MediaSourceType.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum MediaSourceType: String, Codable, CaseIterable { + case `default` = "Default" + case grouping = "Grouping" + case placeholder = "Placeholder" +} diff --git a/Sources/Entities/MediaStream.swift b/Sources/Entities/MediaStream.swift new file mode 100644 index 000000000..71adb3b2a --- /dev/null +++ b/Sources/Entities/MediaStream.swift @@ -0,0 +1,365 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class MediaStream. +public struct MediaStream: Codable { + /// Gets or sets the aspect ratio. + public var aspectRatio: String? + /// Gets or sets the average frame rate. + public var averageFrameRate: Float? + /// Gets or sets the bit depth. + public var bitDepth: Int32? + /// Gets or sets the bit rate. + public var bitRate: Int32? + /// Gets or sets the Dolby Vision bl present flag. + public var blPresentFlag: Int32? + /// Gets or sets the channel layout. + public var channelLayout: String? + /// Gets or sets the channels. + public var channels: Int32? + /// Gets or sets the codec. + public var codec: String? + /// Gets or sets the codec tag. + public var codecTag: String? + /// Gets or sets the codec time base. + public var codecTimeBase: String? + /// Gets or sets the color primaries. + public var colorPrimaries: String? + /// Gets or sets the color range. + public var colorRange: String? + /// Gets or sets the color space. + public var colorSpace: String? + /// Gets or sets the color transfer. + public var colorTransfer: String? + /// Gets or sets the comment. + public var comment: String? + /// Gets or sets the method. + public var deliveryMethod: SubtitleDeliveryMethod? + /// Gets or sets the delivery URL. + public var deliveryURL: String? + public var displayTitle: String? + /// Gets or sets the Dolby Vision bl signal compatibility id. + public var dvBlSignalCompatibilityID: Int32? + /// Gets or sets the Dolby Vision level. + public var dvLevel: Int32? + /// Gets or sets the Dolby Vision profile. + public var dvProfile: Int32? + /// Gets or sets the Dolby Vision version major. + public var dvVersionMajor: Int32? + /// Gets or sets the Dolby Vision version minor. + public var dvVersionMinor: Int32? + /// Gets or sets the Dolby Vision el present flag. + public var elPresentFlag: Int32? + /// Gets or sets the height. + public var height: Int32? + /// Gets or sets the index. + public var index: Int32? + public var isAVC: Bool? + /// Gets or sets whether this instance is anamorphic. + public var isAnamorphic: Bool? + /// Gets or sets a value indicating whether this instance is default. + public var isDefault: Bool? + /// Gets or sets a value indicating whether this instance is external. + public var isExternal: Bool? + /// Gets or sets a value indicating whether this instance is external URL. + public var isExternalURL: Bool? + /// Gets or sets a value indicating whether this instance is forced. + public var isForced: Bool? + /// Gets or sets a value indicating whether this instance is interlaced. + public var isInterlaced: Bool? + public var isTextSubtitleStream: Bool? + /// Gets or sets the language. + public var language: String? + /// Gets or sets the level. + public var level: Double? + public var localizedDefault: String? + public var localizedExternal: String? + public var localizedForced: String? + public var localizedUndefined: String? + public var nalLengthSize: String? + /// Gets or sets the length of the packet. + public var packetLength: Int32? + /// Gets or sets the filename. + public var path: String? + /// Gets or sets the pixel format. + public var pixelFormat: String? + /// Gets or sets the profile. + public var profile: String? + /// Gets or sets the real frame rate. + public var realFrameRate: Float? + /// Gets or sets the reference frames. + public var refFrames: Int32? + /// Gets or sets the Dolby Vision rpu present flag. + public var rpuPresentFlag: Int32? + /// Gets or sets the sample rate. + public var sampleRate: Int32? + /// Gets or sets the score. + public var score: Int32? + /// Gets or sets a value indicating whether [supports external stream]. + public var isSupportsExternalStream: Bool? + /// Gets or sets the time base. + public var timeBase: String? + /// Gets or sets the title. + public var title: String? + /// Gets or sets the type. + public var type: MediaStreamType? + /// Gets the video dovi title. + public var videoDoViTitle: String? + /// Gets the video range. + public var videoRange: String? + /// Gets the video range type. + public var videoRangeType: String? + /// Gets or sets the width. + public var width: Int32? + + public init( + aspectRatio: String? = nil, + averageFrameRate: Float? = nil, + bitDepth: Int32? = nil, + bitRate: Int32? = nil, + blPresentFlag: Int32? = nil, + channelLayout: String? = nil, + channels: Int32? = nil, + codec: String? = nil, + codecTag: String? = nil, + codecTimeBase: String? = nil, + colorPrimaries: String? = nil, + colorRange: String? = nil, + colorSpace: String? = nil, + colorTransfer: String? = nil, + comment: String? = nil, + deliveryMethod: SubtitleDeliveryMethod? = nil, + deliveryURL: String? = nil, + displayTitle: String? = nil, + dvBlSignalCompatibilityID: Int32? = nil, + dvLevel: Int32? = nil, + dvProfile: Int32? = nil, + dvVersionMajor: Int32? = nil, + dvVersionMinor: Int32? = nil, + elPresentFlag: Int32? = nil, + height: Int32? = nil, + index: Int32? = nil, + isAVC: Bool? = nil, + isAnamorphic: Bool? = nil, + isDefault: Bool? = nil, + isExternal: Bool? = nil, + isExternalURL: Bool? = nil, + isForced: Bool? = nil, + isInterlaced: Bool? = nil, + isTextSubtitleStream: Bool? = nil, + language: String? = nil, + level: Double? = nil, + localizedDefault: String? = nil, + localizedExternal: String? = nil, + localizedForced: String? = nil, + localizedUndefined: String? = nil, + nalLengthSize: String? = nil, + packetLength: Int32? = nil, + path: String? = nil, + pixelFormat: String? = nil, + profile: String? = nil, + realFrameRate: Float? = nil, + refFrames: Int32? = nil, + rpuPresentFlag: Int32? = nil, + sampleRate: Int32? = nil, + score: Int32? = nil, + isSupportsExternalStream: Bool? = nil, + timeBase: String? = nil, + title: String? = nil, + type: MediaStreamType? = nil, + videoDoViTitle: String? = nil, + videoRange: String? = nil, + videoRangeType: String? = nil, + width: Int32? = nil + ) { + self.aspectRatio = aspectRatio + self.averageFrameRate = averageFrameRate + self.bitDepth = bitDepth + self.bitRate = bitRate + self.blPresentFlag = blPresentFlag + self.channelLayout = channelLayout + self.channels = channels + self.codec = codec + self.codecTag = codecTag + self.codecTimeBase = codecTimeBase + self.colorPrimaries = colorPrimaries + self.colorRange = colorRange + self.colorSpace = colorSpace + self.colorTransfer = colorTransfer + self.comment = comment + self.deliveryMethod = deliveryMethod + self.deliveryURL = deliveryURL + self.displayTitle = displayTitle + self.dvBlSignalCompatibilityID = dvBlSignalCompatibilityID + self.dvLevel = dvLevel + self.dvProfile = dvProfile + self.dvVersionMajor = dvVersionMajor + self.dvVersionMinor = dvVersionMinor + self.elPresentFlag = elPresentFlag + self.height = height + self.index = index + self.isAVC = isAVC + self.isAnamorphic = isAnamorphic + self.isDefault = isDefault + self.isExternal = isExternal + self.isExternalURL = isExternalURL + self.isForced = isForced + self.isInterlaced = isInterlaced + self.isTextSubtitleStream = isTextSubtitleStream + self.language = language + self.level = level + self.localizedDefault = localizedDefault + self.localizedExternal = localizedExternal + self.localizedForced = localizedForced + self.localizedUndefined = localizedUndefined + self.nalLengthSize = nalLengthSize + self.packetLength = packetLength + self.path = path + self.pixelFormat = pixelFormat + self.profile = profile + self.realFrameRate = realFrameRate + self.refFrames = refFrames + self.rpuPresentFlag = rpuPresentFlag + self.sampleRate = sampleRate + self.score = score + self.isSupportsExternalStream = isSupportsExternalStream + self.timeBase = timeBase + self.title = title + self.type = type + self.videoDoViTitle = videoDoViTitle + self.videoRange = videoRange + self.videoRangeType = videoRangeType + self.width = width + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.aspectRatio = try values.decodeIfPresent(String.self, forKey: "AspectRatio") + self.averageFrameRate = try values.decodeIfPresent(Float.self, forKey: "AverageFrameRate") + self.bitDepth = try values.decodeIfPresent(Int32.self, forKey: "BitDepth") + self.bitRate = try values.decodeIfPresent(Int32.self, forKey: "BitRate") + self.blPresentFlag = try values.decodeIfPresent(Int32.self, forKey: "BlPresentFlag") + self.channelLayout = try values.decodeIfPresent(String.self, forKey: "ChannelLayout") + self.channels = try values.decodeIfPresent(Int32.self, forKey: "Channels") + self.codec = try values.decodeIfPresent(String.self, forKey: "Codec") + self.codecTag = try values.decodeIfPresent(String.self, forKey: "CodecTag") + self.codecTimeBase = try values.decodeIfPresent(String.self, forKey: "CodecTimeBase") + self.colorPrimaries = try values.decodeIfPresent(String.self, forKey: "ColorPrimaries") + self.colorRange = try values.decodeIfPresent(String.self, forKey: "ColorRange") + self.colorSpace = try values.decodeIfPresent(String.self, forKey: "ColorSpace") + self.colorTransfer = try values.decodeIfPresent(String.self, forKey: "ColorTransfer") + self.comment = try values.decodeIfPresent(String.self, forKey: "Comment") + self.deliveryMethod = try values.decodeIfPresent(SubtitleDeliveryMethod.self, forKey: "DeliveryMethod") + self.deliveryURL = try values.decodeIfPresent(String.self, forKey: "DeliveryUrl") + self.displayTitle = try values.decodeIfPresent(String.self, forKey: "DisplayTitle") + self.dvBlSignalCompatibilityID = try values.decodeIfPresent(Int32.self, forKey: "DvBlSignalCompatibilityId") + self.dvLevel = try values.decodeIfPresent(Int32.self, forKey: "DvLevel") + self.dvProfile = try values.decodeIfPresent(Int32.self, forKey: "DvProfile") + self.dvVersionMajor = try values.decodeIfPresent(Int32.self, forKey: "DvVersionMajor") + self.dvVersionMinor = try values.decodeIfPresent(Int32.self, forKey: "DvVersionMinor") + self.elPresentFlag = try values.decodeIfPresent(Int32.self, forKey: "ElPresentFlag") + self.height = try values.decodeIfPresent(Int32.self, forKey: "Height") + self.index = try values.decodeIfPresent(Int32.self, forKey: "Index") + self.isAVC = try values.decodeIfPresent(Bool.self, forKey: "IsAVC") + self.isAnamorphic = try values.decodeIfPresent(Bool.self, forKey: "IsAnamorphic") + self.isDefault = try values.decodeIfPresent(Bool.self, forKey: "IsDefault") + self.isExternal = try values.decodeIfPresent(Bool.self, forKey: "IsExternal") + self.isExternalURL = try values.decodeIfPresent(Bool.self, forKey: "IsExternalUrl") + self.isForced = try values.decodeIfPresent(Bool.self, forKey: "IsForced") + self.isInterlaced = try values.decodeIfPresent(Bool.self, forKey: "IsInterlaced") + self.isTextSubtitleStream = try values.decodeIfPresent(Bool.self, forKey: "IsTextSubtitleStream") + self.language = try values.decodeIfPresent(String.self, forKey: "Language") + self.level = try values.decodeIfPresent(Double.self, forKey: "Level") + self.localizedDefault = try values.decodeIfPresent(String.self, forKey: "LocalizedDefault") + self.localizedExternal = try values.decodeIfPresent(String.self, forKey: "LocalizedExternal") + self.localizedForced = try values.decodeIfPresent(String.self, forKey: "LocalizedForced") + self.localizedUndefined = try values.decodeIfPresent(String.self, forKey: "LocalizedUndefined") + self.nalLengthSize = try values.decodeIfPresent(String.self, forKey: "NalLengthSize") + self.packetLength = try values.decodeIfPresent(Int32.self, forKey: "PacketLength") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.pixelFormat = try values.decodeIfPresent(String.self, forKey: "PixelFormat") + self.profile = try values.decodeIfPresent(String.self, forKey: "Profile") + self.realFrameRate = try values.decodeIfPresent(Float.self, forKey: "RealFrameRate") + self.refFrames = try values.decodeIfPresent(Int32.self, forKey: "RefFrames") + self.rpuPresentFlag = try values.decodeIfPresent(Int32.self, forKey: "RpuPresentFlag") + self.sampleRate = try values.decodeIfPresent(Int32.self, forKey: "SampleRate") + self.score = try values.decodeIfPresent(Int32.self, forKey: "Score") + self.isSupportsExternalStream = try values.decodeIfPresent(Bool.self, forKey: "SupportsExternalStream") + self.timeBase = try values.decodeIfPresent(String.self, forKey: "TimeBase") + self.title = try values.decodeIfPresent(String.self, forKey: "Title") + self.type = try values.decodeIfPresent(MediaStreamType.self, forKey: "Type") + self.videoDoViTitle = try values.decodeIfPresent(String.self, forKey: "VideoDoViTitle") + self.videoRange = try values.decodeIfPresent(String.self, forKey: "VideoRange") + self.videoRangeType = try values.decodeIfPresent(String.self, forKey: "VideoRangeType") + self.width = try values.decodeIfPresent(Int32.self, forKey: "Width") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(aspectRatio, forKey: "AspectRatio") + try values.encodeIfPresent(averageFrameRate, forKey: "AverageFrameRate") + try values.encodeIfPresent(bitDepth, forKey: "BitDepth") + try values.encodeIfPresent(bitRate, forKey: "BitRate") + try values.encodeIfPresent(blPresentFlag, forKey: "BlPresentFlag") + try values.encodeIfPresent(channelLayout, forKey: "ChannelLayout") + try values.encodeIfPresent(channels, forKey: "Channels") + try values.encodeIfPresent(codec, forKey: "Codec") + try values.encodeIfPresent(codecTag, forKey: "CodecTag") + try values.encodeIfPresent(codecTimeBase, forKey: "CodecTimeBase") + try values.encodeIfPresent(colorPrimaries, forKey: "ColorPrimaries") + try values.encodeIfPresent(colorRange, forKey: "ColorRange") + try values.encodeIfPresent(colorSpace, forKey: "ColorSpace") + try values.encodeIfPresent(colorTransfer, forKey: "ColorTransfer") + try values.encodeIfPresent(comment, forKey: "Comment") + try values.encodeIfPresent(deliveryMethod, forKey: "DeliveryMethod") + try values.encodeIfPresent(deliveryURL, forKey: "DeliveryUrl") + try values.encodeIfPresent(displayTitle, forKey: "DisplayTitle") + try values.encodeIfPresent(dvBlSignalCompatibilityID, forKey: "DvBlSignalCompatibilityId") + try values.encodeIfPresent(dvLevel, forKey: "DvLevel") + try values.encodeIfPresent(dvProfile, forKey: "DvProfile") + try values.encodeIfPresent(dvVersionMajor, forKey: "DvVersionMajor") + try values.encodeIfPresent(dvVersionMinor, forKey: "DvVersionMinor") + try values.encodeIfPresent(elPresentFlag, forKey: "ElPresentFlag") + try values.encodeIfPresent(height, forKey: "Height") + try values.encodeIfPresent(index, forKey: "Index") + try values.encodeIfPresent(isAVC, forKey: "IsAVC") + try values.encodeIfPresent(isAnamorphic, forKey: "IsAnamorphic") + try values.encodeIfPresent(isDefault, forKey: "IsDefault") + try values.encodeIfPresent(isExternal, forKey: "IsExternal") + try values.encodeIfPresent(isExternalURL, forKey: "IsExternalUrl") + try values.encodeIfPresent(isForced, forKey: "IsForced") + try values.encodeIfPresent(isInterlaced, forKey: "IsInterlaced") + try values.encodeIfPresent(isTextSubtitleStream, forKey: "IsTextSubtitleStream") + try values.encodeIfPresent(language, forKey: "Language") + try values.encodeIfPresent(level, forKey: "Level") + try values.encodeIfPresent(localizedDefault, forKey: "LocalizedDefault") + try values.encodeIfPresent(localizedExternal, forKey: "LocalizedExternal") + try values.encodeIfPresent(localizedForced, forKey: "LocalizedForced") + try values.encodeIfPresent(localizedUndefined, forKey: "LocalizedUndefined") + try values.encodeIfPresent(nalLengthSize, forKey: "NalLengthSize") + try values.encodeIfPresent(packetLength, forKey: "PacketLength") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(pixelFormat, forKey: "PixelFormat") + try values.encodeIfPresent(profile, forKey: "Profile") + try values.encodeIfPresent(realFrameRate, forKey: "RealFrameRate") + try values.encodeIfPresent(refFrames, forKey: "RefFrames") + try values.encodeIfPresent(rpuPresentFlag, forKey: "RpuPresentFlag") + try values.encodeIfPresent(sampleRate, forKey: "SampleRate") + try values.encodeIfPresent(score, forKey: "Score") + try values.encodeIfPresent(isSupportsExternalStream, forKey: "SupportsExternalStream") + try values.encodeIfPresent(timeBase, forKey: "TimeBase") + try values.encodeIfPresent(title, forKey: "Title") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(videoDoViTitle, forKey: "VideoDoViTitle") + try values.encodeIfPresent(videoRange, forKey: "VideoRange") + try values.encodeIfPresent(videoRangeType, forKey: "VideoRangeType") + try values.encodeIfPresent(width, forKey: "Width") + } +} diff --git a/Sources/Entities/MediaStreamType.swift b/Sources/Entities/MediaStreamType.swift new file mode 100644 index 000000000..e3c5e6b9c --- /dev/null +++ b/Sources/Entities/MediaStreamType.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum MediaStreamType. +public enum MediaStreamType: String, Codable, CaseIterable { + case audio = "Audio" + case video = "Video" + case subtitle = "Subtitle" + case embeddedImage = "EmbeddedImage" +} diff --git a/Sources/Entities/MediaURL.swift b/Sources/Entities/MediaURL.swift new file mode 100644 index 000000000..4eccd70f2 --- /dev/null +++ b/Sources/Entities/MediaURL.swift @@ -0,0 +1,31 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct MediaURL: Codable { + public var name: String? + public var url: String? + + public init(name: String? = nil, url: String? = nil) { + self.name = name + self.url = url + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.url = try values.decodeIfPresent(String.self, forKey: "Url") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(url, forKey: "Url") + } +} diff --git a/Sources/Entities/MediaUpdateInfoDto.swift b/Sources/Entities/MediaUpdateInfoDto.swift new file mode 100644 index 000000000..4e0292292 --- /dev/null +++ b/Sources/Entities/MediaUpdateInfoDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Media Update Info Dto. +public struct MediaUpdateInfoDto: Codable { + /// Gets or sets the list of updates. + public var updates: [MediaUpdateInfoPathDto]? + + public init(updates: [MediaUpdateInfoPathDto]? = nil) { + self.updates = updates + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.updates = try values.decodeIfPresent([MediaUpdateInfoPathDto].self, forKey: "Updates") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(updates, forKey: "Updates") + } +} diff --git a/Sources/Entities/MediaUpdateInfoPathDto.swift b/Sources/Entities/MediaUpdateInfoPathDto.swift new file mode 100644 index 000000000..faeb2e55b --- /dev/null +++ b/Sources/Entities/MediaUpdateInfoPathDto.swift @@ -0,0 +1,36 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The media update info path. +public struct MediaUpdateInfoPathDto: Codable { + /// Gets or sets media path. + public var path: String? + /// Gets or sets media update type. + /// + /// Created, Modified, Deleted. + public var updateType: String? + + public init(path: String? = nil, updateType: String? = nil) { + self.path = path + self.updateType = updateType + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.updateType = try values.decodeIfPresent(String.self, forKey: "UpdateType") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(updateType, forKey: "UpdateType") + } +} diff --git a/Sources/Entities/MessageCommand.swift b/Sources/Entities/MessageCommand.swift new file mode 100644 index 000000000..dc785f835 --- /dev/null +++ b/Sources/Entities/MessageCommand.swift @@ -0,0 +1,35 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct MessageCommand: Codable { + public var header: String? + public var text: String + public var timeoutMs: Int64? + + public init(header: String? = nil, text: String, timeoutMs: Int64? = nil) { + self.header = header + self.text = text + self.timeoutMs = timeoutMs + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.header = try values.decodeIfPresent(String.self, forKey: "Header") + self.text = try values.decode(String.self, forKey: "Text") + self.timeoutMs = try values.decodeIfPresent(Int64.self, forKey: "TimeoutMs") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(header, forKey: "Header") + try values.encode(text, forKey: "Text") + try values.encodeIfPresent(timeoutMs, forKey: "TimeoutMs") + } +} diff --git a/Sources/Entities/MetadataConfiguration.swift b/Sources/Entities/MetadataConfiguration.swift new file mode 100644 index 000000000..c5e9990cb --- /dev/null +++ b/Sources/Entities/MetadataConfiguration.swift @@ -0,0 +1,27 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct MetadataConfiguration: Codable { + public var useFileCreationTimeForDateAdded: Bool? + + public init(useFileCreationTimeForDateAdded: Bool? = nil) { + self.useFileCreationTimeForDateAdded = useFileCreationTimeForDateAdded + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.useFileCreationTimeForDateAdded = try values.decodeIfPresent(Bool.self, forKey: "UseFileCreationTimeForDateAdded") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(useFileCreationTimeForDateAdded, forKey: "UseFileCreationTimeForDateAdded") + } +} diff --git a/Sources/Entities/MetadataEditorInfo.swift b/Sources/Entities/MetadataEditorInfo.swift new file mode 100644 index 000000000..007c2f88d --- /dev/null +++ b/Sources/Entities/MetadataEditorInfo.swift @@ -0,0 +1,54 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct MetadataEditorInfo: Codable { + public var contentType: String? + public var contentTypeOptions: [NameValuePair]? + public var countries: [CountryInfo]? + public var cultures: [CultureDto]? + public var externalIDInfos: [ExternalIDInfo]? + public var parentalRatingOptions: [ParentalRating]? + + public init( + contentType: String? = nil, + contentTypeOptions: [NameValuePair]? = nil, + countries: [CountryInfo]? = nil, + cultures: [CultureDto]? = nil, + externalIDInfos: [ExternalIDInfo]? = nil, + parentalRatingOptions: [ParentalRating]? = nil + ) { + self.contentType = contentType + self.contentTypeOptions = contentTypeOptions + self.countries = countries + self.cultures = cultures + self.externalIDInfos = externalIDInfos + self.parentalRatingOptions = parentalRatingOptions + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.contentType = try values.decodeIfPresent(String.self, forKey: "ContentType") + self.contentTypeOptions = try values.decodeIfPresent([NameValuePair].self, forKey: "ContentTypeOptions") + self.countries = try values.decodeIfPresent([CountryInfo].self, forKey: "Countries") + self.cultures = try values.decodeIfPresent([CultureDto].self, forKey: "Cultures") + self.externalIDInfos = try values.decodeIfPresent([ExternalIDInfo].self, forKey: "ExternalIdInfos") + self.parentalRatingOptions = try values.decodeIfPresent([ParentalRating].self, forKey: "ParentalRatingOptions") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(contentType, forKey: "ContentType") + try values.encodeIfPresent(contentTypeOptions, forKey: "ContentTypeOptions") + try values.encodeIfPresent(countries, forKey: "Countries") + try values.encodeIfPresent(cultures, forKey: "Cultures") + try values.encodeIfPresent(externalIDInfos, forKey: "ExternalIdInfos") + try values.encodeIfPresent(parentalRatingOptions, forKey: "ParentalRatingOptions") + } +} diff --git a/Sources/Entities/MetadataField.swift b/Sources/Entities/MetadataField.swift new file mode 100644 index 000000000..44f1d6efa --- /dev/null +++ b/Sources/Entities/MetadataField.swift @@ -0,0 +1,22 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum MetadataFields. +public enum MetadataField: String, Codable, CaseIterable { + case cast = "Cast" + case genres = "Genres" + case productionLocations = "ProductionLocations" + case studios = "Studios" + case tags = "Tags" + case name = "Name" + case overview = "Overview" + case runtime = "Runtime" + case officialRating = "OfficialRating" +} diff --git a/Sources/Entities/MetadataOptions.swift b/Sources/Entities/MetadataOptions.swift new file mode 100644 index 000000000..d02e2794c --- /dev/null +++ b/Sources/Entities/MetadataOptions.swift @@ -0,0 +1,60 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class MetadataOptions. +public struct MetadataOptions: Codable { + public var disabledImageFetchers: [String]? + public var disabledMetadataFetchers: [String]? + public var disabledMetadataSavers: [String]? + public var imageFetcherOrder: [String]? + public var itemType: String? + public var localMetadataReaderOrder: [String]? + public var metadataFetcherOrder: [String]? + + public init( + disabledImageFetchers: [String]? = nil, + disabledMetadataFetchers: [String]? = nil, + disabledMetadataSavers: [String]? = nil, + imageFetcherOrder: [String]? = nil, + itemType: String? = nil, + localMetadataReaderOrder: [String]? = nil, + metadataFetcherOrder: [String]? = nil + ) { + self.disabledImageFetchers = disabledImageFetchers + self.disabledMetadataFetchers = disabledMetadataFetchers + self.disabledMetadataSavers = disabledMetadataSavers + self.imageFetcherOrder = imageFetcherOrder + self.itemType = itemType + self.localMetadataReaderOrder = localMetadataReaderOrder + self.metadataFetcherOrder = metadataFetcherOrder + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.disabledImageFetchers = try values.decodeIfPresent([String].self, forKey: "DisabledImageFetchers") + self.disabledMetadataFetchers = try values.decodeIfPresent([String].self, forKey: "DisabledMetadataFetchers") + self.disabledMetadataSavers = try values.decodeIfPresent([String].self, forKey: "DisabledMetadataSavers") + self.imageFetcherOrder = try values.decodeIfPresent([String].self, forKey: "ImageFetcherOrder") + self.itemType = try values.decodeIfPresent(String.self, forKey: "ItemType") + self.localMetadataReaderOrder = try values.decodeIfPresent([String].self, forKey: "LocalMetadataReaderOrder") + self.metadataFetcherOrder = try values.decodeIfPresent([String].self, forKey: "MetadataFetcherOrder") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(disabledImageFetchers, forKey: "DisabledImageFetchers") + try values.encodeIfPresent(disabledMetadataFetchers, forKey: "DisabledMetadataFetchers") + try values.encodeIfPresent(disabledMetadataSavers, forKey: "DisabledMetadataSavers") + try values.encodeIfPresent(imageFetcherOrder, forKey: "ImageFetcherOrder") + try values.encodeIfPresent(itemType, forKey: "ItemType") + try values.encodeIfPresent(localMetadataReaderOrder, forKey: "LocalMetadataReaderOrder") + try values.encodeIfPresent(metadataFetcherOrder, forKey: "MetadataFetcherOrder") + } +} diff --git a/Sources/Entities/MetadataRefreshMode.swift b/Sources/Entities/MetadataRefreshMode.swift new file mode 100644 index 000000000..65bb0973e --- /dev/null +++ b/Sources/Entities/MetadataRefreshMode.swift @@ -0,0 +1,16 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum MetadataRefreshMode: String, Codable, CaseIterable { + case none = "None" + case validationOnly = "ValidationOnly" + case `default` = "Default" + case fullRefresh = "FullRefresh" +} diff --git a/Sources/Entities/MovePlaylistItemRequestDto.swift b/Sources/Entities/MovePlaylistItemRequestDto.swift new file mode 100644 index 000000000..7632aa490 --- /dev/null +++ b/Sources/Entities/MovePlaylistItemRequestDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class MovePlaylistItemRequestDto. +public struct MovePlaylistItemRequestDto: Codable { + /// Gets or sets the new position. + public var newIndex: Int32? + /// Gets or sets the playlist identifier of the item. + public var playlistItemID: String? + + public init(newIndex: Int32? = nil, playlistItemID: String? = nil) { + self.newIndex = newIndex + self.playlistItemID = playlistItemID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.newIndex = try values.decodeIfPresent(Int32.self, forKey: "NewIndex") + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(newIndex, forKey: "NewIndex") + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + } +} diff --git a/Sources/Entities/MovieInfo.swift b/Sources/Entities/MovieInfo.swift new file mode 100644 index 000000000..2f78df257 --- /dev/null +++ b/Sources/Entities/MovieInfo.swift @@ -0,0 +1,86 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct MovieInfo: Codable { + public var indexNumber: Int32? + public var isAutomated: Bool? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the metadata language. + public var metadataLanguage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the original title. + public var originalTitle: String? + public var parentIndexNumber: Int32? + /// Gets or sets the path. + public var path: String? + public var premiereDate: Date? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + /// Gets or sets the year. + public var year: Int32? + + public init( + indexNumber: Int32? = nil, + isAutomated: Bool? = nil, + metadataCountryCode: String? = nil, + metadataLanguage: String? = nil, + name: String? = nil, + originalTitle: String? = nil, + parentIndexNumber: Int32? = nil, + path: String? = nil, + premiereDate: Date? = nil, + providerIDs: [String: String]? = nil, + year: Int32? = nil + ) { + self.indexNumber = indexNumber + self.isAutomated = isAutomated + self.metadataCountryCode = metadataCountryCode + self.metadataLanguage = metadataLanguage + self.name = name + self.originalTitle = originalTitle + self.parentIndexNumber = parentIndexNumber + self.path = path + self.premiereDate = premiereDate + self.providerIDs = providerIDs + self.year = year + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isAutomated = try values.decodeIfPresent(Bool.self, forKey: "IsAutomated") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataLanguage = try values.decodeIfPresent(String.self, forKey: "MetadataLanguage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.year = try values.decodeIfPresent(Int32.self, forKey: "Year") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isAutomated, forKey: "IsAutomated") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataLanguage, forKey: "MetadataLanguage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(year, forKey: "Year") + } +} diff --git a/Sources/Entities/MovieInfoRemoteSearchQuery.swift b/Sources/Entities/MovieInfoRemoteSearchQuery.swift new file mode 100644 index 000000000..57a8990ae --- /dev/null +++ b/Sources/Entities/MovieInfoRemoteSearchQuery.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct MovieInfoRemoteSearchQuery: Codable { + /// Gets or sets a value indicating whether disabled providers should be included. + public var isIncludeDisabledProviders: Bool? + public var itemID: String? + public var searchInfo: MovieInfo? + /// Gets or sets the provider name to search within if set. + public var searchProviderName: String? + + public init( + isIncludeDisabledProviders: Bool? = nil, + itemID: String? = nil, + searchInfo: MovieInfo? = nil, + searchProviderName: String? = nil + ) { + self.isIncludeDisabledProviders = isIncludeDisabledProviders + self.itemID = itemID + self.searchInfo = searchInfo + self.searchProviderName = searchProviderName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isIncludeDisabledProviders = try values.decodeIfPresent(Bool.self, forKey: "IncludeDisabledProviders") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.searchInfo = try values.decodeIfPresent(MovieInfo.self, forKey: "SearchInfo") + self.searchProviderName = try values.decodeIfPresent(String.self, forKey: "SearchProviderName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isIncludeDisabledProviders, forKey: "IncludeDisabledProviders") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(searchInfo, forKey: "SearchInfo") + try values.encodeIfPresent(searchProviderName, forKey: "SearchProviderName") + } +} diff --git a/Sources/Entities/MusicVideoInfo.swift b/Sources/Entities/MusicVideoInfo.swift new file mode 100644 index 000000000..cc366c55f --- /dev/null +++ b/Sources/Entities/MusicVideoInfo.swift @@ -0,0 +1,91 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct MusicVideoInfo: Codable { + public var artists: [String]? + public var indexNumber: Int32? + public var isAutomated: Bool? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the metadata language. + public var metadataLanguage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the original title. + public var originalTitle: String? + public var parentIndexNumber: Int32? + /// Gets or sets the path. + public var path: String? + public var premiereDate: Date? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + /// Gets or sets the year. + public var year: Int32? + + public init( + artists: [String]? = nil, + indexNumber: Int32? = nil, + isAutomated: Bool? = nil, + metadataCountryCode: String? = nil, + metadataLanguage: String? = nil, + name: String? = nil, + originalTitle: String? = nil, + parentIndexNumber: Int32? = nil, + path: String? = nil, + premiereDate: Date? = nil, + providerIDs: [String: String]? = nil, + year: Int32? = nil + ) { + self.artists = artists + self.indexNumber = indexNumber + self.isAutomated = isAutomated + self.metadataCountryCode = metadataCountryCode + self.metadataLanguage = metadataLanguage + self.name = name + self.originalTitle = originalTitle + self.parentIndexNumber = parentIndexNumber + self.path = path + self.premiereDate = premiereDate + self.providerIDs = providerIDs + self.year = year + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.artists = try values.decodeIfPresent([String].self, forKey: "Artists") + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isAutomated = try values.decodeIfPresent(Bool.self, forKey: "IsAutomated") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataLanguage = try values.decodeIfPresent(String.self, forKey: "MetadataLanguage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.year = try values.decodeIfPresent(Int32.self, forKey: "Year") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(artists, forKey: "Artists") + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isAutomated, forKey: "IsAutomated") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataLanguage, forKey: "MetadataLanguage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(year, forKey: "Year") + } +} diff --git a/Sources/Entities/MusicVideoInfoRemoteSearchQuery.swift b/Sources/Entities/MusicVideoInfoRemoteSearchQuery.swift new file mode 100644 index 000000000..793b39293 --- /dev/null +++ b/Sources/Entities/MusicVideoInfoRemoteSearchQuery.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct MusicVideoInfoRemoteSearchQuery: Codable { + /// Gets or sets a value indicating whether disabled providers should be included. + public var isIncludeDisabledProviders: Bool? + public var itemID: String? + public var searchInfo: MusicVideoInfo? + /// Gets or sets the provider name to search within if set. + public var searchProviderName: String? + + public init( + isIncludeDisabledProviders: Bool? = nil, + itemID: String? = nil, + searchInfo: MusicVideoInfo? = nil, + searchProviderName: String? = nil + ) { + self.isIncludeDisabledProviders = isIncludeDisabledProviders + self.itemID = itemID + self.searchInfo = searchInfo + self.searchProviderName = searchProviderName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isIncludeDisabledProviders = try values.decodeIfPresent(Bool.self, forKey: "IncludeDisabledProviders") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.searchInfo = try values.decodeIfPresent(MusicVideoInfo.self, forKey: "SearchInfo") + self.searchProviderName = try values.decodeIfPresent(String.self, forKey: "SearchProviderName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isIncludeDisabledProviders, forKey: "IncludeDisabledProviders") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(searchInfo, forKey: "SearchInfo") + try values.encodeIfPresent(searchProviderName, forKey: "SearchProviderName") + } +} diff --git a/Sources/Entities/NameGuidPair.swift b/Sources/Entities/NameGuidPair.swift new file mode 100644 index 000000000..897ff0858 --- /dev/null +++ b/Sources/Entities/NameGuidPair.swift @@ -0,0 +1,31 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct NameGuidPair: Codable, Identifiable { + public var id: String? + public var name: String? + + public init(id: String? = nil, name: String? = nil) { + self.id = id + self.name = name + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(name, forKey: "Name") + } +} diff --git a/Sources/Entities/NameIDPair.swift b/Sources/Entities/NameIDPair.swift new file mode 100644 index 000000000..e5b155e75 --- /dev/null +++ b/Sources/Entities/NameIDPair.swift @@ -0,0 +1,33 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct NameIDPair: Codable, Identifiable { + /// Gets or sets the identifier. + public var id: String? + /// Gets or sets the name. + public var name: String? + + public init(id: String? = nil, name: String? = nil) { + self.id = id + self.name = name + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(name, forKey: "Name") + } +} diff --git a/Sources/Entities/NameValuePair.swift b/Sources/Entities/NameValuePair.swift new file mode 100644 index 000000000..64b4d87ac --- /dev/null +++ b/Sources/Entities/NameValuePair.swift @@ -0,0 +1,33 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct NameValuePair: Codable { + /// Gets or sets the name. + public var name: String? + /// Gets or sets the value. + public var value: String? + + public init(name: String? = nil, value: String? = nil) { + self.name = name + self.value = value + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.value = try values.decodeIfPresent(String.self, forKey: "Value") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(value, forKey: "Value") + } +} diff --git a/Sources/Entities/NetworkConfiguration.swift b/Sources/Entities/NetworkConfiguration.swift new file mode 100644 index 000000000..bbfd83f8d --- /dev/null +++ b/Sources/Entities/NetworkConfiguration.swift @@ -0,0 +1,239 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Defines the Jellyfin.Networking.Configuration.NetworkConfiguration. +public struct NetworkConfiguration: Codable { + /// Gets or sets a value indicating whether Autodiscovery is enabled. + public var isAutoDiscovery: Bool? + /// Gets or sets a value indicating whether Autodiscovery tracing is enabled. + public var isAutoDiscoveryTracing: Bool? + /// Gets or sets a value used to specify the URL prefix that your Jellyfin instance can be accessed at. + public var baseURL: String? + /// Gets or sets the password required to access the X.509 certificate data in the file specified by Jellyfin.Networking.Configuration.NetworkConfiguration.CertificatePath. + public var certificatePassword: String? + /// Gets or sets the filesystem path of an X.509 certificate to use for SSL. + public var certificatePath: String? + /// Gets or sets a value indicating whether to use HTTPS. + public var enableHTTPS: Bool? + /// Gets or sets a value indicating whether gets or sets IPV4 capability. + public var enableIPV4: Bool? + /// Gets or sets a value indicating whether gets or sets IPV6 capability. + public var enableIPV6: Bool? + /// Gets a value indicating whether multi-socket binding is available. + public var enableMultiSocketBinding: Bool? + /// Gets or sets a value indicating whether the published server uri is based on information in HTTP requests. + public var enablePublishedServerUriByRequest: Bool? + /// Gets or sets a value indicating whether access outside of the LAN is permitted. + public var enableRemoteAccess: Bool? + /// Gets or sets a value indicating whether detailed SSDP logs are sent to the console/log. + /// + /// "Emby.Dlna": "Debug" must be set in logging.default.json for this property to have any effect. + public var enableSSDPTracing: Bool? + /// Gets or sets a value indicating whether to enable automatic port forwarding. + public var enableUPnP: Bool? + /// Gets or sets the time (in seconds) between the pings of SSDP gateway monitor. + public var gatewayMonitorPeriod: Int32? + /// Gets or sets the ports that HDHomerun uses. + public var hDHomerunPortRange: String? + /// Gets or sets the HTTP server port number. + public var httpserverPortNumber: Int32? + /// Gets or sets the HTTPS server port number. + public var httpsPortNumber: Int32? + /// Gets or sets a value indicating whether address names that match Jellyfin.Networking.Configuration.NetworkConfiguration.VirtualInterfaceNames should be Ignore for the purposes of binding. + public var isIgnoreVirtualInterfaces: Bool? + /// Gets or sets a value indicating whether contains a blacklist or a whitelist. Default is a whitelist. + public var isRemoteIPFilterBlacklist: Bool? + /// Gets or sets the known proxies. If the proxy is a network, it's added to the KnownNetworks. + public var knownProxies: [String]? + /// Gets or sets the interface addresses which Jellyfin will bind to. If empty, all interfaces will be used. + public var localNetworkAddresses: [String]? + /// Gets or sets the subnets that are deemed to make up the LAN. + public var localNetworkSubnets: [String]? + /// Gets or sets the public HTTPS port. + public var publicHTTPSPort: Int32? + /// Gets or sets the public mapped port. + public var publicPort: Int32? + /// Gets or sets the PublishedServerUriBySubnet + /// + /// Gets or sets PublishedServerUri to advertise for specific subnets. + public var publishedServerUriBySubnet: [String]? + /// Gets or sets the filter for remote IP connectivity. Used in conjuntion with . + public var remoteIPFilter: [String]? + /// Gets or sets a value indicating whether the server should force connections over HTTPS. + public var requireHTTPS: Bool? + /// Gets or sets the SSDPTracingFilter + /// + /// Gets or sets a value indicating whether an IP address is to be used to filter the detailed ssdp logs that are being sent to the console/log. + /// + /// If the setting "Emby.Dlna": "Debug" msut be set in logging.default.json for this property to work. + public var sSDPTracingFilter: String? + /// Gets or sets a value indicating whether all IPv6 interfaces should be treated as on the internal network. + /// + /// Depending on the address range implemented ULA ranges might not be used. + public var isTrustAllIP6Interfaces: Bool? + /// Gets or sets the UDPPortRange. + public var uDPPortRange: String? + /// Gets or sets the number of times SSDP UDP messages are sent. + public var uDPSendCount: Int32? + /// Gets or sets the delay between each groups of SSDP messages (in ms). + public var uDPSendDelay: Int32? + /// Gets or sets a value indicating whether the http port should be mapped as part of UPnP automatic port forwarding. + public var isUPnPCreateHTTPPortMap: Bool? + /// Gets or sets a value indicating the interfaces that should be ignored. The list can be comma separated. . + public var virtualInterfaceNames: String? + + public init( + isAutoDiscovery: Bool? = nil, + isAutoDiscoveryTracing: Bool? = nil, + baseURL: String? = nil, + certificatePassword: String? = nil, + certificatePath: String? = nil, + enableHTTPS: Bool? = nil, + enableIPV4: Bool? = nil, + enableIPV6: Bool? = nil, + enableMultiSocketBinding: Bool? = nil, + enablePublishedServerUriByRequest: Bool? = nil, + enableRemoteAccess: Bool? = nil, + enableSSDPTracing: Bool? = nil, + enableUPnP: Bool? = nil, + gatewayMonitorPeriod: Int32? = nil, + hDHomerunPortRange: String? = nil, + httpserverPortNumber: Int32? = nil, + httpsPortNumber: Int32? = nil, + isIgnoreVirtualInterfaces: Bool? = nil, + isRemoteIPFilterBlacklist: Bool? = nil, + knownProxies: [String]? = nil, + localNetworkAddresses: [String]? = nil, + localNetworkSubnets: [String]? = nil, + publicHTTPSPort: Int32? = nil, + publicPort: Int32? = nil, + publishedServerUriBySubnet: [String]? = nil, + remoteIPFilter: [String]? = nil, + requireHTTPS: Bool? = nil, + sSDPTracingFilter: String? = nil, + isTrustAllIP6Interfaces: Bool? = nil, + uDPPortRange: String? = nil, + uDPSendCount: Int32? = nil, + uDPSendDelay: Int32? = nil, + isUPnPCreateHTTPPortMap: Bool? = nil, + virtualInterfaceNames: String? = nil + ) { + self.isAutoDiscovery = isAutoDiscovery + self.isAutoDiscoveryTracing = isAutoDiscoveryTracing + self.baseURL = baseURL + self.certificatePassword = certificatePassword + self.certificatePath = certificatePath + self.enableHTTPS = enableHTTPS + self.enableIPV4 = enableIPV4 + self.enableIPV6 = enableIPV6 + self.enableMultiSocketBinding = enableMultiSocketBinding + self.enablePublishedServerUriByRequest = enablePublishedServerUriByRequest + self.enableRemoteAccess = enableRemoteAccess + self.enableSSDPTracing = enableSSDPTracing + self.enableUPnP = enableUPnP + self.gatewayMonitorPeriod = gatewayMonitorPeriod + self.hDHomerunPortRange = hDHomerunPortRange + self.httpserverPortNumber = httpserverPortNumber + self.httpsPortNumber = httpsPortNumber + self.isIgnoreVirtualInterfaces = isIgnoreVirtualInterfaces + self.isRemoteIPFilterBlacklist = isRemoteIPFilterBlacklist + self.knownProxies = knownProxies + self.localNetworkAddresses = localNetworkAddresses + self.localNetworkSubnets = localNetworkSubnets + self.publicHTTPSPort = publicHTTPSPort + self.publicPort = publicPort + self.publishedServerUriBySubnet = publishedServerUriBySubnet + self.remoteIPFilter = remoteIPFilter + self.requireHTTPS = requireHTTPS + self.sSDPTracingFilter = sSDPTracingFilter + self.isTrustAllIP6Interfaces = isTrustAllIP6Interfaces + self.uDPPortRange = uDPPortRange + self.uDPSendCount = uDPSendCount + self.uDPSendDelay = uDPSendDelay + self.isUPnPCreateHTTPPortMap = isUPnPCreateHTTPPortMap + self.virtualInterfaceNames = virtualInterfaceNames + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isAutoDiscovery = try values.decodeIfPresent(Bool.self, forKey: "AutoDiscovery") + self.isAutoDiscoveryTracing = try values.decodeIfPresent(Bool.self, forKey: "AutoDiscoveryTracing") + self.baseURL = try values.decodeIfPresent(String.self, forKey: "BaseUrl") + self.certificatePassword = try values.decodeIfPresent(String.self, forKey: "CertificatePassword") + self.certificatePath = try values.decodeIfPresent(String.self, forKey: "CertificatePath") + self.enableHTTPS = try values.decodeIfPresent(Bool.self, forKey: "EnableHttps") + self.enableIPV4 = try values.decodeIfPresent(Bool.self, forKey: "EnableIPV4") + self.enableIPV6 = try values.decodeIfPresent(Bool.self, forKey: "EnableIPV6") + self.enableMultiSocketBinding = try values.decodeIfPresent(Bool.self, forKey: "EnableMultiSocketBinding") + self.enablePublishedServerUriByRequest = try values.decodeIfPresent(Bool.self, forKey: "EnablePublishedServerUriByRequest") + self.enableRemoteAccess = try values.decodeIfPresent(Bool.self, forKey: "EnableRemoteAccess") + self.enableSSDPTracing = try values.decodeIfPresent(Bool.self, forKey: "EnableSSDPTracing") + self.enableUPnP = try values.decodeIfPresent(Bool.self, forKey: "EnableUPnP") + self.gatewayMonitorPeriod = try values.decodeIfPresent(Int32.self, forKey: "GatewayMonitorPeriod") + self.hDHomerunPortRange = try values.decodeIfPresent(String.self, forKey: "HDHomerunPortRange") + self.httpserverPortNumber = try values.decodeIfPresent(Int32.self, forKey: "HttpServerPortNumber") + self.httpsPortNumber = try values.decodeIfPresent(Int32.self, forKey: "HttpsPortNumber") + self.isIgnoreVirtualInterfaces = try values.decodeIfPresent(Bool.self, forKey: "IgnoreVirtualInterfaces") + self.isRemoteIPFilterBlacklist = try values.decodeIfPresent(Bool.self, forKey: "IsRemoteIPFilterBlacklist") + self.knownProxies = try values.decodeIfPresent([String].self, forKey: "KnownProxies") + self.localNetworkAddresses = try values.decodeIfPresent([String].self, forKey: "LocalNetworkAddresses") + self.localNetworkSubnets = try values.decodeIfPresent([String].self, forKey: "LocalNetworkSubnets") + self.publicHTTPSPort = try values.decodeIfPresent(Int32.self, forKey: "PublicHttpsPort") + self.publicPort = try values.decodeIfPresent(Int32.self, forKey: "PublicPort") + self.publishedServerUriBySubnet = try values.decodeIfPresent([String].self, forKey: "PublishedServerUriBySubnet") + self.remoteIPFilter = try values.decodeIfPresent([String].self, forKey: "RemoteIPFilter") + self.requireHTTPS = try values.decodeIfPresent(Bool.self, forKey: "RequireHttps") + self.sSDPTracingFilter = try values.decodeIfPresent(String.self, forKey: "SSDPTracingFilter") + self.isTrustAllIP6Interfaces = try values.decodeIfPresent(Bool.self, forKey: "TrustAllIP6Interfaces") + self.uDPPortRange = try values.decodeIfPresent(String.self, forKey: "UDPPortRange") + self.uDPSendCount = try values.decodeIfPresent(Int32.self, forKey: "UDPSendCount") + self.uDPSendDelay = try values.decodeIfPresent(Int32.self, forKey: "UDPSendDelay") + self.isUPnPCreateHTTPPortMap = try values.decodeIfPresent(Bool.self, forKey: "UPnPCreateHttpPortMap") + self.virtualInterfaceNames = try values.decodeIfPresent(String.self, forKey: "VirtualInterfaceNames") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isAutoDiscovery, forKey: "AutoDiscovery") + try values.encodeIfPresent(isAutoDiscoveryTracing, forKey: "AutoDiscoveryTracing") + try values.encodeIfPresent(baseURL, forKey: "BaseUrl") + try values.encodeIfPresent(certificatePassword, forKey: "CertificatePassword") + try values.encodeIfPresent(certificatePath, forKey: "CertificatePath") + try values.encodeIfPresent(enableHTTPS, forKey: "EnableHttps") + try values.encodeIfPresent(enableIPV4, forKey: "EnableIPV4") + try values.encodeIfPresent(enableIPV6, forKey: "EnableIPV6") + try values.encodeIfPresent(enableMultiSocketBinding, forKey: "EnableMultiSocketBinding") + try values.encodeIfPresent(enablePublishedServerUriByRequest, forKey: "EnablePublishedServerUriByRequest") + try values.encodeIfPresent(enableRemoteAccess, forKey: "EnableRemoteAccess") + try values.encodeIfPresent(enableSSDPTracing, forKey: "EnableSSDPTracing") + try values.encodeIfPresent(enableUPnP, forKey: "EnableUPnP") + try values.encodeIfPresent(gatewayMonitorPeriod, forKey: "GatewayMonitorPeriod") + try values.encodeIfPresent(hDHomerunPortRange, forKey: "HDHomerunPortRange") + try values.encodeIfPresent(httpserverPortNumber, forKey: "HttpServerPortNumber") + try values.encodeIfPresent(httpsPortNumber, forKey: "HttpsPortNumber") + try values.encodeIfPresent(isIgnoreVirtualInterfaces, forKey: "IgnoreVirtualInterfaces") + try values.encodeIfPresent(isRemoteIPFilterBlacklist, forKey: "IsRemoteIPFilterBlacklist") + try values.encodeIfPresent(knownProxies, forKey: "KnownProxies") + try values.encodeIfPresent(localNetworkAddresses, forKey: "LocalNetworkAddresses") + try values.encodeIfPresent(localNetworkSubnets, forKey: "LocalNetworkSubnets") + try values.encodeIfPresent(publicHTTPSPort, forKey: "PublicHttpsPort") + try values.encodeIfPresent(publicPort, forKey: "PublicPort") + try values.encodeIfPresent(publishedServerUriBySubnet, forKey: "PublishedServerUriBySubnet") + try values.encodeIfPresent(remoteIPFilter, forKey: "RemoteIPFilter") + try values.encodeIfPresent(requireHTTPS, forKey: "RequireHttps") + try values.encodeIfPresent(sSDPTracingFilter, forKey: "SSDPTracingFilter") + try values.encodeIfPresent(isTrustAllIP6Interfaces, forKey: "TrustAllIP6Interfaces") + try values.encodeIfPresent(uDPPortRange, forKey: "UDPPortRange") + try values.encodeIfPresent(uDPSendCount, forKey: "UDPSendCount") + try values.encodeIfPresent(uDPSendDelay, forKey: "UDPSendDelay") + try values.encodeIfPresent(isUPnPCreateHTTPPortMap, forKey: "UPnPCreateHttpPortMap") + try values.encodeIfPresent(virtualInterfaceNames, forKey: "VirtualInterfaceNames") + } +} diff --git a/Sources/Entities/NewGroupRequestDto.swift b/Sources/Entities/NewGroupRequestDto.swift new file mode 100644 index 000000000..ef43b0eb3 --- /dev/null +++ b/Sources/Entities/NewGroupRequestDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class NewGroupRequestDto. +public struct NewGroupRequestDto: Codable { + /// Gets or sets the group name. + public var groupName: String? + + public init(groupName: String? = nil) { + self.groupName = groupName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.groupName = try values.decodeIfPresent(String.self, forKey: "GroupName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(groupName, forKey: "GroupName") + } +} diff --git a/Sources/Entities/NextItemRequestDto.swift b/Sources/Entities/NextItemRequestDto.swift new file mode 100644 index 000000000..da2c1ccfa --- /dev/null +++ b/Sources/Entities/NextItemRequestDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class NextItemRequestDto. +public struct NextItemRequestDto: Codable { + /// Gets or sets the playing item identifier. + public var playlistItemID: String? + + public init(playlistItemID: String? = nil) { + self.playlistItemID = playlistItemID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + } +} diff --git a/Sources/Entities/NotificationDto.swift b/Sources/Entities/NotificationDto.swift new file mode 100644 index 000000000..2b8de6392 --- /dev/null +++ b/Sources/Entities/NotificationDto.swift @@ -0,0 +1,73 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The notification DTO. +public struct NotificationDto: Codable, Identifiable { + /// Gets or sets the notification date. + public var date: Date? + /// Gets or sets the notification's description. Defaults to an empty string. + public var description: String? + /// Gets or sets the notification ID. Defaults to an empty string. + public var id: String? + /// Gets or sets a value indicating whether the notification has been read. Defaults to false. + public var isRead: Bool? + /// Gets or sets the notification level. + public var level: NotificationLevel? + /// Gets or sets the notification's name. Defaults to an empty string. + public var name: String? + /// Gets or sets the notification's URL. Defaults to an empty string. + public var url: String? + /// Gets or sets the notification's user ID. Defaults to an empty string. + public var userID: String? + + public init( + date: Date? = nil, + description: String? = nil, + id: String? = nil, + isRead: Bool? = nil, + level: NotificationLevel? = nil, + name: String? = nil, + url: String? = nil, + userID: String? = nil + ) { + self.date = date + self.description = description + self.id = id + self.isRead = isRead + self.level = level + self.name = name + self.url = url + self.userID = userID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.date = try values.decodeIfPresent(Date.self, forKey: "Date") + self.description = try values.decodeIfPresent(String.self, forKey: "Description") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.isRead = try values.decodeIfPresent(Bool.self, forKey: "IsRead") + self.level = try values.decodeIfPresent(NotificationLevel.self, forKey: "Level") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.url = try values.decodeIfPresent(String.self, forKey: "Url") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(date, forKey: "Date") + try values.encodeIfPresent(description, forKey: "Description") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(isRead, forKey: "IsRead") + try values.encodeIfPresent(level, forKey: "Level") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(url, forKey: "Url") + try values.encodeIfPresent(userID, forKey: "UserId") + } +} diff --git a/Sources/Entities/NotificationLevel.swift b/Sources/Entities/NotificationLevel.swift new file mode 100644 index 000000000..986d32249 --- /dev/null +++ b/Sources/Entities/NotificationLevel.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum NotificationLevel: String, Codable, CaseIterable { + case normal = "Normal" + case warning = "Warning" + case error = "Error" +} diff --git a/Sources/Entities/NotificationOption.swift b/Sources/Entities/NotificationOption.swift new file mode 100644 index 000000000..14dd1df82 --- /dev/null +++ b/Sources/Entities/NotificationOption.swift @@ -0,0 +1,59 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct NotificationOption: Codable { + /// Gets or sets user Ids to not monitor (it's opt out). + public var disabledMonitorUsers: [String]? + /// Gets or sets the disabled services. + public var disabledServices: [String]? + /// Gets or sets a value indicating whether this MediaBrowser.Model.Notifications.NotificationOption is enabled. + public var isEnabled: Bool? + /// Gets or sets the send to user mode. + public var sendToUserMode: SendToUserType? + /// Gets or sets user Ids to send to (if SendToUserMode == Custom). + public var sendToUsers: [String]? + public var type: String? + + public init( + disabledMonitorUsers: [String]? = nil, + disabledServices: [String]? = nil, + isEnabled: Bool? = nil, + sendToUserMode: SendToUserType? = nil, + sendToUsers: [String]? = nil, + type: String? = nil + ) { + self.disabledMonitorUsers = disabledMonitorUsers + self.disabledServices = disabledServices + self.isEnabled = isEnabled + self.sendToUserMode = sendToUserMode + self.sendToUsers = sendToUsers + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.disabledMonitorUsers = try values.decodeIfPresent([String].self, forKey: "DisabledMonitorUsers") + self.disabledServices = try values.decodeIfPresent([String].self, forKey: "DisabledServices") + self.isEnabled = try values.decodeIfPresent(Bool.self, forKey: "Enabled") + self.sendToUserMode = try values.decodeIfPresent(SendToUserType.self, forKey: "SendToUserMode") + self.sendToUsers = try values.decodeIfPresent([String].self, forKey: "SendToUsers") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(disabledMonitorUsers, forKey: "DisabledMonitorUsers") + try values.encodeIfPresent(disabledServices, forKey: "DisabledServices") + try values.encodeIfPresent(isEnabled, forKey: "Enabled") + try values.encodeIfPresent(sendToUserMode, forKey: "SendToUserMode") + try values.encodeIfPresent(sendToUsers, forKey: "SendToUsers") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/NotificationOptions.swift b/Sources/Entities/NotificationOptions.swift new file mode 100644 index 000000000..0db8bdc2c --- /dev/null +++ b/Sources/Entities/NotificationOptions.swift @@ -0,0 +1,27 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct NotificationOptions: Codable { + public var options: [NotificationOption]? + + public init(options: [NotificationOption]? = nil) { + self.options = options + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.options = try values.decodeIfPresent([NotificationOption].self, forKey: "Options") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(options, forKey: "Options") + } +} diff --git a/Sources/Entities/NotificationResultDto.swift b/Sources/Entities/NotificationResultDto.swift new file mode 100644 index 000000000..79c6fc572 --- /dev/null +++ b/Sources/Entities/NotificationResultDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// A list of notifications with the total record count for pagination. +public struct NotificationResultDto: Codable { + /// Gets or sets the current page of notifications. + public var notifications: [NotificationDto]? + /// Gets or sets the total number of notifications. + public var totalRecordCount: Int32? + + public init(notifications: [NotificationDto]? = nil, totalRecordCount: Int32? = nil) { + self.notifications = notifications + self.totalRecordCount = totalRecordCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.notifications = try values.decodeIfPresent([NotificationDto].self, forKey: "Notifications") + self.totalRecordCount = try values.decodeIfPresent(Int32.self, forKey: "TotalRecordCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(notifications, forKey: "Notifications") + try values.encodeIfPresent(totalRecordCount, forKey: "TotalRecordCount") + } +} diff --git a/Sources/Entities/NotificationTypeInfo.swift b/Sources/Entities/NotificationTypeInfo.swift new file mode 100644 index 000000000..58f7a5a63 --- /dev/null +++ b/Sources/Entities/NotificationTypeInfo.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct NotificationTypeInfo: Codable { + public var category: String? + public var isEnabled: Bool? + public var isBasedOnUserEvent: Bool? + public var name: String? + public var type: String? + + public init( + category: String? = nil, + isEnabled: Bool? = nil, + isBasedOnUserEvent: Bool? = nil, + name: String? = nil, + type: String? = nil + ) { + self.category = category + self.isEnabled = isEnabled + self.isBasedOnUserEvent = isBasedOnUserEvent + self.name = name + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.category = try values.decodeIfPresent(String.self, forKey: "Category") + self.isEnabled = try values.decodeIfPresent(Bool.self, forKey: "Enabled") + self.isBasedOnUserEvent = try values.decodeIfPresent(Bool.self, forKey: "IsBasedOnUserEvent") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(category, forKey: "Category") + try values.encodeIfPresent(isEnabled, forKey: "Enabled") + try values.encodeIfPresent(isBasedOnUserEvent, forKey: "IsBasedOnUserEvent") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/NotificationsSummaryDto.swift b/Sources/Entities/NotificationsSummaryDto.swift new file mode 100644 index 000000000..a5d22b1da --- /dev/null +++ b/Sources/Entities/NotificationsSummaryDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The notification summary DTO. +public struct NotificationsSummaryDto: Codable { + /// Gets or sets the maximum unread notification level. + public var maxUnreadNotificationLevel: NotificationLevel? + /// Gets or sets the number of unread notifications. + public var unreadCount: Int32? + + public init(maxUnreadNotificationLevel: NotificationLevel? = nil, unreadCount: Int32? = nil) { + self.maxUnreadNotificationLevel = maxUnreadNotificationLevel + self.unreadCount = unreadCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.maxUnreadNotificationLevel = try values.decodeIfPresent(NotificationLevel.self, forKey: "MaxUnreadNotificationLevel") + self.unreadCount = try values.decodeIfPresent(Int32.self, forKey: "UnreadCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(maxUnreadNotificationLevel, forKey: "MaxUnreadNotificationLevel") + try values.encodeIfPresent(unreadCount, forKey: "UnreadCount") + } +} diff --git a/Sources/Entities/ObjectGroupUpdate.swift b/Sources/Entities/ObjectGroupUpdate.swift new file mode 100644 index 000000000..381815656 --- /dev/null +++ b/Sources/Entities/ObjectGroupUpdate.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class GroupUpdate. +public struct ObjectGroupUpdate: Codable { + /// Gets the update data. + public var data: AnyJSON? + /// Gets the group identifier. + public var groupID: String? + /// Gets the update type. + public var type: GroupUpdateType? + + public init(data: AnyJSON? = nil, groupID: String? = nil, type: GroupUpdateType? = nil) { + self.data = data + self.groupID = groupID + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.data = try values.decodeIfPresent(AnyJSON.self, forKey: "Data") + self.groupID = try values.decodeIfPresent(String.self, forKey: "GroupId") + self.type = try values.decodeIfPresent(GroupUpdateType.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(data, forKey: "Data") + try values.encodeIfPresent(groupID, forKey: "GroupId") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/OpenLiveStreamDto.swift b/Sources/Entities/OpenLiveStreamDto.swift new file mode 100644 index 000000000..3ba081ea6 --- /dev/null +++ b/Sources/Entities/OpenLiveStreamDto.swift @@ -0,0 +1,113 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Open live stream dto. +public struct OpenLiveStreamDto: Codable { + /// Gets or sets the audio stream index. + public var audioStreamIndex: Int32? + /// A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. + /// + ///
+ /// + /// Specifically, it defines the supported containers and + /// + /// codecs (video and/or audio, including codec profiles and levels) + /// + /// the device is able to direct play (without transcoding or remuxing), + /// + /// as well as which containers/codecs to transcode to in case it isn't. + public var deviceProfile: DeviceProfile? + /// Gets or sets the device play protocols. + public var directPlayProtocols: [MediaProtocol]? + /// Gets or sets a value indicating whether to enable direct play. + public var enableDirectPlay: Bool? + /// Gets or sets a value indicating whether to enale direct stream. + public var enableDirectStream: Bool? + /// Gets or sets the item id. + public var itemID: String? + /// Gets or sets the max audio channels. + public var maxAudioChannels: Int32? + /// Gets or sets the max streaming bitrate. + public var maxStreamingBitrate: Int32? + /// Gets or sets the open token. + public var openToken: String? + /// Gets or sets the play session id. + public var playSessionID: String? + /// Gets or sets the start time in ticks. + public var startTimeTicks: Int64? + /// Gets or sets the subtitle stream index. + public var subtitleStreamIndex: Int32? + /// Gets or sets the user id. + public var userID: String? + + public init( + audioStreamIndex: Int32? = nil, + deviceProfile: DeviceProfile? = nil, + directPlayProtocols: [MediaProtocol]? = nil, + enableDirectPlay: Bool? = nil, + enableDirectStream: Bool? = nil, + itemID: String? = nil, + maxAudioChannels: Int32? = nil, + maxStreamingBitrate: Int32? = nil, + openToken: String? = nil, + playSessionID: String? = nil, + startTimeTicks: Int64? = nil, + subtitleStreamIndex: Int32? = nil, + userID: String? = nil + ) { + self.audioStreamIndex = audioStreamIndex + self.deviceProfile = deviceProfile + self.directPlayProtocols = directPlayProtocols + self.enableDirectPlay = enableDirectPlay + self.enableDirectStream = enableDirectStream + self.itemID = itemID + self.maxAudioChannels = maxAudioChannels + self.maxStreamingBitrate = maxStreamingBitrate + self.openToken = openToken + self.playSessionID = playSessionID + self.startTimeTicks = startTimeTicks + self.subtitleStreamIndex = subtitleStreamIndex + self.userID = userID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.audioStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "AudioStreamIndex") + self.deviceProfile = try values.decodeIfPresent(DeviceProfile.self, forKey: "DeviceProfile") + self.directPlayProtocols = try values.decodeIfPresent([MediaProtocol].self, forKey: "DirectPlayProtocols") + self.enableDirectPlay = try values.decodeIfPresent(Bool.self, forKey: "EnableDirectPlay") + self.enableDirectStream = try values.decodeIfPresent(Bool.self, forKey: "EnableDirectStream") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.maxAudioChannels = try values.decodeIfPresent(Int32.self, forKey: "MaxAudioChannels") + self.maxStreamingBitrate = try values.decodeIfPresent(Int32.self, forKey: "MaxStreamingBitrate") + self.openToken = try values.decodeIfPresent(String.self, forKey: "OpenToken") + self.playSessionID = try values.decodeIfPresent(String.self, forKey: "PlaySessionId") + self.startTimeTicks = try values.decodeIfPresent(Int64.self, forKey: "StartTimeTicks") + self.subtitleStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "SubtitleStreamIndex") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(audioStreamIndex, forKey: "AudioStreamIndex") + try values.encodeIfPresent(deviceProfile, forKey: "DeviceProfile") + try values.encodeIfPresent(directPlayProtocols, forKey: "DirectPlayProtocols") + try values.encodeIfPresent(enableDirectPlay, forKey: "EnableDirectPlay") + try values.encodeIfPresent(enableDirectStream, forKey: "EnableDirectStream") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(maxAudioChannels, forKey: "MaxAudioChannels") + try values.encodeIfPresent(maxStreamingBitrate, forKey: "MaxStreamingBitrate") + try values.encodeIfPresent(openToken, forKey: "OpenToken") + try values.encodeIfPresent(playSessionID, forKey: "PlaySessionId") + try values.encodeIfPresent(startTimeTicks, forKey: "StartTimeTicks") + try values.encodeIfPresent(subtitleStreamIndex, forKey: "SubtitleStreamIndex") + try values.encodeIfPresent(userID, forKey: "UserId") + } +} diff --git a/Sources/Entities/PackageInfo.swift b/Sources/Entities/PackageInfo.swift new file mode 100644 index 000000000..f519875c7 --- /dev/null +++ b/Sources/Entities/PackageInfo.swift @@ -0,0 +1,75 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class PackageInfo. +public struct PackageInfo: Codable { + /// Gets or sets the category. + public var category: String? + /// Gets or sets a long description of the plugin containing features or helpful explanations. + public var description: String? + /// Gets or sets the guid of the assembly associated with this plugin. + /// + /// This is used to identify the proper item for automatic updates. + public var guid: String? + /// Gets or sets the image url for the package. + public var imageURL: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets a short overview of what the plugin does. + public var overview: String? + /// Gets or sets the owner. + public var owner: String? + /// Gets or sets the versions. + public var versions: [VersionInfo]? + + public init( + category: String? = nil, + description: String? = nil, + guid: String? = nil, + imageURL: String? = nil, + name: String? = nil, + overview: String? = nil, + owner: String? = nil, + versions: [VersionInfo]? = nil + ) { + self.category = category + self.description = description + self.guid = guid + self.imageURL = imageURL + self.name = name + self.overview = overview + self.owner = owner + self.versions = versions + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.category = try values.decodeIfPresent(String.self, forKey: "category") + self.description = try values.decodeIfPresent(String.self, forKey: "description") + self.guid = try values.decodeIfPresent(String.self, forKey: "guid") + self.imageURL = try values.decodeIfPresent(String.self, forKey: "imageUrl") + self.name = try values.decodeIfPresent(String.self, forKey: "name") + self.overview = try values.decodeIfPresent(String.self, forKey: "overview") + self.owner = try values.decodeIfPresent(String.self, forKey: "owner") + self.versions = try values.decodeIfPresent([VersionInfo].self, forKey: "versions") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(category, forKey: "category") + try values.encodeIfPresent(description, forKey: "description") + try values.encodeIfPresent(guid, forKey: "guid") + try values.encodeIfPresent(imageURL, forKey: "imageUrl") + try values.encodeIfPresent(name, forKey: "name") + try values.encodeIfPresent(overview, forKey: "overview") + try values.encodeIfPresent(owner, forKey: "owner") + try values.encodeIfPresent(versions, forKey: "versions") + } +} diff --git a/Sources/Entities/ParentalRating.swift b/Sources/Entities/ParentalRating.swift new file mode 100644 index 000000000..5ac99fc8a --- /dev/null +++ b/Sources/Entities/ParentalRating.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class ParentalRating. +public struct ParentalRating: Codable { + /// Gets or sets the name. + public var name: String? + /// Gets or sets the value. + public var value: Int32? + + public init(name: String? = nil, value: Int32? = nil) { + self.name = name + self.value = value + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.value = try values.decodeIfPresent(Int32.self, forKey: "Value") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(value, forKey: "Value") + } +} diff --git a/Sources/Entities/PathSubstitution.swift b/Sources/Entities/PathSubstitution.swift new file mode 100644 index 000000000..2fb2b242e --- /dev/null +++ b/Sources/Entities/PathSubstitution.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Defines the MediaBrowser.Model.Configuration.PathSubstitution. +public struct PathSubstitution: Codable { + /// Gets or sets the value to substitute. + public var from: String? + /// Gets or sets the value to substitution with. + public var to: String? + + public init(from: String? = nil, to: String? = nil) { + self.from = from + self.to = to + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.from = try values.decodeIfPresent(String.self, forKey: "From") + self.to = try values.decodeIfPresent(String.self, forKey: "To") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(from, forKey: "From") + try values.encodeIfPresent(to, forKey: "To") + } +} diff --git a/Sources/Entities/PersonLookupInfo.swift b/Sources/Entities/PersonLookupInfo.swift new file mode 100644 index 000000000..2bdc95b8c --- /dev/null +++ b/Sources/Entities/PersonLookupInfo.swift @@ -0,0 +1,86 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct PersonLookupInfo: Codable { + public var indexNumber: Int32? + public var isAutomated: Bool? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the metadata language. + public var metadataLanguage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the original title. + public var originalTitle: String? + public var parentIndexNumber: Int32? + /// Gets or sets the path. + public var path: String? + public var premiereDate: Date? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + /// Gets or sets the year. + public var year: Int32? + + public init( + indexNumber: Int32? = nil, + isAutomated: Bool? = nil, + metadataCountryCode: String? = nil, + metadataLanguage: String? = nil, + name: String? = nil, + originalTitle: String? = nil, + parentIndexNumber: Int32? = nil, + path: String? = nil, + premiereDate: Date? = nil, + providerIDs: [String: String]? = nil, + year: Int32? = nil + ) { + self.indexNumber = indexNumber + self.isAutomated = isAutomated + self.metadataCountryCode = metadataCountryCode + self.metadataLanguage = metadataLanguage + self.name = name + self.originalTitle = originalTitle + self.parentIndexNumber = parentIndexNumber + self.path = path + self.premiereDate = premiereDate + self.providerIDs = providerIDs + self.year = year + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isAutomated = try values.decodeIfPresent(Bool.self, forKey: "IsAutomated") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataLanguage = try values.decodeIfPresent(String.self, forKey: "MetadataLanguage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.year = try values.decodeIfPresent(Int32.self, forKey: "Year") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isAutomated, forKey: "IsAutomated") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataLanguage, forKey: "MetadataLanguage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(year, forKey: "Year") + } +} diff --git a/Sources/Entities/PersonLookupInfoRemoteSearchQuery.swift b/Sources/Entities/PersonLookupInfoRemoteSearchQuery.swift new file mode 100644 index 000000000..1e1dc49ef --- /dev/null +++ b/Sources/Entities/PersonLookupInfoRemoteSearchQuery.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct PersonLookupInfoRemoteSearchQuery: Codable { + /// Gets or sets a value indicating whether disabled providers should be included. + public var isIncludeDisabledProviders: Bool? + public var itemID: String? + public var searchInfo: PersonLookupInfo? + /// Gets or sets the provider name to search within if set. + public var searchProviderName: String? + + public init( + isIncludeDisabledProviders: Bool? = nil, + itemID: String? = nil, + searchInfo: PersonLookupInfo? = nil, + searchProviderName: String? = nil + ) { + self.isIncludeDisabledProviders = isIncludeDisabledProviders + self.itemID = itemID + self.searchInfo = searchInfo + self.searchProviderName = searchProviderName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isIncludeDisabledProviders = try values.decodeIfPresent(Bool.self, forKey: "IncludeDisabledProviders") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.searchInfo = try values.decodeIfPresent(PersonLookupInfo.self, forKey: "SearchInfo") + self.searchProviderName = try values.decodeIfPresent(String.self, forKey: "SearchProviderName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isIncludeDisabledProviders, forKey: "IncludeDisabledProviders") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(searchInfo, forKey: "SearchInfo") + try values.encodeIfPresent(searchProviderName, forKey: "SearchProviderName") + } +} diff --git a/Sources/Entities/PinRedeemResult.swift b/Sources/Entities/PinRedeemResult.swift new file mode 100644 index 000000000..5405d4eff --- /dev/null +++ b/Sources/Entities/PinRedeemResult.swift @@ -0,0 +1,33 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct PinRedeemResult: Codable { + /// Gets or sets a value indicating whether this MediaBrowser.Model.Users.PinRedeemResult is success. + public var isSuccess: Bool? + /// Gets or sets the users reset. + public var usersReset: [String]? + + public init(isSuccess: Bool? = nil, usersReset: [String]? = nil) { + self.isSuccess = isSuccess + self.usersReset = usersReset + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isSuccess = try values.decodeIfPresent(Bool.self, forKey: "Success") + self.usersReset = try values.decodeIfPresent([String].self, forKey: "UsersReset") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isSuccess, forKey: "Success") + try values.encodeIfPresent(usersReset, forKey: "UsersReset") + } +} diff --git a/Sources/Entities/PingRequestDto.swift b/Sources/Entities/PingRequestDto.swift new file mode 100644 index 000000000..1ba874a4d --- /dev/null +++ b/Sources/Entities/PingRequestDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class PingRequestDto. +public struct PingRequestDto: Codable { + /// Gets or sets the ping time. + public var ping: Int64? + + public init(ping: Int64? = nil) { + self.ping = ping + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.ping = try values.decodeIfPresent(Int64.self, forKey: "Ping") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(ping, forKey: "Ping") + } +} diff --git a/Sources/Entities/PlayAccess.swift b/Sources/Entities/PlayAccess.swift new file mode 100644 index 000000000..27089e836 --- /dev/null +++ b/Sources/Entities/PlayAccess.swift @@ -0,0 +1,14 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum PlayAccess: String, Codable, CaseIterable { + case full = "Full" + case none = "None" +} diff --git a/Sources/Entities/PlayCommand.swift b/Sources/Entities/PlayCommand.swift new file mode 100644 index 000000000..3881d3a15 --- /dev/null +++ b/Sources/Entities/PlayCommand.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum PlayCommand. +public enum PlayCommand: String, Codable, CaseIterable { + case playNow = "PlayNow" + case playNext = "PlayNext" + case playLast = "PlayLast" + case playInstantMix = "PlayInstantMix" + case playShuffle = "PlayShuffle" +} diff --git a/Sources/Entities/PlayMethod.swift b/Sources/Entities/PlayMethod.swift new file mode 100644 index 000000000..3749a105f --- /dev/null +++ b/Sources/Entities/PlayMethod.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum PlayMethod: String, Codable, CaseIterable { + case transcode = "Transcode" + case directStream = "DirectStream" + case directPlay = "DirectPlay" +} diff --git a/Sources/Entities/PlayRequest.swift b/Sources/Entities/PlayRequest.swift new file mode 100644 index 000000000..4fdeafcd4 --- /dev/null +++ b/Sources/Entities/PlayRequest.swift @@ -0,0 +1,69 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class PlayRequest. +public struct PlayRequest: Codable { + public var audioStreamIndex: Int32? + /// Gets or sets the controlling user identifier. + public var controllingUserID: String? + /// Gets or sets the item ids. + public var itemIDs: [String]? + public var mediaSourceID: String? + /// Gets or sets the play command. + public var playCommand: PlayCommand? + public var startIndex: Int32? + /// Gets or sets the start position ticks that the first item should be played at. + public var startPositionTicks: Int64? + public var subtitleStreamIndex: Int32? + + public init( + audioStreamIndex: Int32? = nil, + controllingUserID: String? = nil, + itemIDs: [String]? = nil, + mediaSourceID: String? = nil, + playCommand: PlayCommand? = nil, + startIndex: Int32? = nil, + startPositionTicks: Int64? = nil, + subtitleStreamIndex: Int32? = nil + ) { + self.audioStreamIndex = audioStreamIndex + self.controllingUserID = controllingUserID + self.itemIDs = itemIDs + self.mediaSourceID = mediaSourceID + self.playCommand = playCommand + self.startIndex = startIndex + self.startPositionTicks = startPositionTicks + self.subtitleStreamIndex = subtitleStreamIndex + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.audioStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "AudioStreamIndex") + self.controllingUserID = try values.decodeIfPresent(String.self, forKey: "ControllingUserId") + self.itemIDs = try values.decodeIfPresent([String].self, forKey: "ItemIds") + self.mediaSourceID = try values.decodeIfPresent(String.self, forKey: "MediaSourceId") + self.playCommand = try values.decodeIfPresent(PlayCommand.self, forKey: "PlayCommand") + self.startIndex = try values.decodeIfPresent(Int32.self, forKey: "StartIndex") + self.startPositionTicks = try values.decodeIfPresent(Int64.self, forKey: "StartPositionTicks") + self.subtitleStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "SubtitleStreamIndex") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(audioStreamIndex, forKey: "AudioStreamIndex") + try values.encodeIfPresent(controllingUserID, forKey: "ControllingUserId") + try values.encodeIfPresent(itemIDs, forKey: "ItemIds") + try values.encodeIfPresent(mediaSourceID, forKey: "MediaSourceId") + try values.encodeIfPresent(playCommand, forKey: "PlayCommand") + try values.encodeIfPresent(startIndex, forKey: "StartIndex") + try values.encodeIfPresent(startPositionTicks, forKey: "StartPositionTicks") + try values.encodeIfPresent(subtitleStreamIndex, forKey: "SubtitleStreamIndex") + } +} diff --git a/Sources/Entities/PlayRequestDto.swift b/Sources/Entities/PlayRequestDto.swift new file mode 100644 index 000000000..96ff2a9fa --- /dev/null +++ b/Sources/Entities/PlayRequestDto.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class PlayRequestDto. +public struct PlayRequestDto: Codable { + /// Gets or sets the position of the playing item in the queue. + public var playingItemPosition: Int32? + /// Gets or sets the playing queue. + public var playingQueue: [String]? + /// Gets or sets the start position ticks. + public var startPositionTicks: Int64? + + public init(playingItemPosition: Int32? = nil, playingQueue: [String]? = nil, startPositionTicks: Int64? = nil) { + self.playingItemPosition = playingItemPosition + self.playingQueue = playingQueue + self.startPositionTicks = startPositionTicks + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.playingItemPosition = try values.decodeIfPresent(Int32.self, forKey: "PlayingItemPosition") + self.playingQueue = try values.decodeIfPresent([String].self, forKey: "PlayingQueue") + self.startPositionTicks = try values.decodeIfPresent(Int64.self, forKey: "StartPositionTicks") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(playingItemPosition, forKey: "PlayingItemPosition") + try values.encodeIfPresent(playingQueue, forKey: "PlayingQueue") + try values.encodeIfPresent(startPositionTicks, forKey: "StartPositionTicks") + } +} diff --git a/Sources/Entities/PlaybackErrorCode.swift b/Sources/Entities/PlaybackErrorCode.swift new file mode 100644 index 000000000..02fa7a8cd --- /dev/null +++ b/Sources/Entities/PlaybackErrorCode.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum PlaybackErrorCode: String, Codable, CaseIterable { + case notAllowed = "NotAllowed" + case noCompatibleStream = "NoCompatibleStream" + case rateLimitExceeded = "RateLimitExceeded" +} diff --git a/Sources/Entities/PlaybackInfoDto.swift b/Sources/Entities/PlaybackInfoDto.swift new file mode 100644 index 000000000..a8f4ecbc2 --- /dev/null +++ b/Sources/Entities/PlaybackInfoDto.swift @@ -0,0 +1,125 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Plabyback info dto. +public struct PlaybackInfoDto: Codable { + /// Gets or sets a value indicating whether to allow audio stream copy. + public var allowAudioStreamCopy: Bool? + /// Gets or sets a value indicating whether to enable video stream copy. + public var allowVideoStreamCopy: Bool? + /// Gets or sets the audio stream index. + public var audioStreamIndex: Int32? + /// Gets or sets a value indicating whether to auto open the live stream. + public var isAutoOpenLiveStream: Bool? + /// A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. + /// + ///
+ /// + /// Specifically, it defines the supported containers and + /// + /// codecs (video and/or audio, including codec profiles and levels) + /// + /// the device is able to direct play (without transcoding or remuxing), + /// + /// as well as which containers/codecs to transcode to in case it isn't. + public var deviceProfile: DeviceProfile? + /// Gets or sets a value indicating whether to enable direct play. + public var enableDirectPlay: Bool? + /// Gets or sets a value indicating whether to enable direct stream. + public var enableDirectStream: Bool? + /// Gets or sets a value indicating whether to enable transcoding. + public var enableTranscoding: Bool? + /// Gets or sets the live stream id. + public var liveStreamID: String? + /// Gets or sets the max audio channels. + public var maxAudioChannels: Int32? + /// Gets or sets the max streaming bitrate. + public var maxStreamingBitrate: Int32? + /// Gets or sets the media source id. + public var mediaSourceID: String? + /// Gets or sets the start time in ticks. + public var startTimeTicks: Int64? + /// Gets or sets the subtitle stream index. + public var subtitleStreamIndex: Int32? + /// Gets or sets the playback userId. + public var userID: String? + + public init( + allowAudioStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + audioStreamIndex: Int32? = nil, + isAutoOpenLiveStream: Bool? = nil, + deviceProfile: DeviceProfile? = nil, + enableDirectPlay: Bool? = nil, + enableDirectStream: Bool? = nil, + enableTranscoding: Bool? = nil, + liveStreamID: String? = nil, + maxAudioChannels: Int32? = nil, + maxStreamingBitrate: Int32? = nil, + mediaSourceID: String? = nil, + startTimeTicks: Int64? = nil, + subtitleStreamIndex: Int32? = nil, + userID: String? = nil + ) { + self.allowAudioStreamCopy = allowAudioStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.audioStreamIndex = audioStreamIndex + self.isAutoOpenLiveStream = isAutoOpenLiveStream + self.deviceProfile = deviceProfile + self.enableDirectPlay = enableDirectPlay + self.enableDirectStream = enableDirectStream + self.enableTranscoding = enableTranscoding + self.liveStreamID = liveStreamID + self.maxAudioChannels = maxAudioChannels + self.maxStreamingBitrate = maxStreamingBitrate + self.mediaSourceID = mediaSourceID + self.startTimeTicks = startTimeTicks + self.subtitleStreamIndex = subtitleStreamIndex + self.userID = userID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.allowAudioStreamCopy = try values.decodeIfPresent(Bool.self, forKey: "AllowAudioStreamCopy") + self.allowVideoStreamCopy = try values.decodeIfPresent(Bool.self, forKey: "AllowVideoStreamCopy") + self.audioStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "AudioStreamIndex") + self.isAutoOpenLiveStream = try values.decodeIfPresent(Bool.self, forKey: "AutoOpenLiveStream") + self.deviceProfile = try values.decodeIfPresent(DeviceProfile.self, forKey: "DeviceProfile") + self.enableDirectPlay = try values.decodeIfPresent(Bool.self, forKey: "EnableDirectPlay") + self.enableDirectStream = try values.decodeIfPresent(Bool.self, forKey: "EnableDirectStream") + self.enableTranscoding = try values.decodeIfPresent(Bool.self, forKey: "EnableTranscoding") + self.liveStreamID = try values.decodeIfPresent(String.self, forKey: "LiveStreamId") + self.maxAudioChannels = try values.decodeIfPresent(Int32.self, forKey: "MaxAudioChannels") + self.maxStreamingBitrate = try values.decodeIfPresent(Int32.self, forKey: "MaxStreamingBitrate") + self.mediaSourceID = try values.decodeIfPresent(String.self, forKey: "MediaSourceId") + self.startTimeTicks = try values.decodeIfPresent(Int64.self, forKey: "StartTimeTicks") + self.subtitleStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "SubtitleStreamIndex") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(allowAudioStreamCopy, forKey: "AllowAudioStreamCopy") + try values.encodeIfPresent(allowVideoStreamCopy, forKey: "AllowVideoStreamCopy") + try values.encodeIfPresent(audioStreamIndex, forKey: "AudioStreamIndex") + try values.encodeIfPresent(isAutoOpenLiveStream, forKey: "AutoOpenLiveStream") + try values.encodeIfPresent(deviceProfile, forKey: "DeviceProfile") + try values.encodeIfPresent(enableDirectPlay, forKey: "EnableDirectPlay") + try values.encodeIfPresent(enableDirectStream, forKey: "EnableDirectStream") + try values.encodeIfPresent(enableTranscoding, forKey: "EnableTranscoding") + try values.encodeIfPresent(liveStreamID, forKey: "LiveStreamId") + try values.encodeIfPresent(maxAudioChannels, forKey: "MaxAudioChannels") + try values.encodeIfPresent(maxStreamingBitrate, forKey: "MaxStreamingBitrate") + try values.encodeIfPresent(mediaSourceID, forKey: "MediaSourceId") + try values.encodeIfPresent(startTimeTicks, forKey: "StartTimeTicks") + try values.encodeIfPresent(subtitleStreamIndex, forKey: "SubtitleStreamIndex") + try values.encodeIfPresent(userID, forKey: "UserId") + } +} diff --git a/Sources/Entities/PlaybackInfoResponse.swift b/Sources/Entities/PlaybackInfoResponse.swift new file mode 100644 index 000000000..5ac39d6e7 --- /dev/null +++ b/Sources/Entities/PlaybackInfoResponse.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class PlaybackInfoResponse. +public struct PlaybackInfoResponse: Codable { + /// Gets or sets the error code. + public var errorCode: PlaybackErrorCode? + /// Gets or sets the media sources. + public var mediaSources: [MediaSourceInfo]? + /// Gets or sets the play session identifier. + public var playSessionID: String? + + public init(errorCode: PlaybackErrorCode? = nil, mediaSources: [MediaSourceInfo]? = nil, playSessionID: String? = nil) { + self.errorCode = errorCode + self.mediaSources = mediaSources + self.playSessionID = playSessionID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.errorCode = try values.decodeIfPresent(PlaybackErrorCode.self, forKey: "ErrorCode") + self.mediaSources = try values.decodeIfPresent([MediaSourceInfo].self, forKey: "MediaSources") + self.playSessionID = try values.decodeIfPresent(String.self, forKey: "PlaySessionId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(errorCode, forKey: "ErrorCode") + try values.encodeIfPresent(mediaSources, forKey: "MediaSources") + try values.encodeIfPresent(playSessionID, forKey: "PlaySessionId") + } +} diff --git a/Sources/Entities/PlaybackProgressInfo.swift b/Sources/Entities/PlaybackProgressInfo.swift new file mode 100644 index 000000000..adcb27485 --- /dev/null +++ b/Sources/Entities/PlaybackProgressInfo.swift @@ -0,0 +1,140 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class PlaybackProgressInfo. +public struct PlaybackProgressInfo: Codable { + public var aspectRatio: String? + /// Gets or sets the index of the audio stream. + public var audioStreamIndex: Int32? + public var brightness: Int32? + /// Gets or sets a value indicating whether this instance can seek. + public var canSeek: Bool? + /// Gets or sets a value indicating whether this instance is muted. + public var isMuted: Bool? + /// Gets or sets a value indicating whether this instance is paused. + public var isPaused: Bool? + /// Gets or sets the item. + public var item: BaseItemDto? + /// Gets or sets the item identifier. + public var itemID: String? + /// Gets or sets the live stream identifier. + public var liveStreamID: String? + /// Gets or sets the media version identifier. + public var mediaSourceID: String? + public var nowPlayingQueue: [QueueItem]? + /// Gets or sets the play method. + public var playMethod: PlayMethod? + /// Gets or sets the play session identifier. + public var playSessionID: String? + public var playbackStartTimeTicks: Int64? + public var playlistItemID: String? + /// Gets or sets the position ticks. + public var positionTicks: Int64? + /// Gets or sets the repeat mode. + public var repeatMode: RepeatMode? + /// Gets or sets the session id. + public var sessionID: String? + /// Gets or sets the index of the subtitle stream. + public var subtitleStreamIndex: Int32? + /// Gets or sets the volume level. + public var volumeLevel: Int32? + + public init( + aspectRatio: String? = nil, + audioStreamIndex: Int32? = nil, + brightness: Int32? = nil, + canSeek: Bool? = nil, + isMuted: Bool? = nil, + isPaused: Bool? = nil, + item: BaseItemDto? = nil, + itemID: String? = nil, + liveStreamID: String? = nil, + mediaSourceID: String? = nil, + nowPlayingQueue: [QueueItem]? = nil, + playMethod: PlayMethod? = nil, + playSessionID: String? = nil, + playbackStartTimeTicks: Int64? = nil, + playlistItemID: String? = nil, + positionTicks: Int64? = nil, + repeatMode: RepeatMode? = nil, + sessionID: String? = nil, + subtitleStreamIndex: Int32? = nil, + volumeLevel: Int32? = nil + ) { + self.aspectRatio = aspectRatio + self.audioStreamIndex = audioStreamIndex + self.brightness = brightness + self.canSeek = canSeek + self.isMuted = isMuted + self.isPaused = isPaused + self.item = item + self.itemID = itemID + self.liveStreamID = liveStreamID + self.mediaSourceID = mediaSourceID + self.nowPlayingQueue = nowPlayingQueue + self.playMethod = playMethod + self.playSessionID = playSessionID + self.playbackStartTimeTicks = playbackStartTimeTicks + self.playlistItemID = playlistItemID + self.positionTicks = positionTicks + self.repeatMode = repeatMode + self.sessionID = sessionID + self.subtitleStreamIndex = subtitleStreamIndex + self.volumeLevel = volumeLevel + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.aspectRatio = try values.decodeIfPresent(String.self, forKey: "AspectRatio") + self.audioStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "AudioStreamIndex") + self.brightness = try values.decodeIfPresent(Int32.self, forKey: "Brightness") + self.canSeek = try values.decodeIfPresent(Bool.self, forKey: "CanSeek") + self.isMuted = try values.decodeIfPresent(Bool.self, forKey: "IsMuted") + self.isPaused = try values.decodeIfPresent(Bool.self, forKey: "IsPaused") + self.item = try values.decodeIfPresent(BaseItemDto.self, forKey: "Item") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.liveStreamID = try values.decodeIfPresent(String.self, forKey: "LiveStreamId") + self.mediaSourceID = try values.decodeIfPresent(String.self, forKey: "MediaSourceId") + self.nowPlayingQueue = try values.decodeIfPresent([QueueItem].self, forKey: "NowPlayingQueue") + self.playMethod = try values.decodeIfPresent(PlayMethod.self, forKey: "PlayMethod") + self.playSessionID = try values.decodeIfPresent(String.self, forKey: "PlaySessionId") + self.playbackStartTimeTicks = try values.decodeIfPresent(Int64.self, forKey: "PlaybackStartTimeTicks") + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + self.positionTicks = try values.decodeIfPresent(Int64.self, forKey: "PositionTicks") + self.repeatMode = try values.decodeIfPresent(RepeatMode.self, forKey: "RepeatMode") + self.sessionID = try values.decodeIfPresent(String.self, forKey: "SessionId") + self.subtitleStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "SubtitleStreamIndex") + self.volumeLevel = try values.decodeIfPresent(Int32.self, forKey: "VolumeLevel") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(aspectRatio, forKey: "AspectRatio") + try values.encodeIfPresent(audioStreamIndex, forKey: "AudioStreamIndex") + try values.encodeIfPresent(brightness, forKey: "Brightness") + try values.encodeIfPresent(canSeek, forKey: "CanSeek") + try values.encodeIfPresent(isMuted, forKey: "IsMuted") + try values.encodeIfPresent(isPaused, forKey: "IsPaused") + try values.encodeIfPresent(item, forKey: "Item") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(liveStreamID, forKey: "LiveStreamId") + try values.encodeIfPresent(mediaSourceID, forKey: "MediaSourceId") + try values.encodeIfPresent(nowPlayingQueue, forKey: "NowPlayingQueue") + try values.encodeIfPresent(playMethod, forKey: "PlayMethod") + try values.encodeIfPresent(playSessionID, forKey: "PlaySessionId") + try values.encodeIfPresent(playbackStartTimeTicks, forKey: "PlaybackStartTimeTicks") + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + try values.encodeIfPresent(positionTicks, forKey: "PositionTicks") + try values.encodeIfPresent(repeatMode, forKey: "RepeatMode") + try values.encodeIfPresent(sessionID, forKey: "SessionId") + try values.encodeIfPresent(subtitleStreamIndex, forKey: "SubtitleStreamIndex") + try values.encodeIfPresent(volumeLevel, forKey: "VolumeLevel") + } +} diff --git a/Sources/Entities/PlaybackStartInfo.swift b/Sources/Entities/PlaybackStartInfo.swift new file mode 100644 index 000000000..1edc9c424 --- /dev/null +++ b/Sources/Entities/PlaybackStartInfo.swift @@ -0,0 +1,140 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class PlaybackStartInfo. +public struct PlaybackStartInfo: Codable { + public var aspectRatio: String? + /// Gets or sets the index of the audio stream. + public var audioStreamIndex: Int32? + public var brightness: Int32? + /// Gets or sets a value indicating whether this instance can seek. + public var canSeek: Bool? + /// Gets or sets a value indicating whether this instance is muted. + public var isMuted: Bool? + /// Gets or sets a value indicating whether this instance is paused. + public var isPaused: Bool? + /// Gets or sets the item. + public var item: BaseItemDto? + /// Gets or sets the item identifier. + public var itemID: String? + /// Gets or sets the live stream identifier. + public var liveStreamID: String? + /// Gets or sets the media version identifier. + public var mediaSourceID: String? + public var nowPlayingQueue: [QueueItem]? + /// Gets or sets the play method. + public var playMethod: PlayMethod? + /// Gets or sets the play session identifier. + public var playSessionID: String? + public var playbackStartTimeTicks: Int64? + public var playlistItemID: String? + /// Gets or sets the position ticks. + public var positionTicks: Int64? + /// Gets or sets the repeat mode. + public var repeatMode: RepeatMode? + /// Gets or sets the session id. + public var sessionID: String? + /// Gets or sets the index of the subtitle stream. + public var subtitleStreamIndex: Int32? + /// Gets or sets the volume level. + public var volumeLevel: Int32? + + public init( + aspectRatio: String? = nil, + audioStreamIndex: Int32? = nil, + brightness: Int32? = nil, + canSeek: Bool? = nil, + isMuted: Bool? = nil, + isPaused: Bool? = nil, + item: BaseItemDto? = nil, + itemID: String? = nil, + liveStreamID: String? = nil, + mediaSourceID: String? = nil, + nowPlayingQueue: [QueueItem]? = nil, + playMethod: PlayMethod? = nil, + playSessionID: String? = nil, + playbackStartTimeTicks: Int64? = nil, + playlistItemID: String? = nil, + positionTicks: Int64? = nil, + repeatMode: RepeatMode? = nil, + sessionID: String? = nil, + subtitleStreamIndex: Int32? = nil, + volumeLevel: Int32? = nil + ) { + self.aspectRatio = aspectRatio + self.audioStreamIndex = audioStreamIndex + self.brightness = brightness + self.canSeek = canSeek + self.isMuted = isMuted + self.isPaused = isPaused + self.item = item + self.itemID = itemID + self.liveStreamID = liveStreamID + self.mediaSourceID = mediaSourceID + self.nowPlayingQueue = nowPlayingQueue + self.playMethod = playMethod + self.playSessionID = playSessionID + self.playbackStartTimeTicks = playbackStartTimeTicks + self.playlistItemID = playlistItemID + self.positionTicks = positionTicks + self.repeatMode = repeatMode + self.sessionID = sessionID + self.subtitleStreamIndex = subtitleStreamIndex + self.volumeLevel = volumeLevel + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.aspectRatio = try values.decodeIfPresent(String.self, forKey: "AspectRatio") + self.audioStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "AudioStreamIndex") + self.brightness = try values.decodeIfPresent(Int32.self, forKey: "Brightness") + self.canSeek = try values.decodeIfPresent(Bool.self, forKey: "CanSeek") + self.isMuted = try values.decodeIfPresent(Bool.self, forKey: "IsMuted") + self.isPaused = try values.decodeIfPresent(Bool.self, forKey: "IsPaused") + self.item = try values.decodeIfPresent(BaseItemDto.self, forKey: "Item") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.liveStreamID = try values.decodeIfPresent(String.self, forKey: "LiveStreamId") + self.mediaSourceID = try values.decodeIfPresent(String.self, forKey: "MediaSourceId") + self.nowPlayingQueue = try values.decodeIfPresent([QueueItem].self, forKey: "NowPlayingQueue") + self.playMethod = try values.decodeIfPresent(PlayMethod.self, forKey: "PlayMethod") + self.playSessionID = try values.decodeIfPresent(String.self, forKey: "PlaySessionId") + self.playbackStartTimeTicks = try values.decodeIfPresent(Int64.self, forKey: "PlaybackStartTimeTicks") + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + self.positionTicks = try values.decodeIfPresent(Int64.self, forKey: "PositionTicks") + self.repeatMode = try values.decodeIfPresent(RepeatMode.self, forKey: "RepeatMode") + self.sessionID = try values.decodeIfPresent(String.self, forKey: "SessionId") + self.subtitleStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "SubtitleStreamIndex") + self.volumeLevel = try values.decodeIfPresent(Int32.self, forKey: "VolumeLevel") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(aspectRatio, forKey: "AspectRatio") + try values.encodeIfPresent(audioStreamIndex, forKey: "AudioStreamIndex") + try values.encodeIfPresent(brightness, forKey: "Brightness") + try values.encodeIfPresent(canSeek, forKey: "CanSeek") + try values.encodeIfPresent(isMuted, forKey: "IsMuted") + try values.encodeIfPresent(isPaused, forKey: "IsPaused") + try values.encodeIfPresent(item, forKey: "Item") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(liveStreamID, forKey: "LiveStreamId") + try values.encodeIfPresent(mediaSourceID, forKey: "MediaSourceId") + try values.encodeIfPresent(nowPlayingQueue, forKey: "NowPlayingQueue") + try values.encodeIfPresent(playMethod, forKey: "PlayMethod") + try values.encodeIfPresent(playSessionID, forKey: "PlaySessionId") + try values.encodeIfPresent(playbackStartTimeTicks, forKey: "PlaybackStartTimeTicks") + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + try values.encodeIfPresent(positionTicks, forKey: "PositionTicks") + try values.encodeIfPresent(repeatMode, forKey: "RepeatMode") + try values.encodeIfPresent(sessionID, forKey: "SessionId") + try values.encodeIfPresent(subtitleStreamIndex, forKey: "SubtitleStreamIndex") + try values.encodeIfPresent(volumeLevel, forKey: "VolumeLevel") + } +} diff --git a/Sources/Entities/PlaybackStopInfo.swift b/Sources/Entities/PlaybackStopInfo.swift new file mode 100644 index 000000000..040cc8c4e --- /dev/null +++ b/Sources/Entities/PlaybackStopInfo.swift @@ -0,0 +1,88 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class PlaybackStopInfo. +public struct PlaybackStopInfo: Codable { + /// Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed. + public var isFailed: Bool? + /// Gets or sets the item. + public var item: BaseItemDto? + /// Gets or sets the item identifier. + public var itemID: String? + /// Gets or sets the live stream identifier. + public var liveStreamID: String? + /// Gets or sets the media version identifier. + public var mediaSourceID: String? + public var nextMediaType: String? + public var nowPlayingQueue: [QueueItem]? + /// Gets or sets the play session identifier. + public var playSessionID: String? + public var playlistItemID: String? + /// Gets or sets the position ticks. + public var positionTicks: Int64? + /// Gets or sets the session id. + public var sessionID: String? + + public init( + isFailed: Bool? = nil, + item: BaseItemDto? = nil, + itemID: String? = nil, + liveStreamID: String? = nil, + mediaSourceID: String? = nil, + nextMediaType: String? = nil, + nowPlayingQueue: [QueueItem]? = nil, + playSessionID: String? = nil, + playlistItemID: String? = nil, + positionTicks: Int64? = nil, + sessionID: String? = nil + ) { + self.isFailed = isFailed + self.item = item + self.itemID = itemID + self.liveStreamID = liveStreamID + self.mediaSourceID = mediaSourceID + self.nextMediaType = nextMediaType + self.nowPlayingQueue = nowPlayingQueue + self.playSessionID = playSessionID + self.playlistItemID = playlistItemID + self.positionTicks = positionTicks + self.sessionID = sessionID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isFailed = try values.decodeIfPresent(Bool.self, forKey: "Failed") + self.item = try values.decodeIfPresent(BaseItemDto.self, forKey: "Item") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.liveStreamID = try values.decodeIfPresent(String.self, forKey: "LiveStreamId") + self.mediaSourceID = try values.decodeIfPresent(String.self, forKey: "MediaSourceId") + self.nextMediaType = try values.decodeIfPresent(String.self, forKey: "NextMediaType") + self.nowPlayingQueue = try values.decodeIfPresent([QueueItem].self, forKey: "NowPlayingQueue") + self.playSessionID = try values.decodeIfPresent(String.self, forKey: "PlaySessionId") + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + self.positionTicks = try values.decodeIfPresent(Int64.self, forKey: "PositionTicks") + self.sessionID = try values.decodeIfPresent(String.self, forKey: "SessionId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isFailed, forKey: "Failed") + try values.encodeIfPresent(item, forKey: "Item") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(liveStreamID, forKey: "LiveStreamId") + try values.encodeIfPresent(mediaSourceID, forKey: "MediaSourceId") + try values.encodeIfPresent(nextMediaType, forKey: "NextMediaType") + try values.encodeIfPresent(nowPlayingQueue, forKey: "NowPlayingQueue") + try values.encodeIfPresent(playSessionID, forKey: "PlaySessionId") + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + try values.encodeIfPresent(positionTicks, forKey: "PositionTicks") + try values.encodeIfPresent(sessionID, forKey: "SessionId") + } +} diff --git a/Sources/Entities/PlayerStateInfo.swift b/Sources/Entities/PlayerStateInfo.swift new file mode 100644 index 000000000..49b2d3805 --- /dev/null +++ b/Sources/Entities/PlayerStateInfo.swift @@ -0,0 +1,90 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct PlayerStateInfo: Codable { + /// Gets or sets the index of the now playing audio stream. + public var audioStreamIndex: Int32? + /// Gets or sets a value indicating whether this instance can seek. + public var canSeek: Bool? + /// Gets or sets a value indicating whether this instance is muted. + public var isMuted: Bool? + /// Gets or sets a value indicating whether this instance is paused. + public var isPaused: Bool? + /// Gets or sets the now playing live stream identifier. + public var liveStreamID: String? + /// Gets or sets the now playing media version identifier. + public var mediaSourceID: String? + /// Gets or sets the play method. + public var playMethod: PlayMethod? + /// Gets or sets the now playing position ticks. + public var positionTicks: Int64? + /// Gets or sets the repeat mode. + public var repeatMode: RepeatMode? + /// Gets or sets the index of the now playing subtitle stream. + public var subtitleStreamIndex: Int32? + /// Gets or sets the volume level. + public var volumeLevel: Int32? + + public init( + audioStreamIndex: Int32? = nil, + canSeek: Bool? = nil, + isMuted: Bool? = nil, + isPaused: Bool? = nil, + liveStreamID: String? = nil, + mediaSourceID: String? = nil, + playMethod: PlayMethod? = nil, + positionTicks: Int64? = nil, + repeatMode: RepeatMode? = nil, + subtitleStreamIndex: Int32? = nil, + volumeLevel: Int32? = nil + ) { + self.audioStreamIndex = audioStreamIndex + self.canSeek = canSeek + self.isMuted = isMuted + self.isPaused = isPaused + self.liveStreamID = liveStreamID + self.mediaSourceID = mediaSourceID + self.playMethod = playMethod + self.positionTicks = positionTicks + self.repeatMode = repeatMode + self.subtitleStreamIndex = subtitleStreamIndex + self.volumeLevel = volumeLevel + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.audioStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "AudioStreamIndex") + self.canSeek = try values.decodeIfPresent(Bool.self, forKey: "CanSeek") + self.isMuted = try values.decodeIfPresent(Bool.self, forKey: "IsMuted") + self.isPaused = try values.decodeIfPresent(Bool.self, forKey: "IsPaused") + self.liveStreamID = try values.decodeIfPresent(String.self, forKey: "LiveStreamId") + self.mediaSourceID = try values.decodeIfPresent(String.self, forKey: "MediaSourceId") + self.playMethod = try values.decodeIfPresent(PlayMethod.self, forKey: "PlayMethod") + self.positionTicks = try values.decodeIfPresent(Int64.self, forKey: "PositionTicks") + self.repeatMode = try values.decodeIfPresent(RepeatMode.self, forKey: "RepeatMode") + self.subtitleStreamIndex = try values.decodeIfPresent(Int32.self, forKey: "SubtitleStreamIndex") + self.volumeLevel = try values.decodeIfPresent(Int32.self, forKey: "VolumeLevel") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(audioStreamIndex, forKey: "AudioStreamIndex") + try values.encodeIfPresent(canSeek, forKey: "CanSeek") + try values.encodeIfPresent(isMuted, forKey: "IsMuted") + try values.encodeIfPresent(isPaused, forKey: "IsPaused") + try values.encodeIfPresent(liveStreamID, forKey: "LiveStreamId") + try values.encodeIfPresent(mediaSourceID, forKey: "MediaSourceId") + try values.encodeIfPresent(playMethod, forKey: "PlayMethod") + try values.encodeIfPresent(positionTicks, forKey: "PositionTicks") + try values.encodeIfPresent(repeatMode, forKey: "RepeatMode") + try values.encodeIfPresent(subtitleStreamIndex, forKey: "SubtitleStreamIndex") + try values.encodeIfPresent(volumeLevel, forKey: "VolumeLevel") + } +} diff --git a/Sources/Entities/PlaylistCreationResult.swift b/Sources/Entities/PlaylistCreationResult.swift new file mode 100644 index 000000000..14048eba8 --- /dev/null +++ b/Sources/Entities/PlaylistCreationResult.swift @@ -0,0 +1,27 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct PlaylistCreationResult: Codable, Identifiable { + public var id: String? + + public init(id: String? = nil) { + self.id = id + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + } +} diff --git a/Sources/Entities/PlaystateCommand.swift b/Sources/Entities/PlaystateCommand.swift new file mode 100644 index 000000000..27c83574f --- /dev/null +++ b/Sources/Entities/PlaystateCommand.swift @@ -0,0 +1,22 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum PlaystateCommand. +public enum PlaystateCommand: String, Codable, CaseIterable { + case stop = "Stop" + case pause = "Pause" + case unpause = "Unpause" + case nextTrack = "NextTrack" + case previousTrack = "PreviousTrack" + case seek = "Seek" + case rewind = "Rewind" + case fastForward = "FastForward" + case playPause = "PlayPause" +} diff --git a/Sources/Entities/PlaystateRequest.swift b/Sources/Entities/PlaystateRequest.swift new file mode 100644 index 000000000..0bb95f6d0 --- /dev/null +++ b/Sources/Entities/PlaystateRequest.swift @@ -0,0 +1,37 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct PlaystateRequest: Codable { + /// Enum PlaystateCommand. + public var command: PlaystateCommand? + /// Gets or sets the controlling user identifier. + public var controllingUserID: String? + public var seekPositionTicks: Int64? + + public init(command: PlaystateCommand? = nil, controllingUserID: String? = nil, seekPositionTicks: Int64? = nil) { + self.command = command + self.controllingUserID = controllingUserID + self.seekPositionTicks = seekPositionTicks + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.command = try values.decodeIfPresent(PlaystateCommand.self, forKey: "Command") + self.controllingUserID = try values.decodeIfPresent(String.self, forKey: "ControllingUserId") + self.seekPositionTicks = try values.decodeIfPresent(Int64.self, forKey: "SeekPositionTicks") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(command, forKey: "Command") + try values.encodeIfPresent(controllingUserID, forKey: "ControllingUserId") + try values.encodeIfPresent(seekPositionTicks, forKey: "SeekPositionTicks") + } +} diff --git a/Sources/Entities/PluginInfo.swift b/Sources/Entities/PluginInfo.swift new file mode 100644 index 000000000..f30fd85ae --- /dev/null +++ b/Sources/Entities/PluginInfo.swift @@ -0,0 +1,73 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// This is a serializable stub class that is used by the api to provide information about installed plugins. +public struct PluginInfo: Codable, Identifiable { + /// Gets or sets a value indicating whether the plugin can be uninstalled. + public var canUninstall: Bool? + /// Gets or sets the name of the configuration file. + public var configurationFileName: String? + /// Gets or sets the description. + public var description: String? + /// Gets or sets a value indicating whether this plugin has a valid image. + public var hasImage: Bool? + /// Gets or sets the unique id. + public var id: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets a value indicating the status of the plugin. + public var status: PluginStatus? + /// Gets or sets the version. + public var version: String? + + public init( + canUninstall: Bool? = nil, + configurationFileName: String? = nil, + description: String? = nil, + hasImage: Bool? = nil, + id: String? = nil, + name: String? = nil, + status: PluginStatus? = nil, + version: String? = nil + ) { + self.canUninstall = canUninstall + self.configurationFileName = configurationFileName + self.description = description + self.hasImage = hasImage + self.id = id + self.name = name + self.status = status + self.version = version + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.canUninstall = try values.decodeIfPresent(Bool.self, forKey: "CanUninstall") + self.configurationFileName = try values.decodeIfPresent(String.self, forKey: "ConfigurationFileName") + self.description = try values.decodeIfPresent(String.self, forKey: "Description") + self.hasImage = try values.decodeIfPresent(Bool.self, forKey: "HasImage") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.status = try values.decodeIfPresent(PluginStatus.self, forKey: "Status") + self.version = try values.decodeIfPresent(String.self, forKey: "Version") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(canUninstall, forKey: "CanUninstall") + try values.encodeIfPresent(configurationFileName, forKey: "ConfigurationFileName") + try values.encodeIfPresent(description, forKey: "Description") + try values.encodeIfPresent(hasImage, forKey: "HasImage") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(status, forKey: "Status") + try values.encodeIfPresent(version, forKey: "Version") + } +} diff --git a/Sources/Entities/PluginStatus.swift b/Sources/Entities/PluginStatus.swift new file mode 100644 index 000000000..c027e3c05 --- /dev/null +++ b/Sources/Entities/PluginStatus.swift @@ -0,0 +1,20 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Plugin load status. +public enum PluginStatus: String, Codable, CaseIterable { + case active = "Active" + case restart = "Restart" + case deleted = "Deleted" + case superceded = "Superceded" + case malfunctioned = "Malfunctioned" + case notSupported = "NotSupported" + case disabled = "Disabled" +} diff --git a/Sources/Entities/PreviousItemRequestDto.swift b/Sources/Entities/PreviousItemRequestDto.swift new file mode 100644 index 000000000..401d3ebb0 --- /dev/null +++ b/Sources/Entities/PreviousItemRequestDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class PreviousItemRequestDto. +public struct PreviousItemRequestDto: Codable { + /// Gets or sets the playing item identifier. + public var playlistItemID: String? + + public init(playlistItemID: String? = nil) { + self.playlistItemID = playlistItemID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + } +} diff --git a/Sources/Entities/ProfileCondition.swift b/Sources/Entities/ProfileCondition.swift new file mode 100644 index 000000000..60a0d52de --- /dev/null +++ b/Sources/Entities/ProfileCondition.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ProfileCondition: Codable { + public var condition: ProfileConditionType? + public var isRequired: Bool? + public var property: ProfileConditionValue? + public var value: String? + + public init( + condition: ProfileConditionType? = nil, + isRequired: Bool? = nil, + property: ProfileConditionValue? = nil, + value: String? = nil + ) { + self.condition = condition + self.isRequired = isRequired + self.property = property + self.value = value + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.condition = try values.decodeIfPresent(ProfileConditionType.self, forKey: "Condition") + self.isRequired = try values.decodeIfPresent(Bool.self, forKey: "IsRequired") + self.property = try values.decodeIfPresent(ProfileConditionValue.self, forKey: "Property") + self.value = try values.decodeIfPresent(String.self, forKey: "Value") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(condition, forKey: "Condition") + try values.encodeIfPresent(isRequired, forKey: "IsRequired") + try values.encodeIfPresent(property, forKey: "Property") + try values.encodeIfPresent(value, forKey: "Value") + } +} diff --git a/Sources/Entities/ProfileConditionType.swift b/Sources/Entities/ProfileConditionType.swift new file mode 100644 index 000000000..42946d58c --- /dev/null +++ b/Sources/Entities/ProfileConditionType.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum ProfileConditionType: String, Codable, CaseIterable { + case equals = "Equals" + case notEquals = "NotEquals" + case lessThanEqual = "LessThanEqual" + case greaterThanEqual = "GreaterThanEqual" + case equalsAny = "EqualsAny" +} diff --git a/Sources/JellyfinAPI/Models/ProfileConditionValue.swift b/Sources/Entities/ProfileConditionValue.swift similarity index 77% rename from Sources/JellyfinAPI/Models/ProfileConditionValue.swift rename to Sources/Entities/ProfileConditionValue.swift index c21b4bf19..95c34e84d 100644 --- a/Sources/JellyfinAPI/Models/ProfileConditionValue.swift +++ b/Sources/Entities/ProfileConditionValue.swift @@ -1,14 +1,12 @@ // -// ProfileConditionValue.swift +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. // -// Generated by openapi-generator -// https://openapi-generator.tech +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors // import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif public enum ProfileConditionValue: String, Codable, CaseIterable { case audioChannels = "AudioChannels" @@ -34,4 +32,5 @@ public enum ProfileConditionValue: String, Codable, CaseIterable { case isInterlaced = "IsInterlaced" case audioSampleRate = "AudioSampleRate" case audioBitDepth = "AudioBitDepth" + case videoRangeType = "VideoRangeType" } diff --git a/Sources/Entities/ProgramAudio.swift b/Sources/Entities/ProgramAudio.swift new file mode 100644 index 000000000..82e98d5c5 --- /dev/null +++ b/Sources/Entities/ProgramAudio.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum ProgramAudio: String, Codable, CaseIterable { + case mono = "Mono" + case stereo = "Stereo" + case dolby = "Dolby" + case dolbyDigital = "DolbyDigital" + case thx = "Thx" + case atmos = "Atmos" +} diff --git a/Sources/Entities/PublicSystemInfo.swift b/Sources/Entities/PublicSystemInfo.swift new file mode 100644 index 000000000..971c12df0 --- /dev/null +++ b/Sources/Entities/PublicSystemInfo.swift @@ -0,0 +1,66 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct PublicSystemInfo: Codable, Identifiable { + /// Gets or sets the id. + public var id: String? + /// Gets or sets the local address. + public var localAddress: String? + /// Gets or sets the operating system. + public var operatingSystem: String? + /// Gets or sets the product name. This is the AssemblyProduct name. + public var productName: String? + /// Gets or sets the name of the server. + public var serverName: String? + /// Gets or sets a value indicating whether the startup wizard is completed. + public var isStartupWizardCompleted: Bool? + /// Gets or sets the server version. + public var version: String? + + public init( + id: String? = nil, + localAddress: String? = nil, + operatingSystem: String? = nil, + productName: String? = nil, + serverName: String? = nil, + isStartupWizardCompleted: Bool? = nil, + version: String? = nil + ) { + self.id = id + self.localAddress = localAddress + self.operatingSystem = operatingSystem + self.productName = productName + self.serverName = serverName + self.isStartupWizardCompleted = isStartupWizardCompleted + self.version = version + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.localAddress = try values.decodeIfPresent(String.self, forKey: "LocalAddress") + self.operatingSystem = try values.decodeIfPresent(String.self, forKey: "OperatingSystem") + self.productName = try values.decodeIfPresent(String.self, forKey: "ProductName") + self.serverName = try values.decodeIfPresent(String.self, forKey: "ServerName") + self.isStartupWizardCompleted = try values.decodeIfPresent(Bool.self, forKey: "StartupWizardCompleted") + self.version = try values.decodeIfPresent(String.self, forKey: "Version") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(localAddress, forKey: "LocalAddress") + try values.encodeIfPresent(operatingSystem, forKey: "OperatingSystem") + try values.encodeIfPresent(productName, forKey: "ProductName") + try values.encodeIfPresent(serverName, forKey: "ServerName") + try values.encodeIfPresent(isStartupWizardCompleted, forKey: "StartupWizardCompleted") + try values.encodeIfPresent(version, forKey: "Version") + } +} diff --git a/Sources/Entities/QueryFilters.swift b/Sources/Entities/QueryFilters.swift new file mode 100644 index 000000000..211d42140 --- /dev/null +++ b/Sources/Entities/QueryFilters.swift @@ -0,0 +1,31 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct QueryFilters: Codable { + public var genres: [NameGuidPair]? + public var tags: [String]? + + public init(genres: [NameGuidPair]? = nil, tags: [String]? = nil) { + self.genres = genres + self.tags = tags + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.genres = try values.decodeIfPresent([NameGuidPair].self, forKey: "Genres") + self.tags = try values.decodeIfPresent([String].self, forKey: "Tags") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(genres, forKey: "Genres") + try values.encodeIfPresent(tags, forKey: "Tags") + } +} diff --git a/Sources/Entities/QueryFiltersLegacy.swift b/Sources/Entities/QueryFiltersLegacy.swift new file mode 100644 index 000000000..db9d4d3af --- /dev/null +++ b/Sources/Entities/QueryFiltersLegacy.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct QueryFiltersLegacy: Codable { + public var genres: [String]? + public var officialRatings: [String]? + public var tags: [String]? + public var years: [Int32]? + + public init(genres: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int32]? = nil) { + self.genres = genres + self.officialRatings = officialRatings + self.tags = tags + self.years = years + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.genres = try values.decodeIfPresent([String].self, forKey: "Genres") + self.officialRatings = try values.decodeIfPresent([String].self, forKey: "OfficialRatings") + self.tags = try values.decodeIfPresent([String].self, forKey: "Tags") + self.years = try values.decodeIfPresent([Int32].self, forKey: "Years") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(genres, forKey: "Genres") + try values.encodeIfPresent(officialRatings, forKey: "OfficialRatings") + try values.encodeIfPresent(tags, forKey: "Tags") + try values.encodeIfPresent(years, forKey: "Years") + } +} diff --git a/Sources/Entities/QueueItem.swift b/Sources/Entities/QueueItem.swift new file mode 100644 index 000000000..a118716e5 --- /dev/null +++ b/Sources/Entities/QueueItem.swift @@ -0,0 +1,31 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct QueueItem: Codable, Identifiable { + public var id: String? + public var playlistItemID: String? + + public init(id: String? = nil, playlistItemID: String? = nil) { + self.id = id + self.playlistItemID = playlistItemID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + } +} diff --git a/Sources/Entities/QueueRequestDto.swift b/Sources/Entities/QueueRequestDto.swift new file mode 100644 index 000000000..a85aa60ba --- /dev/null +++ b/Sources/Entities/QueueRequestDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class QueueRequestDto. +public struct QueueRequestDto: Codable { + /// Gets or sets the items to enqueue. + public var itemIDs: [String]? + /// Enum GroupQueueMode. + public var mode: GroupQueueMode? + + public init(itemIDs: [String]? = nil, mode: GroupQueueMode? = nil) { + self.itemIDs = itemIDs + self.mode = mode + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.itemIDs = try values.decodeIfPresent([String].self, forKey: "ItemIds") + self.mode = try values.decodeIfPresent(GroupQueueMode.self, forKey: "Mode") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(itemIDs, forKey: "ItemIds") + try values.encodeIfPresent(mode, forKey: "Mode") + } +} diff --git a/Sources/Entities/QuickConnectDto.swift b/Sources/Entities/QuickConnectDto.swift new file mode 100644 index 000000000..21143efa6 --- /dev/null +++ b/Sources/Entities/QuickConnectDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The quick connect request body. +public struct QuickConnectDto: Codable { + /// Gets or sets the quick connect secret. + public var secret: String + + public init(secret: String) { + self.secret = secret + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.secret = try values.decode(String.self, forKey: "Secret") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encode(secret, forKey: "Secret") + } +} diff --git a/Sources/Entities/QuickConnectResult.swift b/Sources/Entities/QuickConnectResult.swift new file mode 100644 index 000000000..7cfc7008d --- /dev/null +++ b/Sources/Entities/QuickConnectResult.swift @@ -0,0 +1,73 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Stores the state of an quick connect request. +public struct QuickConnectResult: Codable { + /// Gets the requesting app name. + public var appName: String? + /// Gets the requesting app version. + public var appVersion: String? + /// Gets or sets a value indicating whether this request is authorized. + public var isAuthenticated: Bool? + /// Gets the user facing code used so the user can quickly differentiate this request from others. + public var code: String? + /// Gets or sets the DateTime that this request was created. + public var dateAdded: Date? + /// Gets the requesting device id. + public var deviceID: String? + /// Gets the requesting device name. + public var deviceName: String? + /// Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information. + public var secret: String? + + public init( + appName: String? = nil, + appVersion: String? = nil, + isAuthenticated: Bool? = nil, + code: String? = nil, + dateAdded: Date? = nil, + deviceID: String? = nil, + deviceName: String? = nil, + secret: String? = nil + ) { + self.appName = appName + self.appVersion = appVersion + self.isAuthenticated = isAuthenticated + self.code = code + self.dateAdded = dateAdded + self.deviceID = deviceID + self.deviceName = deviceName + self.secret = secret + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.appName = try values.decodeIfPresent(String.self, forKey: "AppName") + self.appVersion = try values.decodeIfPresent(String.self, forKey: "AppVersion") + self.isAuthenticated = try values.decodeIfPresent(Bool.self, forKey: "Authenticated") + self.code = try values.decodeIfPresent(String.self, forKey: "Code") + self.dateAdded = try values.decodeIfPresent(Date.self, forKey: "DateAdded") + self.deviceID = try values.decodeIfPresent(String.self, forKey: "DeviceId") + self.deviceName = try values.decodeIfPresent(String.self, forKey: "DeviceName") + self.secret = try values.decodeIfPresent(String.self, forKey: "Secret") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(appName, forKey: "AppName") + try values.encodeIfPresent(appVersion, forKey: "AppVersion") + try values.encodeIfPresent(isAuthenticated, forKey: "Authenticated") + try values.encodeIfPresent(code, forKey: "Code") + try values.encodeIfPresent(dateAdded, forKey: "DateAdded") + try values.encodeIfPresent(deviceID, forKey: "DeviceId") + try values.encodeIfPresent(deviceName, forKey: "DeviceName") + try values.encodeIfPresent(secret, forKey: "Secret") + } +} diff --git a/Sources/Entities/RatingType.swift b/Sources/Entities/RatingType.swift new file mode 100644 index 000000000..d7f36a120 --- /dev/null +++ b/Sources/Entities/RatingType.swift @@ -0,0 +1,14 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum RatingType: String, Codable, CaseIterable { + case score = "Score" + case likes = "Likes" +} diff --git a/Sources/Entities/ReadyRequestDto.swift b/Sources/Entities/ReadyRequestDto.swift new file mode 100644 index 000000000..667fa5782 --- /dev/null +++ b/Sources/Entities/ReadyRequestDto.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class ReadyRequest. +public struct ReadyRequestDto: Codable { + /// Gets or sets a value indicating whether the client playback is unpaused. + public var isPlaying: Bool? + /// Gets or sets the playlist item identifier of the playing item. + public var playlistItemID: String? + /// Gets or sets the position ticks. + public var positionTicks: Int64? + /// Gets or sets when the request has been made by the client. + public var when: Date? + + public init(isPlaying: Bool? = nil, playlistItemID: String? = nil, positionTicks: Int64? = nil, when: Date? = nil) { + self.isPlaying = isPlaying + self.playlistItemID = playlistItemID + self.positionTicks = positionTicks + self.when = when + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isPlaying = try values.decodeIfPresent(Bool.self, forKey: "IsPlaying") + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + self.positionTicks = try values.decodeIfPresent(Int64.self, forKey: "PositionTicks") + self.when = try values.decodeIfPresent(Date.self, forKey: "When") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isPlaying, forKey: "IsPlaying") + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + try values.encodeIfPresent(positionTicks, forKey: "PositionTicks") + try values.encodeIfPresent(when, forKey: "When") + } +} diff --git a/Sources/Entities/RecommendationDto.swift b/Sources/Entities/RecommendationDto.swift new file mode 100644 index 000000000..ffb88bb0b --- /dev/null +++ b/Sources/Entities/RecommendationDto.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct RecommendationDto: Codable { + public var baselineItemName: String? + public var categoryID: String? + public var items: [BaseItemDto]? + public var recommendationType: RecommendationType? + + public init( + baselineItemName: String? = nil, + categoryID: String? = nil, + items: [BaseItemDto]? = nil, + recommendationType: RecommendationType? = nil + ) { + self.baselineItemName = baselineItemName + self.categoryID = categoryID + self.items = items + self.recommendationType = recommendationType + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.baselineItemName = try values.decodeIfPresent(String.self, forKey: "BaselineItemName") + self.categoryID = try values.decodeIfPresent(String.self, forKey: "CategoryId") + self.items = try values.decodeIfPresent([BaseItemDto].self, forKey: "Items") + self.recommendationType = try values.decodeIfPresent(RecommendationType.self, forKey: "RecommendationType") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(baselineItemName, forKey: "BaselineItemName") + try values.encodeIfPresent(categoryID, forKey: "CategoryId") + try values.encodeIfPresent(items, forKey: "Items") + try values.encodeIfPresent(recommendationType, forKey: "RecommendationType") + } +} diff --git a/Sources/Entities/RecommendationType.swift b/Sources/Entities/RecommendationType.swift new file mode 100644 index 000000000..3eefd399e --- /dev/null +++ b/Sources/Entities/RecommendationType.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum RecommendationType: String, Codable, CaseIterable { + case similarToRecentlyPlayed = "SimilarToRecentlyPlayed" + case similarToLikedItem = "SimilarToLikedItem" + case hasDirectorFromRecentlyPlayed = "HasDirectorFromRecentlyPlayed" + case hasActorFromRecentlyPlayed = "HasActorFromRecentlyPlayed" + case hasLikedDirector = "HasLikedDirector" + case hasLikedActor = "HasLikedActor" +} diff --git a/Sources/Entities/RecordingStatus.swift b/Sources/Entities/RecordingStatus.swift new file mode 100644 index 000000000..d5e7f7f37 --- /dev/null +++ b/Sources/Entities/RecordingStatus.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum RecordingStatus: String, Codable, CaseIterable { + case new = "New" + case inProgress = "InProgress" + case completed = "Completed" + case cancelled = "Cancelled" + case conflictedOk = "ConflictedOk" + case conflictedNotOk = "ConflictedNotOk" + case error = "Error" +} diff --git a/Sources/Entities/RemoteImageInfo.swift b/Sources/Entities/RemoteImageInfo.swift new file mode 100644 index 000000000..68cec3b00 --- /dev/null +++ b/Sources/Entities/RemoteImageInfo.swift @@ -0,0 +1,85 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class RemoteImageInfo. +public struct RemoteImageInfo: Codable { + /// Gets or sets the community rating. + public var communityRating: Double? + /// Gets or sets the height. + public var height: Int32? + /// Gets or sets the language. + public var language: String? + /// Gets or sets the name of the provider. + public var providerName: String? + /// Gets or sets the type of the rating. + public var ratingType: RatingType? + /// Gets or sets a url used for previewing a smaller version. + public var thumbnailURL: String? + /// Gets or sets the type. + public var type: ImageType? + /// Gets or sets the URL. + public var url: String? + /// Gets or sets the vote count. + public var voteCount: Int32? + /// Gets or sets the width. + public var width: Int32? + + public init( + communityRating: Double? = nil, + height: Int32? = nil, + language: String? = nil, + providerName: String? = nil, + ratingType: RatingType? = nil, + thumbnailURL: String? = nil, + type: ImageType? = nil, + url: String? = nil, + voteCount: Int32? = nil, + width: Int32? = nil + ) { + self.communityRating = communityRating + self.height = height + self.language = language + self.providerName = providerName + self.ratingType = ratingType + self.thumbnailURL = thumbnailURL + self.type = type + self.url = url + self.voteCount = voteCount + self.width = width + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.communityRating = try values.decodeIfPresent(Double.self, forKey: "CommunityRating") + self.height = try values.decodeIfPresent(Int32.self, forKey: "Height") + self.language = try values.decodeIfPresent(String.self, forKey: "Language") + self.providerName = try values.decodeIfPresent(String.self, forKey: "ProviderName") + self.ratingType = try values.decodeIfPresent(RatingType.self, forKey: "RatingType") + self.thumbnailURL = try values.decodeIfPresent(String.self, forKey: "ThumbnailUrl") + self.type = try values.decodeIfPresent(ImageType.self, forKey: "Type") + self.url = try values.decodeIfPresent(String.self, forKey: "Url") + self.voteCount = try values.decodeIfPresent(Int32.self, forKey: "VoteCount") + self.width = try values.decodeIfPresent(Int32.self, forKey: "Width") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(communityRating, forKey: "CommunityRating") + try values.encodeIfPresent(height, forKey: "Height") + try values.encodeIfPresent(language, forKey: "Language") + try values.encodeIfPresent(providerName, forKey: "ProviderName") + try values.encodeIfPresent(ratingType, forKey: "RatingType") + try values.encodeIfPresent(thumbnailURL, forKey: "ThumbnailUrl") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(url, forKey: "Url") + try values.encodeIfPresent(voteCount, forKey: "VoteCount") + try values.encodeIfPresent(width, forKey: "Width") + } +} diff --git a/Sources/Entities/RemoteImageResult.swift b/Sources/Entities/RemoteImageResult.swift new file mode 100644 index 000000000..ee5047d0f --- /dev/null +++ b/Sources/Entities/RemoteImageResult.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class RemoteImageResult. +public struct RemoteImageResult: Codable { + /// Gets or sets the images. + public var images: [RemoteImageInfo]? + /// Gets or sets the providers. + public var providers: [String]? + /// Gets or sets the total record count. + public var totalRecordCount: Int32? + + public init(images: [RemoteImageInfo]? = nil, providers: [String]? = nil, totalRecordCount: Int32? = nil) { + self.images = images + self.providers = providers + self.totalRecordCount = totalRecordCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.images = try values.decodeIfPresent([RemoteImageInfo].self, forKey: "Images") + self.providers = try values.decodeIfPresent([String].self, forKey: "Providers") + self.totalRecordCount = try values.decodeIfPresent(Int32.self, forKey: "TotalRecordCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(images, forKey: "Images") + try values.encodeIfPresent(providers, forKey: "Providers") + try values.encodeIfPresent(totalRecordCount, forKey: "TotalRecordCount") + } +} diff --git a/Sources/Entities/RemoteSearchResult.swift b/Sources/Entities/RemoteSearchResult.swift new file mode 100644 index 000000000..8fb5c5587 --- /dev/null +++ b/Sources/Entities/RemoteSearchResult.swift @@ -0,0 +1,87 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public final class RemoteSearchResult: Codable { + public let albumArtist: RemoteSearchResult? + public let artists: [RemoteSearchResult]? + public let imageURL: String? + public let indexNumber: Int32? + public let indexNumberEnd: Int32? + /// Gets or sets the name. + public let name: String? + public let overview: String? + public let parentIndexNumber: Int32? + public let premiereDate: Date? + /// Gets or sets the year. + public let productionYear: Int32? + /// Gets or sets the provider ids. + public let providerIDs: [String: String]? + public let searchProviderName: String? + + public init( + albumArtist: RemoteSearchResult? = nil, + artists: [RemoteSearchResult]? = nil, + imageURL: String? = nil, + indexNumber: Int32? = nil, + indexNumberEnd: Int32? = nil, + name: String? = nil, + overview: String? = nil, + parentIndexNumber: Int32? = nil, + premiereDate: Date? = nil, + productionYear: Int32? = nil, + providerIDs: [String: String]? = nil, + searchProviderName: String? = nil + ) { + self.albumArtist = albumArtist + self.artists = artists + self.imageURL = imageURL + self.indexNumber = indexNumber + self.indexNumberEnd = indexNumberEnd + self.name = name + self.overview = overview + self.parentIndexNumber = parentIndexNumber + self.premiereDate = premiereDate + self.productionYear = productionYear + self.providerIDs = providerIDs + self.searchProviderName = searchProviderName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.albumArtist = try values.decodeIfPresent(RemoteSearchResult.self, forKey: "AlbumArtist") + self.artists = try values.decodeIfPresent([RemoteSearchResult].self, forKey: "Artists") + self.imageURL = try values.decodeIfPresent(String.self, forKey: "ImageUrl") + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.indexNumberEnd = try values.decodeIfPresent(Int32.self, forKey: "IndexNumberEnd") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.overview = try values.decodeIfPresent(String.self, forKey: "Overview") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.productionYear = try values.decodeIfPresent(Int32.self, forKey: "ProductionYear") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.searchProviderName = try values.decodeIfPresent(String.self, forKey: "SearchProviderName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(albumArtist, forKey: "AlbumArtist") + try values.encodeIfPresent(artists, forKey: "Artists") + try values.encodeIfPresent(imageURL, forKey: "ImageUrl") + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(indexNumberEnd, forKey: "IndexNumberEnd") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(overview, forKey: "Overview") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(productionYear, forKey: "ProductionYear") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(searchProviderName, forKey: "SearchProviderName") + } +} diff --git a/Sources/Entities/RemoteSubtitleInfo.swift b/Sources/Entities/RemoteSubtitleInfo.swift new file mode 100644 index 000000000..abf41e388 --- /dev/null +++ b/Sources/Entities/RemoteSubtitleInfo.swift @@ -0,0 +1,79 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct RemoteSubtitleInfo: Codable, Identifiable { + public var author: String? + public var comment: String? + public var communityRating: Float? + public var dateCreated: Date? + public var downloadCount: Int32? + public var format: String? + public var id: String? + public var isHashMatch: Bool? + public var name: String? + public var providerName: String? + public var threeLetterISOLanguageName: String? + + public init( + author: String? = nil, + comment: String? = nil, + communityRating: Float? = nil, + dateCreated: Date? = nil, + downloadCount: Int32? = nil, + format: String? = nil, + id: String? = nil, + isHashMatch: Bool? = nil, + name: String? = nil, + providerName: String? = nil, + threeLetterISOLanguageName: String? = nil + ) { + self.author = author + self.comment = comment + self.communityRating = communityRating + self.dateCreated = dateCreated + self.downloadCount = downloadCount + self.format = format + self.id = id + self.isHashMatch = isHashMatch + self.name = name + self.providerName = providerName + self.threeLetterISOLanguageName = threeLetterISOLanguageName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.author = try values.decodeIfPresent(String.self, forKey: "Author") + self.comment = try values.decodeIfPresent(String.self, forKey: "Comment") + self.communityRating = try values.decodeIfPresent(Float.self, forKey: "CommunityRating") + self.dateCreated = try values.decodeIfPresent(Date.self, forKey: "DateCreated") + self.downloadCount = try values.decodeIfPresent(Int32.self, forKey: "DownloadCount") + self.format = try values.decodeIfPresent(String.self, forKey: "Format") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.isHashMatch = try values.decodeIfPresent(Bool.self, forKey: "IsHashMatch") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.providerName = try values.decodeIfPresent(String.self, forKey: "ProviderName") + self.threeLetterISOLanguageName = try values.decodeIfPresent(String.self, forKey: "ThreeLetterISOLanguageName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(author, forKey: "Author") + try values.encodeIfPresent(comment, forKey: "Comment") + try values.encodeIfPresent(communityRating, forKey: "CommunityRating") + try values.encodeIfPresent(dateCreated, forKey: "DateCreated") + try values.encodeIfPresent(downloadCount, forKey: "DownloadCount") + try values.encodeIfPresent(format, forKey: "Format") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(isHashMatch, forKey: "IsHashMatch") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(providerName, forKey: "ProviderName") + try values.encodeIfPresent(threeLetterISOLanguageName, forKey: "ThreeLetterISOLanguageName") + } +} diff --git a/Sources/Entities/RemoveFromPlaylistRequestDto.swift b/Sources/Entities/RemoveFromPlaylistRequestDto.swift new file mode 100644 index 000000000..8deb1f823 --- /dev/null +++ b/Sources/Entities/RemoveFromPlaylistRequestDto.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class RemoveFromPlaylistRequestDto. +public struct RemoveFromPlaylistRequestDto: Codable { + /// Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist. + public var isClearPlayingItem: Bool? + /// Gets or sets a value indicating whether the entire playlist should be cleared. + public var isClearPlaylist: Bool? + /// Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist. + public var playlistItemIDs: [String]? + + public init(isClearPlayingItem: Bool? = nil, isClearPlaylist: Bool? = nil, playlistItemIDs: [String]? = nil) { + self.isClearPlayingItem = isClearPlayingItem + self.isClearPlaylist = isClearPlaylist + self.playlistItemIDs = playlistItemIDs + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isClearPlayingItem = try values.decodeIfPresent(Bool.self, forKey: "ClearPlayingItem") + self.isClearPlaylist = try values.decodeIfPresent(Bool.self, forKey: "ClearPlaylist") + self.playlistItemIDs = try values.decodeIfPresent([String].self, forKey: "PlaylistItemIds") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isClearPlayingItem, forKey: "ClearPlayingItem") + try values.encodeIfPresent(isClearPlaylist, forKey: "ClearPlaylist") + try values.encodeIfPresent(playlistItemIDs, forKey: "PlaylistItemIds") + } +} diff --git a/Sources/Entities/RepeatMode.swift b/Sources/Entities/RepeatMode.swift new file mode 100644 index 000000000..c028259e7 --- /dev/null +++ b/Sources/Entities/RepeatMode.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum RepeatMode: String, Codable, CaseIterable { + case repeatNone = "RepeatNone" + case repeatAll = "RepeatAll" + case repeatOne = "RepeatOne" +} diff --git a/Sources/Entities/RepositoryInfo.swift b/Sources/Entities/RepositoryInfo.swift new file mode 100644 index 000000000..f0bc89221 --- /dev/null +++ b/Sources/Entities/RepositoryInfo.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class RepositoryInfo. +public struct RepositoryInfo: Codable { + /// Gets or sets a value indicating whether the repository is enabled. + public var isEnabled: Bool? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the URL. + public var url: String? + + public init(isEnabled: Bool? = nil, name: String? = nil, url: String? = nil) { + self.isEnabled = isEnabled + self.name = name + self.url = url + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isEnabled = try values.decodeIfPresent(Bool.self, forKey: "Enabled") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.url = try values.decodeIfPresent(String.self, forKey: "Url") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isEnabled, forKey: "Enabled") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(url, forKey: "Url") + } +} diff --git a/Sources/Entities/ResponseProfile.swift b/Sources/Entities/ResponseProfile.swift new file mode 100644 index 000000000..d6d3caa47 --- /dev/null +++ b/Sources/Entities/ResponseProfile.swift @@ -0,0 +1,59 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct ResponseProfile: Codable { + public var audioCodec: String? + public var conditions: [ProfileCondition]? + public var container: String? + public var mimeType: String? + public var orgPn: String? + public var type: DlnaProfileType? + public var videoCodec: String? + + public init( + audioCodec: String? = nil, + conditions: [ProfileCondition]? = nil, + container: String? = nil, + mimeType: String? = nil, + orgPn: String? = nil, + type: DlnaProfileType? = nil, + videoCodec: String? = nil + ) { + self.audioCodec = audioCodec + self.conditions = conditions + self.container = container + self.mimeType = mimeType + self.orgPn = orgPn + self.type = type + self.videoCodec = videoCodec + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.audioCodec = try values.decodeIfPresent(String.self, forKey: "AudioCodec") + self.conditions = try values.decodeIfPresent([ProfileCondition].self, forKey: "Conditions") + self.container = try values.decodeIfPresent(String.self, forKey: "Container") + self.mimeType = try values.decodeIfPresent(String.self, forKey: "MimeType") + self.orgPn = try values.decodeIfPresent(String.self, forKey: "OrgPn") + self.type = try values.decodeIfPresent(DlnaProfileType.self, forKey: "Type") + self.videoCodec = try values.decodeIfPresent(String.self, forKey: "VideoCodec") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(audioCodec, forKey: "AudioCodec") + try values.encodeIfPresent(conditions, forKey: "Conditions") + try values.encodeIfPresent(container, forKey: "Container") + try values.encodeIfPresent(mimeType, forKey: "MimeType") + try values.encodeIfPresent(orgPn, forKey: "OrgPn") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(videoCodec, forKey: "VideoCodec") + } +} diff --git a/Sources/Entities/ScrollDirection.swift b/Sources/Entities/ScrollDirection.swift new file mode 100644 index 000000000..eea8bc94b --- /dev/null +++ b/Sources/Entities/ScrollDirection.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// An enum representing the axis that should be scrolled. +public enum ScrollDirection: String, Codable, CaseIterable { + case horizontal = "Horizontal" + case vertical = "Vertical" +} diff --git a/Sources/Entities/SearchHint.swift b/Sources/Entities/SearchHint.swift new file mode 100644 index 000000000..f09feef90 --- /dev/null +++ b/Sources/Entities/SearchHint.swift @@ -0,0 +1,193 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SearchHintResult. +public struct SearchHint: Codable, Identifiable { + /// Gets or sets the album. + public var album: String? + /// Gets or sets the album artist. + public var albumArtist: String? + public var albumID: String? + /// Gets or sets the artists. + public var artists: [String]? + /// Gets or sets the backdrop image item identifier. + public var backdropImageItemID: String? + /// Gets or sets the backdrop image tag. + public var backdropImageTag: String? + /// Gets or sets the channel identifier. + public var channelID: String? + /// Gets or sets the name of the channel. + public var channelName: String? + public var endDate: Date? + /// Gets or sets the episode count. + public var episodeCount: Int32? + public var id: String? + /// Gets or sets the index number. + public var indexNumber: Int32? + public var isFolder: Bool? + /// Gets or sets the item id. + public var itemID: String? + /// Gets or sets the matched term. + public var matchedTerm: String? + /// Gets or sets the type of the media. + public var mediaType: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the parent index number. + public var parentIndexNumber: Int32? + /// Gets or sets the primary image aspect ratio. + public var primaryImageAspectRatio: Double? + /// Gets or sets the image tag. + public var primaryImageTag: String? + /// Gets or sets the production year. + public var productionYear: Int32? + /// Gets or sets the run time ticks. + public var runTimeTicks: Int64? + /// Gets or sets the series. + public var series: String? + /// Gets or sets the song count. + public var songCount: Int32? + public var startDate: Date? + public var status: String? + /// Gets or sets the thumb image item identifier. + public var thumbImageItemID: String? + /// Gets or sets the thumb image tag. + public var thumbImageTag: String? + /// Gets or sets the type. + public var type: String? + + public init( + album: String? = nil, + albumArtist: String? = nil, + albumID: String? = nil, + artists: [String]? = nil, + backdropImageItemID: String? = nil, + backdropImageTag: String? = nil, + channelID: String? = nil, + channelName: String? = nil, + endDate: Date? = nil, + episodeCount: Int32? = nil, + id: String? = nil, + indexNumber: Int32? = nil, + isFolder: Bool? = nil, + itemID: String? = nil, + matchedTerm: String? = nil, + mediaType: String? = nil, + name: String? = nil, + parentIndexNumber: Int32? = nil, + primaryImageAspectRatio: Double? = nil, + primaryImageTag: String? = nil, + productionYear: Int32? = nil, + runTimeTicks: Int64? = nil, + series: String? = nil, + songCount: Int32? = nil, + startDate: Date? = nil, + status: String? = nil, + thumbImageItemID: String? = nil, + thumbImageTag: String? = nil, + type: String? = nil + ) { + self.album = album + self.albumArtist = albumArtist + self.albumID = albumID + self.artists = artists + self.backdropImageItemID = backdropImageItemID + self.backdropImageTag = backdropImageTag + self.channelID = channelID + self.channelName = channelName + self.endDate = endDate + self.episodeCount = episodeCount + self.id = id + self.indexNumber = indexNumber + self.isFolder = isFolder + self.itemID = itemID + self.matchedTerm = matchedTerm + self.mediaType = mediaType + self.name = name + self.parentIndexNumber = parentIndexNumber + self.primaryImageAspectRatio = primaryImageAspectRatio + self.primaryImageTag = primaryImageTag + self.productionYear = productionYear + self.runTimeTicks = runTimeTicks + self.series = series + self.songCount = songCount + self.startDate = startDate + self.status = status + self.thumbImageItemID = thumbImageItemID + self.thumbImageTag = thumbImageTag + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.album = try values.decodeIfPresent(String.self, forKey: "Album") + self.albumArtist = try values.decodeIfPresent(String.self, forKey: "AlbumArtist") + self.albumID = try values.decodeIfPresent(String.self, forKey: "AlbumId") + self.artists = try values.decodeIfPresent([String].self, forKey: "Artists") + self.backdropImageItemID = try values.decodeIfPresent(String.self, forKey: "BackdropImageItemId") + self.backdropImageTag = try values.decodeIfPresent(String.self, forKey: "BackdropImageTag") + self.channelID = try values.decodeIfPresent(String.self, forKey: "ChannelId") + self.channelName = try values.decodeIfPresent(String.self, forKey: "ChannelName") + self.endDate = try values.decodeIfPresent(Date.self, forKey: "EndDate") + self.episodeCount = try values.decodeIfPresent(Int32.self, forKey: "EpisodeCount") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isFolder = try values.decodeIfPresent(Bool.self, forKey: "IsFolder") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.matchedTerm = try values.decodeIfPresent(String.self, forKey: "MatchedTerm") + self.mediaType = try values.decodeIfPresent(String.self, forKey: "MediaType") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.primaryImageAspectRatio = try values.decodeIfPresent(Double.self, forKey: "PrimaryImageAspectRatio") + self.primaryImageTag = try values.decodeIfPresent(String.self, forKey: "PrimaryImageTag") + self.productionYear = try values.decodeIfPresent(Int32.self, forKey: "ProductionYear") + self.runTimeTicks = try values.decodeIfPresent(Int64.self, forKey: "RunTimeTicks") + self.series = try values.decodeIfPresent(String.self, forKey: "Series") + self.songCount = try values.decodeIfPresent(Int32.self, forKey: "SongCount") + self.startDate = try values.decodeIfPresent(Date.self, forKey: "StartDate") + self.status = try values.decodeIfPresent(String.self, forKey: "Status") + self.thumbImageItemID = try values.decodeIfPresent(String.self, forKey: "ThumbImageItemId") + self.thumbImageTag = try values.decodeIfPresent(String.self, forKey: "ThumbImageTag") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(album, forKey: "Album") + try values.encodeIfPresent(albumArtist, forKey: "AlbumArtist") + try values.encodeIfPresent(albumID, forKey: "AlbumId") + try values.encodeIfPresent(artists, forKey: "Artists") + try values.encodeIfPresent(backdropImageItemID, forKey: "BackdropImageItemId") + try values.encodeIfPresent(backdropImageTag, forKey: "BackdropImageTag") + try values.encodeIfPresent(channelID, forKey: "ChannelId") + try values.encodeIfPresent(channelName, forKey: "ChannelName") + try values.encodeIfPresent(endDate, forKey: "EndDate") + try values.encodeIfPresent(episodeCount, forKey: "EpisodeCount") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isFolder, forKey: "IsFolder") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(matchedTerm, forKey: "MatchedTerm") + try values.encodeIfPresent(mediaType, forKey: "MediaType") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(primaryImageAspectRatio, forKey: "PrimaryImageAspectRatio") + try values.encodeIfPresent(primaryImageTag, forKey: "PrimaryImageTag") + try values.encodeIfPresent(productionYear, forKey: "ProductionYear") + try values.encodeIfPresent(runTimeTicks, forKey: "RunTimeTicks") + try values.encodeIfPresent(series, forKey: "Series") + try values.encodeIfPresent(songCount, forKey: "SongCount") + try values.encodeIfPresent(startDate, forKey: "StartDate") + try values.encodeIfPresent(status, forKey: "Status") + try values.encodeIfPresent(thumbImageItemID, forKey: "ThumbImageItemId") + try values.encodeIfPresent(thumbImageTag, forKey: "ThumbImageTag") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/SearchHintResult.swift b/Sources/Entities/SearchHintResult.swift new file mode 100644 index 000000000..ab4eddc7a --- /dev/null +++ b/Sources/Entities/SearchHintResult.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SearchHintResult. +public struct SearchHintResult: Codable { + /// Gets the search hints. + public var searchHints: [SearchHint]? + /// Gets the total record count. + public var totalRecordCount: Int32? + + public init(searchHints: [SearchHint]? = nil, totalRecordCount: Int32? = nil) { + self.searchHints = searchHints + self.totalRecordCount = totalRecordCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.searchHints = try values.decodeIfPresent([SearchHint].self, forKey: "SearchHints") + self.totalRecordCount = try values.decodeIfPresent(Int32.self, forKey: "TotalRecordCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(searchHints, forKey: "SearchHints") + try values.encodeIfPresent(totalRecordCount, forKey: "TotalRecordCount") + } +} diff --git a/Sources/Entities/SeekRequestDto.swift b/Sources/Entities/SeekRequestDto.swift new file mode 100644 index 000000000..3b09093e8 --- /dev/null +++ b/Sources/Entities/SeekRequestDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SeekRequestDto. +public struct SeekRequestDto: Codable { + /// Gets or sets the position ticks. + public var positionTicks: Int64? + + public init(positionTicks: Int64? = nil) { + self.positionTicks = positionTicks + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.positionTicks = try values.decodeIfPresent(Int64.self, forKey: "PositionTicks") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(positionTicks, forKey: "PositionTicks") + } +} diff --git a/Sources/Entities/SendCommand.swift b/Sources/Entities/SendCommand.swift new file mode 100644 index 000000000..6a6f2465b --- /dev/null +++ b/Sources/Entities/SendCommand.swift @@ -0,0 +1,61 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SendCommand. +public struct SendCommand: Codable { + /// Gets the command. + public var command: SendCommandType? + /// Gets the UTC time when this command has been emitted. + public var emittedAt: Date? + /// Gets the group identifier. + public var groupID: String? + /// Gets the playlist identifier of the playing item. + public var playlistItemID: String? + /// Gets the position ticks. + public var positionTicks: Int64? + /// Gets or sets the UTC time when to execute the command. + public var when: Date? + + public init( + command: SendCommandType? = nil, + emittedAt: Date? = nil, + groupID: String? = nil, + playlistItemID: String? = nil, + positionTicks: Int64? = nil, + when: Date? = nil + ) { + self.command = command + self.emittedAt = emittedAt + self.groupID = groupID + self.playlistItemID = playlistItemID + self.positionTicks = positionTicks + self.when = when + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.command = try values.decodeIfPresent(SendCommandType.self, forKey: "Command") + self.emittedAt = try values.decodeIfPresent(Date.self, forKey: "EmittedAt") + self.groupID = try values.decodeIfPresent(String.self, forKey: "GroupId") + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + self.positionTicks = try values.decodeIfPresent(Int64.self, forKey: "PositionTicks") + self.when = try values.decodeIfPresent(Date.self, forKey: "When") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(command, forKey: "Command") + try values.encodeIfPresent(emittedAt, forKey: "EmittedAt") + try values.encodeIfPresent(groupID, forKey: "GroupId") + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + try values.encodeIfPresent(positionTicks, forKey: "PositionTicks") + try values.encodeIfPresent(when, forKey: "When") + } +} diff --git a/Sources/Entities/SendCommandType.swift b/Sources/Entities/SendCommandType.swift new file mode 100644 index 000000000..ae9ee9127 --- /dev/null +++ b/Sources/Entities/SendCommandType.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum SendCommandType. +public enum SendCommandType: String, Codable, CaseIterable { + case unpause = "Unpause" + case pause = "Pause" + case stop = "Stop" + case seek = "Seek" +} diff --git a/Sources/Entities/SendToUserType.swift b/Sources/Entities/SendToUserType.swift new file mode 100644 index 000000000..ccded2b6d --- /dev/null +++ b/Sources/Entities/SendToUserType.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum SendToUserType: String, Codable, CaseIterable { + case all = "All" + case admins = "Admins" + case custom = "Custom" +} diff --git a/Sources/Entities/SeriesInfo.swift b/Sources/Entities/SeriesInfo.swift new file mode 100644 index 000000000..73fbe1f01 --- /dev/null +++ b/Sources/Entities/SeriesInfo.swift @@ -0,0 +1,86 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct SeriesInfo: Codable { + public var indexNumber: Int32? + public var isAutomated: Bool? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the metadata language. + public var metadataLanguage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the original title. + public var originalTitle: String? + public var parentIndexNumber: Int32? + /// Gets or sets the path. + public var path: String? + public var premiereDate: Date? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + /// Gets or sets the year. + public var year: Int32? + + public init( + indexNumber: Int32? = nil, + isAutomated: Bool? = nil, + metadataCountryCode: String? = nil, + metadataLanguage: String? = nil, + name: String? = nil, + originalTitle: String? = nil, + parentIndexNumber: Int32? = nil, + path: String? = nil, + premiereDate: Date? = nil, + providerIDs: [String: String]? = nil, + year: Int32? = nil + ) { + self.indexNumber = indexNumber + self.isAutomated = isAutomated + self.metadataCountryCode = metadataCountryCode + self.metadataLanguage = metadataLanguage + self.name = name + self.originalTitle = originalTitle + self.parentIndexNumber = parentIndexNumber + self.path = path + self.premiereDate = premiereDate + self.providerIDs = providerIDs + self.year = year + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isAutomated = try values.decodeIfPresent(Bool.self, forKey: "IsAutomated") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataLanguage = try values.decodeIfPresent(String.self, forKey: "MetadataLanguage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.year = try values.decodeIfPresent(Int32.self, forKey: "Year") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isAutomated, forKey: "IsAutomated") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataLanguage, forKey: "MetadataLanguage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(year, forKey: "Year") + } +} diff --git a/Sources/Entities/SeriesInfoRemoteSearchQuery.swift b/Sources/Entities/SeriesInfoRemoteSearchQuery.swift new file mode 100644 index 000000000..403f9e0b7 --- /dev/null +++ b/Sources/Entities/SeriesInfoRemoteSearchQuery.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct SeriesInfoRemoteSearchQuery: Codable { + /// Gets or sets a value indicating whether disabled providers should be included. + public var isIncludeDisabledProviders: Bool? + public var itemID: String? + public var searchInfo: SeriesInfo? + /// Gets or sets the provider name to search within if set. + public var searchProviderName: String? + + public init( + isIncludeDisabledProviders: Bool? = nil, + itemID: String? = nil, + searchInfo: SeriesInfo? = nil, + searchProviderName: String? = nil + ) { + self.isIncludeDisabledProviders = isIncludeDisabledProviders + self.itemID = itemID + self.searchInfo = searchInfo + self.searchProviderName = searchProviderName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isIncludeDisabledProviders = try values.decodeIfPresent(Bool.self, forKey: "IncludeDisabledProviders") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.searchInfo = try values.decodeIfPresent(SeriesInfo.self, forKey: "SearchInfo") + self.searchProviderName = try values.decodeIfPresent(String.self, forKey: "SearchProviderName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isIncludeDisabledProviders, forKey: "IncludeDisabledProviders") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(searchInfo, forKey: "SearchInfo") + try values.encodeIfPresent(searchProviderName, forKey: "SearchProviderName") + } +} diff --git a/Sources/Entities/SeriesStatus.swift b/Sources/Entities/SeriesStatus.swift new file mode 100644 index 000000000..c5e0994c7 --- /dev/null +++ b/Sources/Entities/SeriesStatus.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum SeriesStatus. +public enum SeriesStatus: String, Codable, CaseIterable { + case continuing = "Continuing" + case ended = "Ended" +} diff --git a/Sources/Entities/SeriesTimerInfoDto.swift b/Sources/Entities/SeriesTimerInfoDto.swift new file mode 100644 index 000000000..d008e61e1 --- /dev/null +++ b/Sources/Entities/SeriesTimerInfoDto.swift @@ -0,0 +1,230 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SeriesTimerInfoDto. +public struct SeriesTimerInfoDto: Codable, Identifiable { + /// Gets or sets the channel id of the recording. + public var channelID: String? + /// Gets or sets the channel name of the recording. + public var channelName: String? + public var channelPrimaryImageTag: String? + /// Gets or sets the day pattern. + public var dayPattern: DayPattern? + /// Gets or sets the days. + public var days: [DayOfWeek]? + /// Gets or sets the end date of the recording, in UTC. + public var endDate: Date? + /// Gets or sets the external channel identifier. + public var externalChannelID: String? + /// Gets or sets the external identifier. + public var externalID: String? + /// Gets or sets the external program identifier. + public var externalProgramID: String? + /// Gets or sets the Id of the recording. + public var id: String? + /// Gets or sets the image tags. + public var imageTags: [String: String]? + /// Gets or sets a value indicating whether this instance is post padding required. + public var isPostPaddingRequired: Bool? + /// Gets or sets a value indicating whether this instance is pre padding required. + public var isPrePaddingRequired: Bool? + public var keepUntil: KeepUntil? + public var keepUpTo: Int32? + /// Gets or sets the name of the recording. + public var name: String? + /// Gets or sets the description of the recording. + public var overview: String? + /// Gets or sets the parent backdrop image tags. + public var parentBackdropImageTags: [String]? + /// Gets or sets the Id of the Parent that has a backdrop if the item does not have one. + public var parentBackdropItemID: String? + /// Gets or sets the parent primary image item identifier. + public var parentPrimaryImageItemID: String? + /// Gets or sets the parent primary image tag. + public var parentPrimaryImageTag: String? + /// Gets or sets the parent thumb image tag. + public var parentThumbImageTag: String? + /// Gets or sets the parent thumb item id. + public var parentThumbItemID: String? + /// Gets or sets the post padding seconds. + public var postPaddingSeconds: Int32? + /// Gets or sets the pre padding seconds. + public var prePaddingSeconds: Int32? + /// Gets or sets the priority. + public var priority: Int32? + /// Gets or sets the program identifier. + public var programID: String? + /// Gets or sets a value indicating whether [record any channel]. + public var isRecordAnyChannel: Bool? + /// Gets or sets a value indicating whether [record any time]. + public var isRecordAnyTime: Bool? + /// Gets or sets a value indicating whether [record new only]. + public var isRecordNewOnly: Bool? + /// Gets or sets the server identifier. + public var serverID: String? + /// Gets or sets the name of the service. + public var serviceName: String? + public var isSkipEpisodesInLibrary: Bool? + /// Gets or sets the start date of the recording, in UTC. + public var startDate: Date? + public var type: String? + + public init( + channelID: String? = nil, + channelName: String? = nil, + channelPrimaryImageTag: String? = nil, + dayPattern: DayPattern? = nil, + days: [DayOfWeek]? = nil, + endDate: Date? = nil, + externalChannelID: String? = nil, + externalID: String? = nil, + externalProgramID: String? = nil, + id: String? = nil, + imageTags: [String: String]? = nil, + isPostPaddingRequired: Bool? = nil, + isPrePaddingRequired: Bool? = nil, + keepUntil: KeepUntil? = nil, + keepUpTo: Int32? = nil, + name: String? = nil, + overview: String? = nil, + parentBackdropImageTags: [String]? = nil, + parentBackdropItemID: String? = nil, + parentPrimaryImageItemID: String? = nil, + parentPrimaryImageTag: String? = nil, + parentThumbImageTag: String? = nil, + parentThumbItemID: String? = nil, + postPaddingSeconds: Int32? = nil, + prePaddingSeconds: Int32? = nil, + priority: Int32? = nil, + programID: String? = nil, + isRecordAnyChannel: Bool? = nil, + isRecordAnyTime: Bool? = nil, + isRecordNewOnly: Bool? = nil, + serverID: String? = nil, + serviceName: String? = nil, + isSkipEpisodesInLibrary: Bool? = nil, + startDate: Date? = nil, + type: String? = nil + ) { + self.channelID = channelID + self.channelName = channelName + self.channelPrimaryImageTag = channelPrimaryImageTag + self.dayPattern = dayPattern + self.days = days + self.endDate = endDate + self.externalChannelID = externalChannelID + self.externalID = externalID + self.externalProgramID = externalProgramID + self.id = id + self.imageTags = imageTags + self.isPostPaddingRequired = isPostPaddingRequired + self.isPrePaddingRequired = isPrePaddingRequired + self.keepUntil = keepUntil + self.keepUpTo = keepUpTo + self.name = name + self.overview = overview + self.parentBackdropImageTags = parentBackdropImageTags + self.parentBackdropItemID = parentBackdropItemID + self.parentPrimaryImageItemID = parentPrimaryImageItemID + self.parentPrimaryImageTag = parentPrimaryImageTag + self.parentThumbImageTag = parentThumbImageTag + self.parentThumbItemID = parentThumbItemID + self.postPaddingSeconds = postPaddingSeconds + self.prePaddingSeconds = prePaddingSeconds + self.priority = priority + self.programID = programID + self.isRecordAnyChannel = isRecordAnyChannel + self.isRecordAnyTime = isRecordAnyTime + self.isRecordNewOnly = isRecordNewOnly + self.serverID = serverID + self.serviceName = serviceName + self.isSkipEpisodesInLibrary = isSkipEpisodesInLibrary + self.startDate = startDate + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.channelID = try values.decodeIfPresent(String.self, forKey: "ChannelId") + self.channelName = try values.decodeIfPresent(String.self, forKey: "ChannelName") + self.channelPrimaryImageTag = try values.decodeIfPresent(String.self, forKey: "ChannelPrimaryImageTag") + self.dayPattern = try values.decodeIfPresent(DayPattern.self, forKey: "DayPattern") + self.days = try values.decodeIfPresent([DayOfWeek].self, forKey: "Days") + self.endDate = try values.decodeIfPresent(Date.self, forKey: "EndDate") + self.externalChannelID = try values.decodeIfPresent(String.self, forKey: "ExternalChannelId") + self.externalID = try values.decodeIfPresent(String.self, forKey: "ExternalId") + self.externalProgramID = try values.decodeIfPresent(String.self, forKey: "ExternalProgramId") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.imageTags = try values.decodeIfPresent([String: String].self, forKey: "ImageTags") + self.isPostPaddingRequired = try values.decodeIfPresent(Bool.self, forKey: "IsPostPaddingRequired") + self.isPrePaddingRequired = try values.decodeIfPresent(Bool.self, forKey: "IsPrePaddingRequired") + self.keepUntil = try values.decodeIfPresent(KeepUntil.self, forKey: "KeepUntil") + self.keepUpTo = try values.decodeIfPresent(Int32.self, forKey: "KeepUpTo") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.overview = try values.decodeIfPresent(String.self, forKey: "Overview") + self.parentBackdropImageTags = try values.decodeIfPresent([String].self, forKey: "ParentBackdropImageTags") + self.parentBackdropItemID = try values.decodeIfPresent(String.self, forKey: "ParentBackdropItemId") + self.parentPrimaryImageItemID = try values.decodeIfPresent(String.self, forKey: "ParentPrimaryImageItemId") + self.parentPrimaryImageTag = try values.decodeIfPresent(String.self, forKey: "ParentPrimaryImageTag") + self.parentThumbImageTag = try values.decodeIfPresent(String.self, forKey: "ParentThumbImageTag") + self.parentThumbItemID = try values.decodeIfPresent(String.self, forKey: "ParentThumbItemId") + self.postPaddingSeconds = try values.decodeIfPresent(Int32.self, forKey: "PostPaddingSeconds") + self.prePaddingSeconds = try values.decodeIfPresent(Int32.self, forKey: "PrePaddingSeconds") + self.priority = try values.decodeIfPresent(Int32.self, forKey: "Priority") + self.programID = try values.decodeIfPresent(String.self, forKey: "ProgramId") + self.isRecordAnyChannel = try values.decodeIfPresent(Bool.self, forKey: "RecordAnyChannel") + self.isRecordAnyTime = try values.decodeIfPresent(Bool.self, forKey: "RecordAnyTime") + self.isRecordNewOnly = try values.decodeIfPresent(Bool.self, forKey: "RecordNewOnly") + self.serverID = try values.decodeIfPresent(String.self, forKey: "ServerId") + self.serviceName = try values.decodeIfPresent(String.self, forKey: "ServiceName") + self.isSkipEpisodesInLibrary = try values.decodeIfPresent(Bool.self, forKey: "SkipEpisodesInLibrary") + self.startDate = try values.decodeIfPresent(Date.self, forKey: "StartDate") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(channelID, forKey: "ChannelId") + try values.encodeIfPresent(channelName, forKey: "ChannelName") + try values.encodeIfPresent(channelPrimaryImageTag, forKey: "ChannelPrimaryImageTag") + try values.encodeIfPresent(dayPattern, forKey: "DayPattern") + try values.encodeIfPresent(days, forKey: "Days") + try values.encodeIfPresent(endDate, forKey: "EndDate") + try values.encodeIfPresent(externalChannelID, forKey: "ExternalChannelId") + try values.encodeIfPresent(externalID, forKey: "ExternalId") + try values.encodeIfPresent(externalProgramID, forKey: "ExternalProgramId") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(imageTags, forKey: "ImageTags") + try values.encodeIfPresent(isPostPaddingRequired, forKey: "IsPostPaddingRequired") + try values.encodeIfPresent(isPrePaddingRequired, forKey: "IsPrePaddingRequired") + try values.encodeIfPresent(keepUntil, forKey: "KeepUntil") + try values.encodeIfPresent(keepUpTo, forKey: "KeepUpTo") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(overview, forKey: "Overview") + try values.encodeIfPresent(parentBackdropImageTags, forKey: "ParentBackdropImageTags") + try values.encodeIfPresent(parentBackdropItemID, forKey: "ParentBackdropItemId") + try values.encodeIfPresent(parentPrimaryImageItemID, forKey: "ParentPrimaryImageItemId") + try values.encodeIfPresent(parentPrimaryImageTag, forKey: "ParentPrimaryImageTag") + try values.encodeIfPresent(parentThumbImageTag, forKey: "ParentThumbImageTag") + try values.encodeIfPresent(parentThumbItemID, forKey: "ParentThumbItemId") + try values.encodeIfPresent(postPaddingSeconds, forKey: "PostPaddingSeconds") + try values.encodeIfPresent(prePaddingSeconds, forKey: "PrePaddingSeconds") + try values.encodeIfPresent(priority, forKey: "Priority") + try values.encodeIfPresent(programID, forKey: "ProgramId") + try values.encodeIfPresent(isRecordAnyChannel, forKey: "RecordAnyChannel") + try values.encodeIfPresent(isRecordAnyTime, forKey: "RecordAnyTime") + try values.encodeIfPresent(isRecordNewOnly, forKey: "RecordNewOnly") + try values.encodeIfPresent(serverID, forKey: "ServerId") + try values.encodeIfPresent(serviceName, forKey: "ServiceName") + try values.encodeIfPresent(isSkipEpisodesInLibrary, forKey: "SkipEpisodesInLibrary") + try values.encodeIfPresent(startDate, forKey: "StartDate") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/SeriesTimerInfoDtoQueryResult.swift b/Sources/Entities/SeriesTimerInfoDtoQueryResult.swift new file mode 100644 index 000000000..505532bdf --- /dev/null +++ b/Sources/Entities/SeriesTimerInfoDtoQueryResult.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct SeriesTimerInfoDtoQueryResult: Codable { + /// Gets or sets the items. + public var items: [SeriesTimerInfoDto]? + /// Gets or sets the index of the first record in Items. + public var startIndex: Int32? + /// Gets or sets the total number of records available. + public var totalRecordCount: Int32? + + public init(items: [SeriesTimerInfoDto]? = nil, startIndex: Int32? = nil, totalRecordCount: Int32? = nil) { + self.items = items + self.startIndex = startIndex + self.totalRecordCount = totalRecordCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.items = try values.decodeIfPresent([SeriesTimerInfoDto].self, forKey: "Items") + self.startIndex = try values.decodeIfPresent(Int32.self, forKey: "StartIndex") + self.totalRecordCount = try values.decodeIfPresent(Int32.self, forKey: "TotalRecordCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(items, forKey: "Items") + try values.encodeIfPresent(startIndex, forKey: "StartIndex") + try values.encodeIfPresent(totalRecordCount, forKey: "TotalRecordCount") + } +} diff --git a/Sources/Entities/ServerConfiguration.swift b/Sources/Entities/ServerConfiguration.swift new file mode 100644 index 000000000..993120fdf --- /dev/null +++ b/Sources/Entities/ServerConfiguration.swift @@ -0,0 +1,301 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Represents the server configuration. +public struct ServerConfiguration: Codable { + /// Gets or sets the number of days we should retain activity logs. + public var activityLogRetentionDays: Int32? + /// Gets or sets a value indicating whether clients should be allowed to upload logs. + public var allowClientLogUpload: Bool? + /// Gets or sets the cache path. + public var cachePath: String? + public var codecsUsed: [String]? + public var contentTypes: [NameValuePair]? + /// Gets or sets the cors hosts. + public var corsHosts: [String]? + public var isDisableLiveTvChannelUserDataName: Bool? + public var isDisplaySpecialsWithinSeasons: Bool? + /// Gets or sets a value indicating whether [enable case sensitive item ids]. + public var enableCaseSensitiveItemIDs: Bool? + public var enableExternalContentInSuggestions: Bool? + public var enableFolderView: Bool? + public var enableGroupingIntoCollections: Bool? + /// Gets or sets a value indicating whether to enable prometheus metrics exporting. + public var enableMetrics: Bool? + public var enableNormalizedItemByNameIDs: Bool? + /// Gets or sets a value indicating whether slow server responses should be logged as a warning. + public var enableSlowResponseWarning: Bool? + public var imageExtractionTimeoutMs: Int32? + /// Gets or sets the image saving convention. + public var imageSavingConvention: ImageSavingConvention? + /// Gets or sets a value indicating whether this instance is port authorized. + public var isPortAuthorized: Bool? + /// Gets or sets a value indicating whether this instance is first run. + public var isStartupWizardCompleted: Bool? + /// Gets or sets the how many metadata refreshes can run concurrently. + public var libraryMetadataRefreshConcurrency: Int32? + /// Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added/removed + /// + /// Some delay is necessary with some items because their creation is not atomic. It involves the creation of several + /// + /// different directories and files. + public var libraryMonitorDelay: Int32? + /// Gets or sets the how the library scan fans out. + public var libraryScanFanoutConcurrency: Int32? + /// Gets or sets the number of days we should retain log files. + public var logFileRetentionDays: Int32? + /// Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. + public var maxAudiobookResume: Int32? + /// Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. + public var maxResumePct: Int32? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + public var metadataNetworkPath: String? + public var metadataOptions: [MetadataOptions]? + /// Gets or sets the metadata path. + public var metadataPath: String? + /// Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated. + public var minAudiobookResume: Int32? + /// Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates.. + public var minResumeDurationSeconds: Int32? + /// Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated. + public var minResumePct: Int32? + public var pathSubstitutions: [PathSubstitution]? + public var pluginRepositories: [RepositoryInfo]? + /// Gets or sets the preferred metadata language. + public var preferredMetadataLanguage: String? + /// Gets or sets the last known version that was ran using the configuration. + public var previousVersion: String? + /// Gets or sets the stringified PreviousVersion to be stored/loaded, + /// + /// because System.Version itself isn't xml-serializable. + public var previousVersionStr: String? + /// Gets or sets a value indicating whether quick connect is available for use on this server. + public var isQuickConnectAvailable: Bool? + public var remoteClientBitrateLimit: Int32? + /// Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder. + public var isRemoveOldPlugins: Bool? + public var isSaveMetadataHidden: Bool? + public var serverName: String? + public var isSkipDeserializationForBasicTypes: Bool? + /// Gets or sets the threshold for the slow response time warning in ms. + public var slowResponseThresholdMs: Int64? + /// Gets or sets characters to be removed from strings to create a sort name. + public var sortRemoveCharacters: [String]? + /// Gets or sets words to be removed from strings to create a sort name. + public var sortRemoveWords: [String]? + /// Gets or sets characters to be replaced with a ' ' in strings to create a sort name. + public var sortReplaceCharacters: [String]? + public var uICulture: String? + + public init( + activityLogRetentionDays: Int32? = nil, + allowClientLogUpload: Bool? = nil, + cachePath: String? = nil, + codecsUsed: [String]? = nil, + contentTypes: [NameValuePair]? = nil, + corsHosts: [String]? = nil, + isDisableLiveTvChannelUserDataName: Bool? = nil, + isDisplaySpecialsWithinSeasons: Bool? = nil, + enableCaseSensitiveItemIDs: Bool? = nil, + enableExternalContentInSuggestions: Bool? = nil, + enableFolderView: Bool? = nil, + enableGroupingIntoCollections: Bool? = nil, + enableMetrics: Bool? = nil, + enableNormalizedItemByNameIDs: Bool? = nil, + enableSlowResponseWarning: Bool? = nil, + imageExtractionTimeoutMs: Int32? = nil, + imageSavingConvention: ImageSavingConvention? = nil, + isPortAuthorized: Bool? = nil, + isStartupWizardCompleted: Bool? = nil, + libraryMetadataRefreshConcurrency: Int32? = nil, + libraryMonitorDelay: Int32? = nil, + libraryScanFanoutConcurrency: Int32? = nil, + logFileRetentionDays: Int32? = nil, + maxAudiobookResume: Int32? = nil, + maxResumePct: Int32? = nil, + metadataCountryCode: String? = nil, + metadataNetworkPath: String? = nil, + metadataOptions: [MetadataOptions]? = nil, + metadataPath: String? = nil, + minAudiobookResume: Int32? = nil, + minResumeDurationSeconds: Int32? = nil, + minResumePct: Int32? = nil, + pathSubstitutions: [PathSubstitution]? = nil, + pluginRepositories: [RepositoryInfo]? = nil, + preferredMetadataLanguage: String? = nil, + previousVersion: String? = nil, + previousVersionStr: String? = nil, + isQuickConnectAvailable: Bool? = nil, + remoteClientBitrateLimit: Int32? = nil, + isRemoveOldPlugins: Bool? = nil, + isSaveMetadataHidden: Bool? = nil, + serverName: String? = nil, + isSkipDeserializationForBasicTypes: Bool? = nil, + slowResponseThresholdMs: Int64? = nil, + sortRemoveCharacters: [String]? = nil, + sortRemoveWords: [String]? = nil, + sortReplaceCharacters: [String]? = nil, + uICulture: String? = nil + ) { + self.activityLogRetentionDays = activityLogRetentionDays + self.allowClientLogUpload = allowClientLogUpload + self.cachePath = cachePath + self.codecsUsed = codecsUsed + self.contentTypes = contentTypes + self.corsHosts = corsHosts + self.isDisableLiveTvChannelUserDataName = isDisableLiveTvChannelUserDataName + self.isDisplaySpecialsWithinSeasons = isDisplaySpecialsWithinSeasons + self.enableCaseSensitiveItemIDs = enableCaseSensitiveItemIDs + self.enableExternalContentInSuggestions = enableExternalContentInSuggestions + self.enableFolderView = enableFolderView + self.enableGroupingIntoCollections = enableGroupingIntoCollections + self.enableMetrics = enableMetrics + self.enableNormalizedItemByNameIDs = enableNormalizedItemByNameIDs + self.enableSlowResponseWarning = enableSlowResponseWarning + self.imageExtractionTimeoutMs = imageExtractionTimeoutMs + self.imageSavingConvention = imageSavingConvention + self.isPortAuthorized = isPortAuthorized + self.isStartupWizardCompleted = isStartupWizardCompleted + self.libraryMetadataRefreshConcurrency = libraryMetadataRefreshConcurrency + self.libraryMonitorDelay = libraryMonitorDelay + self.libraryScanFanoutConcurrency = libraryScanFanoutConcurrency + self.logFileRetentionDays = logFileRetentionDays + self.maxAudiobookResume = maxAudiobookResume + self.maxResumePct = maxResumePct + self.metadataCountryCode = metadataCountryCode + self.metadataNetworkPath = metadataNetworkPath + self.metadataOptions = metadataOptions + self.metadataPath = metadataPath + self.minAudiobookResume = minAudiobookResume + self.minResumeDurationSeconds = minResumeDurationSeconds + self.minResumePct = minResumePct + self.pathSubstitutions = pathSubstitutions + self.pluginRepositories = pluginRepositories + self.preferredMetadataLanguage = preferredMetadataLanguage + self.previousVersion = previousVersion + self.previousVersionStr = previousVersionStr + self.isQuickConnectAvailable = isQuickConnectAvailable + self.remoteClientBitrateLimit = remoteClientBitrateLimit + self.isRemoveOldPlugins = isRemoveOldPlugins + self.isSaveMetadataHidden = isSaveMetadataHidden + self.serverName = serverName + self.isSkipDeserializationForBasicTypes = isSkipDeserializationForBasicTypes + self.slowResponseThresholdMs = slowResponseThresholdMs + self.sortRemoveCharacters = sortRemoveCharacters + self.sortRemoveWords = sortRemoveWords + self.sortReplaceCharacters = sortReplaceCharacters + self.uICulture = uICulture + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.activityLogRetentionDays = try values.decodeIfPresent(Int32.self, forKey: "ActivityLogRetentionDays") + self.allowClientLogUpload = try values.decodeIfPresent(Bool.self, forKey: "AllowClientLogUpload") + self.cachePath = try values.decodeIfPresent(String.self, forKey: "CachePath") + self.codecsUsed = try values.decodeIfPresent([String].self, forKey: "CodecsUsed") + self.contentTypes = try values.decodeIfPresent([NameValuePair].self, forKey: "ContentTypes") + self.corsHosts = try values.decodeIfPresent([String].self, forKey: "CorsHosts") + self.isDisableLiveTvChannelUserDataName = try values.decodeIfPresent(Bool.self, forKey: "DisableLiveTvChannelUserDataName") + self.isDisplaySpecialsWithinSeasons = try values.decodeIfPresent(Bool.self, forKey: "DisplaySpecialsWithinSeasons") + self.enableCaseSensitiveItemIDs = try values.decodeIfPresent(Bool.self, forKey: "EnableCaseSensitiveItemIds") + self.enableExternalContentInSuggestions = try values.decodeIfPresent(Bool.self, forKey: "EnableExternalContentInSuggestions") + self.enableFolderView = try values.decodeIfPresent(Bool.self, forKey: "EnableFolderView") + self.enableGroupingIntoCollections = try values.decodeIfPresent(Bool.self, forKey: "EnableGroupingIntoCollections") + self.enableMetrics = try values.decodeIfPresent(Bool.self, forKey: "EnableMetrics") + self.enableNormalizedItemByNameIDs = try values.decodeIfPresent(Bool.self, forKey: "EnableNormalizedItemByNameIds") + self.enableSlowResponseWarning = try values.decodeIfPresent(Bool.self, forKey: "EnableSlowResponseWarning") + self.imageExtractionTimeoutMs = try values.decodeIfPresent(Int32.self, forKey: "ImageExtractionTimeoutMs") + self.imageSavingConvention = try values.decodeIfPresent(ImageSavingConvention.self, forKey: "ImageSavingConvention") + self.isPortAuthorized = try values.decodeIfPresent(Bool.self, forKey: "IsPortAuthorized") + self.isStartupWizardCompleted = try values.decodeIfPresent(Bool.self, forKey: "IsStartupWizardCompleted") + self.libraryMetadataRefreshConcurrency = try values.decodeIfPresent(Int32.self, forKey: "LibraryMetadataRefreshConcurrency") + self.libraryMonitorDelay = try values.decodeIfPresent(Int32.self, forKey: "LibraryMonitorDelay") + self.libraryScanFanoutConcurrency = try values.decodeIfPresent(Int32.self, forKey: "LibraryScanFanoutConcurrency") + self.logFileRetentionDays = try values.decodeIfPresent(Int32.self, forKey: "LogFileRetentionDays") + self.maxAudiobookResume = try values.decodeIfPresent(Int32.self, forKey: "MaxAudiobookResume") + self.maxResumePct = try values.decodeIfPresent(Int32.self, forKey: "MaxResumePct") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataNetworkPath = try values.decodeIfPresent(String.self, forKey: "MetadataNetworkPath") + self.metadataOptions = try values.decodeIfPresent([MetadataOptions].self, forKey: "MetadataOptions") + self.metadataPath = try values.decodeIfPresent(String.self, forKey: "MetadataPath") + self.minAudiobookResume = try values.decodeIfPresent(Int32.self, forKey: "MinAudiobookResume") + self.minResumeDurationSeconds = try values.decodeIfPresent(Int32.self, forKey: "MinResumeDurationSeconds") + self.minResumePct = try values.decodeIfPresent(Int32.self, forKey: "MinResumePct") + self.pathSubstitutions = try values.decodeIfPresent([PathSubstitution].self, forKey: "PathSubstitutions") + self.pluginRepositories = try values.decodeIfPresent([RepositoryInfo].self, forKey: "PluginRepositories") + self.preferredMetadataLanguage = try values.decodeIfPresent(String.self, forKey: "PreferredMetadataLanguage") + self.previousVersion = try values.decodeIfPresent(String.self, forKey: "PreviousVersion") + self.previousVersionStr = try values.decodeIfPresent(String.self, forKey: "PreviousVersionStr") + self.isQuickConnectAvailable = try values.decodeIfPresent(Bool.self, forKey: "QuickConnectAvailable") + self.remoteClientBitrateLimit = try values.decodeIfPresent(Int32.self, forKey: "RemoteClientBitrateLimit") + self.isRemoveOldPlugins = try values.decodeIfPresent(Bool.self, forKey: "RemoveOldPlugins") + self.isSaveMetadataHidden = try values.decodeIfPresent(Bool.self, forKey: "SaveMetadataHidden") + self.serverName = try values.decodeIfPresent(String.self, forKey: "ServerName") + self.isSkipDeserializationForBasicTypes = try values.decodeIfPresent(Bool.self, forKey: "SkipDeserializationForBasicTypes") + self.slowResponseThresholdMs = try values.decodeIfPresent(Int64.self, forKey: "SlowResponseThresholdMs") + self.sortRemoveCharacters = try values.decodeIfPresent([String].self, forKey: "SortRemoveCharacters") + self.sortRemoveWords = try values.decodeIfPresent([String].self, forKey: "SortRemoveWords") + self.sortReplaceCharacters = try values.decodeIfPresent([String].self, forKey: "SortReplaceCharacters") + self.uICulture = try values.decodeIfPresent(String.self, forKey: "UICulture") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(activityLogRetentionDays, forKey: "ActivityLogRetentionDays") + try values.encodeIfPresent(allowClientLogUpload, forKey: "AllowClientLogUpload") + try values.encodeIfPresent(cachePath, forKey: "CachePath") + try values.encodeIfPresent(codecsUsed, forKey: "CodecsUsed") + try values.encodeIfPresent(contentTypes, forKey: "ContentTypes") + try values.encodeIfPresent(corsHosts, forKey: "CorsHosts") + try values.encodeIfPresent(isDisableLiveTvChannelUserDataName, forKey: "DisableLiveTvChannelUserDataName") + try values.encodeIfPresent(isDisplaySpecialsWithinSeasons, forKey: "DisplaySpecialsWithinSeasons") + try values.encodeIfPresent(enableCaseSensitiveItemIDs, forKey: "EnableCaseSensitiveItemIds") + try values.encodeIfPresent(enableExternalContentInSuggestions, forKey: "EnableExternalContentInSuggestions") + try values.encodeIfPresent(enableFolderView, forKey: "EnableFolderView") + try values.encodeIfPresent(enableGroupingIntoCollections, forKey: "EnableGroupingIntoCollections") + try values.encodeIfPresent(enableMetrics, forKey: "EnableMetrics") + try values.encodeIfPresent(enableNormalizedItemByNameIDs, forKey: "EnableNormalizedItemByNameIds") + try values.encodeIfPresent(enableSlowResponseWarning, forKey: "EnableSlowResponseWarning") + try values.encodeIfPresent(imageExtractionTimeoutMs, forKey: "ImageExtractionTimeoutMs") + try values.encodeIfPresent(imageSavingConvention, forKey: "ImageSavingConvention") + try values.encodeIfPresent(isPortAuthorized, forKey: "IsPortAuthorized") + try values.encodeIfPresent(isStartupWizardCompleted, forKey: "IsStartupWizardCompleted") + try values.encodeIfPresent(libraryMetadataRefreshConcurrency, forKey: "LibraryMetadataRefreshConcurrency") + try values.encodeIfPresent(libraryMonitorDelay, forKey: "LibraryMonitorDelay") + try values.encodeIfPresent(libraryScanFanoutConcurrency, forKey: "LibraryScanFanoutConcurrency") + try values.encodeIfPresent(logFileRetentionDays, forKey: "LogFileRetentionDays") + try values.encodeIfPresent(maxAudiobookResume, forKey: "MaxAudiobookResume") + try values.encodeIfPresent(maxResumePct, forKey: "MaxResumePct") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataNetworkPath, forKey: "MetadataNetworkPath") + try values.encodeIfPresent(metadataOptions, forKey: "MetadataOptions") + try values.encodeIfPresent(metadataPath, forKey: "MetadataPath") + try values.encodeIfPresent(minAudiobookResume, forKey: "MinAudiobookResume") + try values.encodeIfPresent(minResumeDurationSeconds, forKey: "MinResumeDurationSeconds") + try values.encodeIfPresent(minResumePct, forKey: "MinResumePct") + try values.encodeIfPresent(pathSubstitutions, forKey: "PathSubstitutions") + try values.encodeIfPresent(pluginRepositories, forKey: "PluginRepositories") + try values.encodeIfPresent(preferredMetadataLanguage, forKey: "PreferredMetadataLanguage") + try values.encodeIfPresent(previousVersion, forKey: "PreviousVersion") + try values.encodeIfPresent(previousVersionStr, forKey: "PreviousVersionStr") + try values.encodeIfPresent(isQuickConnectAvailable, forKey: "QuickConnectAvailable") + try values.encodeIfPresent(remoteClientBitrateLimit, forKey: "RemoteClientBitrateLimit") + try values.encodeIfPresent(isRemoveOldPlugins, forKey: "RemoveOldPlugins") + try values.encodeIfPresent(isSaveMetadataHidden, forKey: "SaveMetadataHidden") + try values.encodeIfPresent(serverName, forKey: "ServerName") + try values.encodeIfPresent(isSkipDeserializationForBasicTypes, forKey: "SkipDeserializationForBasicTypes") + try values.encodeIfPresent(slowResponseThresholdMs, forKey: "SlowResponseThresholdMs") + try values.encodeIfPresent(sortRemoveCharacters, forKey: "SortRemoveCharacters") + try values.encodeIfPresent(sortRemoveWords, forKey: "SortRemoveWords") + try values.encodeIfPresent(sortReplaceCharacters, forKey: "SortReplaceCharacters") + try values.encodeIfPresent(uICulture, forKey: "UICulture") + } +} diff --git a/Sources/Entities/ServerDiscoveryInfo.swift b/Sources/Entities/ServerDiscoveryInfo.swift new file mode 100644 index 000000000..1cf97fb10 --- /dev/null +++ b/Sources/Entities/ServerDiscoveryInfo.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The server discovery info model. +public struct ServerDiscoveryInfo: Codable, Identifiable { + /// Gets the address. + public var address: String? + /// Gets the endpoint address. + public var endpointAddress: String? + /// Gets the server identifier. + public var id: String? + /// Gets the name. + public var name: String? + + public init(address: String? = nil, endpointAddress: String? = nil, id: String? = nil, name: String? = nil) { + self.address = address + self.endpointAddress = endpointAddress + self.id = id + self.name = name + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.address = try values.decodeIfPresent(String.self, forKey: "Address") + self.endpointAddress = try values.decodeIfPresent(String.self, forKey: "EndpointAddress") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(address, forKey: "Address") + try values.encodeIfPresent(endpointAddress, forKey: "EndpointAddress") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(name, forKey: "Name") + } +} diff --git a/Sources/Entities/SessionInfo.swift b/Sources/Entities/SessionInfo.swift new file mode 100644 index 000000000..747321049 --- /dev/null +++ b/Sources/Entities/SessionInfo.swift @@ -0,0 +1,191 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SessionInfo. +public struct SessionInfo: Codable, Identifiable { + public var additionalUsers: [SessionUserInfo]? + /// Gets or sets the application version. + public var applicationVersion: String? + public var capabilities: ClientCapabilities? + /// Gets or sets the type of the client. + public var client: String? + /// Gets or sets the device id. + public var deviceID: String? + /// Gets or sets the name of the device. + public var deviceName: String? + /// Gets or sets the type of the device. + public var deviceType: String? + /// Class BaseItem. + public var fullNowPlayingItem: BaseItem? + public var hasCustomDeviceName: Bool? + /// Gets or sets the id. + public var id: String? + /// Gets a value indicating whether this instance is active. + public var isActive: Bool? + /// Gets or sets the last activity date. + public var lastActivityDate: Date? + /// Gets or sets the last playback check in. + public var lastPlaybackCheckIn: Date? + /// This is strictly used as a data transfer object from the api layer. + /// + /// This holds information about a BaseItem in a format that is convenient for the client. + public var nowPlayingItem: BaseItemDto? + public var nowPlayingQueue: [QueueItem]? + public var nowPlayingQueueFullItems: [BaseItemDto]? + /// This is strictly used as a data transfer object from the api layer. + /// + /// This holds information about a BaseItem in a format that is convenient for the client. + public var nowViewingItem: BaseItemDto? + public var playState: PlayerStateInfo? + /// Gets the playable media types. + public var playableMediaTypes: [String]? + public var playlistItemID: String? + /// Gets or sets the remote end point. + public var remoteEndPoint: String? + public var serverID: String? + /// Gets the supported commands. + public var supportedCommands: [GeneralCommandType]? + public var isSupportsMediaControl: Bool? + public var isSupportsRemoteControl: Bool? + public var transcodingInfo: TranscodingInfo? + /// Gets or sets the user id. + public var userID: String? + /// Gets or sets the username. + public var userName: String? + public var userPrimaryImageTag: String? + + public init( + additionalUsers: [SessionUserInfo]? = nil, + applicationVersion: String? = nil, + capabilities: ClientCapabilities? = nil, + client: String? = nil, + deviceID: String? = nil, + deviceName: String? = nil, + deviceType: String? = nil, + fullNowPlayingItem: BaseItem? = nil, + hasCustomDeviceName: Bool? = nil, + id: String? = nil, + isActive: Bool? = nil, + lastActivityDate: Date? = nil, + lastPlaybackCheckIn: Date? = nil, + nowPlayingItem: BaseItemDto? = nil, + nowPlayingQueue: [QueueItem]? = nil, + nowPlayingQueueFullItems: [BaseItemDto]? = nil, + nowViewingItem: BaseItemDto? = nil, + playState: PlayerStateInfo? = nil, + playableMediaTypes: [String]? = nil, + playlistItemID: String? = nil, + remoteEndPoint: String? = nil, + serverID: String? = nil, + supportedCommands: [GeneralCommandType]? = nil, + isSupportsMediaControl: Bool? = nil, + isSupportsRemoteControl: Bool? = nil, + transcodingInfo: TranscodingInfo? = nil, + userID: String? = nil, + userName: String? = nil, + userPrimaryImageTag: String? = nil + ) { + self.additionalUsers = additionalUsers + self.applicationVersion = applicationVersion + self.capabilities = capabilities + self.client = client + self.deviceID = deviceID + self.deviceName = deviceName + self.deviceType = deviceType + self.fullNowPlayingItem = fullNowPlayingItem + self.hasCustomDeviceName = hasCustomDeviceName + self.id = id + self.isActive = isActive + self.lastActivityDate = lastActivityDate + self.lastPlaybackCheckIn = lastPlaybackCheckIn + self.nowPlayingItem = nowPlayingItem + self.nowPlayingQueue = nowPlayingQueue + self.nowPlayingQueueFullItems = nowPlayingQueueFullItems + self.nowViewingItem = nowViewingItem + self.playState = playState + self.playableMediaTypes = playableMediaTypes + self.playlistItemID = playlistItemID + self.remoteEndPoint = remoteEndPoint + self.serverID = serverID + self.supportedCommands = supportedCommands + self.isSupportsMediaControl = isSupportsMediaControl + self.isSupportsRemoteControl = isSupportsRemoteControl + self.transcodingInfo = transcodingInfo + self.userID = userID + self.userName = userName + self.userPrimaryImageTag = userPrimaryImageTag + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.additionalUsers = try values.decodeIfPresent([SessionUserInfo].self, forKey: "AdditionalUsers") + self.applicationVersion = try values.decodeIfPresent(String.self, forKey: "ApplicationVersion") + self.capabilities = try values.decodeIfPresent(ClientCapabilities.self, forKey: "Capabilities") + self.client = try values.decodeIfPresent(String.self, forKey: "Client") + self.deviceID = try values.decodeIfPresent(String.self, forKey: "DeviceId") + self.deviceName = try values.decodeIfPresent(String.self, forKey: "DeviceName") + self.deviceType = try values.decodeIfPresent(String.self, forKey: "DeviceType") + self.fullNowPlayingItem = try values.decodeIfPresent(BaseItem.self, forKey: "FullNowPlayingItem") + self.hasCustomDeviceName = try values.decodeIfPresent(Bool.self, forKey: "HasCustomDeviceName") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.isActive = try values.decodeIfPresent(Bool.self, forKey: "IsActive") + self.lastActivityDate = try values.decodeIfPresent(Date.self, forKey: "LastActivityDate") + self.lastPlaybackCheckIn = try values.decodeIfPresent(Date.self, forKey: "LastPlaybackCheckIn") + self.nowPlayingItem = try values.decodeIfPresent(BaseItemDto.self, forKey: "NowPlayingItem") + self.nowPlayingQueue = try values.decodeIfPresent([QueueItem].self, forKey: "NowPlayingQueue") + self.nowPlayingQueueFullItems = try values.decodeIfPresent([BaseItemDto].self, forKey: "NowPlayingQueueFullItems") + self.nowViewingItem = try values.decodeIfPresent(BaseItemDto.self, forKey: "NowViewingItem") + self.playState = try values.decodeIfPresent(PlayerStateInfo.self, forKey: "PlayState") + self.playableMediaTypes = try values.decodeIfPresent([String].self, forKey: "PlayableMediaTypes") + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + self.remoteEndPoint = try values.decodeIfPresent(String.self, forKey: "RemoteEndPoint") + self.serverID = try values.decodeIfPresent(String.self, forKey: "ServerId") + self.supportedCommands = try values.decodeIfPresent([GeneralCommandType].self, forKey: "SupportedCommands") + self.isSupportsMediaControl = try values.decodeIfPresent(Bool.self, forKey: "SupportsMediaControl") + self.isSupportsRemoteControl = try values.decodeIfPresent(Bool.self, forKey: "SupportsRemoteControl") + self.transcodingInfo = try values.decodeIfPresent(TranscodingInfo.self, forKey: "TranscodingInfo") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + self.userName = try values.decodeIfPresent(String.self, forKey: "UserName") + self.userPrimaryImageTag = try values.decodeIfPresent(String.self, forKey: "UserPrimaryImageTag") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(additionalUsers, forKey: "AdditionalUsers") + try values.encodeIfPresent(applicationVersion, forKey: "ApplicationVersion") + try values.encodeIfPresent(capabilities, forKey: "Capabilities") + try values.encodeIfPresent(client, forKey: "Client") + try values.encodeIfPresent(deviceID, forKey: "DeviceId") + try values.encodeIfPresent(deviceName, forKey: "DeviceName") + try values.encodeIfPresent(deviceType, forKey: "DeviceType") + try values.encodeIfPresent(fullNowPlayingItem, forKey: "FullNowPlayingItem") + try values.encodeIfPresent(hasCustomDeviceName, forKey: "HasCustomDeviceName") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(isActive, forKey: "IsActive") + try values.encodeIfPresent(lastActivityDate, forKey: "LastActivityDate") + try values.encodeIfPresent(lastPlaybackCheckIn, forKey: "LastPlaybackCheckIn") + try values.encodeIfPresent(nowPlayingItem, forKey: "NowPlayingItem") + try values.encodeIfPresent(nowPlayingQueue, forKey: "NowPlayingQueue") + try values.encodeIfPresent(nowPlayingQueueFullItems, forKey: "NowPlayingQueueFullItems") + try values.encodeIfPresent(nowViewingItem, forKey: "NowViewingItem") + try values.encodeIfPresent(playState, forKey: "PlayState") + try values.encodeIfPresent(playableMediaTypes, forKey: "PlayableMediaTypes") + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + try values.encodeIfPresent(remoteEndPoint, forKey: "RemoteEndPoint") + try values.encodeIfPresent(serverID, forKey: "ServerId") + try values.encodeIfPresent(supportedCommands, forKey: "SupportedCommands") + try values.encodeIfPresent(isSupportsMediaControl, forKey: "SupportsMediaControl") + try values.encodeIfPresent(isSupportsRemoteControl, forKey: "SupportsRemoteControl") + try values.encodeIfPresent(transcodingInfo, forKey: "TranscodingInfo") + try values.encodeIfPresent(userID, forKey: "UserId") + try values.encodeIfPresent(userName, forKey: "UserName") + try values.encodeIfPresent(userPrimaryImageTag, forKey: "UserPrimaryImageTag") + } +} diff --git a/Sources/JellyfinAPI/Models/SessionMessageType.swift b/Sources/Entities/SessionMessageType.swift similarity index 83% rename from Sources/JellyfinAPI/Models/SessionMessageType.swift rename to Sources/Entities/SessionMessageType.swift index ddc281ca8..93e073516 100644 --- a/Sources/JellyfinAPI/Models/SessionMessageType.swift +++ b/Sources/Entities/SessionMessageType.swift @@ -1,16 +1,14 @@ // -// SessionMessageType.swift +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. // -// Generated by openapi-generator -// https://openapi-generator.tech +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors // import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif -/** The different kinds of messages that are used in the WebSocket api. */ +/// The different kinds of messages that are used in the WebSocket api. public enum SessionMessageType: String, Codable, CaseIterable { case forceKeepAlive = "ForceKeepAlive" case generalCommand = "GeneralCommand" diff --git a/Sources/Entities/SessionUserInfo.swift b/Sources/Entities/SessionUserInfo.swift new file mode 100644 index 000000000..a61ea5601 --- /dev/null +++ b/Sources/Entities/SessionUserInfo.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SessionUserInfo. +public struct SessionUserInfo: Codable { + /// Gets or sets the user identifier. + public var userID: String? + /// Gets or sets the name of the user. + public var userName: String? + + public init(userID: String? = nil, userName: String? = nil) { + self.userID = userID + self.userName = userName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + self.userName = try values.decodeIfPresent(String.self, forKey: "UserName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(userID, forKey: "UserId") + try values.encodeIfPresent(userName, forKey: "UserName") + } +} diff --git a/Sources/Entities/SetChannelMappingDto.swift b/Sources/Entities/SetChannelMappingDto.swift new file mode 100644 index 000000000..df07001b2 --- /dev/null +++ b/Sources/Entities/SetChannelMappingDto.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Set channel mapping dto. +public struct SetChannelMappingDto: Codable { + /// Gets or sets the provider channel id. + public var providerChannelID: String + /// Gets or sets the provider id. + public var providerID: String + /// Gets or sets the tuner channel id. + public var tunerChannelID: String + + public init(providerChannelID: String, providerID: String, tunerChannelID: String) { + self.providerChannelID = providerChannelID + self.providerID = providerID + self.tunerChannelID = tunerChannelID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.providerChannelID = try values.decode(String.self, forKey: "ProviderChannelId") + self.providerID = try values.decode(String.self, forKey: "ProviderId") + self.tunerChannelID = try values.decode(String.self, forKey: "TunerChannelId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encode(providerChannelID, forKey: "ProviderChannelId") + try values.encode(providerID, forKey: "ProviderId") + try values.encode(tunerChannelID, forKey: "TunerChannelId") + } +} diff --git a/Sources/Entities/SetPlaylistItemRequestDto.swift b/Sources/Entities/SetPlaylistItemRequestDto.swift new file mode 100644 index 000000000..7cd6502e4 --- /dev/null +++ b/Sources/Entities/SetPlaylistItemRequestDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SetPlaylistItemRequestDto. +public struct SetPlaylistItemRequestDto: Codable { + /// Gets or sets the playlist identifier of the playing item. + public var playlistItemID: String? + + public init(playlistItemID: String? = nil) { + self.playlistItemID = playlistItemID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.playlistItemID = try values.decodeIfPresent(String.self, forKey: "PlaylistItemId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(playlistItemID, forKey: "PlaylistItemId") + } +} diff --git a/Sources/Entities/SetRepeatModeRequestDto.swift b/Sources/Entities/SetRepeatModeRequestDto.swift new file mode 100644 index 000000000..cdb0ef51b --- /dev/null +++ b/Sources/Entities/SetRepeatModeRequestDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SetRepeatModeRequestDto. +public struct SetRepeatModeRequestDto: Codable { + /// Enum GroupRepeatMode. + public var mode: GroupRepeatMode? + + public init(mode: GroupRepeatMode? = nil) { + self.mode = mode + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.mode = try values.decodeIfPresent(GroupRepeatMode.self, forKey: "Mode") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(mode, forKey: "Mode") + } +} diff --git a/Sources/Entities/SetShuffleModeRequestDto.swift b/Sources/Entities/SetShuffleModeRequestDto.swift new file mode 100644 index 000000000..81dbb8923 --- /dev/null +++ b/Sources/Entities/SetShuffleModeRequestDto.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SetShuffleModeRequestDto. +public struct SetShuffleModeRequestDto: Codable { + /// Enum GroupShuffleMode. + public var mode: GroupShuffleMode? + + public init(mode: GroupShuffleMode? = nil) { + self.mode = mode + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.mode = try values.decodeIfPresent(GroupShuffleMode.self, forKey: "Mode") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(mode, forKey: "Mode") + } +} diff --git a/Sources/Entities/SongInfo.swift b/Sources/Entities/SongInfo.swift new file mode 100644 index 000000000..bff0f9be2 --- /dev/null +++ b/Sources/Entities/SongInfo.swift @@ -0,0 +1,101 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct SongInfo: Codable { + public var album: String? + public var albumArtists: [String]? + public var artists: [String]? + public var indexNumber: Int32? + public var isAutomated: Bool? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the metadata language. + public var metadataLanguage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the original title. + public var originalTitle: String? + public var parentIndexNumber: Int32? + /// Gets or sets the path. + public var path: String? + public var premiereDate: Date? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + /// Gets or sets the year. + public var year: Int32? + + public init( + album: String? = nil, + albumArtists: [String]? = nil, + artists: [String]? = nil, + indexNumber: Int32? = nil, + isAutomated: Bool? = nil, + metadataCountryCode: String? = nil, + metadataLanguage: String? = nil, + name: String? = nil, + originalTitle: String? = nil, + parentIndexNumber: Int32? = nil, + path: String? = nil, + premiereDate: Date? = nil, + providerIDs: [String: String]? = nil, + year: Int32? = nil + ) { + self.album = album + self.albumArtists = albumArtists + self.artists = artists + self.indexNumber = indexNumber + self.isAutomated = isAutomated + self.metadataCountryCode = metadataCountryCode + self.metadataLanguage = metadataLanguage + self.name = name + self.originalTitle = originalTitle + self.parentIndexNumber = parentIndexNumber + self.path = path + self.premiereDate = premiereDate + self.providerIDs = providerIDs + self.year = year + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.album = try values.decodeIfPresent(String.self, forKey: "Album") + self.albumArtists = try values.decodeIfPresent([String].self, forKey: "AlbumArtists") + self.artists = try values.decodeIfPresent([String].self, forKey: "Artists") + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isAutomated = try values.decodeIfPresent(Bool.self, forKey: "IsAutomated") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataLanguage = try values.decodeIfPresent(String.self, forKey: "MetadataLanguage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.year = try values.decodeIfPresent(Int32.self, forKey: "Year") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(album, forKey: "Album") + try values.encodeIfPresent(albumArtists, forKey: "AlbumArtists") + try values.encodeIfPresent(artists, forKey: "Artists") + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isAutomated, forKey: "IsAutomated") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataLanguage, forKey: "MetadataLanguage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(year, forKey: "Year") + } +} diff --git a/Sources/Entities/SortOrder.swift b/Sources/Entities/SortOrder.swift new file mode 100644 index 000000000..3054c786a --- /dev/null +++ b/Sources/Entities/SortOrder.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// An enum representing the sorting order. +public enum SortOrder: String, Codable, CaseIterable { + case ascending = "Ascending" + case descending = "Descending" +} diff --git a/Sources/Entities/SpecialViewOptionDto.swift b/Sources/Entities/SpecialViewOptionDto.swift new file mode 100644 index 000000000..1bb3bfa5f --- /dev/null +++ b/Sources/Entities/SpecialViewOptionDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Special view option dto. +public struct SpecialViewOptionDto: Codable, Identifiable { + /// Gets or sets view option id. + public var id: String? + /// Gets or sets view option name. + public var name: String? + + public init(id: String? = nil, name: String? = nil) { + self.id = id + self.name = name + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(name, forKey: "Name") + } +} diff --git a/Sources/Entities/StartupConfigurationDto.swift b/Sources/Entities/StartupConfigurationDto.swift new file mode 100644 index 000000000..813ccbe03 --- /dev/null +++ b/Sources/Entities/StartupConfigurationDto.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The startup configuration DTO. +public struct StartupConfigurationDto: Codable { + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the preferred language for the metadata. + public var preferredMetadataLanguage: String? + /// Gets or sets UI language culture. + public var uICulture: String? + + public init(metadataCountryCode: String? = nil, preferredMetadataLanguage: String? = nil, uICulture: String? = nil) { + self.metadataCountryCode = metadataCountryCode + self.preferredMetadataLanguage = preferredMetadataLanguage + self.uICulture = uICulture + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.preferredMetadataLanguage = try values.decodeIfPresent(String.self, forKey: "PreferredMetadataLanguage") + self.uICulture = try values.decodeIfPresent(String.self, forKey: "UICulture") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(preferredMetadataLanguage, forKey: "PreferredMetadataLanguage") + try values.encodeIfPresent(uICulture, forKey: "UICulture") + } +} diff --git a/Sources/Entities/StartupRemoteAccessDto.swift b/Sources/Entities/StartupRemoteAccessDto.swift new file mode 100644 index 000000000..39694df90 --- /dev/null +++ b/Sources/Entities/StartupRemoteAccessDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Startup remote access dto. +public struct StartupRemoteAccessDto: Codable { + /// Gets or sets a value indicating whether enable automatic port mapping. + public var enableAutomaticPortMapping: Bool + /// Gets or sets a value indicating whether enable remote access. + public var enableRemoteAccess: Bool + + public init(enableAutomaticPortMapping: Bool, enableRemoteAccess: Bool) { + self.enableAutomaticPortMapping = enableAutomaticPortMapping + self.enableRemoteAccess = enableRemoteAccess + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.enableAutomaticPortMapping = try values.decode(Bool.self, forKey: "EnableAutomaticPortMapping") + self.enableRemoteAccess = try values.decode(Bool.self, forKey: "EnableRemoteAccess") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encode(enableAutomaticPortMapping, forKey: "EnableAutomaticPortMapping") + try values.encode(enableRemoteAccess, forKey: "EnableRemoteAccess") + } +} diff --git a/Sources/Entities/StartupUserDto.swift b/Sources/Entities/StartupUserDto.swift new file mode 100644 index 000000000..660234f20 --- /dev/null +++ b/Sources/Entities/StartupUserDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The startup user DTO. +public struct StartupUserDto: Codable { + /// Gets or sets the username. + public var name: String? + /// Gets or sets the user's password. + public var password: String? + + public init(name: String? = nil, password: String? = nil) { + self.name = name + self.password = password + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.password = try values.decodeIfPresent(String.self, forKey: "Password") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(password, forKey: "Password") + } +} diff --git a/Sources/Entities/SubtitleDeliveryMethod.swift b/Sources/Entities/SubtitleDeliveryMethod.swift new file mode 100644 index 000000000..b0d263916 --- /dev/null +++ b/Sources/Entities/SubtitleDeliveryMethod.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Delivery method to use during playback of a specific subtitle format. +public enum SubtitleDeliveryMethod: String, Codable, CaseIterable { + case encode = "Encode" + case embed = "Embed" + case external = "External" + case hls = "Hls" + case drop = "Drop" +} diff --git a/Sources/Entities/SubtitleOptions.swift b/Sources/Entities/SubtitleOptions.swift new file mode 100644 index 000000000..675f2988f --- /dev/null +++ b/Sources/Entities/SubtitleOptions.swift @@ -0,0 +1,69 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct SubtitleOptions: Codable { + public var isDownloadEpisodeSubtitles: Bool? + public var downloadLanguages: [String]? + public var isDownloadMovieSubtitles: Bool? + public var isOpenSubtitleVipAccount: Bool? + public var openSubtitlesPasswordHash: String? + public var openSubtitlesUsername: String? + public var requirePerfectMatch: Bool? + public var isSkipIfAudioTrackMatches: Bool? + public var isSkipIfEmbeddedSubtitlesPresent: Bool? + + public init( + isDownloadEpisodeSubtitles: Bool? = nil, + downloadLanguages: [String]? = nil, + isDownloadMovieSubtitles: Bool? = nil, + isOpenSubtitleVipAccount: Bool? = nil, + openSubtitlesPasswordHash: String? = nil, + openSubtitlesUsername: String? = nil, + requirePerfectMatch: Bool? = nil, + isSkipIfAudioTrackMatches: Bool? = nil, + isSkipIfEmbeddedSubtitlesPresent: Bool? = nil + ) { + self.isDownloadEpisodeSubtitles = isDownloadEpisodeSubtitles + self.downloadLanguages = downloadLanguages + self.isDownloadMovieSubtitles = isDownloadMovieSubtitles + self.isOpenSubtitleVipAccount = isOpenSubtitleVipAccount + self.openSubtitlesPasswordHash = openSubtitlesPasswordHash + self.openSubtitlesUsername = openSubtitlesUsername + self.requirePerfectMatch = requirePerfectMatch + self.isSkipIfAudioTrackMatches = isSkipIfAudioTrackMatches + self.isSkipIfEmbeddedSubtitlesPresent = isSkipIfEmbeddedSubtitlesPresent + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isDownloadEpisodeSubtitles = try values.decodeIfPresent(Bool.self, forKey: "DownloadEpisodeSubtitles") + self.downloadLanguages = try values.decodeIfPresent([String].self, forKey: "DownloadLanguages") + self.isDownloadMovieSubtitles = try values.decodeIfPresent(Bool.self, forKey: "DownloadMovieSubtitles") + self.isOpenSubtitleVipAccount = try values.decodeIfPresent(Bool.self, forKey: "IsOpenSubtitleVipAccount") + self.openSubtitlesPasswordHash = try values.decodeIfPresent(String.self, forKey: "OpenSubtitlesPasswordHash") + self.openSubtitlesUsername = try values.decodeIfPresent(String.self, forKey: "OpenSubtitlesUsername") + self.requirePerfectMatch = try values.decodeIfPresent(Bool.self, forKey: "RequirePerfectMatch") + self.isSkipIfAudioTrackMatches = try values.decodeIfPresent(Bool.self, forKey: "SkipIfAudioTrackMatches") + self.isSkipIfEmbeddedSubtitlesPresent = try values.decodeIfPresent(Bool.self, forKey: "SkipIfEmbeddedSubtitlesPresent") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isDownloadEpisodeSubtitles, forKey: "DownloadEpisodeSubtitles") + try values.encodeIfPresent(downloadLanguages, forKey: "DownloadLanguages") + try values.encodeIfPresent(isDownloadMovieSubtitles, forKey: "DownloadMovieSubtitles") + try values.encodeIfPresent(isOpenSubtitleVipAccount, forKey: "IsOpenSubtitleVipAccount") + try values.encodeIfPresent(openSubtitlesPasswordHash, forKey: "OpenSubtitlesPasswordHash") + try values.encodeIfPresent(openSubtitlesUsername, forKey: "OpenSubtitlesUsername") + try values.encodeIfPresent(requirePerfectMatch, forKey: "RequirePerfectMatch") + try values.encodeIfPresent(isSkipIfAudioTrackMatches, forKey: "SkipIfAudioTrackMatches") + try values.encodeIfPresent(isSkipIfEmbeddedSubtitlesPresent, forKey: "SkipIfEmbeddedSubtitlesPresent") + } +} diff --git a/Sources/Entities/SubtitlePlaybackMode.swift b/Sources/Entities/SubtitlePlaybackMode.swift new file mode 100644 index 000000000..6e41b25fc --- /dev/null +++ b/Sources/Entities/SubtitlePlaybackMode.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// An enum representing a subtitle playback mode. +public enum SubtitlePlaybackMode: String, Codable, CaseIterable { + case `default` = "Default" + case always = "Always" + case onlyForced = "OnlyForced" + case none = "None" + case smart = "Smart" +} diff --git a/Sources/Entities/SubtitleProfile.swift b/Sources/Entities/SubtitleProfile.swift new file mode 100644 index 000000000..e13cd527a --- /dev/null +++ b/Sources/Entities/SubtitleProfile.swift @@ -0,0 +1,50 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct SubtitleProfile: Codable { + public var container: String? + public var didlMode: String? + public var format: String? + public var language: String? + /// Delivery method to use during playback of a specific subtitle format. + public var method: SubtitleDeliveryMethod? + + public init( + container: String? = nil, + didlMode: String? = nil, + format: String? = nil, + language: String? = nil, + method: SubtitleDeliveryMethod? = nil + ) { + self.container = container + self.didlMode = didlMode + self.format = format + self.language = language + self.method = method + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.container = try values.decodeIfPresent(String.self, forKey: "Container") + self.didlMode = try values.decodeIfPresent(String.self, forKey: "DidlMode") + self.format = try values.decodeIfPresent(String.self, forKey: "Format") + self.language = try values.decodeIfPresent(String.self, forKey: "Language") + self.method = try values.decodeIfPresent(SubtitleDeliveryMethod.self, forKey: "Method") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(container, forKey: "Container") + try values.encodeIfPresent(didlMode, forKey: "DidlMode") + try values.encodeIfPresent(format, forKey: "Format") + try values.encodeIfPresent(language, forKey: "Language") + try values.encodeIfPresent(method, forKey: "Method") + } +} diff --git a/Sources/Entities/SyncPlayUserAccessType.swift b/Sources/Entities/SyncPlayUserAccessType.swift new file mode 100644 index 000000000..15637a31b --- /dev/null +++ b/Sources/Entities/SyncPlayUserAccessType.swift @@ -0,0 +1,16 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum SyncPlayUserAccessType. +public enum SyncPlayUserAccessType: String, Codable, CaseIterable { + case createAndJoinGroups = "CreateAndJoinGroups" + case joinGroups = "JoinGroups" + case none = "None" +} diff --git a/Sources/Entities/SystemInfo.swift b/Sources/Entities/SystemInfo.swift new file mode 100644 index 000000000..b6e25b692 --- /dev/null +++ b/Sources/Entities/SystemInfo.swift @@ -0,0 +1,182 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class SystemInfo. +public struct SystemInfo: Codable, Identifiable { + /// Gets or sets the cache path. + public var cachePath: String? + public var canLaunchWebBrowser: Bool? + /// Gets or sets a value indicating whether this instance can self restart. + public var canSelfRestart: Bool? + /// Gets or sets the completed installations. + public var completedInstallations: [InstallationInfo]? + /// Enum describing the location of the FFmpeg tool. + /// + /// - warning: Deprecated. + public var encoderLocation: FFmpegLocation? + /// Gets or sets a value indicating whether this instance has pending restart. + public var hasPendingRestart: Bool? + /// Gets or sets a value indicating whether this instance has update available. + /// + /// - warning: Deprecated. + public var hasUpdateAvailable: Bool? + /// Gets or sets the id. + public var id: String? + /// Gets or sets the internal metadata path. + public var internalMetadataPath: String? + public var isShuttingDown: Bool? + /// Gets or sets the items by name path. + public var itemsByNamePath: String? + /// Gets or sets the local address. + public var localAddress: String? + /// Gets or sets the log path. + public var logPath: String? + /// Gets or sets the operating system. + public var operatingSystem: String? + /// Gets or sets the display name of the operating system. + public var operatingSystemDisplayName: String? + /// Gets or sets the package name. + public var packageName: String? + /// Gets or sets the product name. This is the AssemblyProduct name. + public var productName: String? + /// Gets or sets the program data path. + public var programDataPath: String? + /// Gets or sets the name of the server. + public var serverName: String? + /// Gets or sets a value indicating whether the startup wizard is completed. + public var isStartupWizardCompleted: Bool? + /// Gets or sets a value indicating whether [supports library monitor]. + public var isSupportsLibraryMonitor: Bool? + public var systemArchitecture: Architecture? + /// Gets or sets the transcode path. + public var transcodingTempPath: String? + /// Gets or sets the server version. + public var version: String? + /// Gets or sets the web UI resources path. + public var webPath: String? + /// Gets or sets the web socket port number. + public var webSocketPortNumber: Int32? + + public init( + cachePath: String? = nil, + canLaunchWebBrowser: Bool? = nil, + canSelfRestart: Bool? = nil, + completedInstallations: [InstallationInfo]? = nil, + encoderLocation: FFmpegLocation? = nil, + hasPendingRestart: Bool? = nil, + hasUpdateAvailable: Bool? = nil, + id: String? = nil, + internalMetadataPath: String? = nil, + isShuttingDown: Bool? = nil, + itemsByNamePath: String? = nil, + localAddress: String? = nil, + logPath: String? = nil, + operatingSystem: String? = nil, + operatingSystemDisplayName: String? = nil, + packageName: String? = nil, + productName: String? = nil, + programDataPath: String? = nil, + serverName: String? = nil, + isStartupWizardCompleted: Bool? = nil, + isSupportsLibraryMonitor: Bool? = nil, + systemArchitecture: Architecture? = nil, + transcodingTempPath: String? = nil, + version: String? = nil, + webPath: String? = nil, + webSocketPortNumber: Int32? = nil + ) { + self.cachePath = cachePath + self.canLaunchWebBrowser = canLaunchWebBrowser + self.canSelfRestart = canSelfRestart + self.completedInstallations = completedInstallations + self.encoderLocation = encoderLocation + self.hasPendingRestart = hasPendingRestart + self.hasUpdateAvailable = hasUpdateAvailable + self.id = id + self.internalMetadataPath = internalMetadataPath + self.isShuttingDown = isShuttingDown + self.itemsByNamePath = itemsByNamePath + self.localAddress = localAddress + self.logPath = logPath + self.operatingSystem = operatingSystem + self.operatingSystemDisplayName = operatingSystemDisplayName + self.packageName = packageName + self.productName = productName + self.programDataPath = programDataPath + self.serverName = serverName + self.isStartupWizardCompleted = isStartupWizardCompleted + self.isSupportsLibraryMonitor = isSupportsLibraryMonitor + self.systemArchitecture = systemArchitecture + self.transcodingTempPath = transcodingTempPath + self.version = version + self.webPath = webPath + self.webSocketPortNumber = webSocketPortNumber + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.cachePath = try values.decodeIfPresent(String.self, forKey: "CachePath") + self.canLaunchWebBrowser = try values.decodeIfPresent(Bool.self, forKey: "CanLaunchWebBrowser") + self.canSelfRestart = try values.decodeIfPresent(Bool.self, forKey: "CanSelfRestart") + self.completedInstallations = try values.decodeIfPresent([InstallationInfo].self, forKey: "CompletedInstallations") + self.encoderLocation = try values.decodeIfPresent(FFmpegLocation.self, forKey: "EncoderLocation") + self.hasPendingRestart = try values.decodeIfPresent(Bool.self, forKey: "HasPendingRestart") + self.hasUpdateAvailable = try values.decodeIfPresent(Bool.self, forKey: "HasUpdateAvailable") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.internalMetadataPath = try values.decodeIfPresent(String.self, forKey: "InternalMetadataPath") + self.isShuttingDown = try values.decodeIfPresent(Bool.self, forKey: "IsShuttingDown") + self.itemsByNamePath = try values.decodeIfPresent(String.self, forKey: "ItemsByNamePath") + self.localAddress = try values.decodeIfPresent(String.self, forKey: "LocalAddress") + self.logPath = try values.decodeIfPresent(String.self, forKey: "LogPath") + self.operatingSystem = try values.decodeIfPresent(String.self, forKey: "OperatingSystem") + self.operatingSystemDisplayName = try values.decodeIfPresent(String.self, forKey: "OperatingSystemDisplayName") + self.packageName = try values.decodeIfPresent(String.self, forKey: "PackageName") + self.productName = try values.decodeIfPresent(String.self, forKey: "ProductName") + self.programDataPath = try values.decodeIfPresent(String.self, forKey: "ProgramDataPath") + self.serverName = try values.decodeIfPresent(String.self, forKey: "ServerName") + self.isStartupWizardCompleted = try values.decodeIfPresent(Bool.self, forKey: "StartupWizardCompleted") + self.isSupportsLibraryMonitor = try values.decodeIfPresent(Bool.self, forKey: "SupportsLibraryMonitor") + self.systemArchitecture = try values.decodeIfPresent(Architecture.self, forKey: "SystemArchitecture") + self.transcodingTempPath = try values.decodeIfPresent(String.self, forKey: "TranscodingTempPath") + self.version = try values.decodeIfPresent(String.self, forKey: "Version") + self.webPath = try values.decodeIfPresent(String.self, forKey: "WebPath") + self.webSocketPortNumber = try values.decodeIfPresent(Int32.self, forKey: "WebSocketPortNumber") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(cachePath, forKey: "CachePath") + try values.encodeIfPresent(canLaunchWebBrowser, forKey: "CanLaunchWebBrowser") + try values.encodeIfPresent(canSelfRestart, forKey: "CanSelfRestart") + try values.encodeIfPresent(completedInstallations, forKey: "CompletedInstallations") + try values.encodeIfPresent(encoderLocation, forKey: "EncoderLocation") + try values.encodeIfPresent(hasPendingRestart, forKey: "HasPendingRestart") + try values.encodeIfPresent(hasUpdateAvailable, forKey: "HasUpdateAvailable") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(internalMetadataPath, forKey: "InternalMetadataPath") + try values.encodeIfPresent(isShuttingDown, forKey: "IsShuttingDown") + try values.encodeIfPresent(itemsByNamePath, forKey: "ItemsByNamePath") + try values.encodeIfPresent(localAddress, forKey: "LocalAddress") + try values.encodeIfPresent(logPath, forKey: "LogPath") + try values.encodeIfPresent(operatingSystem, forKey: "OperatingSystem") + try values.encodeIfPresent(operatingSystemDisplayName, forKey: "OperatingSystemDisplayName") + try values.encodeIfPresent(packageName, forKey: "PackageName") + try values.encodeIfPresent(productName, forKey: "ProductName") + try values.encodeIfPresent(programDataPath, forKey: "ProgramDataPath") + try values.encodeIfPresent(serverName, forKey: "ServerName") + try values.encodeIfPresent(isStartupWizardCompleted, forKey: "StartupWizardCompleted") + try values.encodeIfPresent(isSupportsLibraryMonitor, forKey: "SupportsLibraryMonitor") + try values.encodeIfPresent(systemArchitecture, forKey: "SystemArchitecture") + try values.encodeIfPresent(transcodingTempPath, forKey: "TranscodingTempPath") + try values.encodeIfPresent(version, forKey: "Version") + try values.encodeIfPresent(webPath, forKey: "WebPath") + try values.encodeIfPresent(webSocketPortNumber, forKey: "WebSocketPortNumber") + } +} diff --git a/Sources/Entities/TaskCompletionStatus.swift b/Sources/Entities/TaskCompletionStatus.swift new file mode 100644 index 000000000..459c994aa --- /dev/null +++ b/Sources/Entities/TaskCompletionStatus.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum TaskCompletionStatus. +public enum TaskCompletionStatus: String, Codable, CaseIterable { + case completed = "Completed" + case failed = "Failed" + case cancelled = "Cancelled" + case aborted = "Aborted" +} diff --git a/Sources/Entities/TaskInfo.swift b/Sources/Entities/TaskInfo.swift new file mode 100644 index 000000000..c31dea146 --- /dev/null +++ b/Sources/Entities/TaskInfo.swift @@ -0,0 +1,85 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class TaskInfo. +public struct TaskInfo: Codable, Identifiable { + /// Gets or sets the category. + public var category: String? + /// Gets or sets the progress. + public var currentProgressPercentage: Double? + /// Gets or sets the description. + public var description: String? + /// Gets or sets the id. + public var id: String? + /// Gets or sets a value indicating whether this instance is hidden. + public var isHidden: Bool? + /// Gets or sets the key. + public var key: String? + /// Gets or sets the last execution result. + public var lastExecutionResult: TaskResult? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the state of the task. + public var state: TaskState? + /// Gets or sets the triggers. + public var triggers: [TaskTriggerInfo]? + + public init( + category: String? = nil, + currentProgressPercentage: Double? = nil, + description: String? = nil, + id: String? = nil, + isHidden: Bool? = nil, + key: String? = nil, + lastExecutionResult: TaskResult? = nil, + name: String? = nil, + state: TaskState? = nil, + triggers: [TaskTriggerInfo]? = nil + ) { + self.category = category + self.currentProgressPercentage = currentProgressPercentage + self.description = description + self.id = id + self.isHidden = isHidden + self.key = key + self.lastExecutionResult = lastExecutionResult + self.name = name + self.state = state + self.triggers = triggers + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.category = try values.decodeIfPresent(String.self, forKey: "Category") + self.currentProgressPercentage = try values.decodeIfPresent(Double.self, forKey: "CurrentProgressPercentage") + self.description = try values.decodeIfPresent(String.self, forKey: "Description") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.isHidden = try values.decodeIfPresent(Bool.self, forKey: "IsHidden") + self.key = try values.decodeIfPresent(String.self, forKey: "Key") + self.lastExecutionResult = try values.decodeIfPresent(TaskResult.self, forKey: "LastExecutionResult") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.state = try values.decodeIfPresent(TaskState.self, forKey: "State") + self.triggers = try values.decodeIfPresent([TaskTriggerInfo].self, forKey: "Triggers") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(category, forKey: "Category") + try values.encodeIfPresent(currentProgressPercentage, forKey: "CurrentProgressPercentage") + try values.encodeIfPresent(description, forKey: "Description") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(isHidden, forKey: "IsHidden") + try values.encodeIfPresent(key, forKey: "Key") + try values.encodeIfPresent(lastExecutionResult, forKey: "LastExecutionResult") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(state, forKey: "State") + try values.encodeIfPresent(triggers, forKey: "Triggers") + } +} diff --git a/Sources/Entities/TaskResult.swift b/Sources/Entities/TaskResult.swift new file mode 100644 index 000000000..2c816ef53 --- /dev/null +++ b/Sources/Entities/TaskResult.swift @@ -0,0 +1,73 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class TaskExecutionInfo. +public struct TaskResult: Codable, Identifiable { + /// Gets or sets the end time UTC. + public var endTimeUtc: Date? + /// Gets or sets the error message. + public var errorMessage: String? + /// Gets or sets the id. + public var id: String? + /// Gets or sets the key. + public var key: String? + /// Gets or sets the long error message. + public var longErrorMessage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the start time UTC. + public var startTimeUtc: Date? + /// Gets or sets the status. + public var status: TaskCompletionStatus? + + public init( + endTimeUtc: Date? = nil, + errorMessage: String? = nil, + id: String? = nil, + key: String? = nil, + longErrorMessage: String? = nil, + name: String? = nil, + startTimeUtc: Date? = nil, + status: TaskCompletionStatus? = nil + ) { + self.endTimeUtc = endTimeUtc + self.errorMessage = errorMessage + self.id = id + self.key = key + self.longErrorMessage = longErrorMessage + self.name = name + self.startTimeUtc = startTimeUtc + self.status = status + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.endTimeUtc = try values.decodeIfPresent(Date.self, forKey: "EndTimeUtc") + self.errorMessage = try values.decodeIfPresent(String.self, forKey: "ErrorMessage") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.key = try values.decodeIfPresent(String.self, forKey: "Key") + self.longErrorMessage = try values.decodeIfPresent(String.self, forKey: "LongErrorMessage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.startTimeUtc = try values.decodeIfPresent(Date.self, forKey: "StartTimeUtc") + self.status = try values.decodeIfPresent(TaskCompletionStatus.self, forKey: "Status") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(endTimeUtc, forKey: "EndTimeUtc") + try values.encodeIfPresent(errorMessage, forKey: "ErrorMessage") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(key, forKey: "Key") + try values.encodeIfPresent(longErrorMessage, forKey: "LongErrorMessage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(startTimeUtc, forKey: "StartTimeUtc") + try values.encodeIfPresent(status, forKey: "Status") + } +} diff --git a/Sources/Entities/TaskState.swift b/Sources/Entities/TaskState.swift new file mode 100644 index 000000000..2d7efe8ee --- /dev/null +++ b/Sources/Entities/TaskState.swift @@ -0,0 +1,16 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum TaskState. +public enum TaskState: String, Codable, CaseIterable { + case idle = "Idle" + case cancelling = "Cancelling" + case running = "Running" +} diff --git a/Sources/Entities/TaskTriggerInfo.swift b/Sources/Entities/TaskTriggerInfo.swift new file mode 100644 index 000000000..9c5e69a25 --- /dev/null +++ b/Sources/Entities/TaskTriggerInfo.swift @@ -0,0 +1,55 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class TaskTriggerInfo. +public struct TaskTriggerInfo: Codable { + /// Gets or sets the day of week. + public var dayOfWeek: DayOfWeek? + /// Gets or sets the interval. + public var intervalTicks: Int64? + /// Gets or sets the maximum runtime ticks. + public var maxRuntimeTicks: Int64? + /// Gets or sets the time of day. + public var timeOfDayTicks: Int64? + /// Gets or sets the type. + public var type: String? + + public init( + dayOfWeek: DayOfWeek? = nil, + intervalTicks: Int64? = nil, + maxRuntimeTicks: Int64? = nil, + timeOfDayTicks: Int64? = nil, + type: String? = nil + ) { + self.dayOfWeek = dayOfWeek + self.intervalTicks = intervalTicks + self.maxRuntimeTicks = maxRuntimeTicks + self.timeOfDayTicks = timeOfDayTicks + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.dayOfWeek = try values.decodeIfPresent(DayOfWeek.self, forKey: "DayOfWeek") + self.intervalTicks = try values.decodeIfPresent(Int64.self, forKey: "IntervalTicks") + self.maxRuntimeTicks = try values.decodeIfPresent(Int64.self, forKey: "MaxRuntimeTicks") + self.timeOfDayTicks = try values.decodeIfPresent(Int64.self, forKey: "TimeOfDayTicks") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(dayOfWeek, forKey: "DayOfWeek") + try values.encodeIfPresent(intervalTicks, forKey: "IntervalTicks") + try values.encodeIfPresent(maxRuntimeTicks, forKey: "MaxRuntimeTicks") + try values.encodeIfPresent(timeOfDayTicks, forKey: "TimeOfDayTicks") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/ThemeMediaResult.swift b/Sources/Entities/ThemeMediaResult.swift new file mode 100644 index 000000000..b4808dea3 --- /dev/null +++ b/Sources/Entities/ThemeMediaResult.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class ThemeMediaResult. +public struct ThemeMediaResult: Codable { + /// Gets or sets the items. + public var items: [BaseItemDto]? + /// Gets or sets the owner id. + public var ownerID: String? + /// Gets or sets the index of the first record in Items. + public var startIndex: Int32? + /// Gets or sets the total number of records available. + public var totalRecordCount: Int32? + + public init(items: [BaseItemDto]? = nil, ownerID: String? = nil, startIndex: Int32? = nil, totalRecordCount: Int32? = nil) { + self.items = items + self.ownerID = ownerID + self.startIndex = startIndex + self.totalRecordCount = totalRecordCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.items = try values.decodeIfPresent([BaseItemDto].self, forKey: "Items") + self.ownerID = try values.decodeIfPresent(String.self, forKey: "OwnerId") + self.startIndex = try values.decodeIfPresent(Int32.self, forKey: "StartIndex") + self.totalRecordCount = try values.decodeIfPresent(Int32.self, forKey: "TotalRecordCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(items, forKey: "Items") + try values.encodeIfPresent(ownerID, forKey: "OwnerId") + try values.encodeIfPresent(startIndex, forKey: "StartIndex") + try values.encodeIfPresent(totalRecordCount, forKey: "TotalRecordCount") + } +} diff --git a/Sources/Entities/TimerEventInfo.swift b/Sources/Entities/TimerEventInfo.swift new file mode 100644 index 000000000..d5df3bebb --- /dev/null +++ b/Sources/Entities/TimerEventInfo.swift @@ -0,0 +1,31 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct TimerEventInfo: Codable, Identifiable { + public var id: String? + public var programID: String? + + public init(id: String? = nil, programID: String? = nil) { + self.id = id + self.programID = programID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.programID = try values.decodeIfPresent(String.self, forKey: "ProgramId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(programID, forKey: "ProgramId") + } +} diff --git a/Sources/Entities/TimerInfoDto.swift b/Sources/Entities/TimerInfoDto.swift new file mode 100644 index 000000000..d59db1a2d --- /dev/null +++ b/Sources/Entities/TimerInfoDto.swift @@ -0,0 +1,189 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct TimerInfoDto: Codable, Identifiable { + /// Gets or sets the channel id of the recording. + public var channelID: String? + /// Gets or sets the channel name of the recording. + public var channelName: String? + public var channelPrimaryImageTag: String? + /// Gets or sets the end date of the recording, in UTC. + public var endDate: Date? + /// Gets or sets the external channel identifier. + public var externalChannelID: String? + /// Gets or sets the external identifier. + public var externalID: String? + /// Gets or sets the external program identifier. + public var externalProgramID: String? + /// Gets or sets the external series timer identifier. + public var externalSeriesTimerID: String? + /// Gets or sets the Id of the recording. + public var id: String? + /// Gets or sets a value indicating whether this instance is post padding required. + public var isPostPaddingRequired: Bool? + /// Gets or sets a value indicating whether this instance is pre padding required. + public var isPrePaddingRequired: Bool? + public var keepUntil: KeepUntil? + /// Gets or sets the name of the recording. + public var name: String? + /// Gets or sets the description of the recording. + public var overview: String? + /// Gets or sets the parent backdrop image tags. + public var parentBackdropImageTags: [String]? + /// Gets or sets the Id of the Parent that has a backdrop if the item does not have one. + public var parentBackdropItemID: String? + /// Gets or sets the post padding seconds. + public var postPaddingSeconds: Int32? + /// Gets or sets the pre padding seconds. + public var prePaddingSeconds: Int32? + /// Gets or sets the priority. + public var priority: Int32? + /// Gets or sets the program identifier. + public var programID: String? + /// Gets or sets the program information. + public var programInfo: BaseItemDto? + /// Gets or sets the run time ticks. + public var runTimeTicks: Int64? + /// Gets or sets the series timer identifier. + public var seriesTimerID: String? + /// Gets or sets the server identifier. + public var serverID: String? + /// Gets or sets the name of the service. + public var serviceName: String? + /// Gets or sets the start date of the recording, in UTC. + public var startDate: Date? + /// Gets or sets the status. + public var status: RecordingStatus? + public var type: String? + + public init( + channelID: String? = nil, + channelName: String? = nil, + channelPrimaryImageTag: String? = nil, + endDate: Date? = nil, + externalChannelID: String? = nil, + externalID: String? = nil, + externalProgramID: String? = nil, + externalSeriesTimerID: String? = nil, + id: String? = nil, + isPostPaddingRequired: Bool? = nil, + isPrePaddingRequired: Bool? = nil, + keepUntil: KeepUntil? = nil, + name: String? = nil, + overview: String? = nil, + parentBackdropImageTags: [String]? = nil, + parentBackdropItemID: String? = nil, + postPaddingSeconds: Int32? = nil, + prePaddingSeconds: Int32? = nil, + priority: Int32? = nil, + programID: String? = nil, + programInfo: BaseItemDto? = nil, + runTimeTicks: Int64? = nil, + seriesTimerID: String? = nil, + serverID: String? = nil, + serviceName: String? = nil, + startDate: Date? = nil, + status: RecordingStatus? = nil, + type: String? = nil + ) { + self.channelID = channelID + self.channelName = channelName + self.channelPrimaryImageTag = channelPrimaryImageTag + self.endDate = endDate + self.externalChannelID = externalChannelID + self.externalID = externalID + self.externalProgramID = externalProgramID + self.externalSeriesTimerID = externalSeriesTimerID + self.id = id + self.isPostPaddingRequired = isPostPaddingRequired + self.isPrePaddingRequired = isPrePaddingRequired + self.keepUntil = keepUntil + self.name = name + self.overview = overview + self.parentBackdropImageTags = parentBackdropImageTags + self.parentBackdropItemID = parentBackdropItemID + self.postPaddingSeconds = postPaddingSeconds + self.prePaddingSeconds = prePaddingSeconds + self.priority = priority + self.programID = programID + self.programInfo = programInfo + self.runTimeTicks = runTimeTicks + self.seriesTimerID = seriesTimerID + self.serverID = serverID + self.serviceName = serviceName + self.startDate = startDate + self.status = status + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.channelID = try values.decodeIfPresent(String.self, forKey: "ChannelId") + self.channelName = try values.decodeIfPresent(String.self, forKey: "ChannelName") + self.channelPrimaryImageTag = try values.decodeIfPresent(String.self, forKey: "ChannelPrimaryImageTag") + self.endDate = try values.decodeIfPresent(Date.self, forKey: "EndDate") + self.externalChannelID = try values.decodeIfPresent(String.self, forKey: "ExternalChannelId") + self.externalID = try values.decodeIfPresent(String.self, forKey: "ExternalId") + self.externalProgramID = try values.decodeIfPresent(String.self, forKey: "ExternalProgramId") + self.externalSeriesTimerID = try values.decodeIfPresent(String.self, forKey: "ExternalSeriesTimerId") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.isPostPaddingRequired = try values.decodeIfPresent(Bool.self, forKey: "IsPostPaddingRequired") + self.isPrePaddingRequired = try values.decodeIfPresent(Bool.self, forKey: "IsPrePaddingRequired") + self.keepUntil = try values.decodeIfPresent(KeepUntil.self, forKey: "KeepUntil") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.overview = try values.decodeIfPresent(String.self, forKey: "Overview") + self.parentBackdropImageTags = try values.decodeIfPresent([String].self, forKey: "ParentBackdropImageTags") + self.parentBackdropItemID = try values.decodeIfPresent(String.self, forKey: "ParentBackdropItemId") + self.postPaddingSeconds = try values.decodeIfPresent(Int32.self, forKey: "PostPaddingSeconds") + self.prePaddingSeconds = try values.decodeIfPresent(Int32.self, forKey: "PrePaddingSeconds") + self.priority = try values.decodeIfPresent(Int32.self, forKey: "Priority") + self.programID = try values.decodeIfPresent(String.self, forKey: "ProgramId") + self.programInfo = try values.decodeIfPresent(BaseItemDto.self, forKey: "ProgramInfo") + self.runTimeTicks = try values.decodeIfPresent(Int64.self, forKey: "RunTimeTicks") + self.seriesTimerID = try values.decodeIfPresent(String.self, forKey: "SeriesTimerId") + self.serverID = try values.decodeIfPresent(String.self, forKey: "ServerId") + self.serviceName = try values.decodeIfPresent(String.self, forKey: "ServiceName") + self.startDate = try values.decodeIfPresent(Date.self, forKey: "StartDate") + self.status = try values.decodeIfPresent(RecordingStatus.self, forKey: "Status") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(channelID, forKey: "ChannelId") + try values.encodeIfPresent(channelName, forKey: "ChannelName") + try values.encodeIfPresent(channelPrimaryImageTag, forKey: "ChannelPrimaryImageTag") + try values.encodeIfPresent(endDate, forKey: "EndDate") + try values.encodeIfPresent(externalChannelID, forKey: "ExternalChannelId") + try values.encodeIfPresent(externalID, forKey: "ExternalId") + try values.encodeIfPresent(externalProgramID, forKey: "ExternalProgramId") + try values.encodeIfPresent(externalSeriesTimerID, forKey: "ExternalSeriesTimerId") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(isPostPaddingRequired, forKey: "IsPostPaddingRequired") + try values.encodeIfPresent(isPrePaddingRequired, forKey: "IsPrePaddingRequired") + try values.encodeIfPresent(keepUntil, forKey: "KeepUntil") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(overview, forKey: "Overview") + try values.encodeIfPresent(parentBackdropImageTags, forKey: "ParentBackdropImageTags") + try values.encodeIfPresent(parentBackdropItemID, forKey: "ParentBackdropItemId") + try values.encodeIfPresent(postPaddingSeconds, forKey: "PostPaddingSeconds") + try values.encodeIfPresent(prePaddingSeconds, forKey: "PrePaddingSeconds") + try values.encodeIfPresent(priority, forKey: "Priority") + try values.encodeIfPresent(programID, forKey: "ProgramId") + try values.encodeIfPresent(programInfo, forKey: "ProgramInfo") + try values.encodeIfPresent(runTimeTicks, forKey: "RunTimeTicks") + try values.encodeIfPresent(seriesTimerID, forKey: "SeriesTimerId") + try values.encodeIfPresent(serverID, forKey: "ServerId") + try values.encodeIfPresent(serviceName, forKey: "ServiceName") + try values.encodeIfPresent(startDate, forKey: "StartDate") + try values.encodeIfPresent(status, forKey: "Status") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/TimerInfoDtoQueryResult.swift b/Sources/Entities/TimerInfoDtoQueryResult.swift new file mode 100644 index 000000000..073c428be --- /dev/null +++ b/Sources/Entities/TimerInfoDtoQueryResult.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct TimerInfoDtoQueryResult: Codable { + /// Gets or sets the items. + public var items: [TimerInfoDto]? + /// Gets or sets the index of the first record in Items. + public var startIndex: Int32? + /// Gets or sets the total number of records available. + public var totalRecordCount: Int32? + + public init(items: [TimerInfoDto]? = nil, startIndex: Int32? = nil, totalRecordCount: Int32? = nil) { + self.items = items + self.startIndex = startIndex + self.totalRecordCount = totalRecordCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.items = try values.decodeIfPresent([TimerInfoDto].self, forKey: "Items") + self.startIndex = try values.decodeIfPresent(Int32.self, forKey: "StartIndex") + self.totalRecordCount = try values.decodeIfPresent(Int32.self, forKey: "TotalRecordCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(items, forKey: "Items") + try values.encodeIfPresent(startIndex, forKey: "StartIndex") + try values.encodeIfPresent(totalRecordCount, forKey: "TotalRecordCount") + } +} diff --git a/Sources/Entities/TrailerInfo.swift b/Sources/Entities/TrailerInfo.swift new file mode 100644 index 000000000..4d5cf49ec --- /dev/null +++ b/Sources/Entities/TrailerInfo.swift @@ -0,0 +1,86 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct TrailerInfo: Codable { + public var indexNumber: Int32? + public var isAutomated: Bool? + /// Gets or sets the metadata country code. + public var metadataCountryCode: String? + /// Gets or sets the metadata language. + public var metadataLanguage: String? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the original title. + public var originalTitle: String? + public var parentIndexNumber: Int32? + /// Gets or sets the path. + public var path: String? + public var premiereDate: Date? + /// Gets or sets the provider ids. + public var providerIDs: [String: String]? + /// Gets or sets the year. + public var year: Int32? + + public init( + indexNumber: Int32? = nil, + isAutomated: Bool? = nil, + metadataCountryCode: String? = nil, + metadataLanguage: String? = nil, + name: String? = nil, + originalTitle: String? = nil, + parentIndexNumber: Int32? = nil, + path: String? = nil, + premiereDate: Date? = nil, + providerIDs: [String: String]? = nil, + year: Int32? = nil + ) { + self.indexNumber = indexNumber + self.isAutomated = isAutomated + self.metadataCountryCode = metadataCountryCode + self.metadataLanguage = metadataLanguage + self.name = name + self.originalTitle = originalTitle + self.parentIndexNumber = parentIndexNumber + self.path = path + self.premiereDate = premiereDate + self.providerIDs = providerIDs + self.year = year + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.indexNumber = try values.decodeIfPresent(Int32.self, forKey: "IndexNumber") + self.isAutomated = try values.decodeIfPresent(Bool.self, forKey: "IsAutomated") + self.metadataCountryCode = try values.decodeIfPresent(String.self, forKey: "MetadataCountryCode") + self.metadataLanguage = try values.decodeIfPresent(String.self, forKey: "MetadataLanguage") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.originalTitle = try values.decodeIfPresent(String.self, forKey: "OriginalTitle") + self.parentIndexNumber = try values.decodeIfPresent(Int32.self, forKey: "ParentIndexNumber") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.premiereDate = try values.decodeIfPresent(Date.self, forKey: "PremiereDate") + self.providerIDs = try values.decodeIfPresent([String: String].self, forKey: "ProviderIds") + self.year = try values.decodeIfPresent(Int32.self, forKey: "Year") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(indexNumber, forKey: "IndexNumber") + try values.encodeIfPresent(isAutomated, forKey: "IsAutomated") + try values.encodeIfPresent(metadataCountryCode, forKey: "MetadataCountryCode") + try values.encodeIfPresent(metadataLanguage, forKey: "MetadataLanguage") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(originalTitle, forKey: "OriginalTitle") + try values.encodeIfPresent(parentIndexNumber, forKey: "ParentIndexNumber") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(premiereDate, forKey: "PremiereDate") + try values.encodeIfPresent(providerIDs, forKey: "ProviderIds") + try values.encodeIfPresent(year, forKey: "Year") + } +} diff --git a/Sources/Entities/TrailerInfoRemoteSearchQuery.swift b/Sources/Entities/TrailerInfoRemoteSearchQuery.swift new file mode 100644 index 000000000..bfab21c48 --- /dev/null +++ b/Sources/Entities/TrailerInfoRemoteSearchQuery.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct TrailerInfoRemoteSearchQuery: Codable { + /// Gets or sets a value indicating whether disabled providers should be included. + public var isIncludeDisabledProviders: Bool? + public var itemID: String? + public var searchInfo: TrailerInfo? + /// Gets or sets the provider name to search within if set. + public var searchProviderName: String? + + public init( + isIncludeDisabledProviders: Bool? = nil, + itemID: String? = nil, + searchInfo: TrailerInfo? = nil, + searchProviderName: String? = nil + ) { + self.isIncludeDisabledProviders = isIncludeDisabledProviders + self.itemID = itemID + self.searchInfo = searchInfo + self.searchProviderName = searchProviderName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isIncludeDisabledProviders = try values.decodeIfPresent(Bool.self, forKey: "IncludeDisabledProviders") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.searchInfo = try values.decodeIfPresent(TrailerInfo.self, forKey: "SearchInfo") + self.searchProviderName = try values.decodeIfPresent(String.self, forKey: "SearchProviderName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isIncludeDisabledProviders, forKey: "IncludeDisabledProviders") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(searchInfo, forKey: "SearchInfo") + try values.encodeIfPresent(searchProviderName, forKey: "SearchProviderName") + } +} diff --git a/Sources/Entities/TranscodeSeekInfo.swift b/Sources/Entities/TranscodeSeekInfo.swift new file mode 100644 index 000000000..25190df45 --- /dev/null +++ b/Sources/Entities/TranscodeSeekInfo.swift @@ -0,0 +1,14 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum TranscodeSeekInfo: String, Codable, CaseIterable { + case auto = "Auto" + case bytes = "Bytes" +} diff --git a/Sources/Entities/TranscodingInfo.swift b/Sources/Entities/TranscodingInfo.swift new file mode 100644 index 000000000..477a337e1 --- /dev/null +++ b/Sources/Entities/TranscodingInfo.swift @@ -0,0 +1,117 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct TranscodingInfo: Codable { + public var audioChannels: Int32? + public var audioCodec: String? + public var bitrate: Int32? + public var completionPercentage: Double? + public var container: String? + public var framerate: Float? + public var hardwareAccelerationType: HardwareEncodingType? + public var height: Int32? + public var isAudioDirect: Bool? + public var isVideoDirect: Bool? + public var transcodeReasons: TranscodeReasons? + public var videoCodec: String? + public var width: Int32? + + public enum TranscodeReasons: String, Codable, CaseIterable { + case containerNotSupported = "ContainerNotSupported" + case videoCodecNotSupported = "VideoCodecNotSupported" + case audioCodecNotSupported = "AudioCodecNotSupported" + case subtitleCodecNotSupported = "SubtitleCodecNotSupported" + case audioIsExternal = "AudioIsExternal" + case secondaryAudioNotSupported = "SecondaryAudioNotSupported" + case videoProfileNotSupported = "VideoProfileNotSupported" + case videoLevelNotSupported = "VideoLevelNotSupported" + case videoResolutionNotSupported = "VideoResolutionNotSupported" + case videoBitDepthNotSupported = "VideoBitDepthNotSupported" + case videoFramerateNotSupported = "VideoFramerateNotSupported" + case refFramesNotSupported = "RefFramesNotSupported" + case anamorphicVideoNotSupported = "AnamorphicVideoNotSupported" + case interlacedVideoNotSupported = "InterlacedVideoNotSupported" + case audioChannelsNotSupported = "AudioChannelsNotSupported" + case audioProfileNotSupported = "AudioProfileNotSupported" + case audioSampleRateNotSupported = "AudioSampleRateNotSupported" + case audioBitDepthNotSupported = "AudioBitDepthNotSupported" + case containerBitrateExceedsLimit = "ContainerBitrateExceedsLimit" + case videoBitrateNotSupported = "VideoBitrateNotSupported" + case audioBitrateNotSupported = "AudioBitrateNotSupported" + case unknownVideoStreamInfo = "UnknownVideoStreamInfo" + case unknownAudioStreamInfo = "UnknownAudioStreamInfo" + case directPlayError = "DirectPlayError" + case videoRangeTypeNotSupported = "VideoRangeTypeNotSupported" + } + + public init( + audioChannels: Int32? = nil, + audioCodec: String? = nil, + bitrate: Int32? = nil, + completionPercentage: Double? = nil, + container: String? = nil, + framerate: Float? = nil, + hardwareAccelerationType: HardwareEncodingType? = nil, + height: Int32? = nil, + isAudioDirect: Bool? = nil, + isVideoDirect: Bool? = nil, + transcodeReasons: TranscodeReasons? = nil, + videoCodec: String? = nil, + width: Int32? = nil + ) { + self.audioChannels = audioChannels + self.audioCodec = audioCodec + self.bitrate = bitrate + self.completionPercentage = completionPercentage + self.container = container + self.framerate = framerate + self.hardwareAccelerationType = hardwareAccelerationType + self.height = height + self.isAudioDirect = isAudioDirect + self.isVideoDirect = isVideoDirect + self.transcodeReasons = transcodeReasons + self.videoCodec = videoCodec + self.width = width + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.audioChannels = try values.decodeIfPresent(Int32.self, forKey: "AudioChannels") + self.audioCodec = try values.decodeIfPresent(String.self, forKey: "AudioCodec") + self.bitrate = try values.decodeIfPresent(Int32.self, forKey: "Bitrate") + self.completionPercentage = try values.decodeIfPresent(Double.self, forKey: "CompletionPercentage") + self.container = try values.decodeIfPresent(String.self, forKey: "Container") + self.framerate = try values.decodeIfPresent(Float.self, forKey: "Framerate") + self.hardwareAccelerationType = try values.decodeIfPresent(HardwareEncodingType.self, forKey: "HardwareAccelerationType") + self.height = try values.decodeIfPresent(Int32.self, forKey: "Height") + self.isAudioDirect = try values.decodeIfPresent(Bool.self, forKey: "IsAudioDirect") + self.isVideoDirect = try values.decodeIfPresent(Bool.self, forKey: "IsVideoDirect") + self.transcodeReasons = try values.decodeIfPresent(TranscodeReasons.self, forKey: "TranscodeReasons") + self.videoCodec = try values.decodeIfPresent(String.self, forKey: "VideoCodec") + self.width = try values.decodeIfPresent(Int32.self, forKey: "Width") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(audioChannels, forKey: "AudioChannels") + try values.encodeIfPresent(audioCodec, forKey: "AudioCodec") + try values.encodeIfPresent(bitrate, forKey: "Bitrate") + try values.encodeIfPresent(completionPercentage, forKey: "CompletionPercentage") + try values.encodeIfPresent(container, forKey: "Container") + try values.encodeIfPresent(framerate, forKey: "Framerate") + try values.encodeIfPresent(hardwareAccelerationType, forKey: "HardwareAccelerationType") + try values.encodeIfPresent(height, forKey: "Height") + try values.encodeIfPresent(isAudioDirect, forKey: "IsAudioDirect") + try values.encodeIfPresent(isVideoDirect, forKey: "IsVideoDirect") + try values.encodeIfPresent(transcodeReasons, forKey: "TranscodeReasons") + try values.encodeIfPresent(videoCodec, forKey: "VideoCodec") + try values.encodeIfPresent(width, forKey: "Width") + } +} diff --git a/Sources/Entities/TranscodingProfile.swift b/Sources/Entities/TranscodingProfile.swift new file mode 100644 index 000000000..1f9746517 --- /dev/null +++ b/Sources/Entities/TranscodingProfile.swift @@ -0,0 +1,104 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct TranscodingProfile: Codable { + public var audioCodec: String? + public var isBreakOnNonKeyFrames: Bool + public var conditions: [ProfileCondition]? + public var container: String? + public var context: EncodingContext? + public var isCopyTimestamps: Bool + public var enableMpegtsM2TsMode: Bool + public var enableSubtitlesInManifest: Bool + public var isEstimateContentLength: Bool + public var maxAudioChannels: String? + public var minSegments: Int32? + public var `protocol`: String? + public var segmentLength: Int32? + public var transcodeSeekInfo: TranscodeSeekInfo? + public var type: DlnaProfileType? + public var videoCodec: String? + + public init( + audioCodec: String? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + conditions: [ProfileCondition]? = nil, + container: String? = nil, + context: EncodingContext? = nil, + isCopyTimestamps: Bool? = nil, + enableMpegtsM2TsMode: Bool? = nil, + enableSubtitlesInManifest: Bool? = nil, + isEstimateContentLength: Bool? = nil, + maxAudioChannels: String? = nil, + minSegments: Int32? = nil, + protocol: String? = nil, + segmentLength: Int32? = nil, + transcodeSeekInfo: TranscodeSeekInfo? = nil, + type: DlnaProfileType? = nil, + videoCodec: String? = nil + ) { + self.audioCodec = audioCodec + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames ?? false + self.conditions = conditions + self.container = container + self.context = context + self.isCopyTimestamps = isCopyTimestamps ?? false + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode ?? false + self.enableSubtitlesInManifest = enableSubtitlesInManifest ?? false + self.isEstimateContentLength = isEstimateContentLength ?? false + self.maxAudioChannels = maxAudioChannels + self.minSegments = minSegments + self.protocol = `protocol` + self.segmentLength = segmentLength + self.transcodeSeekInfo = transcodeSeekInfo + self.type = type + self.videoCodec = videoCodec + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.audioCodec = try values.decodeIfPresent(String.self, forKey: "AudioCodec") + self.isBreakOnNonKeyFrames = try values.decodeIfPresent(Bool.self, forKey: "BreakOnNonKeyFrames") ?? false + self.conditions = try values.decodeIfPresent([ProfileCondition].self, forKey: "Conditions") + self.container = try values.decodeIfPresent(String.self, forKey: "Container") + self.context = try values.decodeIfPresent(EncodingContext.self, forKey: "Context") + self.isCopyTimestamps = try values.decodeIfPresent(Bool.self, forKey: "CopyTimestamps") ?? false + self.enableMpegtsM2TsMode = try values.decodeIfPresent(Bool.self, forKey: "EnableMpegtsM2TsMode") ?? false + self.enableSubtitlesInManifest = try values.decodeIfPresent(Bool.self, forKey: "EnableSubtitlesInManifest") ?? false + self.isEstimateContentLength = try values.decodeIfPresent(Bool.self, forKey: "EstimateContentLength") ?? false + self.maxAudioChannels = try values.decodeIfPresent(String.self, forKey: "MaxAudioChannels") + self.minSegments = try values.decodeIfPresent(Int32.self, forKey: "MinSegments") + self.protocol = try values.decodeIfPresent(String.self, forKey: "Protocol") + self.segmentLength = try values.decodeIfPresent(Int32.self, forKey: "SegmentLength") + self.transcodeSeekInfo = try values.decodeIfPresent(TranscodeSeekInfo.self, forKey: "TranscodeSeekInfo") + self.type = try values.decodeIfPresent(DlnaProfileType.self, forKey: "Type") + self.videoCodec = try values.decodeIfPresent(String.self, forKey: "VideoCodec") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(audioCodec, forKey: "AudioCodec") + try values.encodeIfPresent(isBreakOnNonKeyFrames, forKey: "BreakOnNonKeyFrames") + try values.encodeIfPresent(conditions, forKey: "Conditions") + try values.encodeIfPresent(container, forKey: "Container") + try values.encodeIfPresent(context, forKey: "Context") + try values.encodeIfPresent(isCopyTimestamps, forKey: "CopyTimestamps") + try values.encodeIfPresent(enableMpegtsM2TsMode, forKey: "EnableMpegtsM2TsMode") + try values.encodeIfPresent(enableSubtitlesInManifest, forKey: "EnableSubtitlesInManifest") + try values.encodeIfPresent(isEstimateContentLength, forKey: "EstimateContentLength") + try values.encodeIfPresent(maxAudioChannels, forKey: "MaxAudioChannels") + try values.encodeIfPresent(minSegments, forKey: "MinSegments") + try values.encodeIfPresent(`protocol`, forKey: "Protocol") + try values.encodeIfPresent(segmentLength, forKey: "SegmentLength") + try values.encodeIfPresent(transcodeSeekInfo, forKey: "TranscodeSeekInfo") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(videoCodec, forKey: "VideoCodec") + } +} diff --git a/Sources/Entities/TransportStreamTimestamp.swift b/Sources/Entities/TransportStreamTimestamp.swift new file mode 100644 index 000000000..c30eafdbd --- /dev/null +++ b/Sources/Entities/TransportStreamTimestamp.swift @@ -0,0 +1,15 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum TransportStreamTimestamp: String, Codable, CaseIterable { + case none = "None" + case zero = "Zero" + case valid = "Valid" +} diff --git a/Sources/Entities/TunerChannelMapping.swift b/Sources/Entities/TunerChannelMapping.swift new file mode 100644 index 000000000..7413d4f98 --- /dev/null +++ b/Sources/Entities/TunerChannelMapping.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct TunerChannelMapping: Codable, Identifiable { + public var id: String? + public var name: String? + public var providerChannelID: String? + public var providerChannelName: String? + + public init(id: String? = nil, name: String? = nil, providerChannelID: String? = nil, providerChannelName: String? = nil) { + self.id = id + self.name = name + self.providerChannelID = providerChannelID + self.providerChannelName = providerChannelName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.providerChannelID = try values.decodeIfPresent(String.self, forKey: "ProviderChannelId") + self.providerChannelName = try values.decodeIfPresent(String.self, forKey: "ProviderChannelName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(providerChannelID, forKey: "ProviderChannelId") + try values.encodeIfPresent(providerChannelName, forKey: "ProviderChannelName") + } +} diff --git a/Sources/Entities/TunerHostInfo.swift b/Sources/Entities/TunerHostInfo.swift new file mode 100644 index 000000000..9bb557e6f --- /dev/null +++ b/Sources/Entities/TunerHostInfo.swift @@ -0,0 +1,79 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct TunerHostInfo: Codable, Identifiable { + public var allowHWTranscoding: Bool? + public var deviceID: String? + public var enableStreamLooping: Bool? + public var friendlyName: String? + public var id: String? + public var isImportFavoritesOnly: Bool? + public var source: String? + public var tunerCount: Int32? + public var type: String? + public var url: String? + public var userAgent: String? + + public init( + allowHWTranscoding: Bool? = nil, + deviceID: String? = nil, + enableStreamLooping: Bool? = nil, + friendlyName: String? = nil, + id: String? = nil, + isImportFavoritesOnly: Bool? = nil, + source: String? = nil, + tunerCount: Int32? = nil, + type: String? = nil, + url: String? = nil, + userAgent: String? = nil + ) { + self.allowHWTranscoding = allowHWTranscoding + self.deviceID = deviceID + self.enableStreamLooping = enableStreamLooping + self.friendlyName = friendlyName + self.id = id + self.isImportFavoritesOnly = isImportFavoritesOnly + self.source = source + self.tunerCount = tunerCount + self.type = type + self.url = url + self.userAgent = userAgent + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.allowHWTranscoding = try values.decodeIfPresent(Bool.self, forKey: "AllowHWTranscoding") + self.deviceID = try values.decodeIfPresent(String.self, forKey: "DeviceId") + self.enableStreamLooping = try values.decodeIfPresent(Bool.self, forKey: "EnableStreamLooping") + self.friendlyName = try values.decodeIfPresent(String.self, forKey: "FriendlyName") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.isImportFavoritesOnly = try values.decodeIfPresent(Bool.self, forKey: "ImportFavoritesOnly") + self.source = try values.decodeIfPresent(String.self, forKey: "Source") + self.tunerCount = try values.decodeIfPresent(Int32.self, forKey: "TunerCount") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + self.url = try values.decodeIfPresent(String.self, forKey: "Url") + self.userAgent = try values.decodeIfPresent(String.self, forKey: "UserAgent") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(allowHWTranscoding, forKey: "AllowHWTranscoding") + try values.encodeIfPresent(deviceID, forKey: "DeviceId") + try values.encodeIfPresent(enableStreamLooping, forKey: "EnableStreamLooping") + try values.encodeIfPresent(friendlyName, forKey: "FriendlyName") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(isImportFavoritesOnly, forKey: "ImportFavoritesOnly") + try values.encodeIfPresent(source, forKey: "Source") + try values.encodeIfPresent(tunerCount, forKey: "TunerCount") + try values.encodeIfPresent(type, forKey: "Type") + try values.encodeIfPresent(url, forKey: "Url") + try values.encodeIfPresent(userAgent, forKey: "UserAgent") + } +} diff --git a/Sources/Entities/TypeOptions.swift b/Sources/Entities/TypeOptions.swift new file mode 100644 index 000000000..0e37ab7d9 --- /dev/null +++ b/Sources/Entities/TypeOptions.swift @@ -0,0 +1,54 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct TypeOptions: Codable { + public var imageFetcherOrder: [String]? + public var imageFetchers: [String]? + public var imageOptions: [ImageOption]? + public var metadataFetcherOrder: [String]? + public var metadataFetchers: [String]? + public var type: String? + + public init( + imageFetcherOrder: [String]? = nil, + imageFetchers: [String]? = nil, + imageOptions: [ImageOption]? = nil, + metadataFetcherOrder: [String]? = nil, + metadataFetchers: [String]? = nil, + type: String? = nil + ) { + self.imageFetcherOrder = imageFetcherOrder + self.imageFetchers = imageFetchers + self.imageOptions = imageOptions + self.metadataFetcherOrder = metadataFetcherOrder + self.metadataFetchers = metadataFetchers + self.type = type + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.imageFetcherOrder = try values.decodeIfPresent([String].self, forKey: "ImageFetcherOrder") + self.imageFetchers = try values.decodeIfPresent([String].self, forKey: "ImageFetchers") + self.imageOptions = try values.decodeIfPresent([ImageOption].self, forKey: "ImageOptions") + self.metadataFetcherOrder = try values.decodeIfPresent([String].self, forKey: "MetadataFetcherOrder") + self.metadataFetchers = try values.decodeIfPresent([String].self, forKey: "MetadataFetchers") + self.type = try values.decodeIfPresent(String.self, forKey: "Type") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(imageFetcherOrder, forKey: "ImageFetcherOrder") + try values.encodeIfPresent(imageFetchers, forKey: "ImageFetchers") + try values.encodeIfPresent(imageOptions, forKey: "ImageOptions") + try values.encodeIfPresent(metadataFetcherOrder, forKey: "MetadataFetcherOrder") + try values.encodeIfPresent(metadataFetchers, forKey: "MetadataFetchers") + try values.encodeIfPresent(type, forKey: "Type") + } +} diff --git a/Sources/Entities/UnratedItem.swift b/Sources/Entities/UnratedItem.swift new file mode 100644 index 000000000..71fe220a3 --- /dev/null +++ b/Sources/Entities/UnratedItem.swift @@ -0,0 +1,22 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// An enum representing an unrated item. +public enum UnratedItem: String, Codable, CaseIterable { + case movie = "Movie" + case trailer = "Trailer" + case series = "Series" + case music = "Music" + case book = "Book" + case liveTvChannel = "LiveTvChannel" + case liveTvProgram = "LiveTvProgram" + case channelContent = "ChannelContent" + case other = "Other" +} diff --git a/Sources/Entities/UpdateLibraryOptionsDto.swift b/Sources/Entities/UpdateLibraryOptionsDto.swift new file mode 100644 index 000000000..4582a89a1 --- /dev/null +++ b/Sources/Entities/UpdateLibraryOptionsDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Update library options dto. +public struct UpdateLibraryOptionsDto: Codable, Identifiable { + /// Gets or sets the library item id. + public var id: String? + /// Gets or sets library options. + public var libraryOptions: LibraryOptions? + + public init(id: String? = nil, libraryOptions: LibraryOptions? = nil) { + self.id = id + self.libraryOptions = libraryOptions + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.libraryOptions = try values.decodeIfPresent(LibraryOptions.self, forKey: "LibraryOptions") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(libraryOptions, forKey: "LibraryOptions") + } +} diff --git a/Sources/Entities/UpdateMediaPathRequestDto.swift b/Sources/Entities/UpdateMediaPathRequestDto.swift new file mode 100644 index 000000000..cf63bd383 --- /dev/null +++ b/Sources/Entities/UpdateMediaPathRequestDto.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Update library options dto. +public struct UpdateMediaPathRequestDto: Codable { + /// Gets or sets the library name. + public var name: String + /// Gets or sets library folder path information. + public var pathInfo: MediaPathInfo + + public init(name: String, pathInfo: MediaPathInfo) { + self.name = name + self.pathInfo = pathInfo + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decode(String.self, forKey: "Name") + self.pathInfo = try values.decode(MediaPathInfo.self, forKey: "PathInfo") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encode(name, forKey: "Name") + try values.encode(pathInfo, forKey: "PathInfo") + } +} diff --git a/Sources/Entities/UpdateUserEasyPassword.swift b/Sources/Entities/UpdateUserEasyPassword.swift new file mode 100644 index 000000000..e607b2225 --- /dev/null +++ b/Sources/Entities/UpdateUserEasyPassword.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The update user easy password request body. +public struct UpdateUserEasyPassword: Codable { + /// Gets or sets the new sha1-hashed password. + public var newPassword: String? + /// Gets or sets the new password. + public var newPw: String? + /// Gets or sets a value indicating whether to reset the password. + public var isResetPassword: Bool? + + public init(newPassword: String? = nil, newPw: String? = nil, isResetPassword: Bool? = nil) { + self.newPassword = newPassword + self.newPw = newPw + self.isResetPassword = isResetPassword + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.newPassword = try values.decodeIfPresent(String.self, forKey: "NewPassword") + self.newPw = try values.decodeIfPresent(String.self, forKey: "NewPw") + self.isResetPassword = try values.decodeIfPresent(Bool.self, forKey: "ResetPassword") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(newPassword, forKey: "NewPassword") + try values.encodeIfPresent(newPw, forKey: "NewPw") + try values.encodeIfPresent(isResetPassword, forKey: "ResetPassword") + } +} diff --git a/Sources/Entities/UpdateUserPassword.swift b/Sources/Entities/UpdateUserPassword.swift new file mode 100644 index 000000000..b2d78a01e --- /dev/null +++ b/Sources/Entities/UpdateUserPassword.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// The update user password request body. +public struct UpdateUserPassword: Codable { + /// Gets or sets the current sha1-hashed password. + public var currentPassword: String? + /// Gets or sets the current plain text password. + public var currentPw: String? + /// Gets or sets the new plain text password. + public var newPw: String? + /// Gets or sets a value indicating whether to reset the password. + public var isResetPassword: Bool? + + public init(currentPassword: String? = nil, currentPw: String? = nil, newPw: String? = nil, isResetPassword: Bool? = nil) { + self.currentPassword = currentPassword + self.currentPw = currentPw + self.newPw = newPw + self.isResetPassword = isResetPassword + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.currentPassword = try values.decodeIfPresent(String.self, forKey: "CurrentPassword") + self.currentPw = try values.decodeIfPresent(String.self, forKey: "CurrentPw") + self.newPw = try values.decodeIfPresent(String.self, forKey: "NewPw") + self.isResetPassword = try values.decodeIfPresent(Bool.self, forKey: "ResetPassword") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(currentPassword, forKey: "CurrentPassword") + try values.encodeIfPresent(currentPw, forKey: "CurrentPw") + try values.encodeIfPresent(newPw, forKey: "NewPw") + try values.encodeIfPresent(isResetPassword, forKey: "ResetPassword") + } +} diff --git a/Sources/Entities/UploadSubtitleDto.swift b/Sources/Entities/UploadSubtitleDto.swift new file mode 100644 index 000000000..308a08239 --- /dev/null +++ b/Sources/Entities/UploadSubtitleDto.swift @@ -0,0 +1,44 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Upload subtitles dto. +public struct UploadSubtitleDto: Codable { + /// Gets or sets the subtitle data. + public var data: String + /// Gets or sets the subtitle format. + public var format: String + /// Gets or sets a value indicating whether the subtitle is forced. + public var isForced: Bool + /// Gets or sets the subtitle language. + public var language: String + + public init(data: String, format: String, isForced: Bool, language: String) { + self.data = data + self.format = format + self.isForced = isForced + self.language = language + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.data = try values.decode(String.self, forKey: "Data") + self.format = try values.decode(String.self, forKey: "Format") + self.isForced = try values.decode(Bool.self, forKey: "IsForced") + self.language = try values.decode(String.self, forKey: "Language") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encode(data, forKey: "Data") + try values.encode(format, forKey: "Format") + try values.encode(isForced, forKey: "IsForced") + try values.encode(language, forKey: "Language") + } +} diff --git a/Sources/Entities/UserConfiguration.swift b/Sources/Entities/UserConfiguration.swift new file mode 100644 index 000000000..d11d86cbf --- /dev/null +++ b/Sources/Entities/UserConfiguration.swift @@ -0,0 +1,104 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class UserConfiguration. +public struct UserConfiguration: Codable { + /// Gets or sets the audio language preference. + public var audioLanguagePreference: String? + public var isDisplayCollectionsView: Bool? + public var isDisplayMissingEpisodes: Bool? + public var enableLocalPassword: Bool? + public var enableNextEpisodeAutoPlay: Bool? + public var groupedFolders: [String]? + public var isHidePlayedInLatest: Bool? + public var latestItemsExcludes: [String]? + public var myMediaExcludes: [String]? + public var orderedViews: [String]? + /// Gets or sets a value indicating whether [play default audio track]. + public var isPlayDefaultAudioTrack: Bool? + public var isRememberAudioSelections: Bool? + public var isRememberSubtitleSelections: Bool? + /// Gets or sets the subtitle language preference. + public var subtitleLanguagePreference: String? + /// An enum representing a subtitle playback mode. + public var subtitleMode: SubtitlePlaybackMode? + + public init( + audioLanguagePreference: String? = nil, + isDisplayCollectionsView: Bool? = nil, + isDisplayMissingEpisodes: Bool? = nil, + enableLocalPassword: Bool? = nil, + enableNextEpisodeAutoPlay: Bool? = nil, + groupedFolders: [String]? = nil, + isHidePlayedInLatest: Bool? = nil, + latestItemsExcludes: [String]? = nil, + myMediaExcludes: [String]? = nil, + orderedViews: [String]? = nil, + isPlayDefaultAudioTrack: Bool? = nil, + isRememberAudioSelections: Bool? = nil, + isRememberSubtitleSelections: Bool? = nil, + subtitleLanguagePreference: String? = nil, + subtitleMode: SubtitlePlaybackMode? = nil + ) { + self.audioLanguagePreference = audioLanguagePreference + self.isDisplayCollectionsView = isDisplayCollectionsView + self.isDisplayMissingEpisodes = isDisplayMissingEpisodes + self.enableLocalPassword = enableLocalPassword + self.enableNextEpisodeAutoPlay = enableNextEpisodeAutoPlay + self.groupedFolders = groupedFolders + self.isHidePlayedInLatest = isHidePlayedInLatest + self.latestItemsExcludes = latestItemsExcludes + self.myMediaExcludes = myMediaExcludes + self.orderedViews = orderedViews + self.isPlayDefaultAudioTrack = isPlayDefaultAudioTrack + self.isRememberAudioSelections = isRememberAudioSelections + self.isRememberSubtitleSelections = isRememberSubtitleSelections + self.subtitleLanguagePreference = subtitleLanguagePreference + self.subtitleMode = subtitleMode + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.audioLanguagePreference = try values.decodeIfPresent(String.self, forKey: "AudioLanguagePreference") + self.isDisplayCollectionsView = try values.decodeIfPresent(Bool.self, forKey: "DisplayCollectionsView") + self.isDisplayMissingEpisodes = try values.decodeIfPresent(Bool.self, forKey: "DisplayMissingEpisodes") + self.enableLocalPassword = try values.decodeIfPresent(Bool.self, forKey: "EnableLocalPassword") + self.enableNextEpisodeAutoPlay = try values.decodeIfPresent(Bool.self, forKey: "EnableNextEpisodeAutoPlay") + self.groupedFolders = try values.decodeIfPresent([String].self, forKey: "GroupedFolders") + self.isHidePlayedInLatest = try values.decodeIfPresent(Bool.self, forKey: "HidePlayedInLatest") + self.latestItemsExcludes = try values.decodeIfPresent([String].self, forKey: "LatestItemsExcludes") + self.myMediaExcludes = try values.decodeIfPresent([String].self, forKey: "MyMediaExcludes") + self.orderedViews = try values.decodeIfPresent([String].self, forKey: "OrderedViews") + self.isPlayDefaultAudioTrack = try values.decodeIfPresent(Bool.self, forKey: "PlayDefaultAudioTrack") + self.isRememberAudioSelections = try values.decodeIfPresent(Bool.self, forKey: "RememberAudioSelections") + self.isRememberSubtitleSelections = try values.decodeIfPresent(Bool.self, forKey: "RememberSubtitleSelections") + self.subtitleLanguagePreference = try values.decodeIfPresent(String.self, forKey: "SubtitleLanguagePreference") + self.subtitleMode = try values.decodeIfPresent(SubtitlePlaybackMode.self, forKey: "SubtitleMode") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(audioLanguagePreference, forKey: "AudioLanguagePreference") + try values.encodeIfPresent(isDisplayCollectionsView, forKey: "DisplayCollectionsView") + try values.encodeIfPresent(isDisplayMissingEpisodes, forKey: "DisplayMissingEpisodes") + try values.encodeIfPresent(enableLocalPassword, forKey: "EnableLocalPassword") + try values.encodeIfPresent(enableNextEpisodeAutoPlay, forKey: "EnableNextEpisodeAutoPlay") + try values.encodeIfPresent(groupedFolders, forKey: "GroupedFolders") + try values.encodeIfPresent(isHidePlayedInLatest, forKey: "HidePlayedInLatest") + try values.encodeIfPresent(latestItemsExcludes, forKey: "LatestItemsExcludes") + try values.encodeIfPresent(myMediaExcludes, forKey: "MyMediaExcludes") + try values.encodeIfPresent(orderedViews, forKey: "OrderedViews") + try values.encodeIfPresent(isPlayDefaultAudioTrack, forKey: "PlayDefaultAudioTrack") + try values.encodeIfPresent(isRememberAudioSelections, forKey: "RememberAudioSelections") + try values.encodeIfPresent(isRememberSubtitleSelections, forKey: "RememberSubtitleSelections") + try values.encodeIfPresent(subtitleLanguagePreference, forKey: "SubtitleLanguagePreference") + try values.encodeIfPresent(subtitleMode, forKey: "SubtitleMode") + } +} diff --git a/Sources/Entities/UserDto.swift b/Sources/Entities/UserDto.swift new file mode 100644 index 000000000..72603a093 --- /dev/null +++ b/Sources/Entities/UserDto.swift @@ -0,0 +1,111 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class UserDto. +public struct UserDto: Codable, Identifiable { + /// Gets or sets the configuration. + public var configuration: UserConfiguration? + /// Gets or sets whether async login is enabled or not. + public var enableAutoLogin: Bool? + /// Gets or sets a value indicating whether this instance has configured easy password. + public var hasConfiguredEasyPassword: Bool? + /// Gets or sets a value indicating whether this instance has configured password. + public var hasConfiguredPassword: Bool? + /// Gets or sets a value indicating whether this instance has password. + public var hasPassword: Bool? + /// Gets or sets the id. + public var id: String? + /// Gets or sets the last activity date. + public var lastActivityDate: Date? + /// Gets or sets the last login date. + public var lastLoginDate: Date? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the policy. + public var policy: UserPolicy? + /// Gets or sets the primary image aspect ratio. + public var primaryImageAspectRatio: Double? + /// Gets or sets the primary image tag. + public var primaryImageTag: String? + /// Gets or sets the server identifier. + public var serverID: String? + /// Gets or sets the name of the server. + /// + /// This is not used by the server and is for client-side usage only. + public var serverName: String? + + public init( + configuration: UserConfiguration? = nil, + enableAutoLogin: Bool? = nil, + hasConfiguredEasyPassword: Bool? = nil, + hasConfiguredPassword: Bool? = nil, + hasPassword: Bool? = nil, + id: String? = nil, + lastActivityDate: Date? = nil, + lastLoginDate: Date? = nil, + name: String? = nil, + policy: UserPolicy? = nil, + primaryImageAspectRatio: Double? = nil, + primaryImageTag: String? = nil, + serverID: String? = nil, + serverName: String? = nil + ) { + self.configuration = configuration + self.enableAutoLogin = enableAutoLogin + self.hasConfiguredEasyPassword = hasConfiguredEasyPassword + self.hasConfiguredPassword = hasConfiguredPassword + self.hasPassword = hasPassword + self.id = id + self.lastActivityDate = lastActivityDate + self.lastLoginDate = lastLoginDate + self.name = name + self.policy = policy + self.primaryImageAspectRatio = primaryImageAspectRatio + self.primaryImageTag = primaryImageTag + self.serverID = serverID + self.serverName = serverName + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.configuration = try values.decodeIfPresent(UserConfiguration.self, forKey: "Configuration") + self.enableAutoLogin = try values.decodeIfPresent(Bool.self, forKey: "EnableAutoLogin") + self.hasConfiguredEasyPassword = try values.decodeIfPresent(Bool.self, forKey: "HasConfiguredEasyPassword") + self.hasConfiguredPassword = try values.decodeIfPresent(Bool.self, forKey: "HasConfiguredPassword") + self.hasPassword = try values.decodeIfPresent(Bool.self, forKey: "HasPassword") + self.id = try values.decodeIfPresent(String.self, forKey: "Id") + self.lastActivityDate = try values.decodeIfPresent(Date.self, forKey: "LastActivityDate") + self.lastLoginDate = try values.decodeIfPresent(Date.self, forKey: "LastLoginDate") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.policy = try values.decodeIfPresent(UserPolicy.self, forKey: "Policy") + self.primaryImageAspectRatio = try values.decodeIfPresent(Double.self, forKey: "PrimaryImageAspectRatio") + self.primaryImageTag = try values.decodeIfPresent(String.self, forKey: "PrimaryImageTag") + self.serverID = try values.decodeIfPresent(String.self, forKey: "ServerId") + self.serverName = try values.decodeIfPresent(String.self, forKey: "ServerName") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(configuration, forKey: "Configuration") + try values.encodeIfPresent(enableAutoLogin, forKey: "EnableAutoLogin") + try values.encodeIfPresent(hasConfiguredEasyPassword, forKey: "HasConfiguredEasyPassword") + try values.encodeIfPresent(hasConfiguredPassword, forKey: "HasConfiguredPassword") + try values.encodeIfPresent(hasPassword, forKey: "HasPassword") + try values.encodeIfPresent(id, forKey: "Id") + try values.encodeIfPresent(lastActivityDate, forKey: "LastActivityDate") + try values.encodeIfPresent(lastLoginDate, forKey: "LastLoginDate") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(policy, forKey: "Policy") + try values.encodeIfPresent(primaryImageAspectRatio, forKey: "PrimaryImageAspectRatio") + try values.encodeIfPresent(primaryImageTag, forKey: "PrimaryImageTag") + try values.encodeIfPresent(serverID, forKey: "ServerId") + try values.encodeIfPresent(serverName, forKey: "ServerName") + } +} diff --git a/Sources/Entities/UserItemDataDto.swift b/Sources/Entities/UserItemDataDto.swift new file mode 100644 index 000000000..ca363d641 --- /dev/null +++ b/Sources/Entities/UserItemDataDto.swift @@ -0,0 +1,91 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class UserItemDataDto. +public struct UserItemDataDto: Codable { + /// Gets or sets a value indicating whether this instance is favorite. + public var isFavorite: Bool? + /// Gets or sets the item identifier. + public var itemID: String? + /// Gets or sets the key. + public var key: String? + /// Gets or sets the last played date. + public var lastPlayedDate: Date? + /// Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes. + public var isLikes: Bool? + /// Gets or sets the play count. + public var playCount: Int32? + /// Gets or sets the playback position ticks. + public var playbackPositionTicks: Int64? + /// Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played. + public var isPlayed: Bool? + /// Gets or sets the played percentage. + public var playedPercentage: Double? + /// Gets or sets the rating. + public var rating: Double? + /// Gets or sets the unplayed item count. + public var unplayedItemCount: Int32? + + public init( + isFavorite: Bool? = nil, + itemID: String? = nil, + key: String? = nil, + lastPlayedDate: Date? = nil, + isLikes: Bool? = nil, + playCount: Int32? = nil, + playbackPositionTicks: Int64? = nil, + isPlayed: Bool? = nil, + playedPercentage: Double? = nil, + rating: Double? = nil, + unplayedItemCount: Int32? = nil + ) { + self.isFavorite = isFavorite + self.itemID = itemID + self.key = key + self.lastPlayedDate = lastPlayedDate + self.isLikes = isLikes + self.playCount = playCount + self.playbackPositionTicks = playbackPositionTicks + self.isPlayed = isPlayed + self.playedPercentage = playedPercentage + self.rating = rating + self.unplayedItemCount = unplayedItemCount + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isFavorite = try values.decodeIfPresent(Bool.self, forKey: "IsFavorite") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.key = try values.decodeIfPresent(String.self, forKey: "Key") + self.lastPlayedDate = try values.decodeIfPresent(Date.self, forKey: "LastPlayedDate") + self.isLikes = try values.decodeIfPresent(Bool.self, forKey: "Likes") + self.playCount = try values.decodeIfPresent(Int32.self, forKey: "PlayCount") + self.playbackPositionTicks = try values.decodeIfPresent(Int64.self, forKey: "PlaybackPositionTicks") + self.isPlayed = try values.decodeIfPresent(Bool.self, forKey: "Played") + self.playedPercentage = try values.decodeIfPresent(Double.self, forKey: "PlayedPercentage") + self.rating = try values.decodeIfPresent(Double.self, forKey: "Rating") + self.unplayedItemCount = try values.decodeIfPresent(Int32.self, forKey: "UnplayedItemCount") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isFavorite, forKey: "IsFavorite") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(key, forKey: "Key") + try values.encodeIfPresent(lastPlayedDate, forKey: "LastPlayedDate") + try values.encodeIfPresent(isLikes, forKey: "Likes") + try values.encodeIfPresent(playCount, forKey: "PlayCount") + try values.encodeIfPresent(playbackPositionTicks, forKey: "PlaybackPositionTicks") + try values.encodeIfPresent(isPlayed, forKey: "Played") + try values.encodeIfPresent(playedPercentage, forKey: "PlayedPercentage") + try values.encodeIfPresent(rating, forKey: "Rating") + try values.encodeIfPresent(unplayedItemCount, forKey: "UnplayedItemCount") + } +} diff --git a/Sources/Entities/UserPolicy.swift b/Sources/Entities/UserPolicy.swift new file mode 100644 index 000000000..cf8ac6e7a --- /dev/null +++ b/Sources/Entities/UserPolicy.swift @@ -0,0 +1,225 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct UserPolicy: Codable { + public var accessSchedules: [AccessSchedule]? + public var authenticationProviderID: String? + public var blockUnratedItems: [UnratedItem]? + public var blockedChannels: [String]? + public var blockedMediaFolders: [String]? + public var blockedTags: [String]? + public var enableAllChannels: Bool? + public var enableAllDevices: Bool? + public var enableAllFolders: Bool? + public var enableAudioPlaybackTranscoding: Bool? + public var enableContentDeletion: Bool? + public var enableContentDeletionFromFolders: [String]? + public var enableContentDownloading: Bool? + public var enableLiveTvAccess: Bool? + public var enableLiveTvManagement: Bool? + public var enableMediaConversion: Bool? + public var enableMediaPlayback: Bool? + public var enablePlaybackRemuxing: Bool? + public var enablePublicSharing: Bool? + public var enableRemoteAccess: Bool? + public var enableRemoteControlOfOtherUsers: Bool? + public var enableSharedDeviceControl: Bool? + /// Gets or sets a value indicating whether [enable synchronize]. + public var enableSyncTranscoding: Bool? + public var enableUserPreferenceAccess: Bool? + public var enableVideoPlaybackTranscoding: Bool? + public var enabledChannels: [String]? + public var enabledDevices: [String]? + public var enabledFolders: [String]? + public var isForceRemoteSourceTranscoding: Bool? + public var invalidLoginAttemptCount: Int32? + /// Gets or sets a value indicating whether this instance is administrator. + public var isAdministrator: Bool? + /// Gets or sets a value indicating whether this instance is disabled. + public var isDisabled: Bool? + /// Gets or sets a value indicating whether this instance is hidden. + public var isHidden: Bool? + public var loginAttemptsBeforeLockout: Int32? + public var maxActiveSessions: Int32? + /// Gets or sets the max parental rating. + public var maxParentalRating: Int32? + public var passwordResetProviderID: String? + public var remoteClientBitrateLimit: Int32? + /// Gets or sets a value indicating what SyncPlay features the user can access. + public var syncPlayAccess: SyncPlayUserAccessType? + + public init( + accessSchedules: [AccessSchedule]? = nil, + authenticationProviderID: String? = nil, + blockUnratedItems: [UnratedItem]? = nil, + blockedChannels: [String]? = nil, + blockedMediaFolders: [String]? = nil, + blockedTags: [String]? = nil, + enableAllChannels: Bool? = nil, + enableAllDevices: Bool? = nil, + enableAllFolders: Bool? = nil, + enableAudioPlaybackTranscoding: Bool? = nil, + enableContentDeletion: Bool? = nil, + enableContentDeletionFromFolders: [String]? = nil, + enableContentDownloading: Bool? = nil, + enableLiveTvAccess: Bool? = nil, + enableLiveTvManagement: Bool? = nil, + enableMediaConversion: Bool? = nil, + enableMediaPlayback: Bool? = nil, + enablePlaybackRemuxing: Bool? = nil, + enablePublicSharing: Bool? = nil, + enableRemoteAccess: Bool? = nil, + enableRemoteControlOfOtherUsers: Bool? = nil, + enableSharedDeviceControl: Bool? = nil, + enableSyncTranscoding: Bool? = nil, + enableUserPreferenceAccess: Bool? = nil, + enableVideoPlaybackTranscoding: Bool? = nil, + enabledChannels: [String]? = nil, + enabledDevices: [String]? = nil, + enabledFolders: [String]? = nil, + isForceRemoteSourceTranscoding: Bool? = nil, + invalidLoginAttemptCount: Int32? = nil, + isAdministrator: Bool? = nil, + isDisabled: Bool? = nil, + isHidden: Bool? = nil, + loginAttemptsBeforeLockout: Int32? = nil, + maxActiveSessions: Int32? = nil, + maxParentalRating: Int32? = nil, + passwordResetProviderID: String? = nil, + remoteClientBitrateLimit: Int32? = nil, + syncPlayAccess: SyncPlayUserAccessType? = nil + ) { + self.accessSchedules = accessSchedules + self.authenticationProviderID = authenticationProviderID + self.blockUnratedItems = blockUnratedItems + self.blockedChannels = blockedChannels + self.blockedMediaFolders = blockedMediaFolders + self.blockedTags = blockedTags + self.enableAllChannels = enableAllChannels + self.enableAllDevices = enableAllDevices + self.enableAllFolders = enableAllFolders + self.enableAudioPlaybackTranscoding = enableAudioPlaybackTranscoding + self.enableContentDeletion = enableContentDeletion + self.enableContentDeletionFromFolders = enableContentDeletionFromFolders + self.enableContentDownloading = enableContentDownloading + self.enableLiveTvAccess = enableLiveTvAccess + self.enableLiveTvManagement = enableLiveTvManagement + self.enableMediaConversion = enableMediaConversion + self.enableMediaPlayback = enableMediaPlayback + self.enablePlaybackRemuxing = enablePlaybackRemuxing + self.enablePublicSharing = enablePublicSharing + self.enableRemoteAccess = enableRemoteAccess + self.enableRemoteControlOfOtherUsers = enableRemoteControlOfOtherUsers + self.enableSharedDeviceControl = enableSharedDeviceControl + self.enableSyncTranscoding = enableSyncTranscoding + self.enableUserPreferenceAccess = enableUserPreferenceAccess + self.enableVideoPlaybackTranscoding = enableVideoPlaybackTranscoding + self.enabledChannels = enabledChannels + self.enabledDevices = enabledDevices + self.enabledFolders = enabledFolders + self.isForceRemoteSourceTranscoding = isForceRemoteSourceTranscoding + self.invalidLoginAttemptCount = invalidLoginAttemptCount + self.isAdministrator = isAdministrator + self.isDisabled = isDisabled + self.isHidden = isHidden + self.loginAttemptsBeforeLockout = loginAttemptsBeforeLockout + self.maxActiveSessions = maxActiveSessions + self.maxParentalRating = maxParentalRating + self.passwordResetProviderID = passwordResetProviderID + self.remoteClientBitrateLimit = remoteClientBitrateLimit + self.syncPlayAccess = syncPlayAccess + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.accessSchedules = try values.decodeIfPresent([AccessSchedule].self, forKey: "AccessSchedules") + self.authenticationProviderID = try values.decodeIfPresent(String.self, forKey: "AuthenticationProviderId") + self.blockUnratedItems = try values.decodeIfPresent([UnratedItem].self, forKey: "BlockUnratedItems") + self.blockedChannels = try values.decodeIfPresent([String].self, forKey: "BlockedChannels") + self.blockedMediaFolders = try values.decodeIfPresent([String].self, forKey: "BlockedMediaFolders") + self.blockedTags = try values.decodeIfPresent([String].self, forKey: "BlockedTags") + self.enableAllChannels = try values.decodeIfPresent(Bool.self, forKey: "EnableAllChannels") + self.enableAllDevices = try values.decodeIfPresent(Bool.self, forKey: "EnableAllDevices") + self.enableAllFolders = try values.decodeIfPresent(Bool.self, forKey: "EnableAllFolders") + self.enableAudioPlaybackTranscoding = try values.decodeIfPresent(Bool.self, forKey: "EnableAudioPlaybackTranscoding") + self.enableContentDeletion = try values.decodeIfPresent(Bool.self, forKey: "EnableContentDeletion") + self.enableContentDeletionFromFolders = try values.decodeIfPresent([String].self, forKey: "EnableContentDeletionFromFolders") + self.enableContentDownloading = try values.decodeIfPresent(Bool.self, forKey: "EnableContentDownloading") + self.enableLiveTvAccess = try values.decodeIfPresent(Bool.self, forKey: "EnableLiveTvAccess") + self.enableLiveTvManagement = try values.decodeIfPresent(Bool.self, forKey: "EnableLiveTvManagement") + self.enableMediaConversion = try values.decodeIfPresent(Bool.self, forKey: "EnableMediaConversion") + self.enableMediaPlayback = try values.decodeIfPresent(Bool.self, forKey: "EnableMediaPlayback") + self.enablePlaybackRemuxing = try values.decodeIfPresent(Bool.self, forKey: "EnablePlaybackRemuxing") + self.enablePublicSharing = try values.decodeIfPresent(Bool.self, forKey: "EnablePublicSharing") + self.enableRemoteAccess = try values.decodeIfPresent(Bool.self, forKey: "EnableRemoteAccess") + self.enableRemoteControlOfOtherUsers = try values.decodeIfPresent(Bool.self, forKey: "EnableRemoteControlOfOtherUsers") + self.enableSharedDeviceControl = try values.decodeIfPresent(Bool.self, forKey: "EnableSharedDeviceControl") + self.enableSyncTranscoding = try values.decodeIfPresent(Bool.self, forKey: "EnableSyncTranscoding") + self.enableUserPreferenceAccess = try values.decodeIfPresent(Bool.self, forKey: "EnableUserPreferenceAccess") + self.enableVideoPlaybackTranscoding = try values.decodeIfPresent(Bool.self, forKey: "EnableVideoPlaybackTranscoding") + self.enabledChannels = try values.decodeIfPresent([String].self, forKey: "EnabledChannels") + self.enabledDevices = try values.decodeIfPresent([String].self, forKey: "EnabledDevices") + self.enabledFolders = try values.decodeIfPresent([String].self, forKey: "EnabledFolders") + self.isForceRemoteSourceTranscoding = try values.decodeIfPresent(Bool.self, forKey: "ForceRemoteSourceTranscoding") + self.invalidLoginAttemptCount = try values.decodeIfPresent(Int32.self, forKey: "InvalidLoginAttemptCount") + self.isAdministrator = try values.decodeIfPresent(Bool.self, forKey: "IsAdministrator") + self.isDisabled = try values.decodeIfPresent(Bool.self, forKey: "IsDisabled") + self.isHidden = try values.decodeIfPresent(Bool.self, forKey: "IsHidden") + self.loginAttemptsBeforeLockout = try values.decodeIfPresent(Int32.self, forKey: "LoginAttemptsBeforeLockout") + self.maxActiveSessions = try values.decodeIfPresent(Int32.self, forKey: "MaxActiveSessions") + self.maxParentalRating = try values.decodeIfPresent(Int32.self, forKey: "MaxParentalRating") + self.passwordResetProviderID = try values.decodeIfPresent(String.self, forKey: "PasswordResetProviderId") + self.remoteClientBitrateLimit = try values.decodeIfPresent(Int32.self, forKey: "RemoteClientBitrateLimit") + self.syncPlayAccess = try values.decodeIfPresent(SyncPlayUserAccessType.self, forKey: "SyncPlayAccess") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(accessSchedules, forKey: "AccessSchedules") + try values.encodeIfPresent(authenticationProviderID, forKey: "AuthenticationProviderId") + try values.encodeIfPresent(blockUnratedItems, forKey: "BlockUnratedItems") + try values.encodeIfPresent(blockedChannels, forKey: "BlockedChannels") + try values.encodeIfPresent(blockedMediaFolders, forKey: "BlockedMediaFolders") + try values.encodeIfPresent(blockedTags, forKey: "BlockedTags") + try values.encodeIfPresent(enableAllChannels, forKey: "EnableAllChannels") + try values.encodeIfPresent(enableAllDevices, forKey: "EnableAllDevices") + try values.encodeIfPresent(enableAllFolders, forKey: "EnableAllFolders") + try values.encodeIfPresent(enableAudioPlaybackTranscoding, forKey: "EnableAudioPlaybackTranscoding") + try values.encodeIfPresent(enableContentDeletion, forKey: "EnableContentDeletion") + try values.encodeIfPresent(enableContentDeletionFromFolders, forKey: "EnableContentDeletionFromFolders") + try values.encodeIfPresent(enableContentDownloading, forKey: "EnableContentDownloading") + try values.encodeIfPresent(enableLiveTvAccess, forKey: "EnableLiveTvAccess") + try values.encodeIfPresent(enableLiveTvManagement, forKey: "EnableLiveTvManagement") + try values.encodeIfPresent(enableMediaConversion, forKey: "EnableMediaConversion") + try values.encodeIfPresent(enableMediaPlayback, forKey: "EnableMediaPlayback") + try values.encodeIfPresent(enablePlaybackRemuxing, forKey: "EnablePlaybackRemuxing") + try values.encodeIfPresent(enablePublicSharing, forKey: "EnablePublicSharing") + try values.encodeIfPresent(enableRemoteAccess, forKey: "EnableRemoteAccess") + try values.encodeIfPresent(enableRemoteControlOfOtherUsers, forKey: "EnableRemoteControlOfOtherUsers") + try values.encodeIfPresent(enableSharedDeviceControl, forKey: "EnableSharedDeviceControl") + try values.encodeIfPresent(enableSyncTranscoding, forKey: "EnableSyncTranscoding") + try values.encodeIfPresent(enableUserPreferenceAccess, forKey: "EnableUserPreferenceAccess") + try values.encodeIfPresent(enableVideoPlaybackTranscoding, forKey: "EnableVideoPlaybackTranscoding") + try values.encodeIfPresent(enabledChannels, forKey: "EnabledChannels") + try values.encodeIfPresent(enabledDevices, forKey: "EnabledDevices") + try values.encodeIfPresent(enabledFolders, forKey: "EnabledFolders") + try values.encodeIfPresent(isForceRemoteSourceTranscoding, forKey: "ForceRemoteSourceTranscoding") + try values.encodeIfPresent(invalidLoginAttemptCount, forKey: "InvalidLoginAttemptCount") + try values.encodeIfPresent(isAdministrator, forKey: "IsAdministrator") + try values.encodeIfPresent(isDisabled, forKey: "IsDisabled") + try values.encodeIfPresent(isHidden, forKey: "IsHidden") + try values.encodeIfPresent(loginAttemptsBeforeLockout, forKey: "LoginAttemptsBeforeLockout") + try values.encodeIfPresent(maxActiveSessions, forKey: "MaxActiveSessions") + try values.encodeIfPresent(maxParentalRating, forKey: "MaxParentalRating") + try values.encodeIfPresent(passwordResetProviderID, forKey: "PasswordResetProviderId") + try values.encodeIfPresent(remoteClientBitrateLimit, forKey: "RemoteClientBitrateLimit") + try values.encodeIfPresent(syncPlayAccess, forKey: "SyncPlayAccess") + } +} diff --git a/Sources/Entities/UtcTimeResponse.swift b/Sources/Entities/UtcTimeResponse.swift new file mode 100644 index 000000000..92a57bf38 --- /dev/null +++ b/Sources/Entities/UtcTimeResponse.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Class UtcTimeResponse. +public struct UtcTimeResponse: Codable { + /// Gets the UTC time when request has been received. + public var requestReceptionTime: Date? + /// Gets the UTC time when response has been sent. + public var responseTransmissionTime: Date? + + public init(requestReceptionTime: Date? = nil, responseTransmissionTime: Date? = nil) { + self.requestReceptionTime = requestReceptionTime + self.responseTransmissionTime = responseTransmissionTime + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.requestReceptionTime = try values.decodeIfPresent(Date.self, forKey: "RequestReceptionTime") + self.responseTransmissionTime = try values.decodeIfPresent(Date.self, forKey: "ResponseTransmissionTime") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(requestReceptionTime, forKey: "RequestReceptionTime") + try values.encodeIfPresent(responseTransmissionTime, forKey: "ResponseTransmissionTime") + } +} diff --git a/Sources/Entities/ValidatePathDto.swift b/Sources/Entities/ValidatePathDto.swift new file mode 100644 index 000000000..bb05d834c --- /dev/null +++ b/Sources/Entities/ValidatePathDto.swift @@ -0,0 +1,39 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Validate path object. +public struct ValidatePathDto: Codable { + /// Gets or sets is path file. + public var isFile: Bool? + /// Gets or sets the path. + public var path: String? + /// Gets or sets a value indicating whether validate if path is writable. + public var isValidateWritable: Bool? + + public init(isFile: Bool? = nil, path: String? = nil, isValidateWritable: Bool? = nil) { + self.isFile = isFile + self.path = path + self.isValidateWritable = isValidateWritable + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.isFile = try values.decodeIfPresent(Bool.self, forKey: "IsFile") + self.path = try values.decodeIfPresent(String.self, forKey: "Path") + self.isValidateWritable = try values.decodeIfPresent(Bool.self, forKey: "ValidateWritable") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(isFile, forKey: "IsFile") + try values.encodeIfPresent(path, forKey: "Path") + try values.encodeIfPresent(isValidateWritable, forKey: "ValidateWritable") + } +} diff --git a/Sources/Entities/VersionInfo.swift b/Sources/Entities/VersionInfo.swift new file mode 100644 index 000000000..25fabb167 --- /dev/null +++ b/Sources/Entities/VersionInfo.swift @@ -0,0 +1,79 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Defines the MediaBrowser.Model.Updates.VersionInfo class. +public struct VersionInfo: Codable { + /// Gets the version as a System.Version. + public var versionNumber: String? + /// Gets or sets the changelog for this version. + public var changelog: String? + /// Gets or sets a checksum for the binary. + public var checksum: String? + /// Gets or sets the repository name. + public var repositoryName: String? + /// Gets or sets the repository url. + public var repositoryURL: String? + /// Gets or sets the source URL. + public var sourceURL: String? + /// Gets or sets the ABI that this version was built against. + public var targetAbi: String? + /// Gets or sets a timestamp of when the binary was built. + public var timestamp: String? + /// Gets or sets the version. + public var version: String? + + public init( + versionNumber: String? = nil, + changelog: String? = nil, + checksum: String? = nil, + repositoryName: String? = nil, + repositoryURL: String? = nil, + sourceURL: String? = nil, + targetAbi: String? = nil, + timestamp: String? = nil, + version: String? = nil + ) { + self.versionNumber = versionNumber + self.changelog = changelog + self.checksum = checksum + self.repositoryName = repositoryName + self.repositoryURL = repositoryURL + self.sourceURL = sourceURL + self.targetAbi = targetAbi + self.timestamp = timestamp + self.version = version + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.versionNumber = try values.decodeIfPresent(String.self, forKey: "VersionNumber") + self.changelog = try values.decodeIfPresent(String.self, forKey: "changelog") + self.checksum = try values.decodeIfPresent(String.self, forKey: "checksum") + self.repositoryName = try values.decodeIfPresent(String.self, forKey: "repositoryName") + self.repositoryURL = try values.decodeIfPresent(String.self, forKey: "repositoryUrl") + self.sourceURL = try values.decodeIfPresent(String.self, forKey: "sourceUrl") + self.targetAbi = try values.decodeIfPresent(String.self, forKey: "targetAbi") + self.timestamp = try values.decodeIfPresent(String.self, forKey: "timestamp") + self.version = try values.decodeIfPresent(String.self, forKey: "version") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(versionNumber, forKey: "VersionNumber") + try values.encodeIfPresent(changelog, forKey: "changelog") + try values.encodeIfPresent(checksum, forKey: "checksum") + try values.encodeIfPresent(repositoryName, forKey: "repositoryName") + try values.encodeIfPresent(repositoryURL, forKey: "repositoryUrl") + try values.encodeIfPresent(sourceURL, forKey: "sourceUrl") + try values.encodeIfPresent(targetAbi, forKey: "targetAbi") + try values.encodeIfPresent(timestamp, forKey: "timestamp") + try values.encodeIfPresent(version, forKey: "version") + } +} diff --git a/Sources/Entities/Video3DFormat.swift b/Sources/Entities/Video3DFormat.swift new file mode 100644 index 000000000..c6841641a --- /dev/null +++ b/Sources/Entities/Video3DFormat.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum Video3DFormat: String, Codable, CaseIterable { + case halfSideBySide = "HalfSideBySide" + case fullSideBySide = "FullSideBySide" + case fullTopAndBottom = "FullTopAndBottom" + case halfTopAndBottom = "HalfTopAndBottom" + case mvc = "MVC" +} diff --git a/Sources/Entities/VideoType.swift b/Sources/Entities/VideoType.swift new file mode 100644 index 000000000..1592ea1e2 --- /dev/null +++ b/Sources/Entities/VideoType.swift @@ -0,0 +1,17 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Enum VideoType. +public enum VideoType: String, Codable, CaseIterable { + case videoFile = "VideoFile" + case iso = "Iso" + case dvd = "Dvd" + case bluRay = "BluRay" +} diff --git a/Sources/Entities/VirtualFolderInfo.swift b/Sources/Entities/VirtualFolderInfo.swift new file mode 100644 index 000000000..eb0bcf5c3 --- /dev/null +++ b/Sources/Entities/VirtualFolderInfo.swift @@ -0,0 +1,70 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Used to hold information about a user's list of configured virtual folders. +public struct VirtualFolderInfo: Codable { + /// Gets or sets the type of the collection. + public var collectionType: CollectionTypeOptions? + /// Gets or sets the item identifier. + public var itemID: String? + public var libraryOptions: LibraryOptions? + /// Gets or sets the locations. + public var locations: [String]? + /// Gets or sets the name. + public var name: String? + /// Gets or sets the primary image item identifier. + public var primaryImageItemID: String? + public var refreshProgress: Double? + public var refreshStatus: String? + + public init( + collectionType: CollectionTypeOptions? = nil, + itemID: String? = nil, + libraryOptions: LibraryOptions? = nil, + locations: [String]? = nil, + name: String? = nil, + primaryImageItemID: String? = nil, + refreshProgress: Double? = nil, + refreshStatus: String? = nil + ) { + self.collectionType = collectionType + self.itemID = itemID + self.libraryOptions = libraryOptions + self.locations = locations + self.name = name + self.primaryImageItemID = primaryImageItemID + self.refreshProgress = refreshProgress + self.refreshStatus = refreshStatus + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.collectionType = try values.decodeIfPresent(CollectionTypeOptions.self, forKey: "CollectionType") + self.itemID = try values.decodeIfPresent(String.self, forKey: "ItemId") + self.libraryOptions = try values.decodeIfPresent(LibraryOptions.self, forKey: "LibraryOptions") + self.locations = try values.decodeIfPresent([String].self, forKey: "Locations") + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.primaryImageItemID = try values.decodeIfPresent(String.self, forKey: "PrimaryImageItemId") + self.refreshProgress = try values.decodeIfPresent(Double.self, forKey: "RefreshProgress") + self.refreshStatus = try values.decodeIfPresent(String.self, forKey: "RefreshStatus") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(collectionType, forKey: "CollectionType") + try values.encodeIfPresent(itemID, forKey: "ItemId") + try values.encodeIfPresent(libraryOptions, forKey: "LibraryOptions") + try values.encodeIfPresent(locations, forKey: "Locations") + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(primaryImageItemID, forKey: "PrimaryImageItemId") + try values.encodeIfPresent(refreshProgress, forKey: "RefreshProgress") + try values.encodeIfPresent(refreshStatus, forKey: "RefreshStatus") + } +} diff --git a/Sources/Entities/WakeOnLanInfo.swift b/Sources/Entities/WakeOnLanInfo.swift new file mode 100644 index 000000000..e9e587c8d --- /dev/null +++ b/Sources/Entities/WakeOnLanInfo.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Provides the MAC address and port for wake-on-LAN functionality. +public struct WakeOnLanInfo: Codable { + /// Gets the MAC address of the device. + public var macAddress: String? + /// Gets or sets the wake-on-LAN port. + public var port: Int32? + + public init(macAddress: String? = nil, port: Int32? = nil) { + self.macAddress = macAddress + self.port = port + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.macAddress = try values.decodeIfPresent(String.self, forKey: "MacAddress") + self.port = try values.decodeIfPresent(Int32.self, forKey: "Port") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(macAddress, forKey: "MacAddress") + try values.encodeIfPresent(port, forKey: "Port") + } +} diff --git a/Sources/Entities/XbmcMetadataOptions.swift b/Sources/Entities/XbmcMetadataOptions.swift new file mode 100644 index 000000000..6a831d769 --- /dev/null +++ b/Sources/Entities/XbmcMetadataOptions.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public struct XbmcMetadataOptions: Codable { + public var enableExtraThumbsDuplication: Bool? + public var enablePathSubstitution: Bool? + public var releaseDateFormat: String? + public var isSaveImagePathsInNfo: Bool? + public var userID: String? + + public init( + enableExtraThumbsDuplication: Bool? = nil, + enablePathSubstitution: Bool? = nil, + releaseDateFormat: String? = nil, + isSaveImagePathsInNfo: Bool? = nil, + userID: String? = nil + ) { + self.enableExtraThumbsDuplication = enableExtraThumbsDuplication + self.enablePathSubstitution = enablePathSubstitution + self.releaseDateFormat = releaseDateFormat + self.isSaveImagePathsInNfo = isSaveImagePathsInNfo + self.userID = userID + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.enableExtraThumbsDuplication = try values.decodeIfPresent(Bool.self, forKey: "EnableExtraThumbsDuplication") + self.enablePathSubstitution = try values.decodeIfPresent(Bool.self, forKey: "EnablePathSubstitution") + self.releaseDateFormat = try values.decodeIfPresent(String.self, forKey: "ReleaseDateFormat") + self.isSaveImagePathsInNfo = try values.decodeIfPresent(Bool.self, forKey: "SaveImagePathsInNfo") + self.userID = try values.decodeIfPresent(String.self, forKey: "UserId") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(enableExtraThumbsDuplication, forKey: "EnableExtraThumbsDuplication") + try values.encodeIfPresent(enablePathSubstitution, forKey: "EnablePathSubstitution") + try values.encodeIfPresent(releaseDateFormat, forKey: "ReleaseDateFormat") + try values.encodeIfPresent(isSaveImagePathsInNfo, forKey: "SaveImagePathsInNfo") + try values.encodeIfPresent(userID, forKey: "UserId") + } +} diff --git a/Sources/Entities/XmlAttribute.swift b/Sources/Entities/XmlAttribute.swift new file mode 100644 index 000000000..a8b3f722c --- /dev/null +++ b/Sources/Entities/XmlAttribute.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +/// Defines the MediaBrowser.Model.Dlna.XmlAttribute. +public struct XmlAttribute: Codable { + /// Gets or sets the name of the attribute. + public var name: String? + /// Gets or sets the value of the attribute. + public var value: String? + + public init(name: String? = nil, value: String? = nil) { + self.name = name + self.value = value + } + + public init(from decoder: Decoder) throws { + let values = try decoder.container(keyedBy: StringCodingKey.self) + self.name = try values.decodeIfPresent(String.self, forKey: "Name") + self.value = try values.decodeIfPresent(String.self, forKey: "Value") + } + + public func encode(to encoder: Encoder) throws { + var values = encoder.container(keyedBy: StringCodingKey.self) + try values.encodeIfPresent(name, forKey: "Name") + try values.encodeIfPresent(value, forKey: "Value") + } +} diff --git a/Sources/Extensions/AnyJSON.swift b/Sources/Extensions/AnyJSON.swift new file mode 100644 index 000000000..fa8862c4a --- /dev/null +++ b/Sources/Extensions/AnyJSON.swift @@ -0,0 +1,57 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +public enum AnyJSON: Equatable, Codable { + case string(String) + case number(Double) + case object([String: AnyJSON]) + case array([AnyJSON]) + case bool(Bool) + + var value: Any { + switch self { + case let .string(string): return string + case let .number(double): return double + case let .object(dictionary): return dictionary + case let .array(array): return array + case let .bool(bool): return bool + } + } + + public func encode(to encoder: Encoder) throws { + var container = encoder.singleValueContainer() + switch self { + case let .array(array): try container.encode(array) + case let .object(object): try container.encode(object) + case let .string(string): try container.encode(string) + case let .number(number): try container.encode(number) + case let .bool(bool): try container.encode(bool) + } + } + + public init(from decoder: Decoder) throws { + let container = try decoder.singleValueContainer() + if let object = try? container.decode([String: AnyJSON].self) { + self = .object(object) + } else if let array = try? container.decode([AnyJSON].self) { + self = .array(array) + } else if let string = try? container.decode(String.self) { + self = .string(string) + } else if let bool = try? container.decode(Bool.self) { + self = .bool(bool) + } else if let number = try? container.decode(Double.self) { + self = .number(number) + } else { + throw DecodingError.dataCorrupted( + .init(codingPath: decoder.codingPath, debugDescription: "Invalid JSON value.") + ) + } + } +} diff --git a/Sources/Extensions/Paths.swift b/Sources/Extensions/Paths.swift new file mode 100644 index 000000000..f3b243e30 --- /dev/null +++ b/Sources/Extensions/Paths.swift @@ -0,0 +1,13 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public enum Paths {} diff --git a/Sources/Extensions/StringCodingKey.swift b/Sources/Extensions/StringCodingKey.swift new file mode 100644 index 000000000..106642010 --- /dev/null +++ b/Sources/Extensions/StringCodingKey.swift @@ -0,0 +1,35 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +struct StringCodingKey: CodingKey, ExpressibleByStringLiteral { + private let string: String + private var int: Int? + + var stringValue: String { string } + + init(string: String) { + self.string = string + } + + init?(stringValue: String) { + self.string = stringValue + } + + var intValue: Int? { int } + + init?(intValue: Int) { + self.string = String(describing: intValue) + self.int = intValue + } + + init(stringLiteral value: String) { + self.string = value + } +} diff --git a/Sources/JellyfinAPI/APIHelper.swift b/Sources/JellyfinAPI/APIHelper.swift deleted file mode 100644 index 049b7f655..000000000 --- a/Sources/JellyfinAPI/APIHelper.swift +++ /dev/null @@ -1,86 +0,0 @@ -// APIHelper.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation - -public struct APIHelper { - public static func rejectNil(_ source: [String: Any?]) -> [String: Any]? { - let destination = source.reduce(into: [String: Any]()) { result, item in - if let value = item.value { - result[item.key] = value - } - } - - if destination.isEmpty { - return nil - } - return destination - } - - public static func rejectNilHeaders(_ source: [String: Any?]) -> [String: String] { - return source.reduce(into: [String: String]()) { result, item in - if let collection = item.value as? [Any?] { - result[item.key] = collection - .compactMap { value in - guard let value = value else { return nil } - return "\(value)" - } - .joined(separator: ",") - } else if let value: Any = item.value { - result[item.key] = "\(value)" - } - } - } - - public static func convertBoolToString(_ source: [String: Any]?) -> [String: Any]? { - guard let source = source else { - return nil - } - - return source.reduce(into: [String: Any]()) { result, item in - switch item.value { - case let x as Bool: - result[item.key] = x.description - default: - result[item.key] = item.value - } - } - } - - public static func mapValueToPathItem(_ source: Any) -> Any { - if let collection = source as? [Any?] { - return collection - .compactMap { value in - guard let value = value else { return nil } - return "\(value)" - } - .joined(separator: ",") - } - return source - } - - public static func mapValuesToQueryItems(_ source: [String: Any?]) -> [URLQueryItem]? { - let destination = source.filter { $0.value != nil }.reduce(into: [URLQueryItem]()) { result, item in - if let collection = item.value as? [Any?] { - collection - .compactMap { value in - guard let value = value else { return nil } - return "\(value)" - } - .forEach { value in - result.append(URLQueryItem(name: item.key, value: value)) - } - } else if let value = item.value { - result.append(URLQueryItem(name: item.key, value: "\(value)")) - } - } - - if destination.isEmpty { - return nil - } - return destination - } -} diff --git a/Sources/JellyfinAPI/APIs.swift b/Sources/JellyfinAPI/APIs.swift deleted file mode 100644 index 9c0a832ce..000000000 --- a/Sources/JellyfinAPI/APIs.swift +++ /dev/null @@ -1,73 +0,0 @@ -// APIs.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation - -// We reverted the change of JellyfinAPIAPI to JellyfinAPI introduced in https://github.com/OpenAPITools/openapi-generator/pull/9624 -// Because it was causing the following issue https://github.com/OpenAPITools/openapi-generator/issues/9953 -// If you are affected by this issue, please consider removing the following two lines, -// By setting the option removeMigrationProjectNameClass to true in the generator -@available(*, deprecated, renamed: "JellyfinAPIAPI") -public typealias JellyfinAPI = JellyfinAPIAPI - -open class JellyfinAPIAPI { - public static var basePath = "http://localhost" - public static var customHeaders: [String: String] = [:] - public static var credential: URLCredential? - public static var requestBuilderFactory: RequestBuilderFactory = URLSessionRequestBuilderFactory() - public static var apiResponseQueue: DispatchQueue = .main -} - -open class RequestBuilder { - var credential: URLCredential? - var headers: [String: String] - public let parameters: [String: Any]? - public let method: String - public let URLString: String - public let requestTask: RequestTask = RequestTask() - - /// Optional block to obtain a reference to the request's progress instance when available. - /// With the URLSession http client the request's progress only works on iOS 11.0, macOS 10.13, macCatalyst 13.0, tvOS 11.0, watchOS 4.0. - /// If you need to get the request's progress in older OS versions, please use Alamofire http client. - public var onProgressReady: ((Progress) -> Void)? - - required public init(method: String, URLString: String, parameters: [String: Any]?, headers: [String: String] = [:]) { - self.method = method - self.URLString = URLString - self.parameters = parameters - self.headers = headers - - addHeaders(JellyfinAPIAPI.customHeaders) - } - - open func addHeaders(_ aHeaders: [String: String]) { - for (header, value) in aHeaders { - headers[header] = value - } - } - - @discardableResult - open func execute(_ apiResponseQueue: DispatchQueue = JellyfinAPIAPI.apiResponseQueue, _ completion: @escaping (_ result: Swift.Result, ErrorResponse>) -> Void) -> RequestTask { - return requestTask - } - - public func addHeader(name: String, value: String) -> Self { - if !value.isEmpty { - headers[name] = value - } - return self - } - - open func addCredential() -> Self { - credential = JellyfinAPIAPI.credential - return self - } -} - -public protocol RequestBuilderFactory { - func getNonDecodableBuilder() -> RequestBuilder.Type - func getBuilder() -> RequestBuilder.Type -} diff --git a/Sources/JellyfinAPI/APIs/ActivityLogAPI.swift b/Sources/JellyfinAPI/APIs/ActivityLogAPI.swift deleted file mode 100644 index 523604504..000000000 --- a/Sources/JellyfinAPI/APIs/ActivityLogAPI.swift +++ /dev/null @@ -1,83 +0,0 @@ -// -// ActivityLogAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ActivityLogAPI { - - /** - Gets activity log entries. - - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter minDate: (query) Optional. The minimum date. Format = ISO. (optional) - - parameter hasUserId: (query) Optional. Filter log entries if it has user id, or not. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLogEntries(startIndex: Int? = nil, limit: Int? = nil, minDate: Date? = nil, hasUserId: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getLogEntriesWithRequestBuilder(startIndex: startIndex, limit: limit, minDate: minDate, hasUserId: hasUserId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets activity log entries. - - GET /System/ActivityLog/Entries - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter minDate: (query) Optional. The minimum date. Format = ISO. (optional) - - parameter hasUserId: (query) Optional. Filter log entries if it has user id, or not. (optional) - - returns: RequestBuilder - */ - open class func getLogEntriesWithRequestBuilder(startIndex: Int? = nil, limit: Int? = nil, minDate: Date? = nil, hasUserId: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/System/ActivityLog/Entries" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "minDate": minDate?.encodeToJSON(), - "hasUserId": hasUserId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ApiKeyAPI.swift b/Sources/JellyfinAPI/APIs/ApiKeyAPI.swift deleted file mode 100644 index 8b80c51ab..000000000 --- a/Sources/JellyfinAPI/APIs/ApiKeyAPI.swift +++ /dev/null @@ -1,183 +0,0 @@ -// -// ApiKeyAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ApiKeyAPI { - - /** - Create a new api key. - - - parameter app: (query) Name of the app using the authentication key. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func createKey(app: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = createKeyWithRequestBuilder(app: app).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Create a new api key. - - POST /Auth/Keys - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter app: (query) Name of the app using the authentication key. - - returns: RequestBuilder - */ - open class func createKeyWithRequestBuilder(app: String) -> RequestBuilder { - let localVariablePath = "/Auth/Keys" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "app": app.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get all keys. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getKeys() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getKeysWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get all keys. - - GET /Auth/Keys - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getKeysWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Auth/Keys" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Remove an api key. - - - parameter key: (path) The access token to delete. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func revokeKey(key: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = revokeKeyWithRequestBuilder(key: key).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Remove an api key. - - DELETE /Auth/Keys/{key} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter key: (path) The access token to delete. - - returns: RequestBuilder - */ - open class func revokeKeyWithRequestBuilder(key: String) -> RequestBuilder { - var localVariablePath = "/Auth/Keys/{key}" - let keyPreEscape = "\(APIHelper.mapValueToPathItem(key))" - let keyPostEscape = keyPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{key}", with: keyPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ArtistsAPI.swift b/Sources/JellyfinAPI/APIs/ArtistsAPI.swift deleted file mode 100644 index b699a68c4..000000000 --- a/Sources/JellyfinAPI/APIs/ArtistsAPI.swift +++ /dev/null @@ -1,379 +0,0 @@ -// -// ArtistsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ArtistsAPI { - - /** - Gets all album artists from a given item, folder, or the entire library. - - - parameter minCommunityRating: (query) Optional filter by minimum community rating. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) Optional. Search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter mediaTypes: (query) Optional filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter genres: (query) Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) - - parameter genreIds: (query) Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) - - parameter officialRatings: (query) Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) - - parameter tags: (query) Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) - - parameter years: (query) Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter person: (query) Optional. If specified, results will be filtered to include only those containing the specified person. (optional) - - parameter personIds: (query) Optional. If specified, results will be filtered to include only those containing the specified person ids. (optional) - - parameter personTypes: (query) Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) - - parameter studios: (query) Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) - - parameter studioIds: (query) Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) - - parameter userId: (query) User id. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - parameter enableTotalRecordCount: (query) Total record count. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getAlbumArtists(minCommunityRating: Double? = nil, startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, studioIds: [String]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getAlbumArtistsWithRequestBuilder(minCommunityRating: minCommunityRating, startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, filters: filters, isFavorite: isFavorite, mediaTypes: mediaTypes, genres: genres, genreIds: genreIds, officialRatings: officialRatings, tags: tags, years: years, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, person: person, personIds: personIds, personTypes: personTypes, studios: studios, studioIds: studioIds, userId: userId, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, sortBy: sortBy, sortOrder: sortOrder, enableImages: enableImages, enableTotalRecordCount: enableTotalRecordCount).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all album artists from a given item, folder, or the entire library. - - GET /Artists/AlbumArtists - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter minCommunityRating: (query) Optional filter by minimum community rating. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) Optional. Search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter mediaTypes: (query) Optional filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter genres: (query) Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) - - parameter genreIds: (query) Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) - - parameter officialRatings: (query) Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) - - parameter tags: (query) Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) - - parameter years: (query) Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter person: (query) Optional. If specified, results will be filtered to include only those containing the specified person. (optional) - - parameter personIds: (query) Optional. If specified, results will be filtered to include only those containing the specified person ids. (optional) - - parameter personTypes: (query) Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) - - parameter studios: (query) Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) - - parameter studioIds: (query) Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) - - parameter userId: (query) User id. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - parameter enableTotalRecordCount: (query) Total record count. (optional, default to true) - - returns: RequestBuilder - */ - open class func getAlbumArtistsWithRequestBuilder(minCommunityRating: Double? = nil, startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, studioIds: [String]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Artists/AlbumArtists" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "minCommunityRating": minCommunityRating?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "searchTerm": searchTerm?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "filters": filters?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - "mediaTypes": mediaTypes?.encodeToJSON(), - "genres": genres?.encodeToJSON(), - "genreIds": genreIds?.encodeToJSON(), - "officialRatings": officialRatings?.encodeToJSON(), - "tags": tags?.encodeToJSON(), - "years": years?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "person": person?.encodeToJSON(), - "personIds": personIds?.encodeToJSON(), - "personTypes": personTypes?.encodeToJSON(), - "studios": studios?.encodeToJSON(), - "studioIds": studioIds?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "nameStartsWithOrGreater": nameStartsWithOrGreater?.encodeToJSON(), - "nameStartsWith": nameStartsWith?.encodeToJSON(), - "nameLessThan": nameLessThan?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets an artist by name. - - - parameter name: (path) Studio name. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getArtistByName(name: String, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getArtistByNameWithRequestBuilder(name: name, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an artist by name. - - GET /Artists/{name} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (path) Studio name. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: RequestBuilder - */ - open class func getArtistByNameWithRequestBuilder(name: String, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/Artists/{name}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets all artists from a given item, folder, or the entire library. - - - parameter minCommunityRating: (query) Optional filter by minimum community rating. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) Optional. Search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter mediaTypes: (query) Optional filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter genres: (query) Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) - - parameter genreIds: (query) Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) - - parameter officialRatings: (query) Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) - - parameter tags: (query) Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) - - parameter years: (query) Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter person: (query) Optional. If specified, results will be filtered to include only those containing the specified person. (optional) - - parameter personIds: (query) Optional. If specified, results will be filtered to include only those containing the specified person ids. (optional) - - parameter personTypes: (query) Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) - - parameter studios: (query) Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) - - parameter studioIds: (query) Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) - - parameter userId: (query) User id. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - parameter enableTotalRecordCount: (query) Total record count. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getArtists(minCommunityRating: Double? = nil, startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, studioIds: [String]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getArtistsWithRequestBuilder(minCommunityRating: minCommunityRating, startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, filters: filters, isFavorite: isFavorite, mediaTypes: mediaTypes, genres: genres, genreIds: genreIds, officialRatings: officialRatings, tags: tags, years: years, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, person: person, personIds: personIds, personTypes: personTypes, studios: studios, studioIds: studioIds, userId: userId, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, sortBy: sortBy, sortOrder: sortOrder, enableImages: enableImages, enableTotalRecordCount: enableTotalRecordCount).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all artists from a given item, folder, or the entire library. - - GET /Artists - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter minCommunityRating: (query) Optional filter by minimum community rating. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) Optional. Search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter mediaTypes: (query) Optional filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter genres: (query) Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) - - parameter genreIds: (query) Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) - - parameter officialRatings: (query) Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) - - parameter tags: (query) Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) - - parameter years: (query) Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter person: (query) Optional. If specified, results will be filtered to include only those containing the specified person. (optional) - - parameter personIds: (query) Optional. If specified, results will be filtered to include only those containing the specified person ids. (optional) - - parameter personTypes: (query) Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) - - parameter studios: (query) Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) - - parameter studioIds: (query) Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) - - parameter userId: (query) User id. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - parameter enableTotalRecordCount: (query) Total record count. (optional, default to true) - - returns: RequestBuilder - */ - open class func getArtistsWithRequestBuilder(minCommunityRating: Double? = nil, startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, studioIds: [String]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Artists" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "minCommunityRating": minCommunityRating?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "searchTerm": searchTerm?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "filters": filters?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - "mediaTypes": mediaTypes?.encodeToJSON(), - "genres": genres?.encodeToJSON(), - "genreIds": genreIds?.encodeToJSON(), - "officialRatings": officialRatings?.encodeToJSON(), - "tags": tags?.encodeToJSON(), - "years": years?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "person": person?.encodeToJSON(), - "personIds": personIds?.encodeToJSON(), - "personTypes": personTypes?.encodeToJSON(), - "studios": studios?.encodeToJSON(), - "studioIds": studioIds?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "nameStartsWithOrGreater": nameStartsWithOrGreater?.encodeToJSON(), - "nameStartsWith": nameStartsWith?.encodeToJSON(), - "nameLessThan": nameLessThan?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/AudioAPI.swift b/Sources/JellyfinAPI/APIs/AudioAPI.swift deleted file mode 100644 index df636d369..000000000 --- a/Sources/JellyfinAPI/APIs/AudioAPI.swift +++ /dev/null @@ -1,821 +0,0 @@ -// -// AudioAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class AudioAPI { - - /** - Gets an audio stream. - - - parameter itemId: (path) The item id. - - parameter container: (query) The audio container. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getAudioStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getAudioStreamWithRequestBuilder(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an audio stream. - - GET /Audio/{itemId}/stream - - parameter itemId: (path) The item id. - - parameter container: (query) The audio container. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func getAudioStreamWithRequestBuilder(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/stream" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "container": container?.encodeToJSON(), - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets an audio stream. - - - parameter itemId: (path) The item id. - - parameter container: (path) The audio container. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment lenght. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamporphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getAudioStreamByContainer(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getAudioStreamByContainerWithRequestBuilder(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an audio stream. - - GET /Audio/{itemId}/stream.{container} - - parameter itemId: (path) The item id. - - parameter container: (path) The audio container. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment lenght. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamporphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func getAudioStreamByContainerWithRequestBuilder(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/stream.{container}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let containerPreEscape = "\(APIHelper.mapValueToPathItem(container))" - let containerPostEscape = containerPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{container}", with: containerPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets an audio stream. - - - parameter itemId: (path) The item id. - - parameter container: (query) The audio container. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headAudioStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headAudioStreamWithRequestBuilder(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an audio stream. - - HEAD /Audio/{itemId}/stream - - parameter itemId: (path) The item id. - - parameter container: (query) The audio container. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func headAudioStreamWithRequestBuilder(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/stream" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "container": container?.encodeToJSON(), - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets an audio stream. - - - parameter itemId: (path) The item id. - - parameter container: (path) The audio container. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment lenght. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamporphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headAudioStreamByContainer(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headAudioStreamByContainerWithRequestBuilder(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an audio stream. - - HEAD /Audio/{itemId}/stream.{container} - - parameter itemId: (path) The item id. - - parameter container: (path) The audio container. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment lenght. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamporphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func headAudioStreamByContainerWithRequestBuilder(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/stream.{container}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let containerPreEscape = "\(APIHelper.mapValueToPathItem(container))" - let containerPostEscape = containerPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{container}", with: containerPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/BrandingAPI.swift b/Sources/JellyfinAPI/APIs/BrandingAPI.swift deleted file mode 100644 index f4cba7b1a..000000000 --- a/Sources/JellyfinAPI/APIs/BrandingAPI.swift +++ /dev/null @@ -1,164 +0,0 @@ -// -// BrandingAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class BrandingAPI { - - /** - Gets branding css. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getBrandingCss() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getBrandingCssWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets branding css. - - GET /Branding/Css - - returns: RequestBuilder - */ - open class func getBrandingCssWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Branding/Css" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets branding css. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getBrandingCss2() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getBrandingCss2WithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets branding css. - - GET /Branding/Css.css - - returns: RequestBuilder - */ - open class func getBrandingCss2WithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Branding/Css.css" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets branding configuration. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getBrandingOptions() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getBrandingOptionsWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets branding configuration. - - GET /Branding/Configuration - - returns: RequestBuilder - */ - open class func getBrandingOptionsWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Branding/Configuration" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ChannelsAPI.swift b/Sources/JellyfinAPI/APIs/ChannelsAPI.swift deleted file mode 100644 index c9ff4d93f..000000000 --- a/Sources/JellyfinAPI/APIs/ChannelsAPI.swift +++ /dev/null @@ -1,353 +0,0 @@ -// -// ChannelsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ChannelsAPI { - - /** - Get all channel features. - - - returns: AnyPublisher<[ChannelFeatures], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getAllChannelFeatures() -> AnyPublisher<[ChannelFeatures], Error> { - var requestTask: RequestTask? - return Future<[ChannelFeatures], Error> { promise in - requestTask = getAllChannelFeaturesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get all channel features. - - GET /Channels/Features - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[ChannelFeatures]> - */ - open class func getAllChannelFeaturesWithRequestBuilder() -> RequestBuilder<[ChannelFeatures]> { - let localVariablePath = "/Channels/Features" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[ChannelFeatures]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get channel features. - - - parameter channelId: (path) Channel id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getChannelFeatures(channelId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getChannelFeaturesWithRequestBuilder(channelId: channelId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get channel features. - - GET /Channels/{channelId}/Features - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter channelId: (path) Channel id. - - returns: RequestBuilder - */ - open class func getChannelFeaturesWithRequestBuilder(channelId: String) -> RequestBuilder { - var localVariablePath = "/Channels/{channelId}/Features" - let channelIdPreEscape = "\(APIHelper.mapValueToPathItem(channelId))" - let channelIdPostEscape = channelIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{channelId}", with: channelIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get channel items. - - - parameter channelId: (path) Channel Id. - - parameter folderId: (query) Optional. Folder Id. (optional) - - parameter userId: (query) Optional. User Id. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter sortOrder: (query) Optional. Sort Order - Ascending,Descending. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getChannelItems(channelId: String, folderId: String? = nil, userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, sortOrder: [SortOrder]? = nil, filters: [ItemFilter]? = nil, sortBy: [String]? = nil, fields: [ItemFields]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getChannelItemsWithRequestBuilder(channelId: channelId, folderId: folderId, userId: userId, startIndex: startIndex, limit: limit, sortOrder: sortOrder, filters: filters, sortBy: sortBy, fields: fields).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get channel items. - - GET /Channels/{channelId}/Items - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter channelId: (path) Channel Id. - - parameter folderId: (query) Optional. Folder Id. (optional) - - parameter userId: (query) Optional. User Id. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter sortOrder: (query) Optional. Sort Order - Ascending,Descending. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - returns: RequestBuilder - */ - open class func getChannelItemsWithRequestBuilder(channelId: String, folderId: String? = nil, userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, sortOrder: [SortOrder]? = nil, filters: [ItemFilter]? = nil, sortBy: [String]? = nil, fields: [ItemFields]? = nil) -> RequestBuilder { - var localVariablePath = "/Channels/{channelId}/Items" - let channelIdPreEscape = "\(APIHelper.mapValueToPathItem(channelId))" - let channelIdPostEscape = channelIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{channelId}", with: channelIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "folderId": folderId?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "filters": filters?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available channels. - - - parameter userId: (query) User Id to filter by. Use System.Guid.Empty to not filter by user. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter supportsLatestItems: (query) Optional. Filter by channels that support getting latest items. (optional) - - parameter supportsMediaDeletion: (query) Optional. Filter by channels that support media deletion. (optional) - - parameter isFavorite: (query) Optional. Filter by channels that are favorite. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getChannels(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, supportsLatestItems: Bool? = nil, supportsMediaDeletion: Bool? = nil, isFavorite: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getChannelsWithRequestBuilder(userId: userId, startIndex: startIndex, limit: limit, supportsLatestItems: supportsLatestItems, supportsMediaDeletion: supportsMediaDeletion, isFavorite: isFavorite).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available channels. - - GET /Channels - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) User Id to filter by. Use System.Guid.Empty to not filter by user. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter supportsLatestItems: (query) Optional. Filter by channels that support getting latest items. (optional) - - parameter supportsMediaDeletion: (query) Optional. Filter by channels that support media deletion. (optional) - - parameter isFavorite: (query) Optional. Filter by channels that are favorite. (optional) - - returns: RequestBuilder - */ - open class func getChannelsWithRequestBuilder(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, supportsLatestItems: Bool? = nil, supportsMediaDeletion: Bool? = nil, isFavorite: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Channels" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "supportsLatestItems": supportsLatestItems?.encodeToJSON(), - "supportsMediaDeletion": supportsMediaDeletion?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets latest channel items. - - - parameter userId: (query) Optional. User Id. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter channelIds: (query) Optional. Specify one or more channel id's, comma delimited. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLatestChannelItems(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, filters: [ItemFilter]? = nil, fields: [ItemFields]? = nil, channelIds: [String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getLatestChannelItemsWithRequestBuilder(userId: userId, startIndex: startIndex, limit: limit, filters: filters, fields: fields, channelIds: channelIds).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets latest channel items. - - GET /Channels/Items/Latest - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) Optional. User Id. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter channelIds: (query) Optional. Specify one or more channel id's, comma delimited. (optional) - - returns: RequestBuilder - */ - open class func getLatestChannelItemsWithRequestBuilder(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, filters: [ItemFilter]? = nil, fields: [ItemFields]? = nil, channelIds: [String]? = nil) -> RequestBuilder { - let localVariablePath = "/Channels/Items/Latest" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "filters": filters?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "channelIds": channelIds?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ClientLogAPI.swift b/Sources/JellyfinAPI/APIs/ClientLogAPI.swift deleted file mode 100644 index a1205f4f1..000000000 --- a/Sources/JellyfinAPI/APIs/ClientLogAPI.swift +++ /dev/null @@ -1,71 +0,0 @@ -// -// ClientLogAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ClientLogAPI { - - /** - Upload a document. - - - parameter body: (body) (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func logFile(body: URL? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = logFileWithRequestBuilder(body: body).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Upload a document. - - POST /ClientLog/Document - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter body: (body) (optional) - - returns: RequestBuilder - */ - open class func logFileWithRequestBuilder(body: URL? = nil) -> RequestBuilder { - let localVariablePath = "/ClientLog/Document" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: body) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/CollectionAPI.swift b/Sources/JellyfinAPI/APIs/CollectionAPI.swift deleted file mode 100644 index 2ff1988ad..000000000 --- a/Sources/JellyfinAPI/APIs/CollectionAPI.swift +++ /dev/null @@ -1,207 +0,0 @@ -// -// CollectionAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class CollectionAPI { - - /** - Adds items to a collection. - - - parameter collectionId: (path) The collection id. - - parameter ids: (query) Item ids, comma delimited. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func addToCollection(collectionId: String, ids: [String]) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = addToCollectionWithRequestBuilder(collectionId: collectionId, ids: ids).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Adds items to a collection. - - POST /Collections/{collectionId}/Items - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter collectionId: (path) The collection id. - - parameter ids: (query) Item ids, comma delimited. - - returns: RequestBuilder - */ - open class func addToCollectionWithRequestBuilder(collectionId: String, ids: [String]) -> RequestBuilder { - var localVariablePath = "/Collections/{collectionId}/Items" - let collectionIdPreEscape = "\(APIHelper.mapValueToPathItem(collectionId))" - let collectionIdPostEscape = collectionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{collectionId}", with: collectionIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "ids": ids.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates a new collection. - - - parameter name: (query) The name of the collection. (optional) - - parameter ids: (query) Item Ids to add to the collection. (optional) - - parameter parentId: (query) Optional. Create the collection within a specific folder. (optional) - - parameter isLocked: (query) Whether or not to lock the new collection. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func createCollection(name: String? = nil, ids: [String]? = nil, parentId: String? = nil, isLocked: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = createCollectionWithRequestBuilder(name: name, ids: ids, parentId: parentId, isLocked: isLocked).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates a new collection. - - POST /Collections - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (query) The name of the collection. (optional) - - parameter ids: (query) Item Ids to add to the collection. (optional) - - parameter parentId: (query) Optional. Create the collection within a specific folder. (optional) - - parameter isLocked: (query) Whether or not to lock the new collection. (optional, default to false) - - returns: RequestBuilder - */ - open class func createCollectionWithRequestBuilder(name: String? = nil, ids: [String]? = nil, parentId: String? = nil, isLocked: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Collections" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "name": name?.encodeToJSON(), - "ids": ids?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "isLocked": isLocked?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Removes items from a collection. - - - parameter collectionId: (path) The collection id. - - parameter ids: (query) Item ids, comma delimited. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func removeFromCollection(collectionId: String, ids: [String]) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = removeFromCollectionWithRequestBuilder(collectionId: collectionId, ids: ids).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Removes items from a collection. - - DELETE /Collections/{collectionId}/Items - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter collectionId: (path) The collection id. - - parameter ids: (query) Item ids, comma delimited. - - returns: RequestBuilder - */ - open class func removeFromCollectionWithRequestBuilder(collectionId: String, ids: [String]) -> RequestBuilder { - var localVariablePath = "/Collections/{collectionId}/Items" - let collectionIdPreEscape = "\(APIHelper.mapValueToPathItem(collectionId))" - let collectionIdPostEscape = collectionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{collectionId}", with: collectionIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "ids": ids.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ConfigurationAPI.swift b/Sources/JellyfinAPI/APIs/ConfigurationAPI.swift deleted file mode 100644 index 1e98e34e0..000000000 --- a/Sources/JellyfinAPI/APIs/ConfigurationAPI.swift +++ /dev/null @@ -1,345 +0,0 @@ -// -// ConfigurationAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ConfigurationAPI { - - /** - Gets application configuration. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getConfiguration() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getConfigurationWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets application configuration. - - GET /System/Configuration - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getConfigurationWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/System/Configuration" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a default MetadataOptions object. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDefaultMetadataOptions() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDefaultMetadataOptionsWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a default MetadataOptions object. - - GET /System/Configuration/MetadataOptions/Default - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getDefaultMetadataOptionsWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/System/Configuration/MetadataOptions/Default" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a named configuration. - - - parameter key: (path) Configuration key. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getNamedConfiguration(key: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getNamedConfigurationWithRequestBuilder(key: key).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a named configuration. - - GET /System/Configuration/{key} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter key: (path) Configuration key. - - returns: RequestBuilder - */ - open class func getNamedConfigurationWithRequestBuilder(key: String) -> RequestBuilder { - var localVariablePath = "/System/Configuration/{key}" - let keyPreEscape = "\(APIHelper.mapValueToPathItem(key))" - let keyPostEscape = keyPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{key}", with: keyPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates application configuration. - - - parameter updateConfigurationRequest: (body) Configuration. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateConfiguration(updateConfigurationRequest: UpdateConfigurationRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateConfigurationWithRequestBuilder(updateConfigurationRequest: updateConfigurationRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates application configuration. - - POST /System/Configuration - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter updateConfigurationRequest: (body) Configuration. - - returns: RequestBuilder - */ - open class func updateConfigurationWithRequestBuilder(updateConfigurationRequest: UpdateConfigurationRequest) -> RequestBuilder { - let localVariablePath = "/System/Configuration" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateConfigurationRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates the path to the media encoder. - - - parameter updateMediaEncoderPathRequest: (body) Media encoder path form body. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateMediaEncoderPath(updateMediaEncoderPathRequest: UpdateMediaEncoderPathRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateMediaEncoderPathWithRequestBuilder(updateMediaEncoderPathRequest: updateMediaEncoderPathRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates the path to the media encoder. - - POST /System/MediaEncoder/Path - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter updateMediaEncoderPathRequest: (body) Media encoder path form body. - - returns: RequestBuilder - */ - open class func updateMediaEncoderPathWithRequestBuilder(updateMediaEncoderPathRequest: UpdateMediaEncoderPathRequest) -> RequestBuilder { - let localVariablePath = "/System/MediaEncoder/Path" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateMediaEncoderPathRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates named configuration. - - - parameter key: (path) Configuration key. - - parameter body: (body) Configuration. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateNamedConfiguration(key: String, body: AnyCodable) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateNamedConfigurationWithRequestBuilder(key: key, body: body).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates named configuration. - - POST /System/Configuration/{key} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter key: (path) Configuration key. - - parameter body: (body) Configuration. - - returns: RequestBuilder - */ - open class func updateNamedConfigurationWithRequestBuilder(key: String, body: AnyCodable) -> RequestBuilder { - var localVariablePath = "/System/Configuration/{key}" - let keyPreEscape = "\(APIHelper.mapValueToPathItem(key))" - let keyPostEscape = keyPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{key}", with: keyPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: body) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/DashboardAPI.swift b/Sources/JellyfinAPI/APIs/DashboardAPI.swift deleted file mode 100644 index b783c63d5..000000000 --- a/Sources/JellyfinAPI/APIs/DashboardAPI.swift +++ /dev/null @@ -1,128 +0,0 @@ -// -// DashboardAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class DashboardAPI { - - /** - Gets the configuration pages. - - - parameter enableInMainMenu: (query) Whether to enable in the main menu. (optional) - - returns: AnyPublisher<[ConfigurationPageInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getConfigurationPages(enableInMainMenu: Bool? = nil) -> AnyPublisher<[ConfigurationPageInfo], Error> { - var requestTask: RequestTask? - return Future<[ConfigurationPageInfo], Error> { promise in - requestTask = getConfigurationPagesWithRequestBuilder(enableInMainMenu: enableInMainMenu).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the configuration pages. - - GET /web/ConfigurationPages - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter enableInMainMenu: (query) Whether to enable in the main menu. (optional) - - returns: RequestBuilder<[ConfigurationPageInfo]> - */ - open class func getConfigurationPagesWithRequestBuilder(enableInMainMenu: Bool? = nil) -> RequestBuilder<[ConfigurationPageInfo]> { - let localVariablePath = "/web/ConfigurationPages" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "enableInMainMenu": enableInMainMenu?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[ConfigurationPageInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a dashboard configuration page. - - - parameter name: (query) The name of the page. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDashboardConfigurationPage(name: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDashboardConfigurationPageWithRequestBuilder(name: name).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a dashboard configuration page. - - GET /web/ConfigurationPage - - parameter name: (query) The name of the page. (optional) - - returns: RequestBuilder - */ - open class func getDashboardConfigurationPageWithRequestBuilder(name: String? = nil) -> RequestBuilder { - let localVariablePath = "/web/ConfigurationPage" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "name": name?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/DevicesAPI.swift b/Sources/JellyfinAPI/APIs/DevicesAPI.swift deleted file mode 100644 index b4f654934..000000000 --- a/Sources/JellyfinAPI/APIs/DevicesAPI.swift +++ /dev/null @@ -1,307 +0,0 @@ -// -// DevicesAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class DevicesAPI { - - /** - Deletes a device. - - - parameter id: (query) Device Id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteDevice(id: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteDeviceWithRequestBuilder(id: id).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Deletes a device. - - DELETE /Devices - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (query) Device Id. - - returns: RequestBuilder - */ - open class func deleteDeviceWithRequestBuilder(id: String) -> RequestBuilder { - let localVariablePath = "/Devices" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get info for a device. - - - parameter id: (query) Device Id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDeviceInfo(id: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDeviceInfoWithRequestBuilder(id: id).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get info for a device. - - GET /Devices/Info - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (query) Device Id. - - returns: RequestBuilder - */ - open class func getDeviceInfoWithRequestBuilder(id: String) -> RequestBuilder { - let localVariablePath = "/Devices/Info" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get options for a device. - - - parameter id: (query) Device Id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDeviceOptions(id: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDeviceOptionsWithRequestBuilder(id: id).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get options for a device. - - GET /Devices/Options - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (query) Device Id. - - returns: RequestBuilder - */ - open class func getDeviceOptionsWithRequestBuilder(id: String) -> RequestBuilder { - let localVariablePath = "/Devices/Options" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get Devices. - - - parameter supportsSync: (query) Gets or sets a value indicating whether [supports synchronize]. (optional) - - parameter userId: (query) Gets or sets the user identifier. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDevices(supportsSync: Bool? = nil, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDevicesWithRequestBuilder(supportsSync: supportsSync, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get Devices. - - GET /Devices - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter supportsSync: (query) Gets or sets a value indicating whether [supports synchronize]. (optional) - - parameter userId: (query) Gets or sets the user identifier. (optional) - - returns: RequestBuilder - */ - open class func getDevicesWithRequestBuilder(supportsSync: Bool? = nil, userId: String? = nil) -> RequestBuilder { - let localVariablePath = "/Devices" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "supportsSync": supportsSync?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Update device options. - - - parameter id: (query) Device Id. - - parameter updateDeviceOptionsRequest: (body) Device Options. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateDeviceOptions(id: String, updateDeviceOptionsRequest: UpdateDeviceOptionsRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateDeviceOptionsWithRequestBuilder(id: id, updateDeviceOptionsRequest: updateDeviceOptionsRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Update device options. - - POST /Devices/Options - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (query) Device Id. - - parameter updateDeviceOptionsRequest: (body) Device Options. - - returns: RequestBuilder - */ - open class func updateDeviceOptionsWithRequestBuilder(id: String, updateDeviceOptionsRequest: UpdateDeviceOptionsRequest) -> RequestBuilder { - let localVariablePath = "/Devices/Options" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateDeviceOptionsRequest) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/DisplayPreferencesAPI.swift b/Sources/JellyfinAPI/APIs/DisplayPreferencesAPI.swift deleted file mode 100644 index c632ee8b2..000000000 --- a/Sources/JellyfinAPI/APIs/DisplayPreferencesAPI.swift +++ /dev/null @@ -1,149 +0,0 @@ -// -// DisplayPreferencesAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class DisplayPreferencesAPI { - - /** - Get Display Preferences. - - - parameter displayPreferencesId: (path) Display preferences id. - - parameter userId: (query) User id. - - parameter client: (query) Client. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDisplayPreferences(displayPreferencesId: String, userId: String, client: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDisplayPreferencesWithRequestBuilder(displayPreferencesId: displayPreferencesId, userId: userId, client: client).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get Display Preferences. - - GET /DisplayPreferences/{displayPreferencesId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter displayPreferencesId: (path) Display preferences id. - - parameter userId: (query) User id. - - parameter client: (query) Client. - - returns: RequestBuilder - */ - open class func getDisplayPreferencesWithRequestBuilder(displayPreferencesId: String, userId: String, client: String) -> RequestBuilder { - var localVariablePath = "/DisplayPreferences/{displayPreferencesId}" - let displayPreferencesIdPreEscape = "\(APIHelper.mapValueToPathItem(displayPreferencesId))" - let displayPreferencesIdPostEscape = displayPreferencesIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{displayPreferencesId}", with: displayPreferencesIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId.encodeToJSON(), - "client": client.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Update Display Preferences. - - - parameter displayPreferencesId: (path) Display preferences id. - - parameter userId: (query) User Id. - - parameter client: (query) Client. - - parameter updateDisplayPreferencesRequest: (body) New Display Preferences object. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateDisplayPreferences(displayPreferencesId: String, userId: String, client: String, updateDisplayPreferencesRequest: UpdateDisplayPreferencesRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateDisplayPreferencesWithRequestBuilder(displayPreferencesId: displayPreferencesId, userId: userId, client: client, updateDisplayPreferencesRequest: updateDisplayPreferencesRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Update Display Preferences. - - POST /DisplayPreferences/{displayPreferencesId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter displayPreferencesId: (path) Display preferences id. - - parameter userId: (query) User Id. - - parameter client: (query) Client. - - parameter updateDisplayPreferencesRequest: (body) New Display Preferences object. - - returns: RequestBuilder - */ - open class func updateDisplayPreferencesWithRequestBuilder(displayPreferencesId: String, userId: String, client: String, updateDisplayPreferencesRequest: UpdateDisplayPreferencesRequest) -> RequestBuilder { - var localVariablePath = "/DisplayPreferences/{displayPreferencesId}" - let displayPreferencesIdPreEscape = "\(APIHelper.mapValueToPathItem(displayPreferencesId))" - let displayPreferencesIdPostEscape = displayPreferencesIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{displayPreferencesId}", with: displayPreferencesIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateDisplayPreferencesRequest) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId.encodeToJSON(), - "client": client.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/DlnaAPI.swift b/Sources/JellyfinAPI/APIs/DlnaAPI.swift deleted file mode 100644 index e9dcd6b60..000000000 --- a/Sources/JellyfinAPI/APIs/DlnaAPI.swift +++ /dev/null @@ -1,348 +0,0 @@ -// -// DlnaAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class DlnaAPI { - - /** - Creates a profile. - - - parameter createProfileRequest: (body) Device profile. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func createProfile(createProfileRequest: CreateProfileRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = createProfileWithRequestBuilder(createProfileRequest: createProfileRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates a profile. - - POST /Dlna/Profiles - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter createProfileRequest: (body) Device profile. (optional) - - returns: RequestBuilder - */ - open class func createProfileWithRequestBuilder(createProfileRequest: CreateProfileRequest? = nil) -> RequestBuilder { - let localVariablePath = "/Dlna/Profiles" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: createProfileRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Deletes a profile. - - - parameter profileId: (path) Profile id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteProfile(profileId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteProfileWithRequestBuilder(profileId: profileId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Deletes a profile. - - DELETE /Dlna/Profiles/{profileId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter profileId: (path) Profile id. - - returns: RequestBuilder - */ - open class func deleteProfileWithRequestBuilder(profileId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/Profiles/{profileId}" - let profileIdPreEscape = "\(APIHelper.mapValueToPathItem(profileId))" - let profileIdPostEscape = profileIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{profileId}", with: profileIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the default profile. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDefaultProfile() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDefaultProfileWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the default profile. - - GET /Dlna/Profiles/Default - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getDefaultProfileWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Dlna/Profiles/Default" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a single profile. - - - parameter profileId: (path) Profile Id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getProfile(profileId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getProfileWithRequestBuilder(profileId: profileId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a single profile. - - GET /Dlna/Profiles/{profileId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter profileId: (path) Profile Id. - - returns: RequestBuilder - */ - open class func getProfileWithRequestBuilder(profileId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/Profiles/{profileId}" - let profileIdPreEscape = "\(APIHelper.mapValueToPathItem(profileId))" - let profileIdPostEscape = profileIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{profileId}", with: profileIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get profile infos. - - - returns: AnyPublisher<[DeviceProfileInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getProfileInfos() -> AnyPublisher<[DeviceProfileInfo], Error> { - var requestTask: RequestTask? - return Future<[DeviceProfileInfo], Error> { promise in - requestTask = getProfileInfosWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get profile infos. - - GET /Dlna/ProfileInfos - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[DeviceProfileInfo]> - */ - open class func getProfileInfosWithRequestBuilder() -> RequestBuilder<[DeviceProfileInfo]> { - let localVariablePath = "/Dlna/ProfileInfos" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[DeviceProfileInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates a profile. - - - parameter profileId: (path) Profile id. - - parameter createProfileRequest: (body) Device profile. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateProfile(profileId: String, createProfileRequest: CreateProfileRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateProfileWithRequestBuilder(profileId: profileId, createProfileRequest: createProfileRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates a profile. - - POST /Dlna/Profiles/{profileId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter profileId: (path) Profile id. - - parameter createProfileRequest: (body) Device profile. (optional) - - returns: RequestBuilder - */ - open class func updateProfileWithRequestBuilder(profileId: String, createProfileRequest: CreateProfileRequest? = nil) -> RequestBuilder { - var localVariablePath = "/Dlna/Profiles/{profileId}" - let profileIdPreEscape = "\(APIHelper.mapValueToPathItem(profileId))" - let profileIdPostEscape = profileIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{profileId}", with: profileIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: createProfileRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/DlnaServerAPI.swift b/Sources/JellyfinAPI/APIs/DlnaServerAPI.swift deleted file mode 100644 index 5d37ae4d9..000000000 --- a/Sources/JellyfinAPI/APIs/DlnaServerAPI.swift +++ /dev/null @@ -1,934 +0,0 @@ -// -// DlnaServerAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class DlnaServerAPI { - - /** - Gets Dlna media receiver registrar xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getConnectionManager(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getConnectionManagerWithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets Dlna media receiver registrar xml. - - GET /Dlna/{serverId}/ConnectionManager - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getConnectionManagerWithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/ConnectionManager" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets Dlna media receiver registrar xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getConnectionManager2(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getConnectionManager2WithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets Dlna media receiver registrar xml. - - GET /Dlna/{serverId}/ConnectionManager/ConnectionManager - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getConnectionManager2WithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/ConnectionManager/ConnectionManager" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets Dlna media receiver registrar xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getConnectionManager3(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getConnectionManager3WithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets Dlna media receiver registrar xml. - - GET /Dlna/{serverId}/ConnectionManager/ConnectionManager.xml - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getConnectionManager3WithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/ConnectionManager/ConnectionManager.xml" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets Dlna content directory xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getContentDirectory(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getContentDirectoryWithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets Dlna content directory xml. - - GET /Dlna/{serverId}/ContentDirectory - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getContentDirectoryWithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/ContentDirectory" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets Dlna content directory xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getContentDirectory2(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getContentDirectory2WithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets Dlna content directory xml. - - GET /Dlna/{serverId}/ContentDirectory/ContentDirectory - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getContentDirectory2WithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/ContentDirectory/ContentDirectory" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets Dlna content directory xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getContentDirectory3(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getContentDirectory3WithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets Dlna content directory xml. - - GET /Dlna/{serverId}/ContentDirectory/ContentDirectory.xml - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getContentDirectory3WithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/ContentDirectory/ContentDirectory.xml" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get Description Xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDescriptionXml(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDescriptionXmlWithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get Description Xml. - - GET /Dlna/{serverId}/description - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getDescriptionXmlWithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/description" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get Description Xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDescriptionXml2(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDescriptionXml2WithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get Description Xml. - - GET /Dlna/{serverId}/description.xml - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getDescriptionXml2WithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/description.xml" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a server icon. - - - parameter fileName: (path) The icon filename. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getIcon(fileName: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getIconWithRequestBuilder(fileName: fileName).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a server icon. - - GET /Dlna/icons/{fileName} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter fileName: (path) The icon filename. - - returns: RequestBuilder - */ - open class func getIconWithRequestBuilder(fileName: String) -> RequestBuilder { - var localVariablePath = "/Dlna/icons/{fileName}" - let fileNamePreEscape = "\(APIHelper.mapValueToPathItem(fileName))" - let fileNamePostEscape = fileNamePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{fileName}", with: fileNamePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a server icon. - - - parameter serverId: (path) Server UUID. - - parameter fileName: (path) The icon filename. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getIconId(serverId: String, fileName: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getIconIdWithRequestBuilder(serverId: serverId, fileName: fileName).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a server icon. - - GET /Dlna/{serverId}/icons/{fileName} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - parameter fileName: (path) The icon filename. - - returns: RequestBuilder - */ - open class func getIconIdWithRequestBuilder(serverId: String, fileName: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/icons/{fileName}" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let fileNamePreEscape = "\(APIHelper.mapValueToPathItem(fileName))" - let fileNamePostEscape = fileNamePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{fileName}", with: fileNamePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets Dlna media receiver registrar xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMediaReceiverRegistrar(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMediaReceiverRegistrarWithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets Dlna media receiver registrar xml. - - GET /Dlna/{serverId}/MediaReceiverRegistrar - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getMediaReceiverRegistrarWithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/MediaReceiverRegistrar" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets Dlna media receiver registrar xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMediaReceiverRegistrar2(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMediaReceiverRegistrar2WithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets Dlna media receiver registrar xml. - - GET /Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getMediaReceiverRegistrar2WithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets Dlna media receiver registrar xml. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMediaReceiverRegistrar3(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMediaReceiverRegistrar3WithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets Dlna media receiver registrar xml. - - GET /Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar.xml - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func getMediaReceiverRegistrar3WithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar.xml" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Process a connection manager control request. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func processConnectionManagerControlRequest(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = processConnectionManagerControlRequestWithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Process a connection manager control request. - - POST /Dlna/{serverId}/ConnectionManager/Control - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func processConnectionManagerControlRequestWithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/ConnectionManager/Control" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Process a content directory control request. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func processContentDirectoryControlRequest(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = processContentDirectoryControlRequestWithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Process a content directory control request. - - POST /Dlna/{serverId}/ContentDirectory/Control - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func processContentDirectoryControlRequestWithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/ContentDirectory/Control" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Process a media receiver registrar control request. - - - parameter serverId: (path) Server UUID. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func processMediaReceiverRegistrarControlRequest(serverId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = processMediaReceiverRegistrarControlRequestWithRequestBuilder(serverId: serverId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Process a media receiver registrar control request. - - POST /Dlna/{serverId}/MediaReceiverRegistrar/Control - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter serverId: (path) Server UUID. - - returns: RequestBuilder - */ - open class func processMediaReceiverRegistrarControlRequestWithRequestBuilder(serverId: String) -> RequestBuilder { - var localVariablePath = "/Dlna/{serverId}/MediaReceiverRegistrar/Control" - let serverIdPreEscape = "\(APIHelper.mapValueToPathItem(serverId))" - let serverIdPostEscape = serverIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{serverId}", with: serverIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/DynamicHlsAPI.swift b/Sources/JellyfinAPI/APIs/DynamicHlsAPI.swift deleted file mode 100644 index 377ad3090..000000000 --- a/Sources/JellyfinAPI/APIs/DynamicHlsAPI.swift +++ /dev/null @@ -1,1919 +0,0 @@ -// -// DynamicHlsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class DynamicHlsAPI { - - /** - Gets a video stream using HTTP live streaming. - - - parameter itemId: (path) The item id. - - parameter playlistId: (path) The playlist id. - - parameter segmentId: (path) The segment id. - - parameter container: (path) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. - - parameter runtimeTicks: (query) The position of the requested segment in ticks. - - parameter actualSegmentLengthTicks: (query) The length of the requested segment in ticks. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getHlsAudioSegment(itemId: String, playlistId: String, segmentId: Int, container: String, runtimeTicks: Int64, actualSegmentLengthTicks: Int64, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getHlsAudioSegmentWithRequestBuilder(itemId: itemId, playlistId: playlistId, segmentId: segmentId, container: container, runtimeTicks: runtimeTicks, actualSegmentLengthTicks: actualSegmentLengthTicks, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a video stream using HTTP live streaming. - - GET /Audio/{itemId}/hls1/{playlistId}/{segmentId}.{container} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter playlistId: (path) The playlist id. - - parameter segmentId: (path) The segment id. - - parameter container: (path) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. - - parameter runtimeTicks: (query) The position of the requested segment in ticks. - - parameter actualSegmentLengthTicks: (query) The length of the requested segment in ticks. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func getHlsAudioSegmentWithRequestBuilder(itemId: String, playlistId: String, segmentId: Int, container: String, runtimeTicks: Int64, actualSegmentLengthTicks: Int64, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/hls1/{playlistId}/{segmentId}.{container}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let playlistIdPreEscape = "\(APIHelper.mapValueToPathItem(playlistId))" - let playlistIdPostEscape = playlistIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{playlistId}", with: playlistIdPostEscape, options: .literal, range: nil) - let segmentIdPreEscape = "\(APIHelper.mapValueToPathItem(segmentId))" - let segmentIdPostEscape = segmentIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{segmentId}", with: segmentIdPostEscape, options: .literal, range: nil) - let containerPreEscape = "\(APIHelper.mapValueToPathItem(container))" - let containerPostEscape = containerPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{container}", with: containerPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "runtimeTicks": runtimeTicks.encodeToJSON(), - "actualSegmentLengthTicks": actualSegmentLengthTicks.encodeToJSON(), - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "maxStreamingBitrate": maxStreamingBitrate?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a video stream using HTTP live streaming. - - - parameter itemId: (path) The item id. - - parameter playlistId: (path) The playlist id. - - parameter segmentId: (path) The segment id. - - parameter container: (path) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. - - parameter runtimeTicks: (query) The position of the requested segment in ticks. - - parameter actualSegmentLengthTicks: (query) The length of the requested segment in ticks. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The desired segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getHlsVideoSegment(itemId: String, playlistId: String, segmentId: Int, container: String, runtimeTicks: Int64, actualSegmentLengthTicks: Int64, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getHlsVideoSegmentWithRequestBuilder(itemId: itemId, playlistId: playlistId, segmentId: segmentId, container: container, runtimeTicks: runtimeTicks, actualSegmentLengthTicks: actualSegmentLengthTicks, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a video stream using HTTP live streaming. - - GET /Videos/{itemId}/hls1/{playlistId}/{segmentId}.{container} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter playlistId: (path) The playlist id. - - parameter segmentId: (path) The segment id. - - parameter container: (path) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. - - parameter runtimeTicks: (query) The position of the requested segment in ticks. - - parameter actualSegmentLengthTicks: (query) The length of the requested segment in ticks. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The desired segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func getHlsVideoSegmentWithRequestBuilder(itemId: String, playlistId: String, segmentId: Int, container: String, runtimeTicks: Int64, actualSegmentLengthTicks: Int64, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/hls1/{playlistId}/{segmentId}.{container}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let playlistIdPreEscape = "\(APIHelper.mapValueToPathItem(playlistId))" - let playlistIdPostEscape = playlistIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{playlistId}", with: playlistIdPostEscape, options: .literal, range: nil) - let segmentIdPreEscape = "\(APIHelper.mapValueToPathItem(segmentId))" - let segmentIdPostEscape = segmentIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{segmentId}", with: segmentIdPostEscape, options: .literal, range: nil) - let containerPreEscape = "\(APIHelper.mapValueToPathItem(container))" - let containerPostEscape = containerPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{container}", with: containerPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "runtimeTicks": runtimeTicks.encodeToJSON(), - "actualSegmentLengthTicks": actualSegmentLengthTicks.encodeToJSON(), - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a hls live stream. - - - parameter itemId: (path) The item id. - - parameter container: (query) The audio container. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment lenght. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter maxWidth: (query) Optional. The max width. (optional) - - parameter maxHeight: (query) Optional. The max height. (optional) - - parameter enableSubtitlesInManifest: (query) Optional. Whether to enable subtitles in the manifest. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLiveHlsStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, enableSubtitlesInManifest: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getLiveHlsStreamWithRequestBuilder(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, maxWidth: maxWidth, maxHeight: maxHeight, enableSubtitlesInManifest: enableSubtitlesInManifest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a hls live stream. - - GET /Videos/{itemId}/live.m3u8 - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter container: (query) The audio container. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment lenght. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter maxWidth: (query) Optional. The max width. (optional) - - parameter maxHeight: (query) Optional. The max height. (optional) - - parameter enableSubtitlesInManifest: (query) Optional. Whether to enable subtitles in the manifest. (optional) - - returns: RequestBuilder - */ - open class func getLiveHlsStreamWithRequestBuilder(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, enableSubtitlesInManifest: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/live.m3u8" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "container": container?.encodeToJSON(), - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "enableSubtitlesInManifest": enableSubtitlesInManifest?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets an audio hls playlist stream. - - - parameter itemId: (path) The item id. - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter enableAdaptiveBitrateStreaming: (query) Enable adaptive bitrate streaming. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMasterHlsAudioPlaylist(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMasterHlsAudioPlaylistWithRequestBuilder(itemId: itemId, mediaSourceId: mediaSourceId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, enableAdaptiveBitrateStreaming: enableAdaptiveBitrateStreaming).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an audio hls playlist stream. - - GET /Audio/{itemId}/master.m3u8 - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter enableAdaptiveBitrateStreaming: (query) Enable adaptive bitrate streaming. (optional, default to true) - - returns: RequestBuilder - */ - open class func getMasterHlsAudioPlaylistWithRequestBuilder(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/master.m3u8" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "maxStreamingBitrate": maxStreamingBitrate?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - "enableAdaptiveBitrateStreaming": enableAdaptiveBitrateStreaming?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a video hls playlist stream. - - - parameter itemId: (path) The item id. - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter enableAdaptiveBitrateStreaming: (query) Enable adaptive bitrate streaming. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMasterHlsVideoPlaylist(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMasterHlsVideoPlaylistWithRequestBuilder(itemId: itemId, mediaSourceId: mediaSourceId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, enableAdaptiveBitrateStreaming: enableAdaptiveBitrateStreaming).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a video hls playlist stream. - - GET /Videos/{itemId}/master.m3u8 - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter enableAdaptiveBitrateStreaming: (query) Enable adaptive bitrate streaming. (optional, default to true) - - returns: RequestBuilder - */ - open class func getMasterHlsVideoPlaylistWithRequestBuilder(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/master.m3u8" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - "enableAdaptiveBitrateStreaming": enableAdaptiveBitrateStreaming?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets an audio stream using HTTP live streaming. - - - parameter itemId: (path) The item id. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getVariantHlsAudioPlaylist(itemId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getVariantHlsAudioPlaylistWithRequestBuilder(itemId: itemId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an audio stream using HTTP live streaming. - - GET /Audio/{itemId}/main.m3u8 - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func getVariantHlsAudioPlaylistWithRequestBuilder(itemId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/main.m3u8" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "maxStreamingBitrate": maxStreamingBitrate?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a video stream using HTTP live streaming. - - - parameter itemId: (path) The item id. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getVariantHlsVideoPlaylist(itemId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getVariantHlsVideoPlaylistWithRequestBuilder(itemId: itemId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a video stream using HTTP live streaming. - - GET /Videos/{itemId}/main.m3u8 - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func getVariantHlsVideoPlaylistWithRequestBuilder(itemId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/main.m3u8" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets an audio hls playlist stream. - - - parameter itemId: (path) The item id. - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter enableAdaptiveBitrateStreaming: (query) Enable adaptive bitrate streaming. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headMasterHlsAudioPlaylist(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headMasterHlsAudioPlaylistWithRequestBuilder(itemId: itemId, mediaSourceId: mediaSourceId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, enableAdaptiveBitrateStreaming: enableAdaptiveBitrateStreaming).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an audio hls playlist stream. - - HEAD /Audio/{itemId}/master.m3u8 - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter enableAdaptiveBitrateStreaming: (query) Enable adaptive bitrate streaming. (optional, default to true) - - returns: RequestBuilder - */ - open class func headMasterHlsAudioPlaylistWithRequestBuilder(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/master.m3u8" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "maxStreamingBitrate": maxStreamingBitrate?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - "enableAdaptiveBitrateStreaming": enableAdaptiveBitrateStreaming?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a video hls playlist stream. - - - parameter itemId: (path) The item id. - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter enableAdaptiveBitrateStreaming: (query) Enable adaptive bitrate streaming. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headMasterHlsVideoPlaylist(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headMasterHlsVideoPlaylistWithRequestBuilder(itemId: itemId, mediaSourceId: mediaSourceId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, enableAdaptiveBitrateStreaming: enableAdaptiveBitrateStreaming).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a video hls playlist stream. - - HEAD /Videos/{itemId}/master.m3u8 - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter enableAdaptiveBitrateStreaming: (query) Enable adaptive bitrate streaming. (optional, default to true) - - returns: RequestBuilder - */ - open class func headMasterHlsVideoPlaylistWithRequestBuilder(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/master.m3u8" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - "enableAdaptiveBitrateStreaming": enableAdaptiveBitrateStreaming?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/EnvironmentAPI.swift b/Sources/JellyfinAPI/APIs/EnvironmentAPI.swift deleted file mode 100644 index b559d7c29..000000000 --- a/Sources/JellyfinAPI/APIs/EnvironmentAPI.swift +++ /dev/null @@ -1,349 +0,0 @@ -// -// EnvironmentAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class EnvironmentAPI { - - /** - Get Default directory browser. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDefaultDirectoryBrowser() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDefaultDirectoryBrowserWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get Default directory browser. - - GET /Environment/DefaultDirectoryBrowser - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getDefaultDirectoryBrowserWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Environment/DefaultDirectoryBrowser" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the contents of a given directory in the file system. - - - parameter path: (query) The path. - - parameter includeFiles: (query) An optional filter to include or exclude files from the results. true/false. (optional, default to false) - - parameter includeDirectories: (query) An optional filter to include or exclude folders from the results. true/false. (optional, default to false) - - returns: AnyPublisher<[FileSystemEntryInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDirectoryContents(path: String, includeFiles: Bool? = nil, includeDirectories: Bool? = nil) -> AnyPublisher<[FileSystemEntryInfo], Error> { - var requestTask: RequestTask? - return Future<[FileSystemEntryInfo], Error> { promise in - requestTask = getDirectoryContentsWithRequestBuilder(path: path, includeFiles: includeFiles, includeDirectories: includeDirectories).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the contents of a given directory in the file system. - - GET /Environment/DirectoryContents - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter path: (query) The path. - - parameter includeFiles: (query) An optional filter to include or exclude files from the results. true/false. (optional, default to false) - - parameter includeDirectories: (query) An optional filter to include or exclude folders from the results. true/false. (optional, default to false) - - returns: RequestBuilder<[FileSystemEntryInfo]> - */ - open class func getDirectoryContentsWithRequestBuilder(path: String, includeFiles: Bool? = nil, includeDirectories: Bool? = nil) -> RequestBuilder<[FileSystemEntryInfo]> { - let localVariablePath = "/Environment/DirectoryContents" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "path": path.encodeToJSON(), - "includeFiles": includeFiles?.encodeToJSON(), - "includeDirectories": includeDirectories?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[FileSystemEntryInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available drives from the server's file system. - - - returns: AnyPublisher<[FileSystemEntryInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDrives() -> AnyPublisher<[FileSystemEntryInfo], Error> { - var requestTask: RequestTask? - return Future<[FileSystemEntryInfo], Error> { promise in - requestTask = getDrivesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available drives from the server's file system. - - GET /Environment/Drives - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[FileSystemEntryInfo]> - */ - open class func getDrivesWithRequestBuilder() -> RequestBuilder<[FileSystemEntryInfo]> { - let localVariablePath = "/Environment/Drives" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[FileSystemEntryInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets network paths. - - - returns: AnyPublisher<[FileSystemEntryInfo], Error> - */ - #if canImport(Combine) - @available(*, deprecated, message: "This operation is deprecated.") - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getNetworkShares() -> AnyPublisher<[FileSystemEntryInfo], Error> { - var requestTask: RequestTask? - return Future<[FileSystemEntryInfo], Error> { promise in - requestTask = getNetworkSharesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets network paths. - - GET /Environment/NetworkShares - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[FileSystemEntryInfo]> - */ - @available(*, deprecated, message: "This operation is deprecated.") - open class func getNetworkSharesWithRequestBuilder() -> RequestBuilder<[FileSystemEntryInfo]> { - let localVariablePath = "/Environment/NetworkShares" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[FileSystemEntryInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the parent path of a given path. - - - parameter path: (query) The path. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getParentPath(path: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getParentPathWithRequestBuilder(path: path).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the parent path of a given path. - - GET /Environment/ParentPath - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter path: (query) The path. - - returns: RequestBuilder - */ - open class func getParentPathWithRequestBuilder(path: String) -> RequestBuilder { - let localVariablePath = "/Environment/ParentPath" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "path": path.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Validates path. - - - parameter validatePathRequest: (body) Validate request object. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func validatePath(validatePathRequest: ValidatePathRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = validatePathWithRequestBuilder(validatePathRequest: validatePathRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Validates path. - - POST /Environment/ValidatePath - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter validatePathRequest: (body) Validate request object. - - returns: RequestBuilder - */ - open class func validatePathWithRequestBuilder(validatePathRequest: ValidatePathRequest) -> RequestBuilder { - let localVariablePath = "/Environment/ValidatePath" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: validatePathRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/FilterAPI.swift b/Sources/JellyfinAPI/APIs/FilterAPI.swift deleted file mode 100644 index 5f5928778..000000000 --- a/Sources/JellyfinAPI/APIs/FilterAPI.swift +++ /dev/null @@ -1,167 +0,0 @@ -// -// FilterAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class FilterAPI { - - /** - Gets query filters. - - - parameter userId: (query) Optional. User id. (optional) - - parameter parentId: (query) Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter isAiring: (query) Optional. Is item airing. (optional) - - parameter isMovie: (query) Optional. Is item movie. (optional) - - parameter isSports: (query) Optional. Is item sports. (optional) - - parameter isKids: (query) Optional. Is item kids. (optional) - - parameter isNews: (query) Optional. Is item news. (optional) - - parameter isSeries: (query) Optional. Is item series. (optional) - - parameter recursive: (query) Optional. Search recursive. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getQueryFilters(userId: String? = nil, parentId: String? = nil, includeItemTypes: [BaseItemKind]? = nil, isAiring: Bool? = nil, isMovie: Bool? = nil, isSports: Bool? = nil, isKids: Bool? = nil, isNews: Bool? = nil, isSeries: Bool? = nil, recursive: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getQueryFiltersWithRequestBuilder(userId: userId, parentId: parentId, includeItemTypes: includeItemTypes, isAiring: isAiring, isMovie: isMovie, isSports: isSports, isKids: isKids, isNews: isNews, isSeries: isSeries, recursive: recursive).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets query filters. - - GET /Items/Filters2 - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) Optional. User id. (optional) - - parameter parentId: (query) Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter isAiring: (query) Optional. Is item airing. (optional) - - parameter isMovie: (query) Optional. Is item movie. (optional) - - parameter isSports: (query) Optional. Is item sports. (optional) - - parameter isKids: (query) Optional. Is item kids. (optional) - - parameter isNews: (query) Optional. Is item news. (optional) - - parameter isSeries: (query) Optional. Is item series. (optional) - - parameter recursive: (query) Optional. Search recursive. (optional) - - returns: RequestBuilder - */ - open class func getQueryFiltersWithRequestBuilder(userId: String? = nil, parentId: String? = nil, includeItemTypes: [BaseItemKind]? = nil, isAiring: Bool? = nil, isMovie: Bool? = nil, isSports: Bool? = nil, isKids: Bool? = nil, isNews: Bool? = nil, isSeries: Bool? = nil, recursive: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Items/Filters2" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "isAiring": isAiring?.encodeToJSON(), - "isMovie": isMovie?.encodeToJSON(), - "isSports": isSports?.encodeToJSON(), - "isKids": isKids?.encodeToJSON(), - "isNews": isNews?.encodeToJSON(), - "isSeries": isSeries?.encodeToJSON(), - "recursive": recursive?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets legacy query filters. - - - parameter userId: (query) Optional. User id. (optional) - - parameter parentId: (query) Optional. Parent id. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter mediaTypes: (query) Optional. Filter by MediaType. Allows multiple, comma delimited. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getQueryFiltersLegacy(userId: String? = nil, parentId: String? = nil, includeItemTypes: [BaseItemKind]? = nil, mediaTypes: [String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getQueryFiltersLegacyWithRequestBuilder(userId: userId, parentId: parentId, includeItemTypes: includeItemTypes, mediaTypes: mediaTypes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets legacy query filters. - - GET /Items/Filters - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) Optional. User id. (optional) - - parameter parentId: (query) Optional. Parent id. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter mediaTypes: (query) Optional. Filter by MediaType. Allows multiple, comma delimited. (optional) - - returns: RequestBuilder - */ - open class func getQueryFiltersLegacyWithRequestBuilder(userId: String? = nil, parentId: String? = nil, includeItemTypes: [BaseItemKind]? = nil, mediaTypes: [String]? = nil) -> RequestBuilder { - let localVariablePath = "/Items/Filters" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "mediaTypes": mediaTypes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/GenresAPI.swift b/Sources/JellyfinAPI/APIs/GenresAPI.swift deleted file mode 100644 index f40d2ee5a..000000000 --- a/Sources/JellyfinAPI/APIs/GenresAPI.swift +++ /dev/null @@ -1,187 +0,0 @@ -// -// GenresAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class GenresAPI { - - /** - Gets a genre, by name. - - - parameter genreName: (path) The genre name. - - parameter userId: (query) The user id. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getGenre(genreName: String, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getGenreWithRequestBuilder(genreName: genreName, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a genre, by name. - - GET /Genres/{genreName} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter genreName: (path) The genre name. - - parameter userId: (query) The user id. (optional) - - returns: RequestBuilder - */ - open class func getGenreWithRequestBuilder(genreName: String, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/Genres/{genreName}" - let genreNamePreEscape = "\(APIHelper.mapValueToPathItem(genreName))" - let genreNamePostEscape = genreNamePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{genreName}", with: genreNamePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets all genres from a given item, folder, or the entire library. - - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) The search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter userId: (query) User id. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - parameter enableTotalRecordCount: (query) Optional. Include total record count. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getGenres(startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, isFavorite: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getGenresWithRequestBuilder(startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, isFavorite: isFavorite, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, userId: userId, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, sortBy: sortBy, sortOrder: sortOrder, enableImages: enableImages, enableTotalRecordCount: enableTotalRecordCount).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all genres from a given item, folder, or the entire library. - - GET /Genres - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) The search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter userId: (query) User id. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - parameter enableTotalRecordCount: (query) Optional. Include total record count. (optional, default to true) - - returns: RequestBuilder - */ - open class func getGenresWithRequestBuilder(startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, isFavorite: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Genres" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "searchTerm": searchTerm?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "nameStartsWithOrGreater": nameStartsWithOrGreater?.encodeToJSON(), - "nameStartsWith": nameStartsWith?.encodeToJSON(), - "nameLessThan": nameLessThan?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/HlsSegmentAPI.swift b/Sources/JellyfinAPI/APIs/HlsSegmentAPI.swift deleted file mode 100644 index 9811c6fc2..000000000 --- a/Sources/JellyfinAPI/APIs/HlsSegmentAPI.swift +++ /dev/null @@ -1,326 +0,0 @@ -// -// HlsSegmentAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class HlsSegmentAPI { - - /** - Gets the specified audio segment for an audio item. - - - parameter itemId: (path) The item id. - - parameter segmentId: (path) The segment id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getHlsAudioSegmentLegacyAac(itemId: String, segmentId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getHlsAudioSegmentLegacyAacWithRequestBuilder(itemId: itemId, segmentId: segmentId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the specified audio segment for an audio item. - - GET /Audio/{itemId}/hls/{segmentId}/stream.aac - - parameter itemId: (path) The item id. - - parameter segmentId: (path) The segment id. - - returns: RequestBuilder - */ - open class func getHlsAudioSegmentLegacyAacWithRequestBuilder(itemId: String, segmentId: String) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/hls/{segmentId}/stream.aac" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let segmentIdPreEscape = "\(APIHelper.mapValueToPathItem(segmentId))" - let segmentIdPostEscape = segmentIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{segmentId}", with: segmentIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the specified audio segment for an audio item. - - - parameter itemId: (path) The item id. - - parameter segmentId: (path) The segment id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getHlsAudioSegmentLegacyMp3(itemId: String, segmentId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getHlsAudioSegmentLegacyMp3WithRequestBuilder(itemId: itemId, segmentId: segmentId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the specified audio segment for an audio item. - - GET /Audio/{itemId}/hls/{segmentId}/stream.mp3 - - parameter itemId: (path) The item id. - - parameter segmentId: (path) The segment id. - - returns: RequestBuilder - */ - open class func getHlsAudioSegmentLegacyMp3WithRequestBuilder(itemId: String, segmentId: String) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/hls/{segmentId}/stream.mp3" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let segmentIdPreEscape = "\(APIHelper.mapValueToPathItem(segmentId))" - let segmentIdPostEscape = segmentIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{segmentId}", with: segmentIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a hls video playlist. - - - parameter itemId: (path) The video id. - - parameter playlistId: (path) The playlist id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getHlsPlaylistLegacy(itemId: String, playlistId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getHlsPlaylistLegacyWithRequestBuilder(itemId: itemId, playlistId: playlistId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a hls video playlist. - - GET /Videos/{itemId}/hls/{playlistId}/stream.m3u8 - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The video id. - - parameter playlistId: (path) The playlist id. - - returns: RequestBuilder - */ - open class func getHlsPlaylistLegacyWithRequestBuilder(itemId: String, playlistId: String) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/hls/{playlistId}/stream.m3u8" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let playlistIdPreEscape = "\(APIHelper.mapValueToPathItem(playlistId))" - let playlistIdPostEscape = playlistIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{playlistId}", with: playlistIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a hls video segment. - - - parameter itemId: (path) The item id. - - parameter playlistId: (path) The playlist id. - - parameter segmentId: (path) The segment id. - - parameter segmentContainer: (path) The segment container. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getHlsVideoSegmentLegacy(itemId: String, playlistId: String, segmentId: String, segmentContainer: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getHlsVideoSegmentLegacyWithRequestBuilder(itemId: itemId, playlistId: playlistId, segmentId: segmentId, segmentContainer: segmentContainer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a hls video segment. - - GET /Videos/{itemId}/hls/{playlistId}/{segmentId}.{segmentContainer} - - parameter itemId: (path) The item id. - - parameter playlistId: (path) The playlist id. - - parameter segmentId: (path) The segment id. - - parameter segmentContainer: (path) The segment container. - - returns: RequestBuilder - */ - open class func getHlsVideoSegmentLegacyWithRequestBuilder(itemId: String, playlistId: String, segmentId: String, segmentContainer: String) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/hls/{playlistId}/{segmentId}.{segmentContainer}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let playlistIdPreEscape = "\(APIHelper.mapValueToPathItem(playlistId))" - let playlistIdPostEscape = playlistIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{playlistId}", with: playlistIdPostEscape, options: .literal, range: nil) - let segmentIdPreEscape = "\(APIHelper.mapValueToPathItem(segmentId))" - let segmentIdPostEscape = segmentIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{segmentId}", with: segmentIdPostEscape, options: .literal, range: nil) - let segmentContainerPreEscape = "\(APIHelper.mapValueToPathItem(segmentContainer))" - let segmentContainerPostEscape = segmentContainerPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{segmentContainer}", with: segmentContainerPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Stops an active encoding. - - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. - - parameter playSessionId: (query) The play session id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func stopEncodingProcess(deviceId: String, playSessionId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = stopEncodingProcessWithRequestBuilder(deviceId: deviceId, playSessionId: playSessionId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Stops an active encoding. - - DELETE /Videos/ActiveEncodings - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. - - parameter playSessionId: (query) The play session id. - - returns: RequestBuilder - */ - open class func stopEncodingProcessWithRequestBuilder(deviceId: String, playSessionId: String) -> RequestBuilder { - let localVariablePath = "/Videos/ActiveEncodings" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "deviceId": deviceId.encodeToJSON(), - "playSessionId": playSessionId.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ImageAPI.swift b/Sources/JellyfinAPI/APIs/ImageAPI.swift deleted file mode 100644 index eb77c3ce1..000000000 --- a/Sources/JellyfinAPI/APIs/ImageAPI.swift +++ /dev/null @@ -1,4018 +0,0 @@ -// -// ImageAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ImageAPI { - - /** - Delete an item's image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (query) The image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteItemImage(itemId: String, imageType: ImageType, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteItemImageWithRequestBuilder(itemId: itemId, imageType: imageType, imageIndex: imageIndex).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Delete an item's image. - - DELETE /Items/{itemId}/Images/{imageType} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (query) The image index. (optional) - - returns: RequestBuilder - */ - open class func deleteItemImageWithRequestBuilder(itemId: String, imageType: ImageType, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Delete an item's image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) The image index. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteItemImageByIndex(itemId: String, imageType: ImageType, imageIndex: Int) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteItemImageByIndexWithRequestBuilder(itemId: itemId, imageType: imageType, imageIndex: imageIndex).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Delete an item's image. - - DELETE /Items/{itemId}/Images/{imageType}/{imageIndex} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) The image index. - - returns: RequestBuilder - */ - open class func deleteItemImageByIndexWithRequestBuilder(itemId: String, imageType: ImageType, imageIndex: Int) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}/{imageIndex}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Delete the user's image. - - - parameter userId: (path) User Id. - - parameter imageType: (path) (Unused) Image type. - - parameter index: (query) (Unused) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteUserImage(userId: String, imageType: ImageType, index: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteUserImageWithRequestBuilder(userId: userId, imageType: imageType, index: index).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Delete the user's image. - - DELETE /Users/{userId}/Images/{imageType} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User Id. - - parameter imageType: (path) (Unused) Image type. - - parameter index: (query) (Unused) Image index. (optional) - - returns: RequestBuilder - */ - open class func deleteUserImageWithRequestBuilder(userId: String, imageType: ImageType, index: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Images/{imageType}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "index": index?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Delete the user's image. - - - parameter userId: (path) User Id. - - parameter imageType: (path) (Unused) Image type. - - parameter index: (path) (Unused) Image index. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteUserImageByIndex(userId: String, imageType: ImageType, index: Int) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteUserImageByIndexWithRequestBuilder(userId: userId, imageType: imageType, index: index).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Delete the user's image. - - DELETE /Users/{userId}/Images/{imageType}/{index} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User Id. - - parameter imageType: (path) (Unused) Image type. - - parameter index: (path) (Unused) Image index. - - returns: RequestBuilder - */ - open class func deleteUserImageByIndexWithRequestBuilder(userId: String, imageType: ImageType, index: Int) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Images/{imageType}/{index}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let indexPreEscape = "\(APIHelper.mapValueToPathItem(index))" - let indexPostEscape = indexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{index}", with: indexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get artist image by name. - - - parameter name: (path) Artist name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getArtistImage(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getArtistImageWithRequestBuilder(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get artist image by name. - - GET /Artists/{name}/Images/{imageType}/{imageIndex} - - parameter name: (path) Artist name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func getArtistImageWithRequestBuilder(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Artists/{name}/Images/{imageType}/{imageIndex}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get genre image by name. - - - parameter name: (path) Genre name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getGenreImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getGenreImageWithRequestBuilder(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get genre image by name. - - GET /Genres/{name}/Images/{imageType} - - parameter name: (path) Genre name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func getGenreImageWithRequestBuilder(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Genres/{name}/Images/{imageType}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get genre image by name. - - - parameter name: (path) Genre name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getGenreImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getGenreImageByIndexWithRequestBuilder(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get genre image by name. - - GET /Genres/{name}/Images/{imageType}/{imageIndex} - - parameter name: (path) Genre name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func getGenreImageByIndexWithRequestBuilder(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Genres/{name}/Images/{imageType}/{imageIndex}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the item's image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter format: (query) Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getItemImage(itemId: String, imageType: ImageType, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getItemImageWithRequestBuilder(itemId: itemId, imageType: imageType, maxWidth: maxWidth, maxHeight: maxHeight, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, tag: tag, cropWhitespace: cropWhitespace, format: format, addPlayedIndicator: addPlayedIndicator, percentPlayed: percentPlayed, unplayedCount: unplayedCount, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the item's image. - - GET /Items/{itemId}/Images/{imageType} - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter format: (query) Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func getItemImageWithRequestBuilder(itemId: String, imageType: ImageType, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "format": format?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the item's image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter maxWidth: (path) The maximum image width to return. - - parameter maxHeight: (path) The maximum image height to return. - - parameter tag: (path) Optional. Supply the cache tag from the item object to receive strong caching headers. - - parameter format: (path) Determines the output format of the image - original,gif,jpg,png. - - parameter percentPlayed: (path) Optional. Percent to render for the percent played overlay. - - parameter unplayedCount: (path) Optional. Unplayed count overlay to render. - - parameter imageIndex: (path) Image index. - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getItemImage2(itemId: String, imageType: ImageType, maxWidth: Int, maxHeight: Int, tag: String, format: ImageFormat, percentPlayed: Double, unplayedCount: Int, imageIndex: Int, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getItemImage2WithRequestBuilder(itemId: itemId, imageType: imageType, maxWidth: maxWidth, maxHeight: maxHeight, tag: tag, format: format, percentPlayed: percentPlayed, unplayedCount: unplayedCount, imageIndex: imageIndex, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the item's image. - - GET /Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount} - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter maxWidth: (path) The maximum image width to return. - - parameter maxHeight: (path) The maximum image height to return. - - parameter tag: (path) Optional. Supply the cache tag from the item object to receive strong caching headers. - - parameter format: (path) Determines the output format of the image - original,gif,jpg,png. - - parameter percentPlayed: (path) Optional. Percent to render for the percent played overlay. - - parameter unplayedCount: (path) Optional. Unplayed count overlay to render. - - parameter imageIndex: (path) Image index. - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func getItemImage2WithRequestBuilder(itemId: String, imageType: ImageType, maxWidth: Int, maxHeight: Int, tag: String, format: ImageFormat, percentPlayed: Double, unplayedCount: Int, imageIndex: Int, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let maxWidthPreEscape = "\(APIHelper.mapValueToPathItem(maxWidth))" - let maxWidthPostEscape = maxWidthPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{maxWidth}", with: maxWidthPostEscape, options: .literal, range: nil) - let maxHeightPreEscape = "\(APIHelper.mapValueToPathItem(maxHeight))" - let maxHeightPostEscape = maxHeightPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{maxHeight}", with: maxHeightPostEscape, options: .literal, range: nil) - let tagPreEscape = "\(APIHelper.mapValueToPathItem(tag))" - let tagPostEscape = tagPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{tag}", with: tagPostEscape, options: .literal, range: nil) - let formatPreEscape = "\(APIHelper.mapValueToPathItem(format))" - let formatPostEscape = formatPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{format}", with: formatPostEscape, options: .literal, range: nil) - let percentPlayedPreEscape = "\(APIHelper.mapValueToPathItem(percentPlayed))" - let percentPlayedPostEscape = percentPlayedPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{percentPlayed}", with: percentPlayedPostEscape, options: .literal, range: nil) - let unplayedCountPreEscape = "\(APIHelper.mapValueToPathItem(unplayedCount))" - let unplayedCountPostEscape = unplayedCountPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{unplayedCount}", with: unplayedCountPostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the item's image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter format: (query) Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getItemImageByIndex(itemId: String, imageType: ImageType, imageIndex: Int, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getItemImageByIndexWithRequestBuilder(itemId: itemId, imageType: imageType, imageIndex: imageIndex, maxWidth: maxWidth, maxHeight: maxHeight, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, tag: tag, cropWhitespace: cropWhitespace, format: format, addPlayedIndicator: addPlayedIndicator, percentPlayed: percentPlayed, unplayedCount: unplayedCount, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the item's image. - - GET /Items/{itemId}/Images/{imageType}/{imageIndex} - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter format: (query) Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func getItemImageByIndexWithRequestBuilder(itemId: String, imageType: ImageType, imageIndex: Int, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}/{imageIndex}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "format": format?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get item image infos. - - - parameter itemId: (path) Item id. - - returns: AnyPublisher<[ImageInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getItemImageInfos(itemId: String) -> AnyPublisher<[ImageInfo], Error> { - var requestTask: RequestTask? - return Future<[ImageInfo], Error> { promise in - requestTask = getItemImageInfosWithRequestBuilder(itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get item image infos. - - GET /Items/{itemId}/Images - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item id. - - returns: RequestBuilder<[ImageInfo]> - */ - open class func getItemImageInfosWithRequestBuilder(itemId: String) -> RequestBuilder<[ImageInfo]> { - var localVariablePath = "/Items/{itemId}/Images" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[ImageInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get music genre image by name. - - - parameter name: (path) Music genre name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMusicGenreImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMusicGenreImageWithRequestBuilder(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get music genre image by name. - - GET /MusicGenres/{name}/Images/{imageType} - - parameter name: (path) Music genre name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func getMusicGenreImageWithRequestBuilder(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/MusicGenres/{name}/Images/{imageType}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get music genre image by name. - - - parameter name: (path) Music genre name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMusicGenreImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMusicGenreImageByIndexWithRequestBuilder(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get music genre image by name. - - GET /MusicGenres/{name}/Images/{imageType}/{imageIndex} - - parameter name: (path) Music genre name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func getMusicGenreImageByIndexWithRequestBuilder(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/MusicGenres/{name}/Images/{imageType}/{imageIndex}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get person image by name. - - - parameter name: (path) Person name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPersonImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPersonImageWithRequestBuilder(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get person image by name. - - GET /Persons/{name}/Images/{imageType} - - parameter name: (path) Person name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func getPersonImageWithRequestBuilder(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Persons/{name}/Images/{imageType}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get person image by name. - - - parameter name: (path) Person name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPersonImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPersonImageByIndexWithRequestBuilder(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get person image by name. - - GET /Persons/{name}/Images/{imageType}/{imageIndex} - - parameter name: (path) Person name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func getPersonImageByIndexWithRequestBuilder(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Persons/{name}/Images/{imageType}/{imageIndex}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Generates or gets the splashscreen. - - - parameter tag: (query) Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter blur: (query) Blur image. (optional) - - parameter backgroundColor: (query) Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Apply a foreground layer on top of the image. (optional) - - parameter quality: (query) Quality setting, from 0-100. (optional, default to 90) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSplashscreen(tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, quality: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSplashscreenWithRequestBuilder(tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, width: width, height: height, fillWidth: fillWidth, fillHeight: fillHeight, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, quality: quality).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Generates or gets the splashscreen. - - GET /Branding/Splashscreen - - parameter tag: (query) Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter blur: (query) Blur image. (optional) - - parameter backgroundColor: (query) Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Apply a foreground layer on top of the image. (optional) - - parameter quality: (query) Quality setting, from 0-100. (optional, default to 90) - - returns: RequestBuilder - */ - open class func getSplashscreenWithRequestBuilder(tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, quality: Int? = nil) -> RequestBuilder { - let localVariablePath = "/Branding/Splashscreen" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get studio image by name. - - - parameter name: (path) Studio name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getStudioImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getStudioImageWithRequestBuilder(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get studio image by name. - - GET /Studios/{name}/Images/{imageType} - - parameter name: (path) Studio name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func getStudioImageWithRequestBuilder(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Studios/{name}/Images/{imageType}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get studio image by name. - - - parameter name: (path) Studio name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getStudioImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getStudioImageByIndexWithRequestBuilder(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get studio image by name. - - GET /Studios/{name}/Images/{imageType}/{imageIndex} - - parameter name: (path) Studio name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func getStudioImageByIndexWithRequestBuilder(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Studios/{name}/Images/{imageType}/{imageIndex}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get user profile image. - - - parameter userId: (path) User id. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getUserImage(userId: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getUserImageWithRequestBuilder(userId: userId, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get user profile image. - - GET /Users/{userId}/Images/{imageType} - - parameter userId: (path) User id. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func getUserImageWithRequestBuilder(userId: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Images/{imageType}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get user profile image. - - - parameter userId: (path) User id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getUserImageByIndex(userId: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getUserImageByIndexWithRequestBuilder(userId: userId, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get user profile image. - - GET /Users/{userId}/Images/{imageType}/{imageIndex} - - parameter userId: (path) User id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func getUserImageByIndexWithRequestBuilder(userId: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Images/{imageType}/{imageIndex}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get artist image by name. - - - parameter name: (path) Artist name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headArtistImage(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headArtistImageWithRequestBuilder(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get artist image by name. - - HEAD /Artists/{name}/Images/{imageType}/{imageIndex} - - parameter name: (path) Artist name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func headArtistImageWithRequestBuilder(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Artists/{name}/Images/{imageType}/{imageIndex}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get genre image by name. - - - parameter name: (path) Genre name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headGenreImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headGenreImageWithRequestBuilder(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get genre image by name. - - HEAD /Genres/{name}/Images/{imageType} - - parameter name: (path) Genre name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func headGenreImageWithRequestBuilder(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Genres/{name}/Images/{imageType}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get genre image by name. - - - parameter name: (path) Genre name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headGenreImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headGenreImageByIndexWithRequestBuilder(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get genre image by name. - - HEAD /Genres/{name}/Images/{imageType}/{imageIndex} - - parameter name: (path) Genre name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func headGenreImageByIndexWithRequestBuilder(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Genres/{name}/Images/{imageType}/{imageIndex}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the item's image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter format: (query) Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headItemImage(itemId: String, imageType: ImageType, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headItemImageWithRequestBuilder(itemId: itemId, imageType: imageType, maxWidth: maxWidth, maxHeight: maxHeight, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, tag: tag, cropWhitespace: cropWhitespace, format: format, addPlayedIndicator: addPlayedIndicator, percentPlayed: percentPlayed, unplayedCount: unplayedCount, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the item's image. - - HEAD /Items/{itemId}/Images/{imageType} - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter format: (query) Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func headItemImageWithRequestBuilder(itemId: String, imageType: ImageType, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "format": format?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the item's image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter maxWidth: (path) The maximum image width to return. - - parameter maxHeight: (path) The maximum image height to return. - - parameter tag: (path) Optional. Supply the cache tag from the item object to receive strong caching headers. - - parameter format: (path) Determines the output format of the image - original,gif,jpg,png. - - parameter percentPlayed: (path) Optional. Percent to render for the percent played overlay. - - parameter unplayedCount: (path) Optional. Unplayed count overlay to render. - - parameter imageIndex: (path) Image index. - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headItemImage2(itemId: String, imageType: ImageType, maxWidth: Int, maxHeight: Int, tag: String, format: ImageFormat, percentPlayed: Double, unplayedCount: Int, imageIndex: Int, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headItemImage2WithRequestBuilder(itemId: itemId, imageType: imageType, maxWidth: maxWidth, maxHeight: maxHeight, tag: tag, format: format, percentPlayed: percentPlayed, unplayedCount: unplayedCount, imageIndex: imageIndex, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the item's image. - - HEAD /Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount} - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter maxWidth: (path) The maximum image width to return. - - parameter maxHeight: (path) The maximum image height to return. - - parameter tag: (path) Optional. Supply the cache tag from the item object to receive strong caching headers. - - parameter format: (path) Determines the output format of the image - original,gif,jpg,png. - - parameter percentPlayed: (path) Optional. Percent to render for the percent played overlay. - - parameter unplayedCount: (path) Optional. Unplayed count overlay to render. - - parameter imageIndex: (path) Image index. - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func headItemImage2WithRequestBuilder(itemId: String, imageType: ImageType, maxWidth: Int, maxHeight: Int, tag: String, format: ImageFormat, percentPlayed: Double, unplayedCount: Int, imageIndex: Int, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let maxWidthPreEscape = "\(APIHelper.mapValueToPathItem(maxWidth))" - let maxWidthPostEscape = maxWidthPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{maxWidth}", with: maxWidthPostEscape, options: .literal, range: nil) - let maxHeightPreEscape = "\(APIHelper.mapValueToPathItem(maxHeight))" - let maxHeightPostEscape = maxHeightPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{maxHeight}", with: maxHeightPostEscape, options: .literal, range: nil) - let tagPreEscape = "\(APIHelper.mapValueToPathItem(tag))" - let tagPostEscape = tagPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{tag}", with: tagPostEscape, options: .literal, range: nil) - let formatPreEscape = "\(APIHelper.mapValueToPathItem(format))" - let formatPostEscape = formatPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{format}", with: formatPostEscape, options: .literal, range: nil) - let percentPlayedPreEscape = "\(APIHelper.mapValueToPathItem(percentPlayed))" - let percentPlayedPostEscape = percentPlayedPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{percentPlayed}", with: percentPlayedPostEscape, options: .literal, range: nil) - let unplayedCountPreEscape = "\(APIHelper.mapValueToPathItem(unplayedCount))" - let unplayedCountPostEscape = unplayedCountPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{unplayedCount}", with: unplayedCountPostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the item's image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter format: (query) Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headItemImageByIndex(itemId: String, imageType: ImageType, imageIndex: Int, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headItemImageByIndexWithRequestBuilder(itemId: itemId, imageType: imageType, imageIndex: imageIndex, maxWidth: maxWidth, maxHeight: maxHeight, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, tag: tag, cropWhitespace: cropWhitespace, format: format, addPlayedIndicator: addPlayedIndicator, percentPlayed: percentPlayed, unplayedCount: unplayedCount, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the item's image. - - HEAD /Items/{itemId}/Images/{imageType}/{imageIndex} - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter format: (query) Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func headItemImageByIndexWithRequestBuilder(itemId: String, imageType: ImageType, imageIndex: Int, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}/{imageIndex}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "format": format?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get music genre image by name. - - - parameter name: (path) Music genre name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headMusicGenreImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headMusicGenreImageWithRequestBuilder(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get music genre image by name. - - HEAD /MusicGenres/{name}/Images/{imageType} - - parameter name: (path) Music genre name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func headMusicGenreImageWithRequestBuilder(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/MusicGenres/{name}/Images/{imageType}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get music genre image by name. - - - parameter name: (path) Music genre name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headMusicGenreImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headMusicGenreImageByIndexWithRequestBuilder(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get music genre image by name. - - HEAD /MusicGenres/{name}/Images/{imageType}/{imageIndex} - - parameter name: (path) Music genre name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func headMusicGenreImageByIndexWithRequestBuilder(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/MusicGenres/{name}/Images/{imageType}/{imageIndex}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get person image by name. - - - parameter name: (path) Person name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headPersonImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headPersonImageWithRequestBuilder(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get person image by name. - - HEAD /Persons/{name}/Images/{imageType} - - parameter name: (path) Person name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func headPersonImageWithRequestBuilder(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Persons/{name}/Images/{imageType}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get person image by name. - - - parameter name: (path) Person name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headPersonImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headPersonImageByIndexWithRequestBuilder(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get person image by name. - - HEAD /Persons/{name}/Images/{imageType}/{imageIndex} - - parameter name: (path) Person name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func headPersonImageByIndexWithRequestBuilder(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Persons/{name}/Images/{imageType}/{imageIndex}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get studio image by name. - - - parameter name: (path) Studio name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headStudioImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headStudioImageWithRequestBuilder(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get studio image by name. - - HEAD /Studios/{name}/Images/{imageType} - - parameter name: (path) Studio name. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func headStudioImageWithRequestBuilder(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Studios/{name}/Images/{imageType}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get studio image by name. - - - parameter name: (path) Studio name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headStudioImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headStudioImageByIndexWithRequestBuilder(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get studio image by name. - - HEAD /Studios/{name}/Images/{imageType}/{imageIndex} - - parameter name: (path) Studio name. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func headStudioImageByIndexWithRequestBuilder(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Studios/{name}/Images/{imageType}/{imageIndex}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get user profile image. - - - parameter userId: (path) User id. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headUserImage(userId: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headUserImageWithRequestBuilder(userId: userId, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get user profile image. - - HEAD /Users/{userId}/Images/{imageType} - - parameter userId: (path) User id. - - parameter imageType: (path) Image type. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - parameter imageIndex: (query) Image index. (optional) - - returns: RequestBuilder - */ - open class func headUserImageWithRequestBuilder(userId: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Images/{imageType}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - "imageIndex": imageIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get user profile image. - - - parameter userId: (path) User id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headUserImageByIndex(userId: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headUserImageByIndexWithRequestBuilder(userId: userId, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get user profile image. - - HEAD /Users/{userId}/Images/{imageType}/{imageIndex} - - parameter userId: (path) User id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Image index. - - parameter tag: (query) Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) - - parameter format: (query) Determines the output format of the image - original,gif,jpg,png. (optional) - - parameter maxWidth: (query) The maximum image width to return. (optional) - - parameter maxHeight: (query) The maximum image height to return. (optional) - - parameter percentPlayed: (query) Optional. Percent to render for the percent played overlay. (optional) - - parameter unplayedCount: (query) Optional. Unplayed count overlay to render. (optional) - - parameter width: (query) The fixed image width to return. (optional) - - parameter height: (query) The fixed image height to return. (optional) - - parameter quality: (query) Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) - - parameter fillWidth: (query) Width of box to fill. (optional) - - parameter fillHeight: (query) Height of box to fill. (optional) - - parameter cropWhitespace: (query) Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) - - parameter addPlayedIndicator: (query) Optional. Add a played indicator. (optional) - - parameter blur: (query) Optional. Blur image. (optional) - - parameter backgroundColor: (query) Optional. Apply a background color for transparent images. (optional) - - parameter foregroundLayer: (query) Optional. Apply a foreground layer on top of the image. (optional) - - returns: RequestBuilder - */ - open class func headUserImageByIndexWithRequestBuilder(userId: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Images/{imageType}/{imageIndex}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tag": tag?.encodeToJSON(), - "format": format?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "percentPlayed": percentPlayed?.encodeToJSON(), - "unplayedCount": unplayedCount?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "quality": quality?.encodeToJSON(), - "fillWidth": fillWidth?.encodeToJSON(), - "fillHeight": fillHeight?.encodeToJSON(), - "cropWhitespace": cropWhitespace?.encodeToJSON(), - "addPlayedIndicator": addPlayedIndicator?.encodeToJSON(), - "blur": blur?.encodeToJSON(), - "backgroundColor": backgroundColor?.encodeToJSON(), - "foregroundLayer": foregroundLayer?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Sets the user image. - - - parameter userId: (path) User Id. - - parameter imageType: (path) (Unused) Image type. - - parameter index: (query) (Unused) Image index. (optional) - - parameter body: (body) (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func postUserImage(userId: String, imageType: ImageType, index: Int? = nil, body: URL? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = postUserImageWithRequestBuilder(userId: userId, imageType: imageType, index: index, body: body).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Sets the user image. - - POST /Users/{userId}/Images/{imageType} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User Id. - - parameter imageType: (path) (Unused) Image type. - - parameter index: (query) (Unused) Image index. (optional) - - parameter body: (body) (optional) - - returns: RequestBuilder - */ - open class func postUserImageWithRequestBuilder(userId: String, imageType: ImageType, index: Int? = nil, body: URL? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Images/{imageType}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: body) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "index": index?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Sets the user image. - - - parameter userId: (path) User Id. - - parameter imageType: (path) (Unused) Image type. - - parameter index: (path) (Unused) Image index. - - parameter body: (body) (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func postUserImageByIndex(userId: String, imageType: ImageType, index: Int, body: URL? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = postUserImageByIndexWithRequestBuilder(userId: userId, imageType: imageType, index: index, body: body).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Sets the user image. - - POST /Users/{userId}/Images/{imageType}/{index} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User Id. - - parameter imageType: (path) (Unused) Image type. - - parameter index: (path) (Unused) Image index. - - parameter body: (body) (optional) - - returns: RequestBuilder - */ - open class func postUserImageByIndexWithRequestBuilder(userId: String, imageType: ImageType, index: Int, body: URL? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Images/{imageType}/{index}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let indexPreEscape = "\(APIHelper.mapValueToPathItem(index))" - let indexPostEscape = indexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{index}", with: indexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: body) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Set item image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter body: (body) (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func setItemImage(itemId: String, imageType: ImageType, body: URL? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = setItemImageWithRequestBuilder(itemId: itemId, imageType: imageType, body: body).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Set item image. - - POST /Items/{itemId}/Images/{imageType} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter body: (body) (optional) - - returns: RequestBuilder - */ - open class func setItemImageWithRequestBuilder(itemId: String, imageType: ImageType, body: URL? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: body) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Set item image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) (Unused) Image index. - - parameter body: (body) (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func setItemImageByIndex(itemId: String, imageType: ImageType, imageIndex: Int, body: URL? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = setItemImageByIndexWithRequestBuilder(itemId: itemId, imageType: imageType, imageIndex: imageIndex, body: body).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Set item image. - - POST /Items/{itemId}/Images/{imageType}/{imageIndex} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) (Unused) Image index. - - parameter body: (body) (optional) - - returns: RequestBuilder - */ - open class func setItemImageByIndexWithRequestBuilder(itemId: String, imageType: ImageType, imageIndex: Int, body: URL? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}/{imageIndex}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: body) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates the index for an item image. - - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Old image index. - - parameter newIndex: (query) New image index. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateItemImageIndex(itemId: String, imageType: ImageType, imageIndex: Int, newIndex: Int) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateItemImageIndexWithRequestBuilder(itemId: itemId, imageType: imageType, imageIndex: imageIndex, newIndex: newIndex).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates the index for an item image. - - POST /Items/{itemId}/Images/{imageType}/{imageIndex}/Index - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item id. - - parameter imageType: (path) Image type. - - parameter imageIndex: (path) Old image index. - - parameter newIndex: (query) New image index. - - returns: RequestBuilder - */ - open class func updateItemImageIndexWithRequestBuilder(itemId: String, imageType: ImageType, imageIndex: Int, newIndex: Int) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Images/{imageType}/{imageIndex}/Index" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let imageTypePreEscape = "\(APIHelper.mapValueToPathItem(imageType))" - let imageTypePostEscape = imageTypePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageType}", with: imageTypePostEscape, options: .literal, range: nil) - let imageIndexPreEscape = "\(APIHelper.mapValueToPathItem(imageIndex))" - let imageIndexPostEscape = imageIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{imageIndex}", with: imageIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "newIndex": newIndex.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Uploads a custom splashscreen. - - - parameter body: (body) (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func uploadCustomSplashscreen(body: URL? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = uploadCustomSplashscreenWithRequestBuilder(body: body).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Uploads a custom splashscreen. - - POST /Branding/Splashscreen - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter body: (body) (optional) - - returns: RequestBuilder - */ - open class func uploadCustomSplashscreenWithRequestBuilder(body: URL? = nil) -> RequestBuilder { - let localVariablePath = "/Branding/Splashscreen" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: body) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ImageByNameAPI.swift b/Sources/JellyfinAPI/APIs/ImageByNameAPI.swift deleted file mode 100644 index 57d76a7cd..000000000 --- a/Sources/JellyfinAPI/APIs/ImageByNameAPI.swift +++ /dev/null @@ -1,350 +0,0 @@ -// -// ImageByNameAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ImageByNameAPI { - - /** - Get General Image. - - - parameter name: (path) The name of the image. - - parameter type: (path) Image Type (primary, backdrop, logo, etc). - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getGeneralImage(name: String, type: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getGeneralImageWithRequestBuilder(name: name, type: type).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get General Image. - - GET /Images/General/{name}/{type} - - parameter name: (path) The name of the image. - - parameter type: (path) Image Type (primary, backdrop, logo, etc). - - returns: RequestBuilder - */ - open class func getGeneralImageWithRequestBuilder(name: String, type: String) -> RequestBuilder { - var localVariablePath = "/Images/General/{name}/{type}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let typePreEscape = "\(APIHelper.mapValueToPathItem(type))" - let typePostEscape = typePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{type}", with: typePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get all general images. - - - returns: AnyPublisher<[ImageByNameInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getGeneralImages() -> AnyPublisher<[ImageByNameInfo], Error> { - var requestTask: RequestTask? - return Future<[ImageByNameInfo], Error> { promise in - requestTask = getGeneralImagesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get all general images. - - GET /Images/General - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[ImageByNameInfo]> - */ - open class func getGeneralImagesWithRequestBuilder() -> RequestBuilder<[ImageByNameInfo]> { - let localVariablePath = "/Images/General" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[ImageByNameInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get media info image. - - - parameter theme: (path) The theme to get the image from. - - parameter name: (path) The name of the image. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMediaInfoImage(theme: String, name: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMediaInfoImageWithRequestBuilder(theme: theme, name: name).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get media info image. - - GET /Images/MediaInfo/{theme}/{name} - - parameter theme: (path) The theme to get the image from. - - parameter name: (path) The name of the image. - - returns: RequestBuilder - */ - open class func getMediaInfoImageWithRequestBuilder(theme: String, name: String) -> RequestBuilder { - var localVariablePath = "/Images/MediaInfo/{theme}/{name}" - let themePreEscape = "\(APIHelper.mapValueToPathItem(theme))" - let themePostEscape = themePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{theme}", with: themePostEscape, options: .literal, range: nil) - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get all media info images. - - - returns: AnyPublisher<[ImageByNameInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMediaInfoImages() -> AnyPublisher<[ImageByNameInfo], Error> { - var requestTask: RequestTask? - return Future<[ImageByNameInfo], Error> { promise in - requestTask = getMediaInfoImagesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get all media info images. - - GET /Images/MediaInfo - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[ImageByNameInfo]> - */ - open class func getMediaInfoImagesWithRequestBuilder() -> RequestBuilder<[ImageByNameInfo]> { - let localVariablePath = "/Images/MediaInfo" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[ImageByNameInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get rating image. - - - parameter theme: (path) The theme to get the image from. - - parameter name: (path) The name of the image. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRatingImage(theme: String, name: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRatingImageWithRequestBuilder(theme: theme, name: name).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get rating image. - - GET /Images/Ratings/{theme}/{name} - - parameter theme: (path) The theme to get the image from. - - parameter name: (path) The name of the image. - - returns: RequestBuilder - */ - open class func getRatingImageWithRequestBuilder(theme: String, name: String) -> RequestBuilder { - var localVariablePath = "/Images/Ratings/{theme}/{name}" - let themePreEscape = "\(APIHelper.mapValueToPathItem(theme))" - let themePostEscape = themePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{theme}", with: themePostEscape, options: .literal, range: nil) - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get all general images. - - - returns: AnyPublisher<[ImageByNameInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRatingImages() -> AnyPublisher<[ImageByNameInfo], Error> { - var requestTask: RequestTask? - return Future<[ImageByNameInfo], Error> { promise in - requestTask = getRatingImagesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get all general images. - - GET /Images/Ratings - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[ImageByNameInfo]> - */ - open class func getRatingImagesWithRequestBuilder() -> RequestBuilder<[ImageByNameInfo]> { - let localVariablePath = "/Images/Ratings" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[ImageByNameInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/InstantMixAPI.swift b/Sources/JellyfinAPI/APIs/InstantMixAPI.swift deleted file mode 100644 index b4ae82306..000000000 --- a/Sources/JellyfinAPI/APIs/InstantMixAPI.swift +++ /dev/null @@ -1,655 +0,0 @@ -// -// InstantMixAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class InstantMixAPI { - - /** - Creates an instant playlist based on a given album. - - - parameter id: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getInstantMixFromAlbum(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getInstantMixFromAlbumWithRequestBuilder(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates an instant playlist based on a given album. - - GET /Albums/{id}/InstantMix - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: RequestBuilder - */ - open class func getInstantMixFromAlbumWithRequestBuilder(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> RequestBuilder { - var localVariablePath = "/Albums/{id}/InstantMix" - let idPreEscape = "\(APIHelper.mapValueToPathItem(id))" - let idPostEscape = idPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{id}", with: idPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates an instant playlist based on a given artist. - - - parameter id: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getInstantMixFromArtists(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getInstantMixFromArtistsWithRequestBuilder(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates an instant playlist based on a given artist. - - GET /Artists/{id}/InstantMix - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: RequestBuilder - */ - open class func getInstantMixFromArtistsWithRequestBuilder(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> RequestBuilder { - var localVariablePath = "/Artists/{id}/InstantMix" - let idPreEscape = "\(APIHelper.mapValueToPathItem(id))" - let idPostEscape = idPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{id}", with: idPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates an instant playlist based on a given artist. - - - parameter id: (query) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(*, deprecated, message: "This operation is deprecated.") - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getInstantMixFromArtists2(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getInstantMixFromArtists2WithRequestBuilder(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates an instant playlist based on a given artist. - - GET /Artists/InstantMix - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (query) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: RequestBuilder - */ - @available(*, deprecated, message: "This operation is deprecated.") - open class func getInstantMixFromArtists2WithRequestBuilder(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> RequestBuilder { - let localVariablePath = "/Artists/InstantMix" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates an instant playlist based on a given item. - - - parameter id: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getInstantMixFromItem(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getInstantMixFromItemWithRequestBuilder(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates an instant playlist based on a given item. - - GET /Items/{id}/InstantMix - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: RequestBuilder - */ - open class func getInstantMixFromItemWithRequestBuilder(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{id}/InstantMix" - let idPreEscape = "\(APIHelper.mapValueToPathItem(id))" - let idPostEscape = idPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{id}", with: idPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates an instant playlist based on a given genre. - - - parameter id: (query) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getInstantMixFromMusicGenreById(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getInstantMixFromMusicGenreByIdWithRequestBuilder(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates an instant playlist based on a given genre. - - GET /MusicGenres/InstantMix - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (query) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: RequestBuilder - */ - open class func getInstantMixFromMusicGenreByIdWithRequestBuilder(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> RequestBuilder { - let localVariablePath = "/MusicGenres/InstantMix" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates an instant playlist based on a given genre. - - - parameter name: (path) The genre name. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getInstantMixFromMusicGenreByName(name: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getInstantMixFromMusicGenreByNameWithRequestBuilder(name: name, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates an instant playlist based on a given genre. - - GET /MusicGenres/{name}/InstantMix - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (path) The genre name. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: RequestBuilder - */ - open class func getInstantMixFromMusicGenreByNameWithRequestBuilder(name: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> RequestBuilder { - var localVariablePath = "/MusicGenres/{name}/InstantMix" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates an instant playlist based on a given playlist. - - - parameter id: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getInstantMixFromPlaylist(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getInstantMixFromPlaylistWithRequestBuilder(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates an instant playlist based on a given playlist. - - GET /Playlists/{id}/InstantMix - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: RequestBuilder - */ - open class func getInstantMixFromPlaylistWithRequestBuilder(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> RequestBuilder { - var localVariablePath = "/Playlists/{id}/InstantMix" - let idPreEscape = "\(APIHelper.mapValueToPathItem(id))" - let idPostEscape = idPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{id}", with: idPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates an instant playlist based on a given song. - - - parameter id: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getInstantMixFromSong(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getInstantMixFromSongWithRequestBuilder(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates an instant playlist based on a given song. - - GET /Songs/{id}/InstantMix - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: RequestBuilder - */ - open class func getInstantMixFromSongWithRequestBuilder(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> RequestBuilder { - var localVariablePath = "/Songs/{id}/InstantMix" - let idPreEscape = "\(APIHelper.mapValueToPathItem(id))" - let idPostEscape = idPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{id}", with: idPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ItemLookupAPI.swift b/Sources/JellyfinAPI/APIs/ItemLookupAPI.swift deleted file mode 100644 index 41fd4e148..000000000 --- a/Sources/JellyfinAPI/APIs/ItemLookupAPI.swift +++ /dev/null @@ -1,624 +0,0 @@ -// -// ItemLookupAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ItemLookupAPI { - - /** - Applies search criteria to an item and refreshes metadata. - - - parameter itemId: (path) Item id. - - parameter applySearchCriteriaRequest: (body) The remote search result. - - parameter replaceAllImages: (query) Optional. Whether or not to replace all images. Default: True. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func applySearchCriteria(itemId: String, applySearchCriteriaRequest: ApplySearchCriteriaRequest, replaceAllImages: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = applySearchCriteriaWithRequestBuilder(itemId: itemId, applySearchCriteriaRequest: applySearchCriteriaRequest, replaceAllImages: replaceAllImages).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Applies search criteria to an item and refreshes metadata. - - POST /Items/RemoteSearch/Apply/{itemId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item id. - - parameter applySearchCriteriaRequest: (body) The remote search result. - - parameter replaceAllImages: (query) Optional. Whether or not to replace all images. Default: True. (optional, default to true) - - returns: RequestBuilder - */ - open class func applySearchCriteriaWithRequestBuilder(itemId: String, applySearchCriteriaRequest: ApplySearchCriteriaRequest, replaceAllImages: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Items/RemoteSearch/Apply/{itemId}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: applySearchCriteriaRequest) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "replaceAllImages": replaceAllImages?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get book remote search. - - - parameter getBookRemoteSearchResultsRequest: (body) Remote search query. - - returns: AnyPublisher<[RemoteSearchResult], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getBookRemoteSearchResults(getBookRemoteSearchResultsRequest: GetBookRemoteSearchResultsRequest) -> AnyPublisher<[RemoteSearchResult], Error> { - var requestTask: RequestTask? - return Future<[RemoteSearchResult], Error> { promise in - requestTask = getBookRemoteSearchResultsWithRequestBuilder(getBookRemoteSearchResultsRequest: getBookRemoteSearchResultsRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get book remote search. - - POST /Items/RemoteSearch/Book - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter getBookRemoteSearchResultsRequest: (body) Remote search query. - - returns: RequestBuilder<[RemoteSearchResult]> - */ - open class func getBookRemoteSearchResultsWithRequestBuilder(getBookRemoteSearchResultsRequest: GetBookRemoteSearchResultsRequest) -> RequestBuilder<[RemoteSearchResult]> { - let localVariablePath = "/Items/RemoteSearch/Book" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getBookRemoteSearchResultsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RemoteSearchResult]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get box set remote search. - - - parameter getBoxSetRemoteSearchResultsRequest: (body) Remote search query. - - returns: AnyPublisher<[RemoteSearchResult], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getBoxSetRemoteSearchResults(getBoxSetRemoteSearchResultsRequest: GetBoxSetRemoteSearchResultsRequest) -> AnyPublisher<[RemoteSearchResult], Error> { - var requestTask: RequestTask? - return Future<[RemoteSearchResult], Error> { promise in - requestTask = getBoxSetRemoteSearchResultsWithRequestBuilder(getBoxSetRemoteSearchResultsRequest: getBoxSetRemoteSearchResultsRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get box set remote search. - - POST /Items/RemoteSearch/BoxSet - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter getBoxSetRemoteSearchResultsRequest: (body) Remote search query. - - returns: RequestBuilder<[RemoteSearchResult]> - */ - open class func getBoxSetRemoteSearchResultsWithRequestBuilder(getBoxSetRemoteSearchResultsRequest: GetBoxSetRemoteSearchResultsRequest) -> RequestBuilder<[RemoteSearchResult]> { - let localVariablePath = "/Items/RemoteSearch/BoxSet" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getBoxSetRemoteSearchResultsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RemoteSearchResult]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get the item's external id info. - - - parameter itemId: (path) Item id. - - returns: AnyPublisher<[ExternalIdInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getExternalIdInfos(itemId: String) -> AnyPublisher<[ExternalIdInfo], Error> { - var requestTask: RequestTask? - return Future<[ExternalIdInfo], Error> { promise in - requestTask = getExternalIdInfosWithRequestBuilder(itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get the item's external id info. - - GET /Items/{itemId}/ExternalIdInfos - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item id. - - returns: RequestBuilder<[ExternalIdInfo]> - */ - open class func getExternalIdInfosWithRequestBuilder(itemId: String) -> RequestBuilder<[ExternalIdInfo]> { - var localVariablePath = "/Items/{itemId}/ExternalIdInfos" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[ExternalIdInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get movie remote search. - - - parameter getMovieRemoteSearchResultsRequest: (body) Remote search query. - - returns: AnyPublisher<[RemoteSearchResult], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMovieRemoteSearchResults(getMovieRemoteSearchResultsRequest: GetMovieRemoteSearchResultsRequest) -> AnyPublisher<[RemoteSearchResult], Error> { - var requestTask: RequestTask? - return Future<[RemoteSearchResult], Error> { promise in - requestTask = getMovieRemoteSearchResultsWithRequestBuilder(getMovieRemoteSearchResultsRequest: getMovieRemoteSearchResultsRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get movie remote search. - - POST /Items/RemoteSearch/Movie - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter getMovieRemoteSearchResultsRequest: (body) Remote search query. - - returns: RequestBuilder<[RemoteSearchResult]> - */ - open class func getMovieRemoteSearchResultsWithRequestBuilder(getMovieRemoteSearchResultsRequest: GetMovieRemoteSearchResultsRequest) -> RequestBuilder<[RemoteSearchResult]> { - let localVariablePath = "/Items/RemoteSearch/Movie" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getMovieRemoteSearchResultsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RemoteSearchResult]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get music album remote search. - - - parameter getMusicAlbumRemoteSearchResultsRequest: (body) Remote search query. - - returns: AnyPublisher<[RemoteSearchResult], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMusicAlbumRemoteSearchResults(getMusicAlbumRemoteSearchResultsRequest: GetMusicAlbumRemoteSearchResultsRequest) -> AnyPublisher<[RemoteSearchResult], Error> { - var requestTask: RequestTask? - return Future<[RemoteSearchResult], Error> { promise in - requestTask = getMusicAlbumRemoteSearchResultsWithRequestBuilder(getMusicAlbumRemoteSearchResultsRequest: getMusicAlbumRemoteSearchResultsRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get music album remote search. - - POST /Items/RemoteSearch/MusicAlbum - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter getMusicAlbumRemoteSearchResultsRequest: (body) Remote search query. - - returns: RequestBuilder<[RemoteSearchResult]> - */ - open class func getMusicAlbumRemoteSearchResultsWithRequestBuilder(getMusicAlbumRemoteSearchResultsRequest: GetMusicAlbumRemoteSearchResultsRequest) -> RequestBuilder<[RemoteSearchResult]> { - let localVariablePath = "/Items/RemoteSearch/MusicAlbum" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getMusicAlbumRemoteSearchResultsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RemoteSearchResult]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get music artist remote search. - - - parameter getMusicArtistRemoteSearchResultsRequest: (body) Remote search query. - - returns: AnyPublisher<[RemoteSearchResult], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMusicArtistRemoteSearchResults(getMusicArtistRemoteSearchResultsRequest: GetMusicArtistRemoteSearchResultsRequest) -> AnyPublisher<[RemoteSearchResult], Error> { - var requestTask: RequestTask? - return Future<[RemoteSearchResult], Error> { promise in - requestTask = getMusicArtistRemoteSearchResultsWithRequestBuilder(getMusicArtistRemoteSearchResultsRequest: getMusicArtistRemoteSearchResultsRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get music artist remote search. - - POST /Items/RemoteSearch/MusicArtist - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter getMusicArtistRemoteSearchResultsRequest: (body) Remote search query. - - returns: RequestBuilder<[RemoteSearchResult]> - */ - open class func getMusicArtistRemoteSearchResultsWithRequestBuilder(getMusicArtistRemoteSearchResultsRequest: GetMusicArtistRemoteSearchResultsRequest) -> RequestBuilder<[RemoteSearchResult]> { - let localVariablePath = "/Items/RemoteSearch/MusicArtist" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getMusicArtistRemoteSearchResultsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RemoteSearchResult]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get music video remote search. - - - parameter getMusicVideoRemoteSearchResultsRequest: (body) Remote search query. - - returns: AnyPublisher<[RemoteSearchResult], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMusicVideoRemoteSearchResults(getMusicVideoRemoteSearchResultsRequest: GetMusicVideoRemoteSearchResultsRequest) -> AnyPublisher<[RemoteSearchResult], Error> { - var requestTask: RequestTask? - return Future<[RemoteSearchResult], Error> { promise in - requestTask = getMusicVideoRemoteSearchResultsWithRequestBuilder(getMusicVideoRemoteSearchResultsRequest: getMusicVideoRemoteSearchResultsRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get music video remote search. - - POST /Items/RemoteSearch/MusicVideo - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter getMusicVideoRemoteSearchResultsRequest: (body) Remote search query. - - returns: RequestBuilder<[RemoteSearchResult]> - */ - open class func getMusicVideoRemoteSearchResultsWithRequestBuilder(getMusicVideoRemoteSearchResultsRequest: GetMusicVideoRemoteSearchResultsRequest) -> RequestBuilder<[RemoteSearchResult]> { - let localVariablePath = "/Items/RemoteSearch/MusicVideo" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getMusicVideoRemoteSearchResultsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RemoteSearchResult]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get person remote search. - - - parameter getPersonRemoteSearchResultsRequest: (body) Remote search query. - - returns: AnyPublisher<[RemoteSearchResult], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPersonRemoteSearchResults(getPersonRemoteSearchResultsRequest: GetPersonRemoteSearchResultsRequest) -> AnyPublisher<[RemoteSearchResult], Error> { - var requestTask: RequestTask? - return Future<[RemoteSearchResult], Error> { promise in - requestTask = getPersonRemoteSearchResultsWithRequestBuilder(getPersonRemoteSearchResultsRequest: getPersonRemoteSearchResultsRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get person remote search. - - POST /Items/RemoteSearch/Person - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter getPersonRemoteSearchResultsRequest: (body) Remote search query. - - returns: RequestBuilder<[RemoteSearchResult]> - */ - open class func getPersonRemoteSearchResultsWithRequestBuilder(getPersonRemoteSearchResultsRequest: GetPersonRemoteSearchResultsRequest) -> RequestBuilder<[RemoteSearchResult]> { - let localVariablePath = "/Items/RemoteSearch/Person" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getPersonRemoteSearchResultsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RemoteSearchResult]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get series remote search. - - - parameter getSeriesRemoteSearchResultsRequest: (body) Remote search query. - - returns: AnyPublisher<[RemoteSearchResult], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSeriesRemoteSearchResults(getSeriesRemoteSearchResultsRequest: GetSeriesRemoteSearchResultsRequest) -> AnyPublisher<[RemoteSearchResult], Error> { - var requestTask: RequestTask? - return Future<[RemoteSearchResult], Error> { promise in - requestTask = getSeriesRemoteSearchResultsWithRequestBuilder(getSeriesRemoteSearchResultsRequest: getSeriesRemoteSearchResultsRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get series remote search. - - POST /Items/RemoteSearch/Series - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter getSeriesRemoteSearchResultsRequest: (body) Remote search query. - - returns: RequestBuilder<[RemoteSearchResult]> - */ - open class func getSeriesRemoteSearchResultsWithRequestBuilder(getSeriesRemoteSearchResultsRequest: GetSeriesRemoteSearchResultsRequest) -> RequestBuilder<[RemoteSearchResult]> { - let localVariablePath = "/Items/RemoteSearch/Series" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getSeriesRemoteSearchResultsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RemoteSearchResult]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get trailer remote search. - - - parameter getTrailerRemoteSearchResultsRequest: (body) Remote search query. - - returns: AnyPublisher<[RemoteSearchResult], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getTrailerRemoteSearchResults(getTrailerRemoteSearchResultsRequest: GetTrailerRemoteSearchResultsRequest) -> AnyPublisher<[RemoteSearchResult], Error> { - var requestTask: RequestTask? - return Future<[RemoteSearchResult], Error> { promise in - requestTask = getTrailerRemoteSearchResultsWithRequestBuilder(getTrailerRemoteSearchResultsRequest: getTrailerRemoteSearchResultsRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get trailer remote search. - - POST /Items/RemoteSearch/Trailer - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter getTrailerRemoteSearchResultsRequest: (body) Remote search query. - - returns: RequestBuilder<[RemoteSearchResult]> - */ - open class func getTrailerRemoteSearchResultsWithRequestBuilder(getTrailerRemoteSearchResultsRequest: GetTrailerRemoteSearchResultsRequest) -> RequestBuilder<[RemoteSearchResult]> { - let localVariablePath = "/Items/RemoteSearch/Trailer" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getTrailerRemoteSearchResultsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RemoteSearchResult]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ItemRefreshAPI.swift b/Sources/JellyfinAPI/APIs/ItemRefreshAPI.swift deleted file mode 100644 index 3e494a67a..000000000 --- a/Sources/JellyfinAPI/APIs/ItemRefreshAPI.swift +++ /dev/null @@ -1,88 +0,0 @@ -// -// ItemRefreshAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ItemRefreshAPI { - - /** - Refreshes metadata for an item. - - - parameter itemId: (path) Item id. - - parameter metadataRefreshMode: (query) (Optional) Specifies the metadata refresh mode. (optional) - - parameter imageRefreshMode: (query) (Optional) Specifies the image refresh mode. (optional) - - parameter replaceAllMetadata: (query) (Optional) Determines if metadata should be replaced. Only applicable if mode is FullRefresh. (optional, default to false) - - parameter replaceAllImages: (query) (Optional) Determines if images should be replaced. Only applicable if mode is FullRefresh. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func refreshItem(itemId: String, metadataRefreshMode: MetadataRefreshMode? = nil, imageRefreshMode: MetadataRefreshMode? = nil, replaceAllMetadata: Bool? = nil, replaceAllImages: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = refreshItemWithRequestBuilder(itemId: itemId, metadataRefreshMode: metadataRefreshMode, imageRefreshMode: imageRefreshMode, replaceAllMetadata: replaceAllMetadata, replaceAllImages: replaceAllImages).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Refreshes metadata for an item. - - POST /Items/{itemId}/Refresh - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item id. - - parameter metadataRefreshMode: (query) (Optional) Specifies the metadata refresh mode. (optional) - - parameter imageRefreshMode: (query) (Optional) Specifies the image refresh mode. (optional) - - parameter replaceAllMetadata: (query) (Optional) Determines if metadata should be replaced. Only applicable if mode is FullRefresh. (optional, default to false) - - parameter replaceAllImages: (query) (Optional) Determines if images should be replaced. Only applicable if mode is FullRefresh. (optional, default to false) - - returns: RequestBuilder - */ - open class func refreshItemWithRequestBuilder(itemId: String, metadataRefreshMode: MetadataRefreshMode? = nil, imageRefreshMode: MetadataRefreshMode? = nil, replaceAllMetadata: Bool? = nil, replaceAllImages: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Refresh" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "metadataRefreshMode": metadataRefreshMode?.encodeToJSON(), - "imageRefreshMode": imageRefreshMode?.encodeToJSON(), - "replaceAllMetadata": replaceAllMetadata?.encodeToJSON(), - "replaceAllImages": replaceAllImages?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ItemUpdateAPI.swift b/Sources/JellyfinAPI/APIs/ItemUpdateAPI.swift deleted file mode 100644 index d6037bd65..000000000 --- a/Sources/JellyfinAPI/APIs/ItemUpdateAPI.swift +++ /dev/null @@ -1,195 +0,0 @@ -// -// ItemUpdateAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ItemUpdateAPI { - - /** - Gets metadata editor info for an item. - - - parameter itemId: (path) The item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMetadataEditorInfo(itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMetadataEditorInfoWithRequestBuilder(itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets metadata editor info for an item. - - GET /Items/{itemId}/MetadataEditor - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - returns: RequestBuilder - */ - open class func getMetadataEditorInfoWithRequestBuilder(itemId: String) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/MetadataEditor" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates an item. - - - parameter itemId: (path) The item id. - - parameter updateItemRequest: (body) The new item properties. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateItem(itemId: String, updateItemRequest: UpdateItemRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateItemWithRequestBuilder(itemId: itemId, updateItemRequest: updateItemRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates an item. - - POST /Items/{itemId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter updateItemRequest: (body) The new item properties. - - returns: RequestBuilder - */ - open class func updateItemWithRequestBuilder(itemId: String, updateItemRequest: UpdateItemRequest) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateItemRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates an item's content type. - - - parameter itemId: (path) The item id. - - parameter contentType: (query) The content type of the item. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateItemContentType(itemId: String, contentType: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateItemContentTypeWithRequestBuilder(itemId: itemId, contentType: contentType).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates an item's content type. - - POST /Items/{itemId}/ContentType - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter contentType: (query) The content type of the item. (optional) - - returns: RequestBuilder - */ - open class func updateItemContentTypeWithRequestBuilder(itemId: String, contentType: String? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/ContentType" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "contentType": contentType?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ItemsAPI.swift b/Sources/JellyfinAPI/APIs/ItemsAPI.swift deleted file mode 100644 index 523003f92..000000000 --- a/Sources/JellyfinAPI/APIs/ItemsAPI.swift +++ /dev/null @@ -1,738 +0,0 @@ -// -// ItemsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ItemsAPI { - - /** - Gets items based on a query. - - - parameter userId: (query) The user id supplied as query parameter. (optional) - - parameter maxOfficialRating: (query) Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter hasThemeSong: (query) Optional filter by items with theme songs. (optional) - - parameter hasThemeVideo: (query) Optional filter by items with theme videos. (optional) - - parameter hasSubtitles: (query) Optional filter by items with subtitles. (optional) - - parameter hasSpecialFeature: (query) Optional filter by items with special features. (optional) - - parameter hasTrailer: (query) Optional filter by items with trailers. (optional) - - parameter adjacentTo: (query) Optional. Return items that are siblings of a supplied item. (optional) - - parameter parentIndexNumber: (query) Optional filter by parent index number. (optional) - - parameter hasParentalRating: (query) Optional filter by items that have or do not have a parental rating. (optional) - - parameter isHd: (query) Optional filter by items that are HD or not. (optional) - - parameter is4K: (query) Optional filter by items that are 4K or not. (optional) - - parameter locationTypes: (query) Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. (optional) - - parameter excludeLocationTypes: (query) Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. (optional) - - parameter isMissing: (query) Optional filter by items that are missing episodes or not. (optional) - - parameter isUnaired: (query) Optional filter by items that are unaired episodes or not. (optional) - - parameter minCommunityRating: (query) Optional filter by minimum community rating. (optional) - - parameter minCriticRating: (query) Optional filter by minimum critic rating. (optional) - - parameter minPremiereDate: (query) Optional. The minimum premiere date. Format = ISO. (optional) - - parameter minDateLastSaved: (query) Optional. The minimum last saved date. Format = ISO. (optional) - - parameter minDateLastSavedForUser: (query) Optional. The minimum last saved date for the current user. Format = ISO. (optional) - - parameter maxPremiereDate: (query) Optional. The maximum premiere date. Format = ISO. (optional) - - parameter hasOverview: (query) Optional filter by items that have an overview or not. (optional) - - parameter hasImdbId: (query) Optional filter by items that have an imdb id or not. (optional) - - parameter hasTmdbId: (query) Optional filter by items that have a tmdb id or not. (optional) - - parameter hasTvdbId: (query) Optional filter by items that have a tvdb id or not. (optional) - - parameter isMovie: (query) Optional filter for live tv movies. (optional) - - parameter isSeries: (query) Optional filter for live tv series. (optional) - - parameter isNews: (query) Optional filter for live tv news. (optional) - - parameter isKids: (query) Optional filter for live tv kids. (optional) - - parameter isSports: (query) Optional filter for live tv sports. (optional) - - parameter excludeItemIds: (query) Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter recursive: (query) When searching within folders, this determines whether or not the search will be recursive. true/false. (optional) - - parameter searchTerm: (query) Optional. Filter based on a search term. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter mediaTypes: (query) Optional filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter imageTypes: (query) Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - parameter isPlayed: (query) Optional filter by items that are played, or not. (optional) - - parameter genres: (query) Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) - - parameter officialRatings: (query) Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) - - parameter tags: (query) Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) - - parameter years: (query) Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter person: (query) Optional. If specified, results will be filtered to include only those containing the specified person. (optional) - - parameter personIds: (query) Optional. If specified, results will be filtered to include only those containing the specified person id. (optional) - - parameter personTypes: (query) Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) - - parameter studios: (query) Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) - - parameter artists: (query) Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. (optional) - - parameter excludeArtistIds: (query) Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. (optional) - - parameter artistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified artist id. (optional) - - parameter albumArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified album artist id. (optional) - - parameter contributingArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. (optional) - - parameter albums: (query) Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. (optional) - - parameter albumIds: (query) Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. (optional) - - parameter ids: (query) Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. (optional) - - parameter videoTypes: (query) Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. (optional) - - parameter minOfficialRating: (query) Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter isLocked: (query) Optional filter by items that are locked. (optional) - - parameter isPlaceHolder: (query) Optional filter by items that are placeholders. (optional) - - parameter hasOfficialRating: (query) Optional filter by items that have official ratings. (optional) - - parameter collapseBoxSetItems: (query) Whether or not to hide items behind their boxsets. (optional) - - parameter minWidth: (query) Optional. Filter by the minimum width of the item. (optional) - - parameter minHeight: (query) Optional. Filter by the minimum height of the item. (optional) - - parameter maxWidth: (query) Optional. Filter by the maximum width of the item. (optional) - - parameter maxHeight: (query) Optional. Filter by the maximum height of the item. (optional) - - parameter is3D: (query) Optional filter by items that are 3D, or not. (optional) - - parameter seriesStatus: (query) Optional filter by Series Status. Allows multiple, comma delimited. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter studioIds: (query) Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) - - parameter genreIds: (query) Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) - - parameter enableTotalRecordCount: (query) Optional. Enable the total record count. (optional, default to true) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getItems(userId: String? = nil, maxOfficialRating: String? = nil, hasThemeSong: Bool? = nil, hasThemeVideo: Bool? = nil, hasSubtitles: Bool? = nil, hasSpecialFeature: Bool? = nil, hasTrailer: Bool? = nil, adjacentTo: String? = nil, parentIndexNumber: Int? = nil, hasParentalRating: Bool? = nil, isHd: Bool? = nil, is4K: Bool? = nil, locationTypes: [LocationType]? = nil, excludeLocationTypes: [LocationType]? = nil, isMissing: Bool? = nil, isUnaired: Bool? = nil, minCommunityRating: Double? = nil, minCriticRating: Double? = nil, minPremiereDate: Date? = nil, minDateLastSaved: Date? = nil, minDateLastSavedForUser: Date? = nil, maxPremiereDate: Date? = nil, hasOverview: Bool? = nil, hasImdbId: Bool? = nil, hasTmdbId: Bool? = nil, hasTvdbId: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, excludeItemIds: [String]? = nil, startIndex: Int? = nil, limit: Int? = nil, recursive: Bool? = nil, searchTerm: String? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, imageTypes: [ImageType]? = nil, sortBy: [String]? = nil, isPlayed: Bool? = nil, genres: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, artists: [String]? = nil, excludeArtistIds: [String]? = nil, artistIds: [String]? = nil, albumArtistIds: [String]? = nil, contributingArtistIds: [String]? = nil, albums: [String]? = nil, albumIds: [String]? = nil, ids: [String]? = nil, videoTypes: [VideoType]? = nil, minOfficialRating: String? = nil, isLocked: Bool? = nil, isPlaceHolder: Bool? = nil, hasOfficialRating: Bool? = nil, collapseBoxSetItems: Bool? = nil, minWidth: Int? = nil, minHeight: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, is3D: Bool? = nil, seriesStatus: [SeriesStatus]? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, studioIds: [String]? = nil, genreIds: [String]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getItemsWithRequestBuilder(userId: userId, maxOfficialRating: maxOfficialRating, hasThemeSong: hasThemeSong, hasThemeVideo: hasThemeVideo, hasSubtitles: hasSubtitles, hasSpecialFeature: hasSpecialFeature, hasTrailer: hasTrailer, adjacentTo: adjacentTo, parentIndexNumber: parentIndexNumber, hasParentalRating: hasParentalRating, isHd: isHd, is4K: is4K, locationTypes: locationTypes, excludeLocationTypes: excludeLocationTypes, isMissing: isMissing, isUnaired: isUnaired, minCommunityRating: minCommunityRating, minCriticRating: minCriticRating, minPremiereDate: minPremiereDate, minDateLastSaved: minDateLastSaved, minDateLastSavedForUser: minDateLastSavedForUser, maxPremiereDate: maxPremiereDate, hasOverview: hasOverview, hasImdbId: hasImdbId, hasTmdbId: hasTmdbId, hasTvdbId: hasTvdbId, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, excludeItemIds: excludeItemIds, startIndex: startIndex, limit: limit, recursive: recursive, searchTerm: searchTerm, sortOrder: sortOrder, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, filters: filters, isFavorite: isFavorite, mediaTypes: mediaTypes, imageTypes: imageTypes, sortBy: sortBy, isPlayed: isPlayed, genres: genres, officialRatings: officialRatings, tags: tags, years: years, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, person: person, personIds: personIds, personTypes: personTypes, studios: studios, artists: artists, excludeArtistIds: excludeArtistIds, artistIds: artistIds, albumArtistIds: albumArtistIds, contributingArtistIds: contributingArtistIds, albums: albums, albumIds: albumIds, ids: ids, videoTypes: videoTypes, minOfficialRating: minOfficialRating, isLocked: isLocked, isPlaceHolder: isPlaceHolder, hasOfficialRating: hasOfficialRating, collapseBoxSetItems: collapseBoxSetItems, minWidth: minWidth, minHeight: minHeight, maxWidth: maxWidth, maxHeight: maxHeight, is3D: is3D, seriesStatus: seriesStatus, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, studioIds: studioIds, genreIds: genreIds, enableTotalRecordCount: enableTotalRecordCount, enableImages: enableImages).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets items based on a query. - - GET /Items - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) The user id supplied as query parameter. (optional) - - parameter maxOfficialRating: (query) Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter hasThemeSong: (query) Optional filter by items with theme songs. (optional) - - parameter hasThemeVideo: (query) Optional filter by items with theme videos. (optional) - - parameter hasSubtitles: (query) Optional filter by items with subtitles. (optional) - - parameter hasSpecialFeature: (query) Optional filter by items with special features. (optional) - - parameter hasTrailer: (query) Optional filter by items with trailers. (optional) - - parameter adjacentTo: (query) Optional. Return items that are siblings of a supplied item. (optional) - - parameter parentIndexNumber: (query) Optional filter by parent index number. (optional) - - parameter hasParentalRating: (query) Optional filter by items that have or do not have a parental rating. (optional) - - parameter isHd: (query) Optional filter by items that are HD or not. (optional) - - parameter is4K: (query) Optional filter by items that are 4K or not. (optional) - - parameter locationTypes: (query) Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. (optional) - - parameter excludeLocationTypes: (query) Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. (optional) - - parameter isMissing: (query) Optional filter by items that are missing episodes or not. (optional) - - parameter isUnaired: (query) Optional filter by items that are unaired episodes or not. (optional) - - parameter minCommunityRating: (query) Optional filter by minimum community rating. (optional) - - parameter minCriticRating: (query) Optional filter by minimum critic rating. (optional) - - parameter minPremiereDate: (query) Optional. The minimum premiere date. Format = ISO. (optional) - - parameter minDateLastSaved: (query) Optional. The minimum last saved date. Format = ISO. (optional) - - parameter minDateLastSavedForUser: (query) Optional. The minimum last saved date for the current user. Format = ISO. (optional) - - parameter maxPremiereDate: (query) Optional. The maximum premiere date. Format = ISO. (optional) - - parameter hasOverview: (query) Optional filter by items that have an overview or not. (optional) - - parameter hasImdbId: (query) Optional filter by items that have an imdb id or not. (optional) - - parameter hasTmdbId: (query) Optional filter by items that have a tmdb id or not. (optional) - - parameter hasTvdbId: (query) Optional filter by items that have a tvdb id or not. (optional) - - parameter isMovie: (query) Optional filter for live tv movies. (optional) - - parameter isSeries: (query) Optional filter for live tv series. (optional) - - parameter isNews: (query) Optional filter for live tv news. (optional) - - parameter isKids: (query) Optional filter for live tv kids. (optional) - - parameter isSports: (query) Optional filter for live tv sports. (optional) - - parameter excludeItemIds: (query) Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter recursive: (query) When searching within folders, this determines whether or not the search will be recursive. true/false. (optional) - - parameter searchTerm: (query) Optional. Filter based on a search term. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter mediaTypes: (query) Optional filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter imageTypes: (query) Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - parameter isPlayed: (query) Optional filter by items that are played, or not. (optional) - - parameter genres: (query) Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) - - parameter officialRatings: (query) Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) - - parameter tags: (query) Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) - - parameter years: (query) Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter person: (query) Optional. If specified, results will be filtered to include only those containing the specified person. (optional) - - parameter personIds: (query) Optional. If specified, results will be filtered to include only those containing the specified person id. (optional) - - parameter personTypes: (query) Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) - - parameter studios: (query) Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) - - parameter artists: (query) Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. (optional) - - parameter excludeArtistIds: (query) Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. (optional) - - parameter artistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified artist id. (optional) - - parameter albumArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified album artist id. (optional) - - parameter contributingArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. (optional) - - parameter albums: (query) Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. (optional) - - parameter albumIds: (query) Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. (optional) - - parameter ids: (query) Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. (optional) - - parameter videoTypes: (query) Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. (optional) - - parameter minOfficialRating: (query) Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter isLocked: (query) Optional filter by items that are locked. (optional) - - parameter isPlaceHolder: (query) Optional filter by items that are placeholders. (optional) - - parameter hasOfficialRating: (query) Optional filter by items that have official ratings. (optional) - - parameter collapseBoxSetItems: (query) Whether or not to hide items behind their boxsets. (optional) - - parameter minWidth: (query) Optional. Filter by the minimum width of the item. (optional) - - parameter minHeight: (query) Optional. Filter by the minimum height of the item. (optional) - - parameter maxWidth: (query) Optional. Filter by the maximum width of the item. (optional) - - parameter maxHeight: (query) Optional. Filter by the maximum height of the item. (optional) - - parameter is3D: (query) Optional filter by items that are 3D, or not. (optional) - - parameter seriesStatus: (query) Optional filter by Series Status. Allows multiple, comma delimited. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter studioIds: (query) Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) - - parameter genreIds: (query) Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) - - parameter enableTotalRecordCount: (query) Optional. Enable the total record count. (optional, default to true) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - returns: RequestBuilder - */ - open class func getItemsWithRequestBuilder(userId: String? = nil, maxOfficialRating: String? = nil, hasThemeSong: Bool? = nil, hasThemeVideo: Bool? = nil, hasSubtitles: Bool? = nil, hasSpecialFeature: Bool? = nil, hasTrailer: Bool? = nil, adjacentTo: String? = nil, parentIndexNumber: Int? = nil, hasParentalRating: Bool? = nil, isHd: Bool? = nil, is4K: Bool? = nil, locationTypes: [LocationType]? = nil, excludeLocationTypes: [LocationType]? = nil, isMissing: Bool? = nil, isUnaired: Bool? = nil, minCommunityRating: Double? = nil, minCriticRating: Double? = nil, minPremiereDate: Date? = nil, minDateLastSaved: Date? = nil, minDateLastSavedForUser: Date? = nil, maxPremiereDate: Date? = nil, hasOverview: Bool? = nil, hasImdbId: Bool? = nil, hasTmdbId: Bool? = nil, hasTvdbId: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, excludeItemIds: [String]? = nil, startIndex: Int? = nil, limit: Int? = nil, recursive: Bool? = nil, searchTerm: String? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, imageTypes: [ImageType]? = nil, sortBy: [String]? = nil, isPlayed: Bool? = nil, genres: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, artists: [String]? = nil, excludeArtistIds: [String]? = nil, artistIds: [String]? = nil, albumArtistIds: [String]? = nil, contributingArtistIds: [String]? = nil, albums: [String]? = nil, albumIds: [String]? = nil, ids: [String]? = nil, videoTypes: [VideoType]? = nil, minOfficialRating: String? = nil, isLocked: Bool? = nil, isPlaceHolder: Bool? = nil, hasOfficialRating: Bool? = nil, collapseBoxSetItems: Bool? = nil, minWidth: Int? = nil, minHeight: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, is3D: Bool? = nil, seriesStatus: [SeriesStatus]? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, studioIds: [String]? = nil, genreIds: [String]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Items" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "maxOfficialRating": maxOfficialRating?.encodeToJSON(), - "hasThemeSong": hasThemeSong?.encodeToJSON(), - "hasThemeVideo": hasThemeVideo?.encodeToJSON(), - "hasSubtitles": hasSubtitles?.encodeToJSON(), - "hasSpecialFeature": hasSpecialFeature?.encodeToJSON(), - "hasTrailer": hasTrailer?.encodeToJSON(), - "adjacentTo": adjacentTo?.encodeToJSON(), - "parentIndexNumber": parentIndexNumber?.encodeToJSON(), - "hasParentalRating": hasParentalRating?.encodeToJSON(), - "isHd": isHd?.encodeToJSON(), - "is4K": is4K?.encodeToJSON(), - "locationTypes": locationTypes?.encodeToJSON(), - "excludeLocationTypes": excludeLocationTypes?.encodeToJSON(), - "isMissing": isMissing?.encodeToJSON(), - "isUnaired": isUnaired?.encodeToJSON(), - "minCommunityRating": minCommunityRating?.encodeToJSON(), - "minCriticRating": minCriticRating?.encodeToJSON(), - "minPremiereDate": minPremiereDate?.encodeToJSON(), - "minDateLastSaved": minDateLastSaved?.encodeToJSON(), - "minDateLastSavedForUser": minDateLastSavedForUser?.encodeToJSON(), - "maxPremiereDate": maxPremiereDate?.encodeToJSON(), - "hasOverview": hasOverview?.encodeToJSON(), - "hasImdbId": hasImdbId?.encodeToJSON(), - "hasTmdbId": hasTmdbId?.encodeToJSON(), - "hasTvdbId": hasTvdbId?.encodeToJSON(), - "isMovie": isMovie?.encodeToJSON(), - "isSeries": isSeries?.encodeToJSON(), - "isNews": isNews?.encodeToJSON(), - "isKids": isKids?.encodeToJSON(), - "isSports": isSports?.encodeToJSON(), - "excludeItemIds": excludeItemIds?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "recursive": recursive?.encodeToJSON(), - "searchTerm": searchTerm?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "filters": filters?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - "mediaTypes": mediaTypes?.encodeToJSON(), - "imageTypes": imageTypes?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "isPlayed": isPlayed?.encodeToJSON(), - "genres": genres?.encodeToJSON(), - "officialRatings": officialRatings?.encodeToJSON(), - "tags": tags?.encodeToJSON(), - "years": years?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "person": person?.encodeToJSON(), - "personIds": personIds?.encodeToJSON(), - "personTypes": personTypes?.encodeToJSON(), - "studios": studios?.encodeToJSON(), - "artists": artists?.encodeToJSON(), - "excludeArtistIds": excludeArtistIds?.encodeToJSON(), - "artistIds": artistIds?.encodeToJSON(), - "albumArtistIds": albumArtistIds?.encodeToJSON(), - "contributingArtistIds": contributingArtistIds?.encodeToJSON(), - "albums": albums?.encodeToJSON(), - "albumIds": albumIds?.encodeToJSON(), - "ids": ids?.encodeToJSON(), - "videoTypes": videoTypes?.encodeToJSON(), - "minOfficialRating": minOfficialRating?.encodeToJSON(), - "isLocked": isLocked?.encodeToJSON(), - "isPlaceHolder": isPlaceHolder?.encodeToJSON(), - "hasOfficialRating": hasOfficialRating?.encodeToJSON(), - "collapseBoxSetItems": collapseBoxSetItems?.encodeToJSON(), - "minWidth": minWidth?.encodeToJSON(), - "minHeight": minHeight?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "is3D": is3D?.encodeToJSON(), - "seriesStatus": seriesStatus?.encodeToJSON(), - "nameStartsWithOrGreater": nameStartsWithOrGreater?.encodeToJSON(), - "nameStartsWith": nameStartsWith?.encodeToJSON(), - "nameLessThan": nameLessThan?.encodeToJSON(), - "studioIds": studioIds?.encodeToJSON(), - "genreIds": genreIds?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets items based on a query. - - - parameter userId: (path) The user id supplied as query parameter. - - parameter maxOfficialRating: (query) Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter hasThemeSong: (query) Optional filter by items with theme songs. (optional) - - parameter hasThemeVideo: (query) Optional filter by items with theme videos. (optional) - - parameter hasSubtitles: (query) Optional filter by items with subtitles. (optional) - - parameter hasSpecialFeature: (query) Optional filter by items with special features. (optional) - - parameter hasTrailer: (query) Optional filter by items with trailers. (optional) - - parameter adjacentTo: (query) Optional. Return items that are siblings of a supplied item. (optional) - - parameter parentIndexNumber: (query) Optional filter by parent index number. (optional) - - parameter hasParentalRating: (query) Optional filter by items that have or do not have a parental rating. (optional) - - parameter isHd: (query) Optional filter by items that are HD or not. (optional) - - parameter is4K: (query) Optional filter by items that are 4K or not. (optional) - - parameter locationTypes: (query) Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. (optional) - - parameter excludeLocationTypes: (query) Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. (optional) - - parameter isMissing: (query) Optional filter by items that are missing episodes or not. (optional) - - parameter isUnaired: (query) Optional filter by items that are unaired episodes or not. (optional) - - parameter minCommunityRating: (query) Optional filter by minimum community rating. (optional) - - parameter minCriticRating: (query) Optional filter by minimum critic rating. (optional) - - parameter minPremiereDate: (query) Optional. The minimum premiere date. Format = ISO. (optional) - - parameter minDateLastSaved: (query) Optional. The minimum last saved date. Format = ISO. (optional) - - parameter minDateLastSavedForUser: (query) Optional. The minimum last saved date for the current user. Format = ISO. (optional) - - parameter maxPremiereDate: (query) Optional. The maximum premiere date. Format = ISO. (optional) - - parameter hasOverview: (query) Optional filter by items that have an overview or not. (optional) - - parameter hasImdbId: (query) Optional filter by items that have an imdb id or not. (optional) - - parameter hasTmdbId: (query) Optional filter by items that have a tmdb id or not. (optional) - - parameter hasTvdbId: (query) Optional filter by items that have a tvdb id or not. (optional) - - parameter isMovie: (query) Optional filter for live tv movies. (optional) - - parameter isSeries: (query) Optional filter for live tv series. (optional) - - parameter isNews: (query) Optional filter for live tv news. (optional) - - parameter isKids: (query) Optional filter for live tv kids. (optional) - - parameter isSports: (query) Optional filter for live tv sports. (optional) - - parameter excludeItemIds: (query) Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter recursive: (query) When searching within folders, this determines whether or not the search will be recursive. true/false. (optional) - - parameter searchTerm: (query) Optional. Filter based on a search term. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter mediaTypes: (query) Optional filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter imageTypes: (query) Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - parameter isPlayed: (query) Optional filter by items that are played, or not. (optional) - - parameter genres: (query) Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) - - parameter officialRatings: (query) Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) - - parameter tags: (query) Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) - - parameter years: (query) Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter person: (query) Optional. If specified, results will be filtered to include only those containing the specified person. (optional) - - parameter personIds: (query) Optional. If specified, results will be filtered to include only those containing the specified person id. (optional) - - parameter personTypes: (query) Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) - - parameter studios: (query) Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) - - parameter artists: (query) Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. (optional) - - parameter excludeArtistIds: (query) Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. (optional) - - parameter artistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified artist id. (optional) - - parameter albumArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified album artist id. (optional) - - parameter contributingArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. (optional) - - parameter albums: (query) Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. (optional) - - parameter albumIds: (query) Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. (optional) - - parameter ids: (query) Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. (optional) - - parameter videoTypes: (query) Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. (optional) - - parameter minOfficialRating: (query) Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter isLocked: (query) Optional filter by items that are locked. (optional) - - parameter isPlaceHolder: (query) Optional filter by items that are placeholders. (optional) - - parameter hasOfficialRating: (query) Optional filter by items that have official ratings. (optional) - - parameter collapseBoxSetItems: (query) Whether or not to hide items behind their boxsets. (optional) - - parameter minWidth: (query) Optional. Filter by the minimum width of the item. (optional) - - parameter minHeight: (query) Optional. Filter by the minimum height of the item. (optional) - - parameter maxWidth: (query) Optional. Filter by the maximum width of the item. (optional) - - parameter maxHeight: (query) Optional. Filter by the maximum height of the item. (optional) - - parameter is3D: (query) Optional filter by items that are 3D, or not. (optional) - - parameter seriesStatus: (query) Optional filter by Series Status. Allows multiple, comma delimited. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter studioIds: (query) Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) - - parameter genreIds: (query) Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) - - parameter enableTotalRecordCount: (query) Optional. Enable the total record count. (optional, default to true) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getItemsByUserId(userId: String, maxOfficialRating: String? = nil, hasThemeSong: Bool? = nil, hasThemeVideo: Bool? = nil, hasSubtitles: Bool? = nil, hasSpecialFeature: Bool? = nil, hasTrailer: Bool? = nil, adjacentTo: String? = nil, parentIndexNumber: Int? = nil, hasParentalRating: Bool? = nil, isHd: Bool? = nil, is4K: Bool? = nil, locationTypes: [LocationType]? = nil, excludeLocationTypes: [LocationType]? = nil, isMissing: Bool? = nil, isUnaired: Bool? = nil, minCommunityRating: Double? = nil, minCriticRating: Double? = nil, minPremiereDate: Date? = nil, minDateLastSaved: Date? = nil, minDateLastSavedForUser: Date? = nil, maxPremiereDate: Date? = nil, hasOverview: Bool? = nil, hasImdbId: Bool? = nil, hasTmdbId: Bool? = nil, hasTvdbId: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, excludeItemIds: [String]? = nil, startIndex: Int? = nil, limit: Int? = nil, recursive: Bool? = nil, searchTerm: String? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, imageTypes: [ImageType]? = nil, sortBy: [String]? = nil, isPlayed: Bool? = nil, genres: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, artists: [String]? = nil, excludeArtistIds: [String]? = nil, artistIds: [String]? = nil, albumArtistIds: [String]? = nil, contributingArtistIds: [String]? = nil, albums: [String]? = nil, albumIds: [String]? = nil, ids: [String]? = nil, videoTypes: [VideoType]? = nil, minOfficialRating: String? = nil, isLocked: Bool? = nil, isPlaceHolder: Bool? = nil, hasOfficialRating: Bool? = nil, collapseBoxSetItems: Bool? = nil, minWidth: Int? = nil, minHeight: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, is3D: Bool? = nil, seriesStatus: [SeriesStatus]? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, studioIds: [String]? = nil, genreIds: [String]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getItemsByUserIdWithRequestBuilder(userId: userId, maxOfficialRating: maxOfficialRating, hasThemeSong: hasThemeSong, hasThemeVideo: hasThemeVideo, hasSubtitles: hasSubtitles, hasSpecialFeature: hasSpecialFeature, hasTrailer: hasTrailer, adjacentTo: adjacentTo, parentIndexNumber: parentIndexNumber, hasParentalRating: hasParentalRating, isHd: isHd, is4K: is4K, locationTypes: locationTypes, excludeLocationTypes: excludeLocationTypes, isMissing: isMissing, isUnaired: isUnaired, minCommunityRating: minCommunityRating, minCriticRating: minCriticRating, minPremiereDate: minPremiereDate, minDateLastSaved: minDateLastSaved, minDateLastSavedForUser: minDateLastSavedForUser, maxPremiereDate: maxPremiereDate, hasOverview: hasOverview, hasImdbId: hasImdbId, hasTmdbId: hasTmdbId, hasTvdbId: hasTvdbId, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, excludeItemIds: excludeItemIds, startIndex: startIndex, limit: limit, recursive: recursive, searchTerm: searchTerm, sortOrder: sortOrder, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, filters: filters, isFavorite: isFavorite, mediaTypes: mediaTypes, imageTypes: imageTypes, sortBy: sortBy, isPlayed: isPlayed, genres: genres, officialRatings: officialRatings, tags: tags, years: years, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, person: person, personIds: personIds, personTypes: personTypes, studios: studios, artists: artists, excludeArtistIds: excludeArtistIds, artistIds: artistIds, albumArtistIds: albumArtistIds, contributingArtistIds: contributingArtistIds, albums: albums, albumIds: albumIds, ids: ids, videoTypes: videoTypes, minOfficialRating: minOfficialRating, isLocked: isLocked, isPlaceHolder: isPlaceHolder, hasOfficialRating: hasOfficialRating, collapseBoxSetItems: collapseBoxSetItems, minWidth: minWidth, minHeight: minHeight, maxWidth: maxWidth, maxHeight: maxHeight, is3D: is3D, seriesStatus: seriesStatus, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, studioIds: studioIds, genreIds: genreIds, enableTotalRecordCount: enableTotalRecordCount, enableImages: enableImages).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets items based on a query. - - GET /Users/{userId}/Items - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) The user id supplied as query parameter. - - parameter maxOfficialRating: (query) Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter hasThemeSong: (query) Optional filter by items with theme songs. (optional) - - parameter hasThemeVideo: (query) Optional filter by items with theme videos. (optional) - - parameter hasSubtitles: (query) Optional filter by items with subtitles. (optional) - - parameter hasSpecialFeature: (query) Optional filter by items with special features. (optional) - - parameter hasTrailer: (query) Optional filter by items with trailers. (optional) - - parameter adjacentTo: (query) Optional. Return items that are siblings of a supplied item. (optional) - - parameter parentIndexNumber: (query) Optional filter by parent index number. (optional) - - parameter hasParentalRating: (query) Optional filter by items that have or do not have a parental rating. (optional) - - parameter isHd: (query) Optional filter by items that are HD or not. (optional) - - parameter is4K: (query) Optional filter by items that are 4K or not. (optional) - - parameter locationTypes: (query) Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. (optional) - - parameter excludeLocationTypes: (query) Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. (optional) - - parameter isMissing: (query) Optional filter by items that are missing episodes or not. (optional) - - parameter isUnaired: (query) Optional filter by items that are unaired episodes or not. (optional) - - parameter minCommunityRating: (query) Optional filter by minimum community rating. (optional) - - parameter minCriticRating: (query) Optional filter by minimum critic rating. (optional) - - parameter minPremiereDate: (query) Optional. The minimum premiere date. Format = ISO. (optional) - - parameter minDateLastSaved: (query) Optional. The minimum last saved date. Format = ISO. (optional) - - parameter minDateLastSavedForUser: (query) Optional. The minimum last saved date for the current user. Format = ISO. (optional) - - parameter maxPremiereDate: (query) Optional. The maximum premiere date. Format = ISO. (optional) - - parameter hasOverview: (query) Optional filter by items that have an overview or not. (optional) - - parameter hasImdbId: (query) Optional filter by items that have an imdb id or not. (optional) - - parameter hasTmdbId: (query) Optional filter by items that have a tmdb id or not. (optional) - - parameter hasTvdbId: (query) Optional filter by items that have a tvdb id or not. (optional) - - parameter isMovie: (query) Optional filter for live tv movies. (optional) - - parameter isSeries: (query) Optional filter for live tv series. (optional) - - parameter isNews: (query) Optional filter for live tv news. (optional) - - parameter isKids: (query) Optional filter for live tv kids. (optional) - - parameter isSports: (query) Optional filter for live tv sports. (optional) - - parameter excludeItemIds: (query) Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter recursive: (query) When searching within folders, this determines whether or not the search will be recursive. true/false. (optional) - - parameter searchTerm: (query) Optional. Filter based on a search term. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter mediaTypes: (query) Optional filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter imageTypes: (query) Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - parameter isPlayed: (query) Optional filter by items that are played, or not. (optional) - - parameter genres: (query) Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) - - parameter officialRatings: (query) Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) - - parameter tags: (query) Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) - - parameter years: (query) Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter person: (query) Optional. If specified, results will be filtered to include only those containing the specified person. (optional) - - parameter personIds: (query) Optional. If specified, results will be filtered to include only those containing the specified person id. (optional) - - parameter personTypes: (query) Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) - - parameter studios: (query) Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) - - parameter artists: (query) Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. (optional) - - parameter excludeArtistIds: (query) Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. (optional) - - parameter artistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified artist id. (optional) - - parameter albumArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified album artist id. (optional) - - parameter contributingArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. (optional) - - parameter albums: (query) Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. (optional) - - parameter albumIds: (query) Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. (optional) - - parameter ids: (query) Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. (optional) - - parameter videoTypes: (query) Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. (optional) - - parameter minOfficialRating: (query) Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter isLocked: (query) Optional filter by items that are locked. (optional) - - parameter isPlaceHolder: (query) Optional filter by items that are placeholders. (optional) - - parameter hasOfficialRating: (query) Optional filter by items that have official ratings. (optional) - - parameter collapseBoxSetItems: (query) Whether or not to hide items behind their boxsets. (optional) - - parameter minWidth: (query) Optional. Filter by the minimum width of the item. (optional) - - parameter minHeight: (query) Optional. Filter by the minimum height of the item. (optional) - - parameter maxWidth: (query) Optional. Filter by the maximum width of the item. (optional) - - parameter maxHeight: (query) Optional. Filter by the maximum height of the item. (optional) - - parameter is3D: (query) Optional filter by items that are 3D, or not. (optional) - - parameter seriesStatus: (query) Optional filter by Series Status. Allows multiple, comma delimited. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter studioIds: (query) Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) - - parameter genreIds: (query) Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) - - parameter enableTotalRecordCount: (query) Optional. Enable the total record count. (optional, default to true) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - returns: RequestBuilder - */ - open class func getItemsByUserIdWithRequestBuilder(userId: String, maxOfficialRating: String? = nil, hasThemeSong: Bool? = nil, hasThemeVideo: Bool? = nil, hasSubtitles: Bool? = nil, hasSpecialFeature: Bool? = nil, hasTrailer: Bool? = nil, adjacentTo: String? = nil, parentIndexNumber: Int? = nil, hasParentalRating: Bool? = nil, isHd: Bool? = nil, is4K: Bool? = nil, locationTypes: [LocationType]? = nil, excludeLocationTypes: [LocationType]? = nil, isMissing: Bool? = nil, isUnaired: Bool? = nil, minCommunityRating: Double? = nil, minCriticRating: Double? = nil, minPremiereDate: Date? = nil, minDateLastSaved: Date? = nil, minDateLastSavedForUser: Date? = nil, maxPremiereDate: Date? = nil, hasOverview: Bool? = nil, hasImdbId: Bool? = nil, hasTmdbId: Bool? = nil, hasTvdbId: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, excludeItemIds: [String]? = nil, startIndex: Int? = nil, limit: Int? = nil, recursive: Bool? = nil, searchTerm: String? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, imageTypes: [ImageType]? = nil, sortBy: [String]? = nil, isPlayed: Bool? = nil, genres: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, artists: [String]? = nil, excludeArtistIds: [String]? = nil, artistIds: [String]? = nil, albumArtistIds: [String]? = nil, contributingArtistIds: [String]? = nil, albums: [String]? = nil, albumIds: [String]? = nil, ids: [String]? = nil, videoTypes: [VideoType]? = nil, minOfficialRating: String? = nil, isLocked: Bool? = nil, isPlaceHolder: Bool? = nil, hasOfficialRating: Bool? = nil, collapseBoxSetItems: Bool? = nil, minWidth: Int? = nil, minHeight: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, is3D: Bool? = nil, seriesStatus: [SeriesStatus]? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, studioIds: [String]? = nil, genreIds: [String]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Items" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "maxOfficialRating": maxOfficialRating?.encodeToJSON(), - "hasThemeSong": hasThemeSong?.encodeToJSON(), - "hasThemeVideo": hasThemeVideo?.encodeToJSON(), - "hasSubtitles": hasSubtitles?.encodeToJSON(), - "hasSpecialFeature": hasSpecialFeature?.encodeToJSON(), - "hasTrailer": hasTrailer?.encodeToJSON(), - "adjacentTo": adjacentTo?.encodeToJSON(), - "parentIndexNumber": parentIndexNumber?.encodeToJSON(), - "hasParentalRating": hasParentalRating?.encodeToJSON(), - "isHd": isHd?.encodeToJSON(), - "is4K": is4K?.encodeToJSON(), - "locationTypes": locationTypes?.encodeToJSON(), - "excludeLocationTypes": excludeLocationTypes?.encodeToJSON(), - "isMissing": isMissing?.encodeToJSON(), - "isUnaired": isUnaired?.encodeToJSON(), - "minCommunityRating": minCommunityRating?.encodeToJSON(), - "minCriticRating": minCriticRating?.encodeToJSON(), - "minPremiereDate": minPremiereDate?.encodeToJSON(), - "minDateLastSaved": minDateLastSaved?.encodeToJSON(), - "minDateLastSavedForUser": minDateLastSavedForUser?.encodeToJSON(), - "maxPremiereDate": maxPremiereDate?.encodeToJSON(), - "hasOverview": hasOverview?.encodeToJSON(), - "hasImdbId": hasImdbId?.encodeToJSON(), - "hasTmdbId": hasTmdbId?.encodeToJSON(), - "hasTvdbId": hasTvdbId?.encodeToJSON(), - "isMovie": isMovie?.encodeToJSON(), - "isSeries": isSeries?.encodeToJSON(), - "isNews": isNews?.encodeToJSON(), - "isKids": isKids?.encodeToJSON(), - "isSports": isSports?.encodeToJSON(), - "excludeItemIds": excludeItemIds?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "recursive": recursive?.encodeToJSON(), - "searchTerm": searchTerm?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "filters": filters?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - "mediaTypes": mediaTypes?.encodeToJSON(), - "imageTypes": imageTypes?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "isPlayed": isPlayed?.encodeToJSON(), - "genres": genres?.encodeToJSON(), - "officialRatings": officialRatings?.encodeToJSON(), - "tags": tags?.encodeToJSON(), - "years": years?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "person": person?.encodeToJSON(), - "personIds": personIds?.encodeToJSON(), - "personTypes": personTypes?.encodeToJSON(), - "studios": studios?.encodeToJSON(), - "artists": artists?.encodeToJSON(), - "excludeArtistIds": excludeArtistIds?.encodeToJSON(), - "artistIds": artistIds?.encodeToJSON(), - "albumArtistIds": albumArtistIds?.encodeToJSON(), - "contributingArtistIds": contributingArtistIds?.encodeToJSON(), - "albums": albums?.encodeToJSON(), - "albumIds": albumIds?.encodeToJSON(), - "ids": ids?.encodeToJSON(), - "videoTypes": videoTypes?.encodeToJSON(), - "minOfficialRating": minOfficialRating?.encodeToJSON(), - "isLocked": isLocked?.encodeToJSON(), - "isPlaceHolder": isPlaceHolder?.encodeToJSON(), - "hasOfficialRating": hasOfficialRating?.encodeToJSON(), - "collapseBoxSetItems": collapseBoxSetItems?.encodeToJSON(), - "minWidth": minWidth?.encodeToJSON(), - "minHeight": minHeight?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "is3D": is3D?.encodeToJSON(), - "seriesStatus": seriesStatus?.encodeToJSON(), - "nameStartsWithOrGreater": nameStartsWithOrGreater?.encodeToJSON(), - "nameStartsWith": nameStartsWith?.encodeToJSON(), - "nameLessThan": nameLessThan?.encodeToJSON(), - "studioIds": studioIds?.encodeToJSON(), - "genreIds": genreIds?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets items based on a query. - - - parameter userId: (path) The user id. - - parameter startIndex: (query) The start index. (optional) - - parameter limit: (query) The item limit. (optional) - - parameter searchTerm: (query) The search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) - - parameter mediaTypes: (query) Optional. Filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. (optional) - - parameter enableTotalRecordCount: (query) Optional. Enable the total record count. (optional, default to true) - - parameter enableImages: (query) Optional. Include image information in output. (optional, default to true) - - parameter excludeActiveSessions: (query) Optional. Whether to exclude the currently active sessions. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getResumeItems(userId: String, startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, mediaTypes: [String]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil, excludeActiveSessions: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getResumeItemsWithRequestBuilder(userId: userId, startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, mediaTypes: mediaTypes, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, enableTotalRecordCount: enableTotalRecordCount, enableImages: enableImages, excludeActiveSessions: excludeActiveSessions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets items based on a query. - - GET /Users/{userId}/Items/Resume - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) The user id. - - parameter startIndex: (query) The start index. (optional) - - parameter limit: (query) The item limit. (optional) - - parameter searchTerm: (query) The search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) - - parameter mediaTypes: (query) Optional. Filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. (optional) - - parameter enableTotalRecordCount: (query) Optional. Enable the total record count. (optional, default to true) - - parameter enableImages: (query) Optional. Include image information in output. (optional, default to true) - - parameter excludeActiveSessions: (query) Optional. Whether to exclude the currently active sessions. (optional, default to false) - - returns: RequestBuilder - */ - open class func getResumeItemsWithRequestBuilder(userId: String, startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, mediaTypes: [String]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil, excludeActiveSessions: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Items/Resume" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "searchTerm": searchTerm?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "mediaTypes": mediaTypes?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "excludeActiveSessions": excludeActiveSessions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/LibraryAPI.swift b/Sources/JellyfinAPI/APIs/LibraryAPI.swift deleted file mode 100644 index e4dfb7bd3..000000000 --- a/Sources/JellyfinAPI/APIs/LibraryAPI.swift +++ /dev/null @@ -1,1556 +0,0 @@ -// -// LibraryAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class LibraryAPI { - - /** - Deletes an item from the library and filesystem. - - - parameter itemId: (path) The item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteItem(itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteItemWithRequestBuilder(itemId: itemId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Deletes an item from the library and filesystem. - - DELETE /Items/{itemId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - returns: RequestBuilder - */ - open class func deleteItemWithRequestBuilder(itemId: String) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Deletes items from the library and filesystem. - - - parameter ids: (query) The item ids. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteItems(ids: [String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteItemsWithRequestBuilder(ids: ids).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Deletes items from the library and filesystem. - - DELETE /Items - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter ids: (query) The item ids. (optional) - - returns: RequestBuilder - */ - open class func deleteItemsWithRequestBuilder(ids: [String]? = nil) -> RequestBuilder { - let localVariablePath = "/Items" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "ids": ids?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets all parents of an item. - - - parameter itemId: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: AnyPublisher<[BaseItemDto], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getAncestors(itemId: String, userId: String? = nil) -> AnyPublisher<[BaseItemDto], Error> { - var requestTask: RequestTask? - return Future<[BaseItemDto], Error> { promise in - requestTask = getAncestorsWithRequestBuilder(itemId: itemId, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all parents of an item. - - GET /Items/{itemId}/Ancestors - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: RequestBuilder<[BaseItemDto]> - */ - open class func getAncestorsWithRequestBuilder(itemId: String, userId: String? = nil) -> RequestBuilder<[BaseItemDto]> { - var localVariablePath = "/Items/{itemId}/Ancestors" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[BaseItemDto]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets critic review for an item. - - - parameter itemId: (path) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(*, deprecated, message: "This operation is deprecated.") - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getCriticReviews(itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getCriticReviewsWithRequestBuilder(itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets critic review for an item. - - GET /Items/{itemId}/CriticReviews - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) - - returns: RequestBuilder - */ - @available(*, deprecated, message: "This operation is deprecated.") - open class func getCriticReviewsWithRequestBuilder(itemId: String) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/CriticReviews" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Downloads item media. - - - parameter itemId: (path) The item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDownload(itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDownloadWithRequestBuilder(itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Downloads item media. - - GET /Items/{itemId}/Download - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - returns: RequestBuilder - */ - open class func getDownloadWithRequestBuilder(itemId: String) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Download" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get the original file of an item. - - - parameter itemId: (path) The item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getFile(itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getFileWithRequestBuilder(itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get the original file of an item. - - GET /Items/{itemId}/File - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - returns: RequestBuilder - */ - open class func getFileWithRequestBuilder(itemId: String) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/File" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get item counts. - - - parameter userId: (query) Optional. Get counts from a specific user's library. (optional) - - parameter isFavorite: (query) Optional. Get counts of favorite items. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getItemCounts(userId: String? = nil, isFavorite: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getItemCountsWithRequestBuilder(userId: userId, isFavorite: isFavorite).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get item counts. - - GET /Items/Counts - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) Optional. Get counts from a specific user's library. (optional) - - parameter isFavorite: (query) Optional. Get counts of favorite items. (optional) - - returns: RequestBuilder - */ - open class func getItemCountsWithRequestBuilder(userId: String? = nil, isFavorite: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Items/Counts" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the library options info. - - - parameter libraryContentType: (query) Library content type. (optional) - - parameter isNewLibrary: (query) Whether this is a new library. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLibraryOptionsInfo(libraryContentType: String? = nil, isNewLibrary: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getLibraryOptionsInfoWithRequestBuilder(libraryContentType: libraryContentType, isNewLibrary: isNewLibrary).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the library options info. - - GET /Libraries/AvailableOptions - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter libraryContentType: (query) Library content type. (optional) - - parameter isNewLibrary: (query) Whether this is a new library. (optional, default to false) - - returns: RequestBuilder - */ - open class func getLibraryOptionsInfoWithRequestBuilder(libraryContentType: String? = nil, isNewLibrary: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Libraries/AvailableOptions" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "libraryContentType": libraryContentType?.encodeToJSON(), - "isNewLibrary": isNewLibrary?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets all user media folders. - - - parameter isHidden: (query) Optional. Filter by folders that are marked hidden, or not. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMediaFolders(isHidden: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMediaFoldersWithRequestBuilder(isHidden: isHidden).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all user media folders. - - GET /Library/MediaFolders - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter isHidden: (query) Optional. Filter by folders that are marked hidden, or not. (optional) - - returns: RequestBuilder - */ - open class func getMediaFoldersWithRequestBuilder(isHidden: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Library/MediaFolders" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "isHidden": isHidden?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a list of physical paths from virtual folders. - - - returns: AnyPublisher<[String], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPhysicalPaths() -> AnyPublisher<[String], Error> { - var requestTask: RequestTask? - return Future<[String], Error> { promise in - requestTask = getPhysicalPathsWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a list of physical paths from virtual folders. - - GET /Library/PhysicalPaths - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[String]> - */ - open class func getPhysicalPathsWithRequestBuilder() -> RequestBuilder<[String]> { - let localVariablePath = "/Library/PhysicalPaths" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[String]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets similar items. - - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSimilarAlbums(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSimilarAlbumsWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets similar items. - - GET /Albums/{itemId}/Similar - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: RequestBuilder - */ - open class func getSimilarAlbumsWithRequestBuilder(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder { - var localVariablePath = "/Albums/{itemId}/Similar" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "excludeArtistIds": excludeArtistIds?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets similar items. - - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSimilarArtists(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSimilarArtistsWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets similar items. - - GET /Artists/{itemId}/Similar - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: RequestBuilder - */ - open class func getSimilarArtistsWithRequestBuilder(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder { - var localVariablePath = "/Artists/{itemId}/Similar" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "excludeArtistIds": excludeArtistIds?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets similar items. - - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSimilarItems(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSimilarItemsWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets similar items. - - GET /Items/{itemId}/Similar - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: RequestBuilder - */ - open class func getSimilarItemsWithRequestBuilder(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/Similar" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "excludeArtistIds": excludeArtistIds?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets similar items. - - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSimilarMovies(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSimilarMoviesWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets similar items. - - GET /Movies/{itemId}/Similar - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: RequestBuilder - */ - open class func getSimilarMoviesWithRequestBuilder(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder { - var localVariablePath = "/Movies/{itemId}/Similar" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "excludeArtistIds": excludeArtistIds?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets similar items. - - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSimilarShows(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSimilarShowsWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets similar items. - - GET /Shows/{itemId}/Similar - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: RequestBuilder - */ - open class func getSimilarShowsWithRequestBuilder(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder { - var localVariablePath = "/Shows/{itemId}/Similar" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "excludeArtistIds": excludeArtistIds?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets similar items. - - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSimilarTrailers(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSimilarTrailersWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets similar items. - - GET /Trailers/{itemId}/Similar - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter excludeArtistIds: (query) Exclude artist ids. (optional) - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - returns: RequestBuilder - */ - open class func getSimilarTrailersWithRequestBuilder(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder { - var localVariablePath = "/Trailers/{itemId}/Similar" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "excludeArtistIds": excludeArtistIds?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get theme songs and videos for an item. - - - parameter itemId: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getThemeMedia(itemId: String, userId: String? = nil, inheritFromParent: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getThemeMediaWithRequestBuilder(itemId: itemId, userId: userId, inheritFromParent: inheritFromParent).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get theme songs and videos for an item. - - GET /Items/{itemId}/ThemeMedia - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false) - - returns: RequestBuilder - */ - open class func getThemeMediaWithRequestBuilder(itemId: String, userId: String? = nil, inheritFromParent: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/ThemeMedia" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "inheritFromParent": inheritFromParent?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get theme songs for an item. - - - parameter itemId: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getThemeSongs(itemId: String, userId: String? = nil, inheritFromParent: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getThemeSongsWithRequestBuilder(itemId: itemId, userId: userId, inheritFromParent: inheritFromParent).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get theme songs for an item. - - GET /Items/{itemId}/ThemeSongs - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false) - - returns: RequestBuilder - */ - open class func getThemeSongsWithRequestBuilder(itemId: String, userId: String? = nil, inheritFromParent: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/ThemeSongs" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "inheritFromParent": inheritFromParent?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get theme videos for an item. - - - parameter itemId: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getThemeVideos(itemId: String, userId: String? = nil, inheritFromParent: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getThemeVideosWithRequestBuilder(itemId: itemId, userId: userId, inheritFromParent: inheritFromParent).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get theme videos for an item. - - GET /Items/{itemId}/ThemeVideos - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false) - - returns: RequestBuilder - */ - open class func getThemeVideosWithRequestBuilder(itemId: String, userId: String? = nil, inheritFromParent: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/ThemeVideos" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "inheritFromParent": inheritFromParent?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports that new movies have been added by an external source. - - - parameter tmdbId: (query) The tmdbId. (optional) - - parameter imdbId: (query) The imdbId. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func postAddedMovies(tmdbId: String? = nil, imdbId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = postAddedMoviesWithRequestBuilder(tmdbId: tmdbId, imdbId: imdbId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports that new movies have been added by an external source. - - POST /Library/Movies/Added - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter tmdbId: (query) The tmdbId. (optional) - - parameter imdbId: (query) The imdbId. (optional) - - returns: RequestBuilder - */ - open class func postAddedMoviesWithRequestBuilder(tmdbId: String? = nil, imdbId: String? = nil) -> RequestBuilder { - let localVariablePath = "/Library/Movies/Added" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tmdbId": tmdbId?.encodeToJSON(), - "imdbId": imdbId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports that new episodes of a series have been added by an external source. - - - parameter tvdbId: (query) The tvdbId. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func postAddedSeries(tvdbId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = postAddedSeriesWithRequestBuilder(tvdbId: tvdbId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports that new episodes of a series have been added by an external source. - - POST /Library/Series/Added - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter tvdbId: (query) The tvdbId. (optional) - - returns: RequestBuilder - */ - open class func postAddedSeriesWithRequestBuilder(tvdbId: String? = nil) -> RequestBuilder { - let localVariablePath = "/Library/Series/Added" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tvdbId": tvdbId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports that new movies have been added by an external source. - - - parameter postUpdatedMediaRequest: (body) The update paths. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func postUpdatedMedia(postUpdatedMediaRequest: PostUpdatedMediaRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = postUpdatedMediaWithRequestBuilder(postUpdatedMediaRequest: postUpdatedMediaRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports that new movies have been added by an external source. - - POST /Library/Media/Updated - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter postUpdatedMediaRequest: (body) The update paths. - - returns: RequestBuilder - */ - open class func postUpdatedMediaWithRequestBuilder(postUpdatedMediaRequest: PostUpdatedMediaRequest) -> RequestBuilder { - let localVariablePath = "/Library/Media/Updated" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: postUpdatedMediaRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports that new movies have been added by an external source. - - - parameter tmdbId: (query) The tmdbId. (optional) - - parameter imdbId: (query) The imdbId. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func postUpdatedMovies(tmdbId: String? = nil, imdbId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = postUpdatedMoviesWithRequestBuilder(tmdbId: tmdbId, imdbId: imdbId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports that new movies have been added by an external source. - - POST /Library/Movies/Updated - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter tmdbId: (query) The tmdbId. (optional) - - parameter imdbId: (query) The imdbId. (optional) - - returns: RequestBuilder - */ - open class func postUpdatedMoviesWithRequestBuilder(tmdbId: String? = nil, imdbId: String? = nil) -> RequestBuilder { - let localVariablePath = "/Library/Movies/Updated" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tmdbId": tmdbId?.encodeToJSON(), - "imdbId": imdbId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports that new episodes of a series have been added by an external source. - - - parameter tvdbId: (query) The tvdbId. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func postUpdatedSeries(tvdbId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = postUpdatedSeriesWithRequestBuilder(tvdbId: tvdbId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports that new episodes of a series have been added by an external source. - - POST /Library/Series/Updated - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter tvdbId: (query) The tvdbId. (optional) - - returns: RequestBuilder - */ - open class func postUpdatedSeriesWithRequestBuilder(tvdbId: String? = nil) -> RequestBuilder { - let localVariablePath = "/Library/Series/Updated" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "tvdbId": tvdbId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Starts a library scan. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func refreshLibrary() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = refreshLibraryWithRequestBuilder().execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Starts a library scan. - - POST /Library/Refresh - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func refreshLibraryWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Library/Refresh" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/LibraryStructureAPI.swift b/Sources/JellyfinAPI/APIs/LibraryStructureAPI.swift deleted file mode 100644 index a82dd345b..000000000 --- a/Sources/JellyfinAPI/APIs/LibraryStructureAPI.swift +++ /dev/null @@ -1,490 +0,0 @@ -// -// LibraryStructureAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class LibraryStructureAPI { - - /** - Add a media path to a library. - - - parameter addMediaPathRequest: (body) The media path dto. - - parameter refreshLibrary: (query) Whether to refresh the library. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func addMediaPath(addMediaPathRequest: AddMediaPathRequest, refreshLibrary: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = addMediaPathWithRequestBuilder(addMediaPathRequest: addMediaPathRequest, refreshLibrary: refreshLibrary).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Add a media path to a library. - - POST /Library/VirtualFolders/Paths - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter addMediaPathRequest: (body) The media path dto. - - parameter refreshLibrary: (query) Whether to refresh the library. (optional, default to false) - - returns: RequestBuilder - */ - open class func addMediaPathWithRequestBuilder(addMediaPathRequest: AddMediaPathRequest, refreshLibrary: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Library/VirtualFolders/Paths" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: addMediaPathRequest) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "refreshLibrary": refreshLibrary?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Adds a virtual folder. - - - parameter name: (query) The name of the virtual folder. (optional) - - parameter collectionType: (query) The type of the collection. (optional) - - parameter paths: (query) The paths of the virtual folder. (optional) - - parameter refreshLibrary: (query) Whether to refresh the library. (optional, default to false) - - parameter addVirtualFolderRequest: (body) The library options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func addVirtualFolder(name: String? = nil, collectionType: CollectionTypeOptions? = nil, paths: [String]? = nil, refreshLibrary: Bool? = nil, addVirtualFolderRequest: AddVirtualFolderRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = addVirtualFolderWithRequestBuilder(name: name, collectionType: collectionType, paths: paths, refreshLibrary: refreshLibrary, addVirtualFolderRequest: addVirtualFolderRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Adds a virtual folder. - - POST /Library/VirtualFolders - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (query) The name of the virtual folder. (optional) - - parameter collectionType: (query) The type of the collection. (optional) - - parameter paths: (query) The paths of the virtual folder. (optional) - - parameter refreshLibrary: (query) Whether to refresh the library. (optional, default to false) - - parameter addVirtualFolderRequest: (body) The library options. (optional) - - returns: RequestBuilder - */ - open class func addVirtualFolderWithRequestBuilder(name: String? = nil, collectionType: CollectionTypeOptions? = nil, paths: [String]? = nil, refreshLibrary: Bool? = nil, addVirtualFolderRequest: AddVirtualFolderRequest? = nil) -> RequestBuilder { - let localVariablePath = "/Library/VirtualFolders" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: addVirtualFolderRequest) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "name": name?.encodeToJSON(), - "collectionType": collectionType?.encodeToJSON(), - "paths": paths?.encodeToJSON(), - "refreshLibrary": refreshLibrary?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets all virtual folders. - - - returns: AnyPublisher<[VirtualFolderInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getVirtualFolders() -> AnyPublisher<[VirtualFolderInfo], Error> { - var requestTask: RequestTask? - return Future<[VirtualFolderInfo], Error> { promise in - requestTask = getVirtualFoldersWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all virtual folders. - - GET /Library/VirtualFolders - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[VirtualFolderInfo]> - */ - open class func getVirtualFoldersWithRequestBuilder() -> RequestBuilder<[VirtualFolderInfo]> { - let localVariablePath = "/Library/VirtualFolders" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[VirtualFolderInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Remove a media path. - - - parameter name: (query) The name of the library. (optional) - - parameter path: (query) The path to remove. (optional) - - parameter refreshLibrary: (query) Whether to refresh the library. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func removeMediaPath(name: String? = nil, path: String? = nil, refreshLibrary: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = removeMediaPathWithRequestBuilder(name: name, path: path, refreshLibrary: refreshLibrary).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Remove a media path. - - DELETE /Library/VirtualFolders/Paths - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (query) The name of the library. (optional) - - parameter path: (query) The path to remove. (optional) - - parameter refreshLibrary: (query) Whether to refresh the library. (optional, default to false) - - returns: RequestBuilder - */ - open class func removeMediaPathWithRequestBuilder(name: String? = nil, path: String? = nil, refreshLibrary: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Library/VirtualFolders/Paths" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "name": name?.encodeToJSON(), - "path": path?.encodeToJSON(), - "refreshLibrary": refreshLibrary?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Removes a virtual folder. - - - parameter name: (query) The name of the folder. (optional) - - parameter refreshLibrary: (query) Whether to refresh the library. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func removeVirtualFolder(name: String? = nil, refreshLibrary: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = removeVirtualFolderWithRequestBuilder(name: name, refreshLibrary: refreshLibrary).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Removes a virtual folder. - - DELETE /Library/VirtualFolders - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (query) The name of the folder. (optional) - - parameter refreshLibrary: (query) Whether to refresh the library. (optional, default to false) - - returns: RequestBuilder - */ - open class func removeVirtualFolderWithRequestBuilder(name: String? = nil, refreshLibrary: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Library/VirtualFolders" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "name": name?.encodeToJSON(), - "refreshLibrary": refreshLibrary?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Renames a virtual folder. - - - parameter name: (query) The name of the virtual folder. (optional) - - parameter newName: (query) The new name. (optional) - - parameter refreshLibrary: (query) Whether to refresh the library. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func renameVirtualFolder(name: String? = nil, newName: String? = nil, refreshLibrary: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = renameVirtualFolderWithRequestBuilder(name: name, newName: newName, refreshLibrary: refreshLibrary).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Renames a virtual folder. - - POST /Library/VirtualFolders/Name - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (query) The name of the virtual folder. (optional) - - parameter newName: (query) The new name. (optional) - - parameter refreshLibrary: (query) Whether to refresh the library. (optional, default to false) - - returns: RequestBuilder - */ - open class func renameVirtualFolderWithRequestBuilder(name: String? = nil, newName: String? = nil, refreshLibrary: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Library/VirtualFolders/Name" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "name": name?.encodeToJSON(), - "newName": newName?.encodeToJSON(), - "refreshLibrary": refreshLibrary?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Update library options. - - - parameter updateLibraryOptionsRequest: (body) The library name and options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateLibraryOptions(updateLibraryOptionsRequest: UpdateLibraryOptionsRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateLibraryOptionsWithRequestBuilder(updateLibraryOptionsRequest: updateLibraryOptionsRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Update library options. - - POST /Library/VirtualFolders/LibraryOptions - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter updateLibraryOptionsRequest: (body) The library name and options. (optional) - - returns: RequestBuilder - */ - open class func updateLibraryOptionsWithRequestBuilder(updateLibraryOptionsRequest: UpdateLibraryOptionsRequest? = nil) -> RequestBuilder { - let localVariablePath = "/Library/VirtualFolders/LibraryOptions" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateLibraryOptionsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates a media path. - - - parameter updateMediaPathRequest: (body) The name of the library and path infos. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateMediaPath(updateMediaPathRequest: UpdateMediaPathRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateMediaPathWithRequestBuilder(updateMediaPathRequest: updateMediaPathRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates a media path. - - POST /Library/VirtualFolders/Paths/Update - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter updateMediaPathRequest: (body) The name of the library and path infos. - - returns: RequestBuilder - */ - open class func updateMediaPathWithRequestBuilder(updateMediaPathRequest: UpdateMediaPathRequest) -> RequestBuilder { - let localVariablePath = "/Library/VirtualFolders/Paths/Update" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateMediaPathRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/LiveTvAPI.swift b/Sources/JellyfinAPI/APIs/LiveTvAPI.swift deleted file mode 100644 index abf9cbfff..000000000 --- a/Sources/JellyfinAPI/APIs/LiveTvAPI.swift +++ /dev/null @@ -1,2643 +0,0 @@ -// -// LiveTvAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class LiveTvAPI { - - /** - Adds a listings provider. - - - parameter pw: (query) Password. (optional) - - parameter validateListings: (query) Validate listings. (optional, default to false) - - parameter validateLogin: (query) Validate login. (optional, default to false) - - parameter addListingProviderRequest: (body) New listings info. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func addListingProvider(pw: String? = nil, validateListings: Bool? = nil, validateLogin: Bool? = nil, addListingProviderRequest: AddListingProviderRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = addListingProviderWithRequestBuilder(pw: pw, validateListings: validateListings, validateLogin: validateLogin, addListingProviderRequest: addListingProviderRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Adds a listings provider. - - POST /LiveTv/ListingProviders - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter pw: (query) Password. (optional) - - parameter validateListings: (query) Validate listings. (optional, default to false) - - parameter validateLogin: (query) Validate login. (optional, default to false) - - parameter addListingProviderRequest: (body) New listings info. (optional) - - returns: RequestBuilder - */ - open class func addListingProviderWithRequestBuilder(pw: String? = nil, validateListings: Bool? = nil, validateLogin: Bool? = nil, addListingProviderRequest: AddListingProviderRequest? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/ListingProviders" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: addListingProviderRequest) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "pw": pw?.encodeToJSON(), - "validateListings": validateListings?.encodeToJSON(), - "validateLogin": validateLogin?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Adds a tuner host. - - - parameter addTunerHostRequest: (body) New tuner host. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func addTunerHost(addTunerHostRequest: AddTunerHostRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = addTunerHostWithRequestBuilder(addTunerHostRequest: addTunerHostRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Adds a tuner host. - - POST /LiveTv/TunerHosts - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter addTunerHostRequest: (body) New tuner host. (optional) - - returns: RequestBuilder - */ - open class func addTunerHostWithRequestBuilder(addTunerHostRequest: AddTunerHostRequest? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/TunerHosts" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: addTunerHostRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Cancels a live tv series timer. - - - parameter timerId: (path) Timer id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func cancelSeriesTimer(timerId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = cancelSeriesTimerWithRequestBuilder(timerId: timerId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Cancels a live tv series timer. - - DELETE /LiveTv/SeriesTimers/{timerId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter timerId: (path) Timer id. - - returns: RequestBuilder - */ - open class func cancelSeriesTimerWithRequestBuilder(timerId: String) -> RequestBuilder { - var localVariablePath = "/LiveTv/SeriesTimers/{timerId}" - let timerIdPreEscape = "\(APIHelper.mapValueToPathItem(timerId))" - let timerIdPostEscape = timerIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{timerId}", with: timerIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Cancels a live tv timer. - - - parameter timerId: (path) Timer id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func cancelTimer(timerId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = cancelTimerWithRequestBuilder(timerId: timerId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Cancels a live tv timer. - - DELETE /LiveTv/Timers/{timerId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter timerId: (path) Timer id. - - returns: RequestBuilder - */ - open class func cancelTimerWithRequestBuilder(timerId: String) -> RequestBuilder { - var localVariablePath = "/LiveTv/Timers/{timerId}" - let timerIdPreEscape = "\(APIHelper.mapValueToPathItem(timerId))" - let timerIdPostEscape = timerIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{timerId}", with: timerIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates a live tv series timer. - - - parameter createSeriesTimerRequest: (body) New series timer info. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func createSeriesTimer(createSeriesTimerRequest: CreateSeriesTimerRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = createSeriesTimerWithRequestBuilder(createSeriesTimerRequest: createSeriesTimerRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates a live tv series timer. - - POST /LiveTv/SeriesTimers - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter createSeriesTimerRequest: (body) New series timer info. (optional) - - returns: RequestBuilder - */ - open class func createSeriesTimerWithRequestBuilder(createSeriesTimerRequest: CreateSeriesTimerRequest? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/SeriesTimers" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: createSeriesTimerRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates a live tv timer. - - - parameter createTimerRequest: (body) New timer info. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func createTimer(createTimerRequest: CreateTimerRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = createTimerWithRequestBuilder(createTimerRequest: createTimerRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates a live tv timer. - - POST /LiveTv/Timers - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter createTimerRequest: (body) New timer info. (optional) - - returns: RequestBuilder - */ - open class func createTimerWithRequestBuilder(createTimerRequest: CreateTimerRequest? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Timers" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: createTimerRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Delete listing provider. - - - parameter id: (query) Listing provider id. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteListingProvider(id: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteListingProviderWithRequestBuilder(id: id).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Delete listing provider. - - DELETE /LiveTv/ListingProviders - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (query) Listing provider id. (optional) - - returns: RequestBuilder - */ - open class func deleteListingProviderWithRequestBuilder(id: String? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/ListingProviders" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Deletes a live tv recording. - - - parameter recordingId: (path) Recording id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteRecording(recordingId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteRecordingWithRequestBuilder(recordingId: recordingId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Deletes a live tv recording. - - DELETE /LiveTv/Recordings/{recordingId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter recordingId: (path) Recording id. - - returns: RequestBuilder - */ - open class func deleteRecordingWithRequestBuilder(recordingId: String) -> RequestBuilder { - var localVariablePath = "/LiveTv/Recordings/{recordingId}" - let recordingIdPreEscape = "\(APIHelper.mapValueToPathItem(recordingId))" - let recordingIdPostEscape = recordingIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{recordingId}", with: recordingIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Deletes a tuner host. - - - parameter id: (query) Tuner host id. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteTunerHost(id: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteTunerHostWithRequestBuilder(id: id).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Deletes a tuner host. - - DELETE /LiveTv/TunerHosts - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (query) Tuner host id. (optional) - - returns: RequestBuilder - */ - open class func deleteTunerHostWithRequestBuilder(id: String? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/TunerHosts" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Discover tuners. - - - parameter newDevicesOnly: (query) Only discover new tuners. (optional, default to false) - - returns: AnyPublisher<[TunerHostInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func discoverTuners(newDevicesOnly: Bool? = nil) -> AnyPublisher<[TunerHostInfo], Error> { - var requestTask: RequestTask? - return Future<[TunerHostInfo], Error> { promise in - requestTask = discoverTunersWithRequestBuilder(newDevicesOnly: newDevicesOnly).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Discover tuners. - - GET /LiveTv/Tuners/Discover - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter newDevicesOnly: (query) Only discover new tuners. (optional, default to false) - - returns: RequestBuilder<[TunerHostInfo]> - */ - open class func discoverTunersWithRequestBuilder(newDevicesOnly: Bool? = nil) -> RequestBuilder<[TunerHostInfo]> { - let localVariablePath = "/LiveTv/Tuners/Discover" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "newDevicesOnly": newDevicesOnly?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[TunerHostInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Discover tuners. - - - parameter newDevicesOnly: (query) Only discover new tuners. (optional, default to false) - - returns: AnyPublisher<[TunerHostInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func discvoverTuners(newDevicesOnly: Bool? = nil) -> AnyPublisher<[TunerHostInfo], Error> { - var requestTask: RequestTask? - return Future<[TunerHostInfo], Error> { promise in - requestTask = discvoverTunersWithRequestBuilder(newDevicesOnly: newDevicesOnly).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Discover tuners. - - GET /LiveTv/Tuners/Discvover - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter newDevicesOnly: (query) Only discover new tuners. (optional, default to false) - - returns: RequestBuilder<[TunerHostInfo]> - */ - open class func discvoverTunersWithRequestBuilder(newDevicesOnly: Bool? = nil) -> RequestBuilder<[TunerHostInfo]> { - let localVariablePath = "/LiveTv/Tuners/Discvover" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "newDevicesOnly": newDevicesOnly?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[TunerHostInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a live tv channel. - - - parameter channelId: (path) Channel id. - - parameter userId: (query) Optional. Attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getChannel(channelId: String, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getChannelWithRequestBuilder(channelId: channelId, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a live tv channel. - - GET /LiveTv/Channels/{channelId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter channelId: (path) Channel id. - - parameter userId: (query) Optional. Attach user data. (optional) - - returns: RequestBuilder - */ - open class func getChannelWithRequestBuilder(channelId: String, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/LiveTv/Channels/{channelId}" - let channelIdPreEscape = "\(APIHelper.mapValueToPathItem(channelId))" - let channelIdPostEscape = channelIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{channelId}", with: channelIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get channel mapping options. - - - parameter providerId: (query) Provider id. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getChannelMappingOptions(providerId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getChannelMappingOptionsWithRequestBuilder(providerId: providerId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get channel mapping options. - - GET /LiveTv/ChannelMappingOptions - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter providerId: (query) Provider id. (optional) - - returns: RequestBuilder - */ - open class func getChannelMappingOptionsWithRequestBuilder(providerId: String? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/ChannelMappingOptions" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "providerId": providerId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets default listings provider info. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDefaultListingProvider() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDefaultListingProviderWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets default listings provider info. - - GET /LiveTv/ListingProviders/Default - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getDefaultListingProviderWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/LiveTv/ListingProviders/Default" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the default values for a new timer. - - - parameter programId: (query) Optional. To attach default values based on a program. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getDefaultTimer(programId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getDefaultTimerWithRequestBuilder(programId: programId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the default values for a new timer. - - GET /LiveTv/Timers/Defaults - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter programId: (query) Optional. To attach default values based on a program. (optional) - - returns: RequestBuilder - */ - open class func getDefaultTimerWithRequestBuilder(programId: String? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Timers/Defaults" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "programId": programId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get guid info. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getGuideInfo() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getGuideInfoWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get guid info. - - GET /LiveTv/GuideInfo - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getGuideInfoWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/LiveTv/GuideInfo" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available lineups. - - - parameter id: (query) Provider id. (optional) - - parameter type: (query) Provider type. (optional) - - parameter location: (query) Location. (optional) - - parameter country: (query) Country. (optional) - - returns: AnyPublisher<[NameIdPair], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLineups(id: String? = nil, type: String? = nil, location: String? = nil, country: String? = nil) -> AnyPublisher<[NameIdPair], Error> { - var requestTask: RequestTask? - return Future<[NameIdPair], Error> { promise in - requestTask = getLineupsWithRequestBuilder(id: id, type: type, location: location, country: country).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available lineups. - - GET /LiveTv/ListingProviders/Lineups - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (query) Provider id. (optional) - - parameter type: (query) Provider type. (optional) - - parameter location: (query) Location. (optional) - - parameter country: (query) Country. (optional) - - returns: RequestBuilder<[NameIdPair]> - */ - open class func getLineupsWithRequestBuilder(id: String? = nil, type: String? = nil, location: String? = nil, country: String? = nil) -> RequestBuilder<[NameIdPair]> { - let localVariablePath = "/LiveTv/ListingProviders/Lineups" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id?.encodeToJSON(), - "type": type?.encodeToJSON(), - "location": location?.encodeToJSON(), - "country": country?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[NameIdPair]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a live tv recording stream. - - - parameter recordingId: (path) Recording id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLiveRecordingFile(recordingId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getLiveRecordingFileWithRequestBuilder(recordingId: recordingId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a live tv recording stream. - - GET /LiveTv/LiveRecordings/{recordingId}/stream - - parameter recordingId: (path) Recording id. - - returns: RequestBuilder - */ - open class func getLiveRecordingFileWithRequestBuilder(recordingId: String) -> RequestBuilder { - var localVariablePath = "/LiveTv/LiveRecordings/{recordingId}/stream" - let recordingIdPreEscape = "\(APIHelper.mapValueToPathItem(recordingId))" - let recordingIdPostEscape = recordingIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{recordingId}", with: recordingIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a live tv channel stream. - - - parameter streamId: (path) Stream id. - - parameter container: (path) Container type. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLiveStreamFile(streamId: String, container: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getLiveStreamFileWithRequestBuilder(streamId: streamId, container: container).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a live tv channel stream. - - GET /LiveTv/LiveStreamFiles/{streamId}/stream.{container} - - parameter streamId: (path) Stream id. - - parameter container: (path) Container type. - - returns: RequestBuilder - */ - open class func getLiveStreamFileWithRequestBuilder(streamId: String, container: String) -> RequestBuilder { - var localVariablePath = "/LiveTv/LiveStreamFiles/{streamId}/stream.{container}" - let streamIdPreEscape = "\(APIHelper.mapValueToPathItem(streamId))" - let streamIdPostEscape = streamIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{streamId}", with: streamIdPostEscape, options: .literal, range: nil) - let containerPreEscape = "\(APIHelper.mapValueToPathItem(container))" - let containerPostEscape = containerPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{container}", with: containerPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available live tv channels. - - - parameter type: (query) Optional. Filter by channel type. (optional) - - parameter userId: (query) Optional. Filter by user and attach user data. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter isMovie: (query) Optional. Filter for movies. (optional) - - parameter isSeries: (query) Optional. Filter for series. (optional) - - parameter isNews: (query) Optional. Filter for news. (optional) - - parameter isKids: (query) Optional. Filter for kids. (optional) - - parameter isSports: (query) Optional. Filter for sports. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter isFavorite: (query) Optional. Filter by channels that are favorites, or not. (optional) - - parameter isLiked: (query) Optional. Filter by channels that are liked, or not. (optional) - - parameter isDisliked: (query) Optional. Filter by channels that are disliked, or not. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) \"Optional. The image types to include in the output. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter sortBy: (query) Optional. Key to sort by. (optional) - - parameter sortOrder: (query) Optional. Sort order. (optional) - - parameter enableFavoriteSorting: (query) Optional. Incorporate favorite and like status into channel sorting. (optional, default to false) - - parameter addCurrentProgram: (query) Optional. Adds current program info to each channel. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLiveTvChannels(type: ChannelType? = nil, userId: String? = nil, startIndex: Int? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, limit: Int? = nil, isFavorite: Bool? = nil, isLiked: Bool? = nil, isDisliked: Bool? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, sortBy: [String]? = nil, sortOrder: SortOrder? = nil, enableFavoriteSorting: Bool? = nil, addCurrentProgram: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getLiveTvChannelsWithRequestBuilder(type: type, userId: userId, startIndex: startIndex, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, limit: limit, isFavorite: isFavorite, isLiked: isLiked, isDisliked: isDisliked, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, fields: fields, enableUserData: enableUserData, sortBy: sortBy, sortOrder: sortOrder, enableFavoriteSorting: enableFavoriteSorting, addCurrentProgram: addCurrentProgram).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available live tv channels. - - GET /LiveTv/Channels - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter type: (query) Optional. Filter by channel type. (optional) - - parameter userId: (query) Optional. Filter by user and attach user data. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter isMovie: (query) Optional. Filter for movies. (optional) - - parameter isSeries: (query) Optional. Filter for series. (optional) - - parameter isNews: (query) Optional. Filter for news. (optional) - - parameter isKids: (query) Optional. Filter for kids. (optional) - - parameter isSports: (query) Optional. Filter for sports. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter isFavorite: (query) Optional. Filter by channels that are favorites, or not. (optional) - - parameter isLiked: (query) Optional. Filter by channels that are liked, or not. (optional) - - parameter isDisliked: (query) Optional. Filter by channels that are disliked, or not. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) \"Optional. The image types to include in the output. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter sortBy: (query) Optional. Key to sort by. (optional) - - parameter sortOrder: (query) Optional. Sort order. (optional) - - parameter enableFavoriteSorting: (query) Optional. Incorporate favorite and like status into channel sorting. (optional, default to false) - - parameter addCurrentProgram: (query) Optional. Adds current program info to each channel. (optional, default to true) - - returns: RequestBuilder - */ - open class func getLiveTvChannelsWithRequestBuilder(type: ChannelType? = nil, userId: String? = nil, startIndex: Int? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, limit: Int? = nil, isFavorite: Bool? = nil, isLiked: Bool? = nil, isDisliked: Bool? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, sortBy: [String]? = nil, sortOrder: SortOrder? = nil, enableFavoriteSorting: Bool? = nil, addCurrentProgram: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Channels" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "type": type?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "isMovie": isMovie?.encodeToJSON(), - "isSeries": isSeries?.encodeToJSON(), - "isNews": isNews?.encodeToJSON(), - "isKids": isKids?.encodeToJSON(), - "isSports": isSports?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - "isLiked": isLiked?.encodeToJSON(), - "isDisliked": isDisliked?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "enableFavoriteSorting": enableFavoriteSorting?.encodeToJSON(), - "addCurrentProgram": addCurrentProgram?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available live tv services. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLiveTvInfo() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getLiveTvInfoWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available live tv services. - - GET /LiveTv/Info - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getLiveTvInfoWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/LiveTv/Info" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available live tv epgs. - - - parameter channelIds: (query) The channels to return guide information for. (optional) - - parameter userId: (query) Optional. Filter by user id. (optional) - - parameter minStartDate: (query) Optional. The minimum premiere start date. (optional) - - parameter hasAired: (query) Optional. Filter by programs that have completed airing, or not. (optional) - - parameter isAiring: (query) Optional. Filter by programs that are currently airing, or not. (optional) - - parameter maxStartDate: (query) Optional. The maximum premiere start date. (optional) - - parameter minEndDate: (query) Optional. The minimum premiere end date. (optional) - - parameter maxEndDate: (query) Optional. The maximum premiere end date. (optional) - - parameter isMovie: (query) Optional. Filter for movies. (optional) - - parameter isSeries: (query) Optional. Filter for series. (optional) - - parameter isNews: (query) Optional. Filter for news. (optional) - - parameter isKids: (query) Optional. Filter for kids. (optional) - - parameter isSports: (query) Optional. Filter for sports. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Name, StartDate. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter genres: (query) The genres to return guide information for. (optional) - - parameter genreIds: (query) The genre ids to return guide information for. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter seriesTimerId: (query) Optional. Filter by series timer id. (optional) - - parameter librarySeriesId: (query) Optional. Filter by library series id. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableTotalRecordCount: (query) Retrieve total record count. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLiveTvPrograms(channelIds: [String]? = nil, userId: String? = nil, minStartDate: Date? = nil, hasAired: Bool? = nil, isAiring: Bool? = nil, maxStartDate: Date? = nil, minEndDate: Date? = nil, maxEndDate: Date? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, startIndex: Int? = nil, limit: Int? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, seriesTimerId: String? = nil, librarySeriesId: String? = nil, fields: [ItemFields]? = nil, enableTotalRecordCount: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getLiveTvProgramsWithRequestBuilder(channelIds: channelIds, userId: userId, minStartDate: minStartDate, hasAired: hasAired, isAiring: isAiring, maxStartDate: maxStartDate, minEndDate: minEndDate, maxEndDate: maxEndDate, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, startIndex: startIndex, limit: limit, sortBy: sortBy, sortOrder: sortOrder, genres: genres, genreIds: genreIds, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData, seriesTimerId: seriesTimerId, librarySeriesId: librarySeriesId, fields: fields, enableTotalRecordCount: enableTotalRecordCount).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available live tv epgs. - - GET /LiveTv/Programs - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter channelIds: (query) The channels to return guide information for. (optional) - - parameter userId: (query) Optional. Filter by user id. (optional) - - parameter minStartDate: (query) Optional. The minimum premiere start date. (optional) - - parameter hasAired: (query) Optional. Filter by programs that have completed airing, or not. (optional) - - parameter isAiring: (query) Optional. Filter by programs that are currently airing, or not. (optional) - - parameter maxStartDate: (query) Optional. The maximum premiere start date. (optional) - - parameter minEndDate: (query) Optional. The minimum premiere end date. (optional) - - parameter maxEndDate: (query) Optional. The maximum premiere end date. (optional) - - parameter isMovie: (query) Optional. Filter for movies. (optional) - - parameter isSeries: (query) Optional. Filter for series. (optional) - - parameter isNews: (query) Optional. Filter for news. (optional) - - parameter isKids: (query) Optional. Filter for kids. (optional) - - parameter isSports: (query) Optional. Filter for sports. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Name, StartDate. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter genres: (query) The genres to return guide information for. (optional) - - parameter genreIds: (query) The genre ids to return guide information for. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter seriesTimerId: (query) Optional. Filter by series timer id. (optional) - - parameter librarySeriesId: (query) Optional. Filter by library series id. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableTotalRecordCount: (query) Retrieve total record count. (optional, default to true) - - returns: RequestBuilder - */ - open class func getLiveTvProgramsWithRequestBuilder(channelIds: [String]? = nil, userId: String? = nil, minStartDate: Date? = nil, hasAired: Bool? = nil, isAiring: Bool? = nil, maxStartDate: Date? = nil, minEndDate: Date? = nil, maxEndDate: Date? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, startIndex: Int? = nil, limit: Int? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, seriesTimerId: String? = nil, librarySeriesId: String? = nil, fields: [ItemFields]? = nil, enableTotalRecordCount: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Programs" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "channelIds": channelIds?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "minStartDate": minStartDate?.encodeToJSON(), - "hasAired": hasAired?.encodeToJSON(), - "isAiring": isAiring?.encodeToJSON(), - "maxStartDate": maxStartDate?.encodeToJSON(), - "minEndDate": minEndDate?.encodeToJSON(), - "maxEndDate": maxEndDate?.encodeToJSON(), - "isMovie": isMovie?.encodeToJSON(), - "isSeries": isSeries?.encodeToJSON(), - "isNews": isNews?.encodeToJSON(), - "isKids": isKids?.encodeToJSON(), - "isSports": isSports?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "genres": genres?.encodeToJSON(), - "genreIds": genreIds?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "seriesTimerId": seriesTimerId?.encodeToJSON(), - "librarySeriesId": librarySeriesId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a live tv program. - - - parameter programId: (path) Program id. - - parameter userId: (query) Optional. Attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getProgram(programId: String, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getProgramWithRequestBuilder(programId: programId, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a live tv program. - - GET /LiveTv/Programs/{programId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter programId: (path) Program id. - - parameter userId: (query) Optional. Attach user data. (optional) - - returns: RequestBuilder - */ - open class func getProgramWithRequestBuilder(programId: String, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/LiveTv/Programs/{programId}" - let programIdPreEscape = "\(APIHelper.mapValueToPathItem(programId))" - let programIdPostEscape = programIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{programId}", with: programIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available live tv epgs. - - - parameter getProgramsRequest: (body) Request body. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPrograms(getProgramsRequest: GetProgramsRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getProgramsWithRequestBuilder(getProgramsRequest: getProgramsRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available live tv epgs. - - POST /LiveTv/Programs - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter getProgramsRequest: (body) Request body. (optional) - - returns: RequestBuilder - */ - open class func getProgramsWithRequestBuilder(getProgramsRequest: GetProgramsRequest? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Programs" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getProgramsRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets recommended live tv epgs. - - - parameter userId: (query) Optional. filter by user id. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter isAiring: (query) Optional. Filter by programs that are currently airing, or not. (optional) - - parameter hasAired: (query) Optional. Filter by programs that have completed airing, or not. (optional) - - parameter isSeries: (query) Optional. Filter for series. (optional) - - parameter isMovie: (query) Optional. Filter for movies. (optional) - - parameter isNews: (query) Optional. Filter for news. (optional) - - parameter isKids: (query) Optional. Filter for kids. (optional) - - parameter isSports: (query) Optional. Filter for sports. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter genreIds: (query) The genres to return guide information for. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableUserData: (query) Optional. include user data. (optional) - - parameter enableTotalRecordCount: (query) Retrieve total record count. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRecommendedPrograms(userId: String? = nil, limit: Int? = nil, isAiring: Bool? = nil, hasAired: Bool? = nil, isSeries: Bool? = nil, isMovie: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, genreIds: [String]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRecommendedProgramsWithRequestBuilder(userId: userId, limit: limit, isAiring: isAiring, hasAired: hasAired, isSeries: isSeries, isMovie: isMovie, isNews: isNews, isKids: isKids, isSports: isSports, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, genreIds: genreIds, fields: fields, enableUserData: enableUserData, enableTotalRecordCount: enableTotalRecordCount).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets recommended live tv epgs. - - GET /LiveTv/Programs/Recommended - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) Optional. filter by user id. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter isAiring: (query) Optional. Filter by programs that are currently airing, or not. (optional) - - parameter hasAired: (query) Optional. Filter by programs that have completed airing, or not. (optional) - - parameter isSeries: (query) Optional. Filter for series. (optional) - - parameter isMovie: (query) Optional. Filter for movies. (optional) - - parameter isNews: (query) Optional. Filter for news. (optional) - - parameter isKids: (query) Optional. Filter for kids. (optional) - - parameter isSports: (query) Optional. Filter for sports. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter genreIds: (query) The genres to return guide information for. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableUserData: (query) Optional. include user data. (optional) - - parameter enableTotalRecordCount: (query) Retrieve total record count. (optional, default to true) - - returns: RequestBuilder - */ - open class func getRecommendedProgramsWithRequestBuilder(userId: String? = nil, limit: Int? = nil, isAiring: Bool? = nil, hasAired: Bool? = nil, isSeries: Bool? = nil, isMovie: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, genreIds: [String]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Programs/Recommended" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "isAiring": isAiring?.encodeToJSON(), - "hasAired": hasAired?.encodeToJSON(), - "isSeries": isSeries?.encodeToJSON(), - "isMovie": isMovie?.encodeToJSON(), - "isNews": isNews?.encodeToJSON(), - "isKids": isKids?.encodeToJSON(), - "isSports": isSports?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "genreIds": genreIds?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a live tv recording. - - - parameter recordingId: (path) Recording id. - - parameter userId: (query) Optional. Attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRecording(recordingId: String, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRecordingWithRequestBuilder(recordingId: recordingId, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a live tv recording. - - GET /LiveTv/Recordings/{recordingId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter recordingId: (path) Recording id. - - parameter userId: (query) Optional. Attach user data. (optional) - - returns: RequestBuilder - */ - open class func getRecordingWithRequestBuilder(recordingId: String, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/LiveTv/Recordings/{recordingId}" - let recordingIdPreEscape = "\(APIHelper.mapValueToPathItem(recordingId))" - let recordingIdPostEscape = recordingIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{recordingId}", with: recordingIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets recording folders. - - - parameter userId: (query) Optional. Filter by user and attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRecordingFolders(userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRecordingFoldersWithRequestBuilder(userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets recording folders. - - GET /LiveTv/Recordings/Folders - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) Optional. Filter by user and attach user data. (optional) - - returns: RequestBuilder - */ - open class func getRecordingFoldersWithRequestBuilder(userId: String? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Recordings/Folders" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get recording group. - - - parameter groupId: (path) Group id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(*, deprecated, message: "This operation is deprecated.") - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRecordingGroup(groupId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRecordingGroupWithRequestBuilder(groupId: groupId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get recording group. - - GET /LiveTv/Recordings/Groups/{groupId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter groupId: (path) Group id. - - returns: RequestBuilder - */ - @available(*, deprecated, message: "This operation is deprecated.") - open class func getRecordingGroupWithRequestBuilder(groupId: String) -> RequestBuilder { - var localVariablePath = "/LiveTv/Recordings/Groups/{groupId}" - let groupIdPreEscape = "\(APIHelper.mapValueToPathItem(groupId))" - let groupIdPostEscape = groupIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{groupId}", with: groupIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets live tv recording groups. - - - parameter userId: (query) Optional. Filter by user and attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(*, deprecated, message: "This operation is deprecated.") - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRecordingGroups(userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRecordingGroupsWithRequestBuilder(userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets live tv recording groups. - - GET /LiveTv/Recordings/Groups - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) Optional. Filter by user and attach user data. (optional) - - returns: RequestBuilder - */ - @available(*, deprecated, message: "This operation is deprecated.") - open class func getRecordingGroupsWithRequestBuilder(userId: String? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Recordings/Groups" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets live tv recordings. - - - parameter channelId: (query) Optional. Filter by channel id. (optional) - - parameter userId: (query) Optional. Filter by user and attach user data. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter status: (query) Optional. Filter by recording status. (optional) - - parameter isInProgress: (query) Optional. Filter by recordings that are in progress, or not. (optional) - - parameter seriesTimerId: (query) Optional. Filter by recordings belonging to a series timer. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter isMovie: (query) Optional. Filter for movies. (optional) - - parameter isSeries: (query) Optional. Filter for series. (optional) - - parameter isKids: (query) Optional. Filter for kids. (optional) - - parameter isSports: (query) Optional. Filter for sports. (optional) - - parameter isNews: (query) Optional. Filter for news. (optional) - - parameter isLibraryItem: (query) Optional. Filter for is library item. (optional) - - parameter enableTotalRecordCount: (query) Optional. Return total record count. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRecordings(channelId: String? = nil, userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, status: RecordingStatus? = nil, isInProgress: Bool? = nil, seriesTimerId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, isNews: Bool? = nil, isLibraryItem: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRecordingsWithRequestBuilder(channelId: channelId, userId: userId, startIndex: startIndex, limit: limit, status: status, isInProgress: isInProgress, seriesTimerId: seriesTimerId, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, fields: fields, enableUserData: enableUserData, isMovie: isMovie, isSeries: isSeries, isKids: isKids, isSports: isSports, isNews: isNews, isLibraryItem: isLibraryItem, enableTotalRecordCount: enableTotalRecordCount).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets live tv recordings. - - GET /LiveTv/Recordings - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter channelId: (query) Optional. Filter by channel id. (optional) - - parameter userId: (query) Optional. Filter by user and attach user data. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter status: (query) Optional. Filter by recording status. (optional) - - parameter isInProgress: (query) Optional. Filter by recordings that are in progress, or not. (optional) - - parameter seriesTimerId: (query) Optional. Filter by recordings belonging to a series timer. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter isMovie: (query) Optional. Filter for movies. (optional) - - parameter isSeries: (query) Optional. Filter for series. (optional) - - parameter isKids: (query) Optional. Filter for kids. (optional) - - parameter isSports: (query) Optional. Filter for sports. (optional) - - parameter isNews: (query) Optional. Filter for news. (optional) - - parameter isLibraryItem: (query) Optional. Filter for is library item. (optional) - - parameter enableTotalRecordCount: (query) Optional. Return total record count. (optional, default to true) - - returns: RequestBuilder - */ - open class func getRecordingsWithRequestBuilder(channelId: String? = nil, userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, status: RecordingStatus? = nil, isInProgress: Bool? = nil, seriesTimerId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, isNews: Bool? = nil, isLibraryItem: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Recordings" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "channelId": channelId?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "status": status?.encodeToJSON(), - "isInProgress": isInProgress?.encodeToJSON(), - "seriesTimerId": seriesTimerId?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "isMovie": isMovie?.encodeToJSON(), - "isSeries": isSeries?.encodeToJSON(), - "isKids": isKids?.encodeToJSON(), - "isSports": isSports?.encodeToJSON(), - "isNews": isNews?.encodeToJSON(), - "isLibraryItem": isLibraryItem?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets live tv recording series. - - - parameter channelId: (query) Optional. Filter by channel id. (optional) - - parameter userId: (query) Optional. Filter by user and attach user data. (optional) - - parameter groupId: (query) Optional. Filter by recording group. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter status: (query) Optional. Filter by recording status. (optional) - - parameter isInProgress: (query) Optional. Filter by recordings that are in progress, or not. (optional) - - parameter seriesTimerId: (query) Optional. Filter by recordings belonging to a series timer. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter enableTotalRecordCount: (query) Optional. Return total record count. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(*, deprecated, message: "This operation is deprecated.") - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRecordingsSeries(channelId: String? = nil, userId: String? = nil, groupId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, status: RecordingStatus? = nil, isInProgress: Bool? = nil, seriesTimerId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRecordingsSeriesWithRequestBuilder(channelId: channelId, userId: userId, groupId: groupId, startIndex: startIndex, limit: limit, status: status, isInProgress: isInProgress, seriesTimerId: seriesTimerId, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, fields: fields, enableUserData: enableUserData, enableTotalRecordCount: enableTotalRecordCount).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets live tv recording series. - - GET /LiveTv/Recordings/Series - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter channelId: (query) Optional. Filter by channel id. (optional) - - parameter userId: (query) Optional. Filter by user and attach user data. (optional) - - parameter groupId: (query) Optional. Filter by recording group. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter status: (query) Optional. Filter by recording status. (optional) - - parameter isInProgress: (query) Optional. Filter by recordings that are in progress, or not. (optional) - - parameter seriesTimerId: (query) Optional. Filter by recordings belonging to a series timer. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter enableTotalRecordCount: (query) Optional. Return total record count. (optional, default to true) - - returns: RequestBuilder - */ - @available(*, deprecated, message: "This operation is deprecated.") - open class func getRecordingsSeriesWithRequestBuilder(channelId: String? = nil, userId: String? = nil, groupId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, status: RecordingStatus? = nil, isInProgress: Bool? = nil, seriesTimerId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Recordings/Series" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "channelId": channelId?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "groupId": groupId?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "status": status?.encodeToJSON(), - "isInProgress": isInProgress?.encodeToJSON(), - "seriesTimerId": seriesTimerId?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available countries. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSchedulesDirectCountries() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSchedulesDirectCountriesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available countries. - - GET /LiveTv/ListingProviders/SchedulesDirect/Countries - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getSchedulesDirectCountriesWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/LiveTv/ListingProviders/SchedulesDirect/Countries" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a live tv series timer. - - - parameter timerId: (path) Timer id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSeriesTimer(timerId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSeriesTimerWithRequestBuilder(timerId: timerId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a live tv series timer. - - GET /LiveTv/SeriesTimers/{timerId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter timerId: (path) Timer id. - - returns: RequestBuilder - */ - open class func getSeriesTimerWithRequestBuilder(timerId: String) -> RequestBuilder { - var localVariablePath = "/LiveTv/SeriesTimers/{timerId}" - let timerIdPreEscape = "\(APIHelper.mapValueToPathItem(timerId))" - let timerIdPostEscape = timerIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{timerId}", with: timerIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets live tv series timers. - - - parameter sortBy: (query) Optional. Sort by SortName or Priority. (optional) - - parameter sortOrder: (query) Optional. Sort in Ascending or Descending order. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSeriesTimers(sortBy: String? = nil, sortOrder: SortOrder? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSeriesTimersWithRequestBuilder(sortBy: sortBy, sortOrder: sortOrder).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets live tv series timers. - - GET /LiveTv/SeriesTimers - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter sortBy: (query) Optional. Sort by SortName or Priority. (optional) - - parameter sortOrder: (query) Optional. Sort in Ascending or Descending order. (optional) - - returns: RequestBuilder - */ - open class func getSeriesTimersWithRequestBuilder(sortBy: String? = nil, sortOrder: SortOrder? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/SeriesTimers" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "sortBy": sortBy?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a timer. - - - parameter timerId: (path) Timer id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getTimer(timerId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getTimerWithRequestBuilder(timerId: timerId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a timer. - - GET /LiveTv/Timers/{timerId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter timerId: (path) Timer id. - - returns: RequestBuilder - */ - open class func getTimerWithRequestBuilder(timerId: String) -> RequestBuilder { - var localVariablePath = "/LiveTv/Timers/{timerId}" - let timerIdPreEscape = "\(APIHelper.mapValueToPathItem(timerId))" - let timerIdPostEscape = timerIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{timerId}", with: timerIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the live tv timers. - - - parameter channelId: (query) Optional. Filter by channel id. (optional) - - parameter seriesTimerId: (query) Optional. Filter by timers belonging to a series timer. (optional) - - parameter isActive: (query) Optional. Filter by timers that are active. (optional) - - parameter isScheduled: (query) Optional. Filter by timers that are scheduled. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getTimers(channelId: String? = nil, seriesTimerId: String? = nil, isActive: Bool? = nil, isScheduled: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getTimersWithRequestBuilder(channelId: channelId, seriesTimerId: seriesTimerId, isActive: isActive, isScheduled: isScheduled).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the live tv timers. - - GET /LiveTv/Timers - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter channelId: (query) Optional. Filter by channel id. (optional) - - parameter seriesTimerId: (query) Optional. Filter by timers belonging to a series timer. (optional) - - parameter isActive: (query) Optional. Filter by timers that are active. (optional) - - parameter isScheduled: (query) Optional. Filter by timers that are scheduled. (optional) - - returns: RequestBuilder - */ - open class func getTimersWithRequestBuilder(channelId: String? = nil, seriesTimerId: String? = nil, isActive: Bool? = nil, isScheduled: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/LiveTv/Timers" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "channelId": channelId?.encodeToJSON(), - "seriesTimerId": seriesTimerId?.encodeToJSON(), - "isActive": isActive?.encodeToJSON(), - "isScheduled": isScheduled?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get tuner host types. - - - returns: AnyPublisher<[NameIdPair], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getTunerHostTypes() -> AnyPublisher<[NameIdPair], Error> { - var requestTask: RequestTask? - return Future<[NameIdPair], Error> { promise in - requestTask = getTunerHostTypesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get tuner host types. - - GET /LiveTv/TunerHosts/Types - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[NameIdPair]> - */ - open class func getTunerHostTypesWithRequestBuilder() -> RequestBuilder<[NameIdPair]> { - let localVariablePath = "/LiveTv/TunerHosts/Types" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[NameIdPair]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Resets a tv tuner. - - - parameter tunerId: (path) Tuner id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func resetTuner(tunerId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = resetTunerWithRequestBuilder(tunerId: tunerId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Resets a tv tuner. - - POST /LiveTv/Tuners/{tunerId}/Reset - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter tunerId: (path) Tuner id. - - returns: RequestBuilder - */ - open class func resetTunerWithRequestBuilder(tunerId: String) -> RequestBuilder { - var localVariablePath = "/LiveTv/Tuners/{tunerId}/Reset" - let tunerIdPreEscape = "\(APIHelper.mapValueToPathItem(tunerId))" - let tunerIdPostEscape = tunerIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{tunerId}", with: tunerIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Set channel mappings. - - - parameter setChannelMappingRequest: (body) The set channel mapping dto. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func setChannelMapping(setChannelMappingRequest: SetChannelMappingRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = setChannelMappingWithRequestBuilder(setChannelMappingRequest: setChannelMappingRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Set channel mappings. - - POST /LiveTv/ChannelMappings - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter setChannelMappingRequest: (body) The set channel mapping dto. - - returns: RequestBuilder - */ - open class func setChannelMappingWithRequestBuilder(setChannelMappingRequest: SetChannelMappingRequest) -> RequestBuilder { - let localVariablePath = "/LiveTv/ChannelMappings" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: setChannelMappingRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates a live tv series timer. - - - parameter timerId: (path) Timer id. - - parameter createSeriesTimerRequest: (body) New series timer info. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateSeriesTimer(timerId: String, createSeriesTimerRequest: CreateSeriesTimerRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateSeriesTimerWithRequestBuilder(timerId: timerId, createSeriesTimerRequest: createSeriesTimerRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates a live tv series timer. - - POST /LiveTv/SeriesTimers/{timerId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter timerId: (path) Timer id. - - parameter createSeriesTimerRequest: (body) New series timer info. (optional) - - returns: RequestBuilder - */ - open class func updateSeriesTimerWithRequestBuilder(timerId: String, createSeriesTimerRequest: CreateSeriesTimerRequest? = nil) -> RequestBuilder { - var localVariablePath = "/LiveTv/SeriesTimers/{timerId}" - let timerIdPreEscape = "\(APIHelper.mapValueToPathItem(timerId))" - let timerIdPostEscape = timerIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{timerId}", with: timerIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: createSeriesTimerRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates a live tv timer. - - - parameter timerId: (path) Timer id. - - parameter createTimerRequest: (body) New timer info. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateTimer(timerId: String, createTimerRequest: CreateTimerRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateTimerWithRequestBuilder(timerId: timerId, createTimerRequest: createTimerRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates a live tv timer. - - POST /LiveTv/Timers/{timerId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter timerId: (path) Timer id. - - parameter createTimerRequest: (body) New timer info. (optional) - - returns: RequestBuilder - */ - open class func updateTimerWithRequestBuilder(timerId: String, createTimerRequest: CreateTimerRequest? = nil) -> RequestBuilder { - var localVariablePath = "/LiveTv/Timers/{timerId}" - let timerIdPreEscape = "\(APIHelper.mapValueToPathItem(timerId))" - let timerIdPostEscape = timerIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{timerId}", with: timerIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: createTimerRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/LocalizationAPI.swift b/Sources/JellyfinAPI/APIs/LocalizationAPI.swift deleted file mode 100644 index 315d23acd..000000000 --- a/Sources/JellyfinAPI/APIs/LocalizationAPI.swift +++ /dev/null @@ -1,225 +0,0 @@ -// -// LocalizationAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class LocalizationAPI { - - /** - Gets known countries. - - - returns: AnyPublisher<[CountryInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getCountries() -> AnyPublisher<[CountryInfo], Error> { - var requestTask: RequestTask? - return Future<[CountryInfo], Error> { promise in - requestTask = getCountriesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets known countries. - - GET /Localization/Countries - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[CountryInfo]> - */ - open class func getCountriesWithRequestBuilder() -> RequestBuilder<[CountryInfo]> { - let localVariablePath = "/Localization/Countries" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[CountryInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets known cultures. - - - returns: AnyPublisher<[CultureDto], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getCultures() -> AnyPublisher<[CultureDto], Error> { - var requestTask: RequestTask? - return Future<[CultureDto], Error> { promise in - requestTask = getCulturesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets known cultures. - - GET /Localization/Cultures - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[CultureDto]> - */ - open class func getCulturesWithRequestBuilder() -> RequestBuilder<[CultureDto]> { - let localVariablePath = "/Localization/Cultures" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[CultureDto]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets localization options. - - - returns: AnyPublisher<[LocalizationOption], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLocalizationOptions() -> AnyPublisher<[LocalizationOption], Error> { - var requestTask: RequestTask? - return Future<[LocalizationOption], Error> { promise in - requestTask = getLocalizationOptionsWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets localization options. - - GET /Localization/Options - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[LocalizationOption]> - */ - open class func getLocalizationOptionsWithRequestBuilder() -> RequestBuilder<[LocalizationOption]> { - let localVariablePath = "/Localization/Options" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[LocalizationOption]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets known parental ratings. - - - returns: AnyPublisher<[ParentalRating], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getParentalRatings() -> AnyPublisher<[ParentalRating], Error> { - var requestTask: RequestTask? - return Future<[ParentalRating], Error> { promise in - requestTask = getParentalRatingsWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets known parental ratings. - - GET /Localization/ParentalRatings - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[ParentalRating]> - */ - open class func getParentalRatingsWithRequestBuilder() -> RequestBuilder<[ParentalRating]> { - let localVariablePath = "/Localization/ParentalRatings" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[ParentalRating]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/MediaInfoAPI.swift b/Sources/JellyfinAPI/APIs/MediaInfoAPI.swift deleted file mode 100644 index 9869969e6..000000000 --- a/Sources/JellyfinAPI/APIs/MediaInfoAPI.swift +++ /dev/null @@ -1,386 +0,0 @@ -// -// MediaInfoAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class MediaInfoAPI { - - /** - Closes a media source. - - - parameter liveStreamId: (query) The livestream id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func closeLiveStream(liveStreamId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = closeLiveStreamWithRequestBuilder(liveStreamId: liveStreamId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Closes a media source. - - POST /LiveStreams/Close - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter liveStreamId: (query) The livestream id. - - returns: RequestBuilder - */ - open class func closeLiveStreamWithRequestBuilder(liveStreamId: String) -> RequestBuilder { - let localVariablePath = "/LiveStreams/Close" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "liveStreamId": liveStreamId.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Tests the network with a request with the size of the bitrate. - - - parameter size: (query) The bitrate. Defaults to 102400. (optional, default to 102400) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getBitrateTestBytes(size: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getBitrateTestBytesWithRequestBuilder(size: size).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Tests the network with a request with the size of the bitrate. - - GET /Playback/BitrateTest - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter size: (query) The bitrate. Defaults to 102400. (optional, default to 102400) - - returns: RequestBuilder - */ - open class func getBitrateTestBytesWithRequestBuilder(size: Int? = nil) -> RequestBuilder { - let localVariablePath = "/Playback/BitrateTest" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "size": size?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets live playback media info for an item. - - - parameter itemId: (path) The item id. - - parameter userId: (query) The user id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPlaybackInfo(itemId: String, userId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPlaybackInfoWithRequestBuilder(itemId: itemId, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets live playback media info for an item. - - GET /Items/{itemId}/PlaybackInfo - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter userId: (query) The user id. - - returns: RequestBuilder - */ - open class func getPlaybackInfoWithRequestBuilder(itemId: String, userId: String) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/PlaybackInfo" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets live playback media info for an item. - - - parameter itemId: (path) The item id. - - parameter userId: (query) The user id. (optional) - - parameter maxStreamingBitrate: (query) The maximum streaming bitrate. (optional) - - parameter startTimeTicks: (query) The start time in ticks. (optional) - - parameter audioStreamIndex: (query) The audio stream index. (optional) - - parameter subtitleStreamIndex: (query) The subtitle stream index. (optional) - - parameter maxAudioChannels: (query) The maximum number of audio channels. (optional) - - parameter mediaSourceId: (query) The media source id. (optional) - - parameter liveStreamId: (query) The livestream id. (optional) - - parameter autoOpenLiveStream: (query) Whether to auto open the livestream. (optional) - - parameter enableDirectPlay: (query) Whether to enable direct play. Default: true. (optional) - - parameter enableDirectStream: (query) Whether to enable direct stream. Default: true. (optional) - - parameter enableTranscoding: (query) Whether to enable transcoding. Default: true. (optional) - - parameter allowVideoStreamCopy: (query) Whether to allow to copy the video stream. Default: true. (optional) - - parameter allowAudioStreamCopy: (query) Whether to allow to copy the audio stream. Default: true. (optional) - - parameter getPostedPlaybackInfoRequest: (body) The playback info. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPostedPlaybackInfo(itemId: String, userId: String? = nil, maxStreamingBitrate: Int? = nil, startTimeTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, maxAudioChannels: Int? = nil, mediaSourceId: String? = nil, liveStreamId: String? = nil, autoOpenLiveStream: Bool? = nil, enableDirectPlay: Bool? = nil, enableDirectStream: Bool? = nil, enableTranscoding: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, getPostedPlaybackInfoRequest: GetPostedPlaybackInfoRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPostedPlaybackInfoWithRequestBuilder(itemId: itemId, userId: userId, maxStreamingBitrate: maxStreamingBitrate, startTimeTicks: startTimeTicks, audioStreamIndex: audioStreamIndex, subtitleStreamIndex: subtitleStreamIndex, maxAudioChannels: maxAudioChannels, mediaSourceId: mediaSourceId, liveStreamId: liveStreamId, autoOpenLiveStream: autoOpenLiveStream, enableDirectPlay: enableDirectPlay, enableDirectStream: enableDirectStream, enableTranscoding: enableTranscoding, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, getPostedPlaybackInfoRequest: getPostedPlaybackInfoRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets live playback media info for an item. - - POST /Items/{itemId}/PlaybackInfo - - For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence. Query parameters are obsolete. - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter userId: (query) The user id. (optional) - - parameter maxStreamingBitrate: (query) The maximum streaming bitrate. (optional) - - parameter startTimeTicks: (query) The start time in ticks. (optional) - - parameter audioStreamIndex: (query) The audio stream index. (optional) - - parameter subtitleStreamIndex: (query) The subtitle stream index. (optional) - - parameter maxAudioChannels: (query) The maximum number of audio channels. (optional) - - parameter mediaSourceId: (query) The media source id. (optional) - - parameter liveStreamId: (query) The livestream id. (optional) - - parameter autoOpenLiveStream: (query) Whether to auto open the livestream. (optional) - - parameter enableDirectPlay: (query) Whether to enable direct play. Default: true. (optional) - - parameter enableDirectStream: (query) Whether to enable direct stream. Default: true. (optional) - - parameter enableTranscoding: (query) Whether to enable transcoding. Default: true. (optional) - - parameter allowVideoStreamCopy: (query) Whether to allow to copy the video stream. Default: true. (optional) - - parameter allowAudioStreamCopy: (query) Whether to allow to copy the audio stream. Default: true. (optional) - - parameter getPostedPlaybackInfoRequest: (body) The playback info. (optional) - - returns: RequestBuilder - */ - open class func getPostedPlaybackInfoWithRequestBuilder(itemId: String, userId: String? = nil, maxStreamingBitrate: Int? = nil, startTimeTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, maxAudioChannels: Int? = nil, mediaSourceId: String? = nil, liveStreamId: String? = nil, autoOpenLiveStream: Bool? = nil, enableDirectPlay: Bool? = nil, enableDirectStream: Bool? = nil, enableTranscoding: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, getPostedPlaybackInfoRequest: GetPostedPlaybackInfoRequest? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/PlaybackInfo" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: getPostedPlaybackInfoRequest) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "maxStreamingBitrate": maxStreamingBitrate?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "autoOpenLiveStream": autoOpenLiveStream?.encodeToJSON(), - "enableDirectPlay": enableDirectPlay?.encodeToJSON(), - "enableDirectStream": enableDirectStream?.encodeToJSON(), - "enableTranscoding": enableTranscoding?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Opens a media source. - - - parameter openToken: (query) The open token. (optional) - - parameter userId: (query) The user id. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter maxStreamingBitrate: (query) The maximum streaming bitrate. (optional) - - parameter startTimeTicks: (query) The start time in ticks. (optional) - - parameter audioStreamIndex: (query) The audio stream index. (optional) - - parameter subtitleStreamIndex: (query) The subtitle stream index. (optional) - - parameter maxAudioChannels: (query) The maximum number of audio channels. (optional) - - parameter itemId: (query) The item id. (optional) - - parameter enableDirectPlay: (query) Whether to enable direct play. Default: true. (optional) - - parameter enableDirectStream: (query) Whether to enable direct stream. Default: true. (optional) - - parameter openLiveStreamRequest: (body) The open live stream dto. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func openLiveStream(openToken: String? = nil, userId: String? = nil, playSessionId: String? = nil, maxStreamingBitrate: Int? = nil, startTimeTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, maxAudioChannels: Int? = nil, itemId: String? = nil, enableDirectPlay: Bool? = nil, enableDirectStream: Bool? = nil, openLiveStreamRequest: OpenLiveStreamRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = openLiveStreamWithRequestBuilder(openToken: openToken, userId: userId, playSessionId: playSessionId, maxStreamingBitrate: maxStreamingBitrate, startTimeTicks: startTimeTicks, audioStreamIndex: audioStreamIndex, subtitleStreamIndex: subtitleStreamIndex, maxAudioChannels: maxAudioChannels, itemId: itemId, enableDirectPlay: enableDirectPlay, enableDirectStream: enableDirectStream, openLiveStreamRequest: openLiveStreamRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Opens a media source. - - POST /LiveStreams/Open - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter openToken: (query) The open token. (optional) - - parameter userId: (query) The user id. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter maxStreamingBitrate: (query) The maximum streaming bitrate. (optional) - - parameter startTimeTicks: (query) The start time in ticks. (optional) - - parameter audioStreamIndex: (query) The audio stream index. (optional) - - parameter subtitleStreamIndex: (query) The subtitle stream index. (optional) - - parameter maxAudioChannels: (query) The maximum number of audio channels. (optional) - - parameter itemId: (query) The item id. (optional) - - parameter enableDirectPlay: (query) Whether to enable direct play. Default: true. (optional) - - parameter enableDirectStream: (query) Whether to enable direct stream. Default: true. (optional) - - parameter openLiveStreamRequest: (body) The open live stream dto. (optional) - - returns: RequestBuilder - */ - open class func openLiveStreamWithRequestBuilder(openToken: String? = nil, userId: String? = nil, playSessionId: String? = nil, maxStreamingBitrate: Int? = nil, startTimeTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, maxAudioChannels: Int? = nil, itemId: String? = nil, enableDirectPlay: Bool? = nil, enableDirectStream: Bool? = nil, openLiveStreamRequest: OpenLiveStreamRequest? = nil) -> RequestBuilder { - let localVariablePath = "/LiveStreams/Open" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: openLiveStreamRequest) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "openToken": openToken?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "maxStreamingBitrate": maxStreamingBitrate?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "itemId": itemId?.encodeToJSON(), - "enableDirectPlay": enableDirectPlay?.encodeToJSON(), - "enableDirectStream": enableDirectStream?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/MoviesAPI.swift b/Sources/JellyfinAPI/APIs/MoviesAPI.swift deleted file mode 100644 index 693887842..000000000 --- a/Sources/JellyfinAPI/APIs/MoviesAPI.swift +++ /dev/null @@ -1,86 +0,0 @@ -// -// MoviesAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class MoviesAPI { - - /** - Gets movie recommendations. - - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. The fields to return. (optional) - - parameter categoryLimit: (query) The max number of categories to return. (optional, default to 5) - - parameter itemLimit: (query) The max number of items to return per category. (optional, default to 8) - - returns: AnyPublisher<[RecommendationDto], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMovieRecommendations(userId: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, categoryLimit: Int? = nil, itemLimit: Int? = nil) -> AnyPublisher<[RecommendationDto], Error> { - var requestTask: RequestTask? - return Future<[RecommendationDto], Error> { promise in - requestTask = getMovieRecommendationsWithRequestBuilder(userId: userId, parentId: parentId, fields: fields, categoryLimit: categoryLimit, itemLimit: itemLimit).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets movie recommendations. - - GET /Movies/Recommendations - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. The fields to return. (optional) - - parameter categoryLimit: (query) The max number of categories to return. (optional, default to 5) - - parameter itemLimit: (query) The max number of items to return per category. (optional, default to 8) - - returns: RequestBuilder<[RecommendationDto]> - */ - open class func getMovieRecommendationsWithRequestBuilder(userId: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, categoryLimit: Int? = nil, itemLimit: Int? = nil) -> RequestBuilder<[RecommendationDto]> { - let localVariablePath = "/Movies/Recommendations" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "categoryLimit": categoryLimit?.encodeToJSON(), - "itemLimit": itemLimit?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RecommendationDto]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/MusicGenresAPI.swift b/Sources/JellyfinAPI/APIs/MusicGenresAPI.swift deleted file mode 100644 index 1a342df41..000000000 --- a/Sources/JellyfinAPI/APIs/MusicGenresAPI.swift +++ /dev/null @@ -1,189 +0,0 @@ -// -// MusicGenresAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class MusicGenresAPI { - - /** - Gets a music genre, by name. - - - parameter genreName: (path) The genre name. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMusicGenre(genreName: String, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMusicGenreWithRequestBuilder(genreName: genreName, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a music genre, by name. - - GET /MusicGenres/{genreName} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter genreName: (path) The genre name. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: RequestBuilder - */ - open class func getMusicGenreWithRequestBuilder(genreName: String, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/MusicGenres/{genreName}" - let genreNamePreEscape = "\(APIHelper.mapValueToPathItem(genreName))" - let genreNamePostEscape = genreNamePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{genreName}", with: genreNamePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets all music genres from a given item, folder, or the entire library. - - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) The search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter userId: (query) User id. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - parameter enableTotalRecordCount: (query) Optional. Include total record count. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(*, deprecated, message: "This operation is deprecated.") - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getMusicGenres(startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, isFavorite: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getMusicGenresWithRequestBuilder(startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, isFavorite: isFavorite, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, userId: userId, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, sortBy: sortBy, sortOrder: sortOrder, enableImages: enableImages, enableTotalRecordCount: enableTotalRecordCount).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all music genres from a given item, folder, or the entire library. - - GET /MusicGenres - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) The search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter userId: (query) User id. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - parameter enableTotalRecordCount: (query) Optional. Include total record count. (optional, default to true) - - returns: RequestBuilder - */ - @available(*, deprecated, message: "This operation is deprecated.") - open class func getMusicGenresWithRequestBuilder(startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, isFavorite: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/MusicGenres" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "searchTerm": searchTerm?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "nameStartsWithOrGreater": nameStartsWithOrGreater?.encodeToJSON(), - "nameStartsWith": nameStartsWith?.encodeToJSON(), - "nameLessThan": nameLessThan?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/NotificationsAPI.swift b/Sources/JellyfinAPI/APIs/NotificationsAPI.swift deleted file mode 100644 index 30025979d..000000000 --- a/Sources/JellyfinAPI/APIs/NotificationsAPI.swift +++ /dev/null @@ -1,403 +0,0 @@ -// -// NotificationsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class NotificationsAPI { - - /** - Sends a notification to all admins. - - - parameter createAdminNotificationRequest: (body) The notification request. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func createAdminNotification(createAdminNotificationRequest: CreateAdminNotificationRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = createAdminNotificationWithRequestBuilder(createAdminNotificationRequest: createAdminNotificationRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Sends a notification to all admins. - - POST /Notifications/Admin - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter createAdminNotificationRequest: (body) The notification request. - - returns: RequestBuilder - */ - open class func createAdminNotificationWithRequestBuilder(createAdminNotificationRequest: CreateAdminNotificationRequest) -> RequestBuilder { - let localVariablePath = "/Notifications/Admin" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: createAdminNotificationRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets notification services. - - - returns: AnyPublisher<[NameIdPair], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getNotificationServices() -> AnyPublisher<[NameIdPair], Error> { - var requestTask: RequestTask? - return Future<[NameIdPair], Error> { promise in - requestTask = getNotificationServicesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets notification services. - - GET /Notifications/Services - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[NameIdPair]> - */ - open class func getNotificationServicesWithRequestBuilder() -> RequestBuilder<[NameIdPair]> { - let localVariablePath = "/Notifications/Services" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[NameIdPair]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets notification types. - - - returns: AnyPublisher<[NotificationTypeInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getNotificationTypes() -> AnyPublisher<[NotificationTypeInfo], Error> { - var requestTask: RequestTask? - return Future<[NotificationTypeInfo], Error> { promise in - requestTask = getNotificationTypesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets notification types. - - GET /Notifications/Types - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[NotificationTypeInfo]> - */ - open class func getNotificationTypesWithRequestBuilder() -> RequestBuilder<[NotificationTypeInfo]> { - let localVariablePath = "/Notifications/Types" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[NotificationTypeInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a user's notifications. - - - parameter userId: (path) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getNotifications(userId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getNotificationsWithRequestBuilder(userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a user's notifications. - - GET /Notifications/{userId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) - - returns: RequestBuilder - */ - open class func getNotificationsWithRequestBuilder(userId: String) -> RequestBuilder { - var localVariablePath = "/Notifications/{userId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a user's notification summary. - - - parameter userId: (path) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getNotificationsSummary(userId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getNotificationsSummaryWithRequestBuilder(userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a user's notification summary. - - GET /Notifications/{userId}/Summary - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) - - returns: RequestBuilder - */ - open class func getNotificationsSummaryWithRequestBuilder(userId: String) -> RequestBuilder { - var localVariablePath = "/Notifications/{userId}/Summary" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Sets notifications as read. - - - parameter userId: (path) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func setRead(userId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = setReadWithRequestBuilder(userId: userId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Sets notifications as read. - - POST /Notifications/{userId}/Read - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) - - returns: RequestBuilder - */ - open class func setReadWithRequestBuilder(userId: String) -> RequestBuilder { - var localVariablePath = "/Notifications/{userId}/Read" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Sets notifications as unread. - - - parameter userId: (path) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func setUnread(userId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = setUnreadWithRequestBuilder(userId: userId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Sets notifications as unread. - - POST /Notifications/{userId}/Unread - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) - - returns: RequestBuilder - */ - open class func setUnreadWithRequestBuilder(userId: String) -> RequestBuilder { - var localVariablePath = "/Notifications/{userId}/Unread" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/PackageAPI.swift b/Sources/JellyfinAPI/APIs/PackageAPI.swift deleted file mode 100644 index 64b8a759f..000000000 --- a/Sources/JellyfinAPI/APIs/PackageAPI.swift +++ /dev/null @@ -1,362 +0,0 @@ -// -// PackageAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class PackageAPI { - - /** - Cancels a package installation. - - - parameter packageId: (path) Installation Id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func cancelPackageInstallation(packageId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = cancelPackageInstallationWithRequestBuilder(packageId: packageId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Cancels a package installation. - - DELETE /Packages/Installing/{packageId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter packageId: (path) Installation Id. - - returns: RequestBuilder - */ - open class func cancelPackageInstallationWithRequestBuilder(packageId: String) -> RequestBuilder { - var localVariablePath = "/Packages/Installing/{packageId}" - let packageIdPreEscape = "\(APIHelper.mapValueToPathItem(packageId))" - let packageIdPostEscape = packageIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{packageId}", with: packageIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a package by name or assembly GUID. - - - parameter name: (path) The name of the package. - - parameter assemblyGuid: (query) The GUID of the associated assembly. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPackageInfo(name: String, assemblyGuid: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPackageInfoWithRequestBuilder(name: name, assemblyGuid: assemblyGuid).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a package by name or assembly GUID. - - GET /Packages/{name} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (path) The name of the package. - - parameter assemblyGuid: (query) The GUID of the associated assembly. (optional) - - returns: RequestBuilder - */ - open class func getPackageInfoWithRequestBuilder(name: String, assemblyGuid: String? = nil) -> RequestBuilder { - var localVariablePath = "/Packages/{name}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "assemblyGuid": assemblyGuid?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available packages. - - - returns: AnyPublisher<[PackageInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPackages() -> AnyPublisher<[PackageInfo], Error> { - var requestTask: RequestTask? - return Future<[PackageInfo], Error> { promise in - requestTask = getPackagesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available packages. - - GET /Packages - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[PackageInfo]> - */ - open class func getPackagesWithRequestBuilder() -> RequestBuilder<[PackageInfo]> { - let localVariablePath = "/Packages" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[PackageInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets all package repositories. - - - returns: AnyPublisher<[RepositoryInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRepositories() -> AnyPublisher<[RepositoryInfo], Error> { - var requestTask: RequestTask? - return Future<[RepositoryInfo], Error> { promise in - requestTask = getRepositoriesWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all package repositories. - - GET /Repositories - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[RepositoryInfo]> - */ - open class func getRepositoriesWithRequestBuilder() -> RequestBuilder<[RepositoryInfo]> { - let localVariablePath = "/Repositories" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RepositoryInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Installs a package. - - - parameter name: (path) Package name. - - parameter assemblyGuid: (query) GUID of the associated assembly. (optional) - - parameter version: (query) Optional version. Defaults to latest version. (optional) - - parameter repositoryUrl: (query) Optional. Specify the repository to install from. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func installPackage(name: String, assemblyGuid: String? = nil, version: String? = nil, repositoryUrl: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = installPackageWithRequestBuilder(name: name, assemblyGuid: assemblyGuid, version: version, repositoryUrl: repositoryUrl).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Installs a package. - - POST /Packages/Installed/{name} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (path) Package name. - - parameter assemblyGuid: (query) GUID of the associated assembly. (optional) - - parameter version: (query) Optional version. Defaults to latest version. (optional) - - parameter repositoryUrl: (query) Optional. Specify the repository to install from. (optional) - - returns: RequestBuilder - */ - open class func installPackageWithRequestBuilder(name: String, assemblyGuid: String? = nil, version: String? = nil, repositoryUrl: String? = nil) -> RequestBuilder { - var localVariablePath = "/Packages/Installed/{name}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "assemblyGuid": assemblyGuid?.encodeToJSON(), - "version": version?.encodeToJSON(), - "repositoryUrl": repositoryUrl?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Sets the enabled and existing package repositories. - - - parameter repositoryInfo: (body) The list of package repositories. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func setRepositories(repositoryInfo: [RepositoryInfo]) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = setRepositoriesWithRequestBuilder(repositoryInfo: repositoryInfo).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Sets the enabled and existing package repositories. - - POST /Repositories - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter repositoryInfo: (body) The list of package repositories. - - returns: RequestBuilder - */ - open class func setRepositoriesWithRequestBuilder(repositoryInfo: [RepositoryInfo]) -> RequestBuilder { - let localVariablePath = "/Repositories" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: repositoryInfo) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/PersonsAPI.swift b/Sources/JellyfinAPI/APIs/PersonsAPI.swift deleted file mode 100644 index 35d572df9..000000000 --- a/Sources/JellyfinAPI/APIs/PersonsAPI.swift +++ /dev/null @@ -1,172 +0,0 @@ -// -// PersonsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class PersonsAPI { - - /** - Get person by name. - - - parameter name: (path) Person name. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPerson(name: String, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPersonWithRequestBuilder(name: name, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get person by name. - - GET /Persons/{name} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (path) Person name. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: RequestBuilder - */ - open class func getPersonWithRequestBuilder(name: String, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/Persons/{name}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets all persons. - - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) The search term. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. userId is required. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter excludePersonTypes: (query) Optional. If specified results will be filtered to exclude those containing the specified PersonType. Allows multiple, comma-delimited. (optional) - - parameter personTypes: (query) Optional. If specified results will be filtered to include only those containing the specified PersonType. Allows multiple, comma-delimited. (optional) - - parameter appearsInItemId: (query) Optional. If specified, person results will be filtered on items related to said persons. (optional) - - parameter userId: (query) User id. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPersons(limit: Int? = nil, searchTerm: String? = nil, fields: [ItemFields]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, excludePersonTypes: [String]? = nil, personTypes: [String]? = nil, appearsInItemId: String? = nil, userId: String? = nil, enableImages: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPersonsWithRequestBuilder(limit: limit, searchTerm: searchTerm, fields: fields, filters: filters, isFavorite: isFavorite, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, excludePersonTypes: excludePersonTypes, personTypes: personTypes, appearsInItemId: appearsInItemId, userId: userId, enableImages: enableImages).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all persons. - - GET /Persons - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) The search term. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. userId is required. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter excludePersonTypes: (query) Optional. If specified results will be filtered to exclude those containing the specified PersonType. Allows multiple, comma-delimited. (optional) - - parameter personTypes: (query) Optional. If specified results will be filtered to include only those containing the specified PersonType. Allows multiple, comma-delimited. (optional) - - parameter appearsInItemId: (query) Optional. If specified, person results will be filtered on items related to said persons. (optional) - - parameter userId: (query) User id. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - returns: RequestBuilder - */ - open class func getPersonsWithRequestBuilder(limit: Int? = nil, searchTerm: String? = nil, fields: [ItemFields]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, excludePersonTypes: [String]? = nil, personTypes: [String]? = nil, appearsInItemId: String? = nil, userId: String? = nil, enableImages: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Persons" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "limit": limit?.encodeToJSON(), - "searchTerm": searchTerm?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "filters": filters?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "excludePersonTypes": excludePersonTypes?.encodeToJSON(), - "personTypes": personTypes?.encodeToJSON(), - "appearsInItemId": appearsInItemId?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/PlaylistsAPI.swift b/Sources/JellyfinAPI/APIs/PlaylistsAPI.swift deleted file mode 100644 index ec835f9c0..000000000 --- a/Sources/JellyfinAPI/APIs/PlaylistsAPI.swift +++ /dev/null @@ -1,363 +0,0 @@ -// -// PlaylistsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class PlaylistsAPI { - - /** - Adds items to a playlist. - - - parameter playlistId: (path) The playlist id. - - parameter ids: (query) Item id, comma delimited. (optional) - - parameter userId: (query) The userId. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func addToPlaylist(playlistId: String, ids: [String]? = nil, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = addToPlaylistWithRequestBuilder(playlistId: playlistId, ids: ids, userId: userId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Adds items to a playlist. - - POST /Playlists/{playlistId}/Items - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter playlistId: (path) The playlist id. - - parameter ids: (query) Item id, comma delimited. (optional) - - parameter userId: (query) The userId. (optional) - - returns: RequestBuilder - */ - open class func addToPlaylistWithRequestBuilder(playlistId: String, ids: [String]? = nil, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/Playlists/{playlistId}/Items" - let playlistIdPreEscape = "\(APIHelper.mapValueToPathItem(playlistId))" - let playlistIdPostEscape = playlistIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{playlistId}", with: playlistIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "ids": ids?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates a new playlist. - - - parameter name: (query) The playlist name. (optional) - - parameter ids: (query) The item ids. (optional) - - parameter userId: (query) The user id. (optional) - - parameter mediaType: (query) The media type. (optional) - - parameter createPlaylistRequest: (body) The create playlist payload. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func createPlaylist(name: String? = nil, ids: [String]? = nil, userId: String? = nil, mediaType: String? = nil, createPlaylistRequest: CreatePlaylistRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = createPlaylistWithRequestBuilder(name: name, ids: ids, userId: userId, mediaType: mediaType, createPlaylistRequest: createPlaylistRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates a new playlist. - - POST /Playlists - - For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence. Query parameters are obsolete. - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (query) The playlist name. (optional) - - parameter ids: (query) The item ids. (optional) - - parameter userId: (query) The user id. (optional) - - parameter mediaType: (query) The media type. (optional) - - parameter createPlaylistRequest: (body) The create playlist payload. (optional) - - returns: RequestBuilder - */ - open class func createPlaylistWithRequestBuilder(name: String? = nil, ids: [String]? = nil, userId: String? = nil, mediaType: String? = nil, createPlaylistRequest: CreatePlaylistRequest? = nil) -> RequestBuilder { - let localVariablePath = "/Playlists" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: createPlaylistRequest) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "name": name?.encodeToJSON(), - "ids": ids?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "mediaType": mediaType?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the original items of a playlist. - - - parameter playlistId: (path) The playlist id. - - parameter userId: (query) User id. - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPlaylistItems(playlistId: String, userId: String, startIndex: Int? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPlaylistItemsWithRequestBuilder(playlistId: playlistId, userId: userId, startIndex: startIndex, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the original items of a playlist. - - GET /Playlists/{playlistId}/Items - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter playlistId: (path) The playlist id. - - parameter userId: (query) User id. - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - returns: RequestBuilder - */ - open class func getPlaylistItemsWithRequestBuilder(playlistId: String, userId: String, startIndex: Int? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil) -> RequestBuilder { - var localVariablePath = "/Playlists/{playlistId}/Items" - let playlistIdPreEscape = "\(APIHelper.mapValueToPathItem(playlistId))" - let playlistIdPostEscape = playlistIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{playlistId}", with: playlistIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Moves a playlist item. - - - parameter playlistId: (path) The playlist id. - - parameter itemId: (path) The item id. - - parameter newIndex: (path) The new index. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func moveItem(playlistId: String, itemId: String, newIndex: Int) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = moveItemWithRequestBuilder(playlistId: playlistId, itemId: itemId, newIndex: newIndex).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Moves a playlist item. - - POST /Playlists/{playlistId}/Items/{itemId}/Move/{newIndex} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter playlistId: (path) The playlist id. - - parameter itemId: (path) The item id. - - parameter newIndex: (path) The new index. - - returns: RequestBuilder - */ - open class func moveItemWithRequestBuilder(playlistId: String, itemId: String, newIndex: Int) -> RequestBuilder { - var localVariablePath = "/Playlists/{playlistId}/Items/{itemId}/Move/{newIndex}" - let playlistIdPreEscape = "\(APIHelper.mapValueToPathItem(playlistId))" - let playlistIdPostEscape = playlistIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{playlistId}", with: playlistIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let newIndexPreEscape = "\(APIHelper.mapValueToPathItem(newIndex))" - let newIndexPostEscape = newIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{newIndex}", with: newIndexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Removes items from a playlist. - - - parameter playlistId: (path) The playlist id. - - parameter entryIds: (query) The item ids, comma delimited. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func removeFromPlaylist(playlistId: String, entryIds: [String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = removeFromPlaylistWithRequestBuilder(playlistId: playlistId, entryIds: entryIds).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Removes items from a playlist. - - DELETE /Playlists/{playlistId}/Items - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter playlistId: (path) The playlist id. - - parameter entryIds: (query) The item ids, comma delimited. (optional) - - returns: RequestBuilder - */ - open class func removeFromPlaylistWithRequestBuilder(playlistId: String, entryIds: [String]? = nil) -> RequestBuilder { - var localVariablePath = "/Playlists/{playlistId}/Items" - let playlistIdPreEscape = "\(APIHelper.mapValueToPathItem(playlistId))" - let playlistIdPostEscape = playlistIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{playlistId}", with: playlistIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "entryIds": entryIds?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/PlaystateAPI.swift b/Sources/JellyfinAPI/APIs/PlaystateAPI.swift deleted file mode 100644 index f0fee8d0a..000000000 --- a/Sources/JellyfinAPI/APIs/PlaystateAPI.swift +++ /dev/null @@ -1,626 +0,0 @@ -// -// PlaystateAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class PlaystateAPI { - - /** - Marks an item as played for user. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - parameter datePlayed: (query) Optional. The date the item was played. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func markPlayedItem(userId: String, itemId: String, datePlayed: Date? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = markPlayedItemWithRequestBuilder(userId: userId, itemId: itemId, datePlayed: datePlayed).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Marks an item as played for user. - - POST /Users/{userId}/PlayedItems/{itemId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - parameter datePlayed: (query) Optional. The date the item was played. (optional) - - returns: RequestBuilder - */ - open class func markPlayedItemWithRequestBuilder(userId: String, itemId: String, datePlayed: Date? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/PlayedItems/{itemId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "datePlayed": datePlayed?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Marks an item as unplayed for user. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func markUnplayedItem(userId: String, itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = markUnplayedItemWithRequestBuilder(userId: userId, itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Marks an item as unplayed for user. - - DELETE /Users/{userId}/PlayedItems/{itemId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: RequestBuilder - */ - open class func markUnplayedItemWithRequestBuilder(userId: String, itemId: String) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/PlayedItems/{itemId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports a user's playback progress. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - parameter mediaSourceId: (query) The id of the MediaSource. (optional) - - parameter positionTicks: (query) Optional. The current position, in ticks. 1 tick = 10000 ms. (optional) - - parameter audioStreamIndex: (query) The audio stream index. (optional) - - parameter subtitleStreamIndex: (query) The subtitle stream index. (optional) - - parameter volumeLevel: (query) Scale of 0-100. (optional) - - parameter playMethod: (query) The play method. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter repeatMode: (query) The repeat mode. (optional) - - parameter isPaused: (query) Indicates if the player is paused. (optional, default to false) - - parameter isMuted: (query) Indicates if the player is muted. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func onPlaybackProgress(userId: String, itemId: String, mediaSourceId: String? = nil, positionTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, volumeLevel: Int? = nil, playMethod: PlayMethod? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, repeatMode: RepeatMode? = nil, isPaused: Bool? = nil, isMuted: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = onPlaybackProgressWithRequestBuilder(userId: userId, itemId: itemId, mediaSourceId: mediaSourceId, positionTicks: positionTicks, audioStreamIndex: audioStreamIndex, subtitleStreamIndex: subtitleStreamIndex, volumeLevel: volumeLevel, playMethod: playMethod, liveStreamId: liveStreamId, playSessionId: playSessionId, repeatMode: repeatMode, isPaused: isPaused, isMuted: isMuted).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports a user's playback progress. - - POST /Users/{userId}/PlayingItems/{itemId}/Progress - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - parameter mediaSourceId: (query) The id of the MediaSource. (optional) - - parameter positionTicks: (query) Optional. The current position, in ticks. 1 tick = 10000 ms. (optional) - - parameter audioStreamIndex: (query) The audio stream index. (optional) - - parameter subtitleStreamIndex: (query) The subtitle stream index. (optional) - - parameter volumeLevel: (query) Scale of 0-100. (optional) - - parameter playMethod: (query) The play method. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter repeatMode: (query) The repeat mode. (optional) - - parameter isPaused: (query) Indicates if the player is paused. (optional, default to false) - - parameter isMuted: (query) Indicates if the player is muted. (optional, default to false) - - returns: RequestBuilder - */ - open class func onPlaybackProgressWithRequestBuilder(userId: String, itemId: String, mediaSourceId: String? = nil, positionTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, volumeLevel: Int? = nil, playMethod: PlayMethod? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, repeatMode: RepeatMode? = nil, isPaused: Bool? = nil, isMuted: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/PlayingItems/{itemId}/Progress" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "positionTicks": positionTicks?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "volumeLevel": volumeLevel?.encodeToJSON(), - "playMethod": playMethod?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "repeatMode": repeatMode?.encodeToJSON(), - "isPaused": isPaused?.encodeToJSON(), - "isMuted": isMuted?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports that a user has begun playing an item. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - parameter mediaSourceId: (query) The id of the MediaSource. (optional) - - parameter audioStreamIndex: (query) The audio stream index. (optional) - - parameter subtitleStreamIndex: (query) The subtitle stream index. (optional) - - parameter playMethod: (query) The play method. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter canSeek: (query) Indicates if the client can seek. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func onPlaybackStart(userId: String, itemId: String, mediaSourceId: String? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, playMethod: PlayMethod? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, canSeek: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = onPlaybackStartWithRequestBuilder(userId: userId, itemId: itemId, mediaSourceId: mediaSourceId, audioStreamIndex: audioStreamIndex, subtitleStreamIndex: subtitleStreamIndex, playMethod: playMethod, liveStreamId: liveStreamId, playSessionId: playSessionId, canSeek: canSeek).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports that a user has begun playing an item. - - POST /Users/{userId}/PlayingItems/{itemId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - parameter mediaSourceId: (query) The id of the MediaSource. (optional) - - parameter audioStreamIndex: (query) The audio stream index. (optional) - - parameter subtitleStreamIndex: (query) The subtitle stream index. (optional) - - parameter playMethod: (query) The play method. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter canSeek: (query) Indicates if the client can seek. (optional, default to false) - - returns: RequestBuilder - */ - open class func onPlaybackStartWithRequestBuilder(userId: String, itemId: String, mediaSourceId: String? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, playMethod: PlayMethod? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, canSeek: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/PlayingItems/{itemId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "playMethod": playMethod?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "canSeek": canSeek?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports that a user has stopped playing an item. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - parameter mediaSourceId: (query) The id of the MediaSource. (optional) - - parameter nextMediaType: (query) The next media type that will play. (optional) - - parameter positionTicks: (query) Optional. The position, in ticks, where playback stopped. 1 tick = 10000 ms. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func onPlaybackStopped(userId: String, itemId: String, mediaSourceId: String? = nil, nextMediaType: String? = nil, positionTicks: Int64? = nil, liveStreamId: String? = nil, playSessionId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = onPlaybackStoppedWithRequestBuilder(userId: userId, itemId: itemId, mediaSourceId: mediaSourceId, nextMediaType: nextMediaType, positionTicks: positionTicks, liveStreamId: liveStreamId, playSessionId: playSessionId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports that a user has stopped playing an item. - - DELETE /Users/{userId}/PlayingItems/{itemId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - parameter mediaSourceId: (query) The id of the MediaSource. (optional) - - parameter nextMediaType: (query) The next media type that will play. (optional) - - parameter positionTicks: (query) Optional. The position, in ticks, where playback stopped. 1 tick = 10000 ms. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - returns: RequestBuilder - */ - open class func onPlaybackStoppedWithRequestBuilder(userId: String, itemId: String, mediaSourceId: String? = nil, nextMediaType: String? = nil, positionTicks: Int64? = nil, liveStreamId: String? = nil, playSessionId: String? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/PlayingItems/{itemId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "nextMediaType": nextMediaType?.encodeToJSON(), - "positionTicks": positionTicks?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Pings a playback session. - - - parameter playSessionId: (query) Playback session id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func pingPlaybackSession(playSessionId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = pingPlaybackSessionWithRequestBuilder(playSessionId: playSessionId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Pings a playback session. - - POST /Sessions/Playing/Ping - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter playSessionId: (query) Playback session id. - - returns: RequestBuilder - */ - open class func pingPlaybackSessionWithRequestBuilder(playSessionId: String) -> RequestBuilder { - let localVariablePath = "/Sessions/Playing/Ping" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "playSessionId": playSessionId.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports playback progress within a session. - - - parameter reportPlaybackProgressRequest: (body) The playback progress info. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func reportPlaybackProgress(reportPlaybackProgressRequest: ReportPlaybackProgressRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = reportPlaybackProgressWithRequestBuilder(reportPlaybackProgressRequest: reportPlaybackProgressRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports playback progress within a session. - - POST /Sessions/Playing/Progress - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter reportPlaybackProgressRequest: (body) The playback progress info. (optional) - - returns: RequestBuilder - */ - open class func reportPlaybackProgressWithRequestBuilder(reportPlaybackProgressRequest: ReportPlaybackProgressRequest? = nil) -> RequestBuilder { - let localVariablePath = "/Sessions/Playing/Progress" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: reportPlaybackProgressRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports playback has started within a session. - - - parameter reportPlaybackStartRequest: (body) The playback start info. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func reportPlaybackStart(reportPlaybackStartRequest: ReportPlaybackStartRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = reportPlaybackStartWithRequestBuilder(reportPlaybackStartRequest: reportPlaybackStartRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports playback has started within a session. - - POST /Sessions/Playing - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter reportPlaybackStartRequest: (body) The playback start info. (optional) - - returns: RequestBuilder - */ - open class func reportPlaybackStartWithRequestBuilder(reportPlaybackStartRequest: ReportPlaybackStartRequest? = nil) -> RequestBuilder { - let localVariablePath = "/Sessions/Playing" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: reportPlaybackStartRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports playback has stopped within a session. - - - parameter reportPlaybackStoppedRequest: (body) The playback stop info. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func reportPlaybackStopped(reportPlaybackStoppedRequest: ReportPlaybackStoppedRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = reportPlaybackStoppedWithRequestBuilder(reportPlaybackStoppedRequest: reportPlaybackStoppedRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports playback has stopped within a session. - - POST /Sessions/Playing/Stopped - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter reportPlaybackStoppedRequest: (body) The playback stop info. (optional) - - returns: RequestBuilder - */ - open class func reportPlaybackStoppedWithRequestBuilder(reportPlaybackStoppedRequest: ReportPlaybackStoppedRequest? = nil) -> RequestBuilder { - let localVariablePath = "/Sessions/Playing/Stopped" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: reportPlaybackStoppedRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/PluginsAPI.swift b/Sources/JellyfinAPI/APIs/PluginsAPI.swift deleted file mode 100644 index f7050d471..000000000 --- a/Sources/JellyfinAPI/APIs/PluginsAPI.swift +++ /dev/null @@ -1,548 +0,0 @@ -// -// PluginsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class PluginsAPI { - - /** - Disable a plugin. - - - parameter pluginId: (path) Plugin id. - - parameter version: (path) Plugin version. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func disablePlugin(pluginId: String, version: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = disablePluginWithRequestBuilder(pluginId: pluginId, version: version).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Disable a plugin. - - POST /Plugins/{pluginId}/{version}/Disable - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter pluginId: (path) Plugin id. - - parameter version: (path) Plugin version. - - returns: RequestBuilder - */ - open class func disablePluginWithRequestBuilder(pluginId: String, version: String) -> RequestBuilder { - var localVariablePath = "/Plugins/{pluginId}/{version}/Disable" - let pluginIdPreEscape = "\(APIHelper.mapValueToPathItem(pluginId))" - let pluginIdPostEscape = pluginIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{pluginId}", with: pluginIdPostEscape, options: .literal, range: nil) - let versionPreEscape = "\(APIHelper.mapValueToPathItem(version))" - let versionPostEscape = versionPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{version}", with: versionPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Enables a disabled plugin. - - - parameter pluginId: (path) Plugin id. - - parameter version: (path) Plugin version. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func enablePlugin(pluginId: String, version: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = enablePluginWithRequestBuilder(pluginId: pluginId, version: version).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Enables a disabled plugin. - - POST /Plugins/{pluginId}/{version}/Enable - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter pluginId: (path) Plugin id. - - parameter version: (path) Plugin version. - - returns: RequestBuilder - */ - open class func enablePluginWithRequestBuilder(pluginId: String, version: String) -> RequestBuilder { - var localVariablePath = "/Plugins/{pluginId}/{version}/Enable" - let pluginIdPreEscape = "\(APIHelper.mapValueToPathItem(pluginId))" - let pluginIdPostEscape = pluginIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{pluginId}", with: pluginIdPostEscape, options: .literal, range: nil) - let versionPreEscape = "\(APIHelper.mapValueToPathItem(version))" - let versionPostEscape = versionPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{version}", with: versionPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets plugin configuration. - - - parameter pluginId: (path) Plugin id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPluginConfiguration(pluginId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPluginConfigurationWithRequestBuilder(pluginId: pluginId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets plugin configuration. - - GET /Plugins/{pluginId}/Configuration - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter pluginId: (path) Plugin id. - - returns: RequestBuilder - */ - open class func getPluginConfigurationWithRequestBuilder(pluginId: String) -> RequestBuilder { - var localVariablePath = "/Plugins/{pluginId}/Configuration" - let pluginIdPreEscape = "\(APIHelper.mapValueToPathItem(pluginId))" - let pluginIdPostEscape = pluginIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{pluginId}", with: pluginIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a plugin's image. - - - parameter pluginId: (path) Plugin id. - - parameter version: (path) Plugin version. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPluginImage(pluginId: String, version: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPluginImageWithRequestBuilder(pluginId: pluginId, version: version).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a plugin's image. - - GET /Plugins/{pluginId}/{version}/Image - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter pluginId: (path) Plugin id. - - parameter version: (path) Plugin version. - - returns: RequestBuilder - */ - open class func getPluginImageWithRequestBuilder(pluginId: String, version: String) -> RequestBuilder { - var localVariablePath = "/Plugins/{pluginId}/{version}/Image" - let pluginIdPreEscape = "\(APIHelper.mapValueToPathItem(pluginId))" - let pluginIdPostEscape = pluginIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{pluginId}", with: pluginIdPostEscape, options: .literal, range: nil) - let versionPreEscape = "\(APIHelper.mapValueToPathItem(version))" - let versionPostEscape = versionPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{version}", with: versionPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a plugin's manifest. - - - parameter pluginId: (path) Plugin id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPluginManifest(pluginId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPluginManifestWithRequestBuilder(pluginId: pluginId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a plugin's manifest. - - POST /Plugins/{pluginId}/Manifest - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter pluginId: (path) Plugin id. - - returns: RequestBuilder - */ - open class func getPluginManifestWithRequestBuilder(pluginId: String) -> RequestBuilder { - var localVariablePath = "/Plugins/{pluginId}/Manifest" - let pluginIdPreEscape = "\(APIHelper.mapValueToPathItem(pluginId))" - let pluginIdPostEscape = pluginIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{pluginId}", with: pluginIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a list of currently installed plugins. - - - returns: AnyPublisher<[PluginInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPlugins() -> AnyPublisher<[PluginInfo], Error> { - var requestTask: RequestTask? - return Future<[PluginInfo], Error> { promise in - requestTask = getPluginsWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a list of currently installed plugins. - - GET /Plugins - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[PluginInfo]> - */ - open class func getPluginsWithRequestBuilder() -> RequestBuilder<[PluginInfo]> { - let localVariablePath = "/Plugins" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[PluginInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Uninstalls a plugin. - - - parameter pluginId: (path) Plugin id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(*, deprecated, message: "This operation is deprecated.") - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func uninstallPlugin(pluginId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = uninstallPluginWithRequestBuilder(pluginId: pluginId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Uninstalls a plugin. - - DELETE /Plugins/{pluginId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter pluginId: (path) Plugin id. - - returns: RequestBuilder - */ - @available(*, deprecated, message: "This operation is deprecated.") - open class func uninstallPluginWithRequestBuilder(pluginId: String) -> RequestBuilder { - var localVariablePath = "/Plugins/{pluginId}" - let pluginIdPreEscape = "\(APIHelper.mapValueToPathItem(pluginId))" - let pluginIdPostEscape = pluginIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{pluginId}", with: pluginIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Uninstalls a plugin by version. - - - parameter pluginId: (path) Plugin id. - - parameter version: (path) Plugin version. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func uninstallPluginByVersion(pluginId: String, version: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = uninstallPluginByVersionWithRequestBuilder(pluginId: pluginId, version: version).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Uninstalls a plugin by version. - - DELETE /Plugins/{pluginId}/{version} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter pluginId: (path) Plugin id. - - parameter version: (path) Plugin version. - - returns: RequestBuilder - */ - open class func uninstallPluginByVersionWithRequestBuilder(pluginId: String, version: String) -> RequestBuilder { - var localVariablePath = "/Plugins/{pluginId}/{version}" - let pluginIdPreEscape = "\(APIHelper.mapValueToPathItem(pluginId))" - let pluginIdPostEscape = pluginIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{pluginId}", with: pluginIdPostEscape, options: .literal, range: nil) - let versionPreEscape = "\(APIHelper.mapValueToPathItem(version))" - let versionPostEscape = versionPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{version}", with: versionPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates plugin configuration. - - - parameter pluginId: (path) Plugin id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updatePluginConfiguration(pluginId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updatePluginConfigurationWithRequestBuilder(pluginId: pluginId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates plugin configuration. - - POST /Plugins/{pluginId}/Configuration - - Accepts plugin configuration as JSON body. - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter pluginId: (path) Plugin id. - - returns: RequestBuilder - */ - open class func updatePluginConfigurationWithRequestBuilder(pluginId: String) -> RequestBuilder { - var localVariablePath = "/Plugins/{pluginId}/Configuration" - let pluginIdPreEscape = "\(APIHelper.mapValueToPathItem(pluginId))" - let pluginIdPostEscape = pluginIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{pluginId}", with: pluginIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/QuickConnectAPI.swift b/Sources/JellyfinAPI/APIs/QuickConnectAPI.swift deleted file mode 100644 index f74779ae8..000000000 --- a/Sources/JellyfinAPI/APIs/QuickConnectAPI.swift +++ /dev/null @@ -1,226 +0,0 @@ -// -// QuickConnectAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class QuickConnectAPI { - - /** - Authorizes a pending quick connect request. - - - parameter code: (query) Quick connect code to authorize. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func authorize(code: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = authorizeWithRequestBuilder(code: code).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Authorizes a pending quick connect request. - - POST /QuickConnect/Authorize - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter code: (query) Quick connect code to authorize. - - returns: RequestBuilder - */ - open class func authorizeWithRequestBuilder(code: String) -> RequestBuilder { - let localVariablePath = "/QuickConnect/Authorize" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "code": code.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Attempts to retrieve authentication information. - - - parameter secret: (query) Secret previously returned from the Initiate endpoint. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func connect(secret: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = connectWithRequestBuilder(secret: secret).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Attempts to retrieve authentication information. - - GET /QuickConnect/Connect - - parameter secret: (query) Secret previously returned from the Initiate endpoint. - - returns: RequestBuilder - */ - open class func connectWithRequestBuilder(secret: String) -> RequestBuilder { - let localVariablePath = "/QuickConnect/Connect" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "secret": secret.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the current quick connect state. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getEnabled() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getEnabledWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the current quick connect state. - - GET /QuickConnect/Enabled - - returns: RequestBuilder - */ - open class func getEnabledWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/QuickConnect/Enabled" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Initiate a new quick connect request. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func initiate() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = initiateWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Initiate a new quick connect request. - - GET /QuickConnect/Initiate - - returns: RequestBuilder - */ - open class func initiateWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/QuickConnect/Initiate" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/RemoteImageAPI.swift b/Sources/JellyfinAPI/APIs/RemoteImageAPI.swift deleted file mode 100644 index 6b41a7d49..000000000 --- a/Sources/JellyfinAPI/APIs/RemoteImageAPI.swift +++ /dev/null @@ -1,213 +0,0 @@ -// -// RemoteImageAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class RemoteImageAPI { - - /** - Downloads a remote image for an item. - - - parameter itemId: (path) Item Id. - - parameter type: (query) The image type. - - parameter imageUrl: (query) The image url. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func downloadRemoteImage(itemId: String, type: ImageType, imageUrl: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = downloadRemoteImageWithRequestBuilder(itemId: itemId, type: type, imageUrl: imageUrl).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Downloads a remote image for an item. - - POST /Items/{itemId}/RemoteImages/Download - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item Id. - - parameter type: (query) The image type. - - parameter imageUrl: (query) The image url. (optional) - - returns: RequestBuilder - */ - open class func downloadRemoteImageWithRequestBuilder(itemId: String, type: ImageType, imageUrl: String? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/RemoteImages/Download" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "type": type.encodeToJSON(), - "imageUrl": imageUrl?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available remote image providers for an item. - - - parameter itemId: (path) Item Id. - - returns: AnyPublisher<[ImageProviderInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRemoteImageProviders(itemId: String) -> AnyPublisher<[ImageProviderInfo], Error> { - var requestTask: RequestTask? - return Future<[ImageProviderInfo], Error> { promise in - requestTask = getRemoteImageProvidersWithRequestBuilder(itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available remote image providers for an item. - - GET /Items/{itemId}/RemoteImages/Providers - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item Id. - - returns: RequestBuilder<[ImageProviderInfo]> - */ - open class func getRemoteImageProvidersWithRequestBuilder(itemId: String) -> RequestBuilder<[ImageProviderInfo]> { - var localVariablePath = "/Items/{itemId}/RemoteImages/Providers" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[ImageProviderInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets available remote images for an item. - - - parameter itemId: (path) Item Id. - - parameter type: (query) The image type. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter providerName: (query) Optional. The image provider to use. (optional) - - parameter includeAllLanguages: (query) Optional. Include all languages. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRemoteImages(itemId: String, type: ImageType? = nil, startIndex: Int? = nil, limit: Int? = nil, providerName: String? = nil, includeAllLanguages: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRemoteImagesWithRequestBuilder(itemId: itemId, type: type, startIndex: startIndex, limit: limit, providerName: providerName, includeAllLanguages: includeAllLanguages).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets available remote images for an item. - - GET /Items/{itemId}/RemoteImages - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) Item Id. - - parameter type: (query) The image type. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter providerName: (query) Optional. The image provider to use. (optional) - - parameter includeAllLanguages: (query) Optional. Include all languages. (optional, default to false) - - returns: RequestBuilder - */ - open class func getRemoteImagesWithRequestBuilder(itemId: String, type: ImageType? = nil, startIndex: Int? = nil, limit: Int? = nil, providerName: String? = nil, includeAllLanguages: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/RemoteImages" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "type": type?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "providerName": providerName?.encodeToJSON(), - "includeAllLanguages": includeAllLanguages?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/ScheduledTasksAPI.swift b/Sources/JellyfinAPI/APIs/ScheduledTasksAPI.swift deleted file mode 100644 index 80429cb22..000000000 --- a/Sources/JellyfinAPI/APIs/ScheduledTasksAPI.swift +++ /dev/null @@ -1,307 +0,0 @@ -// -// ScheduledTasksAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class ScheduledTasksAPI { - - /** - Get task by id. - - - parameter taskId: (path) Task Id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getTask(taskId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getTaskWithRequestBuilder(taskId: taskId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get task by id. - - GET /ScheduledTasks/{taskId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter taskId: (path) Task Id. - - returns: RequestBuilder - */ - open class func getTaskWithRequestBuilder(taskId: String) -> RequestBuilder { - var localVariablePath = "/ScheduledTasks/{taskId}" - let taskIdPreEscape = "\(APIHelper.mapValueToPathItem(taskId))" - let taskIdPostEscape = taskIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{taskId}", with: taskIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get tasks. - - - parameter isHidden: (query) Optional filter tasks that are hidden, or not. (optional) - - parameter isEnabled: (query) Optional filter tasks that are enabled, or not. (optional) - - returns: AnyPublisher<[TaskInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getTasks(isHidden: Bool? = nil, isEnabled: Bool? = nil) -> AnyPublisher<[TaskInfo], Error> { - var requestTask: RequestTask? - return Future<[TaskInfo], Error> { promise in - requestTask = getTasksWithRequestBuilder(isHidden: isHidden, isEnabled: isEnabled).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get tasks. - - GET /ScheduledTasks - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter isHidden: (query) Optional filter tasks that are hidden, or not. (optional) - - parameter isEnabled: (query) Optional filter tasks that are enabled, or not. (optional) - - returns: RequestBuilder<[TaskInfo]> - */ - open class func getTasksWithRequestBuilder(isHidden: Bool? = nil, isEnabled: Bool? = nil) -> RequestBuilder<[TaskInfo]> { - let localVariablePath = "/ScheduledTasks" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "isHidden": isHidden?.encodeToJSON(), - "isEnabled": isEnabled?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[TaskInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Start specified task. - - - parameter taskId: (path) Task Id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func startTask(taskId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = startTaskWithRequestBuilder(taskId: taskId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Start specified task. - - POST /ScheduledTasks/Running/{taskId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter taskId: (path) Task Id. - - returns: RequestBuilder - */ - open class func startTaskWithRequestBuilder(taskId: String) -> RequestBuilder { - var localVariablePath = "/ScheduledTasks/Running/{taskId}" - let taskIdPreEscape = "\(APIHelper.mapValueToPathItem(taskId))" - let taskIdPostEscape = taskIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{taskId}", with: taskIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Stop specified task. - - - parameter taskId: (path) Task Id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func stopTask(taskId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = stopTaskWithRequestBuilder(taskId: taskId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Stop specified task. - - DELETE /ScheduledTasks/Running/{taskId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter taskId: (path) Task Id. - - returns: RequestBuilder - */ - open class func stopTaskWithRequestBuilder(taskId: String) -> RequestBuilder { - var localVariablePath = "/ScheduledTasks/Running/{taskId}" - let taskIdPreEscape = "\(APIHelper.mapValueToPathItem(taskId))" - let taskIdPostEscape = taskIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{taskId}", with: taskIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Update specified task triggers. - - - parameter taskId: (path) Task Id. - - parameter taskTriggerInfo: (body) Triggers. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateTask(taskId: String, taskTriggerInfo: [TaskTriggerInfo]) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateTaskWithRequestBuilder(taskId: taskId, taskTriggerInfo: taskTriggerInfo).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Update specified task triggers. - - POST /ScheduledTasks/{taskId}/Triggers - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter taskId: (path) Task Id. - - parameter taskTriggerInfo: (body) Triggers. - - returns: RequestBuilder - */ - open class func updateTaskWithRequestBuilder(taskId: String, taskTriggerInfo: [TaskTriggerInfo]) -> RequestBuilder { - var localVariablePath = "/ScheduledTasks/{taskId}/Triggers" - let taskIdPreEscape = "\(APIHelper.mapValueToPathItem(taskId))" - let taskIdPostEscape = taskIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{taskId}", with: taskIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: taskTriggerInfo) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/SearchAPI.swift b/Sources/JellyfinAPI/APIs/SearchAPI.swift deleted file mode 100644 index ef2621f78..000000000 --- a/Sources/JellyfinAPI/APIs/SearchAPI.swift +++ /dev/null @@ -1,125 +0,0 @@ -// -// SearchAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class SearchAPI { - - /** - Gets the search hint result. - - - parameter searchTerm: (query) The search term to filter on. - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter userId: (query) Optional. Supply a user id to search within a user's library or omit to search all. (optional) - - parameter includeItemTypes: (query) If specified, only results with the specified item types are returned. This allows multiple, comma delimeted. (optional) - - parameter excludeItemTypes: (query) If specified, results with these item types are filtered out. This allows multiple, comma delimeted. (optional) - - parameter mediaTypes: (query) If specified, only results with the specified media types are returned. This allows multiple, comma delimeted. (optional) - - parameter parentId: (query) If specified, only children of the parent are returned. (optional) - - parameter isMovie: (query) Optional filter for movies. (optional) - - parameter isSeries: (query) Optional filter for series. (optional) - - parameter isNews: (query) Optional filter for news. (optional) - - parameter isKids: (query) Optional filter for kids. (optional) - - parameter isSports: (query) Optional filter for sports. (optional) - - parameter includePeople: (query) Optional filter whether to include people. (optional, default to true) - - parameter includeMedia: (query) Optional filter whether to include media. (optional, default to true) - - parameter includeGenres: (query) Optional filter whether to include genres. (optional, default to true) - - parameter includeStudios: (query) Optional filter whether to include studios. (optional, default to true) - - parameter includeArtists: (query) Optional filter whether to include artists. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func callGet(searchTerm: String, startIndex: Int? = nil, limit: Int? = nil, userId: String? = nil, includeItemTypes: [BaseItemKind]? = nil, excludeItemTypes: [BaseItemKind]? = 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) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = callGetWithRequestBuilder(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).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the search hint result. - - GET /Search/Hints - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter searchTerm: (query) The search term to filter on. - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter userId: (query) Optional. Supply a user id to search within a user's library or omit to search all. (optional) - - parameter includeItemTypes: (query) If specified, only results with the specified item types are returned. This allows multiple, comma delimeted. (optional) - - parameter excludeItemTypes: (query) If specified, results with these item types are filtered out. This allows multiple, comma delimeted. (optional) - - parameter mediaTypes: (query) If specified, only results with the specified media types are returned. This allows multiple, comma delimeted. (optional) - - parameter parentId: (query) If specified, only children of the parent are returned. (optional) - - parameter isMovie: (query) Optional filter for movies. (optional) - - parameter isSeries: (query) Optional filter for series. (optional) - - parameter isNews: (query) Optional filter for news. (optional) - - parameter isKids: (query) Optional filter for kids. (optional) - - parameter isSports: (query) Optional filter for sports. (optional) - - parameter includePeople: (query) Optional filter whether to include people. (optional, default to true) - - parameter includeMedia: (query) Optional filter whether to include media. (optional, default to true) - - parameter includeGenres: (query) Optional filter whether to include genres. (optional, default to true) - - parameter includeStudios: (query) Optional filter whether to include studios. (optional, default to true) - - parameter includeArtists: (query) Optional filter whether to include artists. (optional, default to true) - - returns: RequestBuilder - */ - open class func callGetWithRequestBuilder(searchTerm: String, startIndex: Int? = nil, limit: Int? = nil, userId: String? = nil, includeItemTypes: [BaseItemKind]? = nil, excludeItemTypes: [BaseItemKind]? = 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) -> RequestBuilder { - let localVariablePath = "/Search/Hints" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "searchTerm": searchTerm.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "mediaTypes": mediaTypes?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "isMovie": isMovie?.encodeToJSON(), - "isSeries": isSeries?.encodeToJSON(), - "isNews": isNews?.encodeToJSON(), - "isKids": isKids?.encodeToJSON(), - "isSports": isSports?.encodeToJSON(), - "includePeople": includePeople?.encodeToJSON(), - "includeMedia": includeMedia?.encodeToJSON(), - "includeGenres": includeGenres?.encodeToJSON(), - "includeStudios": includeStudios?.encodeToJSON(), - "includeArtists": includeArtists?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/SessionAPI.swift b/Sources/JellyfinAPI/APIs/SessionAPI.swift deleted file mode 100644 index b2efa5165..000000000 --- a/Sources/JellyfinAPI/APIs/SessionAPI.swift +++ /dev/null @@ -1,1011 +0,0 @@ -// -// SessionAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class SessionAPI { - - /** - Adds an additional user to a session. - - - parameter sessionId: (path) The session id. - - parameter userId: (path) The user id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func addUserToSession(sessionId: String, userId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = addUserToSessionWithRequestBuilder(sessionId: sessionId, userId: userId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Adds an additional user to a session. - - POST /Sessions/{sessionId}/User/{userId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter sessionId: (path) The session id. - - parameter userId: (path) The user id. - - returns: RequestBuilder - */ - open class func addUserToSessionWithRequestBuilder(sessionId: String, userId: String) -> RequestBuilder { - var localVariablePath = "/Sessions/{sessionId}/User/{userId}" - let sessionIdPreEscape = "\(APIHelper.mapValueToPathItem(sessionId))" - let sessionIdPostEscape = sessionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{sessionId}", with: sessionIdPostEscape, options: .literal, range: nil) - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Instructs a session to browse to an item or view. - - - parameter sessionId: (path) The session Id. - - parameter itemType: (query) The type of item to browse to. - - parameter itemId: (query) The Id of the item. - - parameter itemName: (query) The name of the item. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func displayContent(sessionId: String, itemType: BaseItemKind, itemId: String, itemName: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = displayContentWithRequestBuilder(sessionId: sessionId, itemType: itemType, itemId: itemId, itemName: itemName).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Instructs a session to browse to an item or view. - - POST /Sessions/{sessionId}/Viewing - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter sessionId: (path) The session Id. - - parameter itemType: (query) The type of item to browse to. - - parameter itemId: (query) The Id of the item. - - parameter itemName: (query) The name of the item. - - returns: RequestBuilder - */ - open class func displayContentWithRequestBuilder(sessionId: String, itemType: BaseItemKind, itemId: String, itemName: String) -> RequestBuilder { - var localVariablePath = "/Sessions/{sessionId}/Viewing" - let sessionIdPreEscape = "\(APIHelper.mapValueToPathItem(sessionId))" - let sessionIdPostEscape = sessionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{sessionId}", with: sessionIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "itemType": itemType.encodeToJSON(), - "itemId": itemId.encodeToJSON(), - "itemName": itemName.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get all auth providers. - - - returns: AnyPublisher<[NameIdPair], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getAuthProviders() -> AnyPublisher<[NameIdPair], Error> { - var requestTask: RequestTask? - return Future<[NameIdPair], Error> { promise in - requestTask = getAuthProvidersWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get all auth providers. - - GET /Auth/Providers - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[NameIdPair]> - */ - open class func getAuthProvidersWithRequestBuilder() -> RequestBuilder<[NameIdPair]> { - let localVariablePath = "/Auth/Providers" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[NameIdPair]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get all password reset providers. - - - returns: AnyPublisher<[NameIdPair], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPasswordResetProviders() -> AnyPublisher<[NameIdPair], Error> { - var requestTask: RequestTask? - return Future<[NameIdPair], Error> { promise in - requestTask = getPasswordResetProvidersWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get all password reset providers. - - GET /Auth/PasswordResetProviders - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[NameIdPair]> - */ - open class func getPasswordResetProvidersWithRequestBuilder() -> RequestBuilder<[NameIdPair]> { - let localVariablePath = "/Auth/PasswordResetProviders" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[NameIdPair]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a list of sessions. - - - parameter controllableByUserId: (query) Filter by sessions that a given user is allowed to remote control. (optional) - - parameter deviceId: (query) Filter by device Id. (optional) - - parameter activeWithinSeconds: (query) Optional. Filter by sessions that were active in the last n seconds. (optional) - - returns: AnyPublisher<[SessionInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSessions(controllableByUserId: String? = nil, deviceId: String? = nil, activeWithinSeconds: Int? = nil) -> AnyPublisher<[SessionInfo], Error> { - var requestTask: RequestTask? - return Future<[SessionInfo], Error> { promise in - requestTask = getSessionsWithRequestBuilder(controllableByUserId: controllableByUserId, deviceId: deviceId, activeWithinSeconds: activeWithinSeconds).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a list of sessions. - - GET /Sessions - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter controllableByUserId: (query) Filter by sessions that a given user is allowed to remote control. (optional) - - parameter deviceId: (query) Filter by device Id. (optional) - - parameter activeWithinSeconds: (query) Optional. Filter by sessions that were active in the last n seconds. (optional) - - returns: RequestBuilder<[SessionInfo]> - */ - open class func getSessionsWithRequestBuilder(controllableByUserId: String? = nil, deviceId: String? = nil, activeWithinSeconds: Int? = nil) -> RequestBuilder<[SessionInfo]> { - let localVariablePath = "/Sessions" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "controllableByUserId": controllableByUserId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "activeWithinSeconds": activeWithinSeconds?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[SessionInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Instructs a session to play an item. - - - parameter sessionId: (path) The session id. - - parameter playCommand: (query) The type of play command to issue (PlayNow, PlayNext, PlayLast). Clients who have not yet implemented play next and play last may play now. - - parameter itemIds: (query) The ids of the items to play, comma delimited. - - parameter startPositionTicks: (query) The starting position of the first item. (optional) - - parameter mediaSourceId: (query) Optional. The media source id. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to play. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to play. (optional) - - parameter startIndex: (query) Optional. The start index. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func play(sessionId: String, playCommand: PlayCommand, itemIds: [String], startPositionTicks: Int64? = nil, mediaSourceId: String? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, startIndex: Int? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = playWithRequestBuilder(sessionId: sessionId, playCommand: playCommand, itemIds: itemIds, startPositionTicks: startPositionTicks, mediaSourceId: mediaSourceId, audioStreamIndex: audioStreamIndex, subtitleStreamIndex: subtitleStreamIndex, startIndex: startIndex).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Instructs a session to play an item. - - POST /Sessions/{sessionId}/Playing - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter sessionId: (path) The session id. - - parameter playCommand: (query) The type of play command to issue (PlayNow, PlayNext, PlayLast). Clients who have not yet implemented play next and play last may play now. - - parameter itemIds: (query) The ids of the items to play, comma delimited. - - parameter startPositionTicks: (query) The starting position of the first item. (optional) - - parameter mediaSourceId: (query) Optional. The media source id. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to play. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to play. (optional) - - parameter startIndex: (query) Optional. The start index. (optional) - - returns: RequestBuilder - */ - open class func playWithRequestBuilder(sessionId: String, playCommand: PlayCommand, itemIds: [String], startPositionTicks: Int64? = nil, mediaSourceId: String? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, startIndex: Int? = nil) -> RequestBuilder { - var localVariablePath = "/Sessions/{sessionId}/Playing" - let sessionIdPreEscape = "\(APIHelper.mapValueToPathItem(sessionId))" - let sessionIdPostEscape = sessionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{sessionId}", with: sessionIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "playCommand": playCommand.encodeToJSON(), - "itemIds": itemIds.encodeToJSON(), - "startPositionTicks": startPositionTicks?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates capabilities for a device. - - - parameter id: (query) The session id. (optional) - - parameter playableMediaTypes: (query) A list of playable media types, comma delimited. Audio, Video, Book, Photo. (optional) - - parameter supportedCommands: (query) A list of supported remote control commands, comma delimited. (optional) - - parameter supportsMediaControl: (query) Determines whether media can be played remotely.. (optional, default to false) - - parameter supportsSync: (query) Determines whether sync is supported. (optional, default to false) - - parameter supportsPersistentIdentifier: (query) Determines whether the device supports a unique identifier. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func postCapabilities(id: String? = nil, playableMediaTypes: [String]? = nil, supportedCommands: [GeneralCommandType]? = nil, supportsMediaControl: Bool? = nil, supportsSync: Bool? = nil, supportsPersistentIdentifier: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = postCapabilitiesWithRequestBuilder(id: id, playableMediaTypes: playableMediaTypes, supportedCommands: supportedCommands, supportsMediaControl: supportsMediaControl, supportsSync: supportsSync, supportsPersistentIdentifier: supportsPersistentIdentifier).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates capabilities for a device. - - POST /Sessions/Capabilities - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (query) The session id. (optional) - - parameter playableMediaTypes: (query) A list of playable media types, comma delimited. Audio, Video, Book, Photo. (optional) - - parameter supportedCommands: (query) A list of supported remote control commands, comma delimited. (optional) - - parameter supportsMediaControl: (query) Determines whether media can be played remotely.. (optional, default to false) - - parameter supportsSync: (query) Determines whether sync is supported. (optional, default to false) - - parameter supportsPersistentIdentifier: (query) Determines whether the device supports a unique identifier. (optional, default to true) - - returns: RequestBuilder - */ - open class func postCapabilitiesWithRequestBuilder(id: String? = nil, playableMediaTypes: [String]? = nil, supportedCommands: [GeneralCommandType]? = nil, supportsMediaControl: Bool? = nil, supportsSync: Bool? = nil, supportsPersistentIdentifier: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Sessions/Capabilities" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id?.encodeToJSON(), - "playableMediaTypes": playableMediaTypes?.encodeToJSON(), - "supportedCommands": supportedCommands?.encodeToJSON(), - "supportsMediaControl": supportsMediaControl?.encodeToJSON(), - "supportsSync": supportsSync?.encodeToJSON(), - "supportsPersistentIdentifier": supportsPersistentIdentifier?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates capabilities for a device. - - - parameter postFullCapabilitiesRequest: (body) The MediaBrowser.Model.Session.ClientCapabilities. - - parameter id: (query) The session id. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func postFullCapabilities(postFullCapabilitiesRequest: PostFullCapabilitiesRequest, id: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = postFullCapabilitiesWithRequestBuilder(postFullCapabilitiesRequest: postFullCapabilitiesRequest, id: id).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates capabilities for a device. - - POST /Sessions/Capabilities/Full - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter postFullCapabilitiesRequest: (body) The MediaBrowser.Model.Session.ClientCapabilities. - - parameter id: (query) The session id. (optional) - - returns: RequestBuilder - */ - open class func postFullCapabilitiesWithRequestBuilder(postFullCapabilitiesRequest: PostFullCapabilitiesRequest, id: String? = nil) -> RequestBuilder { - let localVariablePath = "/Sessions/Capabilities/Full" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: postFullCapabilitiesRequest) - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "id": id?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Removes an additional user from a session. - - - parameter sessionId: (path) The session id. - - parameter userId: (path) The user id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func removeUserFromSession(sessionId: String, userId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = removeUserFromSessionWithRequestBuilder(sessionId: sessionId, userId: userId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Removes an additional user from a session. - - DELETE /Sessions/{sessionId}/User/{userId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter sessionId: (path) The session id. - - parameter userId: (path) The user id. - - returns: RequestBuilder - */ - open class func removeUserFromSessionWithRequestBuilder(sessionId: String, userId: String) -> RequestBuilder { - var localVariablePath = "/Sessions/{sessionId}/User/{userId}" - let sessionIdPreEscape = "\(APIHelper.mapValueToPathItem(sessionId))" - let sessionIdPostEscape = sessionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{sessionId}", with: sessionIdPostEscape, options: .literal, range: nil) - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports that a session has ended. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func reportSessionEnded() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = reportSessionEndedWithRequestBuilder().execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports that a session has ended. - - POST /Sessions/Logout - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func reportSessionEndedWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Sessions/Logout" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Reports that a session is viewing an item. - - - parameter itemId: (query) The item id. - - parameter sessionId: (query) The session id. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func reportViewing(itemId: String, sessionId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = reportViewingWithRequestBuilder(itemId: itemId, sessionId: sessionId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Reports that a session is viewing an item. - - POST /Sessions/Viewing - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (query) The item id. - - parameter sessionId: (query) The session id. (optional) - - returns: RequestBuilder - */ - open class func reportViewingWithRequestBuilder(itemId: String, sessionId: String? = nil) -> RequestBuilder { - let localVariablePath = "/Sessions/Viewing" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "sessionId": sessionId?.encodeToJSON(), - "itemId": itemId.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Issues a full general command to a client. - - - parameter sessionId: (path) The session id. - - parameter sendFullGeneralCommandRequest: (body) The MediaBrowser.Model.Session.GeneralCommand. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func sendFullGeneralCommand(sessionId: String, sendFullGeneralCommandRequest: SendFullGeneralCommandRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = sendFullGeneralCommandWithRequestBuilder(sessionId: sessionId, sendFullGeneralCommandRequest: sendFullGeneralCommandRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Issues a full general command to a client. - - POST /Sessions/{sessionId}/Command - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter sessionId: (path) The session id. - - parameter sendFullGeneralCommandRequest: (body) The MediaBrowser.Model.Session.GeneralCommand. - - returns: RequestBuilder - */ - open class func sendFullGeneralCommandWithRequestBuilder(sessionId: String, sendFullGeneralCommandRequest: SendFullGeneralCommandRequest) -> RequestBuilder { - var localVariablePath = "/Sessions/{sessionId}/Command" - let sessionIdPreEscape = "\(APIHelper.mapValueToPathItem(sessionId))" - let sessionIdPostEscape = sessionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{sessionId}", with: sessionIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: sendFullGeneralCommandRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Issues a general command to a client. - - - parameter sessionId: (path) The session id. - - parameter command: (path) The command to send. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func sendGeneralCommand(sessionId: String, command: GeneralCommandType) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = sendGeneralCommandWithRequestBuilder(sessionId: sessionId, command: command).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Issues a general command to a client. - - POST /Sessions/{sessionId}/Command/{command} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter sessionId: (path) The session id. - - parameter command: (path) The command to send. - - returns: RequestBuilder - */ - open class func sendGeneralCommandWithRequestBuilder(sessionId: String, command: GeneralCommandType) -> RequestBuilder { - var localVariablePath = "/Sessions/{sessionId}/Command/{command}" - let sessionIdPreEscape = "\(APIHelper.mapValueToPathItem(sessionId))" - let sessionIdPostEscape = sessionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{sessionId}", with: sessionIdPostEscape, options: .literal, range: nil) - let commandPreEscape = "\(APIHelper.mapValueToPathItem(command))" - let commandPostEscape = commandPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{command}", with: commandPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Issues a command to a client to display a message to the user. - - - parameter sessionId: (path) The session id. - - parameter sendMessageCommandRequest: (body) The MediaBrowser.Model.Session.MessageCommand object containing Header, Message Text, and TimeoutMs. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func sendMessageCommand(sessionId: String, sendMessageCommandRequest: SendMessageCommandRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = sendMessageCommandWithRequestBuilder(sessionId: sessionId, sendMessageCommandRequest: sendMessageCommandRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Issues a command to a client to display a message to the user. - - POST /Sessions/{sessionId}/Message - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter sessionId: (path) The session id. - - parameter sendMessageCommandRequest: (body) The MediaBrowser.Model.Session.MessageCommand object containing Header, Message Text, and TimeoutMs. - - returns: RequestBuilder - */ - open class func sendMessageCommandWithRequestBuilder(sessionId: String, sendMessageCommandRequest: SendMessageCommandRequest) -> RequestBuilder { - var localVariablePath = "/Sessions/{sessionId}/Message" - let sessionIdPreEscape = "\(APIHelper.mapValueToPathItem(sessionId))" - let sessionIdPostEscape = sessionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{sessionId}", with: sessionIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: sendMessageCommandRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Issues a playstate command to a client. - - - parameter sessionId: (path) The session id. - - parameter command: (path) The MediaBrowser.Model.Session.PlaystateCommand. - - parameter seekPositionTicks: (query) The optional position ticks. (optional) - - parameter controllingUserId: (query) The optional controlling user id. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func sendPlaystateCommand(sessionId: String, command: PlaystateCommand, seekPositionTicks: Int64? = nil, controllingUserId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = sendPlaystateCommandWithRequestBuilder(sessionId: sessionId, command: command, seekPositionTicks: seekPositionTicks, controllingUserId: controllingUserId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Issues a playstate command to a client. - - POST /Sessions/{sessionId}/Playing/{command} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter sessionId: (path) The session id. - - parameter command: (path) The MediaBrowser.Model.Session.PlaystateCommand. - - parameter seekPositionTicks: (query) The optional position ticks. (optional) - - parameter controllingUserId: (query) The optional controlling user id. (optional) - - returns: RequestBuilder - */ - open class func sendPlaystateCommandWithRequestBuilder(sessionId: String, command: PlaystateCommand, seekPositionTicks: Int64? = nil, controllingUserId: String? = nil) -> RequestBuilder { - var localVariablePath = "/Sessions/{sessionId}/Playing/{command}" - let sessionIdPreEscape = "\(APIHelper.mapValueToPathItem(sessionId))" - let sessionIdPostEscape = sessionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{sessionId}", with: sessionIdPostEscape, options: .literal, range: nil) - let commandPreEscape = "\(APIHelper.mapValueToPathItem(command))" - let commandPostEscape = commandPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{command}", with: commandPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "seekPositionTicks": seekPositionTicks?.encodeToJSON(), - "controllingUserId": controllingUserId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Issues a system command to a client. - - - parameter sessionId: (path) The session id. - - parameter command: (path) The command to send. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func sendSystemCommand(sessionId: String, command: GeneralCommandType) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = sendSystemCommandWithRequestBuilder(sessionId: sessionId, command: command).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Issues a system command to a client. - - POST /Sessions/{sessionId}/System/{command} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter sessionId: (path) The session id. - - parameter command: (path) The command to send. - - returns: RequestBuilder - */ - open class func sendSystemCommandWithRequestBuilder(sessionId: String, command: GeneralCommandType) -> RequestBuilder { - var localVariablePath = "/Sessions/{sessionId}/System/{command}" - let sessionIdPreEscape = "\(APIHelper.mapValueToPathItem(sessionId))" - let sessionIdPostEscape = sessionIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{sessionId}", with: sessionIdPostEscape, options: .literal, range: nil) - let commandPreEscape = "\(APIHelper.mapValueToPathItem(command))" - let commandPostEscape = commandPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{command}", with: commandPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/StartupAPI.swift b/Sources/JellyfinAPI/APIs/StartupAPI.swift deleted file mode 100644 index e797ba2dc..000000000 --- a/Sources/JellyfinAPI/APIs/StartupAPI.swift +++ /dev/null @@ -1,387 +0,0 @@ -// -// StartupAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class StartupAPI { - - /** - Completes the startup wizard. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func completeWizard() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = completeWizardWithRequestBuilder().execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Completes the startup wizard. - - POST /Startup/Complete - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func completeWizardWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Startup/Complete" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the first user. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getFirstUser() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getFirstUserWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the first user. - - GET /Startup/User - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getFirstUserWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Startup/User" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the first user. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getFirstUser2() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getFirstUser2WithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the first user. - - GET /Startup/FirstUser - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getFirstUser2WithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Startup/FirstUser" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the initial startup wizard configuration. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getStartupConfiguration() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getStartupConfigurationWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the initial startup wizard configuration. - - GET /Startup/Configuration - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getStartupConfigurationWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Startup/Configuration" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Sets remote access and UPnP. - - - parameter setRemoteAccessRequest: (body) The startup remote access dto. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func setRemoteAccess(setRemoteAccessRequest: SetRemoteAccessRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = setRemoteAccessWithRequestBuilder(setRemoteAccessRequest: setRemoteAccessRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Sets remote access and UPnP. - - POST /Startup/RemoteAccess - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter setRemoteAccessRequest: (body) The startup remote access dto. - - returns: RequestBuilder - */ - open class func setRemoteAccessWithRequestBuilder(setRemoteAccessRequest: SetRemoteAccessRequest) -> RequestBuilder { - let localVariablePath = "/Startup/RemoteAccess" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: setRemoteAccessRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Sets the initial startup wizard configuration. - - - parameter updateInitialConfigurationRequest: (body) The updated startup configuration. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateInitialConfiguration(updateInitialConfigurationRequest: UpdateInitialConfigurationRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateInitialConfigurationWithRequestBuilder(updateInitialConfigurationRequest: updateInitialConfigurationRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Sets the initial startup wizard configuration. - - POST /Startup/Configuration - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter updateInitialConfigurationRequest: (body) The updated startup configuration. - - returns: RequestBuilder - */ - open class func updateInitialConfigurationWithRequestBuilder(updateInitialConfigurationRequest: UpdateInitialConfigurationRequest) -> RequestBuilder { - let localVariablePath = "/Startup/Configuration" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateInitialConfigurationRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Sets the user name and password. - - - parameter updateStartupUserRequest: (body) The DTO containing username and password. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateStartupUser(updateStartupUserRequest: UpdateStartupUserRequest? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateStartupUserWithRequestBuilder(updateStartupUserRequest: updateStartupUserRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Sets the user name and password. - - POST /Startup/User - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter updateStartupUserRequest: (body) The DTO containing username and password. (optional) - - returns: RequestBuilder - */ - open class func updateStartupUserWithRequestBuilder(updateStartupUserRequest: UpdateStartupUserRequest? = nil) -> RequestBuilder { - let localVariablePath = "/Startup/User" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateStartupUserRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/StudiosAPI.swift b/Sources/JellyfinAPI/APIs/StudiosAPI.swift deleted file mode 100644 index 485a1a7f6..000000000 --- a/Sources/JellyfinAPI/APIs/StudiosAPI.swift +++ /dev/null @@ -1,184 +0,0 @@ -// -// StudiosAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class StudiosAPI { - - /** - Gets a studio by name. - - - parameter name: (path) Studio name. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getStudio(name: String, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getStudioWithRequestBuilder(name: name, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a studio by name. - - GET /Studios/{name} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (path) Studio name. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: RequestBuilder - */ - open class func getStudioWithRequestBuilder(name: String, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/Studios/{name}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets all studios from a given item, folder, or the entire library. - - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) Optional. Search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter userId: (query) User id. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - parameter enableTotalRecordCount: (query) Total record count. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getStudios(startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, isFavorite: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getStudiosWithRequestBuilder(startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, isFavorite: isFavorite, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, userId: userId, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, enableImages: enableImages, enableTotalRecordCount: enableTotalRecordCount).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all studios from a given item, folder, or the entire library. - - GET /Studios - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter searchTerm: (query) Optional. Search term. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter userId: (query) User id. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - parameter enableTotalRecordCount: (query) Total record count. (optional, default to true) - - returns: RequestBuilder - */ - open class func getStudiosWithRequestBuilder(startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, isFavorite: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Studios" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "searchTerm": searchTerm?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "nameStartsWithOrGreater": nameStartsWithOrGreater?.encodeToJSON(), - "nameStartsWith": nameStartsWith?.encodeToJSON(), - "nameLessThan": nameLessThan?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/SubtitleAPI.swift b/Sources/JellyfinAPI/APIs/SubtitleAPI.swift deleted file mode 100644 index fd65b03ea..000000000 --- a/Sources/JellyfinAPI/APIs/SubtitleAPI.swift +++ /dev/null @@ -1,700 +0,0 @@ -// -// SubtitleAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class SubtitleAPI { - - /** - Deletes an external subtitle file. - - - parameter itemId: (path) The item id. - - parameter index: (path) The index of the subtitle file. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteSubtitle(itemId: String, index: Int) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteSubtitleWithRequestBuilder(itemId: itemId, index: index).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Deletes an external subtitle file. - - DELETE /Videos/{itemId}/Subtitles/{index} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter index: (path) The index of the subtitle file. - - returns: RequestBuilder - */ - open class func deleteSubtitleWithRequestBuilder(itemId: String, index: Int) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/Subtitles/{index}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let indexPreEscape = "\(APIHelper.mapValueToPathItem(index))" - let indexPostEscape = indexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{index}", with: indexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Downloads a remote subtitle. - - - parameter itemId: (path) The item id. - - parameter subtitleId: (path) The subtitle id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func downloadRemoteSubtitles(itemId: String, subtitleId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = downloadRemoteSubtitlesWithRequestBuilder(itemId: itemId, subtitleId: subtitleId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Downloads a remote subtitle. - - POST /Items/{itemId}/RemoteSearch/Subtitles/{subtitleId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter subtitleId: (path) The subtitle id. - - returns: RequestBuilder - */ - open class func downloadRemoteSubtitlesWithRequestBuilder(itemId: String, subtitleId: String) -> RequestBuilder { - var localVariablePath = "/Items/{itemId}/RemoteSearch/Subtitles/{subtitleId}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let subtitleIdPreEscape = "\(APIHelper.mapValueToPathItem(subtitleId))" - let subtitleIdPostEscape = subtitleIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{subtitleId}", with: subtitleIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a fallback font file. - - - parameter name: (path) The name of the fallback font file to get. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getFallbackFont(name: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getFallbackFontWithRequestBuilder(name: name).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a fallback font file. - - GET /FallbackFont/Fonts/{name} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (path) The name of the fallback font file to get. - - returns: RequestBuilder - */ - open class func getFallbackFontWithRequestBuilder(name: String) -> RequestBuilder { - var localVariablePath = "/FallbackFont/Fonts/{name}" - let namePreEscape = "\(APIHelper.mapValueToPathItem(name))" - let namePostEscape = namePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{name}", with: namePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a list of available fallback font files. - - - returns: AnyPublisher<[FontFile], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getFallbackFontList() -> AnyPublisher<[FontFile], Error> { - var requestTask: RequestTask? - return Future<[FontFile], Error> { promise in - requestTask = getFallbackFontListWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a list of available fallback font files. - - GET /FallbackFont/Fonts - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[FontFile]> - */ - open class func getFallbackFontListWithRequestBuilder() -> RequestBuilder<[FontFile]> { - let localVariablePath = "/FallbackFont/Fonts" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[FontFile]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the remote subtitles. - - - parameter id: (path) The item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRemoteSubtitles(id: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRemoteSubtitlesWithRequestBuilder(id: id).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the remote subtitles. - - GET /Providers/Subtitles/Subtitles/{id} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter id: (path) The item id. - - returns: RequestBuilder - */ - open class func getRemoteSubtitlesWithRequestBuilder(id: String) -> RequestBuilder { - var localVariablePath = "/Providers/Subtitles/Subtitles/{id}" - let idPreEscape = "\(APIHelper.mapValueToPathItem(id))" - let idPostEscape = idPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{id}", with: idPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets subtitles in a specified format. - - - parameter routeItemId: (path) The (route) item id. - - parameter routeMediaSourceId: (path) The (route) media source id. - - parameter routeIndex: (path) The (route) subtitle stream index. - - parameter routeFormat: (path) The (route) format of the returned subtitle. - - parameter itemId: (query) The item id. (optional) - - parameter mediaSourceId: (query) The media source id. (optional) - - parameter index: (query) The subtitle stream index. (optional) - - parameter format: (query) The format of the returned subtitle. (optional) - - parameter endPositionTicks: (query) Optional. The end position of the subtitle in ticks. (optional) - - parameter copyTimestamps: (query) Optional. Whether to copy the timestamps. (optional, default to false) - - parameter addVttTimeMap: (query) Optional. Whether to add a VTT time map. (optional, default to false) - - parameter startPositionTicks: (query) The start position of the subtitle in ticks. (optional, default to 0) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSubtitle(routeItemId: String, routeMediaSourceId: String, routeIndex: Int, routeFormat: String, itemId: String? = nil, mediaSourceId: String? = nil, index: Int? = nil, format: String? = nil, endPositionTicks: Int64? = nil, copyTimestamps: Bool? = nil, addVttTimeMap: Bool? = nil, startPositionTicks: Int64? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSubtitleWithRequestBuilder(routeItemId: routeItemId, routeMediaSourceId: routeMediaSourceId, routeIndex: routeIndex, routeFormat: routeFormat, itemId: itemId, mediaSourceId: mediaSourceId, index: index, format: format, endPositionTicks: endPositionTicks, copyTimestamps: copyTimestamps, addVttTimeMap: addVttTimeMap, startPositionTicks: startPositionTicks).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets subtitles in a specified format. - - GET /Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/Stream.{routeFormat} - - parameter routeItemId: (path) The (route) item id. - - parameter routeMediaSourceId: (path) The (route) media source id. - - parameter routeIndex: (path) The (route) subtitle stream index. - - parameter routeFormat: (path) The (route) format of the returned subtitle. - - parameter itemId: (query) The item id. (optional) - - parameter mediaSourceId: (query) The media source id. (optional) - - parameter index: (query) The subtitle stream index. (optional) - - parameter format: (query) The format of the returned subtitle. (optional) - - parameter endPositionTicks: (query) Optional. The end position of the subtitle in ticks. (optional) - - parameter copyTimestamps: (query) Optional. Whether to copy the timestamps. (optional, default to false) - - parameter addVttTimeMap: (query) Optional. Whether to add a VTT time map. (optional, default to false) - - parameter startPositionTicks: (query) The start position of the subtitle in ticks. (optional, default to 0) - - returns: RequestBuilder - */ - open class func getSubtitleWithRequestBuilder(routeItemId: String, routeMediaSourceId: String, routeIndex: Int, routeFormat: String, itemId: String? = nil, mediaSourceId: String? = nil, index: Int? = nil, format: String? = nil, endPositionTicks: Int64? = nil, copyTimestamps: Bool? = nil, addVttTimeMap: Bool? = nil, startPositionTicks: Int64? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/Stream.{routeFormat}" - let routeItemIdPreEscape = "\(APIHelper.mapValueToPathItem(routeItemId))" - let routeItemIdPostEscape = routeItemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{routeItemId}", with: routeItemIdPostEscape, options: .literal, range: nil) - let routeMediaSourceIdPreEscape = "\(APIHelper.mapValueToPathItem(routeMediaSourceId))" - let routeMediaSourceIdPostEscape = routeMediaSourceIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{routeMediaSourceId}", with: routeMediaSourceIdPostEscape, options: .literal, range: nil) - let routeIndexPreEscape = "\(APIHelper.mapValueToPathItem(routeIndex))" - let routeIndexPostEscape = routeIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{routeIndex}", with: routeIndexPostEscape, options: .literal, range: nil) - let routeFormatPreEscape = "\(APIHelper.mapValueToPathItem(routeFormat))" - let routeFormatPostEscape = routeFormatPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{routeFormat}", with: routeFormatPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "itemId": itemId?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "index": index?.encodeToJSON(), - "format": format?.encodeToJSON(), - "endPositionTicks": endPositionTicks?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "addVttTimeMap": addVttTimeMap?.encodeToJSON(), - "startPositionTicks": startPositionTicks?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets an HLS subtitle playlist. - - - parameter itemId: (path) The item id. - - parameter index: (path) The subtitle stream index. - - parameter mediaSourceId: (path) The media source id. - - parameter segmentLength: (query) The subtitle segment length. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSubtitlePlaylist(itemId: String, index: Int, mediaSourceId: String, segmentLength: Int) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSubtitlePlaylistWithRequestBuilder(itemId: itemId, index: index, mediaSourceId: mediaSourceId, segmentLength: segmentLength).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an HLS subtitle playlist. - - GET /Videos/{itemId}/{mediaSourceId}/Subtitles/{index}/subtitles.m3u8 - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter index: (path) The subtitle stream index. - - parameter mediaSourceId: (path) The media source id. - - parameter segmentLength: (query) The subtitle segment length. - - returns: RequestBuilder - */ - open class func getSubtitlePlaylistWithRequestBuilder(itemId: String, index: Int, mediaSourceId: String, segmentLength: Int) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/{mediaSourceId}/Subtitles/{index}/subtitles.m3u8" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let indexPreEscape = "\(APIHelper.mapValueToPathItem(index))" - let indexPostEscape = indexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{index}", with: indexPostEscape, options: .literal, range: nil) - let mediaSourceIdPreEscape = "\(APIHelper.mapValueToPathItem(mediaSourceId))" - let mediaSourceIdPostEscape = mediaSourceIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{mediaSourceId}", with: mediaSourceIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "segmentLength": segmentLength.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets subtitles in a specified format. - - - parameter routeItemId: (path) The (route) item id. - - parameter routeMediaSourceId: (path) The (route) media source id. - - parameter routeIndex: (path) The (route) subtitle stream index. - - parameter routeStartPositionTicks: (path) The (route) start position of the subtitle in ticks. - - parameter routeFormat: (path) The (route) format of the returned subtitle. - - parameter itemId: (query) The item id. (optional) - - parameter mediaSourceId: (query) The media source id. (optional) - - parameter index: (query) The subtitle stream index. (optional) - - parameter startPositionTicks: (query) The start position of the subtitle in ticks. (optional) - - parameter format: (query) The format of the returned subtitle. (optional) - - parameter endPositionTicks: (query) Optional. The end position of the subtitle in ticks. (optional) - - parameter copyTimestamps: (query) Optional. Whether to copy the timestamps. (optional, default to false) - - parameter addVttTimeMap: (query) Optional. Whether to add a VTT time map. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSubtitleWithTicks(routeItemId: String, routeMediaSourceId: String, routeIndex: Int, routeStartPositionTicks: Int64, routeFormat: String, itemId: String? = nil, mediaSourceId: String? = nil, index: Int? = nil, startPositionTicks: Int64? = nil, format: String? = nil, endPositionTicks: Int64? = nil, copyTimestamps: Bool? = nil, addVttTimeMap: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSubtitleWithTicksWithRequestBuilder(routeItemId: routeItemId, routeMediaSourceId: routeMediaSourceId, routeIndex: routeIndex, routeStartPositionTicks: routeStartPositionTicks, routeFormat: routeFormat, itemId: itemId, mediaSourceId: mediaSourceId, index: index, startPositionTicks: startPositionTicks, format: format, endPositionTicks: endPositionTicks, copyTimestamps: copyTimestamps, addVttTimeMap: addVttTimeMap).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets subtitles in a specified format. - - GET /Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/{routeStartPositionTicks}/Stream.{routeFormat} - - parameter routeItemId: (path) The (route) item id. - - parameter routeMediaSourceId: (path) The (route) media source id. - - parameter routeIndex: (path) The (route) subtitle stream index. - - parameter routeStartPositionTicks: (path) The (route) start position of the subtitle in ticks. - - parameter routeFormat: (path) The (route) format of the returned subtitle. - - parameter itemId: (query) The item id. (optional) - - parameter mediaSourceId: (query) The media source id. (optional) - - parameter index: (query) The subtitle stream index. (optional) - - parameter startPositionTicks: (query) The start position of the subtitle in ticks. (optional) - - parameter format: (query) The format of the returned subtitle. (optional) - - parameter endPositionTicks: (query) Optional. The end position of the subtitle in ticks. (optional) - - parameter copyTimestamps: (query) Optional. Whether to copy the timestamps. (optional, default to false) - - parameter addVttTimeMap: (query) Optional. Whether to add a VTT time map. (optional, default to false) - - returns: RequestBuilder - */ - open class func getSubtitleWithTicksWithRequestBuilder(routeItemId: String, routeMediaSourceId: String, routeIndex: Int, routeStartPositionTicks: Int64, routeFormat: String, itemId: String? = nil, mediaSourceId: String? = nil, index: Int? = nil, startPositionTicks: Int64? = nil, format: String? = nil, endPositionTicks: Int64? = nil, copyTimestamps: Bool? = nil, addVttTimeMap: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/{routeStartPositionTicks}/Stream.{routeFormat}" - let routeItemIdPreEscape = "\(APIHelper.mapValueToPathItem(routeItemId))" - let routeItemIdPostEscape = routeItemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{routeItemId}", with: routeItemIdPostEscape, options: .literal, range: nil) - let routeMediaSourceIdPreEscape = "\(APIHelper.mapValueToPathItem(routeMediaSourceId))" - let routeMediaSourceIdPostEscape = routeMediaSourceIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{routeMediaSourceId}", with: routeMediaSourceIdPostEscape, options: .literal, range: nil) - let routeIndexPreEscape = "\(APIHelper.mapValueToPathItem(routeIndex))" - let routeIndexPostEscape = routeIndexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{routeIndex}", with: routeIndexPostEscape, options: .literal, range: nil) - let routeStartPositionTicksPreEscape = "\(APIHelper.mapValueToPathItem(routeStartPositionTicks))" - let routeStartPositionTicksPostEscape = routeStartPositionTicksPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{routeStartPositionTicks}", with: routeStartPositionTicksPostEscape, options: .literal, range: nil) - let routeFormatPreEscape = "\(APIHelper.mapValueToPathItem(routeFormat))" - let routeFormatPostEscape = routeFormatPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{routeFormat}", with: routeFormatPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "itemId": itemId?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "index": index?.encodeToJSON(), - "startPositionTicks": startPositionTicks?.encodeToJSON(), - "format": format?.encodeToJSON(), - "endPositionTicks": endPositionTicks?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "addVttTimeMap": addVttTimeMap?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Search remote subtitles. - - - parameter itemId: (path) The item id. - - parameter language: (path) The language of the subtitles. - - parameter isPerfectMatch: (query) Optional. Only show subtitles which are a perfect match. (optional) - - returns: AnyPublisher<[RemoteSubtitleInfo], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func searchRemoteSubtitles(itemId: String, language: String, isPerfectMatch: Bool? = nil) -> AnyPublisher<[RemoteSubtitleInfo], Error> { - var requestTask: RequestTask? - return Future<[RemoteSubtitleInfo], Error> { promise in - requestTask = searchRemoteSubtitlesWithRequestBuilder(itemId: itemId, language: language, isPerfectMatch: isPerfectMatch).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Search remote subtitles. - - GET /Items/{itemId}/RemoteSearch/Subtitles/{language} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter language: (path) The language of the subtitles. - - parameter isPerfectMatch: (query) Optional. Only show subtitles which are a perfect match. (optional) - - returns: RequestBuilder<[RemoteSubtitleInfo]> - */ - open class func searchRemoteSubtitlesWithRequestBuilder(itemId: String, language: String, isPerfectMatch: Bool? = nil) -> RequestBuilder<[RemoteSubtitleInfo]> { - var localVariablePath = "/Items/{itemId}/RemoteSearch/Subtitles/{language}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let languagePreEscape = "\(APIHelper.mapValueToPathItem(language))" - let languagePostEscape = languagePreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{language}", with: languagePostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "isPerfectMatch": isPerfectMatch?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[RemoteSubtitleInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Upload an external subtitle file. - - - parameter itemId: (path) The item the subtitle belongs to. - - parameter uploadSubtitleRequest: (body) The request body. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func uploadSubtitle(itemId: String, uploadSubtitleRequest: UploadSubtitleRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = uploadSubtitleWithRequestBuilder(itemId: itemId, uploadSubtitleRequest: uploadSubtitleRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Upload an external subtitle file. - - POST /Videos/{itemId}/Subtitles - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item the subtitle belongs to. - - parameter uploadSubtitleRequest: (body) The request body. - - returns: RequestBuilder - */ - open class func uploadSubtitleWithRequestBuilder(itemId: String, uploadSubtitleRequest: UploadSubtitleRequest) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/Subtitles" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: uploadSubtitleRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/SuggestionsAPI.swift b/Sources/JellyfinAPI/APIs/SuggestionsAPI.swift deleted file mode 100644 index 5f606ebf6..000000000 --- a/Sources/JellyfinAPI/APIs/SuggestionsAPI.swift +++ /dev/null @@ -1,91 +0,0 @@ -// -// SuggestionsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class SuggestionsAPI { - - /** - Gets suggestions. - - - parameter userId: (path) The user id. - - parameter mediaType: (query) The media types. (optional) - - parameter type: (query) The type. (optional) - - parameter startIndex: (query) Optional. The start index. (optional) - - parameter limit: (query) Optional. The limit. (optional) - - parameter enableTotalRecordCount: (query) Whether to enable the total record count. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSuggestions(userId: String, mediaType: [String]? = nil, type: [BaseItemKind]? = nil, startIndex: Int? = nil, limit: Int? = nil, enableTotalRecordCount: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSuggestionsWithRequestBuilder(userId: userId, mediaType: mediaType, type: type, startIndex: startIndex, limit: limit, enableTotalRecordCount: enableTotalRecordCount).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets suggestions. - - GET /Users/{userId}/Suggestions - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) The user id. - - parameter mediaType: (query) The media types. (optional) - - parameter type: (query) The type. (optional) - - parameter startIndex: (query) Optional. The start index. (optional) - - parameter limit: (query) Optional. The limit. (optional) - - parameter enableTotalRecordCount: (query) Whether to enable the total record count. (optional, default to false) - - returns: RequestBuilder - */ - open class func getSuggestionsWithRequestBuilder(userId: String, mediaType: [String]? = nil, type: [BaseItemKind]? = nil, startIndex: Int? = nil, limit: Int? = nil, enableTotalRecordCount: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Suggestions" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "mediaType": mediaType?.encodeToJSON(), - "type": type?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/SyncPlayAPI.swift b/Sources/JellyfinAPI/APIs/SyncPlayAPI.swift deleted file mode 100644 index 0c02b8427..000000000 --- a/Sources/JellyfinAPI/APIs/SyncPlayAPI.swift +++ /dev/null @@ -1,1141 +0,0 @@ -// -// SyncPlayAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class SyncPlayAPI { - - /** - Notify SyncPlay group that member is buffering. - - - parameter syncPlayBufferingRequest: (body) The player status. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayBuffering(syncPlayBufferingRequest: SyncPlayBufferingRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayBufferingWithRequestBuilder(syncPlayBufferingRequest: syncPlayBufferingRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Notify SyncPlay group that member is buffering. - - POST /SyncPlay/Buffering - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlayBufferingRequest: (body) The player status. - - returns: RequestBuilder - */ - open class func syncPlayBufferingWithRequestBuilder(syncPlayBufferingRequest: SyncPlayBufferingRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/Buffering" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlayBufferingRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Create a new SyncPlay group. - - - parameter syncPlayCreateGroupRequest: (body) The settings of the new group. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayCreateGroup(syncPlayCreateGroupRequest: SyncPlayCreateGroupRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayCreateGroupWithRequestBuilder(syncPlayCreateGroupRequest: syncPlayCreateGroupRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Create a new SyncPlay group. - - POST /SyncPlay/New - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlayCreateGroupRequest: (body) The settings of the new group. - - returns: RequestBuilder - */ - open class func syncPlayCreateGroupWithRequestBuilder(syncPlayCreateGroupRequest: SyncPlayCreateGroupRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/New" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlayCreateGroupRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets all SyncPlay groups. - - - returns: AnyPublisher<[GroupInfoDto], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayGetGroups() -> AnyPublisher<[GroupInfoDto], Error> { - var requestTask: RequestTask? - return Future<[GroupInfoDto], Error> { promise in - requestTask = syncPlayGetGroupsWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets all SyncPlay groups. - - GET /SyncPlay/List - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[GroupInfoDto]> - */ - open class func syncPlayGetGroupsWithRequestBuilder() -> RequestBuilder<[GroupInfoDto]> { - let localVariablePath = "/SyncPlay/List" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[GroupInfoDto]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Join an existing SyncPlay group. - - - parameter syncPlayJoinGroupRequest: (body) The group to join. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayJoinGroup(syncPlayJoinGroupRequest: SyncPlayJoinGroupRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayJoinGroupWithRequestBuilder(syncPlayJoinGroupRequest: syncPlayJoinGroupRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Join an existing SyncPlay group. - - POST /SyncPlay/Join - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlayJoinGroupRequest: (body) The group to join. - - returns: RequestBuilder - */ - open class func syncPlayJoinGroupWithRequestBuilder(syncPlayJoinGroupRequest: SyncPlayJoinGroupRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/Join" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlayJoinGroupRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Leave the joined SyncPlay group. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayLeaveGroup() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayLeaveGroupWithRequestBuilder().execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Leave the joined SyncPlay group. - - POST /SyncPlay/Leave - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func syncPlayLeaveGroupWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/SyncPlay/Leave" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request to move an item in the playlist in SyncPlay group. - - - parameter syncPlayMovePlaylistItemRequest: (body) The new position for the item. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayMovePlaylistItem(syncPlayMovePlaylistItemRequest: SyncPlayMovePlaylistItemRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayMovePlaylistItemWithRequestBuilder(syncPlayMovePlaylistItemRequest: syncPlayMovePlaylistItemRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request to move an item in the playlist in SyncPlay group. - - POST /SyncPlay/MovePlaylistItem - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlayMovePlaylistItemRequest: (body) The new position for the item. - - returns: RequestBuilder - */ - open class func syncPlayMovePlaylistItemWithRequestBuilder(syncPlayMovePlaylistItemRequest: SyncPlayMovePlaylistItemRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/MovePlaylistItem" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlayMovePlaylistItemRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request next item in SyncPlay group. - - - parameter syncPlayNextItemRequest: (body) The current item information. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayNextItem(syncPlayNextItemRequest: SyncPlayNextItemRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayNextItemWithRequestBuilder(syncPlayNextItemRequest: syncPlayNextItemRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request next item in SyncPlay group. - - POST /SyncPlay/NextItem - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlayNextItemRequest: (body) The current item information. - - returns: RequestBuilder - */ - open class func syncPlayNextItemWithRequestBuilder(syncPlayNextItemRequest: SyncPlayNextItemRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/NextItem" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlayNextItemRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request pause in SyncPlay group. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayPause() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayPauseWithRequestBuilder().execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request pause in SyncPlay group. - - POST /SyncPlay/Pause - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func syncPlayPauseWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/SyncPlay/Pause" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Update session ping. - - - parameter syncPlayPingRequest: (body) The new ping. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayPing(syncPlayPingRequest: SyncPlayPingRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayPingWithRequestBuilder(syncPlayPingRequest: syncPlayPingRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Update session ping. - - POST /SyncPlay/Ping - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlayPingRequest: (body) The new ping. - - returns: RequestBuilder - */ - open class func syncPlayPingWithRequestBuilder(syncPlayPingRequest: SyncPlayPingRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/Ping" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlayPingRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request previous item in SyncPlay group. - - - parameter syncPlayPreviousItemRequest: (body) The current item information. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayPreviousItem(syncPlayPreviousItemRequest: SyncPlayPreviousItemRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayPreviousItemWithRequestBuilder(syncPlayPreviousItemRequest: syncPlayPreviousItemRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request previous item in SyncPlay group. - - POST /SyncPlay/PreviousItem - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlayPreviousItemRequest: (body) The current item information. - - returns: RequestBuilder - */ - open class func syncPlayPreviousItemWithRequestBuilder(syncPlayPreviousItemRequest: SyncPlayPreviousItemRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/PreviousItem" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlayPreviousItemRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request to queue items to the playlist of a SyncPlay group. - - - parameter syncPlayQueueRequest: (body) The items to add. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayQueue(syncPlayQueueRequest: SyncPlayQueueRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayQueueWithRequestBuilder(syncPlayQueueRequest: syncPlayQueueRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request to queue items to the playlist of a SyncPlay group. - - POST /SyncPlay/Queue - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlayQueueRequest: (body) The items to add. - - returns: RequestBuilder - */ - open class func syncPlayQueueWithRequestBuilder(syncPlayQueueRequest: SyncPlayQueueRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/Queue" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlayQueueRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Notify SyncPlay group that member is ready for playback. - - - parameter syncPlayReadyRequest: (body) The player status. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayReady(syncPlayReadyRequest: SyncPlayReadyRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayReadyWithRequestBuilder(syncPlayReadyRequest: syncPlayReadyRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Notify SyncPlay group that member is ready for playback. - - POST /SyncPlay/Ready - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlayReadyRequest: (body) The player status. - - returns: RequestBuilder - */ - open class func syncPlayReadyWithRequestBuilder(syncPlayReadyRequest: SyncPlayReadyRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/Ready" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlayReadyRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request to remove items from the playlist in SyncPlay group. - - - parameter syncPlayRemoveFromPlaylistRequest: (body) The items to remove. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayRemoveFromPlaylist(syncPlayRemoveFromPlaylistRequest: SyncPlayRemoveFromPlaylistRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayRemoveFromPlaylistWithRequestBuilder(syncPlayRemoveFromPlaylistRequest: syncPlayRemoveFromPlaylistRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request to remove items from the playlist in SyncPlay group. - - POST /SyncPlay/RemoveFromPlaylist - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlayRemoveFromPlaylistRequest: (body) The items to remove. - - returns: RequestBuilder - */ - open class func syncPlayRemoveFromPlaylistWithRequestBuilder(syncPlayRemoveFromPlaylistRequest: SyncPlayRemoveFromPlaylistRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/RemoveFromPlaylist" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlayRemoveFromPlaylistRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request seek in SyncPlay group. - - - parameter syncPlaySeekRequest: (body) The new playback position. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlaySeek(syncPlaySeekRequest: SyncPlaySeekRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlaySeekWithRequestBuilder(syncPlaySeekRequest: syncPlaySeekRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request seek in SyncPlay group. - - POST /SyncPlay/Seek - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlaySeekRequest: (body) The new playback position. - - returns: RequestBuilder - */ - open class func syncPlaySeekWithRequestBuilder(syncPlaySeekRequest: SyncPlaySeekRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/Seek" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlaySeekRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request SyncPlay group to ignore member during group-wait. - - - parameter syncPlaySetIgnoreWaitRequest: (body) The settings to set. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlaySetIgnoreWait(syncPlaySetIgnoreWaitRequest: SyncPlaySetIgnoreWaitRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlaySetIgnoreWaitWithRequestBuilder(syncPlaySetIgnoreWaitRequest: syncPlaySetIgnoreWaitRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request SyncPlay group to ignore member during group-wait. - - POST /SyncPlay/SetIgnoreWait - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlaySetIgnoreWaitRequest: (body) The settings to set. - - returns: RequestBuilder - */ - open class func syncPlaySetIgnoreWaitWithRequestBuilder(syncPlaySetIgnoreWaitRequest: SyncPlaySetIgnoreWaitRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/SetIgnoreWait" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlaySetIgnoreWaitRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request to set new playlist in SyncPlay group. - - - parameter syncPlaySetNewQueueRequest: (body) The new playlist to play in the group. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlaySetNewQueue(syncPlaySetNewQueueRequest: SyncPlaySetNewQueueRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlaySetNewQueueWithRequestBuilder(syncPlaySetNewQueueRequest: syncPlaySetNewQueueRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request to set new playlist in SyncPlay group. - - POST /SyncPlay/SetNewQueue - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlaySetNewQueueRequest: (body) The new playlist to play in the group. - - returns: RequestBuilder - */ - open class func syncPlaySetNewQueueWithRequestBuilder(syncPlaySetNewQueueRequest: SyncPlaySetNewQueueRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/SetNewQueue" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlaySetNewQueueRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request to change playlist item in SyncPlay group. - - - parameter syncPlaySetPlaylistItemRequest: (body) The new item to play. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlaySetPlaylistItem(syncPlaySetPlaylistItemRequest: SyncPlaySetPlaylistItemRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlaySetPlaylistItemWithRequestBuilder(syncPlaySetPlaylistItemRequest: syncPlaySetPlaylistItemRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request to change playlist item in SyncPlay group. - - POST /SyncPlay/SetPlaylistItem - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlaySetPlaylistItemRequest: (body) The new item to play. - - returns: RequestBuilder - */ - open class func syncPlaySetPlaylistItemWithRequestBuilder(syncPlaySetPlaylistItemRequest: SyncPlaySetPlaylistItemRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/SetPlaylistItem" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlaySetPlaylistItemRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request to set repeat mode in SyncPlay group. - - - parameter syncPlaySetRepeatModeRequest: (body) The new repeat mode. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlaySetRepeatMode(syncPlaySetRepeatModeRequest: SyncPlaySetRepeatModeRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlaySetRepeatModeWithRequestBuilder(syncPlaySetRepeatModeRequest: syncPlaySetRepeatModeRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request to set repeat mode in SyncPlay group. - - POST /SyncPlay/SetRepeatMode - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlaySetRepeatModeRequest: (body) The new repeat mode. - - returns: RequestBuilder - */ - open class func syncPlaySetRepeatModeWithRequestBuilder(syncPlaySetRepeatModeRequest: SyncPlaySetRepeatModeRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/SetRepeatMode" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlaySetRepeatModeRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request to set shuffle mode in SyncPlay group. - - - parameter syncPlaySetShuffleModeRequest: (body) The new shuffle mode. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlaySetShuffleMode(syncPlaySetShuffleModeRequest: SyncPlaySetShuffleModeRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlaySetShuffleModeWithRequestBuilder(syncPlaySetShuffleModeRequest: syncPlaySetShuffleModeRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request to set shuffle mode in SyncPlay group. - - POST /SyncPlay/SetShuffleMode - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter syncPlaySetShuffleModeRequest: (body) The new shuffle mode. - - returns: RequestBuilder - */ - open class func syncPlaySetShuffleModeWithRequestBuilder(syncPlaySetShuffleModeRequest: SyncPlaySetShuffleModeRequest) -> RequestBuilder { - let localVariablePath = "/SyncPlay/SetShuffleMode" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: syncPlaySetShuffleModeRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request stop in SyncPlay group. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayStop() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayStopWithRequestBuilder().execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request stop in SyncPlay group. - - POST /SyncPlay/Stop - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func syncPlayStopWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/SyncPlay/Stop" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Request unpause in SyncPlay group. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func syncPlayUnpause() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = syncPlayUnpauseWithRequestBuilder().execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Request unpause in SyncPlay group. - - POST /SyncPlay/Unpause - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func syncPlayUnpauseWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/SyncPlay/Unpause" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/SystemAPI.swift b/Sources/JellyfinAPI/APIs/SystemAPI.swift deleted file mode 100644 index 97586a324..000000000 --- a/Sources/JellyfinAPI/APIs/SystemAPI.swift +++ /dev/null @@ -1,535 +0,0 @@ -// -// SystemAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class SystemAPI { - - /** - Gets information about the request endpoint. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getEndpointInfo() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getEndpointInfoWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets information about the request endpoint. - - GET /System/Endpoint - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getEndpointInfoWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/System/Endpoint" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a log file. - - - parameter name: (query) The name of the log file to get. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLogFile(name: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getLogFileWithRequestBuilder(name: name).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a log file. - - GET /System/Logs/Log - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter name: (query) The name of the log file to get. - - returns: RequestBuilder - */ - open class func getLogFileWithRequestBuilder(name: String) -> RequestBuilder { - let localVariablePath = "/System/Logs/Log" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "name": name.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Pings the system. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPingSystem() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPingSystemWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Pings the system. - - GET /System/Ping - - returns: RequestBuilder - */ - open class func getPingSystemWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/System/Ping" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets public information about the server. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPublicSystemInfo() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getPublicSystemInfoWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets public information about the server. - - GET /System/Info/Public - - returns: RequestBuilder - */ - open class func getPublicSystemInfoWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/System/Info/Public" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a list of available server log files. - - - returns: AnyPublisher<[LogFile], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getServerLogs() -> AnyPublisher<[LogFile], Error> { - var requestTask: RequestTask? - return Future<[LogFile], Error> { promise in - requestTask = getServerLogsWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a list of available server log files. - - GET /System/Logs - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[LogFile]> - */ - open class func getServerLogsWithRequestBuilder() -> RequestBuilder<[LogFile]> { - let localVariablePath = "/System/Logs" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[LogFile]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets information about the server. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSystemInfo() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSystemInfoWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets information about the server. - - GET /System/Info - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getSystemInfoWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/System/Info" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets wake on lan information. - - - returns: AnyPublisher<[WakeOnLanInfo], Error> - */ - #if canImport(Combine) - @available(*, deprecated, message: "This operation is deprecated.") - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getWakeOnLanInfo() -> AnyPublisher<[WakeOnLanInfo], Error> { - var requestTask: RequestTask? - return Future<[WakeOnLanInfo], Error> { promise in - requestTask = getWakeOnLanInfoWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets wake on lan information. - - GET /System/WakeOnLanInfo - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder<[WakeOnLanInfo]> - */ - @available(*, deprecated, message: "This operation is deprecated.") - open class func getWakeOnLanInfoWithRequestBuilder() -> RequestBuilder<[WakeOnLanInfo]> { - let localVariablePath = "/System/WakeOnLanInfo" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[WakeOnLanInfo]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Pings the system. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func postPingSystem() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = postPingSystemWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Pings the system. - - POST /System/Ping - - returns: RequestBuilder - */ - open class func postPingSystemWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/System/Ping" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Restarts the application. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func restartApplication() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = restartApplicationWithRequestBuilder().execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Restarts the application. - - POST /System/Restart - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func restartApplicationWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/System/Restart" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Shuts down the application. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func shutdownApplication() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = shutdownApplicationWithRequestBuilder().execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Shuts down the application. - - POST /System/Shutdown - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func shutdownApplicationWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/System/Shutdown" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/TimeSyncAPI.swift b/Sources/JellyfinAPI/APIs/TimeSyncAPI.swift deleted file mode 100644 index 822c4780d..000000000 --- a/Sources/JellyfinAPI/APIs/TimeSyncAPI.swift +++ /dev/null @@ -1,66 +0,0 @@ -// -// TimeSyncAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class TimeSyncAPI { - - /** - Gets the current UTC time. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getUtcTime() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getUtcTimeWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the current UTC time. - - GET /GetUtcTime - - returns: RequestBuilder - */ - open class func getUtcTimeWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/GetUtcTime" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/TmdbAPI.swift b/Sources/JellyfinAPI/APIs/TmdbAPI.swift deleted file mode 100644 index 8475badfd..000000000 --- a/Sources/JellyfinAPI/APIs/TmdbAPI.swift +++ /dev/null @@ -1,69 +0,0 @@ -// -// TmdbAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class TmdbAPI { - - /** - Gets the TMDb image configuration options. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func tmdbClientConfiguration() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = tmdbClientConfigurationWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the TMDb image configuration options. - - GET /Tmdb/ClientConfiguration - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func tmdbClientConfigurationWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Tmdb/ClientConfiguration" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/TrailersAPI.swift b/Sources/JellyfinAPI/APIs/TrailersAPI.swift deleted file mode 100644 index 3d8896c0e..000000000 --- a/Sources/JellyfinAPI/APIs/TrailersAPI.swift +++ /dev/null @@ -1,323 +0,0 @@ -// -// TrailersAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class TrailersAPI { - - /** - Finds movies and trailers similar to a given trailer. - - - parameter userId: (query) The user id. (optional) - - parameter maxOfficialRating: (query) Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter hasThemeSong: (query) Optional filter by items with theme songs. (optional) - - parameter hasThemeVideo: (query) Optional filter by items with theme videos. (optional) - - parameter hasSubtitles: (query) Optional filter by items with subtitles. (optional) - - parameter hasSpecialFeature: (query) Optional filter by items with special features. (optional) - - parameter hasTrailer: (query) Optional filter by items with trailers. (optional) - - parameter adjacentTo: (query) Optional. Return items that are siblings of a supplied item. (optional) - - parameter parentIndexNumber: (query) Optional filter by parent index number. (optional) - - parameter hasParentalRating: (query) Optional filter by items that have or do not have a parental rating. (optional) - - parameter isHd: (query) Optional filter by items that are HD or not. (optional) - - parameter is4K: (query) Optional filter by items that are 4K or not. (optional) - - parameter locationTypes: (query) Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. (optional) - - parameter excludeLocationTypes: (query) Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. (optional) - - parameter isMissing: (query) Optional filter by items that are missing episodes or not. (optional) - - parameter isUnaired: (query) Optional filter by items that are unaired episodes or not. (optional) - - parameter minCommunityRating: (query) Optional filter by minimum community rating. (optional) - - parameter minCriticRating: (query) Optional filter by minimum critic rating. (optional) - - parameter minPremiereDate: (query) Optional. The minimum premiere date. Format = ISO. (optional) - - parameter minDateLastSaved: (query) Optional. The minimum last saved date. Format = ISO. (optional) - - parameter minDateLastSavedForUser: (query) Optional. The minimum last saved date for the current user. Format = ISO. (optional) - - parameter maxPremiereDate: (query) Optional. The maximum premiere date. Format = ISO. (optional) - - parameter hasOverview: (query) Optional filter by items that have an overview or not. (optional) - - parameter hasImdbId: (query) Optional filter by items that have an imdb id or not. (optional) - - parameter hasTmdbId: (query) Optional filter by items that have a tmdb id or not. (optional) - - parameter hasTvdbId: (query) Optional filter by items that have a tvdb id or not. (optional) - - parameter isMovie: (query) Optional filter for live tv movies. (optional) - - parameter isSeries: (query) Optional filter for live tv series. (optional) - - parameter isNews: (query) Optional filter for live tv news. (optional) - - parameter isKids: (query) Optional filter for live tv kids. (optional) - - parameter isSports: (query) Optional filter for live tv sports. (optional) - - parameter excludeItemIds: (query) Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter recursive: (query) When searching within folders, this determines whether or not the search will be recursive. true/false. (optional) - - parameter searchTerm: (query) Optional. Filter based on a search term. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter mediaTypes: (query) Optional filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter imageTypes: (query) Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - parameter isPlayed: (query) Optional filter by items that are played, or not. (optional) - - parameter genres: (query) Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) - - parameter officialRatings: (query) Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) - - parameter tags: (query) Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) - - parameter years: (query) Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter person: (query) Optional. If specified, results will be filtered to include only those containing the specified person. (optional) - - parameter personIds: (query) Optional. If specified, results will be filtered to include only those containing the specified person id. (optional) - - parameter personTypes: (query) Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) - - parameter studios: (query) Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) - - parameter artists: (query) Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. (optional) - - parameter excludeArtistIds: (query) Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. (optional) - - parameter artistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified artist id. (optional) - - parameter albumArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified album artist id. (optional) - - parameter contributingArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. (optional) - - parameter albums: (query) Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. (optional) - - parameter albumIds: (query) Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. (optional) - - parameter ids: (query) Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. (optional) - - parameter videoTypes: (query) Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. (optional) - - parameter minOfficialRating: (query) Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter isLocked: (query) Optional filter by items that are locked. (optional) - - parameter isPlaceHolder: (query) Optional filter by items that are placeholders. (optional) - - parameter hasOfficialRating: (query) Optional filter by items that have official ratings. (optional) - - parameter collapseBoxSetItems: (query) Whether or not to hide items behind their boxsets. (optional) - - parameter minWidth: (query) Optional. Filter by the minimum width of the item. (optional) - - parameter minHeight: (query) Optional. Filter by the minimum height of the item. (optional) - - parameter maxWidth: (query) Optional. Filter by the maximum width of the item. (optional) - - parameter maxHeight: (query) Optional. Filter by the maximum height of the item. (optional) - - parameter is3D: (query) Optional filter by items that are 3D, or not. (optional) - - parameter seriesStatus: (query) Optional filter by Series Status. Allows multiple, comma delimited. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter studioIds: (query) Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) - - parameter genreIds: (query) Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) - - parameter enableTotalRecordCount: (query) Optional. Enable the total record count. (optional, default to true) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getTrailers(userId: String? = nil, maxOfficialRating: String? = nil, hasThemeSong: Bool? = nil, hasThemeVideo: Bool? = nil, hasSubtitles: Bool? = nil, hasSpecialFeature: Bool? = nil, hasTrailer: Bool? = nil, adjacentTo: String? = nil, parentIndexNumber: Int? = nil, hasParentalRating: Bool? = nil, isHd: Bool? = nil, is4K: Bool? = nil, locationTypes: [LocationType]? = nil, excludeLocationTypes: [LocationType]? = nil, isMissing: Bool? = nil, isUnaired: Bool? = nil, minCommunityRating: Double? = nil, minCriticRating: Double? = nil, minPremiereDate: Date? = nil, minDateLastSaved: Date? = nil, minDateLastSavedForUser: Date? = nil, maxPremiereDate: Date? = nil, hasOverview: Bool? = nil, hasImdbId: Bool? = nil, hasTmdbId: Bool? = nil, hasTvdbId: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, excludeItemIds: [String]? = nil, startIndex: Int? = nil, limit: Int? = nil, recursive: Bool? = nil, searchTerm: String? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, imageTypes: [ImageType]? = nil, sortBy: [String]? = nil, isPlayed: Bool? = nil, genres: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, artists: [String]? = nil, excludeArtistIds: [String]? = nil, artistIds: [String]? = nil, albumArtistIds: [String]? = nil, contributingArtistIds: [String]? = nil, albums: [String]? = nil, albumIds: [String]? = nil, ids: [String]? = nil, videoTypes: [VideoType]? = nil, minOfficialRating: String? = nil, isLocked: Bool? = nil, isPlaceHolder: Bool? = nil, hasOfficialRating: Bool? = nil, collapseBoxSetItems: Bool? = nil, minWidth: Int? = nil, minHeight: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, is3D: Bool? = nil, seriesStatus: [SeriesStatus]? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, studioIds: [String]? = nil, genreIds: [String]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getTrailersWithRequestBuilder(userId: userId, maxOfficialRating: maxOfficialRating, hasThemeSong: hasThemeSong, hasThemeVideo: hasThemeVideo, hasSubtitles: hasSubtitles, hasSpecialFeature: hasSpecialFeature, hasTrailer: hasTrailer, adjacentTo: adjacentTo, parentIndexNumber: parentIndexNumber, hasParentalRating: hasParentalRating, isHd: isHd, is4K: is4K, locationTypes: locationTypes, excludeLocationTypes: excludeLocationTypes, isMissing: isMissing, isUnaired: isUnaired, minCommunityRating: minCommunityRating, minCriticRating: minCriticRating, minPremiereDate: minPremiereDate, minDateLastSaved: minDateLastSaved, minDateLastSavedForUser: minDateLastSavedForUser, maxPremiereDate: maxPremiereDate, hasOverview: hasOverview, hasImdbId: hasImdbId, hasTmdbId: hasTmdbId, hasTvdbId: hasTvdbId, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, excludeItemIds: excludeItemIds, startIndex: startIndex, limit: limit, recursive: recursive, searchTerm: searchTerm, sortOrder: sortOrder, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, filters: filters, isFavorite: isFavorite, mediaTypes: mediaTypes, imageTypes: imageTypes, sortBy: sortBy, isPlayed: isPlayed, genres: genres, officialRatings: officialRatings, tags: tags, years: years, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, person: person, personIds: personIds, personTypes: personTypes, studios: studios, artists: artists, excludeArtistIds: excludeArtistIds, artistIds: artistIds, albumArtistIds: albumArtistIds, contributingArtistIds: contributingArtistIds, albums: albums, albumIds: albumIds, ids: ids, videoTypes: videoTypes, minOfficialRating: minOfficialRating, isLocked: isLocked, isPlaceHolder: isPlaceHolder, hasOfficialRating: hasOfficialRating, collapseBoxSetItems: collapseBoxSetItems, minWidth: minWidth, minHeight: minHeight, maxWidth: maxWidth, maxHeight: maxHeight, is3D: is3D, seriesStatus: seriesStatus, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, studioIds: studioIds, genreIds: genreIds, enableTotalRecordCount: enableTotalRecordCount, enableImages: enableImages).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Finds movies and trailers similar to a given trailer. - - GET /Trailers - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) The user id. (optional) - - parameter maxOfficialRating: (query) Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter hasThemeSong: (query) Optional filter by items with theme songs. (optional) - - parameter hasThemeVideo: (query) Optional filter by items with theme videos. (optional) - - parameter hasSubtitles: (query) Optional filter by items with subtitles. (optional) - - parameter hasSpecialFeature: (query) Optional filter by items with special features. (optional) - - parameter hasTrailer: (query) Optional filter by items with trailers. (optional) - - parameter adjacentTo: (query) Optional. Return items that are siblings of a supplied item. (optional) - - parameter parentIndexNumber: (query) Optional filter by parent index number. (optional) - - parameter hasParentalRating: (query) Optional filter by items that have or do not have a parental rating. (optional) - - parameter isHd: (query) Optional filter by items that are HD or not. (optional) - - parameter is4K: (query) Optional filter by items that are 4K or not. (optional) - - parameter locationTypes: (query) Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. (optional) - - parameter excludeLocationTypes: (query) Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. (optional) - - parameter isMissing: (query) Optional filter by items that are missing episodes or not. (optional) - - parameter isUnaired: (query) Optional filter by items that are unaired episodes or not. (optional) - - parameter minCommunityRating: (query) Optional filter by minimum community rating. (optional) - - parameter minCriticRating: (query) Optional filter by minimum critic rating. (optional) - - parameter minPremiereDate: (query) Optional. The minimum premiere date. Format = ISO. (optional) - - parameter minDateLastSaved: (query) Optional. The minimum last saved date. Format = ISO. (optional) - - parameter minDateLastSavedForUser: (query) Optional. The minimum last saved date for the current user. Format = ISO. (optional) - - parameter maxPremiereDate: (query) Optional. The maximum premiere date. Format = ISO. (optional) - - parameter hasOverview: (query) Optional filter by items that have an overview or not. (optional) - - parameter hasImdbId: (query) Optional filter by items that have an imdb id or not. (optional) - - parameter hasTmdbId: (query) Optional filter by items that have a tmdb id or not. (optional) - - parameter hasTvdbId: (query) Optional filter by items that have a tvdb id or not. (optional) - - parameter isMovie: (query) Optional filter for live tv movies. (optional) - - parameter isSeries: (query) Optional filter for live tv series. (optional) - - parameter isNews: (query) Optional filter for live tv news. (optional) - - parameter isKids: (query) Optional filter for live tv kids. (optional) - - parameter isSports: (query) Optional filter for live tv sports. (optional) - - parameter excludeItemIds: (query) Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter recursive: (query) When searching within folders, this determines whether or not the search will be recursive. true/false. (optional) - - parameter searchTerm: (query) Optional. Filter based on a search term. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter filters: (query) Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. (optional) - - parameter isFavorite: (query) Optional filter by items that are marked as favorite, or not. (optional) - - parameter mediaTypes: (query) Optional filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter imageTypes: (query) Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - parameter isPlayed: (query) Optional filter by items that are played, or not. (optional) - - parameter genres: (query) Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) - - parameter officialRatings: (query) Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) - - parameter tags: (query) Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) - - parameter years: (query) Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) - - parameter enableUserData: (query) Optional, include user data. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter person: (query) Optional. If specified, results will be filtered to include only those containing the specified person. (optional) - - parameter personIds: (query) Optional. If specified, results will be filtered to include only those containing the specified person id. (optional) - - parameter personTypes: (query) Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) - - parameter studios: (query) Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) - - parameter artists: (query) Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. (optional) - - parameter excludeArtistIds: (query) Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. (optional) - - parameter artistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified artist id. (optional) - - parameter albumArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified album artist id. (optional) - - parameter contributingArtistIds: (query) Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. (optional) - - parameter albums: (query) Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. (optional) - - parameter albumIds: (query) Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. (optional) - - parameter ids: (query) Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. (optional) - - parameter videoTypes: (query) Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. (optional) - - parameter minOfficialRating: (query) Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). (optional) - - parameter isLocked: (query) Optional filter by items that are locked. (optional) - - parameter isPlaceHolder: (query) Optional filter by items that are placeholders. (optional) - - parameter hasOfficialRating: (query) Optional filter by items that have official ratings. (optional) - - parameter collapseBoxSetItems: (query) Whether or not to hide items behind their boxsets. (optional) - - parameter minWidth: (query) Optional. Filter by the minimum width of the item. (optional) - - parameter minHeight: (query) Optional. Filter by the minimum height of the item. (optional) - - parameter maxWidth: (query) Optional. Filter by the maximum width of the item. (optional) - - parameter maxHeight: (query) Optional. Filter by the maximum height of the item. (optional) - - parameter is3D: (query) Optional filter by items that are 3D, or not. (optional) - - parameter seriesStatus: (query) Optional filter by Series Status. Allows multiple, comma delimited. (optional) - - parameter nameStartsWithOrGreater: (query) Optional filter by items whose name is sorted equally or greater than a given input string. (optional) - - parameter nameStartsWith: (query) Optional filter by items whose name is sorted equally than a given input string. (optional) - - parameter nameLessThan: (query) Optional filter by items whose name is equally or lesser than a given input string. (optional) - - parameter studioIds: (query) Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) - - parameter genreIds: (query) Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) - - parameter enableTotalRecordCount: (query) Optional. Enable the total record count. (optional, default to true) - - parameter enableImages: (query) Optional, include image information in output. (optional, default to true) - - returns: RequestBuilder - */ - open class func getTrailersWithRequestBuilder(userId: String? = nil, maxOfficialRating: String? = nil, hasThemeSong: Bool? = nil, hasThemeVideo: Bool? = nil, hasSubtitles: Bool? = nil, hasSpecialFeature: Bool? = nil, hasTrailer: Bool? = nil, adjacentTo: String? = nil, parentIndexNumber: Int? = nil, hasParentalRating: Bool? = nil, isHd: Bool? = nil, is4K: Bool? = nil, locationTypes: [LocationType]? = nil, excludeLocationTypes: [LocationType]? = nil, isMissing: Bool? = nil, isUnaired: Bool? = nil, minCommunityRating: Double? = nil, minCriticRating: Double? = nil, minPremiereDate: Date? = nil, minDateLastSaved: Date? = nil, minDateLastSavedForUser: Date? = nil, maxPremiereDate: Date? = nil, hasOverview: Bool? = nil, hasImdbId: Bool? = nil, hasTmdbId: Bool? = nil, hasTvdbId: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, excludeItemIds: [String]? = nil, startIndex: Int? = nil, limit: Int? = nil, recursive: Bool? = nil, searchTerm: String? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, imageTypes: [ImageType]? = nil, sortBy: [String]? = nil, isPlayed: Bool? = nil, genres: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, artists: [String]? = nil, excludeArtistIds: [String]? = nil, artistIds: [String]? = nil, albumArtistIds: [String]? = nil, contributingArtistIds: [String]? = nil, albums: [String]? = nil, albumIds: [String]? = nil, ids: [String]? = nil, videoTypes: [VideoType]? = nil, minOfficialRating: String? = nil, isLocked: Bool? = nil, isPlaceHolder: Bool? = nil, hasOfficialRating: Bool? = nil, collapseBoxSetItems: Bool? = nil, minWidth: Int? = nil, minHeight: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, is3D: Bool? = nil, seriesStatus: [SeriesStatus]? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, studioIds: [String]? = nil, genreIds: [String]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Trailers" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "maxOfficialRating": maxOfficialRating?.encodeToJSON(), - "hasThemeSong": hasThemeSong?.encodeToJSON(), - "hasThemeVideo": hasThemeVideo?.encodeToJSON(), - "hasSubtitles": hasSubtitles?.encodeToJSON(), - "hasSpecialFeature": hasSpecialFeature?.encodeToJSON(), - "hasTrailer": hasTrailer?.encodeToJSON(), - "adjacentTo": adjacentTo?.encodeToJSON(), - "parentIndexNumber": parentIndexNumber?.encodeToJSON(), - "hasParentalRating": hasParentalRating?.encodeToJSON(), - "isHd": isHd?.encodeToJSON(), - "is4K": is4K?.encodeToJSON(), - "locationTypes": locationTypes?.encodeToJSON(), - "excludeLocationTypes": excludeLocationTypes?.encodeToJSON(), - "isMissing": isMissing?.encodeToJSON(), - "isUnaired": isUnaired?.encodeToJSON(), - "minCommunityRating": minCommunityRating?.encodeToJSON(), - "minCriticRating": minCriticRating?.encodeToJSON(), - "minPremiereDate": minPremiereDate?.encodeToJSON(), - "minDateLastSaved": minDateLastSaved?.encodeToJSON(), - "minDateLastSavedForUser": minDateLastSavedForUser?.encodeToJSON(), - "maxPremiereDate": maxPremiereDate?.encodeToJSON(), - "hasOverview": hasOverview?.encodeToJSON(), - "hasImdbId": hasImdbId?.encodeToJSON(), - "hasTmdbId": hasTmdbId?.encodeToJSON(), - "hasTvdbId": hasTvdbId?.encodeToJSON(), - "isMovie": isMovie?.encodeToJSON(), - "isSeries": isSeries?.encodeToJSON(), - "isNews": isNews?.encodeToJSON(), - "isKids": isKids?.encodeToJSON(), - "isSports": isSports?.encodeToJSON(), - "excludeItemIds": excludeItemIds?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "recursive": recursive?.encodeToJSON(), - "searchTerm": searchTerm?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "filters": filters?.encodeToJSON(), - "isFavorite": isFavorite?.encodeToJSON(), - "mediaTypes": mediaTypes?.encodeToJSON(), - "imageTypes": imageTypes?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "isPlayed": isPlayed?.encodeToJSON(), - "genres": genres?.encodeToJSON(), - "officialRatings": officialRatings?.encodeToJSON(), - "tags": tags?.encodeToJSON(), - "years": years?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "person": person?.encodeToJSON(), - "personIds": personIds?.encodeToJSON(), - "personTypes": personTypes?.encodeToJSON(), - "studios": studios?.encodeToJSON(), - "artists": artists?.encodeToJSON(), - "excludeArtistIds": excludeArtistIds?.encodeToJSON(), - "artistIds": artistIds?.encodeToJSON(), - "albumArtistIds": albumArtistIds?.encodeToJSON(), - "contributingArtistIds": contributingArtistIds?.encodeToJSON(), - "albums": albums?.encodeToJSON(), - "albumIds": albumIds?.encodeToJSON(), - "ids": ids?.encodeToJSON(), - "videoTypes": videoTypes?.encodeToJSON(), - "minOfficialRating": minOfficialRating?.encodeToJSON(), - "isLocked": isLocked?.encodeToJSON(), - "isPlaceHolder": isPlaceHolder?.encodeToJSON(), - "hasOfficialRating": hasOfficialRating?.encodeToJSON(), - "collapseBoxSetItems": collapseBoxSetItems?.encodeToJSON(), - "minWidth": minWidth?.encodeToJSON(), - "minHeight": minHeight?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "is3D": is3D?.encodeToJSON(), - "seriesStatus": seriesStatus?.encodeToJSON(), - "nameStartsWithOrGreater": nameStartsWithOrGreater?.encodeToJSON(), - "nameStartsWith": nameStartsWith?.encodeToJSON(), - "nameLessThan": nameLessThan?.encodeToJSON(), - "studioIds": studioIds?.encodeToJSON(), - "genreIds": genreIds?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/TvShowsAPI.swift b/Sources/JellyfinAPI/APIs/TvShowsAPI.swift deleted file mode 100644 index c60a70bab..000000000 --- a/Sources/JellyfinAPI/APIs/TvShowsAPI.swift +++ /dev/null @@ -1,381 +0,0 @@ -// -// TvShowsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class TvShowsAPI { - - /** - Gets episodes for a tv season. - - - parameter seriesId: (path) The series id. - - parameter userId: (query) The user id. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - parameter season: (query) Optional filter by season number. (optional) - - parameter seasonId: (query) Optional. Filter by season id. (optional) - - parameter isMissing: (query) Optional. Filter by items that are missing episodes or not. (optional) - - parameter adjacentTo: (query) Optional. Return items that are siblings of a supplied item. (optional) - - parameter startItemId: (query) Optional. Skip through the list until a given item is found. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getEpisodes(seriesId: String, userId: String? = nil, fields: [ItemFields]? = nil, season: Int? = nil, seasonId: String? = nil, isMissing: Bool? = nil, adjacentTo: String? = nil, startItemId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, sortBy: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getEpisodesWithRequestBuilder(seriesId: seriesId, userId: userId, fields: fields, season: season, seasonId: seasonId, isMissing: isMissing, adjacentTo: adjacentTo, startItemId: startItemId, startIndex: startIndex, limit: limit, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData, sortBy: sortBy).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets episodes for a tv season. - - GET /Shows/{seriesId}/Episodes - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter seriesId: (path) The series id. - - parameter userId: (query) The user id. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - parameter season: (query) Optional filter by season number. (optional) - - parameter seasonId: (query) Optional. Filter by season id. (optional) - - parameter isMissing: (query) Optional. Filter by items that are missing episodes or not. (optional) - - parameter adjacentTo: (query) Optional. Return items that are siblings of a supplied item. (optional) - - parameter startItemId: (query) Optional. Skip through the list until a given item is found. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter enableImages: (query) Optional, include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional, the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - returns: RequestBuilder - */ - open class func getEpisodesWithRequestBuilder(seriesId: String, userId: String? = nil, fields: [ItemFields]? = nil, season: Int? = nil, seasonId: String? = nil, isMissing: Bool? = nil, adjacentTo: String? = nil, startItemId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, sortBy: String? = nil) -> RequestBuilder { - var localVariablePath = "/Shows/{seriesId}/Episodes" - let seriesIdPreEscape = "\(APIHelper.mapValueToPathItem(seriesId))" - let seriesIdPostEscape = seriesIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{seriesId}", with: seriesIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "season": season?.encodeToJSON(), - "seasonId": seasonId?.encodeToJSON(), - "isMissing": isMissing?.encodeToJSON(), - "adjacentTo": adjacentTo?.encodeToJSON(), - "startItemId": startItemId?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a list of next up episodes. - - - parameter userId: (query) The user id of the user to get the next up episodes for. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter seriesId: (query) Optional. Filter by series id. (optional) - - parameter parentId: (query) Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter nextUpDateCutoff: (query) Optional. Starting date of shows to show in Next Up section. (optional) - - parameter enableTotalRecordCount: (query) Whether to enable the total records count. Defaults to true. (optional, default to true) - - parameter disableFirstEpisode: (query) Whether to disable sending the first episode in a series as next up. (optional, default to false) - - parameter enableRewatching: (query) Whether to include watched episode in next up results. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getNextUp(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, seriesId: String? = nil, parentId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, nextUpDateCutoff: Date? = nil, enableTotalRecordCount: Bool? = nil, disableFirstEpisode: Bool? = nil, enableRewatching: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getNextUpWithRequestBuilder(userId: userId, startIndex: startIndex, limit: limit, fields: fields, seriesId: seriesId, parentId: parentId, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData, nextUpDateCutoff: nextUpDateCutoff, enableTotalRecordCount: enableTotalRecordCount, disableFirstEpisode: disableFirstEpisode, enableRewatching: enableRewatching).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a list of next up episodes. - - GET /Shows/NextUp - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) The user id of the user to get the next up episodes for. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter seriesId: (query) Optional. Filter by series id. (optional) - - parameter parentId: (query) Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter nextUpDateCutoff: (query) Optional. Starting date of shows to show in Next Up section. (optional) - - parameter enableTotalRecordCount: (query) Whether to enable the total records count. Defaults to true. (optional, default to true) - - parameter disableFirstEpisode: (query) Whether to disable sending the first episode in a series as next up. (optional, default to false) - - parameter enableRewatching: (query) Whether to include watched episode in next up results. (optional, default to false) - - returns: RequestBuilder - */ - open class func getNextUpWithRequestBuilder(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, seriesId: String? = nil, parentId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, nextUpDateCutoff: Date? = nil, enableTotalRecordCount: Bool? = nil, disableFirstEpisode: Bool? = nil, enableRewatching: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Shows/NextUp" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "seriesId": seriesId?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "nextUpDateCutoff": nextUpDateCutoff?.encodeToJSON(), - "enableTotalRecordCount": enableTotalRecordCount?.encodeToJSON(), - "disableFirstEpisode": disableFirstEpisode?.encodeToJSON(), - "enableRewatching": enableRewatching?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets seasons for a tv series. - - - parameter seriesId: (path) The series id. - - parameter userId: (query) The user id. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - parameter isSpecialSeason: (query) Optional. Filter by special season. (optional) - - parameter isMissing: (query) Optional. Filter by items that are missing episodes or not. (optional) - - parameter adjacentTo: (query) Optional. Return items that are siblings of a supplied item. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSeasons(seriesId: String, userId: String? = nil, fields: [ItemFields]? = nil, isSpecialSeason: Bool? = nil, isMissing: Bool? = nil, adjacentTo: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getSeasonsWithRequestBuilder(seriesId: seriesId, userId: userId, fields: fields, isSpecialSeason: isSpecialSeason, isMissing: isMissing, adjacentTo: adjacentTo, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets seasons for a tv series. - - GET /Shows/{seriesId}/Seasons - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter seriesId: (path) The series id. - - parameter userId: (query) The user id. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - - parameter isSpecialSeason: (query) Optional. Filter by special season. (optional) - - parameter isMissing: (query) Optional. Filter by items that are missing episodes or not. (optional) - - parameter adjacentTo: (query) Optional. Return items that are siblings of a supplied item. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - returns: RequestBuilder - */ - open class func getSeasonsWithRequestBuilder(seriesId: String, userId: String? = nil, fields: [ItemFields]? = nil, isSpecialSeason: Bool? = nil, isMissing: Bool? = nil, adjacentTo: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Shows/{seriesId}/Seasons" - let seriesIdPreEscape = "\(APIHelper.mapValueToPathItem(seriesId))" - let seriesIdPostEscape = seriesIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{seriesId}", with: seriesIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "isSpecialSeason": isSpecialSeason?.encodeToJSON(), - "isMissing": isMissing?.encodeToJSON(), - "adjacentTo": adjacentTo?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a list of upcoming episodes. - - - parameter userId: (query) The user id of the user to get the upcoming episodes for. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter parentId: (query) Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getUpcomingEpisodes(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, parentId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getUpcomingEpisodesWithRequestBuilder(userId: userId, startIndex: startIndex, limit: limit, fields: fields, parentId: parentId, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a list of upcoming episodes. - - GET /Shows/Upcoming - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (query) The user id of the user to get the upcoming episodes for. (optional) - - parameter startIndex: (query) Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter parentId: (query) Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter enableImages: (query) Optional. Include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - returns: RequestBuilder - */ - open class func getUpcomingEpisodesWithRequestBuilder(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, parentId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Shows/Upcoming" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/UniversalAudioAPI.swift b/Sources/JellyfinAPI/APIs/UniversalAudioAPI.swift deleted file mode 100644 index c96db62ae..000000000 --- a/Sources/JellyfinAPI/APIs/UniversalAudioAPI.swift +++ /dev/null @@ -1,237 +0,0 @@ -// -// UniversalAudioAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class UniversalAudioAPI { - - /** - Gets an audio stream. - - - parameter itemId: (path) The item id. - - parameter container: (query) Optional. The audio container. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter userId: (query) Optional. The user id. (optional) - - parameter audioCodec: (query) Optional. The audio codec to transcode to. (optional) - - parameter maxAudioChannels: (query) Optional. The maximum number of audio channels. (optional) - - parameter transcodingAudioChannels: (query) Optional. The number of how many audio channels to transcode to. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter transcodingContainer: (query) Optional. The container to transcode to. (optional) - - parameter transcodingProtocol: (query) Optional. The transcoding protocol. (optional) - - parameter maxAudioSampleRate: (query) Optional. The maximum audio sample rate. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter enableRemoteMedia: (query) Optional. Whether to enable remote media. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional, default to false) - - parameter enableRedirection: (query) Whether to enable redirection. Defaults to true. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getUniversalAudioStream(itemId: String, container: [String]? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, userId: String? = nil, audioCodec: String? = nil, maxAudioChannels: Int? = nil, transcodingAudioChannels: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, startTimeTicks: Int64? = nil, transcodingContainer: String? = nil, transcodingProtocol: String? = nil, maxAudioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, enableRemoteMedia: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, enableRedirection: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getUniversalAudioStreamWithRequestBuilder(itemId: itemId, container: container, mediaSourceId: mediaSourceId, deviceId: deviceId, userId: userId, audioCodec: audioCodec, maxAudioChannels: maxAudioChannels, transcodingAudioChannels: transcodingAudioChannels, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, startTimeTicks: startTimeTicks, transcodingContainer: transcodingContainer, transcodingProtocol: transcodingProtocol, maxAudioSampleRate: maxAudioSampleRate, maxAudioBitDepth: maxAudioBitDepth, enableRemoteMedia: enableRemoteMedia, breakOnNonKeyFrames: breakOnNonKeyFrames, enableRedirection: enableRedirection).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an audio stream. - - GET /Audio/{itemId}/universal - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter container: (query) Optional. The audio container. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter userId: (query) Optional. The user id. (optional) - - parameter audioCodec: (query) Optional. The audio codec to transcode to. (optional) - - parameter maxAudioChannels: (query) Optional. The maximum number of audio channels. (optional) - - parameter transcodingAudioChannels: (query) Optional. The number of how many audio channels to transcode to. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter transcodingContainer: (query) Optional. The container to transcode to. (optional) - - parameter transcodingProtocol: (query) Optional. The transcoding protocol. (optional) - - parameter maxAudioSampleRate: (query) Optional. The maximum audio sample rate. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter enableRemoteMedia: (query) Optional. Whether to enable remote media. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional, default to false) - - parameter enableRedirection: (query) Whether to enable redirection. Defaults to true. (optional, default to true) - - returns: RequestBuilder - */ - open class func getUniversalAudioStreamWithRequestBuilder(itemId: String, container: [String]? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, userId: String? = nil, audioCodec: String? = nil, maxAudioChannels: Int? = nil, transcodingAudioChannels: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, startTimeTicks: Int64? = nil, transcodingContainer: String? = nil, transcodingProtocol: String? = nil, maxAudioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, enableRemoteMedia: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, enableRedirection: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/universal" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "container": container?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "transcodingAudioChannels": transcodingAudioChannels?.encodeToJSON(), - "maxStreamingBitrate": maxStreamingBitrate?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "transcodingContainer": transcodingContainer?.encodeToJSON(), - "transcodingProtocol": transcodingProtocol?.encodeToJSON(), - "maxAudioSampleRate": maxAudioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "enableRemoteMedia": enableRemoteMedia?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "enableRedirection": enableRedirection?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets an audio stream. - - - parameter itemId: (path) The item id. - - parameter container: (query) Optional. The audio container. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter userId: (query) Optional. The user id. (optional) - - parameter audioCodec: (query) Optional. The audio codec to transcode to. (optional) - - parameter maxAudioChannels: (query) Optional. The maximum number of audio channels. (optional) - - parameter transcodingAudioChannels: (query) Optional. The number of how many audio channels to transcode to. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter transcodingContainer: (query) Optional. The container to transcode to. (optional) - - parameter transcodingProtocol: (query) Optional. The transcoding protocol. (optional) - - parameter maxAudioSampleRate: (query) Optional. The maximum audio sample rate. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter enableRemoteMedia: (query) Optional. Whether to enable remote media. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional, default to false) - - parameter enableRedirection: (query) Whether to enable redirection. Defaults to true. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headUniversalAudioStream(itemId: String, container: [String]? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, userId: String? = nil, audioCodec: String? = nil, maxAudioChannels: Int? = nil, transcodingAudioChannels: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, startTimeTicks: Int64? = nil, transcodingContainer: String? = nil, transcodingProtocol: String? = nil, maxAudioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, enableRemoteMedia: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, enableRedirection: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headUniversalAudioStreamWithRequestBuilder(itemId: itemId, container: container, mediaSourceId: mediaSourceId, deviceId: deviceId, userId: userId, audioCodec: audioCodec, maxAudioChannels: maxAudioChannels, transcodingAudioChannels: transcodingAudioChannels, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, startTimeTicks: startTimeTicks, transcodingContainer: transcodingContainer, transcodingProtocol: transcodingProtocol, maxAudioSampleRate: maxAudioSampleRate, maxAudioBitDepth: maxAudioBitDepth, enableRemoteMedia: enableRemoteMedia, breakOnNonKeyFrames: breakOnNonKeyFrames, enableRedirection: enableRedirection).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an audio stream. - - HEAD /Audio/{itemId}/universal - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter container: (query) Optional. The audio container. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter userId: (query) Optional. The user id. (optional) - - parameter audioCodec: (query) Optional. The audio codec to transcode to. (optional) - - parameter maxAudioChannels: (query) Optional. The maximum number of audio channels. (optional) - - parameter transcodingAudioChannels: (query) Optional. The number of how many audio channels to transcode to. (optional) - - parameter maxStreamingBitrate: (query) Optional. The maximum streaming bitrate. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter transcodingContainer: (query) Optional. The container to transcode to. (optional) - - parameter transcodingProtocol: (query) Optional. The transcoding protocol. (optional) - - parameter maxAudioSampleRate: (query) Optional. The maximum audio sample rate. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter enableRemoteMedia: (query) Optional. Whether to enable remote media. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional, default to false) - - parameter enableRedirection: (query) Whether to enable redirection. Defaults to true. (optional, default to true) - - returns: RequestBuilder - */ - open class func headUniversalAudioStreamWithRequestBuilder(itemId: String, container: [String]? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, userId: String? = nil, audioCodec: String? = nil, maxAudioChannels: Int? = nil, transcodingAudioChannels: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, startTimeTicks: Int64? = nil, transcodingContainer: String? = nil, transcodingProtocol: String? = nil, maxAudioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, enableRemoteMedia: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, enableRedirection: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Audio/{itemId}/universal" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "container": container?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "transcodingAudioChannels": transcodingAudioChannels?.encodeToJSON(), - "maxStreamingBitrate": maxStreamingBitrate?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "transcodingContainer": transcodingContainer?.encodeToJSON(), - "transcodingProtocol": transcodingProtocol?.encodeToJSON(), - "maxAudioSampleRate": maxAudioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "enableRemoteMedia": enableRemoteMedia?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "enableRedirection": enableRedirection?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/UserAPI.swift b/Sources/JellyfinAPI/APIs/UserAPI.swift deleted file mode 100644 index 450df0192..000000000 --- a/Sources/JellyfinAPI/APIs/UserAPI.swift +++ /dev/null @@ -1,907 +0,0 @@ -// -// UserAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class UserAPI { - - /** - Authenticates a user. - - - parameter userId: (path) The user id. - - parameter pw: (query) The password as plain text. - - parameter password: (query) The password sha1-hash. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func authenticateUser(userId: String, pw: String, password: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = authenticateUserWithRequestBuilder(userId: userId, pw: pw, password: password).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Authenticates a user. - - POST /Users/{userId}/Authenticate - - parameter userId: (path) The user id. - - parameter pw: (query) The password as plain text. - - parameter password: (query) The password sha1-hash. (optional) - - returns: RequestBuilder - */ - open class func authenticateUserWithRequestBuilder(userId: String, pw: String, password: String? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Authenticate" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "pw": pw.encodeToJSON(), - "password": password?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Authenticates a user by name. - - - parameter authenticateUserByNameRequest: (body) The M:Jellyfin.Api.Controllers.UserController.AuthenticateUserByName(Jellyfin.Api.Models.UserDtos.AuthenticateUserByName) request. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func authenticateUserByName(authenticateUserByNameRequest: AuthenticateUserByNameRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = authenticateUserByNameWithRequestBuilder(authenticateUserByNameRequest: authenticateUserByNameRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Authenticates a user by name. - - POST /Users/AuthenticateByName - - parameter authenticateUserByNameRequest: (body) The M:Jellyfin.Api.Controllers.UserController.AuthenticateUserByName(Jellyfin.Api.Models.UserDtos.AuthenticateUserByName) request. - - returns: RequestBuilder - */ - open class func authenticateUserByNameWithRequestBuilder(authenticateUserByNameRequest: AuthenticateUserByNameRequest) -> RequestBuilder { - let localVariablePath = "/Users/AuthenticateByName" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: authenticateUserByNameRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Authenticates a user with quick connect. - - - parameter authenticateWithQuickConnectRequest: (body) The Jellyfin.Api.Models.UserDtos.QuickConnectDto request. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func authenticateWithQuickConnect(authenticateWithQuickConnectRequest: AuthenticateWithQuickConnectRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = authenticateWithQuickConnectWithRequestBuilder(authenticateWithQuickConnectRequest: authenticateWithQuickConnectRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Authenticates a user with quick connect. - - POST /Users/AuthenticateWithQuickConnect - - parameter authenticateWithQuickConnectRequest: (body) The Jellyfin.Api.Models.UserDtos.QuickConnectDto request. - - returns: RequestBuilder - */ - open class func authenticateWithQuickConnectWithRequestBuilder(authenticateWithQuickConnectRequest: AuthenticateWithQuickConnectRequest) -> RequestBuilder { - let localVariablePath = "/Users/AuthenticateWithQuickConnect" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: authenticateWithQuickConnectRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Creates a user. - - - parameter createUserByNameRequest: (body) The create user by name request body. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func createUserByName(createUserByNameRequest: CreateUserByNameRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = createUserByNameWithRequestBuilder(createUserByNameRequest: createUserByNameRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Creates a user. - - POST /Users/New - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter createUserByNameRequest: (body) The create user by name request body. - - returns: RequestBuilder - */ - open class func createUserByNameWithRequestBuilder(createUserByNameRequest: CreateUserByNameRequest) -> RequestBuilder { - let localVariablePath = "/Users/New" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: createUserByNameRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Deletes a user. - - - parameter userId: (path) The user id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteUser(userId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteUserWithRequestBuilder(userId: userId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Deletes a user. - - DELETE /Users/{userId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) The user id. - - returns: RequestBuilder - */ - open class func deleteUserWithRequestBuilder(userId: String) -> RequestBuilder { - var localVariablePath = "/Users/{userId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Initiates the forgot password process for a local user. - - - parameter forgotPasswordRequest: (body) The forgot password request containing the entered username. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func forgotPassword(forgotPasswordRequest: ForgotPasswordRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = forgotPasswordWithRequestBuilder(forgotPasswordRequest: forgotPasswordRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Initiates the forgot password process for a local user. - - POST /Users/ForgotPassword - - parameter forgotPasswordRequest: (body) The forgot password request containing the entered username. - - returns: RequestBuilder - */ - open class func forgotPasswordWithRequestBuilder(forgotPasswordRequest: ForgotPasswordRequest) -> RequestBuilder { - let localVariablePath = "/Users/ForgotPassword" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: forgotPasswordRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Redeems a forgot password pin. - - - parameter forgotPasswordPinRequest: (body) The forgot password pin request containing the entered pin. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func forgotPasswordPin(forgotPasswordPinRequest: ForgotPasswordPinRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = forgotPasswordPinWithRequestBuilder(forgotPasswordPinRequest: forgotPasswordPinRequest).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Redeems a forgot password pin. - - POST /Users/ForgotPassword/Pin - - parameter forgotPasswordPinRequest: (body) The forgot password pin request containing the entered pin. - - returns: RequestBuilder - */ - open class func forgotPasswordPinWithRequestBuilder(forgotPasswordPinRequest: ForgotPasswordPinRequest) -> RequestBuilder { - let localVariablePath = "/Users/ForgotPassword/Pin" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: forgotPasswordPinRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the user based on auth token. - - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getCurrentUser() -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getCurrentUserWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the user based on auth token. - - GET /Users/Me - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - returns: RequestBuilder - */ - open class func getCurrentUserWithRequestBuilder() -> RequestBuilder { - let localVariablePath = "/Users/Me" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a list of publicly visible users for display on a login screen. - - - returns: AnyPublisher<[UserDto], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getPublicUsers() -> AnyPublisher<[UserDto], Error> { - var requestTask: RequestTask? - return Future<[UserDto], Error> { promise in - requestTask = getPublicUsersWithRequestBuilder().execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a list of publicly visible users for display on a login screen. - - GET /Users/Public - - returns: RequestBuilder<[UserDto]> - */ - open class func getPublicUsersWithRequestBuilder() -> RequestBuilder<[UserDto]> { - let localVariablePath = "/Users/Public" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[UserDto]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a user by Id. - - - parameter userId: (path) The user id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getUserById(userId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getUserByIdWithRequestBuilder(userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a user by Id. - - GET /Users/{userId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) The user id. - - returns: RequestBuilder - */ - open class func getUserByIdWithRequestBuilder(userId: String) -> RequestBuilder { - var localVariablePath = "/Users/{userId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a list of users. - - - parameter isHidden: (query) Optional filter by IsHidden=true or false. (optional) - - parameter isDisabled: (query) Optional filter by IsDisabled=true or false. (optional) - - returns: AnyPublisher<[UserDto], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getUsers(isHidden: Bool? = nil, isDisabled: Bool? = nil) -> AnyPublisher<[UserDto], Error> { - var requestTask: RequestTask? - return Future<[UserDto], Error> { promise in - requestTask = getUsersWithRequestBuilder(isHidden: isHidden, isDisabled: isDisabled).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a list of users. - - GET /Users - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter isHidden: (query) Optional filter by IsHidden=true or false. (optional) - - parameter isDisabled: (query) Optional filter by IsDisabled=true or false. (optional) - - returns: RequestBuilder<[UserDto]> - */ - open class func getUsersWithRequestBuilder(isHidden: Bool? = nil, isDisabled: Bool? = nil) -> RequestBuilder<[UserDto]> { - let localVariablePath = "/Users" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "isHidden": isHidden?.encodeToJSON(), - "isDisabled": isDisabled?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[UserDto]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates a user. - - - parameter userId: (path) The user id. - - parameter updateUserRequest: (body) The updated user model. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateUser(userId: String, updateUserRequest: UpdateUserRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateUserWithRequestBuilder(userId: userId, updateUserRequest: updateUserRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates a user. - - POST /Users/{userId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) The user id. - - parameter updateUserRequest: (body) The updated user model. - - returns: RequestBuilder - */ - open class func updateUserWithRequestBuilder(userId: String, updateUserRequest: UpdateUserRequest) -> RequestBuilder { - var localVariablePath = "/Users/{userId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateUserRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates a user configuration. - - - parameter userId: (path) The user id. - - parameter updateUserConfigurationRequest: (body) The new user configuration. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateUserConfiguration(userId: String, updateUserConfigurationRequest: UpdateUserConfigurationRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateUserConfigurationWithRequestBuilder(userId: userId, updateUserConfigurationRequest: updateUserConfigurationRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates a user configuration. - - POST /Users/{userId}/Configuration - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) The user id. - - parameter updateUserConfigurationRequest: (body) The new user configuration. - - returns: RequestBuilder - */ - open class func updateUserConfigurationWithRequestBuilder(userId: String, updateUserConfigurationRequest: UpdateUserConfigurationRequest) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Configuration" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateUserConfigurationRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates a user's easy password. - - - parameter userId: (path) The user id. - - parameter updateUserEasyPasswordRequest: (body) The M:Jellyfin.Api.Controllers.UserController.UpdateUserEasyPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserEasyPassword) request. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateUserEasyPassword(userId: String, updateUserEasyPasswordRequest: UpdateUserEasyPasswordRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateUserEasyPasswordWithRequestBuilder(userId: userId, updateUserEasyPasswordRequest: updateUserEasyPasswordRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates a user's easy password. - - POST /Users/{userId}/EasyPassword - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) The user id. - - parameter updateUserEasyPasswordRequest: (body) The M:Jellyfin.Api.Controllers.UserController.UpdateUserEasyPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserEasyPassword) request. - - returns: RequestBuilder - */ - open class func updateUserEasyPasswordWithRequestBuilder(userId: String, updateUserEasyPasswordRequest: UpdateUserEasyPasswordRequest) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/EasyPassword" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateUserEasyPasswordRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates a user's password. - - - parameter userId: (path) The user id. - - parameter updateUserPasswordRequest: (body) The M:Jellyfin.Api.Controllers.UserController.UpdateUserPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserPassword) request. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateUserPassword(userId: String, updateUserPasswordRequest: UpdateUserPasswordRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateUserPasswordWithRequestBuilder(userId: userId, updateUserPasswordRequest: updateUserPasswordRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates a user's password. - - POST /Users/{userId}/Password - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) The user id. - - parameter updateUserPasswordRequest: (body) The M:Jellyfin.Api.Controllers.UserController.UpdateUserPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserPassword) request. - - returns: RequestBuilder - */ - open class func updateUserPasswordWithRequestBuilder(userId: String, updateUserPasswordRequest: UpdateUserPasswordRequest) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Password" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateUserPasswordRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates a user policy. - - - parameter userId: (path) The user id. - - parameter updateUserPolicyRequest: (body) The new user policy. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateUserPolicy(userId: String, updateUserPolicyRequest: UpdateUserPolicyRequest) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateUserPolicyWithRequestBuilder(userId: userId, updateUserPolicyRequest: updateUserPolicyRequest).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates a user policy. - - POST /Users/{userId}/Policy - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) The user id. - - parameter updateUserPolicyRequest: (body) The new user policy. - - returns: RequestBuilder - */ - open class func updateUserPolicyWithRequestBuilder(userId: String, updateUserPolicyRequest: UpdateUserPolicyRequest) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Policy" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters = JSONEncodingHelper.encodingParameters(forEncodableObject: updateUserPolicyRequest) - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/UserLibraryAPI.swift b/Sources/JellyfinAPI/APIs/UserLibraryAPI.swift deleted file mode 100644 index d9c22d364..000000000 --- a/Sources/JellyfinAPI/APIs/UserLibraryAPI.swift +++ /dev/null @@ -1,664 +0,0 @@ -// -// UserLibraryAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class UserLibraryAPI { - - /** - Deletes a user's saved personal rating for an item. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteUserItemRating(userId: String, itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteUserItemRatingWithRequestBuilder(userId: userId, itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Deletes a user's saved personal rating for an item. - - DELETE /Users/{userId}/Items/{itemId}/Rating - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: RequestBuilder - */ - open class func deleteUserItemRatingWithRequestBuilder(userId: String, itemId: String) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Items/{itemId}/Rating" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets intros to play before the main media item plays. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getIntros(userId: String, itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getIntrosWithRequestBuilder(userId: userId, itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets intros to play before the main media item plays. - - GET /Users/{userId}/Items/{itemId}/Intros - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: RequestBuilder - */ - open class func getIntrosWithRequestBuilder(userId: String, itemId: String) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Items/{itemId}/Intros" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets an item from a user's library. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getItem(userId: String, itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getItemWithRequestBuilder(userId: userId, itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets an item from a user's library. - - GET /Users/{userId}/Items/{itemId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: RequestBuilder - */ - open class func getItemWithRequestBuilder(userId: String, itemId: String) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Items/{itemId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets latest media. - - - parameter userId: (path) User id. - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter isPlayed: (query) Filter by items that are played, or not. (optional) - - parameter enableImages: (query) Optional. include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. include user data. (optional) - - parameter limit: (query) Return item limit. (optional, default to 20) - - parameter groupItems: (query) Whether or not to group items into a parent container. (optional, default to true) - - returns: AnyPublisher<[BaseItemDto], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLatestMedia(userId: String, parentId: String? = nil, fields: [ItemFields]? = nil, includeItemTypes: [BaseItemKind]? = nil, isPlayed: Bool? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, limit: Int? = nil, groupItems: Bool? = nil) -> AnyPublisher<[BaseItemDto], Error> { - var requestTask: RequestTask? - return Future<[BaseItemDto], Error> { promise in - requestTask = getLatestMediaWithRequestBuilder(userId: userId, parentId: parentId, fields: fields, includeItemTypes: includeItemTypes, isPlayed: isPlayed, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData, limit: limit, groupItems: groupItems).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets latest media. - - GET /Users/{userId}/Items/Latest - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) - - parameter isPlayed: (query) Filter by items that are played, or not. (optional) - - parameter enableImages: (query) Optional. include image information in output. (optional) - - parameter imageTypeLimit: (query) Optional. the max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter enableUserData: (query) Optional. include user data. (optional) - - parameter limit: (query) Return item limit. (optional, default to 20) - - parameter groupItems: (query) Whether or not to group items into a parent container. (optional, default to true) - - returns: RequestBuilder<[BaseItemDto]> - */ - open class func getLatestMediaWithRequestBuilder(userId: String, parentId: String? = nil, fields: [ItemFields]? = nil, includeItemTypes: [BaseItemKind]? = nil, isPlayed: Bool? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, limit: Int? = nil, groupItems: Bool? = nil) -> RequestBuilder<[BaseItemDto]> { - var localVariablePath = "/Users/{userId}/Items/Latest" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "isPlayed": isPlayed?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "groupItems": groupItems?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[BaseItemDto]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets local trailers for an item. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: AnyPublisher<[BaseItemDto], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLocalTrailers(userId: String, itemId: String) -> AnyPublisher<[BaseItemDto], Error> { - var requestTask: RequestTask? - return Future<[BaseItemDto], Error> { promise in - requestTask = getLocalTrailersWithRequestBuilder(userId: userId, itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets local trailers for an item. - - GET /Users/{userId}/Items/{itemId}/LocalTrailers - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: RequestBuilder<[BaseItemDto]> - */ - open class func getLocalTrailersWithRequestBuilder(userId: String, itemId: String) -> RequestBuilder<[BaseItemDto]> { - var localVariablePath = "/Users/{userId}/Items/{itemId}/LocalTrailers" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[BaseItemDto]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets the root folder from a user's library. - - - parameter userId: (path) User id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getRootFolder(userId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getRootFolderWithRequestBuilder(userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets the root folder from a user's library. - - GET /Users/{userId}/Items/Root - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - returns: RequestBuilder - */ - open class func getRootFolderWithRequestBuilder(userId: String) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Items/Root" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets special features for an item. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: AnyPublisher<[BaseItemDto], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getSpecialFeatures(userId: String, itemId: String) -> AnyPublisher<[BaseItemDto], Error> { - var requestTask: RequestTask? - return Future<[BaseItemDto], Error> { promise in - requestTask = getSpecialFeaturesWithRequestBuilder(userId: userId, itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets special features for an item. - - GET /Users/{userId}/Items/{itemId}/SpecialFeatures - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: RequestBuilder<[BaseItemDto]> - */ - open class func getSpecialFeaturesWithRequestBuilder(userId: String, itemId: String) -> RequestBuilder<[BaseItemDto]> { - var localVariablePath = "/Users/{userId}/Items/{itemId}/SpecialFeatures" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[BaseItemDto]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Marks an item as a favorite. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func markFavoriteItem(userId: String, itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = markFavoriteItemWithRequestBuilder(userId: userId, itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Marks an item as a favorite. - - POST /Users/{userId}/FavoriteItems/{itemId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: RequestBuilder - */ - open class func markFavoriteItemWithRequestBuilder(userId: String, itemId: String) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/FavoriteItems/{itemId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Unmarks item as a favorite. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func unmarkFavoriteItem(userId: String, itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = unmarkFavoriteItemWithRequestBuilder(userId: userId, itemId: itemId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Unmarks item as a favorite. - - DELETE /Users/{userId}/FavoriteItems/{itemId} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - returns: RequestBuilder - */ - open class func unmarkFavoriteItemWithRequestBuilder(userId: String, itemId: String) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/FavoriteItems/{itemId}" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Updates a user's rating for an item. - - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - parameter likes: (query) Whether this M:Jellyfin.Api.Controllers.UserLibraryController.UpdateUserItemRating(System.Guid,System.Guid,System.Nullable{System.Boolean}) is likes. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func updateUserItemRating(userId: String, itemId: String, likes: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = updateUserItemRatingWithRequestBuilder(userId: userId, itemId: itemId, likes: likes).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Updates a user's rating for an item. - - POST /Users/{userId}/Items/{itemId}/Rating - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter itemId: (path) Item id. - - parameter likes: (query) Whether this M:Jellyfin.Api.Controllers.UserLibraryController.UpdateUserItemRating(System.Guid,System.Guid,System.Nullable{System.Boolean}) is likes. (optional) - - returns: RequestBuilder - */ - open class func updateUserItemRatingWithRequestBuilder(userId: String, itemId: String, likes: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Items/{itemId}/Rating" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "likes": likes?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/UserViewsAPI.swift b/Sources/JellyfinAPI/APIs/UserViewsAPI.swift deleted file mode 100644 index b2d653d54..000000000 --- a/Sources/JellyfinAPI/APIs/UserViewsAPI.swift +++ /dev/null @@ -1,142 +0,0 @@ -// -// UserViewsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class UserViewsAPI { - - /** - Get user view grouping options. - - - parameter userId: (path) User id. - - returns: AnyPublisher<[SpecialViewOptionDto], Error> - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getGroupingOptions(userId: String) -> AnyPublisher<[SpecialViewOptionDto], Error> { - var requestTask: RequestTask? - return Future<[SpecialViewOptionDto], Error> { promise in - requestTask = getGroupingOptionsWithRequestBuilder(userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get user view grouping options. - - GET /Users/{userId}/GroupingOptions - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - returns: RequestBuilder<[SpecialViewOptionDto]> - */ - open class func getGroupingOptionsWithRequestBuilder(userId: String) -> RequestBuilder<[SpecialViewOptionDto]> { - var localVariablePath = "/Users/{userId}/GroupingOptions" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder<[SpecialViewOptionDto]>.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get user views. - - - parameter userId: (path) User id. - - parameter includeExternalContent: (query) Whether or not to include external views such as channels or live tv. (optional) - - parameter presetViews: (query) Preset views. (optional) - - parameter includeHidden: (query) Whether or not to include hidden content. (optional, default to false) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getUserViews(userId: String, includeExternalContent: Bool? = nil, presetViews: [String]? = nil, includeHidden: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getUserViewsWithRequestBuilder(userId: userId, includeExternalContent: includeExternalContent, presetViews: presetViews, includeHidden: includeHidden).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get user views. - - GET /Users/{userId}/Views - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter userId: (path) User id. - - parameter includeExternalContent: (query) Whether or not to include external views such as channels or live tv. (optional) - - parameter presetViews: (query) Preset views. (optional) - - parameter includeHidden: (query) Whether or not to include hidden content. (optional, default to false) - - returns: RequestBuilder - */ - open class func getUserViewsWithRequestBuilder(userId: String, includeExternalContent: Bool? = nil, presetViews: [String]? = nil, includeHidden: Bool? = nil) -> RequestBuilder { - var localVariablePath = "/Users/{userId}/Views" - let userIdPreEscape = "\(APIHelper.mapValueToPathItem(userId))" - let userIdPostEscape = userIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{userId}", with: userIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "includeExternalContent": includeExternalContent?.encodeToJSON(), - "presetViews": presetViews?.encodeToJSON(), - "includeHidden": includeHidden?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/VideoAttachmentsAPI.swift b/Sources/JellyfinAPI/APIs/VideoAttachmentsAPI.swift deleted file mode 100644 index 6b1ae732a..000000000 --- a/Sources/JellyfinAPI/APIs/VideoAttachmentsAPI.swift +++ /dev/null @@ -1,81 +0,0 @@ -// -// VideoAttachmentsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class VideoAttachmentsAPI { - - /** - Get video attachment. - - - parameter videoId: (path) Video ID. - - parameter mediaSourceId: (path) Media Source ID. - - parameter index: (path) Attachment Index. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getAttachment(videoId: String, mediaSourceId: String, index: Int) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getAttachmentWithRequestBuilder(videoId: videoId, mediaSourceId: mediaSourceId, index: index).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get video attachment. - - GET /Videos/{videoId}/{mediaSourceId}/Attachments/{index} - - parameter videoId: (path) Video ID. - - parameter mediaSourceId: (path) Media Source ID. - - parameter index: (path) Attachment Index. - - returns: RequestBuilder - */ - open class func getAttachmentWithRequestBuilder(videoId: String, mediaSourceId: String, index: Int) -> RequestBuilder { - var localVariablePath = "/Videos/{videoId}/{mediaSourceId}/Attachments/{index}" - let videoIdPreEscape = "\(APIHelper.mapValueToPathItem(videoId))" - let videoIdPostEscape = videoIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{videoId}", with: videoIdPostEscape, options: .literal, range: nil) - let mediaSourceIdPreEscape = "\(APIHelper.mapValueToPathItem(mediaSourceId))" - let mediaSourceIdPostEscape = mediaSourceIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{mediaSourceId}", with: mediaSourceIdPostEscape, options: .literal, range: nil) - let indexPreEscape = "\(APIHelper.mapValueToPathItem(index))" - let indexPostEscape = indexPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{index}", with: indexPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/VideoHlsAPI.swift b/Sources/JellyfinAPI/APIs/VideoHlsAPI.swift deleted file mode 100644 index e7f12665f..000000000 --- a/Sources/JellyfinAPI/APIs/VideoHlsAPI.swift +++ /dev/null @@ -1,220 +0,0 @@ -// -// VideoHlsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import AnyCodable -import Foundation -#if canImport(Combine) - import Combine -#endif - -open class VideoHlsAPI { - /** - Gets a hls live stream. - - - parameter itemId: (path) The item id. - - parameter container: (query) The audio container. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment lenght. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter maxWidth: (query) Optional. The max width. (optional) - - parameter maxHeight: (query) Optional. The max height. (optional) - - parameter enableSubtitlesInManifest: (query) Optional. Whether to enable subtitles in the manifest. (optional) - - parameter apiResponseQueue: The queue on which api response is dispatched. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(OSX 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getLiveHlsStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, enableSubtitlesInManifest: Bool? = nil, apiResponseQueue: DispatchQueue = JellyfinAPI.apiResponseQueue) -> AnyPublisher { - return Future.init { promise in - getLiveHlsStreamWithRequestBuilder(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, maxWidth: maxWidth, maxHeight: maxHeight, enableSubtitlesInManifest: enableSubtitlesInManifest).execute(apiResponseQueue) { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - }.eraseToAnyPublisher() - } - #endif - - /** - Gets a hls live stream. - - GET /Videos/{itemId}/live.m3u8 - - API Key: - - type: apiKey X-Emby-Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter container: (query) The audio container. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment lenght. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - parameter maxWidth: (query) Optional. The max width. (optional) - - parameter maxHeight: (query) Optional. The max height. (optional) - - parameter enableSubtitlesInManifest: (query) Optional. Whether to enable subtitles in the manifest. (optional) - - returns: RequestBuilder - */ - open class func getLiveHlsStreamWithRequestBuilder(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, enableSubtitlesInManifest: Bool? = nil) -> RequestBuilder { - var urlPath = "/Videos/{itemId}/live.m3u8" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - urlPath = urlPath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let URLString = JellyfinAPI.basePath + urlPath - let parameters: [String: Any]? = nil - - var urlComponents = URLComponents(string: URLString) - urlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "container": container?.encodeToJSON(), - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "enableSubtitlesInManifest": enableSubtitlesInManifest?.encodeToJSON(), - ]) - - let nillableHeaders: [String: Any?] = [:] - - let headerParameters = APIHelper.rejectNilHeaders(nillableHeaders) - - let requestBuilder: RequestBuilder.Type = JellyfinAPI.requestBuilderFactory.getBuilder() - - return requestBuilder.init(method: "GET", URLString: urlComponents?.string ?? URLString, parameters: parameters, headers: headerParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/VideosAPI.swift b/Sources/JellyfinAPI/APIs/VideosAPI.swift deleted file mode 100644 index 4552a2406..000000000 --- a/Sources/JellyfinAPI/APIs/VideosAPI.swift +++ /dev/null @@ -1,1021 +0,0 @@ -// -// VideosAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class VideosAPI { - - /** - Removes alternate video sources. - - - parameter itemId: (path) The item id. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func deleteAlternateSources(itemId: String) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = deleteAlternateSourcesWithRequestBuilder(itemId: itemId).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Removes alternate video sources. - - DELETE /Videos/{itemId}/AlternateSources - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - returns: RequestBuilder - */ - open class func deleteAlternateSourcesWithRequestBuilder(itemId: String) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/AlternateSources" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - let localVariableUrlComponents = URLComponents(string: localVariableURLString) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "DELETE", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets additional parts for a video. - - - parameter itemId: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getAdditionalPart(itemId: String, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getAdditionalPartWithRequestBuilder(itemId: itemId, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets additional parts for a video. - - GET /Videos/{itemId}/AdditionalParts - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter itemId: (path) The item id. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: RequestBuilder - */ - open class func getAdditionalPartWithRequestBuilder(itemId: String, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/AdditionalParts" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a video stream. - - - parameter itemId: (path) The item id. - - parameter container: (query) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getVideoStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getVideoStreamWithRequestBuilder(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a video stream. - - GET /Videos/{itemId}/stream - - parameter itemId: (path) The item id. - - parameter container: (query) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func getVideoStreamWithRequestBuilder(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/stream" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "container": container?.encodeToJSON(), - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a video stream. - - - parameter itemId: (path) The item id. - - parameter container: (path) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getVideoStreamByContainer(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getVideoStreamByContainerWithRequestBuilder(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a video stream. - - GET /Videos/{itemId}/stream.{container} - - parameter itemId: (path) The item id. - - parameter container: (path) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func getVideoStreamByContainerWithRequestBuilder(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/stream.{container}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let containerPreEscape = "\(APIHelper.mapValueToPathItem(container))" - let containerPostEscape = containerPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{container}", with: containerPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a video stream. - - - parameter itemId: (path) The item id. - - parameter container: (query) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headVideoStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headVideoStreamWithRequestBuilder(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a video stream. - - HEAD /Videos/{itemId}/stream - - parameter itemId: (path) The item id. - - parameter container: (query) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. (optional) - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func headVideoStreamWithRequestBuilder(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/stream" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "container": container?.encodeToJSON(), - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Gets a video stream. - - - parameter itemId: (path) The item id. - - parameter container: (path) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func headVideoStreamByContainer(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = headVideoStreamByContainerWithRequestBuilder(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a video stream. - - HEAD /Videos/{itemId}/stream.{container} - - parameter itemId: (path) The item id. - - parameter container: (path) The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. - - parameter _static: (query) Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) - - parameter params: (query) The streaming parameters. (optional) - - parameter tag: (query) The tag. (optional) - - parameter deviceProfileId: (query) Optional. The dlna device profile id to utilize. (optional) - - parameter playSessionId: (query) The play session id. (optional) - - parameter segmentContainer: (query) The segment container. (optional) - - parameter segmentLength: (query) The segment length. (optional) - - parameter minSegments: (query) The minimum number of segments. (optional) - - parameter mediaSourceId: (query) The media version id, if playing an alternate version. (optional) - - parameter deviceId: (query) The device id of the client requesting. Used to stop encoding processes when needed. (optional) - - parameter audioCodec: (query) Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) - - parameter enableAutoStreamCopy: (query) Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) - - parameter allowVideoStreamCopy: (query) Whether or not to allow copying of the video stream url. (optional) - - parameter allowAudioStreamCopy: (query) Whether or not to allow copying of the audio stream url. (optional) - - parameter breakOnNonKeyFrames: (query) Optional. Whether to break on non key frames. (optional) - - parameter audioSampleRate: (query) Optional. Specify a specific audio sample rate, e.g. 44100. (optional) - - parameter maxAudioBitDepth: (query) Optional. The maximum audio bit depth. (optional) - - parameter audioBitRate: (query) Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) - - parameter audioChannels: (query) Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) - - parameter maxAudioChannels: (query) Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) - - parameter profile: (query) Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) - - parameter level: (query) Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) - - parameter framerate: (query) Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter maxFramerate: (query) Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) - - parameter copyTimestamps: (query) Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) - - parameter startTimeTicks: (query) Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) - - parameter width: (query) Optional. The fixed horizontal resolution of the encoded video. (optional) - - parameter height: (query) Optional. The fixed vertical resolution of the encoded video. (optional) - - parameter maxWidth: (query) Optional. The maximum horizontal resolution of the encoded video. (optional) - - parameter maxHeight: (query) Optional. The maximum vertical resolution of the encoded video. (optional) - - parameter videoBitRate: (query) Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) - - parameter subtitleStreamIndex: (query) Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) - - parameter subtitleMethod: (query) Optional. Specify the subtitle delivery method. (optional) - - parameter maxRefFrames: (query) Optional. (optional) - - parameter maxVideoBitDepth: (query) Optional. The maximum video bit depth. (optional) - - parameter requireAvc: (query) Optional. Whether to require avc. (optional) - - parameter deInterlace: (query) Optional. Whether to deinterlace the video. (optional) - - parameter requireNonAnamorphic: (query) Optional. Whether to require a non anamorphic stream. (optional) - - parameter transcodingMaxAudioChannels: (query) Optional. The maximum number of audio channels to transcode. (optional) - - parameter cpuCoreLimit: (query) Optional. The limit of how many cpu cores to use. (optional) - - parameter liveStreamId: (query) The live stream id. (optional) - - parameter enableMpegtsM2TsMode: (query) Optional. Whether to enable the MpegtsM2Ts mode. (optional) - - parameter videoCodec: (query) Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) - - parameter subtitleCodec: (query) Optional. Specify a subtitle codec to encode to. (optional) - - parameter transcodeReasons: (query) Optional. The transcoding reason. (optional) - - parameter audioStreamIndex: (query) Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) - - parameter videoStreamIndex: (query) Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) - - parameter context: (query) Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) - - parameter streamOptions: (query) Optional. The streaming options. (optional) - - returns: RequestBuilder - */ - open class func headVideoStreamByContainerWithRequestBuilder(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil) -> RequestBuilder { - var localVariablePath = "/Videos/{itemId}/stream.{container}" - let itemIdPreEscape = "\(APIHelper.mapValueToPathItem(itemId))" - let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil) - let containerPreEscape = "\(APIHelper.mapValueToPathItem(container))" - let containerPostEscape = containerPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{container}", with: containerPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "static": _static?.encodeToJSON(), - "params": params?.encodeToJSON(), - "tag": tag?.encodeToJSON(), - "deviceProfileId": deviceProfileId?.encodeToJSON(), - "playSessionId": playSessionId?.encodeToJSON(), - "segmentContainer": segmentContainer?.encodeToJSON(), - "segmentLength": segmentLength?.encodeToJSON(), - "minSegments": minSegments?.encodeToJSON(), - "mediaSourceId": mediaSourceId?.encodeToJSON(), - "deviceId": deviceId?.encodeToJSON(), - "audioCodec": audioCodec?.encodeToJSON(), - "enableAutoStreamCopy": enableAutoStreamCopy?.encodeToJSON(), - "allowVideoStreamCopy": allowVideoStreamCopy?.encodeToJSON(), - "allowAudioStreamCopy": allowAudioStreamCopy?.encodeToJSON(), - "breakOnNonKeyFrames": breakOnNonKeyFrames?.encodeToJSON(), - "audioSampleRate": audioSampleRate?.encodeToJSON(), - "maxAudioBitDepth": maxAudioBitDepth?.encodeToJSON(), - "audioBitRate": audioBitRate?.encodeToJSON(), - "audioChannels": audioChannels?.encodeToJSON(), - "maxAudioChannels": maxAudioChannels?.encodeToJSON(), - "profile": profile?.encodeToJSON(), - "level": level?.encodeToJSON(), - "framerate": framerate?.encodeToJSON(), - "maxFramerate": maxFramerate?.encodeToJSON(), - "copyTimestamps": copyTimestamps?.encodeToJSON(), - "startTimeTicks": startTimeTicks?.encodeToJSON(), - "width": width?.encodeToJSON(), - "height": height?.encodeToJSON(), - "maxWidth": maxWidth?.encodeToJSON(), - "maxHeight": maxHeight?.encodeToJSON(), - "videoBitRate": videoBitRate?.encodeToJSON(), - "subtitleStreamIndex": subtitleStreamIndex?.encodeToJSON(), - "subtitleMethod": subtitleMethod?.encodeToJSON(), - "maxRefFrames": maxRefFrames?.encodeToJSON(), - "maxVideoBitDepth": maxVideoBitDepth?.encodeToJSON(), - "requireAvc": requireAvc?.encodeToJSON(), - "deInterlace": deInterlace?.encodeToJSON(), - "requireNonAnamorphic": requireNonAnamorphic?.encodeToJSON(), - "transcodingMaxAudioChannels": transcodingMaxAudioChannels?.encodeToJSON(), - "cpuCoreLimit": cpuCoreLimit?.encodeToJSON(), - "liveStreamId": liveStreamId?.encodeToJSON(), - "enableMpegtsM2TsMode": enableMpegtsM2TsMode?.encodeToJSON(), - "videoCodec": videoCodec?.encodeToJSON(), - "subtitleCodec": subtitleCodec?.encodeToJSON(), - "transcodeReasons": transcodeReasons?.encodeToJSON(), - "audioStreamIndex": audioStreamIndex?.encodeToJSON(), - "videoStreamIndex": videoStreamIndex?.encodeToJSON(), - "context": context?.encodeToJSON(), - "streamOptions": streamOptions?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "HEAD", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Merges videos into a single record. - - - parameter ids: (query) Item id list. This allows multiple, comma delimited. - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func mergeVersions(ids: [String]) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = mergeVersionsWithRequestBuilder(ids: ids).execute { result in - switch result { - case .success: - promise(.success(())) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Merges videos into a single record. - - POST /Videos/MergeVersions - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter ids: (query) Item id list. This allows multiple, comma delimited. - - returns: RequestBuilder - */ - open class func mergeVersionsWithRequestBuilder(ids: [String]) -> RequestBuilder { - let localVariablePath = "/Videos/MergeVersions" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "ids": ids.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getNonDecodableBuilder() - - return localVariableRequestBuilder.init(method: "POST", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/APIs/YearsAPI.swift b/Sources/JellyfinAPI/APIs/YearsAPI.swift deleted file mode 100644 index 4717e2a02..000000000 --- a/Sources/JellyfinAPI/APIs/YearsAPI.swift +++ /dev/null @@ -1,178 +0,0 @@ -// -// YearsAPI.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(Combine) -import Combine -#endif -#if canImport(AnyCodable) -import AnyCodable -#endif - -open class YearsAPI { - - /** - Gets a year. - - - parameter year: (path) The year. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getYear(year: Int, userId: String? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getYearWithRequestBuilder(year: year, userId: userId).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Gets a year. - - GET /Years/{year} - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter year: (path) The year. - - parameter userId: (query) Optional. Filter by user id, and attach user data. (optional) - - returns: RequestBuilder - */ - open class func getYearWithRequestBuilder(year: Int, userId: String? = nil) -> RequestBuilder { - var localVariablePath = "/Years/{year}" - let yearPreEscape = "\(APIHelper.mapValueToPathItem(year))" - let yearPostEscape = yearPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? "" - localVariablePath = localVariablePath.replacingOccurrences(of: "{year}", with: yearPostEscape, options: .literal, range: nil) - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "userId": userId?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } - - /** - Get years. - - - parameter startIndex: (query) Skips over a given number of items within the results. Use for paging. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be excluded based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be included based on item type. This allows multiple, comma delimited. (optional) - - parameter mediaTypes: (query) Optional. Filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter userId: (query) User Id. (optional) - - parameter recursive: (query) Search recursively. (optional, default to true) - - parameter enableImages: (query) Optional. Include image information in output. (optional, default to true) - - returns: AnyPublisher - */ - #if canImport(Combine) - @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) - open class func getYears(startIndex: Int? = nil, limit: Int? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, mediaTypes: [String]? = nil, sortBy: [String]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, recursive: Bool? = nil, enableImages: Bool? = nil) -> AnyPublisher { - var requestTask: RequestTask? - return Future { promise in - requestTask = getYearsWithRequestBuilder(startIndex: startIndex, limit: limit, sortOrder: sortOrder, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, mediaTypes: mediaTypes, sortBy: sortBy, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, userId: userId, recursive: recursive, enableImages: enableImages).execute { result in - switch result { - case let .success(response): - promise(.success(response.body)) - case let .failure(error): - promise(.failure(error)) - } - } - } - .handleEvents(receiveCancel: { - requestTask?.cancel() - }) - .eraseToAnyPublisher() - } - #endif - - /** - Get years. - - GET /Years - - API Key: - - type: apiKey Authorization - - name: CustomAuthentication - - parameter startIndex: (query) Skips over a given number of items within the results. Use for paging. (optional) - - parameter limit: (query) Optional. The maximum number of records to return. (optional) - - parameter sortOrder: (query) Sort Order - Ascending,Descending. (optional) - - parameter parentId: (query) Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) - - parameter fields: (query) Optional. Specify additional fields of information to return in the output. (optional) - - parameter excludeItemTypes: (query) Optional. If specified, results will be excluded based on item type. This allows multiple, comma delimited. (optional) - - parameter includeItemTypes: (query) Optional. If specified, results will be included based on item type. This allows multiple, comma delimited. (optional) - - parameter mediaTypes: (query) Optional. Filter by MediaType. Allows multiple, comma delimited. (optional) - - parameter sortBy: (query) Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - - parameter enableUserData: (query) Optional. Include user data. (optional) - - parameter imageTypeLimit: (query) Optional. The max number of images to return, per image type. (optional) - - parameter enableImageTypes: (query) Optional. The image types to include in the output. (optional) - - parameter userId: (query) User Id. (optional) - - parameter recursive: (query) Search recursively. (optional, default to true) - - parameter enableImages: (query) Optional. Include image information in output. (optional, default to true) - - returns: RequestBuilder - */ - open class func getYearsWithRequestBuilder(startIndex: Int? = nil, limit: Int? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, mediaTypes: [String]? = nil, sortBy: [String]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, recursive: Bool? = nil, enableImages: Bool? = nil) -> RequestBuilder { - let localVariablePath = "/Years" - let localVariableURLString = JellyfinAPIAPI.basePath + localVariablePath - let localVariableParameters: [String: Any]? = nil - - var localVariableUrlComponents = URLComponents(string: localVariableURLString) - localVariableUrlComponents?.queryItems = APIHelper.mapValuesToQueryItems([ - "startIndex": startIndex?.encodeToJSON(), - "limit": limit?.encodeToJSON(), - "sortOrder": sortOrder?.encodeToJSON(), - "parentId": parentId?.encodeToJSON(), - "fields": fields?.encodeToJSON(), - "excludeItemTypes": excludeItemTypes?.encodeToJSON(), - "includeItemTypes": includeItemTypes?.encodeToJSON(), - "mediaTypes": mediaTypes?.encodeToJSON(), - "sortBy": sortBy?.encodeToJSON(), - "enableUserData": enableUserData?.encodeToJSON(), - "imageTypeLimit": imageTypeLimit?.encodeToJSON(), - "enableImageTypes": enableImageTypes?.encodeToJSON(), - "userId": userId?.encodeToJSON(), - "recursive": recursive?.encodeToJSON(), - "enableImages": enableImages?.encodeToJSON(), - ]) - - let localVariableNillableHeaders: [String: Any?] = [ - : - ] - - let localVariableHeaderParameters = APIHelper.rejectNilHeaders(localVariableNillableHeaders) - - let localVariableRequestBuilder: RequestBuilder.Type = JellyfinAPIAPI.requestBuilderFactory.getBuilder() - - return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters) - } -} diff --git a/Sources/JellyfinAPI/CodableHelper.swift b/Sources/JellyfinAPI/CodableHelper.swift deleted file mode 100644 index 09c82e53e..000000000 --- a/Sources/JellyfinAPI/CodableHelper.swift +++ /dev/null @@ -1,49 +0,0 @@ -// -// CodableHelper.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation - -open class CodableHelper { - private static var customDateFormatter: DateFormatter? - private static var defaultDateFormatter: DateFormatter = OpenISO8601DateFormatter() - - private static var customJSONDecoder: JSONDecoder? - private static var defaultJSONDecoder: JSONDecoder = { - let decoder = JSONDecoder() - decoder.dateDecodingStrategy = .formatted(CodableHelper.dateFormatter) - return decoder - }() - - private static var customJSONEncoder: JSONEncoder? - private static var defaultJSONEncoder: JSONEncoder = { - let encoder = JSONEncoder() - encoder.dateEncodingStrategy = .formatted(CodableHelper.dateFormatter) - encoder.outputFormatting = .prettyPrinted - return encoder - }() - - public static var dateFormatter: DateFormatter { - get { return customDateFormatter ?? defaultDateFormatter } - set { customDateFormatter = newValue } - } - public static var jsonDecoder: JSONDecoder { - get { return customJSONDecoder ?? defaultJSONDecoder } - set { customJSONDecoder = newValue } - } - public static var jsonEncoder: JSONEncoder { - get { return customJSONEncoder ?? defaultJSONEncoder } - set { customJSONEncoder = newValue } - } - - open class func decode(_ type: T.Type, from data: Data) -> Swift.Result where T: Decodable { - return Swift.Result { try jsonDecoder.decode(type, from: data) } - } - - open class func encode(_ value: T) -> Swift.Result where T: Encodable { - return Swift.Result { try jsonEncoder.encode(value) } - } -} diff --git a/Sources/JellyfinAPI/Configuration.swift b/Sources/JellyfinAPI/Configuration.swift deleted file mode 100644 index 8fb053318..000000000 --- a/Sources/JellyfinAPI/Configuration.swift +++ /dev/null @@ -1,15 +0,0 @@ -// Configuration.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation - -open class Configuration { - - // This value is used to configure the date formatter that is used to serialize dates into JSON format. - // You must set it prior to encoding any dates, and it will only be read once. - @available(*, unavailable, message: "To set a different date format, use CodableHelper.dateFormatter instead.") - public static var dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ" -} diff --git a/Sources/JellyfinAPI/Extensions.swift b/Sources/JellyfinAPI/Extensions.swift deleted file mode 100644 index 0b17438a7..000000000 --- a/Sources/JellyfinAPI/Extensions.swift +++ /dev/null @@ -1,193 +0,0 @@ -// Extensions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -extension Bool: JSONEncodable { - func encodeToJSON() -> Any { self } -} - -extension Float: JSONEncodable { - func encodeToJSON() -> Any { self } -} - -extension Int: JSONEncodable { - func encodeToJSON() -> Any { self } -} - -extension Int32: JSONEncodable { - func encodeToJSON() -> Any { self } -} - -extension Int64: JSONEncodable { - func encodeToJSON() -> Any { self } -} - -extension Double: JSONEncodable { - func encodeToJSON() -> Any { self } -} - -extension String: JSONEncodable { - func encodeToJSON() -> Any { self } -} - -extension URL: JSONEncodable { - func encodeToJSON() -> Any { self } -} - -extension UUID: JSONEncodable { - func encodeToJSON() -> Any { self } -} - -extension RawRepresentable where RawValue: JSONEncodable { - func encodeToJSON() -> Any { return self.rawValue } -} - -private func encodeIfPossible(_ object: T) -> Any { - if let encodableObject = object as? JSONEncodable { - return encodableObject.encodeToJSON() - } else { - return object - } -} - -extension Array: JSONEncodable { - func encodeToJSON() -> Any { - return self.map(encodeIfPossible) - } -} - -extension Set: JSONEncodable { - func encodeToJSON() -> Any { - return Array(self).encodeToJSON() - } -} - -extension Dictionary: JSONEncodable { - func encodeToJSON() -> Any { - var dictionary = [AnyHashable: Any]() - for (key, value) in self { - dictionary[key] = encodeIfPossible(value) - } - return dictionary - } -} - -extension Data: JSONEncodable { - func encodeToJSON() -> Any { - return self.base64EncodedString(options: Data.Base64EncodingOptions()) - } -} - -extension Date: JSONEncodable { - func encodeToJSON() -> Any { - return CodableHelper.dateFormatter.string(from: self) - } -} - -extension JSONEncodable where Self: Encodable { - func encodeToJSON() -> Any { - guard let data = try? CodableHelper.jsonEncoder.encode(self) else { - fatalError("Could not encode to json: \(self)") - } - return data.encodeToJSON() - } -} - -extension String: CodingKey { - - public var stringValue: String { - return self - } - - public init?(stringValue: String) { - self.init(stringLiteral: stringValue) - } - - public var intValue: Int? { - return nil - } - - public init?(intValue: Int) { - return nil - } - -} - -extension KeyedEncodingContainerProtocol { - - public mutating func encodeArray(_ values: [T], forKey key: Self.Key) throws where T: Encodable { - var arrayContainer = nestedUnkeyedContainer(forKey: key) - try arrayContainer.encode(contentsOf: values) - } - - public mutating func encodeArrayIfPresent(_ values: [T]?, forKey key: Self.Key) throws where T: Encodable { - if let values = values { - try encodeArray(values, forKey: key) - } - } - - public mutating func encodeMap(_ pairs: [Self.Key: T]) throws where T: Encodable { - for (key, value) in pairs { - try encode(value, forKey: key) - } - } - - public mutating func encodeMapIfPresent(_ pairs: [Self.Key: T]?) throws where T: Encodable { - if let pairs = pairs { - try encodeMap(pairs) - } - } - -} - -extension KeyedDecodingContainerProtocol { - - public func decodeArray(_ type: T.Type, forKey key: Self.Key) throws -> [T] where T: Decodable { - var tmpArray = [T]() - - var nestedContainer = try nestedUnkeyedContainer(forKey: key) - while !nestedContainer.isAtEnd { - let arrayValue = try nestedContainer.decode(T.self) - tmpArray.append(arrayValue) - } - - return tmpArray - } - - public func decodeArrayIfPresent(_ type: T.Type, forKey key: Self.Key) throws -> [T]? where T: Decodable { - var tmpArray: [T]? - - if contains(key) { - tmpArray = try decodeArray(T.self, forKey: key) - } - - return tmpArray - } - - public func decodeMap(_ type: T.Type, excludedKeys: Set) throws -> [Self.Key: T] where T: Decodable { - var map: [Self.Key: T] = [:] - - for key in allKeys { - if !excludedKeys.contains(key) { - let value = try decode(T.self, forKey: key) - map[key] = value - } - } - - return map - } - -} - -extension HTTPURLResponse { - var isStatusCodeSuccessful: Bool { - return (200 ..< 300).contains(statusCode) - } -} diff --git a/Sources/JellyfinAPI/JSONDataEncoding.swift b/Sources/JellyfinAPI/JSONDataEncoding.swift deleted file mode 100644 index b79e9f5e6..000000000 --- a/Sources/JellyfinAPI/JSONDataEncoding.swift +++ /dev/null @@ -1,53 +0,0 @@ -// -// JSONDataEncoding.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation - -public struct JSONDataEncoding { - - // MARK: Properties - - private static let jsonDataKey = "jsonData" - - // MARK: Encoding - - /// Creates a URL request by encoding parameters and applying them onto an existing request. - /// - /// - parameter urlRequest: The request to have parameters applied. - /// - parameter parameters: The parameters to apply. This should have a single key/value - /// pair with "jsonData" as the key and a Data object as the value. - /// - /// - throws: An `Error` if the encoding process encounters an error. - /// - /// - returns: The encoded request. - public func encode(_ urlRequest: URLRequest, with parameters: [String: Any]?) -> URLRequest { - var urlRequest = urlRequest - - guard let jsonData = parameters?[JSONDataEncoding.jsonDataKey] as? Data, !jsonData.isEmpty else { - return urlRequest - } - - if urlRequest.value(forHTTPHeaderField: "Content-Type") == nil { - urlRequest.setValue("application/json", forHTTPHeaderField: "Content-Type") - } - - urlRequest.httpBody = jsonData - - return urlRequest - } - - public static func encodingParameters(jsonData: Data?) -> [String: Any]? { - var returnedParams: [String: Any]? - if let jsonData = jsonData, !jsonData.isEmpty { - var params: [String: Any] = [:] - params[jsonDataKey] = jsonData - returnedParams = params - } - return returnedParams - } - -} diff --git a/Sources/JellyfinAPI/JSONEncodingHelper.swift b/Sources/JellyfinAPI/JSONEncodingHelper.swift deleted file mode 100644 index 02f78ffb4..000000000 --- a/Sources/JellyfinAPI/JSONEncodingHelper.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// JSONEncodingHelper.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation - -open class JSONEncodingHelper { - - open class func encodingParameters(forEncodableObject encodableObj: T?) -> [String: Any]? { - var params: [String: Any]? - - // Encode the Encodable object - if let encodableObj = encodableObj { - let encodeResult = CodableHelper.encode(encodableObj) - do { - let data = try encodeResult.get() - params = JSONDataEncoding.encodingParameters(jsonData: data) - } catch { - print(error.localizedDescription) - } - } - - return params - } - - open class func encodingParameters(forEncodableObject encodableObj: Any?) -> [String: Any]? { - var params: [String: Any]? - - if let encodableObj = encodableObj { - do { - let data = try JSONSerialization.data(withJSONObject: encodableObj, options: .prettyPrinted) - params = JSONDataEncoding.encodingParameters(jsonData: data) - } catch { - print(error.localizedDescription) - return nil - } - } - - return params - } - -} diff --git a/Sources/JellyfinAPI/Models.swift b/Sources/JellyfinAPI/Models.swift deleted file mode 100644 index 21aad0cf6..000000000 --- a/Sources/JellyfinAPI/Models.swift +++ /dev/null @@ -1,119 +0,0 @@ -// Models.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation - -protocol JSONEncodable { - func encodeToJSON() -> Any -} - -/// An enum where the last case value can be used as a default catch-all. -protocol CaseIterableDefaultsLast: Decodable & CaseIterable & RawRepresentable -where RawValue: Decodable, AllCases: BidirectionalCollection {} - -extension CaseIterableDefaultsLast { - /// Initializes an enum such that if a known raw value is found, then it is decoded. - /// Otherwise the last case is used. - /// - Parameter decoder: A decoder. - public init(from decoder: Decoder) throws { - if let value = try Self(rawValue: decoder.singleValueContainer().decode(RawValue.self)) { - self = value - } else if let lastValue = Self.allCases.last { - self = lastValue - } else { - throw DecodingError.valueNotFound( - Self.Type.self, - .init(codingPath: decoder.codingPath, debugDescription: "CaseIterableDefaultsLast") - ) - } - } -} - -/// A flexible type that can be encoded (`.encodeNull` or `.encodeValue`) -/// or not encoded (`.encodeNothing`). Intended for request payloads. -public enum NullEncodable: Hashable { - case encodeNothing - case encodeNull - case encodeValue(Wrapped) -} - -extension NullEncodable: Codable where Wrapped: Codable { - public init(from decoder: Decoder) throws { - let container = try decoder.singleValueContainer() - if let value = try? container.decode(Wrapped.self) { - self = .encodeValue(value) - } else if container.decodeNil() { - self = .encodeNull - } else { - self = .encodeNothing - } - } - - public func encode(to encoder: Encoder) throws { - var container = encoder.singleValueContainer() - switch self { - case .encodeNothing: return - case .encodeNull: try container.encodeNil() - case .encodeValue(let wrapped): try container.encode(wrapped) - } - } -} - -public enum ErrorResponse: Error { - case error(Int, Data?, URLResponse?, Error) -} - -public enum DownloadException: Error { - case responseDataMissing - case responseFailed - case requestMissing - case requestMissingPath - case requestMissingURL -} - -public enum DecodableRequestBuilderError: Error { - case emptyDataResponse - case nilHTTPResponse - case unsuccessfulHTTPStatusCode - case jsonDecoding(DecodingError) - case generalError(Error) -} - -open class Response { - public let statusCode: Int - public let header: [String: String] - public let body: T - - public init(statusCode: Int, header: [String: String], body: T) { - self.statusCode = statusCode - self.header = header - self.body = body - } - - public convenience init(response: HTTPURLResponse, body: T) { - let rawHeader = response.allHeaderFields - var header = [String: String]() - for (key, value) in rawHeader { - if let key = key.base as? String, let value = value as? String { - header[key] = value - } - } - self.init(statusCode: response.statusCode, header: header, body: body) - } -} - -public final class RequestTask { - private var task: URLSessionTask? - - internal func set(task: URLSessionTask) { - self.task = task - } - - public func cancel() { - task?.cancel() - task = nil - } -} diff --git a/Sources/JellyfinAPI/Models/APISortOrder.swift b/Sources/JellyfinAPI/Models/APISortOrder.swift deleted file mode 100644 index a95b2ef3c..000000000 --- a/Sources/JellyfinAPI/Models/APISortOrder.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// APISortOrder.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** An enum representing the sorting order. */ -public enum APISortOrder: String, Codable, CaseIterable { - case ascending = "Ascending" - case descending = "Descending" -} diff --git a/Sources/JellyfinAPI/Models/AccessSchedule.swift b/Sources/JellyfinAPI/Models/AccessSchedule.swift deleted file mode 100644 index 68365aba9..000000000 --- a/Sources/JellyfinAPI/Models/AccessSchedule.swift +++ /dev/null @@ -1,53 +0,0 @@ -// -// AccessSchedule.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** An entity representing a user's access schedule. */ -public struct AccessSchedule: Codable, JSONEncodable, Hashable { - - /** Gets the id of this instance. */ - public var id: Int? - /** Gets the id of the associated user. */ - public var userId: String? - /** Gets or sets the day of week. */ - public var dayOfWeek: DynamicDayOfWeek? - /** Gets or sets the start hour. */ - public var startHour: Double? - /** Gets or sets the end hour. */ - public var endHour: Double? - - public init(id: Int? = nil, userId: String? = nil, dayOfWeek: DynamicDayOfWeek? = nil, startHour: Double? = nil, endHour: Double? = nil) { - self.id = id - self.userId = userId - self.dayOfWeek = dayOfWeek - self.startHour = startHour - self.endHour = endHour - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case userId = "UserId" - case dayOfWeek = "DayOfWeek" - case startHour = "StartHour" - case endHour = "EndHour" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(dayOfWeek, forKey: .dayOfWeek) - try encoderContainer.encodeIfPresent(startHour, forKey: .startHour) - try encoderContainer.encodeIfPresent(endHour, forKey: .endHour) - } -} diff --git a/Sources/JellyfinAPI/Models/ActivityLogEntry.swift b/Sources/JellyfinAPI/Models/ActivityLogEntry.swift deleted file mode 100644 index 5ba6b0799..000000000 --- a/Sources/JellyfinAPI/Models/ActivityLogEntry.swift +++ /dev/null @@ -1,79 +0,0 @@ -// -// ActivityLogEntry.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** An activity log entry. */ -public struct ActivityLogEntry: Codable, JSONEncodable, Hashable { - - /** Gets or sets the identifier. */ - public var id: Int64? - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the overview. */ - public var overview: String? - /** Gets or sets the short overview. */ - public var shortOverview: String? - /** Gets or sets the type. */ - public var type: String? - /** Gets or sets the item identifier. */ - public var itemId: String? - /** Gets or sets the date. */ - public var date: Date? - /** Gets or sets the user identifier. */ - public var userId: String? - /** Gets or sets the user primary image tag. */ - @available(*, deprecated, message: "This property is deprecated.") - public var userPrimaryImageTag: String? - /** Gets or sets the log severity. */ - public var severity: LogLevel? - - public init(id: Int64? = nil, name: String? = nil, overview: String? = nil, shortOverview: String? = nil, type: String? = nil, itemId: String? = nil, date: Date? = nil, userId: String? = nil, userPrimaryImageTag: String? = nil, severity: LogLevel? = nil) { - self.id = id - self.name = name - self.overview = overview - self.shortOverview = shortOverview - self.type = type - self.itemId = itemId - self.date = date - self.userId = userId - self.userPrimaryImageTag = userPrimaryImageTag - self.severity = severity - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case name = "Name" - case overview = "Overview" - case shortOverview = "ShortOverview" - case type = "Type" - case itemId = "ItemId" - case date = "Date" - case userId = "UserId" - case userPrimaryImageTag = "UserPrimaryImageTag" - case severity = "Severity" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(shortOverview, forKey: .shortOverview) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(date, forKey: .date) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(userPrimaryImageTag, forKey: .userPrimaryImageTag) - try encoderContainer.encodeIfPresent(severity, forKey: .severity) - } -} diff --git a/Sources/JellyfinAPI/Models/ActivityLogEntryQueryResult.swift b/Sources/JellyfinAPI/Models/ActivityLogEntryQueryResult.swift deleted file mode 100644 index 5485f4703..000000000 --- a/Sources/JellyfinAPI/Models/ActivityLogEntryQueryResult.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// ActivityLogEntryQueryResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ActivityLogEntryQueryResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the items. */ - public var items: [ActivityLogEntry]? - /** Gets or sets the total number of records available. */ - public var totalRecordCount: Int? - /** Gets or sets the index of the first record in Items. */ - public var startIndex: Int? - - public init(items: [ActivityLogEntry]? = nil, totalRecordCount: Int? = nil, startIndex: Int? = nil) { - self.items = items - self.totalRecordCount = totalRecordCount - self.startIndex = startIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case items = "Items" - case totalRecordCount = "TotalRecordCount" - case startIndex = "StartIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(items, forKey: .items) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/AddListingProviderRequest.swift b/Sources/JellyfinAPI/Models/AddListingProviderRequest.swift deleted file mode 100644 index 045ac5fb1..000000000 --- a/Sources/JellyfinAPI/Models/AddListingProviderRequest.swift +++ /dev/null @@ -1,99 +0,0 @@ -// -// AddListingProviderRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct AddListingProviderRequest: Codable, JSONEncodable, Hashable { - - public var id: String? - public var type: String? - public var username: String? - public var password: String? - public var listingsId: String? - public var zipCode: String? - public var country: String? - public var path: String? - public var enabledTuners: [String]? - public var enableAllTuners: Bool? - public var newsCategories: [String]? - public var sportsCategories: [String]? - public var kidsCategories: [String]? - public var movieCategories: [String]? - public var channelMappings: [NameValuePair]? - public var moviePrefix: String? - public var preferredLanguage: String? - public var userAgent: String? - - public init(id: String? = nil, type: String? = nil, username: String? = nil, password: String? = nil, listingsId: String? = nil, zipCode: String? = nil, country: String? = nil, path: String? = nil, enabledTuners: [String]? = nil, enableAllTuners: Bool? = nil, newsCategories: [String]? = nil, sportsCategories: [String]? = nil, kidsCategories: [String]? = nil, movieCategories: [String]? = nil, channelMappings: [NameValuePair]? = nil, moviePrefix: String? = nil, preferredLanguage: String? = nil, userAgent: String? = nil) { - self.id = id - self.type = type - self.username = username - self.password = password - self.listingsId = listingsId - self.zipCode = zipCode - self.country = country - self.path = path - self.enabledTuners = enabledTuners - self.enableAllTuners = enableAllTuners - self.newsCategories = newsCategories - self.sportsCategories = sportsCategories - self.kidsCategories = kidsCategories - self.movieCategories = movieCategories - self.channelMappings = channelMappings - self.moviePrefix = moviePrefix - self.preferredLanguage = preferredLanguage - self.userAgent = userAgent - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case type = "Type" - case username = "Username" - case password = "Password" - case listingsId = "ListingsId" - case zipCode = "ZipCode" - case country = "Country" - case path = "Path" - case enabledTuners = "EnabledTuners" - case enableAllTuners = "EnableAllTuners" - case newsCategories = "NewsCategories" - case sportsCategories = "SportsCategories" - case kidsCategories = "KidsCategories" - case movieCategories = "MovieCategories" - case channelMappings = "ChannelMappings" - case moviePrefix = "MoviePrefix" - case preferredLanguage = "PreferredLanguage" - case userAgent = "UserAgent" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(username, forKey: .username) - try encoderContainer.encodeIfPresent(password, forKey: .password) - try encoderContainer.encodeIfPresent(listingsId, forKey: .listingsId) - try encoderContainer.encodeIfPresent(zipCode, forKey: .zipCode) - try encoderContainer.encodeIfPresent(country, forKey: .country) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(enabledTuners, forKey: .enabledTuners) - try encoderContainer.encodeIfPresent(enableAllTuners, forKey: .enableAllTuners) - try encoderContainer.encodeIfPresent(newsCategories, forKey: .newsCategories) - try encoderContainer.encodeIfPresent(sportsCategories, forKey: .sportsCategories) - try encoderContainer.encodeIfPresent(kidsCategories, forKey: .kidsCategories) - try encoderContainer.encodeIfPresent(movieCategories, forKey: .movieCategories) - try encoderContainer.encodeIfPresent(channelMappings, forKey: .channelMappings) - try encoderContainer.encodeIfPresent(moviePrefix, forKey: .moviePrefix) - try encoderContainer.encodeIfPresent(preferredLanguage, forKey: .preferredLanguage) - try encoderContainer.encodeIfPresent(userAgent, forKey: .userAgent) - } -} diff --git a/Sources/JellyfinAPI/Models/AddMediaPathRequest.swift b/Sources/JellyfinAPI/Models/AddMediaPathRequest.swift deleted file mode 100644 index 20d2c23ed..000000000 --- a/Sources/JellyfinAPI/Models/AddMediaPathRequest.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// AddMediaPathRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Media Path dto. */ -public struct AddMediaPathRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of the library. */ - public var name: String - /** Gets or sets the path to add. */ - public var path: String? - public var pathInfo: MediaPathDtoPathInfo? - - public init(name: String, path: String? = nil, pathInfo: MediaPathDtoPathInfo? = nil) { - self.name = name - self.path = path - self.pathInfo = pathInfo - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case path = "Path" - case pathInfo = "PathInfo" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(name, forKey: .name) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(pathInfo, forKey: .pathInfo) - } -} diff --git a/Sources/JellyfinAPI/Models/AddTunerHostRequest.swift b/Sources/JellyfinAPI/Models/AddTunerHostRequest.swift deleted file mode 100644 index 679af9196..000000000 --- a/Sources/JellyfinAPI/Models/AddTunerHostRequest.swift +++ /dev/null @@ -1,71 +0,0 @@ -// -// AddTunerHostRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct AddTunerHostRequest: Codable, JSONEncodable, Hashable { - - public var id: String? - public var url: String? - public var type: String? - public var deviceId: String? - public var friendlyName: String? - public var importFavoritesOnly: Bool? - public var allowHWTranscoding: Bool? - public var enableStreamLooping: Bool? - public var source: String? - public var tunerCount: Int? - public var userAgent: String? - - public init(id: String? = nil, url: String? = nil, type: String? = nil, deviceId: String? = nil, friendlyName: String? = nil, importFavoritesOnly: Bool? = nil, allowHWTranscoding: Bool? = nil, enableStreamLooping: Bool? = nil, source: String? = nil, tunerCount: Int? = nil, userAgent: String? = nil) { - self.id = id - self.url = url - self.type = type - self.deviceId = deviceId - self.friendlyName = friendlyName - self.importFavoritesOnly = importFavoritesOnly - self.allowHWTranscoding = allowHWTranscoding - self.enableStreamLooping = enableStreamLooping - self.source = source - self.tunerCount = tunerCount - self.userAgent = userAgent - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case url = "Url" - case type = "Type" - case deviceId = "DeviceId" - case friendlyName = "FriendlyName" - case importFavoritesOnly = "ImportFavoritesOnly" - case allowHWTranscoding = "AllowHWTranscoding" - case enableStreamLooping = "EnableStreamLooping" - case source = "Source" - case tunerCount = "TunerCount" - case userAgent = "UserAgent" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(url, forKey: .url) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(deviceId, forKey: .deviceId) - try encoderContainer.encodeIfPresent(friendlyName, forKey: .friendlyName) - try encoderContainer.encodeIfPresent(importFavoritesOnly, forKey: .importFavoritesOnly) - try encoderContainer.encodeIfPresent(allowHWTranscoding, forKey: .allowHWTranscoding) - try encoderContainer.encodeIfPresent(enableStreamLooping, forKey: .enableStreamLooping) - try encoderContainer.encodeIfPresent(source, forKey: .source) - try encoderContainer.encodeIfPresent(tunerCount, forKey: .tunerCount) - try encoderContainer.encodeIfPresent(userAgent, forKey: .userAgent) - } -} diff --git a/Sources/JellyfinAPI/Models/AddVirtualFolderDto.swift b/Sources/JellyfinAPI/Models/AddVirtualFolderDto.swift deleted file mode 100644 index 3d1f5e97f..000000000 --- a/Sources/JellyfinAPI/Models/AddVirtualFolderDto.swift +++ /dev/null @@ -1,32 +0,0 @@ -// -// AddVirtualFolderDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Add virtual folder dto. */ -public struct AddVirtualFolderDto: Codable, JSONEncodable, Hashable { - - public var libraryOptions: AddVirtualFolderDtoLibraryOptions? - - public init(libraryOptions: AddVirtualFolderDtoLibraryOptions? = nil) { - self.libraryOptions = libraryOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case libraryOptions = "LibraryOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(libraryOptions, forKey: .libraryOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/AddVirtualFolderDtoLibraryOptions.swift b/Sources/JellyfinAPI/Models/AddVirtualFolderDtoLibraryOptions.swift deleted file mode 100644 index faaaefdab..000000000 --- a/Sources/JellyfinAPI/Models/AddVirtualFolderDtoLibraryOptions.swift +++ /dev/null @@ -1,140 +0,0 @@ -// -// AddVirtualFolderDtoLibraryOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets library options. */ -public struct AddVirtualFolderDtoLibraryOptions: Codable, JSONEncodable, Hashable { - - public var enablePhotos: Bool? - public var enableRealtimeMonitor: Bool? - public var enableChapterImageExtraction: Bool? - public var extractChapterImagesDuringLibraryScan: Bool? - public var pathInfos: [MediaPathInfo]? - public var saveLocalMetadata: Bool? - @available(*, deprecated, message: "This property is deprecated.") - public var enableInternetProviders: Bool? - public var enableAutomaticSeriesGrouping: Bool? - public var enableEmbeddedTitles: Bool? - public var enableEmbeddedEpisodeInfos: Bool? - public var automaticRefreshIntervalDays: Int? - /** Gets or sets the preferred metadata language. */ - public var preferredMetadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - public var seasonZeroDisplayName: String? - public var metadataSavers: [String]? - public var disabledLocalMetadataReaders: [String]? - public var localMetadataReaderOrder: [String]? - public var disabledSubtitleFetchers: [String]? - public var subtitleFetcherOrder: [String]? - public var skipSubtitlesIfEmbeddedSubtitlesPresent: Bool? - public var skipSubtitlesIfAudioTrackMatches: Bool? - public var subtitleDownloadLanguages: [String]? - public var requirePerfectSubtitleMatch: Bool? - public var saveSubtitlesWithMedia: Bool? - public var automaticallyAddToCollection: Bool? - /** An enum representing the options to disable embedded subs. */ - public var allowEmbeddedSubtitles: EmbeddedSubtitleOptions? - public var typeOptions: [TypeOptions]? - - public init(enablePhotos: Bool? = nil, enableRealtimeMonitor: Bool? = nil, enableChapterImageExtraction: Bool? = nil, extractChapterImagesDuringLibraryScan: Bool? = nil, pathInfos: [MediaPathInfo]? = nil, saveLocalMetadata: Bool? = nil, enableInternetProviders: Bool? = nil, enableAutomaticSeriesGrouping: Bool? = nil, enableEmbeddedTitles: Bool? = nil, enableEmbeddedEpisodeInfos: Bool? = nil, automaticRefreshIntervalDays: Int? = nil, preferredMetadataLanguage: String? = nil, metadataCountryCode: String? = nil, seasonZeroDisplayName: String? = nil, metadataSavers: [String]? = nil, disabledLocalMetadataReaders: [String]? = nil, localMetadataReaderOrder: [String]? = nil, disabledSubtitleFetchers: [String]? = nil, subtitleFetcherOrder: [String]? = nil, skipSubtitlesIfEmbeddedSubtitlesPresent: Bool? = nil, skipSubtitlesIfAudioTrackMatches: Bool? = nil, subtitleDownloadLanguages: [String]? = nil, requirePerfectSubtitleMatch: Bool? = nil, saveSubtitlesWithMedia: Bool? = nil, automaticallyAddToCollection: Bool? = nil, allowEmbeddedSubtitles: EmbeddedSubtitleOptions? = nil, typeOptions: [TypeOptions]? = nil) { - self.enablePhotos = enablePhotos - self.enableRealtimeMonitor = enableRealtimeMonitor - self.enableChapterImageExtraction = enableChapterImageExtraction - self.extractChapterImagesDuringLibraryScan = extractChapterImagesDuringLibraryScan - self.pathInfos = pathInfos - self.saveLocalMetadata = saveLocalMetadata - self.enableInternetProviders = enableInternetProviders - self.enableAutomaticSeriesGrouping = enableAutomaticSeriesGrouping - self.enableEmbeddedTitles = enableEmbeddedTitles - self.enableEmbeddedEpisodeInfos = enableEmbeddedEpisodeInfos - self.automaticRefreshIntervalDays = automaticRefreshIntervalDays - self.preferredMetadataLanguage = preferredMetadataLanguage - self.metadataCountryCode = metadataCountryCode - self.seasonZeroDisplayName = seasonZeroDisplayName - self.metadataSavers = metadataSavers - self.disabledLocalMetadataReaders = disabledLocalMetadataReaders - self.localMetadataReaderOrder = localMetadataReaderOrder - self.disabledSubtitleFetchers = disabledSubtitleFetchers - self.subtitleFetcherOrder = subtitleFetcherOrder - self.skipSubtitlesIfEmbeddedSubtitlesPresent = skipSubtitlesIfEmbeddedSubtitlesPresent - self.skipSubtitlesIfAudioTrackMatches = skipSubtitlesIfAudioTrackMatches - self.subtitleDownloadLanguages = subtitleDownloadLanguages - self.requirePerfectSubtitleMatch = requirePerfectSubtitleMatch - self.saveSubtitlesWithMedia = saveSubtitlesWithMedia - self.automaticallyAddToCollection = automaticallyAddToCollection - self.allowEmbeddedSubtitles = allowEmbeddedSubtitles - self.typeOptions = typeOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case enablePhotos = "EnablePhotos" - case enableRealtimeMonitor = "EnableRealtimeMonitor" - case enableChapterImageExtraction = "EnableChapterImageExtraction" - case extractChapterImagesDuringLibraryScan = "ExtractChapterImagesDuringLibraryScan" - case pathInfos = "PathInfos" - case saveLocalMetadata = "SaveLocalMetadata" - case enableInternetProviders = "EnableInternetProviders" - case enableAutomaticSeriesGrouping = "EnableAutomaticSeriesGrouping" - case enableEmbeddedTitles = "EnableEmbeddedTitles" - case enableEmbeddedEpisodeInfos = "EnableEmbeddedEpisodeInfos" - case automaticRefreshIntervalDays = "AutomaticRefreshIntervalDays" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case seasonZeroDisplayName = "SeasonZeroDisplayName" - case metadataSavers = "MetadataSavers" - case disabledLocalMetadataReaders = "DisabledLocalMetadataReaders" - case localMetadataReaderOrder = "LocalMetadataReaderOrder" - case disabledSubtitleFetchers = "DisabledSubtitleFetchers" - case subtitleFetcherOrder = "SubtitleFetcherOrder" - case skipSubtitlesIfEmbeddedSubtitlesPresent = "SkipSubtitlesIfEmbeddedSubtitlesPresent" - case skipSubtitlesIfAudioTrackMatches = "SkipSubtitlesIfAudioTrackMatches" - case subtitleDownloadLanguages = "SubtitleDownloadLanguages" - case requirePerfectSubtitleMatch = "RequirePerfectSubtitleMatch" - case saveSubtitlesWithMedia = "SaveSubtitlesWithMedia" - case automaticallyAddToCollection = "AutomaticallyAddToCollection" - case allowEmbeddedSubtitles = "AllowEmbeddedSubtitles" - case typeOptions = "TypeOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(enablePhotos, forKey: .enablePhotos) - try encoderContainer.encodeIfPresent(enableRealtimeMonitor, forKey: .enableRealtimeMonitor) - try encoderContainer.encodeIfPresent(enableChapterImageExtraction, forKey: .enableChapterImageExtraction) - try encoderContainer.encodeIfPresent(extractChapterImagesDuringLibraryScan, forKey: .extractChapterImagesDuringLibraryScan) - try encoderContainer.encodeIfPresent(pathInfos, forKey: .pathInfos) - try encoderContainer.encodeIfPresent(saveLocalMetadata, forKey: .saveLocalMetadata) - try encoderContainer.encodeIfPresent(enableInternetProviders, forKey: .enableInternetProviders) - try encoderContainer.encodeIfPresent(enableAutomaticSeriesGrouping, forKey: .enableAutomaticSeriesGrouping) - try encoderContainer.encodeIfPresent(enableEmbeddedTitles, forKey: .enableEmbeddedTitles) - try encoderContainer.encodeIfPresent(enableEmbeddedEpisodeInfos, forKey: .enableEmbeddedEpisodeInfos) - try encoderContainer.encodeIfPresent(automaticRefreshIntervalDays, forKey: .automaticRefreshIntervalDays) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(seasonZeroDisplayName, forKey: .seasonZeroDisplayName) - try encoderContainer.encodeIfPresent(metadataSavers, forKey: .metadataSavers) - try encoderContainer.encodeIfPresent(disabledLocalMetadataReaders, forKey: .disabledLocalMetadataReaders) - try encoderContainer.encodeIfPresent(localMetadataReaderOrder, forKey: .localMetadataReaderOrder) - try encoderContainer.encodeIfPresent(disabledSubtitleFetchers, forKey: .disabledSubtitleFetchers) - try encoderContainer.encodeIfPresent(subtitleFetcherOrder, forKey: .subtitleFetcherOrder) - try encoderContainer.encodeIfPresent(skipSubtitlesIfEmbeddedSubtitlesPresent, forKey: .skipSubtitlesIfEmbeddedSubtitlesPresent) - try encoderContainer.encodeIfPresent(skipSubtitlesIfAudioTrackMatches, forKey: .skipSubtitlesIfAudioTrackMatches) - try encoderContainer.encodeIfPresent(subtitleDownloadLanguages, forKey: .subtitleDownloadLanguages) - try encoderContainer.encodeIfPresent(requirePerfectSubtitleMatch, forKey: .requirePerfectSubtitleMatch) - try encoderContainer.encodeIfPresent(saveSubtitlesWithMedia, forKey: .saveSubtitlesWithMedia) - try encoderContainer.encodeIfPresent(automaticallyAddToCollection, forKey: .automaticallyAddToCollection) - try encoderContainer.encodeIfPresent(allowEmbeddedSubtitles, forKey: .allowEmbeddedSubtitles) - try encoderContainer.encodeIfPresent(typeOptions, forKey: .typeOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/AddVirtualFolderRequest.swift b/Sources/JellyfinAPI/Models/AddVirtualFolderRequest.swift deleted file mode 100644 index c937a1ee1..000000000 --- a/Sources/JellyfinAPI/Models/AddVirtualFolderRequest.swift +++ /dev/null @@ -1,32 +0,0 @@ -// -// AddVirtualFolderRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Add virtual folder dto. */ -public struct AddVirtualFolderRequest: Codable, JSONEncodable, Hashable { - - public var libraryOptions: AddVirtualFolderDtoLibraryOptions? - - public init(libraryOptions: AddVirtualFolderDtoLibraryOptions? = nil) { - self.libraryOptions = libraryOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case libraryOptions = "LibraryOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(libraryOptions, forKey: .libraryOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/AdminNotificationDto.swift b/Sources/JellyfinAPI/Models/AdminNotificationDto.swift deleted file mode 100644 index 465c97111..000000000 --- a/Sources/JellyfinAPI/Models/AdminNotificationDto.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// AdminNotificationDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The admin notification dto. */ -public struct AdminNotificationDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the notification name. */ - public var name: String? - /** Gets or sets the notification description. */ - public var description: String? - /** Gets or sets the notification level. */ - public var notificationLevel: NotificationLevel? - /** Gets or sets the notification url. */ - public var url: String? - - public init(name: String? = nil, description: String? = nil, notificationLevel: NotificationLevel? = nil, url: String? = nil) { - self.name = name - self.description = description - self.notificationLevel = notificationLevel - self.url = url - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case description = "Description" - case notificationLevel = "NotificationLevel" - case url = "Url" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(description, forKey: .description) - try encoderContainer.encodeIfPresent(notificationLevel, forKey: .notificationLevel) - try encoderContainer.encodeIfPresent(url, forKey: .url) - } -} diff --git a/Sources/JellyfinAPI/Models/AlbumInfo.swift b/Sources/JellyfinAPI/Models/AlbumInfo.swift deleted file mode 100644 index 4c03384ee..000000000 --- a/Sources/JellyfinAPI/Models/AlbumInfo.swift +++ /dev/null @@ -1,92 +0,0 @@ -// -// AlbumInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct AlbumInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - /** Gets or sets the album artist. */ - public var albumArtists: [String]? - /** Gets or sets the artist provider ids. */ - public var artistProviderIds: [String: String]? - public var songInfos: [SongInfo]? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil, albumArtists: [String]? = nil, artistProviderIds: [String: String]? = nil, songInfos: [SongInfo]? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - self.albumArtists = albumArtists - self.artistProviderIds = artistProviderIds - self.songInfos = songInfos - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - case albumArtists = "AlbumArtists" - case artistProviderIds = "ArtistProviderIds" - case songInfos = "SongInfos" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - try encoderContainer.encodeIfPresent(albumArtists, forKey: .albumArtists) - try encoderContainer.encodeIfPresent(artistProviderIds, forKey: .artistProviderIds) - try encoderContainer.encodeIfPresent(songInfos, forKey: .songInfos) - } -} diff --git a/Sources/JellyfinAPI/Models/AlbumInfoRemoteSearchQuery.swift b/Sources/JellyfinAPI/Models/AlbumInfoRemoteSearchQuery.swift deleted file mode 100644 index a528bdff3..000000000 --- a/Sources/JellyfinAPI/Models/AlbumInfoRemoteSearchQuery.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// AlbumInfoRemoteSearchQuery.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct AlbumInfoRemoteSearchQuery: Codable, JSONEncodable, Hashable { - - public var searchInfo: AlbumInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: AlbumInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/AlbumInfoRemoteSearchQuerySearchInfo.swift b/Sources/JellyfinAPI/Models/AlbumInfoRemoteSearchQuerySearchInfo.swift deleted file mode 100644 index ccaf8c7e6..000000000 --- a/Sources/JellyfinAPI/Models/AlbumInfoRemoteSearchQuerySearchInfo.swift +++ /dev/null @@ -1,92 +0,0 @@ -// -// AlbumInfoRemoteSearchQuerySearchInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct AlbumInfoRemoteSearchQuerySearchInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - /** Gets or sets the album artist. */ - public var albumArtists: [String]? - /** Gets or sets the artist provider ids. */ - public var artistProviderIds: [String: String]? - public var songInfos: [SongInfo]? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil, albumArtists: [String]? = nil, artistProviderIds: [String: String]? = nil, songInfos: [SongInfo]? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - self.albumArtists = albumArtists - self.artistProviderIds = artistProviderIds - self.songInfos = songInfos - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - case albumArtists = "AlbumArtists" - case artistProviderIds = "ArtistProviderIds" - case songInfos = "SongInfos" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - try encoderContainer.encodeIfPresent(albumArtists, forKey: .albumArtists) - try encoderContainer.encodeIfPresent(artistProviderIds, forKey: .artistProviderIds) - try encoderContainer.encodeIfPresent(songInfos, forKey: .songInfos) - } -} diff --git a/Sources/JellyfinAPI/Models/AllThemeMediaResult.swift b/Sources/JellyfinAPI/Models/AllThemeMediaResult.swift deleted file mode 100644 index a0e6bb460..000000000 --- a/Sources/JellyfinAPI/Models/AllThemeMediaResult.swift +++ /dev/null @@ -1,39 +0,0 @@ -// -// AllThemeMediaResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct AllThemeMediaResult: Codable, JSONEncodable, Hashable { - - public var themeVideosResult: AllThemeMediaResultThemeVideosResult? - public var themeSongsResult: AllThemeMediaResultThemeVideosResult? - public var soundtrackSongsResult: AllThemeMediaResultThemeVideosResult? - - public init(themeVideosResult: AllThemeMediaResultThemeVideosResult? = nil, themeSongsResult: AllThemeMediaResultThemeVideosResult? = nil, soundtrackSongsResult: AllThemeMediaResultThemeVideosResult? = nil) { - self.themeVideosResult = themeVideosResult - self.themeSongsResult = themeSongsResult - self.soundtrackSongsResult = soundtrackSongsResult - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case themeVideosResult = "ThemeVideosResult" - case themeSongsResult = "ThemeSongsResult" - case soundtrackSongsResult = "SoundtrackSongsResult" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(themeVideosResult, forKey: .themeVideosResult) - try encoderContainer.encodeIfPresent(themeSongsResult, forKey: .themeSongsResult) - try encoderContainer.encodeIfPresent(soundtrackSongsResult, forKey: .soundtrackSongsResult) - } -} diff --git a/Sources/JellyfinAPI/Models/AllThemeMediaResultThemeVideosResult.swift b/Sources/JellyfinAPI/Models/AllThemeMediaResultThemeVideosResult.swift deleted file mode 100644 index 701900ff5..000000000 --- a/Sources/JellyfinAPI/Models/AllThemeMediaResultThemeVideosResult.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// AllThemeMediaResultThemeVideosResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class ThemeMediaResult. */ -public struct AllThemeMediaResultThemeVideosResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the items. */ - public var items: [BaseItemDto]? - /** Gets or sets the total number of records available. */ - public var totalRecordCount: Int? - /** Gets or sets the index of the first record in Items. */ - public var startIndex: Int? - /** Gets or sets the owner id. */ - public var ownerId: String? - - public init(items: [BaseItemDto]? = nil, totalRecordCount: Int? = nil, startIndex: Int? = nil, ownerId: String? = nil) { - self.items = items - self.totalRecordCount = totalRecordCount - self.startIndex = startIndex - self.ownerId = ownerId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case items = "Items" - case totalRecordCount = "TotalRecordCount" - case startIndex = "StartIndex" - case ownerId = "OwnerId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(items, forKey: .items) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - try encoderContainer.encodeIfPresent(ownerId, forKey: .ownerId) - } -} diff --git a/Sources/JellyfinAPI/Models/ApplySearchCriteriaRequest.swift b/Sources/JellyfinAPI/Models/ApplySearchCriteriaRequest.swift deleted file mode 100644 index a4e3f018f..000000000 --- a/Sources/JellyfinAPI/Models/ApplySearchCriteriaRequest.swift +++ /dev/null @@ -1,70 +0,0 @@ -// -// ApplySearchCriteriaRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ApplySearchCriteriaRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var productionYear: Int? - public var indexNumber: Int? - public var indexNumberEnd: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var imageUrl: String? - public var searchProviderName: String? - public var overview: String? - - public init(name: String? = nil, providerIds: [String: String]? = nil, productionYear: Int? = nil, indexNumber: Int? = nil, indexNumberEnd: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, imageUrl: String? = nil, searchProviderName: String? = nil, overview: String? = nil) { - self.name = name - self.providerIds = providerIds - self.productionYear = productionYear - self.indexNumber = indexNumber - self.indexNumberEnd = indexNumberEnd - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.imageUrl = imageUrl - self.searchProviderName = searchProviderName - self.overview = overview - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case providerIds = "ProviderIds" - case productionYear = "ProductionYear" - case indexNumber = "IndexNumber" - case indexNumberEnd = "IndexNumberEnd" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case imageUrl = "ImageUrl" - case searchProviderName = "SearchProviderName" - case overview = "Overview" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(productionYear, forKey: .productionYear) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(indexNumberEnd, forKey: .indexNumberEnd) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(imageUrl, forKey: .imageUrl) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - } -} diff --git a/Sources/JellyfinAPI/Models/Architecture.swift b/Sources/JellyfinAPI/Models/Architecture.swift deleted file mode 100644 index afe4f992f..000000000 --- a/Sources/JellyfinAPI/Models/Architecture.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// Architecture.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum Architecture: String, Codable, CaseIterable { - case x86 = "X86" - case x64 = "X64" - case arm = "Arm" - case arm64 = "Arm64" - case wasm = "Wasm" - case s390x = "S390x" -} diff --git a/Sources/JellyfinAPI/Models/ArtistInfo.swift b/Sources/JellyfinAPI/Models/ArtistInfo.swift deleted file mode 100644 index b78b2d2c3..000000000 --- a/Sources/JellyfinAPI/Models/ArtistInfo.swift +++ /dev/null @@ -1,82 +0,0 @@ -// -// ArtistInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ArtistInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - public var songInfos: [SongInfo]? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil, songInfos: [SongInfo]? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - self.songInfos = songInfos - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - case songInfos = "SongInfos" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - try encoderContainer.encodeIfPresent(songInfos, forKey: .songInfos) - } -} diff --git a/Sources/JellyfinAPI/Models/ArtistInfoRemoteSearchQuery.swift b/Sources/JellyfinAPI/Models/ArtistInfoRemoteSearchQuery.swift deleted file mode 100644 index 0bc44d4d0..000000000 --- a/Sources/JellyfinAPI/Models/ArtistInfoRemoteSearchQuery.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// ArtistInfoRemoteSearchQuery.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ArtistInfoRemoteSearchQuery: Codable, JSONEncodable, Hashable { - - public var searchInfo: ArtistInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: ArtistInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/ArtistInfoRemoteSearchQuerySearchInfo.swift b/Sources/JellyfinAPI/Models/ArtistInfoRemoteSearchQuerySearchInfo.swift deleted file mode 100644 index 35e5e1660..000000000 --- a/Sources/JellyfinAPI/Models/ArtistInfoRemoteSearchQuerySearchInfo.swift +++ /dev/null @@ -1,82 +0,0 @@ -// -// ArtistInfoRemoteSearchQuerySearchInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ArtistInfoRemoteSearchQuerySearchInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - public var songInfos: [SongInfo]? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil, songInfos: [SongInfo]? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - self.songInfos = songInfos - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - case songInfos = "SongInfos" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - try encoderContainer.encodeIfPresent(songInfos, forKey: .songInfos) - } -} diff --git a/Sources/JellyfinAPI/Models/AuthenticateUserByName.swift b/Sources/JellyfinAPI/Models/AuthenticateUserByName.swift deleted file mode 100644 index 2add278d8..000000000 --- a/Sources/JellyfinAPI/Models/AuthenticateUserByName.swift +++ /dev/null @@ -1,44 +0,0 @@ -// -// AuthenticateUserByName.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The authenticate user by name request body. */ -public struct AuthenticateUserByName: Codable, JSONEncodable, Hashable { - - /** Gets or sets the username. */ - public var username: String? - /** Gets or sets the plain text password. */ - public var pw: String? - /** Gets or sets the sha1-hashed password. */ - @available(*, deprecated, message: "This property is deprecated.") - public var password: String? - - public init(username: String? = nil, pw: String? = nil, password: String? = nil) { - self.username = username - self.pw = pw - self.password = password - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case username = "Username" - case pw = "Pw" - case password = "Password" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(username, forKey: .username) - try encoderContainer.encodeIfPresent(pw, forKey: .pw) - try encoderContainer.encodeIfPresent(password, forKey: .password) - } -} diff --git a/Sources/JellyfinAPI/Models/AuthenticateUserByNameRequest.swift b/Sources/JellyfinAPI/Models/AuthenticateUserByNameRequest.swift deleted file mode 100644 index 2379574be..000000000 --- a/Sources/JellyfinAPI/Models/AuthenticateUserByNameRequest.swift +++ /dev/null @@ -1,44 +0,0 @@ -// -// AuthenticateUserByNameRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The authenticate user by name request body. */ -public struct AuthenticateUserByNameRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the username. */ - public var username: String? - /** Gets or sets the plain text password. */ - public var pw: String? - /** Gets or sets the sha1-hashed password. */ - @available(*, deprecated, message: "This property is deprecated.") - public var password: String? - - public init(username: String? = nil, pw: String? = nil, password: String? = nil) { - self.username = username - self.pw = pw - self.password = password - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case username = "Username" - case pw = "Pw" - case password = "Password" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(username, forKey: .username) - try encoderContainer.encodeIfPresent(pw, forKey: .pw) - try encoderContainer.encodeIfPresent(password, forKey: .password) - } -} diff --git a/Sources/JellyfinAPI/Models/AuthenticateWithQuickConnectRequest.swift b/Sources/JellyfinAPI/Models/AuthenticateWithQuickConnectRequest.swift deleted file mode 100644 index 274ced66f..000000000 --- a/Sources/JellyfinAPI/Models/AuthenticateWithQuickConnectRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// AuthenticateWithQuickConnectRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The quick connect request body. */ -public struct AuthenticateWithQuickConnectRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the quick connect secret. */ - public var secret: String - - public init(secret: String) { - self.secret = secret - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case secret = "Secret" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(secret, forKey: .secret) - } -} diff --git a/Sources/JellyfinAPI/Models/AuthenticationInfo.swift b/Sources/JellyfinAPI/Models/AuthenticationInfo.swift deleted file mode 100644 index f7d7181f3..000000000 --- a/Sources/JellyfinAPI/Models/AuthenticationInfo.swift +++ /dev/null @@ -1,85 +0,0 @@ -// -// AuthenticationInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct AuthenticationInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the identifier. */ - public var id: Int64? - /** Gets or sets the access token. */ - public var accessToken: String? - /** Gets or sets the device identifier. */ - public var deviceId: String? - /** Gets or sets the name of the application. */ - public var appName: String? - /** Gets or sets the application version. */ - public var appVersion: String? - /** Gets or sets the name of the device. */ - public var deviceName: String? - /** Gets or sets the user identifier. */ - public var userId: String? - /** Gets or sets a value indicating whether this instance is active. */ - public var isActive: Bool? - /** Gets or sets the date created. */ - public var dateCreated: Date? - /** Gets or sets the date revoked. */ - public var dateRevoked: Date? - public var dateLastActivity: Date? - public var userName: String? - - public init(id: Int64? = nil, accessToken: String? = nil, deviceId: String? = nil, appName: String? = nil, appVersion: String? = nil, deviceName: String? = nil, userId: String? = nil, isActive: Bool? = nil, dateCreated: Date? = nil, dateRevoked: Date? = nil, dateLastActivity: Date? = nil, userName: String? = nil) { - self.id = id - self.accessToken = accessToken - self.deviceId = deviceId - self.appName = appName - self.appVersion = appVersion - self.deviceName = deviceName - self.userId = userId - self.isActive = isActive - self.dateCreated = dateCreated - self.dateRevoked = dateRevoked - self.dateLastActivity = dateLastActivity - self.userName = userName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case accessToken = "AccessToken" - case deviceId = "DeviceId" - case appName = "AppName" - case appVersion = "AppVersion" - case deviceName = "DeviceName" - case userId = "UserId" - case isActive = "IsActive" - case dateCreated = "DateCreated" - case dateRevoked = "DateRevoked" - case dateLastActivity = "DateLastActivity" - case userName = "UserName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(accessToken, forKey: .accessToken) - try encoderContainer.encodeIfPresent(deviceId, forKey: .deviceId) - try encoderContainer.encodeIfPresent(appName, forKey: .appName) - try encoderContainer.encodeIfPresent(appVersion, forKey: .appVersion) - try encoderContainer.encodeIfPresent(deviceName, forKey: .deviceName) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(isActive, forKey: .isActive) - try encoderContainer.encodeIfPresent(dateCreated, forKey: .dateCreated) - try encoderContainer.encodeIfPresent(dateRevoked, forKey: .dateRevoked) - try encoderContainer.encodeIfPresent(dateLastActivity, forKey: .dateLastActivity) - try encoderContainer.encodeIfPresent(userName, forKey: .userName) - } -} diff --git a/Sources/JellyfinAPI/Models/AuthenticationInfoQueryResult.swift b/Sources/JellyfinAPI/Models/AuthenticationInfoQueryResult.swift deleted file mode 100644 index c90a59887..000000000 --- a/Sources/JellyfinAPI/Models/AuthenticationInfoQueryResult.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// AuthenticationInfoQueryResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct AuthenticationInfoQueryResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the items. */ - public var items: [AuthenticationInfo]? - /** Gets or sets the total number of records available. */ - public var totalRecordCount: Int? - /** Gets or sets the index of the first record in Items. */ - public var startIndex: Int? - - public init(items: [AuthenticationInfo]? = nil, totalRecordCount: Int? = nil, startIndex: Int? = nil) { - self.items = items - self.totalRecordCount = totalRecordCount - self.startIndex = startIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case items = "Items" - case totalRecordCount = "TotalRecordCount" - case startIndex = "StartIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(items, forKey: .items) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/AuthenticationResult.swift b/Sources/JellyfinAPI/Models/AuthenticationResult.swift deleted file mode 100644 index 31a402916..000000000 --- a/Sources/JellyfinAPI/Models/AuthenticationResult.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// AuthenticationResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct AuthenticationResult: Codable, JSONEncodable, Hashable { - - public var user: AuthenticationResultUser? - public var sessionInfo: AuthenticationResultSessionInfo? - public var accessToken: String? - public var serverId: String? - - public init(user: AuthenticationResultUser? = nil, sessionInfo: AuthenticationResultSessionInfo? = nil, accessToken: String? = nil, serverId: String? = nil) { - self.user = user - self.sessionInfo = sessionInfo - self.accessToken = accessToken - self.serverId = serverId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case user = "User" - case sessionInfo = "SessionInfo" - case accessToken = "AccessToken" - case serverId = "ServerId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(user, forKey: .user) - try encoderContainer.encodeIfPresent(sessionInfo, forKey: .sessionInfo) - try encoderContainer.encodeIfPresent(accessToken, forKey: .accessToken) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - } -} diff --git a/Sources/JellyfinAPI/Models/AuthenticationResultSessionInfo.swift b/Sources/JellyfinAPI/Models/AuthenticationResultSessionInfo.swift deleted file mode 100644 index 8419690ff..000000000 --- a/Sources/JellyfinAPI/Models/AuthenticationResultSessionInfo.swift +++ /dev/null @@ -1,158 +0,0 @@ -// -// AuthenticationResultSessionInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SessionInfo. */ -public struct AuthenticationResultSessionInfo: Codable, JSONEncodable, Hashable { - - public var playState: SessionInfoPlayState? - public var additionalUsers: [SessionUserInfo]? - public var capabilities: SessionInfoCapabilities? - /** Gets or sets the remote end point. */ - public var remoteEndPoint: String? - /** Gets the playable media types. */ - public var playableMediaTypes: [String]? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the user id. */ - public var userId: String? - /** Gets or sets the username. */ - public var userName: String? - /** Gets or sets the type of the client. */ - public var client: String? - /** Gets or sets the last activity date. */ - public var lastActivityDate: Date? - /** Gets or sets the last playback check in. */ - public var lastPlaybackCheckIn: Date? - /** Gets or sets the name of the device. */ - public var deviceName: String? - /** Gets or sets the type of the device. */ - public var deviceType: String? - public var nowPlayingItem: SessionInfoNowPlayingItem? - public var fullNowPlayingItem: SessionInfoFullNowPlayingItem? - public var nowViewingItem: SessionInfoNowViewingItem? - /** Gets or sets the device id. */ - public var deviceId: String? - /** Gets or sets the application version. */ - public var applicationVersion: String? - public var transcodingInfo: SessionInfoTranscodingInfo? - /** Gets a value indicating whether this instance is active. */ - public var isActive: Bool? - public var supportsMediaControl: Bool? - public var supportsRemoteControl: Bool? - public var nowPlayingQueue: [QueueItem]? - public var nowPlayingQueueFullItems: [BaseItemDto]? - public var hasCustomDeviceName: Bool? - public var playlistItemId: String? - public var serverId: String? - public var userPrimaryImageTag: String? - /** Gets the supported commands. */ - public var supportedCommands: [GeneralCommandType]? - - public init(playState: SessionInfoPlayState? = nil, additionalUsers: [SessionUserInfo]? = nil, capabilities: SessionInfoCapabilities? = nil, remoteEndPoint: String? = nil, playableMediaTypes: [String]? = nil, id: String? = nil, userId: String? = nil, userName: String? = nil, client: String? = nil, lastActivityDate: Date? = nil, lastPlaybackCheckIn: Date? = nil, deviceName: String? = nil, deviceType: String? = nil, nowPlayingItem: SessionInfoNowPlayingItem? = nil, fullNowPlayingItem: SessionInfoFullNowPlayingItem? = nil, nowViewingItem: SessionInfoNowViewingItem? = nil, deviceId: String? = nil, applicationVersion: String? = nil, transcodingInfo: SessionInfoTranscodingInfo? = nil, isActive: Bool? = nil, supportsMediaControl: Bool? = nil, supportsRemoteControl: Bool? = nil, nowPlayingQueue: [QueueItem]? = nil, nowPlayingQueueFullItems: [BaseItemDto]? = nil, hasCustomDeviceName: Bool? = nil, playlistItemId: String? = nil, serverId: String? = nil, userPrimaryImageTag: String? = nil, supportedCommands: [GeneralCommandType]? = nil) { - self.playState = playState - self.additionalUsers = additionalUsers - self.capabilities = capabilities - self.remoteEndPoint = remoteEndPoint - self.playableMediaTypes = playableMediaTypes - self.id = id - self.userId = userId - self.userName = userName - self.client = client - self.lastActivityDate = lastActivityDate - self.lastPlaybackCheckIn = lastPlaybackCheckIn - self.deviceName = deviceName - self.deviceType = deviceType - self.nowPlayingItem = nowPlayingItem - self.fullNowPlayingItem = fullNowPlayingItem - self.nowViewingItem = nowViewingItem - self.deviceId = deviceId - self.applicationVersion = applicationVersion - self.transcodingInfo = transcodingInfo - self.isActive = isActive - self.supportsMediaControl = supportsMediaControl - self.supportsRemoteControl = supportsRemoteControl - self.nowPlayingQueue = nowPlayingQueue - self.nowPlayingQueueFullItems = nowPlayingQueueFullItems - self.hasCustomDeviceName = hasCustomDeviceName - self.playlistItemId = playlistItemId - self.serverId = serverId - self.userPrimaryImageTag = userPrimaryImageTag - self.supportedCommands = supportedCommands - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playState = "PlayState" - case additionalUsers = "AdditionalUsers" - case capabilities = "Capabilities" - case remoteEndPoint = "RemoteEndPoint" - case playableMediaTypes = "PlayableMediaTypes" - case id = "Id" - case userId = "UserId" - case userName = "UserName" - case client = "Client" - case lastActivityDate = "LastActivityDate" - case lastPlaybackCheckIn = "LastPlaybackCheckIn" - case deviceName = "DeviceName" - case deviceType = "DeviceType" - case nowPlayingItem = "NowPlayingItem" - case fullNowPlayingItem = "FullNowPlayingItem" - case nowViewingItem = "NowViewingItem" - case deviceId = "DeviceId" - case applicationVersion = "ApplicationVersion" - case transcodingInfo = "TranscodingInfo" - case isActive = "IsActive" - case supportsMediaControl = "SupportsMediaControl" - case supportsRemoteControl = "SupportsRemoteControl" - case nowPlayingQueue = "NowPlayingQueue" - case nowPlayingQueueFullItems = "NowPlayingQueueFullItems" - case hasCustomDeviceName = "HasCustomDeviceName" - case playlistItemId = "PlaylistItemId" - case serverId = "ServerId" - case userPrimaryImageTag = "UserPrimaryImageTag" - case supportedCommands = "SupportedCommands" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playState, forKey: .playState) - try encoderContainer.encodeIfPresent(additionalUsers, forKey: .additionalUsers) - try encoderContainer.encodeIfPresent(capabilities, forKey: .capabilities) - try encoderContainer.encodeIfPresent(remoteEndPoint, forKey: .remoteEndPoint) - try encoderContainer.encodeIfPresent(playableMediaTypes, forKey: .playableMediaTypes) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(userName, forKey: .userName) - try encoderContainer.encodeIfPresent(client, forKey: .client) - try encoderContainer.encodeIfPresent(lastActivityDate, forKey: .lastActivityDate) - try encoderContainer.encodeIfPresent(lastPlaybackCheckIn, forKey: .lastPlaybackCheckIn) - try encoderContainer.encodeIfPresent(deviceName, forKey: .deviceName) - try encoderContainer.encodeIfPresent(deviceType, forKey: .deviceType) - try encoderContainer.encodeIfPresent(nowPlayingItem, forKey: .nowPlayingItem) - try encoderContainer.encodeIfPresent(fullNowPlayingItem, forKey: .fullNowPlayingItem) - try encoderContainer.encodeIfPresent(nowViewingItem, forKey: .nowViewingItem) - try encoderContainer.encodeIfPresent(deviceId, forKey: .deviceId) - try encoderContainer.encodeIfPresent(applicationVersion, forKey: .applicationVersion) - try encoderContainer.encodeIfPresent(transcodingInfo, forKey: .transcodingInfo) - try encoderContainer.encodeIfPresent(isActive, forKey: .isActive) - try encoderContainer.encodeIfPresent(supportsMediaControl, forKey: .supportsMediaControl) - try encoderContainer.encodeIfPresent(supportsRemoteControl, forKey: .supportsRemoteControl) - try encoderContainer.encodeIfPresent(nowPlayingQueue, forKey: .nowPlayingQueue) - try encoderContainer.encodeIfPresent(nowPlayingQueueFullItems, forKey: .nowPlayingQueueFullItems) - try encoderContainer.encodeIfPresent(hasCustomDeviceName, forKey: .hasCustomDeviceName) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(userPrimaryImageTag, forKey: .userPrimaryImageTag) - try encoderContainer.encodeIfPresent(supportedCommands, forKey: .supportedCommands) - } -} diff --git a/Sources/JellyfinAPI/Models/AuthenticationResultUser.swift b/Sources/JellyfinAPI/Models/AuthenticationResultUser.swift deleted file mode 100644 index b7fc4e8f6..000000000 --- a/Sources/JellyfinAPI/Models/AuthenticationResultUser.swift +++ /dev/null @@ -1,96 +0,0 @@ -// -// AuthenticationResultUser.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class UserDto. */ -public struct AuthenticationResultUser: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the name of the server. This is not used by the server and is for client-side usage only. */ - public var serverName: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the primary image tag. */ - public var primaryImageTag: String? - /** Gets or sets a value indicating whether this instance has password. */ - public var hasPassword: Bool? - /** Gets or sets a value indicating whether this instance has configured password. */ - public var hasConfiguredPassword: Bool? - /** Gets or sets a value indicating whether this instance has configured easy password. */ - public var hasConfiguredEasyPassword: Bool? - /** Gets or sets whether async login is enabled or not. */ - public var enableAutoLogin: Bool? - /** Gets or sets the last login date. */ - public var lastLoginDate: Date? - /** Gets or sets the last activity date. */ - public var lastActivityDate: Date? - public var configuration: UserDtoConfiguration? - public var policy: UserDtoPolicy? - /** Gets or sets the primary image aspect ratio. */ - public var primaryImageAspectRatio: Double? - - public init(name: String? = nil, serverId: String? = nil, serverName: String? = nil, id: String? = nil, primaryImageTag: String? = nil, hasPassword: Bool? = nil, hasConfiguredPassword: Bool? = nil, hasConfiguredEasyPassword: Bool? = nil, enableAutoLogin: Bool? = nil, lastLoginDate: Date? = nil, lastActivityDate: Date? = nil, configuration: UserDtoConfiguration? = nil, policy: UserDtoPolicy? = nil, primaryImageAspectRatio: Double? = nil) { - self.name = name - self.serverId = serverId - self.serverName = serverName - self.id = id - self.primaryImageTag = primaryImageTag - self.hasPassword = hasPassword - self.hasConfiguredPassword = hasConfiguredPassword - self.hasConfiguredEasyPassword = hasConfiguredEasyPassword - self.enableAutoLogin = enableAutoLogin - self.lastLoginDate = lastLoginDate - self.lastActivityDate = lastActivityDate - self.configuration = configuration - self.policy = policy - self.primaryImageAspectRatio = primaryImageAspectRatio - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case serverId = "ServerId" - case serverName = "ServerName" - case id = "Id" - case primaryImageTag = "PrimaryImageTag" - case hasPassword = "HasPassword" - case hasConfiguredPassword = "HasConfiguredPassword" - case hasConfiguredEasyPassword = "HasConfiguredEasyPassword" - case enableAutoLogin = "EnableAutoLogin" - case lastLoginDate = "LastLoginDate" - case lastActivityDate = "LastActivityDate" - case configuration = "Configuration" - case policy = "Policy" - case primaryImageAspectRatio = "PrimaryImageAspectRatio" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(serverName, forKey: .serverName) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(primaryImageTag, forKey: .primaryImageTag) - try encoderContainer.encodeIfPresent(hasPassword, forKey: .hasPassword) - try encoderContainer.encodeIfPresent(hasConfiguredPassword, forKey: .hasConfiguredPassword) - try encoderContainer.encodeIfPresent(hasConfiguredEasyPassword, forKey: .hasConfiguredEasyPassword) - try encoderContainer.encodeIfPresent(enableAutoLogin, forKey: .enableAutoLogin) - try encoderContainer.encodeIfPresent(lastLoginDate, forKey: .lastLoginDate) - try encoderContainer.encodeIfPresent(lastActivityDate, forKey: .lastActivityDate) - try encoderContainer.encodeIfPresent(configuration, forKey: .configuration) - try encoderContainer.encodeIfPresent(policy, forKey: .policy) - try encoderContainer.encodeIfPresent(primaryImageAspectRatio, forKey: .primaryImageAspectRatio) - } -} diff --git a/Sources/JellyfinAPI/Models/BaseItem.swift b/Sources/JellyfinAPI/Models/BaseItem.swift deleted file mode 100644 index 4f3761cf5..000000000 --- a/Sources/JellyfinAPI/Models/BaseItem.swift +++ /dev/null @@ -1,73 +0,0 @@ -// -// BaseItem.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class BaseItem. */ -public struct BaseItem: Codable, JSONEncodable, Hashable { - - public var size: Int64? - public var container: String? - public var isHD: Bool? - public var isShortcut: Bool? - public var shortcutPath: String? - public var width: Int? - public var height: Int? - public var extraIds: [String]? - public var dateLastSaved: Date? - /** Gets or sets the remote trailers. */ - public var remoteTrailers: [MediaUrl]? - public var supportsExternalTransfer: Bool? - - public init(size: Int64? = nil, container: String? = nil, isHD: Bool? = nil, isShortcut: Bool? = nil, shortcutPath: String? = nil, width: Int? = nil, height: Int? = nil, extraIds: [String]? = nil, dateLastSaved: Date? = nil, remoteTrailers: [MediaUrl]? = nil, supportsExternalTransfer: Bool? = nil) { - self.size = size - self.container = container - self.isHD = isHD - self.isShortcut = isShortcut - self.shortcutPath = shortcutPath - self.width = width - self.height = height - self.extraIds = extraIds - self.dateLastSaved = dateLastSaved - self.remoteTrailers = remoteTrailers - self.supportsExternalTransfer = supportsExternalTransfer - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case size = "Size" - case container = "Container" - case isHD = "IsHD" - case isShortcut = "IsShortcut" - case shortcutPath = "ShortcutPath" - case width = "Width" - case height = "Height" - case extraIds = "ExtraIds" - case dateLastSaved = "DateLastSaved" - case remoteTrailers = "RemoteTrailers" - case supportsExternalTransfer = "SupportsExternalTransfer" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(size, forKey: .size) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(isHD, forKey: .isHD) - try encoderContainer.encodeIfPresent(isShortcut, forKey: .isShortcut) - try encoderContainer.encodeIfPresent(shortcutPath, forKey: .shortcutPath) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(extraIds, forKey: .extraIds) - try encoderContainer.encodeIfPresent(dateLastSaved, forKey: .dateLastSaved) - try encoderContainer.encodeIfPresent(remoteTrailers, forKey: .remoteTrailers) - try encoderContainer.encodeIfPresent(supportsExternalTransfer, forKey: .supportsExternalTransfer) - } -} diff --git a/Sources/JellyfinAPI/Models/BaseItemDto.swift b/Sources/JellyfinAPI/Models/BaseItemDto.swift deleted file mode 100644 index 00099c262..000000000 --- a/Sources/JellyfinAPI/Models/BaseItemDto.swift +++ /dev/null @@ -1,741 +0,0 @@ -// -// BaseItemDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** This is strictly used as a data transfer object from the api layer. This holds information about a BaseItem in a format that is convenient for the client. */ -public struct BaseItemDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - public var originalTitle: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the etag. */ - public var etag: String? - /** Gets or sets the type of the source. */ - public var sourceType: String? - /** Gets or sets the playlist item identifier. */ - public var playlistItemId: String? - /** Gets or sets the date created. */ - public var dateCreated: Date? - public var dateLastMediaAdded: Date? - public var extraType: String? - public var airsBeforeSeasonNumber: Int? - public var airsAfterSeasonNumber: Int? - public var airsBeforeEpisodeNumber: Int? - public var canDelete: Bool? - public var canDownload: Bool? - public var hasSubtitles: Bool? - public var preferredMetadataLanguage: String? - public var preferredMetadataCountryCode: String? - /** Gets or sets a value indicating whether [supports synchronize]. */ - public var supportsSync: Bool? - public var container: String? - /** Gets or sets the name of the sort. */ - public var sortName: String? - public var forcedSortName: String? - /** Gets or sets the video3 D format. */ - public var video3DFormat: Video3DFormat? - /** Gets or sets the premiere date. */ - public var premiereDate: Date? - /** Gets or sets the external urls. */ - public var externalUrls: [ExternalUrl]? - /** Gets or sets the media versions. */ - public var mediaSources: [MediaSourceInfo]? - /** Gets or sets the critic rating. */ - public var criticRating: Float? - public var productionLocations: [String]? - /** Gets or sets the path. */ - public var path: String? - public var enableMediaSourceDisplay: Bool? - /** Gets or sets the official rating. */ - public var officialRating: String? - /** Gets or sets the custom rating. */ - public var customRating: String? - /** Gets or sets the channel identifier. */ - public var channelId: String? - public var channelName: String? - /** Gets or sets the overview. */ - public var overview: String? - /** Gets or sets the taglines. */ - public var taglines: [String]? - /** Gets or sets the genres. */ - public var genres: [String]? - /** Gets or sets the community rating. */ - public var communityRating: Float? - /** Gets or sets the cumulative run time ticks. */ - public var cumulativeRunTimeTicks: Int64? - /** Gets or sets the run time ticks. */ - public var runTimeTicks: Int64? - /** Gets or sets the play access. */ - public var playAccess: PlayAccess? - /** Gets or sets the aspect ratio. */ - public var aspectRatio: String? - /** Gets or sets the production year. */ - public var productionYear: Int? - /** Gets or sets a value indicating whether this instance is place holder. */ - public var isPlaceHolder: Bool? - /** Gets or sets the number. */ - public var number: String? - public var channelNumber: String? - /** Gets or sets the index number. */ - public var indexNumber: Int? - /** Gets or sets the index number end. */ - public var indexNumberEnd: Int? - /** Gets or sets the parent index number. */ - public var parentIndexNumber: Int? - /** Gets or sets the trailer urls. */ - public var remoteTrailers: [MediaUrl]? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets a value indicating whether this instance is HD. */ - public var isHD: Bool? - /** Gets or sets a value indicating whether this instance is folder. */ - public var isFolder: Bool? - /** Gets or sets the parent id. */ - public var parentId: String? - /** The base item kind. */ - public var type: BaseItemKind? - /** Gets or sets the people. */ - public var people: [BaseItemPerson]? - /** Gets or sets the studios. */ - public var studios: [NameGuidPair]? - public var genreItems: [NameGuidPair]? - /** Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. */ - public var parentLogoItemId: String? - /** Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. */ - public var parentBackdropItemId: String? - /** Gets or sets the parent backdrop image tags. */ - public var parentBackdropImageTags: [String]? - /** Gets or sets the local trailer count. */ - public var localTrailerCount: Int? - public var userData: BaseItemDtoUserData? - /** Gets or sets the recursive item count. */ - public var recursiveItemCount: Int? - /** Gets or sets the child count. */ - public var childCount: Int? - /** Gets or sets the name of the series. */ - public var seriesName: String? - /** Gets or sets the series id. */ - public var seriesId: String? - /** Gets or sets the season identifier. */ - public var seasonId: String? - /** Gets or sets the special feature count. */ - public var specialFeatureCount: Int? - /** Gets or sets the display preferences id. */ - public var displayPreferencesId: String? - /** Gets or sets the status. */ - public var status: String? - /** Gets or sets the air time. */ - public var airTime: String? - /** Gets or sets the air days. */ - public var airDays: [DayOfWeek]? - /** Gets or sets the tags. */ - public var tags: [String]? - /** Gets or sets the primary image aspect ratio, after image enhancements. */ - public var primaryImageAspectRatio: Double? - /** Gets or sets the artists. */ - public var artists: [String]? - /** Gets or sets the artist items. */ - public var artistItems: [NameGuidPair]? - /** Gets or sets the album. */ - public var album: String? - /** Gets or sets the type of the collection. */ - public var collectionType: String? - /** Gets or sets the display order. */ - public var displayOrder: String? - /** Gets or sets the album id. */ - public var albumId: String? - /** Gets or sets the album image tag. */ - public var albumPrimaryImageTag: String? - /** Gets or sets the series primary image tag. */ - public var seriesPrimaryImageTag: String? - /** Gets or sets the album artist. */ - public var albumArtist: String? - /** Gets or sets the album artists. */ - public var albumArtists: [NameGuidPair]? - /** Gets or sets the name of the season. */ - public var seasonName: String? - /** Gets or sets the media streams. */ - public var mediaStreams: [MediaStream]? - /** Gets or sets the type of the video. */ - public var videoType: VideoType? - /** Gets or sets the part count. */ - public var partCount: Int? - public var mediaSourceCount: Int? - /** Gets or sets the image tags. */ - public var imageTags: [String: String]? - /** Gets or sets the backdrop image tags. */ - public var backdropImageTags: [String]? - /** Gets or sets the screenshot image tags. */ - public var screenshotImageTags: [String]? - /** Gets or sets the parent logo image tag. */ - public var parentLogoImageTag: String? - /** Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. */ - public var parentArtItemId: String? - /** Gets or sets the parent art image tag. */ - public var parentArtImageTag: String? - /** Gets or sets the series thumb image tag. */ - public var seriesThumbImageTag: String? - public var imageBlurHashes: BaseItemDtoImageBlurHashes? - /** Gets or sets the series studio. */ - public var seriesStudio: String? - /** Gets or sets the parent thumb item id. */ - public var parentThumbItemId: String? - /** Gets or sets the parent thumb image tag. */ - public var parentThumbImageTag: String? - /** Gets or sets the parent primary image item identifier. */ - public var parentPrimaryImageItemId: String? - /** Gets or sets the parent primary image tag. */ - public var parentPrimaryImageTag: String? - /** Gets or sets the chapters. */ - public var chapters: [ChapterInfo]? - /** Gets or sets the type of the location. */ - public var locationType: LocationType? - /** Gets or sets the type of the iso. */ - public var isoType: IsoType? - /** Gets or sets the type of the media. */ - public var mediaType: String? - /** Gets or sets the end date. */ - public var endDate: Date? - /** Gets or sets the locked fields. */ - public var lockedFields: [MetadataField]? - /** Gets or sets the trailer count. */ - public var trailerCount: Int? - /** Gets or sets the movie count. */ - public var movieCount: Int? - /** Gets or sets the series count. */ - public var seriesCount: Int? - public var programCount: Int? - /** Gets or sets the episode count. */ - public var episodeCount: Int? - /** Gets or sets the song count. */ - public var songCount: Int? - /** Gets or sets the album count. */ - public var albumCount: Int? - public var artistCount: Int? - /** Gets or sets the music video count. */ - public var musicVideoCount: Int? - /** Gets or sets a value indicating whether [enable internet providers]. */ - public var lockData: Bool? - public var width: Int? - public var height: Int? - public var cameraMake: String? - public var cameraModel: String? - public var software: String? - public var exposureTime: Double? - public var focalLength: Double? - public var imageOrientation: ImageOrientation? - public var aperture: Double? - public var shutterSpeed: Double? - public var latitude: Double? - public var longitude: Double? - public var altitude: Double? - public var isoSpeedRating: Int? - /** Gets or sets the series timer identifier. */ - public var seriesTimerId: String? - /** Gets or sets the program identifier. */ - public var programId: String? - /** Gets or sets the channel primary image tag. */ - public var channelPrimaryImageTag: String? - /** Gets or sets the start date of the recording, in UTC. */ - public var startDate: Date? - /** Gets or sets the completion percentage. */ - public var completionPercentage: Double? - /** Gets or sets a value indicating whether this instance is repeat. */ - public var isRepeat: Bool? - /** Gets or sets the episode title. */ - public var episodeTitle: String? - /** Gets or sets the type of the channel. */ - public var channelType: ChannelType? - /** Gets or sets the audio. */ - public var audio: ProgramAudio? - /** Gets or sets a value indicating whether this instance is movie. */ - public var isMovie: Bool? - /** Gets or sets a value indicating whether this instance is sports. */ - public var isSports: Bool? - /** Gets or sets a value indicating whether this instance is series. */ - public var isSeries: Bool? - /** Gets or sets a value indicating whether this instance is live. */ - public var isLive: Bool? - /** Gets or sets a value indicating whether this instance is news. */ - public var isNews: Bool? - /** Gets or sets a value indicating whether this instance is kids. */ - public var isKids: Bool? - /** Gets or sets a value indicating whether this instance is premiere. */ - public var isPremiere: Bool? - /** Gets or sets the timer identifier. */ - public var timerId: String? - - public init(name: String? = nil, originalTitle: String? = nil, serverId: String? = nil, id: String? = nil, etag: String? = nil, sourceType: String? = nil, playlistItemId: String? = nil, dateCreated: Date? = nil, dateLastMediaAdded: Date? = nil, extraType: String? = nil, airsBeforeSeasonNumber: Int? = nil, airsAfterSeasonNumber: Int? = nil, airsBeforeEpisodeNumber: Int? = nil, canDelete: Bool? = nil, canDownload: Bool? = nil, hasSubtitles: Bool? = nil, preferredMetadataLanguage: String? = nil, preferredMetadataCountryCode: String? = nil, supportsSync: Bool? = nil, container: String? = nil, sortName: String? = nil, forcedSortName: String? = nil, video3DFormat: Video3DFormat? = nil, premiereDate: Date? = nil, externalUrls: [ExternalUrl]? = nil, mediaSources: [MediaSourceInfo]? = nil, criticRating: Float? = nil, productionLocations: [String]? = nil, path: String? = nil, enableMediaSourceDisplay: Bool? = nil, officialRating: String? = nil, customRating: String? = nil, channelId: String? = nil, channelName: String? = nil, overview: String? = nil, taglines: [String]? = nil, genres: [String]? = nil, communityRating: Float? = nil, cumulativeRunTimeTicks: Int64? = nil, runTimeTicks: Int64? = nil, playAccess: PlayAccess? = nil, aspectRatio: String? = nil, productionYear: Int? = nil, isPlaceHolder: Bool? = nil, number: String? = nil, channelNumber: String? = nil, indexNumber: Int? = nil, indexNumberEnd: Int? = nil, parentIndexNumber: Int? = nil, remoteTrailers: [MediaUrl]? = nil, providerIds: [String: String]? = nil, isHD: Bool? = nil, isFolder: Bool? = nil, parentId: String? = nil, type: BaseItemKind? = nil, people: [BaseItemPerson]? = nil, studios: [NameGuidPair]? = nil, genreItems: [NameGuidPair]? = nil, parentLogoItemId: String? = nil, parentBackdropItemId: String? = nil, parentBackdropImageTags: [String]? = nil, localTrailerCount: Int? = nil, userData: BaseItemDtoUserData? = nil, recursiveItemCount: Int? = nil, childCount: Int? = nil, seriesName: String? = nil, seriesId: String? = nil, seasonId: String? = nil, specialFeatureCount: Int? = nil, displayPreferencesId: String? = nil, status: String? = nil, airTime: String? = nil, airDays: [DayOfWeek]? = nil, tags: [String]? = nil, primaryImageAspectRatio: Double? = nil, artists: [String]? = nil, artistItems: [NameGuidPair]? = nil, album: String? = nil, collectionType: String? = nil, displayOrder: String? = nil, albumId: String? = nil, albumPrimaryImageTag: String? = nil, seriesPrimaryImageTag: String? = nil, albumArtist: String? = nil, albumArtists: [NameGuidPair]? = nil, seasonName: String? = nil, mediaStreams: [MediaStream]? = nil, videoType: VideoType? = nil, partCount: Int? = nil, mediaSourceCount: Int? = nil, imageTags: [String: String]? = nil, backdropImageTags: [String]? = nil, screenshotImageTags: [String]? = nil, parentLogoImageTag: String? = nil, parentArtItemId: String? = nil, parentArtImageTag: String? = nil, seriesThumbImageTag: String? = nil, imageBlurHashes: BaseItemDtoImageBlurHashes? = nil, seriesStudio: String? = nil, parentThumbItemId: String? = nil, parentThumbImageTag: String? = nil, parentPrimaryImageItemId: String? = nil, parentPrimaryImageTag: String? = nil, chapters: [ChapterInfo]? = nil, locationType: LocationType? = nil, isoType: IsoType? = nil, mediaType: String? = nil, endDate: Date? = nil, lockedFields: [MetadataField]? = nil, trailerCount: Int? = nil, movieCount: Int? = nil, seriesCount: Int? = nil, programCount: Int? = nil, episodeCount: Int? = nil, songCount: Int? = nil, albumCount: Int? = nil, artistCount: Int? = nil, musicVideoCount: Int? = nil, lockData: Bool? = nil, width: Int? = nil, height: Int? = nil, cameraMake: String? = nil, cameraModel: String? = nil, software: String? = nil, exposureTime: Double? = nil, focalLength: Double? = nil, imageOrientation: ImageOrientation? = nil, aperture: Double? = nil, shutterSpeed: Double? = nil, latitude: Double? = nil, longitude: Double? = nil, altitude: Double? = nil, isoSpeedRating: Int? = nil, seriesTimerId: String? = nil, programId: String? = nil, channelPrimaryImageTag: String? = nil, startDate: Date? = nil, completionPercentage: Double? = nil, isRepeat: Bool? = nil, episodeTitle: String? = nil, channelType: ChannelType? = nil, audio: ProgramAudio? = nil, isMovie: Bool? = nil, isSports: Bool? = nil, isSeries: Bool? = nil, isLive: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isPremiere: Bool? = nil, timerId: String? = nil) { - self.name = name - self.originalTitle = originalTitle - self.serverId = serverId - self.id = id - self.etag = etag - self.sourceType = sourceType - self.playlistItemId = playlistItemId - self.dateCreated = dateCreated - self.dateLastMediaAdded = dateLastMediaAdded - self.extraType = extraType - self.airsBeforeSeasonNumber = airsBeforeSeasonNumber - self.airsAfterSeasonNumber = airsAfterSeasonNumber - self.airsBeforeEpisodeNumber = airsBeforeEpisodeNumber - self.canDelete = canDelete - self.canDownload = canDownload - self.hasSubtitles = hasSubtitles - self.preferredMetadataLanguage = preferredMetadataLanguage - self.preferredMetadataCountryCode = preferredMetadataCountryCode - self.supportsSync = supportsSync - self.container = container - self.sortName = sortName - self.forcedSortName = forcedSortName - self.video3DFormat = video3DFormat - self.premiereDate = premiereDate - self.externalUrls = externalUrls - self.mediaSources = mediaSources - self.criticRating = criticRating - self.productionLocations = productionLocations - self.path = path - self.enableMediaSourceDisplay = enableMediaSourceDisplay - self.officialRating = officialRating - self.customRating = customRating - self.channelId = channelId - self.channelName = channelName - self.overview = overview - self.taglines = taglines - self.genres = genres - self.communityRating = communityRating - self.cumulativeRunTimeTicks = cumulativeRunTimeTicks - self.runTimeTicks = runTimeTicks - self.playAccess = playAccess - self.aspectRatio = aspectRatio - self.productionYear = productionYear - self.isPlaceHolder = isPlaceHolder - self.number = number - self.channelNumber = channelNumber - self.indexNumber = indexNumber - self.indexNumberEnd = indexNumberEnd - self.parentIndexNumber = parentIndexNumber - self.remoteTrailers = remoteTrailers - self.providerIds = providerIds - self.isHD = isHD - self.isFolder = isFolder - self.parentId = parentId - self.type = type - self.people = people - self.studios = studios - self.genreItems = genreItems - self.parentLogoItemId = parentLogoItemId - self.parentBackdropItemId = parentBackdropItemId - self.parentBackdropImageTags = parentBackdropImageTags - self.localTrailerCount = localTrailerCount - self.userData = userData - self.recursiveItemCount = recursiveItemCount - self.childCount = childCount - self.seriesName = seriesName - self.seriesId = seriesId - self.seasonId = seasonId - self.specialFeatureCount = specialFeatureCount - self.displayPreferencesId = displayPreferencesId - self.status = status - self.airTime = airTime - self.airDays = airDays - self.tags = tags - self.primaryImageAspectRatio = primaryImageAspectRatio - self.artists = artists - self.artistItems = artistItems - self.album = album - self.collectionType = collectionType - self.displayOrder = displayOrder - self.albumId = albumId - self.albumPrimaryImageTag = albumPrimaryImageTag - self.seriesPrimaryImageTag = seriesPrimaryImageTag - self.albumArtist = albumArtist - self.albumArtists = albumArtists - self.seasonName = seasonName - self.mediaStreams = mediaStreams - self.videoType = videoType - self.partCount = partCount - self.mediaSourceCount = mediaSourceCount - self.imageTags = imageTags - self.backdropImageTags = backdropImageTags - self.screenshotImageTags = screenshotImageTags - self.parentLogoImageTag = parentLogoImageTag - self.parentArtItemId = parentArtItemId - self.parentArtImageTag = parentArtImageTag - self.seriesThumbImageTag = seriesThumbImageTag - self.imageBlurHashes = imageBlurHashes - self.seriesStudio = seriesStudio - self.parentThumbItemId = parentThumbItemId - self.parentThumbImageTag = parentThumbImageTag - self.parentPrimaryImageItemId = parentPrimaryImageItemId - self.parentPrimaryImageTag = parentPrimaryImageTag - self.chapters = chapters - self.locationType = locationType - self.isoType = isoType - self.mediaType = mediaType - self.endDate = endDate - self.lockedFields = lockedFields - self.trailerCount = trailerCount - self.movieCount = movieCount - self.seriesCount = seriesCount - self.programCount = programCount - self.episodeCount = episodeCount - self.songCount = songCount - self.albumCount = albumCount - self.artistCount = artistCount - self.musicVideoCount = musicVideoCount - self.lockData = lockData - self.width = width - self.height = height - self.cameraMake = cameraMake - self.cameraModel = cameraModel - self.software = software - self.exposureTime = exposureTime - self.focalLength = focalLength - self.imageOrientation = imageOrientation - self.aperture = aperture - self.shutterSpeed = shutterSpeed - self.latitude = latitude - self.longitude = longitude - self.altitude = altitude - self.isoSpeedRating = isoSpeedRating - self.seriesTimerId = seriesTimerId - self.programId = programId - self.channelPrimaryImageTag = channelPrimaryImageTag - self.startDate = startDate - self.completionPercentage = completionPercentage - self.isRepeat = isRepeat - self.episodeTitle = episodeTitle - self.channelType = channelType - self.audio = audio - self.isMovie = isMovie - self.isSports = isSports - self.isSeries = isSeries - self.isLive = isLive - self.isNews = isNews - self.isKids = isKids - self.isPremiere = isPremiere - self.timerId = timerId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case serverId = "ServerId" - case id = "Id" - case etag = "Etag" - case sourceType = "SourceType" - case playlistItemId = "PlaylistItemId" - case dateCreated = "DateCreated" - case dateLastMediaAdded = "DateLastMediaAdded" - case extraType = "ExtraType" - case airsBeforeSeasonNumber = "AirsBeforeSeasonNumber" - case airsAfterSeasonNumber = "AirsAfterSeasonNumber" - case airsBeforeEpisodeNumber = "AirsBeforeEpisodeNumber" - case canDelete = "CanDelete" - case canDownload = "CanDownload" - case hasSubtitles = "HasSubtitles" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case preferredMetadataCountryCode = "PreferredMetadataCountryCode" - case supportsSync = "SupportsSync" - case container = "Container" - case sortName = "SortName" - case forcedSortName = "ForcedSortName" - case video3DFormat = "Video3DFormat" - case premiereDate = "PremiereDate" - case externalUrls = "ExternalUrls" - case mediaSources = "MediaSources" - case criticRating = "CriticRating" - case productionLocations = "ProductionLocations" - case path = "Path" - case enableMediaSourceDisplay = "EnableMediaSourceDisplay" - case officialRating = "OfficialRating" - case customRating = "CustomRating" - case channelId = "ChannelId" - case channelName = "ChannelName" - case overview = "Overview" - case taglines = "Taglines" - case genres = "Genres" - case communityRating = "CommunityRating" - case cumulativeRunTimeTicks = "CumulativeRunTimeTicks" - case runTimeTicks = "RunTimeTicks" - case playAccess = "PlayAccess" - case aspectRatio = "AspectRatio" - case productionYear = "ProductionYear" - case isPlaceHolder = "IsPlaceHolder" - case number = "Number" - case channelNumber = "ChannelNumber" - case indexNumber = "IndexNumber" - case indexNumberEnd = "IndexNumberEnd" - case parentIndexNumber = "ParentIndexNumber" - case remoteTrailers = "RemoteTrailers" - case providerIds = "ProviderIds" - case isHD = "IsHD" - case isFolder = "IsFolder" - case parentId = "ParentId" - case type = "Type" - case people = "People" - case studios = "Studios" - case genreItems = "GenreItems" - case parentLogoItemId = "ParentLogoItemId" - case parentBackdropItemId = "ParentBackdropItemId" - case parentBackdropImageTags = "ParentBackdropImageTags" - case localTrailerCount = "LocalTrailerCount" - case userData = "UserData" - case recursiveItemCount = "RecursiveItemCount" - case childCount = "ChildCount" - case seriesName = "SeriesName" - case seriesId = "SeriesId" - case seasonId = "SeasonId" - case specialFeatureCount = "SpecialFeatureCount" - case displayPreferencesId = "DisplayPreferencesId" - case status = "Status" - case airTime = "AirTime" - case airDays = "AirDays" - case tags = "Tags" - case primaryImageAspectRatio = "PrimaryImageAspectRatio" - case artists = "Artists" - case artistItems = "ArtistItems" - case album = "Album" - case collectionType = "CollectionType" - case displayOrder = "DisplayOrder" - case albumId = "AlbumId" - case albumPrimaryImageTag = "AlbumPrimaryImageTag" - case seriesPrimaryImageTag = "SeriesPrimaryImageTag" - case albumArtist = "AlbumArtist" - case albumArtists = "AlbumArtists" - case seasonName = "SeasonName" - case mediaStreams = "MediaStreams" - case videoType = "VideoType" - case partCount = "PartCount" - case mediaSourceCount = "MediaSourceCount" - case imageTags = "ImageTags" - case backdropImageTags = "BackdropImageTags" - case screenshotImageTags = "ScreenshotImageTags" - case parentLogoImageTag = "ParentLogoImageTag" - case parentArtItemId = "ParentArtItemId" - case parentArtImageTag = "ParentArtImageTag" - case seriesThumbImageTag = "SeriesThumbImageTag" - case imageBlurHashes = "ImageBlurHashes" - case seriesStudio = "SeriesStudio" - case parentThumbItemId = "ParentThumbItemId" - case parentThumbImageTag = "ParentThumbImageTag" - case parentPrimaryImageItemId = "ParentPrimaryImageItemId" - case parentPrimaryImageTag = "ParentPrimaryImageTag" - case chapters = "Chapters" - case locationType = "LocationType" - case isoType = "IsoType" - case mediaType = "MediaType" - case endDate = "EndDate" - case lockedFields = "LockedFields" - case trailerCount = "TrailerCount" - case movieCount = "MovieCount" - case seriesCount = "SeriesCount" - case programCount = "ProgramCount" - case episodeCount = "EpisodeCount" - case songCount = "SongCount" - case albumCount = "AlbumCount" - case artistCount = "ArtistCount" - case musicVideoCount = "MusicVideoCount" - case lockData = "LockData" - case width = "Width" - case height = "Height" - case cameraMake = "CameraMake" - case cameraModel = "CameraModel" - case software = "Software" - case exposureTime = "ExposureTime" - case focalLength = "FocalLength" - case imageOrientation = "ImageOrientation" - case aperture = "Aperture" - case shutterSpeed = "ShutterSpeed" - case latitude = "Latitude" - case longitude = "Longitude" - case altitude = "Altitude" - case isoSpeedRating = "IsoSpeedRating" - case seriesTimerId = "SeriesTimerId" - case programId = "ProgramId" - case channelPrimaryImageTag = "ChannelPrimaryImageTag" - case startDate = "StartDate" - case completionPercentage = "CompletionPercentage" - case isRepeat = "IsRepeat" - case episodeTitle = "EpisodeTitle" - case channelType = "ChannelType" - case audio = "Audio" - case isMovie = "IsMovie" - case isSports = "IsSports" - case isSeries = "IsSeries" - case isLive = "IsLive" - case isNews = "IsNews" - case isKids = "IsKids" - case isPremiere = "IsPremiere" - case timerId = "TimerId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(etag, forKey: .etag) - try encoderContainer.encodeIfPresent(sourceType, forKey: .sourceType) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(dateCreated, forKey: .dateCreated) - try encoderContainer.encodeIfPresent(dateLastMediaAdded, forKey: .dateLastMediaAdded) - try encoderContainer.encodeIfPresent(extraType, forKey: .extraType) - try encoderContainer.encodeIfPresent(airsBeforeSeasonNumber, forKey: .airsBeforeSeasonNumber) - try encoderContainer.encodeIfPresent(airsAfterSeasonNumber, forKey: .airsAfterSeasonNumber) - try encoderContainer.encodeIfPresent(airsBeforeEpisodeNumber, forKey: .airsBeforeEpisodeNumber) - try encoderContainer.encodeIfPresent(canDelete, forKey: .canDelete) - try encoderContainer.encodeIfPresent(canDownload, forKey: .canDownload) - try encoderContainer.encodeIfPresent(hasSubtitles, forKey: .hasSubtitles) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(preferredMetadataCountryCode, forKey: .preferredMetadataCountryCode) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(sortName, forKey: .sortName) - try encoderContainer.encodeIfPresent(forcedSortName, forKey: .forcedSortName) - try encoderContainer.encodeIfPresent(video3DFormat, forKey: .video3DFormat) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(externalUrls, forKey: .externalUrls) - try encoderContainer.encodeIfPresent(mediaSources, forKey: .mediaSources) - try encoderContainer.encodeIfPresent(criticRating, forKey: .criticRating) - try encoderContainer.encodeIfPresent(productionLocations, forKey: .productionLocations) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(enableMediaSourceDisplay, forKey: .enableMediaSourceDisplay) - try encoderContainer.encodeIfPresent(officialRating, forKey: .officialRating) - try encoderContainer.encodeIfPresent(customRating, forKey: .customRating) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(taglines, forKey: .taglines) - try encoderContainer.encodeIfPresent(genres, forKey: .genres) - try encoderContainer.encodeIfPresent(communityRating, forKey: .communityRating) - try encoderContainer.encodeIfPresent(cumulativeRunTimeTicks, forKey: .cumulativeRunTimeTicks) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(playAccess, forKey: .playAccess) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(productionYear, forKey: .productionYear) - try encoderContainer.encodeIfPresent(isPlaceHolder, forKey: .isPlaceHolder) - try encoderContainer.encodeIfPresent(number, forKey: .number) - try encoderContainer.encodeIfPresent(channelNumber, forKey: .channelNumber) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(indexNumberEnd, forKey: .indexNumberEnd) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(remoteTrailers, forKey: .remoteTrailers) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(isHD, forKey: .isHD) - try encoderContainer.encodeIfPresent(isFolder, forKey: .isFolder) - try encoderContainer.encodeIfPresent(parentId, forKey: .parentId) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(people, forKey: .people) - try encoderContainer.encodeIfPresent(studios, forKey: .studios) - try encoderContainer.encodeIfPresent(genreItems, forKey: .genreItems) - try encoderContainer.encodeIfPresent(parentLogoItemId, forKey: .parentLogoItemId) - try encoderContainer.encodeIfPresent(parentBackdropItemId, forKey: .parentBackdropItemId) - try encoderContainer.encodeIfPresent(parentBackdropImageTags, forKey: .parentBackdropImageTags) - try encoderContainer.encodeIfPresent(localTrailerCount, forKey: .localTrailerCount) - try encoderContainer.encodeIfPresent(userData, forKey: .userData) - try encoderContainer.encodeIfPresent(recursiveItemCount, forKey: .recursiveItemCount) - try encoderContainer.encodeIfPresent(childCount, forKey: .childCount) - try encoderContainer.encodeIfPresent(seriesName, forKey: .seriesName) - try encoderContainer.encodeIfPresent(seriesId, forKey: .seriesId) - try encoderContainer.encodeIfPresent(seasonId, forKey: .seasonId) - try encoderContainer.encodeIfPresent(specialFeatureCount, forKey: .specialFeatureCount) - try encoderContainer.encodeIfPresent(displayPreferencesId, forKey: .displayPreferencesId) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(airTime, forKey: .airTime) - try encoderContainer.encodeIfPresent(airDays, forKey: .airDays) - try encoderContainer.encodeIfPresent(tags, forKey: .tags) - try encoderContainer.encodeIfPresent(primaryImageAspectRatio, forKey: .primaryImageAspectRatio) - try encoderContainer.encodeIfPresent(artists, forKey: .artists) - try encoderContainer.encodeIfPresent(artistItems, forKey: .artistItems) - try encoderContainer.encodeIfPresent(album, forKey: .album) - try encoderContainer.encodeIfPresent(collectionType, forKey: .collectionType) - try encoderContainer.encodeIfPresent(displayOrder, forKey: .displayOrder) - try encoderContainer.encodeIfPresent(albumId, forKey: .albumId) - try encoderContainer.encodeIfPresent(albumPrimaryImageTag, forKey: .albumPrimaryImageTag) - try encoderContainer.encodeIfPresent(seriesPrimaryImageTag, forKey: .seriesPrimaryImageTag) - try encoderContainer.encodeIfPresent(albumArtist, forKey: .albumArtist) - try encoderContainer.encodeIfPresent(albumArtists, forKey: .albumArtists) - try encoderContainer.encodeIfPresent(seasonName, forKey: .seasonName) - try encoderContainer.encodeIfPresent(mediaStreams, forKey: .mediaStreams) - try encoderContainer.encodeIfPresent(videoType, forKey: .videoType) - try encoderContainer.encodeIfPresent(partCount, forKey: .partCount) - try encoderContainer.encodeIfPresent(mediaSourceCount, forKey: .mediaSourceCount) - try encoderContainer.encodeIfPresent(imageTags, forKey: .imageTags) - try encoderContainer.encodeIfPresent(backdropImageTags, forKey: .backdropImageTags) - try encoderContainer.encodeIfPresent(screenshotImageTags, forKey: .screenshotImageTags) - try encoderContainer.encodeIfPresent(parentLogoImageTag, forKey: .parentLogoImageTag) - try encoderContainer.encodeIfPresent(parentArtItemId, forKey: .parentArtItemId) - try encoderContainer.encodeIfPresent(parentArtImageTag, forKey: .parentArtImageTag) - try encoderContainer.encodeIfPresent(seriesThumbImageTag, forKey: .seriesThumbImageTag) - try encoderContainer.encodeIfPresent(imageBlurHashes, forKey: .imageBlurHashes) - try encoderContainer.encodeIfPresent(seriesStudio, forKey: .seriesStudio) - try encoderContainer.encodeIfPresent(parentThumbItemId, forKey: .parentThumbItemId) - try encoderContainer.encodeIfPresent(parentThumbImageTag, forKey: .parentThumbImageTag) - try encoderContainer.encodeIfPresent(parentPrimaryImageItemId, forKey: .parentPrimaryImageItemId) - try encoderContainer.encodeIfPresent(parentPrimaryImageTag, forKey: .parentPrimaryImageTag) - try encoderContainer.encodeIfPresent(chapters, forKey: .chapters) - try encoderContainer.encodeIfPresent(locationType, forKey: .locationType) - try encoderContainer.encodeIfPresent(isoType, forKey: .isoType) - try encoderContainer.encodeIfPresent(mediaType, forKey: .mediaType) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(lockedFields, forKey: .lockedFields) - try encoderContainer.encodeIfPresent(trailerCount, forKey: .trailerCount) - try encoderContainer.encodeIfPresent(movieCount, forKey: .movieCount) - try encoderContainer.encodeIfPresent(seriesCount, forKey: .seriesCount) - try encoderContainer.encodeIfPresent(programCount, forKey: .programCount) - try encoderContainer.encodeIfPresent(episodeCount, forKey: .episodeCount) - try encoderContainer.encodeIfPresent(songCount, forKey: .songCount) - try encoderContainer.encodeIfPresent(albumCount, forKey: .albumCount) - try encoderContainer.encodeIfPresent(artistCount, forKey: .artistCount) - try encoderContainer.encodeIfPresent(musicVideoCount, forKey: .musicVideoCount) - try encoderContainer.encodeIfPresent(lockData, forKey: .lockData) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(cameraMake, forKey: .cameraMake) - try encoderContainer.encodeIfPresent(cameraModel, forKey: .cameraModel) - try encoderContainer.encodeIfPresent(software, forKey: .software) - try encoderContainer.encodeIfPresent(exposureTime, forKey: .exposureTime) - try encoderContainer.encodeIfPresent(focalLength, forKey: .focalLength) - try encoderContainer.encodeIfPresent(imageOrientation, forKey: .imageOrientation) - try encoderContainer.encodeIfPresent(aperture, forKey: .aperture) - try encoderContainer.encodeIfPresent(shutterSpeed, forKey: .shutterSpeed) - try encoderContainer.encodeIfPresent(latitude, forKey: .latitude) - try encoderContainer.encodeIfPresent(longitude, forKey: .longitude) - try encoderContainer.encodeIfPresent(altitude, forKey: .altitude) - try encoderContainer.encodeIfPresent(isoSpeedRating, forKey: .isoSpeedRating) - try encoderContainer.encodeIfPresent(seriesTimerId, forKey: .seriesTimerId) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - try encoderContainer.encodeIfPresent(channelPrimaryImageTag, forKey: .channelPrimaryImageTag) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(completionPercentage, forKey: .completionPercentage) - try encoderContainer.encodeIfPresent(isRepeat, forKey: .isRepeat) - try encoderContainer.encodeIfPresent(episodeTitle, forKey: .episodeTitle) - try encoderContainer.encodeIfPresent(channelType, forKey: .channelType) - try encoderContainer.encodeIfPresent(audio, forKey: .audio) - try encoderContainer.encodeIfPresent(isMovie, forKey: .isMovie) - try encoderContainer.encodeIfPresent(isSports, forKey: .isSports) - try encoderContainer.encodeIfPresent(isSeries, forKey: .isSeries) - try encoderContainer.encodeIfPresent(isLive, forKey: .isLive) - try encoderContainer.encodeIfPresent(isNews, forKey: .isNews) - try encoderContainer.encodeIfPresent(isKids, forKey: .isKids) - try encoderContainer.encodeIfPresent(isPremiere, forKey: .isPremiere) - try encoderContainer.encodeIfPresent(timerId, forKey: .timerId) - } -} diff --git a/Sources/JellyfinAPI/Models/BaseItemDtoImageBlurHashes.swift b/Sources/JellyfinAPI/Models/BaseItemDtoImageBlurHashes.swift deleted file mode 100644 index 989064029..000000000 --- a/Sources/JellyfinAPI/Models/BaseItemDtoImageBlurHashes.swift +++ /dev/null @@ -1,80 +0,0 @@ -// -// BaseItemDtoImageBlurHashes.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the blurhashes for the image tags. Maps image type to dictionary mapping image tag to blurhash value. */ -public struct BaseItemDtoImageBlurHashes: Codable, JSONEncodable, Hashable { - - public var primary: [String: String]? - public var art: [String: String]? - public var backdrop: [String: String]? - public var banner: [String: String]? - public var logo: [String: String]? - public var thumb: [String: String]? - public var disc: [String: String]? - public var box: [String: String]? - public var screenshot: [String: String]? - public var menu: [String: String]? - public var chapter: [String: String]? - public var boxRear: [String: String]? - public var profile: [String: String]? - - public init(primary: [String: String]? = nil, art: [String: String]? = nil, backdrop: [String: String]? = nil, banner: [String: String]? = nil, logo: [String: String]? = nil, thumb: [String: String]? = nil, disc: [String: String]? = nil, box: [String: String]? = nil, screenshot: [String: String]? = nil, menu: [String: String]? = nil, chapter: [String: String]? = nil, boxRear: [String: String]? = nil, profile: [String: String]? = nil) { - self.primary = primary - self.art = art - self.backdrop = backdrop - self.banner = banner - self.logo = logo - self.thumb = thumb - self.disc = disc - self.box = box - self.screenshot = screenshot - self.menu = menu - self.chapter = chapter - self.boxRear = boxRear - self.profile = profile - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case primary = "Primary" - case art = "Art" - case backdrop = "Backdrop" - case banner = "Banner" - case logo = "Logo" - case thumb = "Thumb" - case disc = "Disc" - case box = "Box" - case screenshot = "Screenshot" - case menu = "Menu" - case chapter = "Chapter" - case boxRear = "BoxRear" - case profile = "Profile" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(primary, forKey: .primary) - try encoderContainer.encodeIfPresent(art, forKey: .art) - try encoderContainer.encodeIfPresent(backdrop, forKey: .backdrop) - try encoderContainer.encodeIfPresent(banner, forKey: .banner) - try encoderContainer.encodeIfPresent(logo, forKey: .logo) - try encoderContainer.encodeIfPresent(thumb, forKey: .thumb) - try encoderContainer.encodeIfPresent(disc, forKey: .disc) - try encoderContainer.encodeIfPresent(box, forKey: .box) - try encoderContainer.encodeIfPresent(screenshot, forKey: .screenshot) - try encoderContainer.encodeIfPresent(menu, forKey: .menu) - try encoderContainer.encodeIfPresent(chapter, forKey: .chapter) - try encoderContainer.encodeIfPresent(boxRear, forKey: .boxRear) - try encoderContainer.encodeIfPresent(profile, forKey: .profile) - } -} diff --git a/Sources/JellyfinAPI/Models/BaseItemDtoQueryResult.swift b/Sources/JellyfinAPI/Models/BaseItemDtoQueryResult.swift deleted file mode 100644 index 7e60f4b96..000000000 --- a/Sources/JellyfinAPI/Models/BaseItemDtoQueryResult.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// BaseItemDtoQueryResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct BaseItemDtoQueryResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the items. */ - public var items: [BaseItemDto]? - /** Gets or sets the total number of records available. */ - public var totalRecordCount: Int? - /** Gets or sets the index of the first record in Items. */ - public var startIndex: Int? - - public init(items: [BaseItemDto]? = nil, totalRecordCount: Int? = nil, startIndex: Int? = nil) { - self.items = items - self.totalRecordCount = totalRecordCount - self.startIndex = startIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case items = "Items" - case totalRecordCount = "TotalRecordCount" - case startIndex = "StartIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(items, forKey: .items) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/BaseItemDtoUserData.swift b/Sources/JellyfinAPI/Models/BaseItemDtoUserData.swift deleted file mode 100644 index 91d64ed8e..000000000 --- a/Sources/JellyfinAPI/Models/BaseItemDtoUserData.swift +++ /dev/null @@ -1,83 +0,0 @@ -// -// BaseItemDtoUserData.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the user data for this item based on the user it's being requested for. */ -public struct BaseItemDtoUserData: Codable, JSONEncodable, Hashable { - - /** Gets or sets the rating. */ - public var rating: Double? - /** Gets or sets the played percentage. */ - public var playedPercentage: Double? - /** Gets or sets the unplayed item count. */ - public var unplayedItemCount: Int? - /** Gets or sets the playback position ticks. */ - public var playbackPositionTicks: Int64? - /** Gets or sets the play count. */ - public var playCount: Int? - /** Gets or sets a value indicating whether this instance is favorite. */ - public var isFavorite: Bool? - /** Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes. */ - public var likes: Bool? - /** Gets or sets the last played date. */ - public var lastPlayedDate: Date? - /** Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played. */ - public var played: Bool? - /** Gets or sets the key. */ - public var key: String? - /** Gets or sets the item identifier. */ - public var itemId: String? - - public init(rating: Double? = nil, playedPercentage: Double? = nil, unplayedItemCount: Int? = nil, playbackPositionTicks: Int64? = nil, playCount: Int? = nil, isFavorite: Bool? = nil, likes: Bool? = nil, lastPlayedDate: Date? = nil, played: Bool? = nil, key: String? = nil, itemId: String? = nil) { - self.rating = rating - self.playedPercentage = playedPercentage - self.unplayedItemCount = unplayedItemCount - self.playbackPositionTicks = playbackPositionTicks - self.playCount = playCount - self.isFavorite = isFavorite - self.likes = likes - self.lastPlayedDate = lastPlayedDate - self.played = played - self.key = key - self.itemId = itemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case rating = "Rating" - case playedPercentage = "PlayedPercentage" - case unplayedItemCount = "UnplayedItemCount" - case playbackPositionTicks = "PlaybackPositionTicks" - case playCount = "PlayCount" - case isFavorite = "IsFavorite" - case likes = "Likes" - case lastPlayedDate = "LastPlayedDate" - case played = "Played" - case key = "Key" - case itemId = "ItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(rating, forKey: .rating) - try encoderContainer.encodeIfPresent(playedPercentage, forKey: .playedPercentage) - try encoderContainer.encodeIfPresent(unplayedItemCount, forKey: .unplayedItemCount) - try encoderContainer.encodeIfPresent(playbackPositionTicks, forKey: .playbackPositionTicks) - try encoderContainer.encodeIfPresent(playCount, forKey: .playCount) - try encoderContainer.encodeIfPresent(isFavorite, forKey: .isFavorite) - try encoderContainer.encodeIfPresent(likes, forKey: .likes) - try encoderContainer.encodeIfPresent(lastPlayedDate, forKey: .lastPlayedDate) - try encoderContainer.encodeIfPresent(played, forKey: .played) - try encoderContainer.encodeIfPresent(key, forKey: .key) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - } -} diff --git a/Sources/JellyfinAPI/Models/BaseItemPerson.swift b/Sources/JellyfinAPI/Models/BaseItemPerson.swift deleted file mode 100644 index c98ef7982..000000000 --- a/Sources/JellyfinAPI/Models/BaseItemPerson.swift +++ /dev/null @@ -1,57 +0,0 @@ -// -// BaseItemPerson.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** This is used by the api to get information about a Person within a BaseItem. */ -public struct BaseItemPerson: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the identifier. */ - public var id: String? - /** Gets or sets the role. */ - public var role: String? - /** Gets or sets the type. */ - public var type: String? - /** Gets or sets the primary image tag. */ - public var primaryImageTag: String? - public var imageBlurHashes: BaseItemPersonImageBlurHashes? - - public init(name: String? = nil, id: String? = nil, role: String? = nil, type: String? = nil, primaryImageTag: String? = nil, imageBlurHashes: BaseItemPersonImageBlurHashes? = nil) { - self.name = name - self.id = id - self.role = role - self.type = type - self.primaryImageTag = primaryImageTag - self.imageBlurHashes = imageBlurHashes - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case id = "Id" - case role = "Role" - case type = "Type" - case primaryImageTag = "PrimaryImageTag" - case imageBlurHashes = "ImageBlurHashes" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(role, forKey: .role) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(primaryImageTag, forKey: .primaryImageTag) - try encoderContainer.encodeIfPresent(imageBlurHashes, forKey: .imageBlurHashes) - } -} diff --git a/Sources/JellyfinAPI/Models/BaseItemPersonImageBlurHashes.swift b/Sources/JellyfinAPI/Models/BaseItemPersonImageBlurHashes.swift deleted file mode 100644 index 40c00cf99..000000000 --- a/Sources/JellyfinAPI/Models/BaseItemPersonImageBlurHashes.swift +++ /dev/null @@ -1,80 +0,0 @@ -// -// BaseItemPersonImageBlurHashes.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the primary image blurhash. */ -public struct BaseItemPersonImageBlurHashes: Codable, JSONEncodable, Hashable { - - public var primary: [String: String]? - public var art: [String: String]? - public var backdrop: [String: String]? - public var banner: [String: String]? - public var logo: [String: String]? - public var thumb: [String: String]? - public var disc: [String: String]? - public var box: [String: String]? - public var screenshot: [String: String]? - public var menu: [String: String]? - public var chapter: [String: String]? - public var boxRear: [String: String]? - public var profile: [String: String]? - - public init(primary: [String: String]? = nil, art: [String: String]? = nil, backdrop: [String: String]? = nil, banner: [String: String]? = nil, logo: [String: String]? = nil, thumb: [String: String]? = nil, disc: [String: String]? = nil, box: [String: String]? = nil, screenshot: [String: String]? = nil, menu: [String: String]? = nil, chapter: [String: String]? = nil, boxRear: [String: String]? = nil, profile: [String: String]? = nil) { - self.primary = primary - self.art = art - self.backdrop = backdrop - self.banner = banner - self.logo = logo - self.thumb = thumb - self.disc = disc - self.box = box - self.screenshot = screenshot - self.menu = menu - self.chapter = chapter - self.boxRear = boxRear - self.profile = profile - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case primary = "Primary" - case art = "Art" - case backdrop = "Backdrop" - case banner = "Banner" - case logo = "Logo" - case thumb = "Thumb" - case disc = "Disc" - case box = "Box" - case screenshot = "Screenshot" - case menu = "Menu" - case chapter = "Chapter" - case boxRear = "BoxRear" - case profile = "Profile" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(primary, forKey: .primary) - try encoderContainer.encodeIfPresent(art, forKey: .art) - try encoderContainer.encodeIfPresent(backdrop, forKey: .backdrop) - try encoderContainer.encodeIfPresent(banner, forKey: .banner) - try encoderContainer.encodeIfPresent(logo, forKey: .logo) - try encoderContainer.encodeIfPresent(thumb, forKey: .thumb) - try encoderContainer.encodeIfPresent(disc, forKey: .disc) - try encoderContainer.encodeIfPresent(box, forKey: .box) - try encoderContainer.encodeIfPresent(screenshot, forKey: .screenshot) - try encoderContainer.encodeIfPresent(menu, forKey: .menu) - try encoderContainer.encodeIfPresent(chapter, forKey: .chapter) - try encoderContainer.encodeIfPresent(boxRear, forKey: .boxRear) - try encoderContainer.encodeIfPresent(profile, forKey: .profile) - } -} diff --git a/Sources/JellyfinAPI/Models/BookInfo.swift b/Sources/JellyfinAPI/Models/BookInfo.swift deleted file mode 100644 index 3a9aedbab..000000000 --- a/Sources/JellyfinAPI/Models/BookInfo.swift +++ /dev/null @@ -1,82 +0,0 @@ -// -// BookInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct BookInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - public var seriesName: String? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil, seriesName: String? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - self.seriesName = seriesName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - case seriesName = "SeriesName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - try encoderContainer.encodeIfPresent(seriesName, forKey: .seriesName) - } -} diff --git a/Sources/JellyfinAPI/Models/BookInfoRemoteSearchQuery.swift b/Sources/JellyfinAPI/Models/BookInfoRemoteSearchQuery.swift deleted file mode 100644 index 625ac371f..000000000 --- a/Sources/JellyfinAPI/Models/BookInfoRemoteSearchQuery.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// BookInfoRemoteSearchQuery.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct BookInfoRemoteSearchQuery: Codable, JSONEncodable, Hashable { - - public var searchInfo: BookInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: BookInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/BookInfoRemoteSearchQuerySearchInfo.swift b/Sources/JellyfinAPI/Models/BookInfoRemoteSearchQuerySearchInfo.swift deleted file mode 100644 index 288c30714..000000000 --- a/Sources/JellyfinAPI/Models/BookInfoRemoteSearchQuerySearchInfo.swift +++ /dev/null @@ -1,82 +0,0 @@ -// -// BookInfoRemoteSearchQuerySearchInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct BookInfoRemoteSearchQuerySearchInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - public var seriesName: String? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil, seriesName: String? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - self.seriesName = seriesName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - case seriesName = "SeriesName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - try encoderContainer.encodeIfPresent(seriesName, forKey: .seriesName) - } -} diff --git a/Sources/JellyfinAPI/Models/BoxSetInfo.swift b/Sources/JellyfinAPI/Models/BoxSetInfo.swift deleted file mode 100644 index a5710bf11..000000000 --- a/Sources/JellyfinAPI/Models/BoxSetInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// BoxSetInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct BoxSetInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - } -} diff --git a/Sources/JellyfinAPI/Models/BoxSetInfoRemoteSearchQuery.swift b/Sources/JellyfinAPI/Models/BoxSetInfoRemoteSearchQuery.swift deleted file mode 100644 index a5721d2a3..000000000 --- a/Sources/JellyfinAPI/Models/BoxSetInfoRemoteSearchQuery.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// BoxSetInfoRemoteSearchQuery.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct BoxSetInfoRemoteSearchQuery: Codable, JSONEncodable, Hashable { - - public var searchInfo: BoxSetInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: BoxSetInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/BoxSetInfoRemoteSearchQuerySearchInfo.swift b/Sources/JellyfinAPI/Models/BoxSetInfoRemoteSearchQuerySearchInfo.swift deleted file mode 100644 index 9270f3151..000000000 --- a/Sources/JellyfinAPI/Models/BoxSetInfoRemoteSearchQuerySearchInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// BoxSetInfoRemoteSearchQuerySearchInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct BoxSetInfoRemoteSearchQuerySearchInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - } -} diff --git a/Sources/JellyfinAPI/Models/BrandingOptions.swift b/Sources/JellyfinAPI/Models/BrandingOptions.swift deleted file mode 100644 index 6388b62f8..000000000 --- a/Sources/JellyfinAPI/Models/BrandingOptions.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// BrandingOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The branding options. */ -public struct BrandingOptions: Codable, JSONEncodable, Hashable { - - /** Gets or sets the login disclaimer. */ - public var loginDisclaimer: String? - /** Gets or sets the custom CSS. */ - public var customCss: String? - - public init(loginDisclaimer: String? = nil, customCss: String? = nil) { - self.loginDisclaimer = loginDisclaimer - self.customCss = customCss - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case loginDisclaimer = "LoginDisclaimer" - case customCss = "CustomCss" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(loginDisclaimer, forKey: .loginDisclaimer) - try encoderContainer.encodeIfPresent(customCss, forKey: .customCss) - } -} diff --git a/Sources/JellyfinAPI/Models/BufferRequestDto.swift b/Sources/JellyfinAPI/Models/BufferRequestDto.swift deleted file mode 100644 index fa07b3f58..000000000 --- a/Sources/JellyfinAPI/Models/BufferRequestDto.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// BufferRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class BufferRequestDto. */ -public struct BufferRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets when the request has been made by the client. */ - public var when: Date? - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - /** Gets or sets a value indicating whether the client playback is unpaused. */ - public var isPlaying: Bool? - /** Gets or sets the playlist item identifier of the playing item. */ - public var playlistItemId: String? - - public init(when: Date? = nil, positionTicks: Int64? = nil, isPlaying: Bool? = nil, playlistItemId: String? = nil) { - self.when = when - self.positionTicks = positionTicks - self.isPlaying = isPlaying - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case when = "When" - case positionTicks = "PositionTicks" - case isPlaying = "IsPlaying" - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(when, forKey: .when) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(isPlaying, forKey: .isPlaying) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/ChannelFeatures.swift b/Sources/JellyfinAPI/Models/ChannelFeatures.swift deleted file mode 100644 index d925da99c..000000000 --- a/Sources/JellyfinAPI/Models/ChannelFeatures.swift +++ /dev/null @@ -1,87 +0,0 @@ -// -// ChannelFeatures.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ChannelFeatures: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the identifier. */ - public var id: String? - /** Gets or sets a value indicating whether this instance can search. */ - public var canSearch: Bool? - /** Gets or sets the media types. */ - public var mediaTypes: [ChannelMediaType]? - /** Gets or sets the content types. */ - public var contentTypes: [ChannelMediaContentType]? - /** Gets or sets the maximum number of records the channel allows retrieving at a time. */ - public var maxPageSize: Int? - /** Gets or sets the automatic refresh levels. */ - public var autoRefreshLevels: Int? - /** Gets or sets the default sort orders. */ - public var defaultSortFields: [ChannelItemSortField]? - /** Gets or sets a value indicating whether a sort ascending/descending toggle is supported. */ - public var supportsSortOrderToggle: Bool? - /** Gets or sets a value indicating whether [supports latest media]. */ - public var supportsLatestMedia: Bool? - /** Gets or sets a value indicating whether this instance can filter. */ - public var canFilter: Bool? - /** Gets or sets a value indicating whether [supports content downloading]. */ - public var supportsContentDownloading: Bool? - - public init(name: String? = nil, id: String? = nil, canSearch: Bool? = nil, mediaTypes: [ChannelMediaType]? = nil, contentTypes: [ChannelMediaContentType]? = nil, maxPageSize: Int? = nil, autoRefreshLevels: Int? = nil, defaultSortFields: [ChannelItemSortField]? = nil, supportsSortOrderToggle: Bool? = nil, supportsLatestMedia: Bool? = nil, canFilter: Bool? = nil, supportsContentDownloading: Bool? = nil) { - self.name = name - self.id = id - self.canSearch = canSearch - self.mediaTypes = mediaTypes - self.contentTypes = contentTypes - self.maxPageSize = maxPageSize - self.autoRefreshLevels = autoRefreshLevels - self.defaultSortFields = defaultSortFields - self.supportsSortOrderToggle = supportsSortOrderToggle - self.supportsLatestMedia = supportsLatestMedia - self.canFilter = canFilter - self.supportsContentDownloading = supportsContentDownloading - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case id = "Id" - case canSearch = "CanSearch" - case mediaTypes = "MediaTypes" - case contentTypes = "ContentTypes" - case maxPageSize = "MaxPageSize" - case autoRefreshLevels = "AutoRefreshLevels" - case defaultSortFields = "DefaultSortFields" - case supportsSortOrderToggle = "SupportsSortOrderToggle" - case supportsLatestMedia = "SupportsLatestMedia" - case canFilter = "CanFilter" - case supportsContentDownloading = "SupportsContentDownloading" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(canSearch, forKey: .canSearch) - try encoderContainer.encodeIfPresent(mediaTypes, forKey: .mediaTypes) - try encoderContainer.encodeIfPresent(contentTypes, forKey: .contentTypes) - try encoderContainer.encodeIfPresent(maxPageSize, forKey: .maxPageSize) - try encoderContainer.encodeIfPresent(autoRefreshLevels, forKey: .autoRefreshLevels) - try encoderContainer.encodeIfPresent(defaultSortFields, forKey: .defaultSortFields) - try encoderContainer.encodeIfPresent(supportsSortOrderToggle, forKey: .supportsSortOrderToggle) - try encoderContainer.encodeIfPresent(supportsLatestMedia, forKey: .supportsLatestMedia) - try encoderContainer.encodeIfPresent(canFilter, forKey: .canFilter) - try encoderContainer.encodeIfPresent(supportsContentDownloading, forKey: .supportsContentDownloading) - } -} diff --git a/Sources/JellyfinAPI/Models/ChannelItemSortField.swift b/Sources/JellyfinAPI/Models/ChannelItemSortField.swift deleted file mode 100644 index 60058c63a..000000000 --- a/Sources/JellyfinAPI/Models/ChannelItemSortField.swift +++ /dev/null @@ -1,21 +0,0 @@ -// -// ChannelItemSortField.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum ChannelItemSortField: String, Codable, CaseIterable { - case name = "Name" - case communityRating = "CommunityRating" - case premiereDate = "PremiereDate" - case dateCreated = "DateCreated" - case runtime = "Runtime" - case playCount = "PlayCount" - case communityPlayCount = "CommunityPlayCount" -} diff --git a/Sources/JellyfinAPI/Models/ChannelMappingOptionsDto.swift b/Sources/JellyfinAPI/Models/ChannelMappingOptionsDto.swift deleted file mode 100644 index a2d81b3d1..000000000 --- a/Sources/JellyfinAPI/Models/ChannelMappingOptionsDto.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// ChannelMappingOptionsDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Channel mapping options dto. */ -public struct ChannelMappingOptionsDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets list of tuner channels. */ - public var tunerChannels: [TunerChannelMapping]? - /** Gets or sets list of provider channels. */ - public var providerChannels: [NameIdPair]? - /** Gets or sets list of mappings. */ - public var mappings: [NameValuePair]? - /** Gets or sets provider name. */ - public var providerName: String? - - public init(tunerChannels: [TunerChannelMapping]? = nil, providerChannels: [NameIdPair]? = nil, mappings: [NameValuePair]? = nil, providerName: String? = nil) { - self.tunerChannels = tunerChannels - self.providerChannels = providerChannels - self.mappings = mappings - self.providerName = providerName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case tunerChannels = "TunerChannels" - case providerChannels = "ProviderChannels" - case mappings = "Mappings" - case providerName = "ProviderName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(tunerChannels, forKey: .tunerChannels) - try encoderContainer.encodeIfPresent(providerChannels, forKey: .providerChannels) - try encoderContainer.encodeIfPresent(mappings, forKey: .mappings) - try encoderContainer.encodeIfPresent(providerName, forKey: .providerName) - } -} diff --git a/Sources/JellyfinAPI/Models/ChannelMediaContentType.swift b/Sources/JellyfinAPI/Models/ChannelMediaContentType.swift deleted file mode 100644 index 3e3bd7c2b..000000000 --- a/Sources/JellyfinAPI/Models/ChannelMediaContentType.swift +++ /dev/null @@ -1,22 +0,0 @@ -// -// ChannelMediaContentType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum ChannelMediaContentType: String, Codable, CaseIterable { - case clip = "Clip" - case podcast = "Podcast" - case trailer = "Trailer" - case movie = "Movie" - case episode = "Episode" - case song = "Song" - case movieExtra = "MovieExtra" - case tvExtra = "TvExtra" -} diff --git a/Sources/JellyfinAPI/Models/ChannelMediaType.swift b/Sources/JellyfinAPI/Models/ChannelMediaType.swift deleted file mode 100644 index e8ae96564..000000000 --- a/Sources/JellyfinAPI/Models/ChannelMediaType.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// ChannelMediaType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum ChannelMediaType: String, Codable, CaseIterable { - case audio = "Audio" - case video = "Video" - case photo = "Photo" -} diff --git a/Sources/JellyfinAPI/Models/ChannelType.swift b/Sources/JellyfinAPI/Models/ChannelType.swift deleted file mode 100644 index 2c07860a5..000000000 --- a/Sources/JellyfinAPI/Models/ChannelType.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// ChannelType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum ChannelType. */ -public enum ChannelType: String, Codable, CaseIterable { - case tv = "TV" - case radio = "Radio" -} diff --git a/Sources/JellyfinAPI/Models/ChapterInfo.swift b/Sources/JellyfinAPI/Models/ChapterInfo.swift deleted file mode 100644 index 91e78bb48..000000000 --- a/Sources/JellyfinAPI/Models/ChapterInfo.swift +++ /dev/null @@ -1,51 +0,0 @@ -// -// ChapterInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class ChapterInfo. */ -public struct ChapterInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the start position ticks. */ - public var startPositionTicks: Int64? - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the image path. */ - public var imagePath: String? - public var imageDateModified: Date? - public var imageTag: String? - - public init(startPositionTicks: Int64? = nil, name: String? = nil, imagePath: String? = nil, imageDateModified: Date? = nil, imageTag: String? = nil) { - self.startPositionTicks = startPositionTicks - self.name = name - self.imagePath = imagePath - self.imageDateModified = imageDateModified - self.imageTag = imageTag - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case startPositionTicks = "StartPositionTicks" - case name = "Name" - case imagePath = "ImagePath" - case imageDateModified = "ImageDateModified" - case imageTag = "ImageTag" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(startPositionTicks, forKey: .startPositionTicks) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(imagePath, forKey: .imagePath) - try encoderContainer.encodeIfPresent(imageDateModified, forKey: .imageDateModified) - try encoderContainer.encodeIfPresent(imageTag, forKey: .imageTag) - } -} diff --git a/Sources/JellyfinAPI/Models/ClientCapabilities.swift b/Sources/JellyfinAPI/Models/ClientCapabilities.swift deleted file mode 100644 index 9838e33a5..000000000 --- a/Sources/JellyfinAPI/Models/ClientCapabilities.swift +++ /dev/null @@ -1,67 +0,0 @@ -// -// ClientCapabilities.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ClientCapabilities: Codable, JSONEncodable, Hashable { - - public var playableMediaTypes: [String]? - public var supportedCommands: [GeneralCommandType]? - public var supportsMediaControl: Bool? - public var supportsContentUploading: Bool? - public var messageCallbackUrl: String? - public var supportsPersistentIdentifier: Bool? - public var supportsSync: Bool? - public var deviceProfile: ClientCapabilitiesDeviceProfile? - public var appStoreUrl: String? - public var iconUrl: String? - - public init(playableMediaTypes: [String]? = nil, supportedCommands: [GeneralCommandType]? = nil, supportsMediaControl: Bool? = nil, supportsContentUploading: Bool? = nil, messageCallbackUrl: String? = nil, supportsPersistentIdentifier: Bool? = nil, supportsSync: Bool? = nil, deviceProfile: ClientCapabilitiesDeviceProfile? = nil, appStoreUrl: String? = nil, iconUrl: String? = nil) { - self.playableMediaTypes = playableMediaTypes - self.supportedCommands = supportedCommands - self.supportsMediaControl = supportsMediaControl - self.supportsContentUploading = supportsContentUploading - self.messageCallbackUrl = messageCallbackUrl - self.supportsPersistentIdentifier = supportsPersistentIdentifier - self.supportsSync = supportsSync - self.deviceProfile = deviceProfile - self.appStoreUrl = appStoreUrl - self.iconUrl = iconUrl - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playableMediaTypes = "PlayableMediaTypes" - case supportedCommands = "SupportedCommands" - case supportsMediaControl = "SupportsMediaControl" - case supportsContentUploading = "SupportsContentUploading" - case messageCallbackUrl = "MessageCallbackUrl" - case supportsPersistentIdentifier = "SupportsPersistentIdentifier" - case supportsSync = "SupportsSync" - case deviceProfile = "DeviceProfile" - case appStoreUrl = "AppStoreUrl" - case iconUrl = "IconUrl" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playableMediaTypes, forKey: .playableMediaTypes) - try encoderContainer.encodeIfPresent(supportedCommands, forKey: .supportedCommands) - try encoderContainer.encodeIfPresent(supportsMediaControl, forKey: .supportsMediaControl) - try encoderContainer.encodeIfPresent(supportsContentUploading, forKey: .supportsContentUploading) - try encoderContainer.encodeIfPresent(messageCallbackUrl, forKey: .messageCallbackUrl) - try encoderContainer.encodeIfPresent(supportsPersistentIdentifier, forKey: .supportsPersistentIdentifier) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(deviceProfile, forKey: .deviceProfile) - try encoderContainer.encodeIfPresent(appStoreUrl, forKey: .appStoreUrl) - try encoderContainer.encodeIfPresent(iconUrl, forKey: .iconUrl) - } -} diff --git a/Sources/JellyfinAPI/Models/ClientCapabilitiesDeviceProfile.swift b/Sources/JellyfinAPI/Models/ClientCapabilitiesDeviceProfile.swift deleted file mode 100644 index c6c582ef2..000000000 --- a/Sources/JellyfinAPI/Models/ClientCapabilitiesDeviceProfile.swift +++ /dev/null @@ -1,222 +0,0 @@ -// -// ClientCapabilitiesDeviceProfile.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. <br /> Specifically, it defines the supported <see cref=\"P:MediaBrowser.Model.Dlna.DeviceProfile.ContainerProfiles\">containers</see> and <see cref=\"P:MediaBrowser.Model.Dlna.DeviceProfile.CodecProfiles\">codecs</see> (video and/or audio, including codec profiles and levels) the device is able to direct play (without transcoding or remuxing), as well as which <see cref=\"P:MediaBrowser.Model.Dlna.DeviceProfile.TranscodingProfiles\">containers/codecs to transcode to</see> in case it isn't. */ -public struct ClientCapabilitiesDeviceProfile: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of this device profile. */ - public var name: String? - /** Gets or sets the Id. */ - public var id: String? - public var identification: DeviceProfileIdentification? - /** Gets or sets the friendly name of the device profile, which can be shown to users. */ - public var friendlyName: String? - /** Gets or sets the manufacturer of the device which this profile represents. */ - public var manufacturer: String? - /** Gets or sets an url for the manufacturer of the device which this profile represents. */ - public var manufacturerUrl: String? - /** Gets or sets the model name of the device which this profile represents. */ - public var modelName: String? - /** Gets or sets the model description of the device which this profile represents. */ - public var modelDescription: String? - /** Gets or sets the model number of the device which this profile represents. */ - public var modelNumber: String? - /** Gets or sets the ModelUrl. */ - public var modelUrl: String? - /** Gets or sets the serial number of the device which this profile represents. */ - public var serialNumber: String? - /** Gets or sets a value indicating whether EnableAlbumArtInDidl. */ - public var enableAlbumArtInDidl: Bool? = false - /** Gets or sets a value indicating whether EnableSingleAlbumArtLimit. */ - public var enableSingleAlbumArtLimit: Bool? = false - /** Gets or sets a value indicating whether EnableSingleSubtitleLimit. */ - public var enableSingleSubtitleLimit: Bool? = false - /** Gets or sets the SupportedMediaTypes. */ - public var supportedMediaTypes: String? - /** Gets or sets the UserId. */ - public var userId: String? - /** Gets or sets the AlbumArtPn. */ - public var albumArtPn: String? - /** Gets or sets the MaxAlbumArtWidth. */ - public var maxAlbumArtWidth: Int? - /** Gets or sets the MaxAlbumArtHeight. */ - public var maxAlbumArtHeight: Int? - /** Gets or sets the maximum allowed width of embedded icons. */ - public var maxIconWidth: Int? - /** Gets or sets the maximum allowed height of embedded icons. */ - public var maxIconHeight: Int? - /** Gets or sets the maximum allowed bitrate for all streamed content. */ - public var maxStreamingBitrate: Int? - /** Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files). */ - public var maxStaticBitrate: Int? - /** Gets or sets the maximum allowed bitrate for transcoded music streams. */ - public var musicStreamingTranscodingBitrate: Int? - /** Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files. */ - public var maxStaticMusicBitrate: Int? - /** Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace. */ - public var sonyAggregationFlags: String? - /** Gets or sets the ProtocolInfo. */ - public var protocolInfo: String? - /** Gets or sets the TimelineOffsetSeconds. */ - public var timelineOffsetSeconds: Int? = 0 - /** Gets or sets a value indicating whether RequiresPlainVideoItems. */ - public var requiresPlainVideoItems: Bool? = false - /** Gets or sets a value indicating whether RequiresPlainFolders. */ - public var requiresPlainFolders: Bool? = false - /** Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar. */ - public var enableMSMediaReceiverRegistrar: Bool? = false - /** Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests. */ - public var ignoreTranscodeByteRangeRequests: Bool? = false - /** Gets or sets the XmlRootAttributes. */ - public var xmlRootAttributes: [XmlAttribute]? - /** Gets or sets the direct play profiles. */ - public var directPlayProfiles: [DirectPlayProfile]? - /** Gets or sets the transcoding profiles. */ - public var transcodingProfiles: [TranscodingProfile]? - /** Gets or sets the container profiles. */ - public var containerProfiles: [ContainerProfile]? - /** Gets or sets the codec profiles. */ - public var codecProfiles: [CodecProfile]? - /** Gets or sets the ResponseProfiles. */ - public var responseProfiles: [ResponseProfile]? - /** Gets or sets the subtitle profiles. */ - public var subtitleProfiles: [SubtitleProfile]? - - public init(name: String? = nil, id: String? = nil, identification: DeviceProfileIdentification? = nil, friendlyName: String? = nil, manufacturer: String? = nil, manufacturerUrl: String? = nil, modelName: String? = nil, modelDescription: String? = nil, modelNumber: String? = nil, modelUrl: String? = nil, serialNumber: String? = nil, enableAlbumArtInDidl: Bool? = false, enableSingleAlbumArtLimit: Bool? = false, enableSingleSubtitleLimit: Bool? = false, supportedMediaTypes: String? = nil, userId: String? = nil, albumArtPn: String? = nil, maxAlbumArtWidth: Int? = nil, maxAlbumArtHeight: Int? = nil, maxIconWidth: Int? = nil, maxIconHeight: Int? = nil, maxStreamingBitrate: Int? = nil, maxStaticBitrate: Int? = nil, musicStreamingTranscodingBitrate: Int? = nil, maxStaticMusicBitrate: Int? = nil, sonyAggregationFlags: String? = nil, protocolInfo: String? = nil, timelineOffsetSeconds: Int? = 0, requiresPlainVideoItems: Bool? = false, requiresPlainFolders: Bool? = false, enableMSMediaReceiverRegistrar: Bool? = false, ignoreTranscodeByteRangeRequests: Bool? = false, xmlRootAttributes: [XmlAttribute]? = nil, directPlayProfiles: [DirectPlayProfile]? = nil, transcodingProfiles: [TranscodingProfile]? = nil, containerProfiles: [ContainerProfile]? = nil, codecProfiles: [CodecProfile]? = nil, responseProfiles: [ResponseProfile]? = nil, subtitleProfiles: [SubtitleProfile]? = nil) { - self.name = name - self.id = id - self.identification = identification - self.friendlyName = friendlyName - self.manufacturer = manufacturer - self.manufacturerUrl = manufacturerUrl - self.modelName = modelName - self.modelDescription = modelDescription - self.modelNumber = modelNumber - self.modelUrl = modelUrl - self.serialNumber = serialNumber - self.enableAlbumArtInDidl = enableAlbumArtInDidl - self.enableSingleAlbumArtLimit = enableSingleAlbumArtLimit - self.enableSingleSubtitleLimit = enableSingleSubtitleLimit - self.supportedMediaTypes = supportedMediaTypes - self.userId = userId - self.albumArtPn = albumArtPn - self.maxAlbumArtWidth = maxAlbumArtWidth - self.maxAlbumArtHeight = maxAlbumArtHeight - self.maxIconWidth = maxIconWidth - self.maxIconHeight = maxIconHeight - self.maxStreamingBitrate = maxStreamingBitrate - self.maxStaticBitrate = maxStaticBitrate - self.musicStreamingTranscodingBitrate = musicStreamingTranscodingBitrate - self.maxStaticMusicBitrate = maxStaticMusicBitrate - self.sonyAggregationFlags = sonyAggregationFlags - self.protocolInfo = protocolInfo - self.timelineOffsetSeconds = timelineOffsetSeconds - self.requiresPlainVideoItems = requiresPlainVideoItems - self.requiresPlainFolders = requiresPlainFolders - self.enableMSMediaReceiverRegistrar = enableMSMediaReceiverRegistrar - self.ignoreTranscodeByteRangeRequests = ignoreTranscodeByteRangeRequests - self.xmlRootAttributes = xmlRootAttributes - self.directPlayProfiles = directPlayProfiles - self.transcodingProfiles = transcodingProfiles - self.containerProfiles = containerProfiles - self.codecProfiles = codecProfiles - self.responseProfiles = responseProfiles - self.subtitleProfiles = subtitleProfiles - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case id = "Id" - case identification = "Identification" - case friendlyName = "FriendlyName" - case manufacturer = "Manufacturer" - case manufacturerUrl = "ManufacturerUrl" - case modelName = "ModelName" - case modelDescription = "ModelDescription" - case modelNumber = "ModelNumber" - case modelUrl = "ModelUrl" - case serialNumber = "SerialNumber" - case enableAlbumArtInDidl = "EnableAlbumArtInDidl" - case enableSingleAlbumArtLimit = "EnableSingleAlbumArtLimit" - case enableSingleSubtitleLimit = "EnableSingleSubtitleLimit" - case supportedMediaTypes = "SupportedMediaTypes" - case userId = "UserId" - case albumArtPn = "AlbumArtPn" - case maxAlbumArtWidth = "MaxAlbumArtWidth" - case maxAlbumArtHeight = "MaxAlbumArtHeight" - case maxIconWidth = "MaxIconWidth" - case maxIconHeight = "MaxIconHeight" - case maxStreamingBitrate = "MaxStreamingBitrate" - case maxStaticBitrate = "MaxStaticBitrate" - case musicStreamingTranscodingBitrate = "MusicStreamingTranscodingBitrate" - case maxStaticMusicBitrate = "MaxStaticMusicBitrate" - case sonyAggregationFlags = "SonyAggregationFlags" - case protocolInfo = "ProtocolInfo" - case timelineOffsetSeconds = "TimelineOffsetSeconds" - case requiresPlainVideoItems = "RequiresPlainVideoItems" - case requiresPlainFolders = "RequiresPlainFolders" - case enableMSMediaReceiverRegistrar = "EnableMSMediaReceiverRegistrar" - case ignoreTranscodeByteRangeRequests = "IgnoreTranscodeByteRangeRequests" - case xmlRootAttributes = "XmlRootAttributes" - case directPlayProfiles = "DirectPlayProfiles" - case transcodingProfiles = "TranscodingProfiles" - case containerProfiles = "ContainerProfiles" - case codecProfiles = "CodecProfiles" - case responseProfiles = "ResponseProfiles" - case subtitleProfiles = "SubtitleProfiles" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(identification, forKey: .identification) - try encoderContainer.encodeIfPresent(friendlyName, forKey: .friendlyName) - try encoderContainer.encodeIfPresent(manufacturer, forKey: .manufacturer) - try encoderContainer.encodeIfPresent(manufacturerUrl, forKey: .manufacturerUrl) - try encoderContainer.encodeIfPresent(modelName, forKey: .modelName) - try encoderContainer.encodeIfPresent(modelDescription, forKey: .modelDescription) - try encoderContainer.encodeIfPresent(modelNumber, forKey: .modelNumber) - try encoderContainer.encodeIfPresent(modelUrl, forKey: .modelUrl) - try encoderContainer.encodeIfPresent(serialNumber, forKey: .serialNumber) - try encoderContainer.encodeIfPresent(enableAlbumArtInDidl, forKey: .enableAlbumArtInDidl) - try encoderContainer.encodeIfPresent(enableSingleAlbumArtLimit, forKey: .enableSingleAlbumArtLimit) - try encoderContainer.encodeIfPresent(enableSingleSubtitleLimit, forKey: .enableSingleSubtitleLimit) - try encoderContainer.encodeIfPresent(supportedMediaTypes, forKey: .supportedMediaTypes) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(albumArtPn, forKey: .albumArtPn) - try encoderContainer.encodeIfPresent(maxAlbumArtWidth, forKey: .maxAlbumArtWidth) - try encoderContainer.encodeIfPresent(maxAlbumArtHeight, forKey: .maxAlbumArtHeight) - try encoderContainer.encodeIfPresent(maxIconWidth, forKey: .maxIconWidth) - try encoderContainer.encodeIfPresent(maxIconHeight, forKey: .maxIconHeight) - try encoderContainer.encodeIfPresent(maxStreamingBitrate, forKey: .maxStreamingBitrate) - try encoderContainer.encodeIfPresent(maxStaticBitrate, forKey: .maxStaticBitrate) - try encoderContainer.encodeIfPresent(musicStreamingTranscodingBitrate, forKey: .musicStreamingTranscodingBitrate) - try encoderContainer.encodeIfPresent(maxStaticMusicBitrate, forKey: .maxStaticMusicBitrate) - try encoderContainer.encodeIfPresent(sonyAggregationFlags, forKey: .sonyAggregationFlags) - try encoderContainer.encodeIfPresent(protocolInfo, forKey: .protocolInfo) - try encoderContainer.encodeIfPresent(timelineOffsetSeconds, forKey: .timelineOffsetSeconds) - try encoderContainer.encodeIfPresent(requiresPlainVideoItems, forKey: .requiresPlainVideoItems) - try encoderContainer.encodeIfPresent(requiresPlainFolders, forKey: .requiresPlainFolders) - try encoderContainer.encodeIfPresent(enableMSMediaReceiverRegistrar, forKey: .enableMSMediaReceiverRegistrar) - try encoderContainer.encodeIfPresent(ignoreTranscodeByteRangeRequests, forKey: .ignoreTranscodeByteRangeRequests) - try encoderContainer.encodeIfPresent(xmlRootAttributes, forKey: .xmlRootAttributes) - try encoderContainer.encodeIfPresent(directPlayProfiles, forKey: .directPlayProfiles) - try encoderContainer.encodeIfPresent(transcodingProfiles, forKey: .transcodingProfiles) - try encoderContainer.encodeIfPresent(containerProfiles, forKey: .containerProfiles) - try encoderContainer.encodeIfPresent(codecProfiles, forKey: .codecProfiles) - try encoderContainer.encodeIfPresent(responseProfiles, forKey: .responseProfiles) - try encoderContainer.encodeIfPresent(subtitleProfiles, forKey: .subtitleProfiles) - } -} diff --git a/Sources/JellyfinAPI/Models/ClientCapabilitiesDto.swift b/Sources/JellyfinAPI/Models/ClientCapabilitiesDto.swift deleted file mode 100644 index 33ee06a06..000000000 --- a/Sources/JellyfinAPI/Models/ClientCapabilitiesDto.swift +++ /dev/null @@ -1,77 +0,0 @@ -// -// ClientCapabilitiesDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Client capabilities dto. */ -public struct ClientCapabilitiesDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the list of playable media types. */ - public var playableMediaTypes: [String]? - /** Gets or sets the list of supported commands. */ - public var supportedCommands: [GeneralCommandType]? - /** Gets or sets a value indicating whether session supports media control. */ - public var supportsMediaControl: Bool? - /** Gets or sets a value indicating whether session supports content uploading. */ - public var supportsContentUploading: Bool? - /** Gets or sets the message callback url. */ - public var messageCallbackUrl: String? - /** Gets or sets a value indicating whether session supports a persistent identifier. */ - public var supportsPersistentIdentifier: Bool? - /** Gets or sets a value indicating whether session supports sync. */ - public var supportsSync: Bool? - public var deviceProfile: ClientCapabilitiesDeviceProfile? - /** Gets or sets the app store url. */ - public var appStoreUrl: String? - /** Gets or sets the icon url. */ - public var iconUrl: String? - - public init(playableMediaTypes: [String]? = nil, supportedCommands: [GeneralCommandType]? = nil, supportsMediaControl: Bool? = nil, supportsContentUploading: Bool? = nil, messageCallbackUrl: String? = nil, supportsPersistentIdentifier: Bool? = nil, supportsSync: Bool? = nil, deviceProfile: ClientCapabilitiesDeviceProfile? = nil, appStoreUrl: String? = nil, iconUrl: String? = nil) { - self.playableMediaTypes = playableMediaTypes - self.supportedCommands = supportedCommands - self.supportsMediaControl = supportsMediaControl - self.supportsContentUploading = supportsContentUploading - self.messageCallbackUrl = messageCallbackUrl - self.supportsPersistentIdentifier = supportsPersistentIdentifier - self.supportsSync = supportsSync - self.deviceProfile = deviceProfile - self.appStoreUrl = appStoreUrl - self.iconUrl = iconUrl - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playableMediaTypes = "PlayableMediaTypes" - case supportedCommands = "SupportedCommands" - case supportsMediaControl = "SupportsMediaControl" - case supportsContentUploading = "SupportsContentUploading" - case messageCallbackUrl = "MessageCallbackUrl" - case supportsPersistentIdentifier = "SupportsPersistentIdentifier" - case supportsSync = "SupportsSync" - case deviceProfile = "DeviceProfile" - case appStoreUrl = "AppStoreUrl" - case iconUrl = "IconUrl" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playableMediaTypes, forKey: .playableMediaTypes) - try encoderContainer.encodeIfPresent(supportedCommands, forKey: .supportedCommands) - try encoderContainer.encodeIfPresent(supportsMediaControl, forKey: .supportsMediaControl) - try encoderContainer.encodeIfPresent(supportsContentUploading, forKey: .supportsContentUploading) - try encoderContainer.encodeIfPresent(messageCallbackUrl, forKey: .messageCallbackUrl) - try encoderContainer.encodeIfPresent(supportsPersistentIdentifier, forKey: .supportsPersistentIdentifier) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(deviceProfile, forKey: .deviceProfile) - try encoderContainer.encodeIfPresent(appStoreUrl, forKey: .appStoreUrl) - try encoderContainer.encodeIfPresent(iconUrl, forKey: .iconUrl) - } -} diff --git a/Sources/JellyfinAPI/Models/ClientLogDocumentResponseDto.swift b/Sources/JellyfinAPI/Models/ClientLogDocumentResponseDto.swift deleted file mode 100644 index 2a2e51369..000000000 --- a/Sources/JellyfinAPI/Models/ClientLogDocumentResponseDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// ClientLogDocumentResponseDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Client log document response dto. */ -public struct ClientLogDocumentResponseDto: Codable, JSONEncodable, Hashable { - - /** Gets the resulting filename. */ - public var fileName: String? - - public init(fileName: String? = nil) { - self.fileName = fileName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case fileName = "FileName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(fileName, forKey: .fileName) - } -} diff --git a/Sources/JellyfinAPI/Models/CodecProfile.swift b/Sources/JellyfinAPI/Models/CodecProfile.swift deleted file mode 100644 index 7bbdd725b..000000000 --- a/Sources/JellyfinAPI/Models/CodecProfile.swift +++ /dev/null @@ -1,47 +0,0 @@ -// -// CodecProfile.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct CodecProfile: Codable, JSONEncodable, Hashable { - - public var type: CodecType? - public var conditions: [ProfileCondition]? - public var applyConditions: [ProfileCondition]? - public var codec: String? - public var container: String? - - public init(type: CodecType? = nil, conditions: [ProfileCondition]? = nil, applyConditions: [ProfileCondition]? = nil, codec: String? = nil, container: String? = nil) { - self.type = type - self.conditions = conditions - self.applyConditions = applyConditions - self.codec = codec - self.container = container - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case type = "Type" - case conditions = "Conditions" - case applyConditions = "ApplyConditions" - case codec = "Codec" - case container = "Container" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(conditions, forKey: .conditions) - try encoderContainer.encodeIfPresent(applyConditions, forKey: .applyConditions) - try encoderContainer.encodeIfPresent(codec, forKey: .codec) - try encoderContainer.encodeIfPresent(container, forKey: .container) - } -} diff --git a/Sources/JellyfinAPI/Models/CodecType.swift b/Sources/JellyfinAPI/Models/CodecType.swift deleted file mode 100644 index 1ada3cefa..000000000 --- a/Sources/JellyfinAPI/Models/CodecType.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// CodecType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum CodecType: String, Codable, CaseIterable { - case video = "Video" - case videoAudio = "VideoAudio" - case audio = "Audio" -} diff --git a/Sources/JellyfinAPI/Models/CollectionCreationResult.swift b/Sources/JellyfinAPI/Models/CollectionCreationResult.swift deleted file mode 100644 index c62615b24..000000000 --- a/Sources/JellyfinAPI/Models/CollectionCreationResult.swift +++ /dev/null @@ -1,31 +0,0 @@ -// -// CollectionCreationResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct CollectionCreationResult: Codable, JSONEncodable, Hashable { - - public var id: String? - - public init(id: String? = nil) { - self.id = id - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - } -} diff --git a/Sources/JellyfinAPI/Models/CollectionTypeOptions.swift b/Sources/JellyfinAPI/Models/CollectionTypeOptions.swift deleted file mode 100644 index 4685eee85..000000000 --- a/Sources/JellyfinAPI/Models/CollectionTypeOptions.swift +++ /dev/null @@ -1,22 +0,0 @@ -// -// CollectionTypeOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum CollectionTypeOptions: String, Codable, CaseIterable { - case movies = "Movies" - case tvShows = "TvShows" - case music = "Music" - case musicVideos = "MusicVideos" - case homeVideos = "HomeVideos" - case boxSets = "BoxSets" - case books = "Books" - case mixed = "Mixed" -} diff --git a/Sources/JellyfinAPI/Models/ConfigImageTypes.swift b/Sources/JellyfinAPI/Models/ConfigImageTypes.swift deleted file mode 100644 index 804a4cbe4..000000000 --- a/Sources/JellyfinAPI/Models/ConfigImageTypes.swift +++ /dev/null @@ -1,55 +0,0 @@ -// -// ConfigImageTypes.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ConfigImageTypes: Codable, JSONEncodable, Hashable { - - public var backdropSizes: [String]? - public var baseUrl: String? - public var logoSizes: [String]? - public var posterSizes: [String]? - public var profileSizes: [String]? - public var secureBaseUrl: String? - public var stillSizes: [String]? - - public init(backdropSizes: [String]? = nil, baseUrl: String? = nil, logoSizes: [String]? = nil, posterSizes: [String]? = nil, profileSizes: [String]? = nil, secureBaseUrl: String? = nil, stillSizes: [String]? = nil) { - self.backdropSizes = backdropSizes - self.baseUrl = baseUrl - self.logoSizes = logoSizes - self.posterSizes = posterSizes - self.profileSizes = profileSizes - self.secureBaseUrl = secureBaseUrl - self.stillSizes = stillSizes - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case backdropSizes = "BackdropSizes" - case baseUrl = "BaseUrl" - case logoSizes = "LogoSizes" - case posterSizes = "PosterSizes" - case profileSizes = "ProfileSizes" - case secureBaseUrl = "SecureBaseUrl" - case stillSizes = "StillSizes" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(backdropSizes, forKey: .backdropSizes) - try encoderContainer.encodeIfPresent(baseUrl, forKey: .baseUrl) - try encoderContainer.encodeIfPresent(logoSizes, forKey: .logoSizes) - try encoderContainer.encodeIfPresent(posterSizes, forKey: .posterSizes) - try encoderContainer.encodeIfPresent(profileSizes, forKey: .profileSizes) - try encoderContainer.encodeIfPresent(secureBaseUrl, forKey: .secureBaseUrl) - try encoderContainer.encodeIfPresent(stillSizes, forKey: .stillSizes) - } -} diff --git a/Sources/JellyfinAPI/Models/ConfigurationPageInfo.swift b/Sources/JellyfinAPI/Models/ConfigurationPageInfo.swift deleted file mode 100644 index 0225ef785..000000000 --- a/Sources/JellyfinAPI/Models/ConfigurationPageInfo.swift +++ /dev/null @@ -1,58 +0,0 @@ -// -// ConfigurationPageInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The configuration page info. */ -public struct ConfigurationPageInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets a value indicating whether the configurations page is enabled in the main menu. */ - public var enableInMainMenu: Bool? - /** Gets or sets the menu section. */ - public var menuSection: String? - /** Gets or sets the menu icon. */ - public var menuIcon: String? - /** Gets or sets the display name. */ - public var displayName: String? - /** Gets or sets the plugin id. */ - public var pluginId: String? - - public init(name: String? = nil, enableInMainMenu: Bool? = nil, menuSection: String? = nil, menuIcon: String? = nil, displayName: String? = nil, pluginId: String? = nil) { - self.name = name - self.enableInMainMenu = enableInMainMenu - self.menuSection = menuSection - self.menuIcon = menuIcon - self.displayName = displayName - self.pluginId = pluginId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case enableInMainMenu = "EnableInMainMenu" - case menuSection = "MenuSection" - case menuIcon = "MenuIcon" - case displayName = "DisplayName" - case pluginId = "PluginId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(enableInMainMenu, forKey: .enableInMainMenu) - try encoderContainer.encodeIfPresent(menuSection, forKey: .menuSection) - try encoderContainer.encodeIfPresent(menuIcon, forKey: .menuIcon) - try encoderContainer.encodeIfPresent(displayName, forKey: .displayName) - try encoderContainer.encodeIfPresent(pluginId, forKey: .pluginId) - } -} diff --git a/Sources/JellyfinAPI/Models/ConfigurationPageType.swift b/Sources/JellyfinAPI/Models/ConfigurationPageType.swift deleted file mode 100644 index bb295a547..000000000 --- a/Sources/JellyfinAPI/Models/ConfigurationPageType.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// ConfigurationPageType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum ConfigurationPageType. */ -public enum ConfigurationPageType: String, Codable, CaseIterable { - case pluginConfiguration = "PluginConfiguration" - case _none = "None" -} diff --git a/Sources/JellyfinAPI/Models/ContainerProfile.swift b/Sources/JellyfinAPI/Models/ContainerProfile.swift deleted file mode 100644 index 3f24a9d2f..000000000 --- a/Sources/JellyfinAPI/Models/ContainerProfile.swift +++ /dev/null @@ -1,39 +0,0 @@ -// -// ContainerProfile.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ContainerProfile: Codable, JSONEncodable, Hashable { - - public var type: DlnaProfileType? - public var conditions: [ProfileCondition]? - public var container: String? - - public init(type: DlnaProfileType? = nil, conditions: [ProfileCondition]? = nil, container: String? = nil) { - self.type = type - self.conditions = conditions - self.container = container - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case type = "Type" - case conditions = "Conditions" - case container = "Container" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(conditions, forKey: .conditions) - try encoderContainer.encodeIfPresent(container, forKey: .container) - } -} diff --git a/Sources/JellyfinAPI/Models/ControlResponse.swift b/Sources/JellyfinAPI/Models/ControlResponse.swift deleted file mode 100644 index 5c3c2aacb..000000000 --- a/Sources/JellyfinAPI/Models/ControlResponse.swift +++ /dev/null @@ -1,39 +0,0 @@ -// -// ControlResponse.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ControlResponse: Codable, JSONEncodable, Hashable { - - public var headers: [String: String]? - public var xml: String? - public var isSuccessful: Bool? - - public init(headers: [String: String]? = nil, xml: String? = nil, isSuccessful: Bool? = nil) { - self.headers = headers - self.xml = xml - self.isSuccessful = isSuccessful - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case headers = "Headers" - case xml = "Xml" - case isSuccessful = "IsSuccessful" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(headers, forKey: .headers) - try encoderContainer.encodeIfPresent(xml, forKey: .xml) - try encoderContainer.encodeIfPresent(isSuccessful, forKey: .isSuccessful) - } -} diff --git a/Sources/JellyfinAPI/Models/CountryInfo.swift b/Sources/JellyfinAPI/Models/CountryInfo.swift deleted file mode 100644 index 2d771ba3a..000000000 --- a/Sources/JellyfinAPI/Models/CountryInfo.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// CountryInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class CountryInfo. */ -public struct CountryInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the display name. */ - public var displayName: String? - /** Gets or sets the name of the two letter ISO region. */ - public var twoLetterISORegionName: String? - /** Gets or sets the name of the three letter ISO region. */ - public var threeLetterISORegionName: String? - - public init(name: String? = nil, displayName: String? = nil, twoLetterISORegionName: String? = nil, threeLetterISORegionName: String? = nil) { - self.name = name - self.displayName = displayName - self.twoLetterISORegionName = twoLetterISORegionName - self.threeLetterISORegionName = threeLetterISORegionName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case displayName = "DisplayName" - case twoLetterISORegionName = "TwoLetterISORegionName" - case threeLetterISORegionName = "ThreeLetterISORegionName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(displayName, forKey: .displayName) - try encoderContainer.encodeIfPresent(twoLetterISORegionName, forKey: .twoLetterISORegionName) - try encoderContainer.encodeIfPresent(threeLetterISORegionName, forKey: .threeLetterISORegionName) - } -} diff --git a/Sources/JellyfinAPI/Models/CreateAdminNotificationRequest.swift b/Sources/JellyfinAPI/Models/CreateAdminNotificationRequest.swift deleted file mode 100644 index 94d41c14c..000000000 --- a/Sources/JellyfinAPI/Models/CreateAdminNotificationRequest.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// CreateAdminNotificationRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The admin notification dto. */ -public struct CreateAdminNotificationRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the notification name. */ - public var name: String? - /** Gets or sets the notification description. */ - public var description: String? - /** Gets or sets the notification level. */ - public var notificationLevel: NotificationLevel? - /** Gets or sets the notification url. */ - public var url: String? - - public init(name: String? = nil, description: String? = nil, notificationLevel: NotificationLevel? = nil, url: String? = nil) { - self.name = name - self.description = description - self.notificationLevel = notificationLevel - self.url = url - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case description = "Description" - case notificationLevel = "NotificationLevel" - case url = "Url" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(description, forKey: .description) - try encoderContainer.encodeIfPresent(notificationLevel, forKey: .notificationLevel) - try encoderContainer.encodeIfPresent(url, forKey: .url) - } -} diff --git a/Sources/JellyfinAPI/Models/CreatePlaylistDto.swift b/Sources/JellyfinAPI/Models/CreatePlaylistDto.swift deleted file mode 100644 index bd11769b0..000000000 --- a/Sources/JellyfinAPI/Models/CreatePlaylistDto.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// CreatePlaylistDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Create new playlist dto. */ -public struct CreatePlaylistDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of the new playlist. */ - public var name: String? - /** Gets or sets item ids to add to the playlist. */ - public var ids: [String]? - /** Gets or sets the user id. */ - public var userId: String? - /** Gets or sets the media type. */ - public var mediaType: String? - - public init(name: String? = nil, ids: [String]? = nil, userId: String? = nil, mediaType: String? = nil) { - self.name = name - self.ids = ids - self.userId = userId - self.mediaType = mediaType - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case ids = "Ids" - case userId = "UserId" - case mediaType = "MediaType" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(ids, forKey: .ids) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(mediaType, forKey: .mediaType) - } -} diff --git a/Sources/JellyfinAPI/Models/CreatePlaylistRequest.swift b/Sources/JellyfinAPI/Models/CreatePlaylistRequest.swift deleted file mode 100644 index d588f2e09..000000000 --- a/Sources/JellyfinAPI/Models/CreatePlaylistRequest.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// CreatePlaylistRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Create new playlist dto. */ -public struct CreatePlaylistRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of the new playlist. */ - public var name: String? - /** Gets or sets item ids to add to the playlist. */ - public var ids: [String]? - /** Gets or sets the user id. */ - public var userId: String? - /** Gets or sets the media type. */ - public var mediaType: String? - - public init(name: String? = nil, ids: [String]? = nil, userId: String? = nil, mediaType: String? = nil) { - self.name = name - self.ids = ids - self.userId = userId - self.mediaType = mediaType - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case ids = "Ids" - case userId = "UserId" - case mediaType = "MediaType" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(ids, forKey: .ids) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(mediaType, forKey: .mediaType) - } -} diff --git a/Sources/JellyfinAPI/Models/CreateProfileRequest.swift b/Sources/JellyfinAPI/Models/CreateProfileRequest.swift deleted file mode 100644 index 87b662a68..000000000 --- a/Sources/JellyfinAPI/Models/CreateProfileRequest.swift +++ /dev/null @@ -1,222 +0,0 @@ -// -// CreateProfileRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. <br /> Specifically, it defines the supported <see cref=\"P:MediaBrowser.Model.Dlna.DeviceProfile.ContainerProfiles\">containers</see> and <see cref=\"P:MediaBrowser.Model.Dlna.DeviceProfile.CodecProfiles\">codecs</see> (video and/or audio, including codec profiles and levels) the device is able to direct play (without transcoding or remuxing), as well as which <see cref=\"P:MediaBrowser.Model.Dlna.DeviceProfile.TranscodingProfiles\">containers/codecs to transcode to</see> in case it isn't. */ -public struct CreateProfileRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of this device profile. */ - public var name: String? - /** Gets or sets the Id. */ - public var id: String? - public var identification: DeviceProfileIdentification? - /** Gets or sets the friendly name of the device profile, which can be shown to users. */ - public var friendlyName: String? - /** Gets or sets the manufacturer of the device which this profile represents. */ - public var manufacturer: String? - /** Gets or sets an url for the manufacturer of the device which this profile represents. */ - public var manufacturerUrl: String? - /** Gets or sets the model name of the device which this profile represents. */ - public var modelName: String? - /** Gets or sets the model description of the device which this profile represents. */ - public var modelDescription: String? - /** Gets or sets the model number of the device which this profile represents. */ - public var modelNumber: String? - /** Gets or sets the ModelUrl. */ - public var modelUrl: String? - /** Gets or sets the serial number of the device which this profile represents. */ - public var serialNumber: String? - /** Gets or sets a value indicating whether EnableAlbumArtInDidl. */ - public var enableAlbumArtInDidl: Bool? = false - /** Gets or sets a value indicating whether EnableSingleAlbumArtLimit. */ - public var enableSingleAlbumArtLimit: Bool? = false - /** Gets or sets a value indicating whether EnableSingleSubtitleLimit. */ - public var enableSingleSubtitleLimit: Bool? = false - /** Gets or sets the SupportedMediaTypes. */ - public var supportedMediaTypes: String? - /** Gets or sets the UserId. */ - public var userId: String? - /** Gets or sets the AlbumArtPn. */ - public var albumArtPn: String? - /** Gets or sets the MaxAlbumArtWidth. */ - public var maxAlbumArtWidth: Int? - /** Gets or sets the MaxAlbumArtHeight. */ - public var maxAlbumArtHeight: Int? - /** Gets or sets the maximum allowed width of embedded icons. */ - public var maxIconWidth: Int? - /** Gets or sets the maximum allowed height of embedded icons. */ - public var maxIconHeight: Int? - /** Gets or sets the maximum allowed bitrate for all streamed content. */ - public var maxStreamingBitrate: Int? - /** Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files). */ - public var maxStaticBitrate: Int? - /** Gets or sets the maximum allowed bitrate for transcoded music streams. */ - public var musicStreamingTranscodingBitrate: Int? - /** Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files. */ - public var maxStaticMusicBitrate: Int? - /** Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace. */ - public var sonyAggregationFlags: String? - /** Gets or sets the ProtocolInfo. */ - public var protocolInfo: String? - /** Gets or sets the TimelineOffsetSeconds. */ - public var timelineOffsetSeconds: Int? = 0 - /** Gets or sets a value indicating whether RequiresPlainVideoItems. */ - public var requiresPlainVideoItems: Bool? = false - /** Gets or sets a value indicating whether RequiresPlainFolders. */ - public var requiresPlainFolders: Bool? = false - /** Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar. */ - public var enableMSMediaReceiverRegistrar: Bool? = false - /** Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests. */ - public var ignoreTranscodeByteRangeRequests: Bool? = false - /** Gets or sets the XmlRootAttributes. */ - public var xmlRootAttributes: [XmlAttribute]? - /** Gets or sets the direct play profiles. */ - public var directPlayProfiles: [DirectPlayProfile]? - /** Gets or sets the transcoding profiles. */ - public var transcodingProfiles: [TranscodingProfile]? - /** Gets or sets the container profiles. */ - public var containerProfiles: [ContainerProfile]? - /** Gets or sets the codec profiles. */ - public var codecProfiles: [CodecProfile]? - /** Gets or sets the ResponseProfiles. */ - public var responseProfiles: [ResponseProfile]? - /** Gets or sets the subtitle profiles. */ - public var subtitleProfiles: [SubtitleProfile]? - - public init(name: String? = nil, id: String? = nil, identification: DeviceProfileIdentification? = nil, friendlyName: String? = nil, manufacturer: String? = nil, manufacturerUrl: String? = nil, modelName: String? = nil, modelDescription: String? = nil, modelNumber: String? = nil, modelUrl: String? = nil, serialNumber: String? = nil, enableAlbumArtInDidl: Bool? = false, enableSingleAlbumArtLimit: Bool? = false, enableSingleSubtitleLimit: Bool? = false, supportedMediaTypes: String? = nil, userId: String? = nil, albumArtPn: String? = nil, maxAlbumArtWidth: Int? = nil, maxAlbumArtHeight: Int? = nil, maxIconWidth: Int? = nil, maxIconHeight: Int? = nil, maxStreamingBitrate: Int? = nil, maxStaticBitrate: Int? = nil, musicStreamingTranscodingBitrate: Int? = nil, maxStaticMusicBitrate: Int? = nil, sonyAggregationFlags: String? = nil, protocolInfo: String? = nil, timelineOffsetSeconds: Int? = 0, requiresPlainVideoItems: Bool? = false, requiresPlainFolders: Bool? = false, enableMSMediaReceiverRegistrar: Bool? = false, ignoreTranscodeByteRangeRequests: Bool? = false, xmlRootAttributes: [XmlAttribute]? = nil, directPlayProfiles: [DirectPlayProfile]? = nil, transcodingProfiles: [TranscodingProfile]? = nil, containerProfiles: [ContainerProfile]? = nil, codecProfiles: [CodecProfile]? = nil, responseProfiles: [ResponseProfile]? = nil, subtitleProfiles: [SubtitleProfile]? = nil) { - self.name = name - self.id = id - self.identification = identification - self.friendlyName = friendlyName - self.manufacturer = manufacturer - self.manufacturerUrl = manufacturerUrl - self.modelName = modelName - self.modelDescription = modelDescription - self.modelNumber = modelNumber - self.modelUrl = modelUrl - self.serialNumber = serialNumber - self.enableAlbumArtInDidl = enableAlbumArtInDidl - self.enableSingleAlbumArtLimit = enableSingleAlbumArtLimit - self.enableSingleSubtitleLimit = enableSingleSubtitleLimit - self.supportedMediaTypes = supportedMediaTypes - self.userId = userId - self.albumArtPn = albumArtPn - self.maxAlbumArtWidth = maxAlbumArtWidth - self.maxAlbumArtHeight = maxAlbumArtHeight - self.maxIconWidth = maxIconWidth - self.maxIconHeight = maxIconHeight - self.maxStreamingBitrate = maxStreamingBitrate - self.maxStaticBitrate = maxStaticBitrate - self.musicStreamingTranscodingBitrate = musicStreamingTranscodingBitrate - self.maxStaticMusicBitrate = maxStaticMusicBitrate - self.sonyAggregationFlags = sonyAggregationFlags - self.protocolInfo = protocolInfo - self.timelineOffsetSeconds = timelineOffsetSeconds - self.requiresPlainVideoItems = requiresPlainVideoItems - self.requiresPlainFolders = requiresPlainFolders - self.enableMSMediaReceiverRegistrar = enableMSMediaReceiverRegistrar - self.ignoreTranscodeByteRangeRequests = ignoreTranscodeByteRangeRequests - self.xmlRootAttributes = xmlRootAttributes - self.directPlayProfiles = directPlayProfiles - self.transcodingProfiles = transcodingProfiles - self.containerProfiles = containerProfiles - self.codecProfiles = codecProfiles - self.responseProfiles = responseProfiles - self.subtitleProfiles = subtitleProfiles - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case id = "Id" - case identification = "Identification" - case friendlyName = "FriendlyName" - case manufacturer = "Manufacturer" - case manufacturerUrl = "ManufacturerUrl" - case modelName = "ModelName" - case modelDescription = "ModelDescription" - case modelNumber = "ModelNumber" - case modelUrl = "ModelUrl" - case serialNumber = "SerialNumber" - case enableAlbumArtInDidl = "EnableAlbumArtInDidl" - case enableSingleAlbumArtLimit = "EnableSingleAlbumArtLimit" - case enableSingleSubtitleLimit = "EnableSingleSubtitleLimit" - case supportedMediaTypes = "SupportedMediaTypes" - case userId = "UserId" - case albumArtPn = "AlbumArtPn" - case maxAlbumArtWidth = "MaxAlbumArtWidth" - case maxAlbumArtHeight = "MaxAlbumArtHeight" - case maxIconWidth = "MaxIconWidth" - case maxIconHeight = "MaxIconHeight" - case maxStreamingBitrate = "MaxStreamingBitrate" - case maxStaticBitrate = "MaxStaticBitrate" - case musicStreamingTranscodingBitrate = "MusicStreamingTranscodingBitrate" - case maxStaticMusicBitrate = "MaxStaticMusicBitrate" - case sonyAggregationFlags = "SonyAggregationFlags" - case protocolInfo = "ProtocolInfo" - case timelineOffsetSeconds = "TimelineOffsetSeconds" - case requiresPlainVideoItems = "RequiresPlainVideoItems" - case requiresPlainFolders = "RequiresPlainFolders" - case enableMSMediaReceiverRegistrar = "EnableMSMediaReceiverRegistrar" - case ignoreTranscodeByteRangeRequests = "IgnoreTranscodeByteRangeRequests" - case xmlRootAttributes = "XmlRootAttributes" - case directPlayProfiles = "DirectPlayProfiles" - case transcodingProfiles = "TranscodingProfiles" - case containerProfiles = "ContainerProfiles" - case codecProfiles = "CodecProfiles" - case responseProfiles = "ResponseProfiles" - case subtitleProfiles = "SubtitleProfiles" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(identification, forKey: .identification) - try encoderContainer.encodeIfPresent(friendlyName, forKey: .friendlyName) - try encoderContainer.encodeIfPresent(manufacturer, forKey: .manufacturer) - try encoderContainer.encodeIfPresent(manufacturerUrl, forKey: .manufacturerUrl) - try encoderContainer.encodeIfPresent(modelName, forKey: .modelName) - try encoderContainer.encodeIfPresent(modelDescription, forKey: .modelDescription) - try encoderContainer.encodeIfPresent(modelNumber, forKey: .modelNumber) - try encoderContainer.encodeIfPresent(modelUrl, forKey: .modelUrl) - try encoderContainer.encodeIfPresent(serialNumber, forKey: .serialNumber) - try encoderContainer.encodeIfPresent(enableAlbumArtInDidl, forKey: .enableAlbumArtInDidl) - try encoderContainer.encodeIfPresent(enableSingleAlbumArtLimit, forKey: .enableSingleAlbumArtLimit) - try encoderContainer.encodeIfPresent(enableSingleSubtitleLimit, forKey: .enableSingleSubtitleLimit) - try encoderContainer.encodeIfPresent(supportedMediaTypes, forKey: .supportedMediaTypes) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(albumArtPn, forKey: .albumArtPn) - try encoderContainer.encodeIfPresent(maxAlbumArtWidth, forKey: .maxAlbumArtWidth) - try encoderContainer.encodeIfPresent(maxAlbumArtHeight, forKey: .maxAlbumArtHeight) - try encoderContainer.encodeIfPresent(maxIconWidth, forKey: .maxIconWidth) - try encoderContainer.encodeIfPresent(maxIconHeight, forKey: .maxIconHeight) - try encoderContainer.encodeIfPresent(maxStreamingBitrate, forKey: .maxStreamingBitrate) - try encoderContainer.encodeIfPresent(maxStaticBitrate, forKey: .maxStaticBitrate) - try encoderContainer.encodeIfPresent(musicStreamingTranscodingBitrate, forKey: .musicStreamingTranscodingBitrate) - try encoderContainer.encodeIfPresent(maxStaticMusicBitrate, forKey: .maxStaticMusicBitrate) - try encoderContainer.encodeIfPresent(sonyAggregationFlags, forKey: .sonyAggregationFlags) - try encoderContainer.encodeIfPresent(protocolInfo, forKey: .protocolInfo) - try encoderContainer.encodeIfPresent(timelineOffsetSeconds, forKey: .timelineOffsetSeconds) - try encoderContainer.encodeIfPresent(requiresPlainVideoItems, forKey: .requiresPlainVideoItems) - try encoderContainer.encodeIfPresent(requiresPlainFolders, forKey: .requiresPlainFolders) - try encoderContainer.encodeIfPresent(enableMSMediaReceiverRegistrar, forKey: .enableMSMediaReceiverRegistrar) - try encoderContainer.encodeIfPresent(ignoreTranscodeByteRangeRequests, forKey: .ignoreTranscodeByteRangeRequests) - try encoderContainer.encodeIfPresent(xmlRootAttributes, forKey: .xmlRootAttributes) - try encoderContainer.encodeIfPresent(directPlayProfiles, forKey: .directPlayProfiles) - try encoderContainer.encodeIfPresent(transcodingProfiles, forKey: .transcodingProfiles) - try encoderContainer.encodeIfPresent(containerProfiles, forKey: .containerProfiles) - try encoderContainer.encodeIfPresent(codecProfiles, forKey: .codecProfiles) - try encoderContainer.encodeIfPresent(responseProfiles, forKey: .responseProfiles) - try encoderContainer.encodeIfPresent(subtitleProfiles, forKey: .subtitleProfiles) - } -} diff --git a/Sources/JellyfinAPI/Models/CreateSeriesTimerRequest.swift b/Sources/JellyfinAPI/Models/CreateSeriesTimerRequest.swift deleted file mode 100644 index 891cf2e26..000000000 --- a/Sources/JellyfinAPI/Models/CreateSeriesTimerRequest.swift +++ /dev/null @@ -1,198 +0,0 @@ -// -// CreateSeriesTimerRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SeriesTimerInfoDto. */ -public struct CreateSeriesTimerRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the Id of the recording. */ - public var id: String? - public var type: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the external identifier. */ - public var externalId: String? - /** Gets or sets the channel id of the recording. */ - public var channelId: String? - /** Gets or sets the external channel identifier. */ - public var externalChannelId: String? - /** Gets or sets the channel name of the recording. */ - public var channelName: String? - public var channelPrimaryImageTag: String? - /** Gets or sets the program identifier. */ - public var programId: String? - /** Gets or sets the external program identifier. */ - public var externalProgramId: String? - /** Gets or sets the name of the recording. */ - public var name: String? - /** Gets or sets the description of the recording. */ - public var overview: String? - /** Gets or sets the start date of the recording, in UTC. */ - public var startDate: Date? - /** Gets or sets the end date of the recording, in UTC. */ - public var endDate: Date? - /** Gets or sets the name of the service. */ - public var serviceName: String? - /** Gets or sets the priority. */ - public var priority: Int? - /** Gets or sets the pre padding seconds. */ - public var prePaddingSeconds: Int? - /** Gets or sets the post padding seconds. */ - public var postPaddingSeconds: Int? - /** Gets or sets a value indicating whether this instance is pre padding required. */ - public var isPrePaddingRequired: Bool? - /** Gets or sets the Id of the Parent that has a backdrop if the item does not have one. */ - public var parentBackdropItemId: String? - /** Gets or sets the parent backdrop image tags. */ - public var parentBackdropImageTags: [String]? - /** Gets or sets a value indicating whether this instance is post padding required. */ - public var isPostPaddingRequired: Bool? - public var keepUntil: KeepUntil? - /** Gets or sets a value indicating whether [record any time]. */ - public var recordAnyTime: Bool? - public var skipEpisodesInLibrary: Bool? - /** Gets or sets a value indicating whether [record any channel]. */ - public var recordAnyChannel: Bool? - public var keepUpTo: Int? - /** Gets or sets a value indicating whether [record new only]. */ - public var recordNewOnly: Bool? - /** Gets or sets the days. */ - public var days: [DayOfWeek]? - /** Gets or sets the day pattern. */ - public var dayPattern: DayPattern? - /** Gets or sets the image tags. */ - public var imageTags: [String: String]? - /** Gets or sets the parent thumb item id. */ - public var parentThumbItemId: String? - /** Gets or sets the parent thumb image tag. */ - public var parentThumbImageTag: String? - /** Gets or sets the parent primary image item identifier. */ - public var parentPrimaryImageItemId: String? - /** Gets or sets the parent primary image tag. */ - public var parentPrimaryImageTag: String? - - public init(id: String? = nil, type: String? = nil, serverId: String? = nil, externalId: String? = nil, channelId: String? = nil, externalChannelId: String? = nil, channelName: String? = nil, channelPrimaryImageTag: String? = nil, programId: String? = nil, externalProgramId: String? = nil, name: String? = nil, overview: String? = nil, startDate: Date? = nil, endDate: Date? = nil, serviceName: String? = nil, priority: Int? = nil, prePaddingSeconds: Int? = nil, postPaddingSeconds: Int? = nil, isPrePaddingRequired: Bool? = nil, parentBackdropItemId: String? = nil, parentBackdropImageTags: [String]? = nil, isPostPaddingRequired: Bool? = nil, keepUntil: KeepUntil? = nil, recordAnyTime: Bool? = nil, skipEpisodesInLibrary: Bool? = nil, recordAnyChannel: Bool? = nil, keepUpTo: Int? = nil, recordNewOnly: Bool? = nil, days: [DayOfWeek]? = nil, dayPattern: DayPattern? = nil, imageTags: [String: String]? = nil, parentThumbItemId: String? = nil, parentThumbImageTag: String? = nil, parentPrimaryImageItemId: String? = nil, parentPrimaryImageTag: String? = nil) { - self.id = id - self.type = type - self.serverId = serverId - self.externalId = externalId - self.channelId = channelId - self.externalChannelId = externalChannelId - self.channelName = channelName - self.channelPrimaryImageTag = channelPrimaryImageTag - self.programId = programId - self.externalProgramId = externalProgramId - self.name = name - self.overview = overview - self.startDate = startDate - self.endDate = endDate - self.serviceName = serviceName - self.priority = priority - self.prePaddingSeconds = prePaddingSeconds - self.postPaddingSeconds = postPaddingSeconds - self.isPrePaddingRequired = isPrePaddingRequired - self.parentBackdropItemId = parentBackdropItemId - self.parentBackdropImageTags = parentBackdropImageTags - self.isPostPaddingRequired = isPostPaddingRequired - self.keepUntil = keepUntil - self.recordAnyTime = recordAnyTime - self.skipEpisodesInLibrary = skipEpisodesInLibrary - self.recordAnyChannel = recordAnyChannel - self.keepUpTo = keepUpTo - self.recordNewOnly = recordNewOnly - self.days = days - self.dayPattern = dayPattern - self.imageTags = imageTags - self.parentThumbItemId = parentThumbItemId - self.parentThumbImageTag = parentThumbImageTag - self.parentPrimaryImageItemId = parentPrimaryImageItemId - self.parentPrimaryImageTag = parentPrimaryImageTag - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case type = "Type" - case serverId = "ServerId" - case externalId = "ExternalId" - case channelId = "ChannelId" - case externalChannelId = "ExternalChannelId" - case channelName = "ChannelName" - case channelPrimaryImageTag = "ChannelPrimaryImageTag" - case programId = "ProgramId" - case externalProgramId = "ExternalProgramId" - case name = "Name" - case overview = "Overview" - case startDate = "StartDate" - case endDate = "EndDate" - case serviceName = "ServiceName" - case priority = "Priority" - case prePaddingSeconds = "PrePaddingSeconds" - case postPaddingSeconds = "PostPaddingSeconds" - case isPrePaddingRequired = "IsPrePaddingRequired" - case parentBackdropItemId = "ParentBackdropItemId" - case parentBackdropImageTags = "ParentBackdropImageTags" - case isPostPaddingRequired = "IsPostPaddingRequired" - case keepUntil = "KeepUntil" - case recordAnyTime = "RecordAnyTime" - case skipEpisodesInLibrary = "SkipEpisodesInLibrary" - case recordAnyChannel = "RecordAnyChannel" - case keepUpTo = "KeepUpTo" - case recordNewOnly = "RecordNewOnly" - case days = "Days" - case dayPattern = "DayPattern" - case imageTags = "ImageTags" - case parentThumbItemId = "ParentThumbItemId" - case parentThumbImageTag = "ParentThumbImageTag" - case parentPrimaryImageItemId = "ParentPrimaryImageItemId" - case parentPrimaryImageTag = "ParentPrimaryImageTag" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(externalId, forKey: .externalId) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(externalChannelId, forKey: .externalChannelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(channelPrimaryImageTag, forKey: .channelPrimaryImageTag) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - try encoderContainer.encodeIfPresent(externalProgramId, forKey: .externalProgramId) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(serviceName, forKey: .serviceName) - try encoderContainer.encodeIfPresent(priority, forKey: .priority) - try encoderContainer.encodeIfPresent(prePaddingSeconds, forKey: .prePaddingSeconds) - try encoderContainer.encodeIfPresent(postPaddingSeconds, forKey: .postPaddingSeconds) - try encoderContainer.encodeIfPresent(isPrePaddingRequired, forKey: .isPrePaddingRequired) - try encoderContainer.encodeIfPresent(parentBackdropItemId, forKey: .parentBackdropItemId) - try encoderContainer.encodeIfPresent(parentBackdropImageTags, forKey: .parentBackdropImageTags) - try encoderContainer.encodeIfPresent(isPostPaddingRequired, forKey: .isPostPaddingRequired) - try encoderContainer.encodeIfPresent(keepUntil, forKey: .keepUntil) - try encoderContainer.encodeIfPresent(recordAnyTime, forKey: .recordAnyTime) - try encoderContainer.encodeIfPresent(skipEpisodesInLibrary, forKey: .skipEpisodesInLibrary) - try encoderContainer.encodeIfPresent(recordAnyChannel, forKey: .recordAnyChannel) - try encoderContainer.encodeIfPresent(keepUpTo, forKey: .keepUpTo) - try encoderContainer.encodeIfPresent(recordNewOnly, forKey: .recordNewOnly) - try encoderContainer.encodeIfPresent(days, forKey: .days) - try encoderContainer.encodeIfPresent(dayPattern, forKey: .dayPattern) - try encoderContainer.encodeIfPresent(imageTags, forKey: .imageTags) - try encoderContainer.encodeIfPresent(parentThumbItemId, forKey: .parentThumbItemId) - try encoderContainer.encodeIfPresent(parentThumbImageTag, forKey: .parentThumbImageTag) - try encoderContainer.encodeIfPresent(parentPrimaryImageItemId, forKey: .parentPrimaryImageItemId) - try encoderContainer.encodeIfPresent(parentPrimaryImageTag, forKey: .parentPrimaryImageTag) - } -} diff --git a/Sources/JellyfinAPI/Models/CreateTimerRequest.swift b/Sources/JellyfinAPI/Models/CreateTimerRequest.swift deleted file mode 100644 index 642b06523..000000000 --- a/Sources/JellyfinAPI/Models/CreateTimerRequest.swift +++ /dev/null @@ -1,163 +0,0 @@ -// -// CreateTimerRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct CreateTimerRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the Id of the recording. */ - public var id: String? - public var type: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the external identifier. */ - public var externalId: String? - /** Gets or sets the channel id of the recording. */ - public var channelId: String? - /** Gets or sets the external channel identifier. */ - public var externalChannelId: String? - /** Gets or sets the channel name of the recording. */ - public var channelName: String? - public var channelPrimaryImageTag: String? - /** Gets or sets the program identifier. */ - public var programId: String? - /** Gets or sets the external program identifier. */ - public var externalProgramId: String? - /** Gets or sets the name of the recording. */ - public var name: String? - /** Gets or sets the description of the recording. */ - public var overview: String? - /** Gets or sets the start date of the recording, in UTC. */ - public var startDate: Date? - /** Gets or sets the end date of the recording, in UTC. */ - public var endDate: Date? - /** Gets or sets the name of the service. */ - public var serviceName: String? - /** Gets or sets the priority. */ - public var priority: Int? - /** Gets or sets the pre padding seconds. */ - public var prePaddingSeconds: Int? - /** Gets or sets the post padding seconds. */ - public var postPaddingSeconds: Int? - /** Gets or sets a value indicating whether this instance is pre padding required. */ - public var isPrePaddingRequired: Bool? - /** Gets or sets the Id of the Parent that has a backdrop if the item does not have one. */ - public var parentBackdropItemId: String? - /** Gets or sets the parent backdrop image tags. */ - public var parentBackdropImageTags: [String]? - /** Gets or sets a value indicating whether this instance is post padding required. */ - public var isPostPaddingRequired: Bool? - public var keepUntil: KeepUntil? - /** Gets or sets the status. */ - public var status: RecordingStatus? - /** Gets or sets the series timer identifier. */ - public var seriesTimerId: String? - /** Gets or sets the external series timer identifier. */ - public var externalSeriesTimerId: String? - /** Gets or sets the run time ticks. */ - public var runTimeTicks: Int64? - public var programInfo: TimerInfoDtoProgramInfo? - - public init(id: String? = nil, type: String? = nil, serverId: String? = nil, externalId: String? = nil, channelId: String? = nil, externalChannelId: String? = nil, channelName: String? = nil, channelPrimaryImageTag: String? = nil, programId: String? = nil, externalProgramId: String? = nil, name: String? = nil, overview: String? = nil, startDate: Date? = nil, endDate: Date? = nil, serviceName: String? = nil, priority: Int? = nil, prePaddingSeconds: Int? = nil, postPaddingSeconds: Int? = nil, isPrePaddingRequired: Bool? = nil, parentBackdropItemId: String? = nil, parentBackdropImageTags: [String]? = nil, isPostPaddingRequired: Bool? = nil, keepUntil: KeepUntil? = nil, status: RecordingStatus? = nil, seriesTimerId: String? = nil, externalSeriesTimerId: String? = nil, runTimeTicks: Int64? = nil, programInfo: TimerInfoDtoProgramInfo? = nil) { - self.id = id - self.type = type - self.serverId = serverId - self.externalId = externalId - self.channelId = channelId - self.externalChannelId = externalChannelId - self.channelName = channelName - self.channelPrimaryImageTag = channelPrimaryImageTag - self.programId = programId - self.externalProgramId = externalProgramId - self.name = name - self.overview = overview - self.startDate = startDate - self.endDate = endDate - self.serviceName = serviceName - self.priority = priority - self.prePaddingSeconds = prePaddingSeconds - self.postPaddingSeconds = postPaddingSeconds - self.isPrePaddingRequired = isPrePaddingRequired - self.parentBackdropItemId = parentBackdropItemId - self.parentBackdropImageTags = parentBackdropImageTags - self.isPostPaddingRequired = isPostPaddingRequired - self.keepUntil = keepUntil - self.status = status - self.seriesTimerId = seriesTimerId - self.externalSeriesTimerId = externalSeriesTimerId - self.runTimeTicks = runTimeTicks - self.programInfo = programInfo - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case type = "Type" - case serverId = "ServerId" - case externalId = "ExternalId" - case channelId = "ChannelId" - case externalChannelId = "ExternalChannelId" - case channelName = "ChannelName" - case channelPrimaryImageTag = "ChannelPrimaryImageTag" - case programId = "ProgramId" - case externalProgramId = "ExternalProgramId" - case name = "Name" - case overview = "Overview" - case startDate = "StartDate" - case endDate = "EndDate" - case serviceName = "ServiceName" - case priority = "Priority" - case prePaddingSeconds = "PrePaddingSeconds" - case postPaddingSeconds = "PostPaddingSeconds" - case isPrePaddingRequired = "IsPrePaddingRequired" - case parentBackdropItemId = "ParentBackdropItemId" - case parentBackdropImageTags = "ParentBackdropImageTags" - case isPostPaddingRequired = "IsPostPaddingRequired" - case keepUntil = "KeepUntil" - case status = "Status" - case seriesTimerId = "SeriesTimerId" - case externalSeriesTimerId = "ExternalSeriesTimerId" - case runTimeTicks = "RunTimeTicks" - case programInfo = "ProgramInfo" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(externalId, forKey: .externalId) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(externalChannelId, forKey: .externalChannelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(channelPrimaryImageTag, forKey: .channelPrimaryImageTag) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - try encoderContainer.encodeIfPresent(externalProgramId, forKey: .externalProgramId) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(serviceName, forKey: .serviceName) - try encoderContainer.encodeIfPresent(priority, forKey: .priority) - try encoderContainer.encodeIfPresent(prePaddingSeconds, forKey: .prePaddingSeconds) - try encoderContainer.encodeIfPresent(postPaddingSeconds, forKey: .postPaddingSeconds) - try encoderContainer.encodeIfPresent(isPrePaddingRequired, forKey: .isPrePaddingRequired) - try encoderContainer.encodeIfPresent(parentBackdropItemId, forKey: .parentBackdropItemId) - try encoderContainer.encodeIfPresent(parentBackdropImageTags, forKey: .parentBackdropImageTags) - try encoderContainer.encodeIfPresent(isPostPaddingRequired, forKey: .isPostPaddingRequired) - try encoderContainer.encodeIfPresent(keepUntil, forKey: .keepUntil) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(seriesTimerId, forKey: .seriesTimerId) - try encoderContainer.encodeIfPresent(externalSeriesTimerId, forKey: .externalSeriesTimerId) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(programInfo, forKey: .programInfo) - } -} diff --git a/Sources/JellyfinAPI/Models/CreateUserByName.swift b/Sources/JellyfinAPI/Models/CreateUserByName.swift deleted file mode 100644 index 7317e4412..000000000 --- a/Sources/JellyfinAPI/Models/CreateUserByName.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// CreateUserByName.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The create user by name request body. */ -public struct CreateUserByName: Codable, JSONEncodable, Hashable { - - /** Gets or sets the username. */ - public var name: String? - /** Gets or sets the password. */ - public var password: String? - - public init(name: String? = nil, password: String? = nil) { - self.name = name - self.password = password - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case password = "Password" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(password, forKey: .password) - } -} diff --git a/Sources/JellyfinAPI/Models/CreateUserByNameRequest.swift b/Sources/JellyfinAPI/Models/CreateUserByNameRequest.swift deleted file mode 100644 index 1b18f55b0..000000000 --- a/Sources/JellyfinAPI/Models/CreateUserByNameRequest.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// CreateUserByNameRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The create user by name request body. */ -public struct CreateUserByNameRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the username. */ - public var name: String? - /** Gets or sets the password. */ - public var password: String? - - public init(name: String? = nil, password: String? = nil) { - self.name = name - self.password = password - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case password = "Password" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(password, forKey: .password) - } -} diff --git a/Sources/JellyfinAPI/Models/CultureDto.swift b/Sources/JellyfinAPI/Models/CultureDto.swift deleted file mode 100644 index bcc5558e3..000000000 --- a/Sources/JellyfinAPI/Models/CultureDto.swift +++ /dev/null @@ -1,52 +0,0 @@ -// -// CultureDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class CultureDto. */ -public struct CultureDto: Codable, JSONEncodable, Hashable { - - /** Gets the name. */ - public var name: String? - /** Gets the display name. */ - public var displayName: String? - /** Gets the name of the two letter ISO language. */ - public var twoLetterISOLanguageName: String? - /** Gets the name of the three letter ISO language. */ - public var threeLetterISOLanguageName: String? - public var threeLetterISOLanguageNames: [String]? - - public init(name: String? = nil, displayName: String? = nil, twoLetterISOLanguageName: String? = nil, threeLetterISOLanguageName: String? = nil, threeLetterISOLanguageNames: [String]? = nil) { - self.name = name - self.displayName = displayName - self.twoLetterISOLanguageName = twoLetterISOLanguageName - self.threeLetterISOLanguageName = threeLetterISOLanguageName - self.threeLetterISOLanguageNames = threeLetterISOLanguageNames - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case displayName = "DisplayName" - case twoLetterISOLanguageName = "TwoLetterISOLanguageName" - case threeLetterISOLanguageName = "ThreeLetterISOLanguageName" - case threeLetterISOLanguageNames = "ThreeLetterISOLanguageNames" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(displayName, forKey: .displayName) - try encoderContainer.encodeIfPresent(twoLetterISOLanguageName, forKey: .twoLetterISOLanguageName) - try encoderContainer.encodeIfPresent(threeLetterISOLanguageName, forKey: .threeLetterISOLanguageName) - try encoderContainer.encodeIfPresent(threeLetterISOLanguageNames, forKey: .threeLetterISOLanguageNames) - } -} diff --git a/Sources/JellyfinAPI/Models/DayOfWeek.swift b/Sources/JellyfinAPI/Models/DayOfWeek.swift deleted file mode 100644 index e08f350fb..000000000 --- a/Sources/JellyfinAPI/Models/DayOfWeek.swift +++ /dev/null @@ -1,21 +0,0 @@ -// -// DayOfWeek.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum DayOfWeek: String, Codable, CaseIterable { - case sunday = "Sunday" - case monday = "Monday" - case tuesday = "Tuesday" - case wednesday = "Wednesday" - case thursday = "Thursday" - case friday = "Friday" - case saturday = "Saturday" -} diff --git a/Sources/JellyfinAPI/Models/DayPattern.swift b/Sources/JellyfinAPI/Models/DayPattern.swift deleted file mode 100644 index fcadc1192..000000000 --- a/Sources/JellyfinAPI/Models/DayPattern.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// DayPattern.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum DayPattern: String, Codable, CaseIterable { - case daily = "Daily" - case weekdays = "Weekdays" - case weekends = "Weekends" -} diff --git a/Sources/JellyfinAPI/Models/DefaultDirectoryBrowserInfoDto.swift b/Sources/JellyfinAPI/Models/DefaultDirectoryBrowserInfoDto.swift deleted file mode 100644 index 947561f74..000000000 --- a/Sources/JellyfinAPI/Models/DefaultDirectoryBrowserInfoDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// DefaultDirectoryBrowserInfoDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Default directory browser info. */ -public struct DefaultDirectoryBrowserInfoDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the path. */ - public var path: String? - - public init(path: String? = nil) { - self.path = path - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case path = "Path" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(path, forKey: .path) - } -} diff --git a/Sources/JellyfinAPI/Models/DeviceIdentification.swift b/Sources/JellyfinAPI/Models/DeviceIdentification.swift deleted file mode 100644 index 598846695..000000000 --- a/Sources/JellyfinAPI/Models/DeviceIdentification.swift +++ /dev/null @@ -1,72 +0,0 @@ -// -// DeviceIdentification.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct DeviceIdentification: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of the friendly. */ - public var friendlyName: String? - /** Gets or sets the model number. */ - public var modelNumber: String? - /** Gets or sets the serial number. */ - public var serialNumber: String? - /** Gets or sets the name of the model. */ - public var modelName: String? - /** Gets or sets the model description. */ - public var modelDescription: String? - /** Gets or sets the model URL. */ - public var modelUrl: String? - /** Gets or sets the manufacturer. */ - public var manufacturer: String? - /** Gets or sets the manufacturer URL. */ - public var manufacturerUrl: String? - /** Gets or sets the headers. */ - public var headers: [HttpHeaderInfo]? - - public init(friendlyName: String? = nil, modelNumber: String? = nil, serialNumber: String? = nil, modelName: String? = nil, modelDescription: String? = nil, modelUrl: String? = nil, manufacturer: String? = nil, manufacturerUrl: String? = nil, headers: [HttpHeaderInfo]? = nil) { - self.friendlyName = friendlyName - self.modelNumber = modelNumber - self.serialNumber = serialNumber - self.modelName = modelName - self.modelDescription = modelDescription - self.modelUrl = modelUrl - self.manufacturer = manufacturer - self.manufacturerUrl = manufacturerUrl - self.headers = headers - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case friendlyName = "FriendlyName" - case modelNumber = "ModelNumber" - case serialNumber = "SerialNumber" - case modelName = "ModelName" - case modelDescription = "ModelDescription" - case modelUrl = "ModelUrl" - case manufacturer = "Manufacturer" - case manufacturerUrl = "ManufacturerUrl" - case headers = "Headers" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(friendlyName, forKey: .friendlyName) - try encoderContainer.encodeIfPresent(modelNumber, forKey: .modelNumber) - try encoderContainer.encodeIfPresent(serialNumber, forKey: .serialNumber) - try encoderContainer.encodeIfPresent(modelName, forKey: .modelName) - try encoderContainer.encodeIfPresent(modelDescription, forKey: .modelDescription) - try encoderContainer.encodeIfPresent(modelUrl, forKey: .modelUrl) - try encoderContainer.encodeIfPresent(manufacturer, forKey: .manufacturer) - try encoderContainer.encodeIfPresent(manufacturerUrl, forKey: .manufacturerUrl) - try encoderContainer.encodeIfPresent(headers, forKey: .headers) - } -} diff --git a/Sources/JellyfinAPI/Models/DeviceInfo.swift b/Sources/JellyfinAPI/Models/DeviceInfo.swift deleted file mode 100644 index 1363c120c..000000000 --- a/Sources/JellyfinAPI/Models/DeviceInfo.swift +++ /dev/null @@ -1,74 +0,0 @@ -// -// DeviceInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct DeviceInfo: Codable, JSONEncodable, Hashable { - - public var name: String? - /** Gets or sets the access token. */ - public var accessToken: String? - /** Gets or sets the identifier. */ - public var id: String? - /** Gets or sets the last name of the user. */ - public var lastUserName: String? - /** Gets or sets the name of the application. */ - public var appName: String? - /** Gets or sets the application version. */ - public var appVersion: String? - /** Gets or sets the last user identifier. */ - public var lastUserId: String? - /** Gets or sets the date last modified. */ - public var dateLastActivity: Date? - public var capabilities: DeviceInfoCapabilities? - public var iconUrl: String? - - public init(name: String? = nil, accessToken: String? = nil, id: String? = nil, lastUserName: String? = nil, appName: String? = nil, appVersion: String? = nil, lastUserId: String? = nil, dateLastActivity: Date? = nil, capabilities: DeviceInfoCapabilities? = nil, iconUrl: String? = nil) { - self.name = name - self.accessToken = accessToken - self.id = id - self.lastUserName = lastUserName - self.appName = appName - self.appVersion = appVersion - self.lastUserId = lastUserId - self.dateLastActivity = dateLastActivity - self.capabilities = capabilities - self.iconUrl = iconUrl - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case accessToken = "AccessToken" - case id = "Id" - case lastUserName = "LastUserName" - case appName = "AppName" - case appVersion = "AppVersion" - case lastUserId = "LastUserId" - case dateLastActivity = "DateLastActivity" - case capabilities = "Capabilities" - case iconUrl = "IconUrl" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(accessToken, forKey: .accessToken) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(lastUserName, forKey: .lastUserName) - try encoderContainer.encodeIfPresent(appName, forKey: .appName) - try encoderContainer.encodeIfPresent(appVersion, forKey: .appVersion) - try encoderContainer.encodeIfPresent(lastUserId, forKey: .lastUserId) - try encoderContainer.encodeIfPresent(dateLastActivity, forKey: .dateLastActivity) - try encoderContainer.encodeIfPresent(capabilities, forKey: .capabilities) - try encoderContainer.encodeIfPresent(iconUrl, forKey: .iconUrl) - } -} diff --git a/Sources/JellyfinAPI/Models/DeviceInfoCapabilities.swift b/Sources/JellyfinAPI/Models/DeviceInfoCapabilities.swift deleted file mode 100644 index ee8385261..000000000 --- a/Sources/JellyfinAPI/Models/DeviceInfoCapabilities.swift +++ /dev/null @@ -1,68 +0,0 @@ -// -// DeviceInfoCapabilities.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the capabilities. */ -public struct DeviceInfoCapabilities: Codable, JSONEncodable, Hashable { - - public var playableMediaTypes: [String]? - public var supportedCommands: [GeneralCommandType]? - public var supportsMediaControl: Bool? - public var supportsContentUploading: Bool? - public var messageCallbackUrl: String? - public var supportsPersistentIdentifier: Bool? - public var supportsSync: Bool? - public var deviceProfile: ClientCapabilitiesDeviceProfile? - public var appStoreUrl: String? - public var iconUrl: String? - - public init(playableMediaTypes: [String]? = nil, supportedCommands: [GeneralCommandType]? = nil, supportsMediaControl: Bool? = nil, supportsContentUploading: Bool? = nil, messageCallbackUrl: String? = nil, supportsPersistentIdentifier: Bool? = nil, supportsSync: Bool? = nil, deviceProfile: ClientCapabilitiesDeviceProfile? = nil, appStoreUrl: String? = nil, iconUrl: String? = nil) { - self.playableMediaTypes = playableMediaTypes - self.supportedCommands = supportedCommands - self.supportsMediaControl = supportsMediaControl - self.supportsContentUploading = supportsContentUploading - self.messageCallbackUrl = messageCallbackUrl - self.supportsPersistentIdentifier = supportsPersistentIdentifier - self.supportsSync = supportsSync - self.deviceProfile = deviceProfile - self.appStoreUrl = appStoreUrl - self.iconUrl = iconUrl - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playableMediaTypes = "PlayableMediaTypes" - case supportedCommands = "SupportedCommands" - case supportsMediaControl = "SupportsMediaControl" - case supportsContentUploading = "SupportsContentUploading" - case messageCallbackUrl = "MessageCallbackUrl" - case supportsPersistentIdentifier = "SupportsPersistentIdentifier" - case supportsSync = "SupportsSync" - case deviceProfile = "DeviceProfile" - case appStoreUrl = "AppStoreUrl" - case iconUrl = "IconUrl" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playableMediaTypes, forKey: .playableMediaTypes) - try encoderContainer.encodeIfPresent(supportedCommands, forKey: .supportedCommands) - try encoderContainer.encodeIfPresent(supportsMediaControl, forKey: .supportsMediaControl) - try encoderContainer.encodeIfPresent(supportsContentUploading, forKey: .supportsContentUploading) - try encoderContainer.encodeIfPresent(messageCallbackUrl, forKey: .messageCallbackUrl) - try encoderContainer.encodeIfPresent(supportsPersistentIdentifier, forKey: .supportsPersistentIdentifier) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(deviceProfile, forKey: .deviceProfile) - try encoderContainer.encodeIfPresent(appStoreUrl, forKey: .appStoreUrl) - try encoderContainer.encodeIfPresent(iconUrl, forKey: .iconUrl) - } -} diff --git a/Sources/JellyfinAPI/Models/DeviceInfoQueryResult.swift b/Sources/JellyfinAPI/Models/DeviceInfoQueryResult.swift deleted file mode 100644 index 3ef2d59b7..000000000 --- a/Sources/JellyfinAPI/Models/DeviceInfoQueryResult.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// DeviceInfoQueryResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct DeviceInfoQueryResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the items. */ - public var items: [DeviceInfo]? - /** Gets or sets the total number of records available. */ - public var totalRecordCount: Int? - /** Gets or sets the index of the first record in Items. */ - public var startIndex: Int? - - public init(items: [DeviceInfo]? = nil, totalRecordCount: Int? = nil, startIndex: Int? = nil) { - self.items = items - self.totalRecordCount = totalRecordCount - self.startIndex = startIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case items = "Items" - case totalRecordCount = "TotalRecordCount" - case startIndex = "StartIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(items, forKey: .items) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/DeviceOptions.swift b/Sources/JellyfinAPI/Models/DeviceOptions.swift deleted file mode 100644 index d90e036c4..000000000 --- a/Sources/JellyfinAPI/Models/DeviceOptions.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// DeviceOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** An entity representing custom options for a device. */ -public struct DeviceOptions: Codable, JSONEncodable, Hashable { - - /** Gets the id. */ - public var id: Int? - /** Gets the device id. */ - public var deviceId: String? - /** Gets or sets the custom name. */ - public var customName: String? - - public init(id: Int? = nil, deviceId: String? = nil, customName: String? = nil) { - self.id = id - self.deviceId = deviceId - self.customName = customName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case deviceId = "DeviceId" - case customName = "CustomName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(deviceId, forKey: .deviceId) - try encoderContainer.encodeIfPresent(customName, forKey: .customName) - } -} diff --git a/Sources/JellyfinAPI/Models/DeviceOptionsDto.swift b/Sources/JellyfinAPI/Models/DeviceOptionsDto.swift deleted file mode 100644 index d716a6e76..000000000 --- a/Sources/JellyfinAPI/Models/DeviceOptionsDto.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// DeviceOptionsDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** A dto representing custom options for a device. */ -public struct DeviceOptionsDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the id. */ - public var id: Int? - /** Gets or sets the device id. */ - public var deviceId: String? - /** Gets or sets the custom name. */ - public var customName: String? - - public init(id: Int? = nil, deviceId: String? = nil, customName: String? = nil) { - self.id = id - self.deviceId = deviceId - self.customName = customName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case deviceId = "DeviceId" - case customName = "CustomName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(deviceId, forKey: .deviceId) - try encoderContainer.encodeIfPresent(customName, forKey: .customName) - } -} diff --git a/Sources/JellyfinAPI/Models/DeviceProfile.swift b/Sources/JellyfinAPI/Models/DeviceProfile.swift deleted file mode 100644 index 8629afa85..000000000 --- a/Sources/JellyfinAPI/Models/DeviceProfile.swift +++ /dev/null @@ -1,222 +0,0 @@ -// -// DeviceProfile.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. <br /> Specifically, it defines the supported <see cref=\"P:MediaBrowser.Model.Dlna.DeviceProfile.ContainerProfiles\">containers</see> and <see cref=\"P:MediaBrowser.Model.Dlna.DeviceProfile.CodecProfiles\">codecs</see> (video and/or audio, including codec profiles and levels) the device is able to direct play (without transcoding or remuxing), as well as which <see cref=\"P:MediaBrowser.Model.Dlna.DeviceProfile.TranscodingProfiles\">containers/codecs to transcode to</see> in case it isn't. */ -public struct DeviceProfile: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of this device profile. */ - public var name: String? - /** Gets or sets the Id. */ - public var id: String? - public var identification: DeviceProfileIdentification? - /** Gets or sets the friendly name of the device profile, which can be shown to users. */ - public var friendlyName: String? - /** Gets or sets the manufacturer of the device which this profile represents. */ - public var manufacturer: String? - /** Gets or sets an url for the manufacturer of the device which this profile represents. */ - public var manufacturerUrl: String? - /** Gets or sets the model name of the device which this profile represents. */ - public var modelName: String? - /** Gets or sets the model description of the device which this profile represents. */ - public var modelDescription: String? - /** Gets or sets the model number of the device which this profile represents. */ - public var modelNumber: String? - /** Gets or sets the ModelUrl. */ - public var modelUrl: String? - /** Gets or sets the serial number of the device which this profile represents. */ - public var serialNumber: String? - /** Gets or sets a value indicating whether EnableAlbumArtInDidl. */ - public var enableAlbumArtInDidl: Bool? = false - /** Gets or sets a value indicating whether EnableSingleAlbumArtLimit. */ - public var enableSingleAlbumArtLimit: Bool? = false - /** Gets or sets a value indicating whether EnableSingleSubtitleLimit. */ - public var enableSingleSubtitleLimit: Bool? = false - /** Gets or sets the SupportedMediaTypes. */ - public var supportedMediaTypes: String? - /** Gets or sets the UserId. */ - public var userId: String? - /** Gets or sets the AlbumArtPn. */ - public var albumArtPn: String? - /** Gets or sets the MaxAlbumArtWidth. */ - public var maxAlbumArtWidth: Int? - /** Gets or sets the MaxAlbumArtHeight. */ - public var maxAlbumArtHeight: Int? - /** Gets or sets the maximum allowed width of embedded icons. */ - public var maxIconWidth: Int? - /** Gets or sets the maximum allowed height of embedded icons. */ - public var maxIconHeight: Int? - /** Gets or sets the maximum allowed bitrate for all streamed content. */ - public var maxStreamingBitrate: Int? - /** Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files). */ - public var maxStaticBitrate: Int? - /** Gets or sets the maximum allowed bitrate for transcoded music streams. */ - public var musicStreamingTranscodingBitrate: Int? - /** Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files. */ - public var maxStaticMusicBitrate: Int? - /** Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace. */ - public var sonyAggregationFlags: String? - /** Gets or sets the ProtocolInfo. */ - public var protocolInfo: String? - /** Gets or sets the TimelineOffsetSeconds. */ - public var timelineOffsetSeconds: Int? = 0 - /** Gets or sets a value indicating whether RequiresPlainVideoItems. */ - public var requiresPlainVideoItems: Bool? = false - /** Gets or sets a value indicating whether RequiresPlainFolders. */ - public var requiresPlainFolders: Bool? = false - /** Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar. */ - public var enableMSMediaReceiverRegistrar: Bool? = false - /** Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests. */ - public var ignoreTranscodeByteRangeRequests: Bool? = false - /** Gets or sets the XmlRootAttributes. */ - public var xmlRootAttributes: [XmlAttribute]? - /** Gets or sets the direct play profiles. */ - public var directPlayProfiles: [DirectPlayProfile]? - /** Gets or sets the transcoding profiles. */ - public var transcodingProfiles: [TranscodingProfile]? - /** Gets or sets the container profiles. */ - public var containerProfiles: [ContainerProfile]? - /** Gets or sets the codec profiles. */ - public var codecProfiles: [CodecProfile]? - /** Gets or sets the ResponseProfiles. */ - public var responseProfiles: [ResponseProfile]? - /** Gets or sets the subtitle profiles. */ - public var subtitleProfiles: [SubtitleProfile]? - - public init(name: String? = nil, id: String? = nil, identification: DeviceProfileIdentification? = nil, friendlyName: String? = nil, manufacturer: String? = nil, manufacturerUrl: String? = nil, modelName: String? = nil, modelDescription: String? = nil, modelNumber: String? = nil, modelUrl: String? = nil, serialNumber: String? = nil, enableAlbumArtInDidl: Bool? = false, enableSingleAlbumArtLimit: Bool? = false, enableSingleSubtitleLimit: Bool? = false, supportedMediaTypes: String? = nil, userId: String? = nil, albumArtPn: String? = nil, maxAlbumArtWidth: Int? = nil, maxAlbumArtHeight: Int? = nil, maxIconWidth: Int? = nil, maxIconHeight: Int? = nil, maxStreamingBitrate: Int? = nil, maxStaticBitrate: Int? = nil, musicStreamingTranscodingBitrate: Int? = nil, maxStaticMusicBitrate: Int? = nil, sonyAggregationFlags: String? = nil, protocolInfo: String? = nil, timelineOffsetSeconds: Int? = 0, requiresPlainVideoItems: Bool? = false, requiresPlainFolders: Bool? = false, enableMSMediaReceiverRegistrar: Bool? = false, ignoreTranscodeByteRangeRequests: Bool? = false, xmlRootAttributes: [XmlAttribute]? = nil, directPlayProfiles: [DirectPlayProfile]? = nil, transcodingProfiles: [TranscodingProfile]? = nil, containerProfiles: [ContainerProfile]? = nil, codecProfiles: [CodecProfile]? = nil, responseProfiles: [ResponseProfile]? = nil, subtitleProfiles: [SubtitleProfile]? = nil) { - self.name = name - self.id = id - self.identification = identification - self.friendlyName = friendlyName - self.manufacturer = manufacturer - self.manufacturerUrl = manufacturerUrl - self.modelName = modelName - self.modelDescription = modelDescription - self.modelNumber = modelNumber - self.modelUrl = modelUrl - self.serialNumber = serialNumber - self.enableAlbumArtInDidl = enableAlbumArtInDidl - self.enableSingleAlbumArtLimit = enableSingleAlbumArtLimit - self.enableSingleSubtitleLimit = enableSingleSubtitleLimit - self.supportedMediaTypes = supportedMediaTypes - self.userId = userId - self.albumArtPn = albumArtPn - self.maxAlbumArtWidth = maxAlbumArtWidth - self.maxAlbumArtHeight = maxAlbumArtHeight - self.maxIconWidth = maxIconWidth - self.maxIconHeight = maxIconHeight - self.maxStreamingBitrate = maxStreamingBitrate - self.maxStaticBitrate = maxStaticBitrate - self.musicStreamingTranscodingBitrate = musicStreamingTranscodingBitrate - self.maxStaticMusicBitrate = maxStaticMusicBitrate - self.sonyAggregationFlags = sonyAggregationFlags - self.protocolInfo = protocolInfo - self.timelineOffsetSeconds = timelineOffsetSeconds - self.requiresPlainVideoItems = requiresPlainVideoItems - self.requiresPlainFolders = requiresPlainFolders - self.enableMSMediaReceiverRegistrar = enableMSMediaReceiverRegistrar - self.ignoreTranscodeByteRangeRequests = ignoreTranscodeByteRangeRequests - self.xmlRootAttributes = xmlRootAttributes - self.directPlayProfiles = directPlayProfiles - self.transcodingProfiles = transcodingProfiles - self.containerProfiles = containerProfiles - self.codecProfiles = codecProfiles - self.responseProfiles = responseProfiles - self.subtitleProfiles = subtitleProfiles - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case id = "Id" - case identification = "Identification" - case friendlyName = "FriendlyName" - case manufacturer = "Manufacturer" - case manufacturerUrl = "ManufacturerUrl" - case modelName = "ModelName" - case modelDescription = "ModelDescription" - case modelNumber = "ModelNumber" - case modelUrl = "ModelUrl" - case serialNumber = "SerialNumber" - case enableAlbumArtInDidl = "EnableAlbumArtInDidl" - case enableSingleAlbumArtLimit = "EnableSingleAlbumArtLimit" - case enableSingleSubtitleLimit = "EnableSingleSubtitleLimit" - case supportedMediaTypes = "SupportedMediaTypes" - case userId = "UserId" - case albumArtPn = "AlbumArtPn" - case maxAlbumArtWidth = "MaxAlbumArtWidth" - case maxAlbumArtHeight = "MaxAlbumArtHeight" - case maxIconWidth = "MaxIconWidth" - case maxIconHeight = "MaxIconHeight" - case maxStreamingBitrate = "MaxStreamingBitrate" - case maxStaticBitrate = "MaxStaticBitrate" - case musicStreamingTranscodingBitrate = "MusicStreamingTranscodingBitrate" - case maxStaticMusicBitrate = "MaxStaticMusicBitrate" - case sonyAggregationFlags = "SonyAggregationFlags" - case protocolInfo = "ProtocolInfo" - case timelineOffsetSeconds = "TimelineOffsetSeconds" - case requiresPlainVideoItems = "RequiresPlainVideoItems" - case requiresPlainFolders = "RequiresPlainFolders" - case enableMSMediaReceiverRegistrar = "EnableMSMediaReceiverRegistrar" - case ignoreTranscodeByteRangeRequests = "IgnoreTranscodeByteRangeRequests" - case xmlRootAttributes = "XmlRootAttributes" - case directPlayProfiles = "DirectPlayProfiles" - case transcodingProfiles = "TranscodingProfiles" - case containerProfiles = "ContainerProfiles" - case codecProfiles = "CodecProfiles" - case responseProfiles = "ResponseProfiles" - case subtitleProfiles = "SubtitleProfiles" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(identification, forKey: .identification) - try encoderContainer.encodeIfPresent(friendlyName, forKey: .friendlyName) - try encoderContainer.encodeIfPresent(manufacturer, forKey: .manufacturer) - try encoderContainer.encodeIfPresent(manufacturerUrl, forKey: .manufacturerUrl) - try encoderContainer.encodeIfPresent(modelName, forKey: .modelName) - try encoderContainer.encodeIfPresent(modelDescription, forKey: .modelDescription) - try encoderContainer.encodeIfPresent(modelNumber, forKey: .modelNumber) - try encoderContainer.encodeIfPresent(modelUrl, forKey: .modelUrl) - try encoderContainer.encodeIfPresent(serialNumber, forKey: .serialNumber) - try encoderContainer.encodeIfPresent(enableAlbumArtInDidl, forKey: .enableAlbumArtInDidl) - try encoderContainer.encodeIfPresent(enableSingleAlbumArtLimit, forKey: .enableSingleAlbumArtLimit) - try encoderContainer.encodeIfPresent(enableSingleSubtitleLimit, forKey: .enableSingleSubtitleLimit) - try encoderContainer.encodeIfPresent(supportedMediaTypes, forKey: .supportedMediaTypes) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(albumArtPn, forKey: .albumArtPn) - try encoderContainer.encodeIfPresent(maxAlbumArtWidth, forKey: .maxAlbumArtWidth) - try encoderContainer.encodeIfPresent(maxAlbumArtHeight, forKey: .maxAlbumArtHeight) - try encoderContainer.encodeIfPresent(maxIconWidth, forKey: .maxIconWidth) - try encoderContainer.encodeIfPresent(maxIconHeight, forKey: .maxIconHeight) - try encoderContainer.encodeIfPresent(maxStreamingBitrate, forKey: .maxStreamingBitrate) - try encoderContainer.encodeIfPresent(maxStaticBitrate, forKey: .maxStaticBitrate) - try encoderContainer.encodeIfPresent(musicStreamingTranscodingBitrate, forKey: .musicStreamingTranscodingBitrate) - try encoderContainer.encodeIfPresent(maxStaticMusicBitrate, forKey: .maxStaticMusicBitrate) - try encoderContainer.encodeIfPresent(sonyAggregationFlags, forKey: .sonyAggregationFlags) - try encoderContainer.encodeIfPresent(protocolInfo, forKey: .protocolInfo) - try encoderContainer.encodeIfPresent(timelineOffsetSeconds, forKey: .timelineOffsetSeconds) - try encoderContainer.encodeIfPresent(requiresPlainVideoItems, forKey: .requiresPlainVideoItems) - try encoderContainer.encodeIfPresent(requiresPlainFolders, forKey: .requiresPlainFolders) - try encoderContainer.encodeIfPresent(enableMSMediaReceiverRegistrar, forKey: .enableMSMediaReceiverRegistrar) - try encoderContainer.encodeIfPresent(ignoreTranscodeByteRangeRequests, forKey: .ignoreTranscodeByteRangeRequests) - try encoderContainer.encodeIfPresent(xmlRootAttributes, forKey: .xmlRootAttributes) - try encoderContainer.encodeIfPresent(directPlayProfiles, forKey: .directPlayProfiles) - try encoderContainer.encodeIfPresent(transcodingProfiles, forKey: .transcodingProfiles) - try encoderContainer.encodeIfPresent(containerProfiles, forKey: .containerProfiles) - try encoderContainer.encodeIfPresent(codecProfiles, forKey: .codecProfiles) - try encoderContainer.encodeIfPresent(responseProfiles, forKey: .responseProfiles) - try encoderContainer.encodeIfPresent(subtitleProfiles, forKey: .subtitleProfiles) - } -} diff --git a/Sources/JellyfinAPI/Models/DeviceProfileIdentification.swift b/Sources/JellyfinAPI/Models/DeviceProfileIdentification.swift deleted file mode 100644 index 899a70c5d..000000000 --- a/Sources/JellyfinAPI/Models/DeviceProfileIdentification.swift +++ /dev/null @@ -1,73 +0,0 @@ -// -// DeviceProfileIdentification.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the Identification. */ -public struct DeviceProfileIdentification: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of the friendly. */ - public var friendlyName: String? - /** Gets or sets the model number. */ - public var modelNumber: String? - /** Gets or sets the serial number. */ - public var serialNumber: String? - /** Gets or sets the name of the model. */ - public var modelName: String? - /** Gets or sets the model description. */ - public var modelDescription: String? - /** Gets or sets the model URL. */ - public var modelUrl: String? - /** Gets or sets the manufacturer. */ - public var manufacturer: String? - /** Gets or sets the manufacturer URL. */ - public var manufacturerUrl: String? - /** Gets or sets the headers. */ - public var headers: [HttpHeaderInfo]? - - public init(friendlyName: String? = nil, modelNumber: String? = nil, serialNumber: String? = nil, modelName: String? = nil, modelDescription: String? = nil, modelUrl: String? = nil, manufacturer: String? = nil, manufacturerUrl: String? = nil, headers: [HttpHeaderInfo]? = nil) { - self.friendlyName = friendlyName - self.modelNumber = modelNumber - self.serialNumber = serialNumber - self.modelName = modelName - self.modelDescription = modelDescription - self.modelUrl = modelUrl - self.manufacturer = manufacturer - self.manufacturerUrl = manufacturerUrl - self.headers = headers - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case friendlyName = "FriendlyName" - case modelNumber = "ModelNumber" - case serialNumber = "SerialNumber" - case modelName = "ModelName" - case modelDescription = "ModelDescription" - case modelUrl = "ModelUrl" - case manufacturer = "Manufacturer" - case manufacturerUrl = "ManufacturerUrl" - case headers = "Headers" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(friendlyName, forKey: .friendlyName) - try encoderContainer.encodeIfPresent(modelNumber, forKey: .modelNumber) - try encoderContainer.encodeIfPresent(serialNumber, forKey: .serialNumber) - try encoderContainer.encodeIfPresent(modelName, forKey: .modelName) - try encoderContainer.encodeIfPresent(modelDescription, forKey: .modelDescription) - try encoderContainer.encodeIfPresent(modelUrl, forKey: .modelUrl) - try encoderContainer.encodeIfPresent(manufacturer, forKey: .manufacturer) - try encoderContainer.encodeIfPresent(manufacturerUrl, forKey: .manufacturerUrl) - try encoderContainer.encodeIfPresent(headers, forKey: .headers) - } -} diff --git a/Sources/JellyfinAPI/Models/DeviceProfileInfo.swift b/Sources/JellyfinAPI/Models/DeviceProfileInfo.swift deleted file mode 100644 index e571f22e8..000000000 --- a/Sources/JellyfinAPI/Models/DeviceProfileInfo.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// DeviceProfileInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct DeviceProfileInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the identifier. */ - public var id: String? - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the type. */ - public var type: DeviceProfileType? - - public init(id: String? = nil, name: String? = nil, type: DeviceProfileType? = nil) { - self.id = id - self.name = name - self.type = type - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case name = "Name" - case type = "Type" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(type, forKey: .type) - } -} diff --git a/Sources/JellyfinAPI/Models/DeviceProfileType.swift b/Sources/JellyfinAPI/Models/DeviceProfileType.swift deleted file mode 100644 index 9c5440ab9..000000000 --- a/Sources/JellyfinAPI/Models/DeviceProfileType.swift +++ /dev/null @@ -1,16 +0,0 @@ -// -// DeviceProfileType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum DeviceProfileType: String, Codable, CaseIterable { - case system = "System" - case user = "User" -} diff --git a/Sources/JellyfinAPI/Models/DirectPlayProfile.swift b/Sources/JellyfinAPI/Models/DirectPlayProfile.swift deleted file mode 100644 index c1aca2485..000000000 --- a/Sources/JellyfinAPI/Models/DirectPlayProfile.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// DirectPlayProfile.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct DirectPlayProfile: Codable, JSONEncodable, Hashable { - - public var container: String? - public var audioCodec: String? - public var videoCodec: String? - public var type: DlnaProfileType? - - public init(container: String? = nil, audioCodec: String? = nil, videoCodec: String? = nil, type: DlnaProfileType? = nil) { - self.container = container - self.audioCodec = audioCodec - self.videoCodec = videoCodec - self.type = type - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case container = "Container" - case audioCodec = "AudioCodec" - case videoCodec = "VideoCodec" - case type = "Type" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(audioCodec, forKey: .audioCodec) - try encoderContainer.encodeIfPresent(videoCodec, forKey: .videoCodec) - try encoderContainer.encodeIfPresent(type, forKey: .type) - } -} diff --git a/Sources/JellyfinAPI/Models/DisplayPreferencesDto.swift b/Sources/JellyfinAPI/Models/DisplayPreferencesDto.swift deleted file mode 100644 index 8b0c192bb..000000000 --- a/Sources/JellyfinAPI/Models/DisplayPreferencesDto.swift +++ /dev/null @@ -1,98 +0,0 @@ -// -// DisplayPreferencesDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Defines the display preferences for any item that supports them (usually Folders). */ -public struct DisplayPreferencesDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the user id. */ - public var id: String? - /** Gets or sets the type of the view. */ - public var viewType: String? - /** Gets or sets the sort by. */ - public var sortBy: String? - /** Gets or sets the index by. */ - public var indexBy: String? - /** Gets or sets a value indicating whether [remember indexing]. */ - public var rememberIndexing: Bool? - /** Gets or sets the height of the primary image. */ - public var primaryImageHeight: Int? - /** Gets or sets the width of the primary image. */ - public var primaryImageWidth: Int? - /** Gets or sets the custom prefs. */ - public var customPrefs: [String: String]? - /** An enum representing the axis that should be scrolled. */ - public var scrollDirection: ScrollDirection? - /** Gets or sets a value indicating whether to show backdrops on this item. */ - public var showBackdrop: Bool? - /** Gets or sets a value indicating whether [remember sorting]. */ - public var rememberSorting: Bool? - /** An enum representing the sorting order. */ - public var sortOrder: SortOrder? - /** Gets or sets a value indicating whether [show sidebar]. */ - public var showSidebar: Bool? - /** Gets or sets the client. */ - public var client: String? - - public init(id: String? = nil, viewType: String? = nil, sortBy: String? = nil, indexBy: String? = nil, rememberIndexing: Bool? = nil, primaryImageHeight: Int? = nil, primaryImageWidth: Int? = nil, customPrefs: [String: String]? = nil, scrollDirection: ScrollDirection? = nil, showBackdrop: Bool? = nil, rememberSorting: Bool? = nil, sortOrder: SortOrder? = nil, showSidebar: Bool? = nil, client: String? = nil) { - self.id = id - self.viewType = viewType - self.sortBy = sortBy - self.indexBy = indexBy - self.rememberIndexing = rememberIndexing - self.primaryImageHeight = primaryImageHeight - self.primaryImageWidth = primaryImageWidth - self.customPrefs = customPrefs - self.scrollDirection = scrollDirection - self.showBackdrop = showBackdrop - self.rememberSorting = rememberSorting - self.sortOrder = sortOrder - self.showSidebar = showSidebar - self.client = client - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case viewType = "ViewType" - case sortBy = "SortBy" - case indexBy = "IndexBy" - case rememberIndexing = "RememberIndexing" - case primaryImageHeight = "PrimaryImageHeight" - case primaryImageWidth = "PrimaryImageWidth" - case customPrefs = "CustomPrefs" - case scrollDirection = "ScrollDirection" - case showBackdrop = "ShowBackdrop" - case rememberSorting = "RememberSorting" - case sortOrder = "SortOrder" - case showSidebar = "ShowSidebar" - case client = "Client" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(viewType, forKey: .viewType) - try encoderContainer.encodeIfPresent(sortBy, forKey: .sortBy) - try encoderContainer.encodeIfPresent(indexBy, forKey: .indexBy) - try encoderContainer.encodeIfPresent(rememberIndexing, forKey: .rememberIndexing) - try encoderContainer.encodeIfPresent(primaryImageHeight, forKey: .primaryImageHeight) - try encoderContainer.encodeIfPresent(primaryImageWidth, forKey: .primaryImageWidth) - try encoderContainer.encodeIfPresent(customPrefs, forKey: .customPrefs) - try encoderContainer.encodeIfPresent(scrollDirection, forKey: .scrollDirection) - try encoderContainer.encodeIfPresent(showBackdrop, forKey: .showBackdrop) - try encoderContainer.encodeIfPresent(rememberSorting, forKey: .rememberSorting) - try encoderContainer.encodeIfPresent(sortOrder, forKey: .sortOrder) - try encoderContainer.encodeIfPresent(showSidebar, forKey: .showSidebar) - try encoderContainer.encodeIfPresent(client, forKey: .client) - } -} diff --git a/Sources/JellyfinAPI/Models/DlnaOptions.swift b/Sources/JellyfinAPI/Models/DlnaOptions.swift deleted file mode 100644 index ee84e4882..000000000 --- a/Sources/JellyfinAPI/Models/DlnaOptions.swift +++ /dev/null @@ -1,83 +0,0 @@ -// -// DlnaOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The DlnaOptions class contains the user definable parameters for the dlna subsystems. */ -public struct DlnaOptions: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna playTo subsystem. */ - public var enablePlayTo: Bool? - /** Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna server subsystem. */ - public var enableServer: Bool? - /** Gets or sets a value indicating whether detailed dlna server logs are sent to the console/log. If the setting \"Emby.Dlna\": \"Debug\" msut be set in logging.default.json for this property to work. */ - public var enableDebugLog: Bool? - /** Gets or sets a value indicating whether whether detailed playTo debug logs are sent to the console/log. If the setting \"Emby.Dlna.PlayTo\": \"Debug\" msut be set in logging.default.json for this property to work. */ - public var enablePlayToTracing: Bool? - /** Gets or sets the ssdp client discovery interval time (in seconds). This is the time after which the server will send a ssdp search request. */ - public var clientDiscoveryIntervalSeconds: Int? - /** Gets or sets the frequency at which ssdp alive notifications are transmitted. */ - public var aliveMessageIntervalSeconds: Int? - /** Gets or sets the frequency at which ssdp alive notifications are transmitted. MIGRATING - TO BE REMOVED ONCE WEB HAS BEEN ALTERED. */ - public var blastAliveMessageIntervalSeconds: Int? - /** Gets or sets the default user account that the dlna server uses. */ - public var defaultUserId: String? - /** Gets or sets a value indicating whether playTo device profiles should be created. */ - public var autoCreatePlayToProfiles: Bool? - /** Gets or sets a value indicating whether to blast alive messages. */ - public var blastAliveMessages: Bool? - /** gets or sets a value indicating whether to send only matched host. */ - public var sendOnlyMatchedHost: Bool? - - public init(enablePlayTo: Bool? = nil, enableServer: Bool? = nil, enableDebugLog: Bool? = nil, enablePlayToTracing: Bool? = nil, clientDiscoveryIntervalSeconds: Int? = nil, aliveMessageIntervalSeconds: Int? = nil, blastAliveMessageIntervalSeconds: Int? = nil, defaultUserId: String? = nil, autoCreatePlayToProfiles: Bool? = nil, blastAliveMessages: Bool? = nil, sendOnlyMatchedHost: Bool? = nil) { - self.enablePlayTo = enablePlayTo - self.enableServer = enableServer - self.enableDebugLog = enableDebugLog - self.enablePlayToTracing = enablePlayToTracing - self.clientDiscoveryIntervalSeconds = clientDiscoveryIntervalSeconds - self.aliveMessageIntervalSeconds = aliveMessageIntervalSeconds - self.blastAliveMessageIntervalSeconds = blastAliveMessageIntervalSeconds - self.defaultUserId = defaultUserId - self.autoCreatePlayToProfiles = autoCreatePlayToProfiles - self.blastAliveMessages = blastAliveMessages - self.sendOnlyMatchedHost = sendOnlyMatchedHost - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case enablePlayTo = "EnablePlayTo" - case enableServer = "EnableServer" - case enableDebugLog = "EnableDebugLog" - case enablePlayToTracing = "EnablePlayToTracing" - case clientDiscoveryIntervalSeconds = "ClientDiscoveryIntervalSeconds" - case aliveMessageIntervalSeconds = "AliveMessageIntervalSeconds" - case blastAliveMessageIntervalSeconds = "BlastAliveMessageIntervalSeconds" - case defaultUserId = "DefaultUserId" - case autoCreatePlayToProfiles = "AutoCreatePlayToProfiles" - case blastAliveMessages = "BlastAliveMessages" - case sendOnlyMatchedHost = "SendOnlyMatchedHost" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(enablePlayTo, forKey: .enablePlayTo) - try encoderContainer.encodeIfPresent(enableServer, forKey: .enableServer) - try encoderContainer.encodeIfPresent(enableDebugLog, forKey: .enableDebugLog) - try encoderContainer.encodeIfPresent(enablePlayToTracing, forKey: .enablePlayToTracing) - try encoderContainer.encodeIfPresent(clientDiscoveryIntervalSeconds, forKey: .clientDiscoveryIntervalSeconds) - try encoderContainer.encodeIfPresent(aliveMessageIntervalSeconds, forKey: .aliveMessageIntervalSeconds) - try encoderContainer.encodeIfPresent(blastAliveMessageIntervalSeconds, forKey: .blastAliveMessageIntervalSeconds) - try encoderContainer.encodeIfPresent(defaultUserId, forKey: .defaultUserId) - try encoderContainer.encodeIfPresent(autoCreatePlayToProfiles, forKey: .autoCreatePlayToProfiles) - try encoderContainer.encodeIfPresent(blastAliveMessages, forKey: .blastAliveMessages) - try encoderContainer.encodeIfPresent(sendOnlyMatchedHost, forKey: .sendOnlyMatchedHost) - } -} diff --git a/Sources/JellyfinAPI/Models/DlnaProfileType.swift b/Sources/JellyfinAPI/Models/DlnaProfileType.swift deleted file mode 100644 index 109570318..000000000 --- a/Sources/JellyfinAPI/Models/DlnaProfileType.swift +++ /dev/null @@ -1,18 +0,0 @@ -// -// DlnaProfileType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum DlnaProfileType: String, Codable, CaseIterable { - case audio = "Audio" - case video = "Video" - case photo = "Photo" - case subtitle = "Subtitle" -} diff --git a/Sources/JellyfinAPI/Models/DynamicDayOfWeek.swift b/Sources/JellyfinAPI/Models/DynamicDayOfWeek.swift deleted file mode 100644 index a83a8f440..000000000 --- a/Sources/JellyfinAPI/Models/DynamicDayOfWeek.swift +++ /dev/null @@ -1,25 +0,0 @@ -// -// DynamicDayOfWeek.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** An enum that represents a day of the week, weekdays, weekends, or all days. */ -public enum DynamicDayOfWeek: String, Codable, CaseIterable { - case sunday = "Sunday" - case monday = "Monday" - case tuesday = "Tuesday" - case wednesday = "Wednesday" - case thursday = "Thursday" - case friday = "Friday" - case saturday = "Saturday" - case everyday = "Everyday" - case weekday = "Weekday" - case weekend = "Weekend" -} diff --git a/Sources/JellyfinAPI/Models/EmbeddedSubtitleOptions.swift b/Sources/JellyfinAPI/Models/EmbeddedSubtitleOptions.swift deleted file mode 100644 index 5797568d9..000000000 --- a/Sources/JellyfinAPI/Models/EmbeddedSubtitleOptions.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// EmbeddedSubtitleOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** An enum representing the options to disable embedded subs. */ -public enum EmbeddedSubtitleOptions: String, Codable, CaseIterable { - case allowAll = "AllowAll" - case allowText = "AllowText" - case allowImage = "AllowImage" - case allowNone = "AllowNone" -} diff --git a/Sources/JellyfinAPI/Models/EncodingContext.swift b/Sources/JellyfinAPI/Models/EncodingContext.swift deleted file mode 100644 index 3eb02bbc7..000000000 --- a/Sources/JellyfinAPI/Models/EncodingContext.swift +++ /dev/null @@ -1,16 +0,0 @@ -// -// EncodingContext.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum EncodingContext: String, Codable, CaseIterable { - case streaming = "Streaming" - case _static = "Static" -} diff --git a/Sources/JellyfinAPI/Models/EncodingOptions.swift b/Sources/JellyfinAPI/Models/EncodingOptions.swift deleted file mode 100644 index ebc18a730..000000000 --- a/Sources/JellyfinAPI/Models/EncodingOptions.swift +++ /dev/null @@ -1,173 +0,0 @@ -// -// EncodingOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct EncodingOptions: Codable, JSONEncodable, Hashable { - - public var encodingThreadCount: Int? - public var transcodingTempPath: String? - public var fallbackFontPath: String? - public var enableFallbackFont: Bool? - public var downMixAudioBoost: Double? - public var maxMuxingQueueSize: Int? - public var enableThrottling: Bool? - public var throttleDelaySeconds: Int? - public var hardwareAccelerationType: String? - /** Gets or sets the FFmpeg path as set by the user via the UI. */ - public var encoderAppPath: String? - /** Gets or sets the current FFmpeg path being used by the system and displayed on the transcode page. */ - public var encoderAppPathDisplay: String? - public var vaapiDevice: String? - public var enableTonemapping: Bool? - public var enableVppTonemapping: Bool? - public var tonemappingAlgorithm: String? - public var tonemappingRange: String? - public var tonemappingDesat: Double? - public var tonemappingThreshold: Double? - public var tonemappingPeak: Double? - public var tonemappingParam: Double? - public var h264Crf: Int? - public var h265Crf: Int? - public var encoderPreset: String? - public var deinterlaceDoubleRate: Bool? - public var deinterlaceMethod: String? - public var enableDecodingColorDepth10Hevc: Bool? - public var enableDecodingColorDepth10Vp9: Bool? - public var enableEnhancedNvdecDecoder: Bool? - public var preferSystemNativeHwDecoder: Bool? - public var enableIntelLowPowerH264HwEncoder: Bool? - public var enableIntelLowPowerHevcHwEncoder: Bool? - public var enableHardwareEncoding: Bool? - public var allowHevcEncoding: Bool? - public var enableSubtitleExtraction: Bool? - public var hardwareDecodingCodecs: [String]? - public var allowOnDemandMetadataBasedKeyframeExtractionForExtensions: [String]? - - public init(encodingThreadCount: Int? = nil, transcodingTempPath: String? = nil, fallbackFontPath: String? = nil, enableFallbackFont: Bool? = nil, downMixAudioBoost: Double? = nil, maxMuxingQueueSize: Int? = nil, enableThrottling: Bool? = nil, throttleDelaySeconds: Int? = nil, hardwareAccelerationType: String? = nil, encoderAppPath: String? = nil, encoderAppPathDisplay: String? = nil, vaapiDevice: String? = nil, enableTonemapping: Bool? = nil, enableVppTonemapping: Bool? = nil, tonemappingAlgorithm: String? = nil, tonemappingRange: String? = nil, tonemappingDesat: Double? = nil, tonemappingThreshold: Double? = nil, tonemappingPeak: Double? = nil, tonemappingParam: Double? = nil, h264Crf: Int? = nil, h265Crf: Int? = nil, encoderPreset: String? = nil, deinterlaceDoubleRate: Bool? = nil, deinterlaceMethod: String? = nil, enableDecodingColorDepth10Hevc: Bool? = nil, enableDecodingColorDepth10Vp9: Bool? = nil, enableEnhancedNvdecDecoder: Bool? = nil, preferSystemNativeHwDecoder: Bool? = nil, enableIntelLowPowerH264HwEncoder: Bool? = nil, enableIntelLowPowerHevcHwEncoder: Bool? = nil, enableHardwareEncoding: Bool? = nil, allowHevcEncoding: Bool? = nil, enableSubtitleExtraction: Bool? = nil, hardwareDecodingCodecs: [String]? = nil, allowOnDemandMetadataBasedKeyframeExtractionForExtensions: [String]? = nil) { - self.encodingThreadCount = encodingThreadCount - self.transcodingTempPath = transcodingTempPath - self.fallbackFontPath = fallbackFontPath - self.enableFallbackFont = enableFallbackFont - self.downMixAudioBoost = downMixAudioBoost - self.maxMuxingQueueSize = maxMuxingQueueSize - self.enableThrottling = enableThrottling - self.throttleDelaySeconds = throttleDelaySeconds - self.hardwareAccelerationType = hardwareAccelerationType - self.encoderAppPath = encoderAppPath - self.encoderAppPathDisplay = encoderAppPathDisplay - self.vaapiDevice = vaapiDevice - self.enableTonemapping = enableTonemapping - self.enableVppTonemapping = enableVppTonemapping - self.tonemappingAlgorithm = tonemappingAlgorithm - self.tonemappingRange = tonemappingRange - self.tonemappingDesat = tonemappingDesat - self.tonemappingThreshold = tonemappingThreshold - self.tonemappingPeak = tonemappingPeak - self.tonemappingParam = tonemappingParam - self.h264Crf = h264Crf - self.h265Crf = h265Crf - self.encoderPreset = encoderPreset - self.deinterlaceDoubleRate = deinterlaceDoubleRate - self.deinterlaceMethod = deinterlaceMethod - self.enableDecodingColorDepth10Hevc = enableDecodingColorDepth10Hevc - self.enableDecodingColorDepth10Vp9 = enableDecodingColorDepth10Vp9 - self.enableEnhancedNvdecDecoder = enableEnhancedNvdecDecoder - self.preferSystemNativeHwDecoder = preferSystemNativeHwDecoder - self.enableIntelLowPowerH264HwEncoder = enableIntelLowPowerH264HwEncoder - self.enableIntelLowPowerHevcHwEncoder = enableIntelLowPowerHevcHwEncoder - self.enableHardwareEncoding = enableHardwareEncoding - self.allowHevcEncoding = allowHevcEncoding - self.enableSubtitleExtraction = enableSubtitleExtraction - self.hardwareDecodingCodecs = hardwareDecodingCodecs - self.allowOnDemandMetadataBasedKeyframeExtractionForExtensions = allowOnDemandMetadataBasedKeyframeExtractionForExtensions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case encodingThreadCount = "EncodingThreadCount" - case transcodingTempPath = "TranscodingTempPath" - case fallbackFontPath = "FallbackFontPath" - case enableFallbackFont = "EnableFallbackFont" - case downMixAudioBoost = "DownMixAudioBoost" - case maxMuxingQueueSize = "MaxMuxingQueueSize" - case enableThrottling = "EnableThrottling" - case throttleDelaySeconds = "ThrottleDelaySeconds" - case hardwareAccelerationType = "HardwareAccelerationType" - case encoderAppPath = "EncoderAppPath" - case encoderAppPathDisplay = "EncoderAppPathDisplay" - case vaapiDevice = "VaapiDevice" - case enableTonemapping = "EnableTonemapping" - case enableVppTonemapping = "EnableVppTonemapping" - case tonemappingAlgorithm = "TonemappingAlgorithm" - case tonemappingRange = "TonemappingRange" - case tonemappingDesat = "TonemappingDesat" - case tonemappingThreshold = "TonemappingThreshold" - case tonemappingPeak = "TonemappingPeak" - case tonemappingParam = "TonemappingParam" - case h264Crf = "H264Crf" - case h265Crf = "H265Crf" - case encoderPreset = "EncoderPreset" - case deinterlaceDoubleRate = "DeinterlaceDoubleRate" - case deinterlaceMethod = "DeinterlaceMethod" - case enableDecodingColorDepth10Hevc = "EnableDecodingColorDepth10Hevc" - case enableDecodingColorDepth10Vp9 = "EnableDecodingColorDepth10Vp9" - case enableEnhancedNvdecDecoder = "EnableEnhancedNvdecDecoder" - case preferSystemNativeHwDecoder = "PreferSystemNativeHwDecoder" - case enableIntelLowPowerH264HwEncoder = "EnableIntelLowPowerH264HwEncoder" - case enableIntelLowPowerHevcHwEncoder = "EnableIntelLowPowerHevcHwEncoder" - case enableHardwareEncoding = "EnableHardwareEncoding" - case allowHevcEncoding = "AllowHevcEncoding" - case enableSubtitleExtraction = "EnableSubtitleExtraction" - case hardwareDecodingCodecs = "HardwareDecodingCodecs" - case allowOnDemandMetadataBasedKeyframeExtractionForExtensions = "AllowOnDemandMetadataBasedKeyframeExtractionForExtensions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(encodingThreadCount, forKey: .encodingThreadCount) - try encoderContainer.encodeIfPresent(transcodingTempPath, forKey: .transcodingTempPath) - try encoderContainer.encodeIfPresent(fallbackFontPath, forKey: .fallbackFontPath) - try encoderContainer.encodeIfPresent(enableFallbackFont, forKey: .enableFallbackFont) - try encoderContainer.encodeIfPresent(downMixAudioBoost, forKey: .downMixAudioBoost) - try encoderContainer.encodeIfPresent(maxMuxingQueueSize, forKey: .maxMuxingQueueSize) - try encoderContainer.encodeIfPresent(enableThrottling, forKey: .enableThrottling) - try encoderContainer.encodeIfPresent(throttleDelaySeconds, forKey: .throttleDelaySeconds) - try encoderContainer.encodeIfPresent(hardwareAccelerationType, forKey: .hardwareAccelerationType) - try encoderContainer.encodeIfPresent(encoderAppPath, forKey: .encoderAppPath) - try encoderContainer.encodeIfPresent(encoderAppPathDisplay, forKey: .encoderAppPathDisplay) - try encoderContainer.encodeIfPresent(vaapiDevice, forKey: .vaapiDevice) - try encoderContainer.encodeIfPresent(enableTonemapping, forKey: .enableTonemapping) - try encoderContainer.encodeIfPresent(enableVppTonemapping, forKey: .enableVppTonemapping) - try encoderContainer.encodeIfPresent(tonemappingAlgorithm, forKey: .tonemappingAlgorithm) - try encoderContainer.encodeIfPresent(tonemappingRange, forKey: .tonemappingRange) - try encoderContainer.encodeIfPresent(tonemappingDesat, forKey: .tonemappingDesat) - try encoderContainer.encodeIfPresent(tonemappingThreshold, forKey: .tonemappingThreshold) - try encoderContainer.encodeIfPresent(tonemappingPeak, forKey: .tonemappingPeak) - try encoderContainer.encodeIfPresent(tonemappingParam, forKey: .tonemappingParam) - try encoderContainer.encodeIfPresent(h264Crf, forKey: .h264Crf) - try encoderContainer.encodeIfPresent(h265Crf, forKey: .h265Crf) - try encoderContainer.encodeIfPresent(encoderPreset, forKey: .encoderPreset) - try encoderContainer.encodeIfPresent(deinterlaceDoubleRate, forKey: .deinterlaceDoubleRate) - try encoderContainer.encodeIfPresent(deinterlaceMethod, forKey: .deinterlaceMethod) - try encoderContainer.encodeIfPresent(enableDecodingColorDepth10Hevc, forKey: .enableDecodingColorDepth10Hevc) - try encoderContainer.encodeIfPresent(enableDecodingColorDepth10Vp9, forKey: .enableDecodingColorDepth10Vp9) - try encoderContainer.encodeIfPresent(enableEnhancedNvdecDecoder, forKey: .enableEnhancedNvdecDecoder) - try encoderContainer.encodeIfPresent(preferSystemNativeHwDecoder, forKey: .preferSystemNativeHwDecoder) - try encoderContainer.encodeIfPresent(enableIntelLowPowerH264HwEncoder, forKey: .enableIntelLowPowerH264HwEncoder) - try encoderContainer.encodeIfPresent(enableIntelLowPowerHevcHwEncoder, forKey: .enableIntelLowPowerHevcHwEncoder) - try encoderContainer.encodeIfPresent(enableHardwareEncoding, forKey: .enableHardwareEncoding) - try encoderContainer.encodeIfPresent(allowHevcEncoding, forKey: .allowHevcEncoding) - try encoderContainer.encodeIfPresent(enableSubtitleExtraction, forKey: .enableSubtitleExtraction) - try encoderContainer.encodeIfPresent(hardwareDecodingCodecs, forKey: .hardwareDecodingCodecs) - try encoderContainer.encodeIfPresent(allowOnDemandMetadataBasedKeyframeExtractionForExtensions, forKey: .allowOnDemandMetadataBasedKeyframeExtractionForExtensions) - } -} diff --git a/Sources/JellyfinAPI/Models/EndPointInfo.swift b/Sources/JellyfinAPI/Models/EndPointInfo.swift deleted file mode 100644 index 8ea25e438..000000000 --- a/Sources/JellyfinAPI/Models/EndPointInfo.swift +++ /dev/null @@ -1,35 +0,0 @@ -// -// EndPointInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct EndPointInfo: Codable, JSONEncodable, Hashable { - - public var isLocal: Bool? - public var isInNetwork: Bool? - - public init(isLocal: Bool? = nil, isInNetwork: Bool? = nil) { - self.isLocal = isLocal - self.isInNetwork = isInNetwork - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case isLocal = "IsLocal" - case isInNetwork = "IsInNetwork" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(isLocal, forKey: .isLocal) - try encoderContainer.encodeIfPresent(isInNetwork, forKey: .isInNetwork) - } -} diff --git a/Sources/JellyfinAPI/Models/ExternalIdInfo.swift b/Sources/JellyfinAPI/Models/ExternalIdInfo.swift deleted file mode 100644 index 0b1006da4..000000000 --- a/Sources/JellyfinAPI/Models/ExternalIdInfo.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// ExternalIdInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Represents the external id information for serialization to the client. */ -public struct ExternalIdInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc). */ - public var name: String? - /** Gets or sets the unique key for this id. This key should be unique across all providers. */ - public var key: String? - /** Gets or sets the specific media type for this id. This is used to distinguish between the different external id types for providers with multiple ids. A null value indicates there is no specific media type associated with the external id, or this is the default id for the external provider so there is no need to specify a type. */ - public var type: ExternalIdMediaType? - /** Gets or sets the URL format string. */ - public var urlFormatString: String? - - public init(name: String? = nil, key: String? = nil, type: ExternalIdMediaType? = nil, urlFormatString: String? = nil) { - self.name = name - self.key = key - self.type = type - self.urlFormatString = urlFormatString - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case key = "Key" - case type = "Type" - case urlFormatString = "UrlFormatString" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(key, forKey: .key) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(urlFormatString, forKey: .urlFormatString) - } -} diff --git a/Sources/JellyfinAPI/Models/ExternalIdMediaType.swift b/Sources/JellyfinAPI/Models/ExternalIdMediaType.swift deleted file mode 100644 index 4fdc722e9..000000000 --- a/Sources/JellyfinAPI/Models/ExternalIdMediaType.swift +++ /dev/null @@ -1,27 +0,0 @@ -// -// ExternalIdMediaType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo. */ -public enum ExternalIdMediaType: String, Codable, CaseIterable { - case album = "Album" - case albumArtist = "AlbumArtist" - case artist = "Artist" - case boxSet = "BoxSet" - case episode = "Episode" - case movie = "Movie" - case otherArtist = "OtherArtist" - case person = "Person" - case releaseGroup = "ReleaseGroup" - case season = "Season" - case series = "Series" - case track = "Track" -} diff --git a/Sources/JellyfinAPI/Models/ExternalUrl.swift b/Sources/JellyfinAPI/Models/ExternalUrl.swift deleted file mode 100644 index 02f7898dd..000000000 --- a/Sources/JellyfinAPI/Models/ExternalUrl.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// ExternalUrl.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ExternalUrl: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the type of the item. */ - public var url: String? - - public init(name: String? = nil, url: String? = nil) { - self.name = name - self.url = url - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case url = "Url" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(url, forKey: .url) - } -} diff --git a/Sources/JellyfinAPI/Models/FFmpegLocation.swift b/Sources/JellyfinAPI/Models/FFmpegLocation.swift deleted file mode 100644 index ecfbb3baa..000000000 --- a/Sources/JellyfinAPI/Models/FFmpegLocation.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// FFmpegLocation.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum describing the location of the FFmpeg tool. */ -public enum FFmpegLocation: String, Codable, CaseIterable { - case notFound = "NotFound" - case setByArgument = "SetByArgument" - case custom = "Custom" - case system = "System" -} diff --git a/Sources/JellyfinAPI/Models/FileSystemEntryInfo.swift b/Sources/JellyfinAPI/Models/FileSystemEntryInfo.swift deleted file mode 100644 index eb8d75615..000000000 --- a/Sources/JellyfinAPI/Models/FileSystemEntryInfo.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// FileSystemEntryInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class FileSystemEntryInfo. */ -public struct FileSystemEntryInfo: Codable, JSONEncodable, Hashable { - - /** Gets the name. */ - public var name: String? - /** Gets the path. */ - public var path: String? - /** Gets the type. */ - public var type: FileSystemEntryType? - - public init(name: String? = nil, path: String? = nil, type: FileSystemEntryType? = nil) { - self.name = name - self.path = path - self.type = type - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case path = "Path" - case type = "Type" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(type, forKey: .type) - } -} diff --git a/Sources/JellyfinAPI/Models/FileSystemEntryType.swift b/Sources/JellyfinAPI/Models/FileSystemEntryType.swift deleted file mode 100644 index 0d44ffa17..000000000 --- a/Sources/JellyfinAPI/Models/FileSystemEntryType.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// FileSystemEntryType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum FileSystemEntryType. */ -public enum FileSystemEntryType: String, Codable, CaseIterable { - case file = "File" - case directory = "Directory" - case networkComputer = "NetworkComputer" - case networkShare = "NetworkShare" -} diff --git a/Sources/JellyfinAPI/Models/FontFile.swift b/Sources/JellyfinAPI/Models/FontFile.swift deleted file mode 100644 index 101871ace..000000000 --- a/Sources/JellyfinAPI/Models/FontFile.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// FontFile.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class FontFile. */ -public struct FontFile: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the size. */ - public var size: Int64? - /** Gets or sets the date created. */ - public var dateCreated: Date? - /** Gets or sets the date modified. */ - public var dateModified: Date? - - public init(name: String? = nil, size: Int64? = nil, dateCreated: Date? = nil, dateModified: Date? = nil) { - self.name = name - self.size = size - self.dateCreated = dateCreated - self.dateModified = dateModified - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case size = "Size" - case dateCreated = "DateCreated" - case dateModified = "DateModified" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(size, forKey: .size) - try encoderContainer.encodeIfPresent(dateCreated, forKey: .dateCreated) - try encoderContainer.encodeIfPresent(dateModified, forKey: .dateModified) - } -} diff --git a/Sources/JellyfinAPI/Models/ForgotPasswordAction.swift b/Sources/JellyfinAPI/Models/ForgotPasswordAction.swift deleted file mode 100644 index f6cb4806e..000000000 --- a/Sources/JellyfinAPI/Models/ForgotPasswordAction.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// ForgotPasswordAction.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum ForgotPasswordAction: String, Codable, CaseIterable { - case contactAdmin = "ContactAdmin" - case pinCode = "PinCode" - case inNetworkRequired = "InNetworkRequired" -} diff --git a/Sources/JellyfinAPI/Models/ForgotPasswordDto.swift b/Sources/JellyfinAPI/Models/ForgotPasswordDto.swift deleted file mode 100644 index bf720f4a0..000000000 --- a/Sources/JellyfinAPI/Models/ForgotPasswordDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// ForgotPasswordDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Forgot Password request body DTO. */ -public struct ForgotPasswordDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the entered username to have its password reset. */ - public var enteredUsername: String - - public init(enteredUsername: String) { - self.enteredUsername = enteredUsername - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case enteredUsername = "EnteredUsername" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(enteredUsername, forKey: .enteredUsername) - } -} diff --git a/Sources/JellyfinAPI/Models/ForgotPasswordPinDto.swift b/Sources/JellyfinAPI/Models/ForgotPasswordPinDto.swift deleted file mode 100644 index 48fc0705b..000000000 --- a/Sources/JellyfinAPI/Models/ForgotPasswordPinDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// ForgotPasswordPinDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Forgot Password Pin enter request body DTO. */ -public struct ForgotPasswordPinDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the entered pin to have the password reset. */ - public var pin: String - - public init(pin: String) { - self.pin = pin - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case pin = "Pin" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(pin, forKey: .pin) - } -} diff --git a/Sources/JellyfinAPI/Models/ForgotPasswordPinRequest.swift b/Sources/JellyfinAPI/Models/ForgotPasswordPinRequest.swift deleted file mode 100644 index 3d1d343ce..000000000 --- a/Sources/JellyfinAPI/Models/ForgotPasswordPinRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// ForgotPasswordPinRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Forgot Password Pin enter request body DTO. */ -public struct ForgotPasswordPinRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the entered pin to have the password reset. */ - public var pin: String - - public init(pin: String) { - self.pin = pin - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case pin = "Pin" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(pin, forKey: .pin) - } -} diff --git a/Sources/JellyfinAPI/Models/ForgotPasswordRequest.swift b/Sources/JellyfinAPI/Models/ForgotPasswordRequest.swift deleted file mode 100644 index dd72c92dd..000000000 --- a/Sources/JellyfinAPI/Models/ForgotPasswordRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// ForgotPasswordRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Forgot Password request body DTO. */ -public struct ForgotPasswordRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the entered username to have its password reset. */ - public var enteredUsername: String - - public init(enteredUsername: String) { - self.enteredUsername = enteredUsername - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case enteredUsername = "EnteredUsername" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(enteredUsername, forKey: .enteredUsername) - } -} diff --git a/Sources/JellyfinAPI/Models/ForgotPasswordResult.swift b/Sources/JellyfinAPI/Models/ForgotPasswordResult.swift deleted file mode 100644 index 3d1d85430..000000000 --- a/Sources/JellyfinAPI/Models/ForgotPasswordResult.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// ForgotPasswordResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ForgotPasswordResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the action. */ - public var action: ForgotPasswordAction? - /** Gets or sets the pin file. */ - public var pinFile: String? - /** Gets or sets the pin expiration date. */ - public var pinExpirationDate: Date? - - public init(action: ForgotPasswordAction? = nil, pinFile: String? = nil, pinExpirationDate: Date? = nil) { - self.action = action - self.pinFile = pinFile - self.pinExpirationDate = pinExpirationDate - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case action = "Action" - case pinFile = "PinFile" - case pinExpirationDate = "PinExpirationDate" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(action, forKey: .action) - try encoderContainer.encodeIfPresent(pinFile, forKey: .pinFile) - try encoderContainer.encodeIfPresent(pinExpirationDate, forKey: .pinExpirationDate) - } -} diff --git a/Sources/JellyfinAPI/Models/GeneralCommand.swift b/Sources/JellyfinAPI/Models/GeneralCommand.swift deleted file mode 100644 index 772b4cc55..000000000 --- a/Sources/JellyfinAPI/Models/GeneralCommand.swift +++ /dev/null @@ -1,40 +0,0 @@ -// -// GeneralCommand.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GeneralCommand: Codable, JSONEncodable, Hashable { - - /** This exists simply to identify a set of known commands. */ - public var name: GeneralCommandType? - public var controllingUserId: String? - public var arguments: [String: String]? - - public init(name: GeneralCommandType? = nil, controllingUserId: String? = nil, arguments: [String: String]? = nil) { - self.name = name - self.controllingUserId = controllingUserId - self.arguments = arguments - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case controllingUserId = "ControllingUserId" - case arguments = "Arguments" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(controllingUserId, forKey: .controllingUserId) - try encoderContainer.encodeIfPresent(arguments, forKey: .arguments) - } -} diff --git a/Sources/JellyfinAPI/Models/GetBookRemoteSearchResultsRequest.swift b/Sources/JellyfinAPI/Models/GetBookRemoteSearchResultsRequest.swift deleted file mode 100644 index 64f08c3c2..000000000 --- a/Sources/JellyfinAPI/Models/GetBookRemoteSearchResultsRequest.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// GetBookRemoteSearchResultsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GetBookRemoteSearchResultsRequest: Codable, JSONEncodable, Hashable { - - public var searchInfo: BookInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: BookInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/GetBoxSetRemoteSearchResultsRequest.swift b/Sources/JellyfinAPI/Models/GetBoxSetRemoteSearchResultsRequest.swift deleted file mode 100644 index 015d549a8..000000000 --- a/Sources/JellyfinAPI/Models/GetBoxSetRemoteSearchResultsRequest.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// GetBoxSetRemoteSearchResultsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GetBoxSetRemoteSearchResultsRequest: Codable, JSONEncodable, Hashable { - - public var searchInfo: BoxSetInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: BoxSetInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/GetMovieRemoteSearchResultsRequest.swift b/Sources/JellyfinAPI/Models/GetMovieRemoteSearchResultsRequest.swift deleted file mode 100644 index 26bdd5d96..000000000 --- a/Sources/JellyfinAPI/Models/GetMovieRemoteSearchResultsRequest.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// GetMovieRemoteSearchResultsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GetMovieRemoteSearchResultsRequest: Codable, JSONEncodable, Hashable { - - public var searchInfo: MovieInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: MovieInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/GetMusicAlbumRemoteSearchResultsRequest.swift b/Sources/JellyfinAPI/Models/GetMusicAlbumRemoteSearchResultsRequest.swift deleted file mode 100644 index 993831cc8..000000000 --- a/Sources/JellyfinAPI/Models/GetMusicAlbumRemoteSearchResultsRequest.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// GetMusicAlbumRemoteSearchResultsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GetMusicAlbumRemoteSearchResultsRequest: Codable, JSONEncodable, Hashable { - - public var searchInfo: AlbumInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: AlbumInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/GetMusicArtistRemoteSearchResultsRequest.swift b/Sources/JellyfinAPI/Models/GetMusicArtistRemoteSearchResultsRequest.swift deleted file mode 100644 index b75cc8ec4..000000000 --- a/Sources/JellyfinAPI/Models/GetMusicArtistRemoteSearchResultsRequest.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// GetMusicArtistRemoteSearchResultsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GetMusicArtistRemoteSearchResultsRequest: Codable, JSONEncodable, Hashable { - - public var searchInfo: ArtistInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: ArtistInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/GetMusicVideoRemoteSearchResultsRequest.swift b/Sources/JellyfinAPI/Models/GetMusicVideoRemoteSearchResultsRequest.swift deleted file mode 100644 index 7e69b1837..000000000 --- a/Sources/JellyfinAPI/Models/GetMusicVideoRemoteSearchResultsRequest.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// GetMusicVideoRemoteSearchResultsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GetMusicVideoRemoteSearchResultsRequest: Codable, JSONEncodable, Hashable { - - public var searchInfo: MusicVideoInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: MusicVideoInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/GetPersonRemoteSearchResultsRequest.swift b/Sources/JellyfinAPI/Models/GetPersonRemoteSearchResultsRequest.swift deleted file mode 100644 index ce95199cb..000000000 --- a/Sources/JellyfinAPI/Models/GetPersonRemoteSearchResultsRequest.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// GetPersonRemoteSearchResultsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GetPersonRemoteSearchResultsRequest: Codable, JSONEncodable, Hashable { - - public var searchInfo: PersonLookupInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: PersonLookupInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/GetPostedPlaybackInfoRequest.swift b/Sources/JellyfinAPI/Models/GetPostedPlaybackInfoRequest.swift deleted file mode 100644 index 6ce90fb0c..000000000 --- a/Sources/JellyfinAPI/Models/GetPostedPlaybackInfoRequest.swift +++ /dev/null @@ -1,102 +0,0 @@ -// -// GetPostedPlaybackInfoRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Plabyback info dto. */ -public struct GetPostedPlaybackInfoRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playback userId. */ - public var userId: String? - /** Gets or sets the max streaming bitrate. */ - public var maxStreamingBitrate: Int? - /** Gets or sets the start time in ticks. */ - public var startTimeTicks: Int64? - /** Gets or sets the audio stream index. */ - public var audioStreamIndex: Int? - /** Gets or sets the subtitle stream index. */ - public var subtitleStreamIndex: Int? - /** Gets or sets the max audio channels. */ - public var maxAudioChannels: Int? - /** Gets or sets the media source id. */ - public var mediaSourceId: String? - /** Gets or sets the live stream id. */ - public var liveStreamId: String? - public var deviceProfile: ClientCapabilitiesDeviceProfile? - /** Gets or sets a value indicating whether to enable direct play. */ - public var enableDirectPlay: Bool? - /** Gets or sets a value indicating whether to enable direct stream. */ - public var enableDirectStream: Bool? - /** Gets or sets a value indicating whether to enable transcoding. */ - public var enableTranscoding: Bool? - /** Gets or sets a value indicating whether to enable video stream copy. */ - public var allowVideoStreamCopy: Bool? - /** Gets or sets a value indicating whether to allow audio stream copy. */ - public var allowAudioStreamCopy: Bool? - /** Gets or sets a value indicating whether to auto open the live stream. */ - public var autoOpenLiveStream: Bool? - - public init(userId: String? = nil, maxStreamingBitrate: Int? = nil, startTimeTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, maxAudioChannels: Int? = nil, mediaSourceId: String? = nil, liveStreamId: String? = nil, deviceProfile: ClientCapabilitiesDeviceProfile? = nil, enableDirectPlay: Bool? = nil, enableDirectStream: Bool? = nil, enableTranscoding: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, autoOpenLiveStream: Bool? = nil) { - self.userId = userId - self.maxStreamingBitrate = maxStreamingBitrate - self.startTimeTicks = startTimeTicks - self.audioStreamIndex = audioStreamIndex - self.subtitleStreamIndex = subtitleStreamIndex - self.maxAudioChannels = maxAudioChannels - self.mediaSourceId = mediaSourceId - self.liveStreamId = liveStreamId - self.deviceProfile = deviceProfile - self.enableDirectPlay = enableDirectPlay - self.enableDirectStream = enableDirectStream - self.enableTranscoding = enableTranscoding - self.allowVideoStreamCopy = allowVideoStreamCopy - self.allowAudioStreamCopy = allowAudioStreamCopy - self.autoOpenLiveStream = autoOpenLiveStream - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case userId = "UserId" - case maxStreamingBitrate = "MaxStreamingBitrate" - case startTimeTicks = "StartTimeTicks" - case audioStreamIndex = "AudioStreamIndex" - case subtitleStreamIndex = "SubtitleStreamIndex" - case maxAudioChannels = "MaxAudioChannels" - case mediaSourceId = "MediaSourceId" - case liveStreamId = "LiveStreamId" - case deviceProfile = "DeviceProfile" - case enableDirectPlay = "EnableDirectPlay" - case enableDirectStream = "EnableDirectStream" - case enableTranscoding = "EnableTranscoding" - case allowVideoStreamCopy = "AllowVideoStreamCopy" - case allowAudioStreamCopy = "AllowAudioStreamCopy" - case autoOpenLiveStream = "AutoOpenLiveStream" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(maxStreamingBitrate, forKey: .maxStreamingBitrate) - try encoderContainer.encodeIfPresent(startTimeTicks, forKey: .startTimeTicks) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(maxAudioChannels, forKey: .maxAudioChannels) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - try encoderContainer.encodeIfPresent(deviceProfile, forKey: .deviceProfile) - try encoderContainer.encodeIfPresent(enableDirectPlay, forKey: .enableDirectPlay) - try encoderContainer.encodeIfPresent(enableDirectStream, forKey: .enableDirectStream) - try encoderContainer.encodeIfPresent(enableTranscoding, forKey: .enableTranscoding) - try encoderContainer.encodeIfPresent(allowVideoStreamCopy, forKey: .allowVideoStreamCopy) - try encoderContainer.encodeIfPresent(allowAudioStreamCopy, forKey: .allowAudioStreamCopy) - try encoderContainer.encodeIfPresent(autoOpenLiveStream, forKey: .autoOpenLiveStream) - } -} diff --git a/Sources/JellyfinAPI/Models/GetProgramsDto.swift b/Sources/JellyfinAPI/Models/GetProgramsDto.swift deleted file mode 100644 index 5171d0491..000000000 --- a/Sources/JellyfinAPI/Models/GetProgramsDto.swift +++ /dev/null @@ -1,163 +0,0 @@ -// -// GetProgramsDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Get programs dto. */ -public struct GetProgramsDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the channels to return guide information for. */ - public var channelIds: [String]? - /** Gets or sets optional. Filter by user id. */ - public var userId: String? - /** Gets or sets the minimum premiere start date. Optional. */ - public var minStartDate: Date? - /** Gets or sets filter by programs that have completed airing, or not. Optional. */ - public var hasAired: Bool? - /** Gets or sets filter by programs that are currently airing, or not. Optional. */ - public var isAiring: Bool? - /** Gets or sets the maximum premiere start date. Optional. */ - public var maxStartDate: Date? - /** Gets or sets the minimum premiere end date. Optional. */ - public var minEndDate: Date? - /** Gets or sets the maximum premiere end date. Optional. */ - public var maxEndDate: Date? - /** Gets or sets filter for movies. Optional. */ - public var isMovie: Bool? - /** Gets or sets filter for series. Optional. */ - public var isSeries: Bool? - /** Gets or sets filter for news. Optional. */ - public var isNews: Bool? - /** Gets or sets filter for kids. Optional. */ - public var isKids: Bool? - /** Gets or sets filter for sports. Optional. */ - public var isSports: Bool? - /** Gets or sets the record index to start at. All items with a lower index will be dropped from the results. Optional. */ - public var startIndex: Int? - /** Gets or sets the maximum number of records to return. Optional. */ - public var limit: Int? - /** Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate. Optional. */ - public var sortBy: [String]? - /** Gets or sets sort Order - Ascending,Descending. */ - public var sortOrder: [SortOrder]? - /** Gets or sets the genres to return guide information for. */ - public var genres: [String]? - /** Gets or sets the genre ids to return guide information for. */ - public var genreIds: [String]? - /** Gets or sets include image information in output. Optional. */ - public var enableImages: Bool? - /** Gets or sets a value indicating whether retrieve total record count. */ - public var enableTotalRecordCount: Bool? - /** Gets or sets the max number of images to return, per image type. Optional. */ - public var imageTypeLimit: Int? - /** Gets or sets the image types to include in the output. Optional. */ - public var enableImageTypes: [ImageType]? - /** Gets or sets include user data. Optional. */ - public var enableUserData: Bool? - /** Gets or sets filter by series timer id. Optional. */ - public var seriesTimerId: String? - /** Gets or sets filter by library series id. Optional. */ - public var librarySeriesId: String? - /** Gets or sets specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. Optional. */ - public var fields: [ItemFields]? - - public init(channelIds: [String]? = nil, userId: String? = nil, minStartDate: Date? = nil, hasAired: Bool? = nil, isAiring: Bool? = nil, maxStartDate: Date? = nil, minEndDate: Date? = nil, maxEndDate: Date? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, startIndex: Int? = nil, limit: Int? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, seriesTimerId: String? = nil, librarySeriesId: String? = nil, fields: [ItemFields]? = nil) { - self.channelIds = channelIds - self.userId = userId - self.minStartDate = minStartDate - self.hasAired = hasAired - self.isAiring = isAiring - self.maxStartDate = maxStartDate - self.minEndDate = minEndDate - self.maxEndDate = maxEndDate - self.isMovie = isMovie - self.isSeries = isSeries - self.isNews = isNews - self.isKids = isKids - self.isSports = isSports - self.startIndex = startIndex - self.limit = limit - self.sortBy = sortBy - self.sortOrder = sortOrder - self.genres = genres - self.genreIds = genreIds - self.enableImages = enableImages - self.enableTotalRecordCount = enableTotalRecordCount - self.imageTypeLimit = imageTypeLimit - self.enableImageTypes = enableImageTypes - self.enableUserData = enableUserData - self.seriesTimerId = seriesTimerId - self.librarySeriesId = librarySeriesId - self.fields = fields - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case channelIds = "ChannelIds" - case userId = "UserId" - case minStartDate = "MinStartDate" - case hasAired = "HasAired" - case isAiring = "IsAiring" - case maxStartDate = "MaxStartDate" - case minEndDate = "MinEndDate" - case maxEndDate = "MaxEndDate" - case isMovie = "IsMovie" - case isSeries = "IsSeries" - case isNews = "IsNews" - case isKids = "IsKids" - case isSports = "IsSports" - case startIndex = "StartIndex" - case limit = "Limit" - case sortBy = "SortBy" - case sortOrder = "SortOrder" - case genres = "Genres" - case genreIds = "GenreIds" - case enableImages = "EnableImages" - case enableTotalRecordCount = "EnableTotalRecordCount" - case imageTypeLimit = "ImageTypeLimit" - case enableImageTypes = "EnableImageTypes" - case enableUserData = "EnableUserData" - case seriesTimerId = "SeriesTimerId" - case librarySeriesId = "LibrarySeriesId" - case fields = "Fields" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(channelIds, forKey: .channelIds) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(minStartDate, forKey: .minStartDate) - try encoderContainer.encodeIfPresent(hasAired, forKey: .hasAired) - try encoderContainer.encodeIfPresent(isAiring, forKey: .isAiring) - try encoderContainer.encodeIfPresent(maxStartDate, forKey: .maxStartDate) - try encoderContainer.encodeIfPresent(minEndDate, forKey: .minEndDate) - try encoderContainer.encodeIfPresent(maxEndDate, forKey: .maxEndDate) - try encoderContainer.encodeIfPresent(isMovie, forKey: .isMovie) - try encoderContainer.encodeIfPresent(isSeries, forKey: .isSeries) - try encoderContainer.encodeIfPresent(isNews, forKey: .isNews) - try encoderContainer.encodeIfPresent(isKids, forKey: .isKids) - try encoderContainer.encodeIfPresent(isSports, forKey: .isSports) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - try encoderContainer.encodeIfPresent(limit, forKey: .limit) - try encoderContainer.encodeIfPresent(sortBy, forKey: .sortBy) - try encoderContainer.encodeIfPresent(sortOrder, forKey: .sortOrder) - try encoderContainer.encodeIfPresent(genres, forKey: .genres) - try encoderContainer.encodeIfPresent(genreIds, forKey: .genreIds) - try encoderContainer.encodeIfPresent(enableImages, forKey: .enableImages) - try encoderContainer.encodeIfPresent(enableTotalRecordCount, forKey: .enableTotalRecordCount) - try encoderContainer.encodeIfPresent(imageTypeLimit, forKey: .imageTypeLimit) - try encoderContainer.encodeIfPresent(enableImageTypes, forKey: .enableImageTypes) - try encoderContainer.encodeIfPresent(enableUserData, forKey: .enableUserData) - try encoderContainer.encodeIfPresent(seriesTimerId, forKey: .seriesTimerId) - try encoderContainer.encodeIfPresent(librarySeriesId, forKey: .librarySeriesId) - try encoderContainer.encodeIfPresent(fields, forKey: .fields) - } -} diff --git a/Sources/JellyfinAPI/Models/GetProgramsRequest.swift b/Sources/JellyfinAPI/Models/GetProgramsRequest.swift deleted file mode 100644 index 037bc2abf..000000000 --- a/Sources/JellyfinAPI/Models/GetProgramsRequest.swift +++ /dev/null @@ -1,163 +0,0 @@ -// -// GetProgramsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Get programs dto. */ -public struct GetProgramsRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the channels to return guide information for. */ - public var channelIds: [String]? - /** Gets or sets optional. Filter by user id. */ - public var userId: String? - /** Gets or sets the minimum premiere start date. Optional. */ - public var minStartDate: Date? - /** Gets or sets filter by programs that have completed airing, or not. Optional. */ - public var hasAired: Bool? - /** Gets or sets filter by programs that are currently airing, or not. Optional. */ - public var isAiring: Bool? - /** Gets or sets the maximum premiere start date. Optional. */ - public var maxStartDate: Date? - /** Gets or sets the minimum premiere end date. Optional. */ - public var minEndDate: Date? - /** Gets or sets the maximum premiere end date. Optional. */ - public var maxEndDate: Date? - /** Gets or sets filter for movies. Optional. */ - public var isMovie: Bool? - /** Gets or sets filter for series. Optional. */ - public var isSeries: Bool? - /** Gets or sets filter for news. Optional. */ - public var isNews: Bool? - /** Gets or sets filter for kids. Optional. */ - public var isKids: Bool? - /** Gets or sets filter for sports. Optional. */ - public var isSports: Bool? - /** Gets or sets the record index to start at. All items with a lower index will be dropped from the results. Optional. */ - public var startIndex: Int? - /** Gets or sets the maximum number of records to return. Optional. */ - public var limit: Int? - /** Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate. Optional. */ - public var sortBy: [String]? - /** Gets or sets sort Order - Ascending,Descending. */ - public var sortOrder: [SortOrder]? - /** Gets or sets the genres to return guide information for. */ - public var genres: [String]? - /** Gets or sets the genre ids to return guide information for. */ - public var genreIds: [String]? - /** Gets or sets include image information in output. Optional. */ - public var enableImages: Bool? - /** Gets or sets a value indicating whether retrieve total record count. */ - public var enableTotalRecordCount: Bool? - /** Gets or sets the max number of images to return, per image type. Optional. */ - public var imageTypeLimit: Int? - /** Gets or sets the image types to include in the output. Optional. */ - public var enableImageTypes: [ImageType]? - /** Gets or sets include user data. Optional. */ - public var enableUserData: Bool? - /** Gets or sets filter by series timer id. Optional. */ - public var seriesTimerId: String? - /** Gets or sets filter by library series id. Optional. */ - public var librarySeriesId: String? - /** Gets or sets specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. Optional. */ - public var fields: [ItemFields]? - - public init(channelIds: [String]? = nil, userId: String? = nil, minStartDate: Date? = nil, hasAired: Bool? = nil, isAiring: Bool? = nil, maxStartDate: Date? = nil, minEndDate: Date? = nil, maxEndDate: Date? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, startIndex: Int? = nil, limit: Int? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, seriesTimerId: String? = nil, librarySeriesId: String? = nil, fields: [ItemFields]? = nil) { - self.channelIds = channelIds - self.userId = userId - self.minStartDate = minStartDate - self.hasAired = hasAired - self.isAiring = isAiring - self.maxStartDate = maxStartDate - self.minEndDate = minEndDate - self.maxEndDate = maxEndDate - self.isMovie = isMovie - self.isSeries = isSeries - self.isNews = isNews - self.isKids = isKids - self.isSports = isSports - self.startIndex = startIndex - self.limit = limit - self.sortBy = sortBy - self.sortOrder = sortOrder - self.genres = genres - self.genreIds = genreIds - self.enableImages = enableImages - self.enableTotalRecordCount = enableTotalRecordCount - self.imageTypeLimit = imageTypeLimit - self.enableImageTypes = enableImageTypes - self.enableUserData = enableUserData - self.seriesTimerId = seriesTimerId - self.librarySeriesId = librarySeriesId - self.fields = fields - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case channelIds = "ChannelIds" - case userId = "UserId" - case minStartDate = "MinStartDate" - case hasAired = "HasAired" - case isAiring = "IsAiring" - case maxStartDate = "MaxStartDate" - case minEndDate = "MinEndDate" - case maxEndDate = "MaxEndDate" - case isMovie = "IsMovie" - case isSeries = "IsSeries" - case isNews = "IsNews" - case isKids = "IsKids" - case isSports = "IsSports" - case startIndex = "StartIndex" - case limit = "Limit" - case sortBy = "SortBy" - case sortOrder = "SortOrder" - case genres = "Genres" - case genreIds = "GenreIds" - case enableImages = "EnableImages" - case enableTotalRecordCount = "EnableTotalRecordCount" - case imageTypeLimit = "ImageTypeLimit" - case enableImageTypes = "EnableImageTypes" - case enableUserData = "EnableUserData" - case seriesTimerId = "SeriesTimerId" - case librarySeriesId = "LibrarySeriesId" - case fields = "Fields" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(channelIds, forKey: .channelIds) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(minStartDate, forKey: .minStartDate) - try encoderContainer.encodeIfPresent(hasAired, forKey: .hasAired) - try encoderContainer.encodeIfPresent(isAiring, forKey: .isAiring) - try encoderContainer.encodeIfPresent(maxStartDate, forKey: .maxStartDate) - try encoderContainer.encodeIfPresent(minEndDate, forKey: .minEndDate) - try encoderContainer.encodeIfPresent(maxEndDate, forKey: .maxEndDate) - try encoderContainer.encodeIfPresent(isMovie, forKey: .isMovie) - try encoderContainer.encodeIfPresent(isSeries, forKey: .isSeries) - try encoderContainer.encodeIfPresent(isNews, forKey: .isNews) - try encoderContainer.encodeIfPresent(isKids, forKey: .isKids) - try encoderContainer.encodeIfPresent(isSports, forKey: .isSports) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - try encoderContainer.encodeIfPresent(limit, forKey: .limit) - try encoderContainer.encodeIfPresent(sortBy, forKey: .sortBy) - try encoderContainer.encodeIfPresent(sortOrder, forKey: .sortOrder) - try encoderContainer.encodeIfPresent(genres, forKey: .genres) - try encoderContainer.encodeIfPresent(genreIds, forKey: .genreIds) - try encoderContainer.encodeIfPresent(enableImages, forKey: .enableImages) - try encoderContainer.encodeIfPresent(enableTotalRecordCount, forKey: .enableTotalRecordCount) - try encoderContainer.encodeIfPresent(imageTypeLimit, forKey: .imageTypeLimit) - try encoderContainer.encodeIfPresent(enableImageTypes, forKey: .enableImageTypes) - try encoderContainer.encodeIfPresent(enableUserData, forKey: .enableUserData) - try encoderContainer.encodeIfPresent(seriesTimerId, forKey: .seriesTimerId) - try encoderContainer.encodeIfPresent(librarySeriesId, forKey: .librarySeriesId) - try encoderContainer.encodeIfPresent(fields, forKey: .fields) - } -} diff --git a/Sources/JellyfinAPI/Models/GetSeriesRemoteSearchResultsRequest.swift b/Sources/JellyfinAPI/Models/GetSeriesRemoteSearchResultsRequest.swift deleted file mode 100644 index 3032b5c67..000000000 --- a/Sources/JellyfinAPI/Models/GetSeriesRemoteSearchResultsRequest.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// GetSeriesRemoteSearchResultsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GetSeriesRemoteSearchResultsRequest: Codable, JSONEncodable, Hashable { - - public var searchInfo: SeriesInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: SeriesInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/GetTrailerRemoteSearchResultsRequest.swift b/Sources/JellyfinAPI/Models/GetTrailerRemoteSearchResultsRequest.swift deleted file mode 100644 index 5f00dffe4..000000000 --- a/Sources/JellyfinAPI/Models/GetTrailerRemoteSearchResultsRequest.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// GetTrailerRemoteSearchResultsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GetTrailerRemoteSearchResultsRequest: Codable, JSONEncodable, Hashable { - - public var searchInfo: TrailerInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: TrailerInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/GroupInfoDto.swift b/Sources/JellyfinAPI/Models/GroupInfoDto.swift deleted file mode 100644 index fd4f0a19c..000000000 --- a/Sources/JellyfinAPI/Models/GroupInfoDto.swift +++ /dev/null @@ -1,53 +0,0 @@ -// -// GroupInfoDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class GroupInfoDto. */ -public struct GroupInfoDto: Codable, JSONEncodable, Hashable { - - /** Gets the group identifier. */ - public var groupId: String? - /** Gets the group name. */ - public var groupName: String? - /** Gets the group state. */ - public var state: GroupStateType? - /** Gets the participants. */ - public var participants: [String]? - /** Gets the date when this DTO has been created. */ - public var lastUpdatedAt: Date? - - public init(groupId: String? = nil, groupName: String? = nil, state: GroupStateType? = nil, participants: [String]? = nil, lastUpdatedAt: Date? = nil) { - self.groupId = groupId - self.groupName = groupName - self.state = state - self.participants = participants - self.lastUpdatedAt = lastUpdatedAt - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case groupId = "GroupId" - case groupName = "GroupName" - case state = "State" - case participants = "Participants" - case lastUpdatedAt = "LastUpdatedAt" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(groupId, forKey: .groupId) - try encoderContainer.encodeIfPresent(groupName, forKey: .groupName) - try encoderContainer.encodeIfPresent(state, forKey: .state) - try encoderContainer.encodeIfPresent(participants, forKey: .participants) - try encoderContainer.encodeIfPresent(lastUpdatedAt, forKey: .lastUpdatedAt) - } -} diff --git a/Sources/JellyfinAPI/Models/GroupQueueMode.swift b/Sources/JellyfinAPI/Models/GroupQueueMode.swift deleted file mode 100644 index 1d08f0993..000000000 --- a/Sources/JellyfinAPI/Models/GroupQueueMode.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// GroupQueueMode.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum GroupQueueMode. */ -public enum GroupQueueMode: String, Codable, CaseIterable { - case queue = "Queue" - case queueNext = "QueueNext" -} diff --git a/Sources/JellyfinAPI/Models/GroupRepeatMode.swift b/Sources/JellyfinAPI/Models/GroupRepeatMode.swift deleted file mode 100644 index 26c30c068..000000000 --- a/Sources/JellyfinAPI/Models/GroupRepeatMode.swift +++ /dev/null @@ -1,18 +0,0 @@ -// -// GroupRepeatMode.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum GroupRepeatMode. */ -public enum GroupRepeatMode: String, Codable, CaseIterable { - case repeatOne = "RepeatOne" - case repeatAll = "RepeatAll" - case repeatNone = "RepeatNone" -} diff --git a/Sources/JellyfinAPI/Models/GroupShuffleMode.swift b/Sources/JellyfinAPI/Models/GroupShuffleMode.swift deleted file mode 100644 index 71b0336d7..000000000 --- a/Sources/JellyfinAPI/Models/GroupShuffleMode.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// GroupShuffleMode.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum GroupShuffleMode. */ -public enum GroupShuffleMode: String, Codable, CaseIterable { - case sorted = "Sorted" - case shuffle = "Shuffle" -} diff --git a/Sources/JellyfinAPI/Models/GroupStateType.swift b/Sources/JellyfinAPI/Models/GroupStateType.swift deleted file mode 100644 index c9f541208..000000000 --- a/Sources/JellyfinAPI/Models/GroupStateType.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// GroupStateType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum GroupState. */ -public enum GroupStateType: String, Codable, CaseIterable { - case idle = "Idle" - case waiting = "Waiting" - case paused = "Paused" - case playing = "Playing" -} diff --git a/Sources/JellyfinAPI/Models/GroupUpdateType.swift b/Sources/JellyfinAPI/Models/GroupUpdateType.swift deleted file mode 100644 index 8586ba2c3..000000000 --- a/Sources/JellyfinAPI/Models/GroupUpdateType.swift +++ /dev/null @@ -1,26 +0,0 @@ -// -// GroupUpdateType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum GroupUpdateType. */ -public enum GroupUpdateType: String, Codable, CaseIterable { - case userJoined = "UserJoined" - case userLeft = "UserLeft" - case groupJoined = "GroupJoined" - case groupLeft = "GroupLeft" - case stateUpdate = "StateUpdate" - case playQueue = "PlayQueue" - case notInGroup = "NotInGroup" - case groupDoesNotExist = "GroupDoesNotExist" - case createGroupDenied = "CreateGroupDenied" - case joinGroupDenied = "JoinGroupDenied" - case libraryAccessDenied = "LibraryAccessDenied" -} diff --git a/Sources/JellyfinAPI/Models/GuideInfo.swift b/Sources/JellyfinAPI/Models/GuideInfo.swift deleted file mode 100644 index 5cddd1b13..000000000 --- a/Sources/JellyfinAPI/Models/GuideInfo.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// GuideInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct GuideInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the start date. */ - public var startDate: Date? - /** Gets or sets the end date. */ - public var endDate: Date? - - public init(startDate: Date? = nil, endDate: Date? = nil) { - self.startDate = startDate - self.endDate = endDate - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case startDate = "StartDate" - case endDate = "EndDate" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - } -} diff --git a/Sources/JellyfinAPI/Models/HardwareEncodingType.swift b/Sources/JellyfinAPI/Models/HardwareEncodingType.swift deleted file mode 100644 index 956a9a710..000000000 --- a/Sources/JellyfinAPI/Models/HardwareEncodingType.swift +++ /dev/null @@ -1,21 +0,0 @@ -// -// HardwareEncodingType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum HardwareEncodingType. */ -public enum HardwareEncodingType: String, Codable, CaseIterable { - case amf = "AMF" - case qsv = "QSV" - case nvenc = "NVENC" - case v4L2M2M = "V4L2M2M" - case vaapi = "VAAPI" - case videoToolBox = "VideoToolBox" -} diff --git a/Sources/JellyfinAPI/Models/HeaderMatchType.swift b/Sources/JellyfinAPI/Models/HeaderMatchType.swift deleted file mode 100644 index 0fb436b9b..000000000 --- a/Sources/JellyfinAPI/Models/HeaderMatchType.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// HeaderMatchType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum HeaderMatchType: String, Codable, CaseIterable { - case equals = "Equals" - case regex = "Regex" - case substring = "Substring" -} diff --git a/Sources/JellyfinAPI/Models/HttpHeaderInfo.swift b/Sources/JellyfinAPI/Models/HttpHeaderInfo.swift deleted file mode 100644 index a25b9ba7d..000000000 --- a/Sources/JellyfinAPI/Models/HttpHeaderInfo.swift +++ /dev/null @@ -1,39 +0,0 @@ -// -// HttpHeaderInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct HttpHeaderInfo: Codable, JSONEncodable, Hashable { - - public var name: String? - public var value: String? - public var match: HeaderMatchType? - - public init(name: String? = nil, value: String? = nil, match: HeaderMatchType? = nil) { - self.name = name - self.value = value - self.match = match - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case value = "Value" - case match = "Match" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(value, forKey: .value) - try encoderContainer.encodeIfPresent(match, forKey: .match) - } -} diff --git a/Sources/JellyfinAPI/Models/IPlugin.swift b/Sources/JellyfinAPI/Models/IPlugin.swift deleted file mode 100644 index ea5969ced..000000000 --- a/Sources/JellyfinAPI/Models/IPlugin.swift +++ /dev/null @@ -1,63 +0,0 @@ -// -// IPlugin.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Defines the MediaBrowser.Common.Plugins.IPlugin. */ -public struct IPlugin: Codable, JSONEncodable, Hashable { - - /** Gets the name of the plugin. */ - public var name: String? - /** Gets the Description. */ - public var description: String? - /** Gets the unique id. */ - public var id: String? - /** Gets the plugin version. */ - public var version: String? - /** Gets the path to the assembly file. */ - public var assemblyFilePath: String? - /** Gets a value indicating whether the plugin can be uninstalled. */ - public var canUninstall: Bool? - /** Gets the full path to the data folder, where the plugin can store any miscellaneous files needed. */ - public var dataFolderPath: String? - - public init(name: String? = nil, description: String? = nil, id: String? = nil, version: String? = nil, assemblyFilePath: String? = nil, canUninstall: Bool? = nil, dataFolderPath: String? = nil) { - self.name = name - self.description = description - self.id = id - self.version = version - self.assemblyFilePath = assemblyFilePath - self.canUninstall = canUninstall - self.dataFolderPath = dataFolderPath - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case description = "Description" - case id = "Id" - case version = "Version" - case assemblyFilePath = "AssemblyFilePath" - case canUninstall = "CanUninstall" - case dataFolderPath = "DataFolderPath" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(description, forKey: .description) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(version, forKey: .version) - try encoderContainer.encodeIfPresent(assemblyFilePath, forKey: .assemblyFilePath) - try encoderContainer.encodeIfPresent(canUninstall, forKey: .canUninstall) - try encoderContainer.encodeIfPresent(dataFolderPath, forKey: .dataFolderPath) - } -} diff --git a/Sources/JellyfinAPI/Models/IgnoreWaitRequestDto.swift b/Sources/JellyfinAPI/Models/IgnoreWaitRequestDto.swift deleted file mode 100644 index 9f13f8e2e..000000000 --- a/Sources/JellyfinAPI/Models/IgnoreWaitRequestDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// IgnoreWaitRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class IgnoreWaitRequestDto. */ -public struct IgnoreWaitRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether the client should be ignored. */ - public var ignoreWait: Bool? - - public init(ignoreWait: Bool? = nil) { - self.ignoreWait = ignoreWait - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case ignoreWait = "IgnoreWait" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(ignoreWait, forKey: .ignoreWait) - } -} diff --git a/Sources/JellyfinAPI/Models/ImageByNameInfo.swift b/Sources/JellyfinAPI/Models/ImageByNameInfo.swift deleted file mode 100644 index 55adc7c0b..000000000 --- a/Sources/JellyfinAPI/Models/ImageByNameInfo.swift +++ /dev/null @@ -1,52 +0,0 @@ -// -// ImageByNameInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ImageByNameInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the theme. */ - public var theme: String? - /** Gets or sets the context. */ - public var context: String? - /** Gets or sets the length of the file. */ - public var fileLength: Int64? - /** Gets or sets the format. */ - public var format: String? - - public init(name: String? = nil, theme: String? = nil, context: String? = nil, fileLength: Int64? = nil, format: String? = nil) { - self.name = name - self.theme = theme - self.context = context - self.fileLength = fileLength - self.format = format - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case theme = "Theme" - case context = "Context" - case fileLength = "FileLength" - case format = "Format" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(theme, forKey: .theme) - try encoderContainer.encodeIfPresent(context, forKey: .context) - try encoderContainer.encodeIfPresent(fileLength, forKey: .fileLength) - try encoderContainer.encodeIfPresent(format, forKey: .format) - } -} diff --git a/Sources/JellyfinAPI/Models/ImageFormat.swift b/Sources/JellyfinAPI/Models/ImageFormat.swift deleted file mode 100644 index f6472aa59..000000000 --- a/Sources/JellyfinAPI/Models/ImageFormat.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// ImageFormat.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum ImageOutputFormat. */ -public enum ImageFormat: String, Codable, CaseIterable { - case bmp = "Bmp" - case gif = "Gif" - case jpg = "Jpg" - case png = "Png" - case webp = "Webp" -} diff --git a/Sources/JellyfinAPI/Models/ImageInfo.swift b/Sources/JellyfinAPI/Models/ImageInfo.swift deleted file mode 100644 index 0fc30ea23..000000000 --- a/Sources/JellyfinAPI/Models/ImageInfo.swift +++ /dev/null @@ -1,68 +0,0 @@ -// -// ImageInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class ImageInfo. */ -public struct ImageInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the type of the image. */ - public var imageType: ImageType? - /** Gets or sets the index of the image. */ - public var imageIndex: Int? - /** Gets or sets the image tag. */ - public var imageTag: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the blurhash. */ - public var blurHash: String? - /** Gets or sets the height. */ - public var height: Int? - /** Gets or sets the width. */ - public var width: Int? - /** Gets or sets the size. */ - public var size: Int64? - - public init(imageType: ImageType? = nil, imageIndex: Int? = nil, imageTag: String? = nil, path: String? = nil, blurHash: String? = nil, height: Int? = nil, width: Int? = nil, size: Int64? = nil) { - self.imageType = imageType - self.imageIndex = imageIndex - self.imageTag = imageTag - self.path = path - self.blurHash = blurHash - self.height = height - self.width = width - self.size = size - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case imageType = "ImageType" - case imageIndex = "ImageIndex" - case imageTag = "ImageTag" - case path = "Path" - case blurHash = "BlurHash" - case height = "Height" - case width = "Width" - case size = "Size" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(imageType, forKey: .imageType) - try encoderContainer.encodeIfPresent(imageIndex, forKey: .imageIndex) - try encoderContainer.encodeIfPresent(imageTag, forKey: .imageTag) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(blurHash, forKey: .blurHash) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(size, forKey: .size) - } -} diff --git a/Sources/JellyfinAPI/Models/ImageOption.swift b/Sources/JellyfinAPI/Models/ImageOption.swift deleted file mode 100644 index 70927968c..000000000 --- a/Sources/JellyfinAPI/Models/ImageOption.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// ImageOption.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ImageOption: Codable, JSONEncodable, Hashable { - - /** Gets or sets the type. */ - public var type: ImageType? - /** Gets or sets the limit. */ - public var limit: Int? - /** Gets or sets the minimum width. */ - public var minWidth: Int? - - public init(type: ImageType? = nil, limit: Int? = nil, minWidth: Int? = nil) { - self.type = type - self.limit = limit - self.minWidth = minWidth - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case type = "Type" - case limit = "Limit" - case minWidth = "MinWidth" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(limit, forKey: .limit) - try encoderContainer.encodeIfPresent(minWidth, forKey: .minWidth) - } -} diff --git a/Sources/JellyfinAPI/Models/ImageOrientation.swift b/Sources/JellyfinAPI/Models/ImageOrientation.swift deleted file mode 100644 index feb3b77e5..000000000 --- a/Sources/JellyfinAPI/Models/ImageOrientation.swift +++ /dev/null @@ -1,22 +0,0 @@ -// -// ImageOrientation.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum ImageOrientation: String, Codable, CaseIterable { - case topLeft = "TopLeft" - case topRight = "TopRight" - case bottomRight = "BottomRight" - case bottomLeft = "BottomLeft" - case leftTop = "LeftTop" - case rightTop = "RightTop" - case rightBottom = "RightBottom" - case leftBottom = "LeftBottom" -} diff --git a/Sources/JellyfinAPI/Models/ImageProviderInfo.swift b/Sources/JellyfinAPI/Models/ImageProviderInfo.swift deleted file mode 100644 index 9d946ff2f..000000000 --- a/Sources/JellyfinAPI/Models/ImageProviderInfo.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// ImageProviderInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class ImageProviderInfo. */ -public struct ImageProviderInfo: Codable, JSONEncodable, Hashable { - - /** Gets the name. */ - public var name: String? - /** Gets the supported image types. */ - public var supportedImages: [ImageType]? - - public init(name: String? = nil, supportedImages: [ImageType]? = nil) { - self.name = name - self.supportedImages = supportedImages - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case supportedImages = "SupportedImages" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(supportedImages, forKey: .supportedImages) - } -} diff --git a/Sources/JellyfinAPI/Models/ImageSavingConvention.swift b/Sources/JellyfinAPI/Models/ImageSavingConvention.swift deleted file mode 100644 index c396d9089..000000000 --- a/Sources/JellyfinAPI/Models/ImageSavingConvention.swift +++ /dev/null @@ -1,16 +0,0 @@ -// -// ImageSavingConvention.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum ImageSavingConvention: String, Codable, CaseIterable { - case legacy = "Legacy" - case compatible = "Compatible" -} diff --git a/Sources/JellyfinAPI/Models/ImageType.swift b/Sources/JellyfinAPI/Models/ImageType.swift deleted file mode 100644 index ef00b3f96..000000000 --- a/Sources/JellyfinAPI/Models/ImageType.swift +++ /dev/null @@ -1,28 +0,0 @@ -// -// ImageType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum ImageType. */ -public enum ImageType: String, Codable, CaseIterable { - case primary = "Primary" - case art = "Art" - case backdrop = "Backdrop" - case banner = "Banner" - case logo = "Logo" - case thumb = "Thumb" - case disc = "Disc" - case box = "Box" - case screenshot = "Screenshot" - case menu = "Menu" - case chapter = "Chapter" - case boxRear = "BoxRear" - case profile = "Profile" -} diff --git a/Sources/JellyfinAPI/Models/InstallationInfo.swift b/Sources/JellyfinAPI/Models/InstallationInfo.swift deleted file mode 100644 index 7051c9e0c..000000000 --- a/Sources/JellyfinAPI/Models/InstallationInfo.swift +++ /dev/null @@ -1,62 +0,0 @@ -// -// InstallationInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class InstallationInfo. */ -public struct InstallationInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the Id. */ - public var guid: String? - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the version. */ - public var version: String? - /** Gets or sets the changelog for this version. */ - public var changelog: String? - /** Gets or sets the source URL. */ - public var sourceUrl: String? - /** Gets or sets a checksum for the binary. */ - public var checksum: String? - public var packageInfo: InstallationInfoPackageInfo? - - public init(guid: String? = nil, name: String? = nil, version: String? = nil, changelog: String? = nil, sourceUrl: String? = nil, checksum: String? = nil, packageInfo: InstallationInfoPackageInfo? = nil) { - self.guid = guid - self.name = name - self.version = version - self.changelog = changelog - self.sourceUrl = sourceUrl - self.checksum = checksum - self.packageInfo = packageInfo - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case guid = "Guid" - case name = "Name" - case version = "Version" - case changelog = "Changelog" - case sourceUrl = "SourceUrl" - case checksum = "Checksum" - case packageInfo = "PackageInfo" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(guid, forKey: .guid) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(version, forKey: .version) - try encoderContainer.encodeIfPresent(changelog, forKey: .changelog) - try encoderContainer.encodeIfPresent(sourceUrl, forKey: .sourceUrl) - try encoderContainer.encodeIfPresent(checksum, forKey: .checksum) - try encoderContainer.encodeIfPresent(packageInfo, forKey: .packageInfo) - } -} diff --git a/Sources/JellyfinAPI/Models/InstallationInfoPackageInfo.swift b/Sources/JellyfinAPI/Models/InstallationInfoPackageInfo.swift deleted file mode 100644 index 971d9ba86..000000000 --- a/Sources/JellyfinAPI/Models/InstallationInfoPackageInfo.swift +++ /dev/null @@ -1,68 +0,0 @@ -// -// InstallationInfoPackageInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets package information for the installation. */ -public struct InstallationInfoPackageInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets a long description of the plugin containing features or helpful explanations. */ - public var description: String? - /** Gets or sets a short overview of what the plugin does. */ - public var overview: String? - /** Gets or sets the owner. */ - public var owner: String? - /** Gets or sets the category. */ - public var category: String? - /** Gets or sets the guid of the assembly associated with this plugin. This is used to identify the proper item for automatic updates. */ - public var guid: String? - /** Gets or sets the versions. */ - public var versions: [VersionInfo]? - /** Gets or sets the image url for the package. */ - public var imageUrl: String? - - public init(name: String? = nil, description: String? = nil, overview: String? = nil, owner: String? = nil, category: String? = nil, guid: String? = nil, versions: [VersionInfo]? = nil, imageUrl: String? = nil) { - self.name = name - self.description = description - self.overview = overview - self.owner = owner - self.category = category - self.guid = guid - self.versions = versions - self.imageUrl = imageUrl - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name - case description - case overview - case owner - case category - case guid - case versions - case imageUrl - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(description, forKey: .description) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(owner, forKey: .owner) - try encoderContainer.encodeIfPresent(category, forKey: .category) - try encoderContainer.encodeIfPresent(guid, forKey: .guid) - try encoderContainer.encodeIfPresent(versions, forKey: .versions) - try encoderContainer.encodeIfPresent(imageUrl, forKey: .imageUrl) - } -} diff --git a/Sources/JellyfinAPI/Models/IsoType.swift b/Sources/JellyfinAPI/Models/IsoType.swift deleted file mode 100644 index 4e37751a2..000000000 --- a/Sources/JellyfinAPI/Models/IsoType.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// IsoType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum IsoType. */ -public enum IsoType: String, Codable, CaseIterable { - case dvd = "Dvd" - case bluRay = "BluRay" -} diff --git a/Sources/JellyfinAPI/Models/ItemCounts.swift b/Sources/JellyfinAPI/Models/ItemCounts.swift deleted file mode 100644 index ce71b405b..000000000 --- a/Sources/JellyfinAPI/Models/ItemCounts.swift +++ /dev/null @@ -1,88 +0,0 @@ -// -// ItemCounts.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class LibrarySummary. */ -public struct ItemCounts: Codable, JSONEncodable, Hashable { - - /** Gets or sets the movie count. */ - public var movieCount: Int? - /** Gets or sets the series count. */ - public var seriesCount: Int? - /** Gets or sets the episode count. */ - public var episodeCount: Int? - /** Gets or sets the artist count. */ - public var artistCount: Int? - /** Gets or sets the program count. */ - public var programCount: Int? - /** Gets or sets the trailer count. */ - public var trailerCount: Int? - /** Gets or sets the song count. */ - public var songCount: Int? - /** Gets or sets the album count. */ - public var albumCount: Int? - /** Gets or sets the music video count. */ - public var musicVideoCount: Int? - /** Gets or sets the box set count. */ - public var boxSetCount: Int? - /** Gets or sets the book count. */ - public var bookCount: Int? - /** Gets or sets the item count. */ - public var itemCount: Int? - - public init(movieCount: Int? = nil, seriesCount: Int? = nil, episodeCount: Int? = nil, artistCount: Int? = nil, programCount: Int? = nil, trailerCount: Int? = nil, songCount: Int? = nil, albumCount: Int? = nil, musicVideoCount: Int? = nil, boxSetCount: Int? = nil, bookCount: Int? = nil, itemCount: Int? = nil) { - self.movieCount = movieCount - self.seriesCount = seriesCount - self.episodeCount = episodeCount - self.artistCount = artistCount - self.programCount = programCount - self.trailerCount = trailerCount - self.songCount = songCount - self.albumCount = albumCount - self.musicVideoCount = musicVideoCount - self.boxSetCount = boxSetCount - self.bookCount = bookCount - self.itemCount = itemCount - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case movieCount = "MovieCount" - case seriesCount = "SeriesCount" - case episodeCount = "EpisodeCount" - case artistCount = "ArtistCount" - case programCount = "ProgramCount" - case trailerCount = "TrailerCount" - case songCount = "SongCount" - case albumCount = "AlbumCount" - case musicVideoCount = "MusicVideoCount" - case boxSetCount = "BoxSetCount" - case bookCount = "BookCount" - case itemCount = "ItemCount" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(movieCount, forKey: .movieCount) - try encoderContainer.encodeIfPresent(seriesCount, forKey: .seriesCount) - try encoderContainer.encodeIfPresent(episodeCount, forKey: .episodeCount) - try encoderContainer.encodeIfPresent(artistCount, forKey: .artistCount) - try encoderContainer.encodeIfPresent(programCount, forKey: .programCount) - try encoderContainer.encodeIfPresent(trailerCount, forKey: .trailerCount) - try encoderContainer.encodeIfPresent(songCount, forKey: .songCount) - try encoderContainer.encodeIfPresent(albumCount, forKey: .albumCount) - try encoderContainer.encodeIfPresent(musicVideoCount, forKey: .musicVideoCount) - try encoderContainer.encodeIfPresent(boxSetCount, forKey: .boxSetCount) - try encoderContainer.encodeIfPresent(bookCount, forKey: .bookCount) - try encoderContainer.encodeIfPresent(itemCount, forKey: .itemCount) - } -} diff --git a/Sources/JellyfinAPI/Models/ItemFilter.swift b/Sources/JellyfinAPI/Models/ItemFilter.swift deleted file mode 100644 index 52ed1e8f3..000000000 --- a/Sources/JellyfinAPI/Models/ItemFilter.swift +++ /dev/null @@ -1,24 +0,0 @@ -// -// ItemFilter.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum ItemFilter. */ -public enum ItemFilter: String, Codable, CaseIterable { - case isFolder = "IsFolder" - case isNotFolder = "IsNotFolder" - case isUnplayed = "IsUnplayed" - case isPlayed = "IsPlayed" - case isFavorite = "IsFavorite" - case isResumable = "IsResumable" - case likes = "Likes" - case dislikes = "Dislikes" - case isFavoriteOrLikes = "IsFavoriteOrLikes" -} diff --git a/Sources/JellyfinAPI/Models/JoinGroupRequestDto.swift b/Sources/JellyfinAPI/Models/JoinGroupRequestDto.swift deleted file mode 100644 index b647577b3..000000000 --- a/Sources/JellyfinAPI/Models/JoinGroupRequestDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// JoinGroupRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class JoinGroupRequestDto. */ -public struct JoinGroupRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the group identifier. */ - public var groupId: String? - - public init(groupId: String? = nil) { - self.groupId = groupId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case groupId = "GroupId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(groupId, forKey: .groupId) - } -} diff --git a/Sources/JellyfinAPI/Models/KeepUntil.swift b/Sources/JellyfinAPI/Models/KeepUntil.swift deleted file mode 100644 index 2464be098..000000000 --- a/Sources/JellyfinAPI/Models/KeepUntil.swift +++ /dev/null @@ -1,18 +0,0 @@ -// -// KeepUntil.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum KeepUntil: String, Codable, CaseIterable { - case untilDeleted = "UntilDeleted" - case untilSpaceNeeded = "UntilSpaceNeeded" - case untilWatched = "UntilWatched" - case untilDate = "UntilDate" -} diff --git a/Sources/JellyfinAPI/Models/LibraryOptionInfoDto.swift b/Sources/JellyfinAPI/Models/LibraryOptionInfoDto.swift deleted file mode 100644 index 0df63ea8a..000000000 --- a/Sources/JellyfinAPI/Models/LibraryOptionInfoDto.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// LibraryOptionInfoDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Library option info dto. */ -public struct LibraryOptionInfoDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets name. */ - public var name: String? - /** Gets or sets a value indicating whether default enabled. */ - public var defaultEnabled: Bool? - - public init(name: String? = nil, defaultEnabled: Bool? = nil) { - self.name = name - self.defaultEnabled = defaultEnabled - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case defaultEnabled = "DefaultEnabled" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(defaultEnabled, forKey: .defaultEnabled) - } -} diff --git a/Sources/JellyfinAPI/Models/LibraryOptions.swift b/Sources/JellyfinAPI/Models/LibraryOptions.swift deleted file mode 100644 index 2c3fa9508..000000000 --- a/Sources/JellyfinAPI/Models/LibraryOptions.swift +++ /dev/null @@ -1,139 +0,0 @@ -// -// LibraryOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct LibraryOptions: Codable, JSONEncodable, Hashable { - - public var enablePhotos: Bool? - public var enableRealtimeMonitor: Bool? - public var enableChapterImageExtraction: Bool? - public var extractChapterImagesDuringLibraryScan: Bool? - public var pathInfos: [MediaPathInfo]? - public var saveLocalMetadata: Bool? - @available(*, deprecated, message: "This property is deprecated.") - public var enableInternetProviders: Bool? - public var enableAutomaticSeriesGrouping: Bool? - public var enableEmbeddedTitles: Bool? - public var enableEmbeddedEpisodeInfos: Bool? - public var automaticRefreshIntervalDays: Int? - /** Gets or sets the preferred metadata language. */ - public var preferredMetadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - public var seasonZeroDisplayName: String? - public var metadataSavers: [String]? - public var disabledLocalMetadataReaders: [String]? - public var localMetadataReaderOrder: [String]? - public var disabledSubtitleFetchers: [String]? - public var subtitleFetcherOrder: [String]? - public var skipSubtitlesIfEmbeddedSubtitlesPresent: Bool? - public var skipSubtitlesIfAudioTrackMatches: Bool? - public var subtitleDownloadLanguages: [String]? - public var requirePerfectSubtitleMatch: Bool? - public var saveSubtitlesWithMedia: Bool? - public var automaticallyAddToCollection: Bool? - /** An enum representing the options to disable embedded subs. */ - public var allowEmbeddedSubtitles: EmbeddedSubtitleOptions? - public var typeOptions: [TypeOptions]? - - public init(enablePhotos: Bool? = nil, enableRealtimeMonitor: Bool? = nil, enableChapterImageExtraction: Bool? = nil, extractChapterImagesDuringLibraryScan: Bool? = nil, pathInfos: [MediaPathInfo]? = nil, saveLocalMetadata: Bool? = nil, enableInternetProviders: Bool? = nil, enableAutomaticSeriesGrouping: Bool? = nil, enableEmbeddedTitles: Bool? = nil, enableEmbeddedEpisodeInfos: Bool? = nil, automaticRefreshIntervalDays: Int? = nil, preferredMetadataLanguage: String? = nil, metadataCountryCode: String? = nil, seasonZeroDisplayName: String? = nil, metadataSavers: [String]? = nil, disabledLocalMetadataReaders: [String]? = nil, localMetadataReaderOrder: [String]? = nil, disabledSubtitleFetchers: [String]? = nil, subtitleFetcherOrder: [String]? = nil, skipSubtitlesIfEmbeddedSubtitlesPresent: Bool? = nil, skipSubtitlesIfAudioTrackMatches: Bool? = nil, subtitleDownloadLanguages: [String]? = nil, requirePerfectSubtitleMatch: Bool? = nil, saveSubtitlesWithMedia: Bool? = nil, automaticallyAddToCollection: Bool? = nil, allowEmbeddedSubtitles: EmbeddedSubtitleOptions? = nil, typeOptions: [TypeOptions]? = nil) { - self.enablePhotos = enablePhotos - self.enableRealtimeMonitor = enableRealtimeMonitor - self.enableChapterImageExtraction = enableChapterImageExtraction - self.extractChapterImagesDuringLibraryScan = extractChapterImagesDuringLibraryScan - self.pathInfos = pathInfos - self.saveLocalMetadata = saveLocalMetadata - self.enableInternetProviders = enableInternetProviders - self.enableAutomaticSeriesGrouping = enableAutomaticSeriesGrouping - self.enableEmbeddedTitles = enableEmbeddedTitles - self.enableEmbeddedEpisodeInfos = enableEmbeddedEpisodeInfos - self.automaticRefreshIntervalDays = automaticRefreshIntervalDays - self.preferredMetadataLanguage = preferredMetadataLanguage - self.metadataCountryCode = metadataCountryCode - self.seasonZeroDisplayName = seasonZeroDisplayName - self.metadataSavers = metadataSavers - self.disabledLocalMetadataReaders = disabledLocalMetadataReaders - self.localMetadataReaderOrder = localMetadataReaderOrder - self.disabledSubtitleFetchers = disabledSubtitleFetchers - self.subtitleFetcherOrder = subtitleFetcherOrder - self.skipSubtitlesIfEmbeddedSubtitlesPresent = skipSubtitlesIfEmbeddedSubtitlesPresent - self.skipSubtitlesIfAudioTrackMatches = skipSubtitlesIfAudioTrackMatches - self.subtitleDownloadLanguages = subtitleDownloadLanguages - self.requirePerfectSubtitleMatch = requirePerfectSubtitleMatch - self.saveSubtitlesWithMedia = saveSubtitlesWithMedia - self.automaticallyAddToCollection = automaticallyAddToCollection - self.allowEmbeddedSubtitles = allowEmbeddedSubtitles - self.typeOptions = typeOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case enablePhotos = "EnablePhotos" - case enableRealtimeMonitor = "EnableRealtimeMonitor" - case enableChapterImageExtraction = "EnableChapterImageExtraction" - case extractChapterImagesDuringLibraryScan = "ExtractChapterImagesDuringLibraryScan" - case pathInfos = "PathInfos" - case saveLocalMetadata = "SaveLocalMetadata" - case enableInternetProviders = "EnableInternetProviders" - case enableAutomaticSeriesGrouping = "EnableAutomaticSeriesGrouping" - case enableEmbeddedTitles = "EnableEmbeddedTitles" - case enableEmbeddedEpisodeInfos = "EnableEmbeddedEpisodeInfos" - case automaticRefreshIntervalDays = "AutomaticRefreshIntervalDays" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case seasonZeroDisplayName = "SeasonZeroDisplayName" - case metadataSavers = "MetadataSavers" - case disabledLocalMetadataReaders = "DisabledLocalMetadataReaders" - case localMetadataReaderOrder = "LocalMetadataReaderOrder" - case disabledSubtitleFetchers = "DisabledSubtitleFetchers" - case subtitleFetcherOrder = "SubtitleFetcherOrder" - case skipSubtitlesIfEmbeddedSubtitlesPresent = "SkipSubtitlesIfEmbeddedSubtitlesPresent" - case skipSubtitlesIfAudioTrackMatches = "SkipSubtitlesIfAudioTrackMatches" - case subtitleDownloadLanguages = "SubtitleDownloadLanguages" - case requirePerfectSubtitleMatch = "RequirePerfectSubtitleMatch" - case saveSubtitlesWithMedia = "SaveSubtitlesWithMedia" - case automaticallyAddToCollection = "AutomaticallyAddToCollection" - case allowEmbeddedSubtitles = "AllowEmbeddedSubtitles" - case typeOptions = "TypeOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(enablePhotos, forKey: .enablePhotos) - try encoderContainer.encodeIfPresent(enableRealtimeMonitor, forKey: .enableRealtimeMonitor) - try encoderContainer.encodeIfPresent(enableChapterImageExtraction, forKey: .enableChapterImageExtraction) - try encoderContainer.encodeIfPresent(extractChapterImagesDuringLibraryScan, forKey: .extractChapterImagesDuringLibraryScan) - try encoderContainer.encodeIfPresent(pathInfos, forKey: .pathInfos) - try encoderContainer.encodeIfPresent(saveLocalMetadata, forKey: .saveLocalMetadata) - try encoderContainer.encodeIfPresent(enableInternetProviders, forKey: .enableInternetProviders) - try encoderContainer.encodeIfPresent(enableAutomaticSeriesGrouping, forKey: .enableAutomaticSeriesGrouping) - try encoderContainer.encodeIfPresent(enableEmbeddedTitles, forKey: .enableEmbeddedTitles) - try encoderContainer.encodeIfPresent(enableEmbeddedEpisodeInfos, forKey: .enableEmbeddedEpisodeInfos) - try encoderContainer.encodeIfPresent(automaticRefreshIntervalDays, forKey: .automaticRefreshIntervalDays) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(seasonZeroDisplayName, forKey: .seasonZeroDisplayName) - try encoderContainer.encodeIfPresent(metadataSavers, forKey: .metadataSavers) - try encoderContainer.encodeIfPresent(disabledLocalMetadataReaders, forKey: .disabledLocalMetadataReaders) - try encoderContainer.encodeIfPresent(localMetadataReaderOrder, forKey: .localMetadataReaderOrder) - try encoderContainer.encodeIfPresent(disabledSubtitleFetchers, forKey: .disabledSubtitleFetchers) - try encoderContainer.encodeIfPresent(subtitleFetcherOrder, forKey: .subtitleFetcherOrder) - try encoderContainer.encodeIfPresent(skipSubtitlesIfEmbeddedSubtitlesPresent, forKey: .skipSubtitlesIfEmbeddedSubtitlesPresent) - try encoderContainer.encodeIfPresent(skipSubtitlesIfAudioTrackMatches, forKey: .skipSubtitlesIfAudioTrackMatches) - try encoderContainer.encodeIfPresent(subtitleDownloadLanguages, forKey: .subtitleDownloadLanguages) - try encoderContainer.encodeIfPresent(requirePerfectSubtitleMatch, forKey: .requirePerfectSubtitleMatch) - try encoderContainer.encodeIfPresent(saveSubtitlesWithMedia, forKey: .saveSubtitlesWithMedia) - try encoderContainer.encodeIfPresent(automaticallyAddToCollection, forKey: .automaticallyAddToCollection) - try encoderContainer.encodeIfPresent(allowEmbeddedSubtitles, forKey: .allowEmbeddedSubtitles) - try encoderContainer.encodeIfPresent(typeOptions, forKey: .typeOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/LibraryOptionsResultDto.swift b/Sources/JellyfinAPI/Models/LibraryOptionsResultDto.swift deleted file mode 100644 index ff178b30a..000000000 --- a/Sources/JellyfinAPI/Models/LibraryOptionsResultDto.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// LibraryOptionsResultDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Library options result dto. */ -public struct LibraryOptionsResultDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the metadata savers. */ - public var metadataSavers: [LibraryOptionInfoDto]? - /** Gets or sets the metadata readers. */ - public var metadataReaders: [LibraryOptionInfoDto]? - /** Gets or sets the subtitle fetchers. */ - public var subtitleFetchers: [LibraryOptionInfoDto]? - /** Gets or sets the type options. */ - public var typeOptions: [LibraryTypeOptionsDto]? - - public init(metadataSavers: [LibraryOptionInfoDto]? = nil, metadataReaders: [LibraryOptionInfoDto]? = nil, subtitleFetchers: [LibraryOptionInfoDto]? = nil, typeOptions: [LibraryTypeOptionsDto]? = nil) { - self.metadataSavers = metadataSavers - self.metadataReaders = metadataReaders - self.subtitleFetchers = subtitleFetchers - self.typeOptions = typeOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case metadataSavers = "MetadataSavers" - case metadataReaders = "MetadataReaders" - case subtitleFetchers = "SubtitleFetchers" - case typeOptions = "TypeOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(metadataSavers, forKey: .metadataSavers) - try encoderContainer.encodeIfPresent(metadataReaders, forKey: .metadataReaders) - try encoderContainer.encodeIfPresent(subtitleFetchers, forKey: .subtitleFetchers) - try encoderContainer.encodeIfPresent(typeOptions, forKey: .typeOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/LibraryTypeOptionsDto.swift b/Sources/JellyfinAPI/Models/LibraryTypeOptionsDto.swift deleted file mode 100644 index c754872cd..000000000 --- a/Sources/JellyfinAPI/Models/LibraryTypeOptionsDto.swift +++ /dev/null @@ -1,53 +0,0 @@ -// -// LibraryTypeOptionsDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Library type options dto. */ -public struct LibraryTypeOptionsDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the type. */ - public var type: String? - /** Gets or sets the metadata fetchers. */ - public var metadataFetchers: [LibraryOptionInfoDto]? - /** Gets or sets the image fetchers. */ - public var imageFetchers: [LibraryOptionInfoDto]? - /** Gets or sets the supported image types. */ - public var supportedImageTypes: [ImageType]? - /** Gets or sets the default image options. */ - public var defaultImageOptions: [ImageOption]? - - public init(type: String? = nil, metadataFetchers: [LibraryOptionInfoDto]? = nil, imageFetchers: [LibraryOptionInfoDto]? = nil, supportedImageTypes: [ImageType]? = nil, defaultImageOptions: [ImageOption]? = nil) { - self.type = type - self.metadataFetchers = metadataFetchers - self.imageFetchers = imageFetchers - self.supportedImageTypes = supportedImageTypes - self.defaultImageOptions = defaultImageOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case type = "Type" - case metadataFetchers = "MetadataFetchers" - case imageFetchers = "ImageFetchers" - case supportedImageTypes = "SupportedImageTypes" - case defaultImageOptions = "DefaultImageOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(metadataFetchers, forKey: .metadataFetchers) - try encoderContainer.encodeIfPresent(imageFetchers, forKey: .imageFetchers) - try encoderContainer.encodeIfPresent(supportedImageTypes, forKey: .supportedImageTypes) - try encoderContainer.encodeIfPresent(defaultImageOptions, forKey: .defaultImageOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/LibraryUpdateInfo.swift b/Sources/JellyfinAPI/Models/LibraryUpdateInfo.swift deleted file mode 100644 index 1f0dd67b4..000000000 --- a/Sources/JellyfinAPI/Models/LibraryUpdateInfo.swift +++ /dev/null @@ -1,61 +0,0 @@ -// -// LibraryUpdateInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class LibraryUpdateInfo. */ -public struct LibraryUpdateInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the folders added to. */ - public var foldersAddedTo: [String]? - /** Gets or sets the folders removed from. */ - public var foldersRemovedFrom: [String]? - /** Gets or sets the items added. */ - public var itemsAdded: [String]? - /** Gets or sets the items removed. */ - public var itemsRemoved: [String]? - /** Gets or sets the items updated. */ - public var itemsUpdated: [String]? - public var collectionFolders: [String]? - public var isEmpty: Bool? - - public init(foldersAddedTo: [String]? = nil, foldersRemovedFrom: [String]? = nil, itemsAdded: [String]? = nil, itemsRemoved: [String]? = nil, itemsUpdated: [String]? = nil, collectionFolders: [String]? = nil, isEmpty: Bool? = nil) { - self.foldersAddedTo = foldersAddedTo - self.foldersRemovedFrom = foldersRemovedFrom - self.itemsAdded = itemsAdded - self.itemsRemoved = itemsRemoved - self.itemsUpdated = itemsUpdated - self.collectionFolders = collectionFolders - self.isEmpty = isEmpty - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case foldersAddedTo = "FoldersAddedTo" - case foldersRemovedFrom = "FoldersRemovedFrom" - case itemsAdded = "ItemsAdded" - case itemsRemoved = "ItemsRemoved" - case itemsUpdated = "ItemsUpdated" - case collectionFolders = "CollectionFolders" - case isEmpty = "IsEmpty" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(foldersAddedTo, forKey: .foldersAddedTo) - try encoderContainer.encodeIfPresent(foldersRemovedFrom, forKey: .foldersRemovedFrom) - try encoderContainer.encodeIfPresent(itemsAdded, forKey: .itemsAdded) - try encoderContainer.encodeIfPresent(itemsRemoved, forKey: .itemsRemoved) - try encoderContainer.encodeIfPresent(itemsUpdated, forKey: .itemsUpdated) - try encoderContainer.encodeIfPresent(collectionFolders, forKey: .collectionFolders) - try encoderContainer.encodeIfPresent(isEmpty, forKey: .isEmpty) - } -} diff --git a/Sources/JellyfinAPI/Models/ListingsProviderInfo.swift b/Sources/JellyfinAPI/Models/ListingsProviderInfo.swift deleted file mode 100644 index 526906f46..000000000 --- a/Sources/JellyfinAPI/Models/ListingsProviderInfo.swift +++ /dev/null @@ -1,99 +0,0 @@ -// -// ListingsProviderInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ListingsProviderInfo: Codable, JSONEncodable, Hashable { - - public var id: String? - public var type: String? - public var username: String? - public var password: String? - public var listingsId: String? - public var zipCode: String? - public var country: String? - public var path: String? - public var enabledTuners: [String]? - public var enableAllTuners: Bool? - public var newsCategories: [String]? - public var sportsCategories: [String]? - public var kidsCategories: [String]? - public var movieCategories: [String]? - public var channelMappings: [NameValuePair]? - public var moviePrefix: String? - public var preferredLanguage: String? - public var userAgent: String? - - public init(id: String? = nil, type: String? = nil, username: String? = nil, password: String? = nil, listingsId: String? = nil, zipCode: String? = nil, country: String? = nil, path: String? = nil, enabledTuners: [String]? = nil, enableAllTuners: Bool? = nil, newsCategories: [String]? = nil, sportsCategories: [String]? = nil, kidsCategories: [String]? = nil, movieCategories: [String]? = nil, channelMappings: [NameValuePair]? = nil, moviePrefix: String? = nil, preferredLanguage: String? = nil, userAgent: String? = nil) { - self.id = id - self.type = type - self.username = username - self.password = password - self.listingsId = listingsId - self.zipCode = zipCode - self.country = country - self.path = path - self.enabledTuners = enabledTuners - self.enableAllTuners = enableAllTuners - self.newsCategories = newsCategories - self.sportsCategories = sportsCategories - self.kidsCategories = kidsCategories - self.movieCategories = movieCategories - self.channelMappings = channelMappings - self.moviePrefix = moviePrefix - self.preferredLanguage = preferredLanguage - self.userAgent = userAgent - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case type = "Type" - case username = "Username" - case password = "Password" - case listingsId = "ListingsId" - case zipCode = "ZipCode" - case country = "Country" - case path = "Path" - case enabledTuners = "EnabledTuners" - case enableAllTuners = "EnableAllTuners" - case newsCategories = "NewsCategories" - case sportsCategories = "SportsCategories" - case kidsCategories = "KidsCategories" - case movieCategories = "MovieCategories" - case channelMappings = "ChannelMappings" - case moviePrefix = "MoviePrefix" - case preferredLanguage = "PreferredLanguage" - case userAgent = "UserAgent" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(username, forKey: .username) - try encoderContainer.encodeIfPresent(password, forKey: .password) - try encoderContainer.encodeIfPresent(listingsId, forKey: .listingsId) - try encoderContainer.encodeIfPresent(zipCode, forKey: .zipCode) - try encoderContainer.encodeIfPresent(country, forKey: .country) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(enabledTuners, forKey: .enabledTuners) - try encoderContainer.encodeIfPresent(enableAllTuners, forKey: .enableAllTuners) - try encoderContainer.encodeIfPresent(newsCategories, forKey: .newsCategories) - try encoderContainer.encodeIfPresent(sportsCategories, forKey: .sportsCategories) - try encoderContainer.encodeIfPresent(kidsCategories, forKey: .kidsCategories) - try encoderContainer.encodeIfPresent(movieCategories, forKey: .movieCategories) - try encoderContainer.encodeIfPresent(channelMappings, forKey: .channelMappings) - try encoderContainer.encodeIfPresent(moviePrefix, forKey: .moviePrefix) - try encoderContainer.encodeIfPresent(preferredLanguage, forKey: .preferredLanguage) - try encoderContainer.encodeIfPresent(userAgent, forKey: .userAgent) - } -} diff --git a/Sources/JellyfinAPI/Models/LiveStreamResponse.swift b/Sources/JellyfinAPI/Models/LiveStreamResponse.swift deleted file mode 100644 index b9a8928e0..000000000 --- a/Sources/JellyfinAPI/Models/LiveStreamResponse.swift +++ /dev/null @@ -1,31 +0,0 @@ -// -// LiveStreamResponse.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct LiveStreamResponse: Codable, JSONEncodable, Hashable { - - public var mediaSource: LiveStreamResponseMediaSource? - - public init(mediaSource: LiveStreamResponseMediaSource? = nil) { - self.mediaSource = mediaSource - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case mediaSource = "MediaSource" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(mediaSource, forKey: .mediaSource) - } -} diff --git a/Sources/JellyfinAPI/Models/LiveStreamResponseMediaSource.swift b/Sources/JellyfinAPI/Models/LiveStreamResponseMediaSource.swift deleted file mode 100644 index 9571f134f..000000000 --- a/Sources/JellyfinAPI/Models/LiveStreamResponseMediaSource.swift +++ /dev/null @@ -1,196 +0,0 @@ -// -// LiveStreamResponseMediaSource.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct LiveStreamResponseMediaSource: Codable, JSONEncodable, Hashable { - - public var _protocol: MediaProtocol? - public var id: String? - public var path: String? - public var encoderPath: String? - public var encoderProtocol: MediaProtocol? - public var type: MediaSourceType? - public var container: String? - public var size: Int64? - public var name: String? - /** Gets or sets a value indicating whether the media is remote. Differentiate internet url vs local network. */ - public var isRemote: Bool? - public var eTag: String? - public var runTimeTicks: Int64? - public var readAtNativeFramerate: Bool? - public var ignoreDts: Bool? - public var ignoreIndex: Bool? - public var genPtsInput: Bool? - public var supportsTranscoding: Bool? - public var supportsDirectStream: Bool? - public var supportsDirectPlay: Bool? - public var isInfiniteStream: Bool? - public var requiresOpening: Bool? - public var openToken: String? - public var requiresClosing: Bool? - public var liveStreamId: String? - public var bufferMs: Int? - public var requiresLooping: Bool? - public var supportsProbing: Bool? - public var videoType: VideoType? - public var isoType: IsoType? - public var video3DFormat: Video3DFormat? - public var mediaStreams: [MediaStream]? - public var mediaAttachments: [MediaAttachment]? - public var formats: [String]? - public var bitrate: Int? - public var timestamp: TransportStreamTimestamp? - public var requiredHttpHeaders: [String: String]? - public var transcodingUrl: String? - public var transcodingSubProtocol: String? - public var transcodingContainer: String? - public var analyzeDurationMs: Int? - public var defaultAudioStreamIndex: Int? - public var defaultSubtitleStreamIndex: Int? - - public init(_protocol: MediaProtocol? = nil, id: String? = nil, path: String? = nil, encoderPath: String? = nil, encoderProtocol: MediaProtocol? = nil, type: MediaSourceType? = nil, container: String? = nil, size: Int64? = nil, name: String? = nil, isRemote: Bool? = nil, eTag: String? = nil, runTimeTicks: Int64? = nil, readAtNativeFramerate: Bool? = nil, ignoreDts: Bool? = nil, ignoreIndex: Bool? = nil, genPtsInput: Bool? = nil, supportsTranscoding: Bool? = nil, supportsDirectStream: Bool? = nil, supportsDirectPlay: Bool? = nil, isInfiniteStream: Bool? = nil, requiresOpening: Bool? = nil, openToken: String? = nil, requiresClosing: Bool? = nil, liveStreamId: String? = nil, bufferMs: Int? = nil, requiresLooping: Bool? = nil, supportsProbing: Bool? = nil, videoType: VideoType? = nil, isoType: IsoType? = nil, video3DFormat: Video3DFormat? = nil, mediaStreams: [MediaStream]? = nil, mediaAttachments: [MediaAttachment]? = nil, formats: [String]? = nil, bitrate: Int? = nil, timestamp: TransportStreamTimestamp? = nil, requiredHttpHeaders: [String: String]? = nil, transcodingUrl: String? = nil, transcodingSubProtocol: String? = nil, transcodingContainer: String? = nil, analyzeDurationMs: Int? = nil, defaultAudioStreamIndex: Int? = nil, defaultSubtitleStreamIndex: Int? = nil) { - self._protocol = _protocol - self.id = id - self.path = path - self.encoderPath = encoderPath - self.encoderProtocol = encoderProtocol - self.type = type - self.container = container - self.size = size - self.name = name - self.isRemote = isRemote - self.eTag = eTag - self.runTimeTicks = runTimeTicks - self.readAtNativeFramerate = readAtNativeFramerate - self.ignoreDts = ignoreDts - self.ignoreIndex = ignoreIndex - self.genPtsInput = genPtsInput - self.supportsTranscoding = supportsTranscoding - self.supportsDirectStream = supportsDirectStream - self.supportsDirectPlay = supportsDirectPlay - self.isInfiniteStream = isInfiniteStream - self.requiresOpening = requiresOpening - self.openToken = openToken - self.requiresClosing = requiresClosing - self.liveStreamId = liveStreamId - self.bufferMs = bufferMs - self.requiresLooping = requiresLooping - self.supportsProbing = supportsProbing - self.videoType = videoType - self.isoType = isoType - self.video3DFormat = video3DFormat - self.mediaStreams = mediaStreams - self.mediaAttachments = mediaAttachments - self.formats = formats - self.bitrate = bitrate - self.timestamp = timestamp - self.requiredHttpHeaders = requiredHttpHeaders - self.transcodingUrl = transcodingUrl - self.transcodingSubProtocol = transcodingSubProtocol - self.transcodingContainer = transcodingContainer - self.analyzeDurationMs = analyzeDurationMs - self.defaultAudioStreamIndex = defaultAudioStreamIndex - self.defaultSubtitleStreamIndex = defaultSubtitleStreamIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case _protocol = "Protocol" - case id = "Id" - case path = "Path" - case encoderPath = "EncoderPath" - case encoderProtocol = "EncoderProtocol" - case type = "Type" - case container = "Container" - case size = "Size" - case name = "Name" - case isRemote = "IsRemote" - case eTag = "ETag" - case runTimeTicks = "RunTimeTicks" - case readAtNativeFramerate = "ReadAtNativeFramerate" - case ignoreDts = "IgnoreDts" - case ignoreIndex = "IgnoreIndex" - case genPtsInput = "GenPtsInput" - case supportsTranscoding = "SupportsTranscoding" - case supportsDirectStream = "SupportsDirectStream" - case supportsDirectPlay = "SupportsDirectPlay" - case isInfiniteStream = "IsInfiniteStream" - case requiresOpening = "RequiresOpening" - case openToken = "OpenToken" - case requiresClosing = "RequiresClosing" - case liveStreamId = "LiveStreamId" - case bufferMs = "BufferMs" - case requiresLooping = "RequiresLooping" - case supportsProbing = "SupportsProbing" - case videoType = "VideoType" - case isoType = "IsoType" - case video3DFormat = "Video3DFormat" - case mediaStreams = "MediaStreams" - case mediaAttachments = "MediaAttachments" - case formats = "Formats" - case bitrate = "Bitrate" - case timestamp = "Timestamp" - case requiredHttpHeaders = "RequiredHttpHeaders" - case transcodingUrl = "TranscodingUrl" - case transcodingSubProtocol = "TranscodingSubProtocol" - case transcodingContainer = "TranscodingContainer" - case analyzeDurationMs = "AnalyzeDurationMs" - case defaultAudioStreamIndex = "DefaultAudioStreamIndex" - case defaultSubtitleStreamIndex = "DefaultSubtitleStreamIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(_protocol, forKey: ._protocol) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(encoderPath, forKey: .encoderPath) - try encoderContainer.encodeIfPresent(encoderProtocol, forKey: .encoderProtocol) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(size, forKey: .size) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(isRemote, forKey: .isRemote) - try encoderContainer.encodeIfPresent(eTag, forKey: .eTag) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(readAtNativeFramerate, forKey: .readAtNativeFramerate) - try encoderContainer.encodeIfPresent(ignoreDts, forKey: .ignoreDts) - try encoderContainer.encodeIfPresent(ignoreIndex, forKey: .ignoreIndex) - try encoderContainer.encodeIfPresent(genPtsInput, forKey: .genPtsInput) - try encoderContainer.encodeIfPresent(supportsTranscoding, forKey: .supportsTranscoding) - try encoderContainer.encodeIfPresent(supportsDirectStream, forKey: .supportsDirectStream) - try encoderContainer.encodeIfPresent(supportsDirectPlay, forKey: .supportsDirectPlay) - try encoderContainer.encodeIfPresent(isInfiniteStream, forKey: .isInfiniteStream) - try encoderContainer.encodeIfPresent(requiresOpening, forKey: .requiresOpening) - try encoderContainer.encodeIfPresent(openToken, forKey: .openToken) - try encoderContainer.encodeIfPresent(requiresClosing, forKey: .requiresClosing) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - try encoderContainer.encodeIfPresent(bufferMs, forKey: .bufferMs) - try encoderContainer.encodeIfPresent(requiresLooping, forKey: .requiresLooping) - try encoderContainer.encodeIfPresent(supportsProbing, forKey: .supportsProbing) - try encoderContainer.encodeIfPresent(videoType, forKey: .videoType) - try encoderContainer.encodeIfPresent(isoType, forKey: .isoType) - try encoderContainer.encodeIfPresent(video3DFormat, forKey: .video3DFormat) - try encoderContainer.encodeIfPresent(mediaStreams, forKey: .mediaStreams) - try encoderContainer.encodeIfPresent(mediaAttachments, forKey: .mediaAttachments) - try encoderContainer.encodeIfPresent(formats, forKey: .formats) - try encoderContainer.encodeIfPresent(bitrate, forKey: .bitrate) - try encoderContainer.encodeIfPresent(timestamp, forKey: .timestamp) - try encoderContainer.encodeIfPresent(requiredHttpHeaders, forKey: .requiredHttpHeaders) - try encoderContainer.encodeIfPresent(transcodingUrl, forKey: .transcodingUrl) - try encoderContainer.encodeIfPresent(transcodingSubProtocol, forKey: .transcodingSubProtocol) - try encoderContainer.encodeIfPresent(transcodingContainer, forKey: .transcodingContainer) - try encoderContainer.encodeIfPresent(analyzeDurationMs, forKey: .analyzeDurationMs) - try encoderContainer.encodeIfPresent(defaultAudioStreamIndex, forKey: .defaultAudioStreamIndex) - try encoderContainer.encodeIfPresent(defaultSubtitleStreamIndex, forKey: .defaultSubtitleStreamIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/LiveTvInfo.swift b/Sources/JellyfinAPI/Models/LiveTvInfo.swift deleted file mode 100644 index d2da4d1a0..000000000 --- a/Sources/JellyfinAPI/Models/LiveTvInfo.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// LiveTvInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct LiveTvInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the services. */ - public var services: [LiveTvServiceInfo]? - /** Gets or sets a value indicating whether this instance is enabled. */ - public var isEnabled: Bool? - /** Gets or sets the enabled users. */ - public var enabledUsers: [String]? - - public init(services: [LiveTvServiceInfo]? = nil, isEnabled: Bool? = nil, enabledUsers: [String]? = nil) { - self.services = services - self.isEnabled = isEnabled - self.enabledUsers = enabledUsers - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case services = "Services" - case isEnabled = "IsEnabled" - case enabledUsers = "EnabledUsers" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(services, forKey: .services) - try encoderContainer.encodeIfPresent(isEnabled, forKey: .isEnabled) - try encoderContainer.encodeIfPresent(enabledUsers, forKey: .enabledUsers) - } -} diff --git a/Sources/JellyfinAPI/Models/LiveTvOptions.swift b/Sources/JellyfinAPI/Models/LiveTvOptions.swift deleted file mode 100644 index 39087bb5e..000000000 --- a/Sources/JellyfinAPI/Models/LiveTvOptions.swift +++ /dev/null @@ -1,79 +0,0 @@ -// -// LiveTvOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct LiveTvOptions: Codable, JSONEncodable, Hashable { - - public var guideDays: Int? - public var recordingPath: String? - public var movieRecordingPath: String? - public var seriesRecordingPath: String? - public var enableRecordingSubfolders: Bool? - public var enableOriginalAudioWithEncodedRecordings: Bool? - public var tunerHosts: [TunerHostInfo]? - public var listingProviders: [ListingsProviderInfo]? - public var prePaddingSeconds: Int? - public var postPaddingSeconds: Int? - public var mediaLocationsCreated: [String]? - public var recordingPostProcessor: String? - public var recordingPostProcessorArguments: String? - - public init(guideDays: Int? = nil, recordingPath: String? = nil, movieRecordingPath: String? = nil, seriesRecordingPath: String? = nil, enableRecordingSubfolders: Bool? = nil, enableOriginalAudioWithEncodedRecordings: Bool? = nil, tunerHosts: [TunerHostInfo]? = nil, listingProviders: [ListingsProviderInfo]? = nil, prePaddingSeconds: Int? = nil, postPaddingSeconds: Int? = nil, mediaLocationsCreated: [String]? = nil, recordingPostProcessor: String? = nil, recordingPostProcessorArguments: String? = nil) { - self.guideDays = guideDays - self.recordingPath = recordingPath - self.movieRecordingPath = movieRecordingPath - self.seriesRecordingPath = seriesRecordingPath - self.enableRecordingSubfolders = enableRecordingSubfolders - self.enableOriginalAudioWithEncodedRecordings = enableOriginalAudioWithEncodedRecordings - self.tunerHosts = tunerHosts - self.listingProviders = listingProviders - self.prePaddingSeconds = prePaddingSeconds - self.postPaddingSeconds = postPaddingSeconds - self.mediaLocationsCreated = mediaLocationsCreated - self.recordingPostProcessor = recordingPostProcessor - self.recordingPostProcessorArguments = recordingPostProcessorArguments - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case guideDays = "GuideDays" - case recordingPath = "RecordingPath" - case movieRecordingPath = "MovieRecordingPath" - case seriesRecordingPath = "SeriesRecordingPath" - case enableRecordingSubfolders = "EnableRecordingSubfolders" - case enableOriginalAudioWithEncodedRecordings = "EnableOriginalAudioWithEncodedRecordings" - case tunerHosts = "TunerHosts" - case listingProviders = "ListingProviders" - case prePaddingSeconds = "PrePaddingSeconds" - case postPaddingSeconds = "PostPaddingSeconds" - case mediaLocationsCreated = "MediaLocationsCreated" - case recordingPostProcessor = "RecordingPostProcessor" - case recordingPostProcessorArguments = "RecordingPostProcessorArguments" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(guideDays, forKey: .guideDays) - try encoderContainer.encodeIfPresent(recordingPath, forKey: .recordingPath) - try encoderContainer.encodeIfPresent(movieRecordingPath, forKey: .movieRecordingPath) - try encoderContainer.encodeIfPresent(seriesRecordingPath, forKey: .seriesRecordingPath) - try encoderContainer.encodeIfPresent(enableRecordingSubfolders, forKey: .enableRecordingSubfolders) - try encoderContainer.encodeIfPresent(enableOriginalAudioWithEncodedRecordings, forKey: .enableOriginalAudioWithEncodedRecordings) - try encoderContainer.encodeIfPresent(tunerHosts, forKey: .tunerHosts) - try encoderContainer.encodeIfPresent(listingProviders, forKey: .listingProviders) - try encoderContainer.encodeIfPresent(prePaddingSeconds, forKey: .prePaddingSeconds) - try encoderContainer.encodeIfPresent(postPaddingSeconds, forKey: .postPaddingSeconds) - try encoderContainer.encodeIfPresent(mediaLocationsCreated, forKey: .mediaLocationsCreated) - try encoderContainer.encodeIfPresent(recordingPostProcessor, forKey: .recordingPostProcessor) - try encoderContainer.encodeIfPresent(recordingPostProcessorArguments, forKey: .recordingPostProcessorArguments) - } -} diff --git a/Sources/JellyfinAPI/Models/LiveTvServiceInfo.swift b/Sources/JellyfinAPI/Models/LiveTvServiceInfo.swift deleted file mode 100644 index 591f011a8..000000000 --- a/Sources/JellyfinAPI/Models/LiveTvServiceInfo.swift +++ /dev/null @@ -1,67 +0,0 @@ -// -// LiveTvServiceInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class ServiceInfo. */ -public struct LiveTvServiceInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the home page URL. */ - public var homePageUrl: String? - /** Gets or sets the status. */ - public var status: LiveTvServiceStatus? - /** Gets or sets the status message. */ - public var statusMessage: String? - /** Gets or sets the version. */ - public var version: String? - /** Gets or sets a value indicating whether this instance has update available. */ - public var hasUpdateAvailable: Bool? - /** Gets or sets a value indicating whether this instance is visible. */ - public var isVisible: Bool? - public var tuners: [String]? - - public init(name: String? = nil, homePageUrl: String? = nil, status: LiveTvServiceStatus? = nil, statusMessage: String? = nil, version: String? = nil, hasUpdateAvailable: Bool? = nil, isVisible: Bool? = nil, tuners: [String]? = nil) { - self.name = name - self.homePageUrl = homePageUrl - self.status = status - self.statusMessage = statusMessage - self.version = version - self.hasUpdateAvailable = hasUpdateAvailable - self.isVisible = isVisible - self.tuners = tuners - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case homePageUrl = "HomePageUrl" - case status = "Status" - case statusMessage = "StatusMessage" - case version = "Version" - case hasUpdateAvailable = "HasUpdateAvailable" - case isVisible = "IsVisible" - case tuners = "Tuners" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(homePageUrl, forKey: .homePageUrl) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(statusMessage, forKey: .statusMessage) - try encoderContainer.encodeIfPresent(version, forKey: .version) - try encoderContainer.encodeIfPresent(hasUpdateAvailable, forKey: .hasUpdateAvailable) - try encoderContainer.encodeIfPresent(isVisible, forKey: .isVisible) - try encoderContainer.encodeIfPresent(tuners, forKey: .tuners) - } -} diff --git a/Sources/JellyfinAPI/Models/LiveTvServiceStatus.swift b/Sources/JellyfinAPI/Models/LiveTvServiceStatus.swift deleted file mode 100644 index a1cba93ae..000000000 --- a/Sources/JellyfinAPI/Models/LiveTvServiceStatus.swift +++ /dev/null @@ -1,16 +0,0 @@ -// -// LiveTvServiceStatus.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum LiveTvServiceStatus: String, Codable, CaseIterable { - case ok = "Ok" - case unavailable = "Unavailable" -} diff --git a/Sources/JellyfinAPI/Models/LocalizationOption.swift b/Sources/JellyfinAPI/Models/LocalizationOption.swift deleted file mode 100644 index 11097b958..000000000 --- a/Sources/JellyfinAPI/Models/LocalizationOption.swift +++ /dev/null @@ -1,35 +0,0 @@ -// -// LocalizationOption.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct LocalizationOption: Codable, JSONEncodable, Hashable { - - public var name: String? - public var value: String? - - public init(name: String? = nil, value: String? = nil) { - self.name = name - self.value = value - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case value = "Value" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(value, forKey: .value) - } -} diff --git a/Sources/JellyfinAPI/Models/LocationType.swift b/Sources/JellyfinAPI/Models/LocationType.swift deleted file mode 100644 index c134aef2f..000000000 --- a/Sources/JellyfinAPI/Models/LocationType.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// LocationType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum LocationType. */ -public enum LocationType: String, Codable, CaseIterable { - case fileSystem = "FileSystem" - case remote = "Remote" - case virtual = "Virtual" - case offline = "Offline" -} diff --git a/Sources/JellyfinAPI/Models/LogFile.swift b/Sources/JellyfinAPI/Models/LogFile.swift deleted file mode 100644 index 7beabdd0d..000000000 --- a/Sources/JellyfinAPI/Models/LogFile.swift +++ /dev/null @@ -1,47 +0,0 @@ -// -// LogFile.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct LogFile: Codable, JSONEncodable, Hashable { - - /** Gets or sets the date created. */ - public var dateCreated: Date? - /** Gets or sets the date modified. */ - public var dateModified: Date? - /** Gets or sets the size. */ - public var size: Int64? - /** Gets or sets the name. */ - public var name: String? - - public init(dateCreated: Date? = nil, dateModified: Date? = nil, size: Int64? = nil, name: String? = nil) { - self.dateCreated = dateCreated - self.dateModified = dateModified - self.size = size - self.name = name - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case dateCreated = "DateCreated" - case dateModified = "DateModified" - case size = "Size" - case name = "Name" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(dateCreated, forKey: .dateCreated) - try encoderContainer.encodeIfPresent(dateModified, forKey: .dateModified) - try encoderContainer.encodeIfPresent(size, forKey: .size) - try encoderContainer.encodeIfPresent(name, forKey: .name) - } -} diff --git a/Sources/JellyfinAPI/Models/LogLevel.swift b/Sources/JellyfinAPI/Models/LogLevel.swift deleted file mode 100644 index 20124204e..000000000 --- a/Sources/JellyfinAPI/Models/LogLevel.swift +++ /dev/null @@ -1,21 +0,0 @@ -// -// LogLevel.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum LogLevel: String, Codable, CaseIterable { - case trace = "Trace" - case debug = "Debug" - case information = "Information" - case warning = "Warning" - case error = "Error" - case critical = "Critical" - case _none = "None" -} diff --git a/Sources/JellyfinAPI/Models/MediaAttachment.swift b/Sources/JellyfinAPI/Models/MediaAttachment.swift deleted file mode 100644 index ac1c36d97..000000000 --- a/Sources/JellyfinAPI/Models/MediaAttachment.swift +++ /dev/null @@ -1,63 +0,0 @@ -// -// MediaAttachment.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class MediaAttachment. */ -public struct MediaAttachment: Codable, JSONEncodable, Hashable { - - /** Gets or sets the codec. */ - public var codec: String? - /** Gets or sets the codec tag. */ - public var codecTag: String? - /** Gets or sets the comment. */ - public var comment: String? - /** Gets or sets the index. */ - public var index: Int? - /** Gets or sets the filename. */ - public var fileName: String? - /** Gets or sets the MIME type. */ - public var mimeType: String? - /** Gets or sets the delivery URL. */ - public var deliveryUrl: String? - - public init(codec: String? = nil, codecTag: String? = nil, comment: String? = nil, index: Int? = nil, fileName: String? = nil, mimeType: String? = nil, deliveryUrl: String? = nil) { - self.codec = codec - self.codecTag = codecTag - self.comment = comment - self.index = index - self.fileName = fileName - self.mimeType = mimeType - self.deliveryUrl = deliveryUrl - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case codec = "Codec" - case codecTag = "CodecTag" - case comment = "Comment" - case index = "Index" - case fileName = "FileName" - case mimeType = "MimeType" - case deliveryUrl = "DeliveryUrl" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(codec, forKey: .codec) - try encoderContainer.encodeIfPresent(codecTag, forKey: .codecTag) - try encoderContainer.encodeIfPresent(comment, forKey: .comment) - try encoderContainer.encodeIfPresent(index, forKey: .index) - try encoderContainer.encodeIfPresent(fileName, forKey: .fileName) - try encoderContainer.encodeIfPresent(mimeType, forKey: .mimeType) - try encoderContainer.encodeIfPresent(deliveryUrl, forKey: .deliveryUrl) - } -} diff --git a/Sources/JellyfinAPI/Models/MediaEncoderPathDto.swift b/Sources/JellyfinAPI/Models/MediaEncoderPathDto.swift deleted file mode 100644 index 1470b49bc..000000000 --- a/Sources/JellyfinAPI/Models/MediaEncoderPathDto.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// MediaEncoderPathDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Media Encoder Path Dto. */ -public struct MediaEncoderPathDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets media encoder path. */ - public var path: String? - /** Gets or sets media encoder path type. */ - public var pathType: String? - - public init(path: String? = nil, pathType: String? = nil) { - self.path = path - self.pathType = pathType - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case path = "Path" - case pathType = "PathType" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(pathType, forKey: .pathType) - } -} diff --git a/Sources/JellyfinAPI/Models/MediaPathDto.swift b/Sources/JellyfinAPI/Models/MediaPathDto.swift deleted file mode 100644 index be4306aab..000000000 --- a/Sources/JellyfinAPI/Models/MediaPathDto.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// MediaPathDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Media Path dto. */ -public struct MediaPathDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of the library. */ - public var name: String - /** Gets or sets the path to add. */ - public var path: String? - public var pathInfo: MediaPathDtoPathInfo? - - public init(name: String, path: String? = nil, pathInfo: MediaPathDtoPathInfo? = nil) { - self.name = name - self.path = path - self.pathInfo = pathInfo - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case path = "Path" - case pathInfo = "PathInfo" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(name, forKey: .name) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(pathInfo, forKey: .pathInfo) - } -} diff --git a/Sources/JellyfinAPI/Models/MediaPathDtoPathInfo.swift b/Sources/JellyfinAPI/Models/MediaPathDtoPathInfo.swift deleted file mode 100644 index 9150a8a76..000000000 --- a/Sources/JellyfinAPI/Models/MediaPathDtoPathInfo.swift +++ /dev/null @@ -1,36 +0,0 @@ -// -// MediaPathDtoPathInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the path info. */ -public struct MediaPathDtoPathInfo: Codable, JSONEncodable, Hashable { - - public var path: String? - public var networkPath: String? - - public init(path: String? = nil, networkPath: String? = nil) { - self.path = path - self.networkPath = networkPath - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case path = "Path" - case networkPath = "NetworkPath" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(networkPath, forKey: .networkPath) - } -} diff --git a/Sources/JellyfinAPI/Models/MediaPathInfo.swift b/Sources/JellyfinAPI/Models/MediaPathInfo.swift deleted file mode 100644 index 151fb495b..000000000 --- a/Sources/JellyfinAPI/Models/MediaPathInfo.swift +++ /dev/null @@ -1,35 +0,0 @@ -// -// MediaPathInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MediaPathInfo: Codable, JSONEncodable, Hashable { - - public var path: String? - public var networkPath: String? - - public init(path: String? = nil, networkPath: String? = nil) { - self.path = path - self.networkPath = networkPath - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case path = "Path" - case networkPath = "NetworkPath" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(networkPath, forKey: .networkPath) - } -} diff --git a/Sources/JellyfinAPI/Models/MediaProtocol.swift b/Sources/JellyfinAPI/Models/MediaProtocol.swift deleted file mode 100644 index 89d716a9e..000000000 --- a/Sources/JellyfinAPI/Models/MediaProtocol.swift +++ /dev/null @@ -1,21 +0,0 @@ -// -// MediaProtocol.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum MediaProtocol: String, Codable, CaseIterable { - case file = "File" - case http = "Http" - case rtmp = "Rtmp" - case rtsp = "Rtsp" - case udp = "Udp" - case rtp = "Rtp" - case ftp = "Ftp" -} diff --git a/Sources/JellyfinAPI/Models/MediaSourceInfo.swift b/Sources/JellyfinAPI/Models/MediaSourceInfo.swift deleted file mode 100644 index 71334ca0d..000000000 --- a/Sources/JellyfinAPI/Models/MediaSourceInfo.swift +++ /dev/null @@ -1,196 +0,0 @@ -// -// MediaSourceInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MediaSourceInfo: Codable, JSONEncodable, Hashable { - - public var _protocol: MediaProtocol? - public var id: String? - public var path: String? - public var encoderPath: String? - public var encoderProtocol: MediaProtocol? - public var type: MediaSourceType? - public var container: String? - public var size: Int64? - public var name: String? - /** Gets or sets a value indicating whether the media is remote. Differentiate internet url vs local network. */ - public var isRemote: Bool? - public var eTag: String? - public var runTimeTicks: Int64? - public var readAtNativeFramerate: Bool? - public var ignoreDts: Bool? - public var ignoreIndex: Bool? - public var genPtsInput: Bool? - public var supportsTranscoding: Bool? - public var supportsDirectStream: Bool? - public var supportsDirectPlay: Bool? - public var isInfiniteStream: Bool? - public var requiresOpening: Bool? - public var openToken: String? - public var requiresClosing: Bool? - public var liveStreamId: String? - public var bufferMs: Int? - public var requiresLooping: Bool? - public var supportsProbing: Bool? - public var videoType: VideoType? - public var isoType: IsoType? - public var video3DFormat: Video3DFormat? - public var mediaStreams: [MediaStream]? - public var mediaAttachments: [MediaAttachment]? - public var formats: [String]? - public var bitrate: Int? - public var timestamp: TransportStreamTimestamp? - public var requiredHttpHeaders: [String: String]? - public var transcodingUrl: String? - public var transcodingSubProtocol: String? - public var transcodingContainer: String? - public var analyzeDurationMs: Int? - public var defaultAudioStreamIndex: Int? - public var defaultSubtitleStreamIndex: Int? - - public init(_protocol: MediaProtocol? = nil, id: String? = nil, path: String? = nil, encoderPath: String? = nil, encoderProtocol: MediaProtocol? = nil, type: MediaSourceType? = nil, container: String? = nil, size: Int64? = nil, name: String? = nil, isRemote: Bool? = nil, eTag: String? = nil, runTimeTicks: Int64? = nil, readAtNativeFramerate: Bool? = nil, ignoreDts: Bool? = nil, ignoreIndex: Bool? = nil, genPtsInput: Bool? = nil, supportsTranscoding: Bool? = nil, supportsDirectStream: Bool? = nil, supportsDirectPlay: Bool? = nil, isInfiniteStream: Bool? = nil, requiresOpening: Bool? = nil, openToken: String? = nil, requiresClosing: Bool? = nil, liveStreamId: String? = nil, bufferMs: Int? = nil, requiresLooping: Bool? = nil, supportsProbing: Bool? = nil, videoType: VideoType? = nil, isoType: IsoType? = nil, video3DFormat: Video3DFormat? = nil, mediaStreams: [MediaStream]? = nil, mediaAttachments: [MediaAttachment]? = nil, formats: [String]? = nil, bitrate: Int? = nil, timestamp: TransportStreamTimestamp? = nil, requiredHttpHeaders: [String: String]? = nil, transcodingUrl: String? = nil, transcodingSubProtocol: String? = nil, transcodingContainer: String? = nil, analyzeDurationMs: Int? = nil, defaultAudioStreamIndex: Int? = nil, defaultSubtitleStreamIndex: Int? = nil) { - self._protocol = _protocol - self.id = id - self.path = path - self.encoderPath = encoderPath - self.encoderProtocol = encoderProtocol - self.type = type - self.container = container - self.size = size - self.name = name - self.isRemote = isRemote - self.eTag = eTag - self.runTimeTicks = runTimeTicks - self.readAtNativeFramerate = readAtNativeFramerate - self.ignoreDts = ignoreDts - self.ignoreIndex = ignoreIndex - self.genPtsInput = genPtsInput - self.supportsTranscoding = supportsTranscoding - self.supportsDirectStream = supportsDirectStream - self.supportsDirectPlay = supportsDirectPlay - self.isInfiniteStream = isInfiniteStream - self.requiresOpening = requiresOpening - self.openToken = openToken - self.requiresClosing = requiresClosing - self.liveStreamId = liveStreamId - self.bufferMs = bufferMs - self.requiresLooping = requiresLooping - self.supportsProbing = supportsProbing - self.videoType = videoType - self.isoType = isoType - self.video3DFormat = video3DFormat - self.mediaStreams = mediaStreams - self.mediaAttachments = mediaAttachments - self.formats = formats - self.bitrate = bitrate - self.timestamp = timestamp - self.requiredHttpHeaders = requiredHttpHeaders - self.transcodingUrl = transcodingUrl - self.transcodingSubProtocol = transcodingSubProtocol - self.transcodingContainer = transcodingContainer - self.analyzeDurationMs = analyzeDurationMs - self.defaultAudioStreamIndex = defaultAudioStreamIndex - self.defaultSubtitleStreamIndex = defaultSubtitleStreamIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case _protocol = "Protocol" - case id = "Id" - case path = "Path" - case encoderPath = "EncoderPath" - case encoderProtocol = "EncoderProtocol" - case type = "Type" - case container = "Container" - case size = "Size" - case name = "Name" - case isRemote = "IsRemote" - case eTag = "ETag" - case runTimeTicks = "RunTimeTicks" - case readAtNativeFramerate = "ReadAtNativeFramerate" - case ignoreDts = "IgnoreDts" - case ignoreIndex = "IgnoreIndex" - case genPtsInput = "GenPtsInput" - case supportsTranscoding = "SupportsTranscoding" - case supportsDirectStream = "SupportsDirectStream" - case supportsDirectPlay = "SupportsDirectPlay" - case isInfiniteStream = "IsInfiniteStream" - case requiresOpening = "RequiresOpening" - case openToken = "OpenToken" - case requiresClosing = "RequiresClosing" - case liveStreamId = "LiveStreamId" - case bufferMs = "BufferMs" - case requiresLooping = "RequiresLooping" - case supportsProbing = "SupportsProbing" - case videoType = "VideoType" - case isoType = "IsoType" - case video3DFormat = "Video3DFormat" - case mediaStreams = "MediaStreams" - case mediaAttachments = "MediaAttachments" - case formats = "Formats" - case bitrate = "Bitrate" - case timestamp = "Timestamp" - case requiredHttpHeaders = "RequiredHttpHeaders" - case transcodingUrl = "TranscodingUrl" - case transcodingSubProtocol = "TranscodingSubProtocol" - case transcodingContainer = "TranscodingContainer" - case analyzeDurationMs = "AnalyzeDurationMs" - case defaultAudioStreamIndex = "DefaultAudioStreamIndex" - case defaultSubtitleStreamIndex = "DefaultSubtitleStreamIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(_protocol, forKey: ._protocol) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(encoderPath, forKey: .encoderPath) - try encoderContainer.encodeIfPresent(encoderProtocol, forKey: .encoderProtocol) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(size, forKey: .size) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(isRemote, forKey: .isRemote) - try encoderContainer.encodeIfPresent(eTag, forKey: .eTag) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(readAtNativeFramerate, forKey: .readAtNativeFramerate) - try encoderContainer.encodeIfPresent(ignoreDts, forKey: .ignoreDts) - try encoderContainer.encodeIfPresent(ignoreIndex, forKey: .ignoreIndex) - try encoderContainer.encodeIfPresent(genPtsInput, forKey: .genPtsInput) - try encoderContainer.encodeIfPresent(supportsTranscoding, forKey: .supportsTranscoding) - try encoderContainer.encodeIfPresent(supportsDirectStream, forKey: .supportsDirectStream) - try encoderContainer.encodeIfPresent(supportsDirectPlay, forKey: .supportsDirectPlay) - try encoderContainer.encodeIfPresent(isInfiniteStream, forKey: .isInfiniteStream) - try encoderContainer.encodeIfPresent(requiresOpening, forKey: .requiresOpening) - try encoderContainer.encodeIfPresent(openToken, forKey: .openToken) - try encoderContainer.encodeIfPresent(requiresClosing, forKey: .requiresClosing) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - try encoderContainer.encodeIfPresent(bufferMs, forKey: .bufferMs) - try encoderContainer.encodeIfPresent(requiresLooping, forKey: .requiresLooping) - try encoderContainer.encodeIfPresent(supportsProbing, forKey: .supportsProbing) - try encoderContainer.encodeIfPresent(videoType, forKey: .videoType) - try encoderContainer.encodeIfPresent(isoType, forKey: .isoType) - try encoderContainer.encodeIfPresent(video3DFormat, forKey: .video3DFormat) - try encoderContainer.encodeIfPresent(mediaStreams, forKey: .mediaStreams) - try encoderContainer.encodeIfPresent(mediaAttachments, forKey: .mediaAttachments) - try encoderContainer.encodeIfPresent(formats, forKey: .formats) - try encoderContainer.encodeIfPresent(bitrate, forKey: .bitrate) - try encoderContainer.encodeIfPresent(timestamp, forKey: .timestamp) - try encoderContainer.encodeIfPresent(requiredHttpHeaders, forKey: .requiredHttpHeaders) - try encoderContainer.encodeIfPresent(transcodingUrl, forKey: .transcodingUrl) - try encoderContainer.encodeIfPresent(transcodingSubProtocol, forKey: .transcodingSubProtocol) - try encoderContainer.encodeIfPresent(transcodingContainer, forKey: .transcodingContainer) - try encoderContainer.encodeIfPresent(analyzeDurationMs, forKey: .analyzeDurationMs) - try encoderContainer.encodeIfPresent(defaultAudioStreamIndex, forKey: .defaultAudioStreamIndex) - try encoderContainer.encodeIfPresent(defaultSubtitleStreamIndex, forKey: .defaultSubtitleStreamIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/MediaSourceType.swift b/Sources/JellyfinAPI/Models/MediaSourceType.swift deleted file mode 100644 index 273d469fe..000000000 --- a/Sources/JellyfinAPI/Models/MediaSourceType.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// MediaSourceType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum MediaSourceType: String, Codable, CaseIterable { - case _default = "Default" - case grouping = "Grouping" - case placeholder = "Placeholder" -} diff --git a/Sources/JellyfinAPI/Models/MediaStream.swift b/Sources/JellyfinAPI/Models/MediaStream.swift deleted file mode 100644 index b17fb4667..000000000 --- a/Sources/JellyfinAPI/Models/MediaStream.swift +++ /dev/null @@ -1,260 +0,0 @@ -// -// MediaStream.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class MediaStream. */ -public struct MediaStream: Codable, JSONEncodable, Hashable { - - /** Gets or sets the codec. */ - public var codec: String? - /** Gets or sets the codec tag. */ - public var codecTag: String? - /** Gets or sets the language. */ - public var language: String? - /** Gets or sets the color range. */ - public var colorRange: String? - /** Gets or sets the color space. */ - public var colorSpace: String? - /** Gets or sets the color transfer. */ - public var colorTransfer: String? - /** Gets or sets the color primaries. */ - public var colorPrimaries: String? - /** Gets or sets the comment. */ - public var comment: String? - /** Gets or sets the time base. */ - public var timeBase: String? - /** Gets or sets the codec time base. */ - public var codecTimeBase: String? - /** Gets or sets the title. */ - public var title: String? - /** Gets the video range. */ - public var videoRange: String? - public var localizedUndefined: String? - public var localizedDefault: String? - public var localizedForced: String? - public var localizedExternal: String? - public var displayTitle: String? - public var nalLengthSize: String? - /** Gets or sets a value indicating whether this instance is interlaced. */ - public var isInterlaced: Bool? - public var isAVC: Bool? - /** Gets or sets the channel layout. */ - public var channelLayout: String? - /** Gets or sets the bit rate. */ - public var bitRate: Int? - /** Gets or sets the bit depth. */ - public var bitDepth: Int? - /** Gets or sets the reference frames. */ - public var refFrames: Int? - /** Gets or sets the length of the packet. */ - public var packetLength: Int? - /** Gets or sets the channels. */ - public var channels: Int? - /** Gets or sets the sample rate. */ - public var sampleRate: Int? - /** Gets or sets a value indicating whether this instance is default. */ - public var isDefault: Bool? - /** Gets or sets a value indicating whether this instance is forced. */ - public var isForced: Bool? - /** Gets or sets the height. */ - public var height: Int? - /** Gets or sets the width. */ - public var width: Int? - /** Gets or sets the average frame rate. */ - public var averageFrameRate: Float? - /** Gets or sets the real frame rate. */ - public var realFrameRate: Float? - /** Gets or sets the profile. */ - public var profile: String? - /** Gets or sets the type. */ - public var type: MediaStreamType? - /** Gets or sets the aspect ratio. */ - public var aspectRatio: String? - /** Gets or sets the index. */ - public var index: Int? - /** Gets or sets the score. */ - public var score: Int? - /** Gets or sets a value indicating whether this instance is external. */ - public var isExternal: Bool? - /** Gets or sets the method. */ - public var deliveryMethod: SubtitleDeliveryMethod? - /** Gets or sets the delivery URL. */ - public var deliveryUrl: String? - /** Gets or sets a value indicating whether this instance is external URL. */ - public var isExternalUrl: Bool? - public var isTextSubtitleStream: Bool? - /** Gets or sets a value indicating whether [supports external stream]. */ - public var supportsExternalStream: Bool? - /** Gets or sets the filename. */ - public var path: String? - /** Gets or sets the pixel format. */ - public var pixelFormat: String? - /** Gets or sets the level. */ - public var level: Double? - /** Gets or sets whether this instance is anamorphic. */ - public var isAnamorphic: Bool? - - public init(codec: String? = nil, codecTag: String? = nil, language: String? = nil, colorRange: String? = nil, colorSpace: String? = nil, colorTransfer: String? = nil, colorPrimaries: String? = nil, comment: String? = nil, timeBase: String? = nil, codecTimeBase: String? = nil, title: String? = nil, videoRange: String? = nil, localizedUndefined: String? = nil, localizedDefault: String? = nil, localizedForced: String? = nil, localizedExternal: String? = nil, displayTitle: String? = nil, nalLengthSize: String? = nil, isInterlaced: Bool? = nil, isAVC: Bool? = nil, channelLayout: String? = nil, bitRate: Int? = nil, bitDepth: Int? = nil, refFrames: Int? = nil, packetLength: Int? = nil, channels: Int? = nil, sampleRate: Int? = nil, isDefault: Bool? = nil, isForced: Bool? = nil, height: Int? = nil, width: Int? = nil, averageFrameRate: Float? = nil, realFrameRate: Float? = nil, profile: String? = nil, type: MediaStreamType? = nil, aspectRatio: String? = nil, index: Int? = nil, score: Int? = nil, isExternal: Bool? = nil, deliveryMethod: SubtitleDeliveryMethod? = nil, deliveryUrl: String? = nil, isExternalUrl: Bool? = nil, isTextSubtitleStream: Bool? = nil, supportsExternalStream: Bool? = nil, path: String? = nil, pixelFormat: String? = nil, level: Double? = nil, isAnamorphic: Bool? = nil) { - self.codec = codec - self.codecTag = codecTag - self.language = language - self.colorRange = colorRange - self.colorSpace = colorSpace - self.colorTransfer = colorTransfer - self.colorPrimaries = colorPrimaries - self.comment = comment - self.timeBase = timeBase - self.codecTimeBase = codecTimeBase - self.title = title - self.videoRange = videoRange - self.localizedUndefined = localizedUndefined - self.localizedDefault = localizedDefault - self.localizedForced = localizedForced - self.localizedExternal = localizedExternal - self.displayTitle = displayTitle - self.nalLengthSize = nalLengthSize - self.isInterlaced = isInterlaced - self.isAVC = isAVC - self.channelLayout = channelLayout - self.bitRate = bitRate - self.bitDepth = bitDepth - self.refFrames = refFrames - self.packetLength = packetLength - self.channels = channels - self.sampleRate = sampleRate - self.isDefault = isDefault - self.isForced = isForced - self.height = height - self.width = width - self.averageFrameRate = averageFrameRate - self.realFrameRate = realFrameRate - self.profile = profile - self.type = type - self.aspectRatio = aspectRatio - self.index = index - self.score = score - self.isExternal = isExternal - self.deliveryMethod = deliveryMethod - self.deliveryUrl = deliveryUrl - self.isExternalUrl = isExternalUrl - self.isTextSubtitleStream = isTextSubtitleStream - self.supportsExternalStream = supportsExternalStream - self.path = path - self.pixelFormat = pixelFormat - self.level = level - self.isAnamorphic = isAnamorphic - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case codec = "Codec" - case codecTag = "CodecTag" - case language = "Language" - case colorRange = "ColorRange" - case colorSpace = "ColorSpace" - case colorTransfer = "ColorTransfer" - case colorPrimaries = "ColorPrimaries" - case comment = "Comment" - case timeBase = "TimeBase" - case codecTimeBase = "CodecTimeBase" - case title = "Title" - case videoRange = "VideoRange" - case localizedUndefined = "LocalizedUndefined" - case localizedDefault = "LocalizedDefault" - case localizedForced = "LocalizedForced" - case localizedExternal = "LocalizedExternal" - case displayTitle = "DisplayTitle" - case nalLengthSize = "NalLengthSize" - case isInterlaced = "IsInterlaced" - case isAVC = "IsAVC" - case channelLayout = "ChannelLayout" - case bitRate = "BitRate" - case bitDepth = "BitDepth" - case refFrames = "RefFrames" - case packetLength = "PacketLength" - case channels = "Channels" - case sampleRate = "SampleRate" - case isDefault = "IsDefault" - case isForced = "IsForced" - case height = "Height" - case width = "Width" - case averageFrameRate = "AverageFrameRate" - case realFrameRate = "RealFrameRate" - case profile = "Profile" - case type = "Type" - case aspectRatio = "AspectRatio" - case index = "Index" - case score = "Score" - case isExternal = "IsExternal" - case deliveryMethod = "DeliveryMethod" - case deliveryUrl = "DeliveryUrl" - case isExternalUrl = "IsExternalUrl" - case isTextSubtitleStream = "IsTextSubtitleStream" - case supportsExternalStream = "SupportsExternalStream" - case path = "Path" - case pixelFormat = "PixelFormat" - case level = "Level" - case isAnamorphic = "IsAnamorphic" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(codec, forKey: .codec) - try encoderContainer.encodeIfPresent(codecTag, forKey: .codecTag) - try encoderContainer.encodeIfPresent(language, forKey: .language) - try encoderContainer.encodeIfPresent(colorRange, forKey: .colorRange) - try encoderContainer.encodeIfPresent(colorSpace, forKey: .colorSpace) - try encoderContainer.encodeIfPresent(colorTransfer, forKey: .colorTransfer) - try encoderContainer.encodeIfPresent(colorPrimaries, forKey: .colorPrimaries) - try encoderContainer.encodeIfPresent(comment, forKey: .comment) - try encoderContainer.encodeIfPresent(timeBase, forKey: .timeBase) - try encoderContainer.encodeIfPresent(codecTimeBase, forKey: .codecTimeBase) - try encoderContainer.encodeIfPresent(title, forKey: .title) - try encoderContainer.encodeIfPresent(videoRange, forKey: .videoRange) - try encoderContainer.encodeIfPresent(localizedUndefined, forKey: .localizedUndefined) - try encoderContainer.encodeIfPresent(localizedDefault, forKey: .localizedDefault) - try encoderContainer.encodeIfPresent(localizedForced, forKey: .localizedForced) - try encoderContainer.encodeIfPresent(localizedExternal, forKey: .localizedExternal) - try encoderContainer.encodeIfPresent(displayTitle, forKey: .displayTitle) - try encoderContainer.encodeIfPresent(nalLengthSize, forKey: .nalLengthSize) - try encoderContainer.encodeIfPresent(isInterlaced, forKey: .isInterlaced) - try encoderContainer.encodeIfPresent(isAVC, forKey: .isAVC) - try encoderContainer.encodeIfPresent(channelLayout, forKey: .channelLayout) - try encoderContainer.encodeIfPresent(bitRate, forKey: .bitRate) - try encoderContainer.encodeIfPresent(bitDepth, forKey: .bitDepth) - try encoderContainer.encodeIfPresent(refFrames, forKey: .refFrames) - try encoderContainer.encodeIfPresent(packetLength, forKey: .packetLength) - try encoderContainer.encodeIfPresent(channels, forKey: .channels) - try encoderContainer.encodeIfPresent(sampleRate, forKey: .sampleRate) - try encoderContainer.encodeIfPresent(isDefault, forKey: .isDefault) - try encoderContainer.encodeIfPresent(isForced, forKey: .isForced) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(averageFrameRate, forKey: .averageFrameRate) - try encoderContainer.encodeIfPresent(realFrameRate, forKey: .realFrameRate) - try encoderContainer.encodeIfPresent(profile, forKey: .profile) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(index, forKey: .index) - try encoderContainer.encodeIfPresent(score, forKey: .score) - try encoderContainer.encodeIfPresent(isExternal, forKey: .isExternal) - try encoderContainer.encodeIfPresent(deliveryMethod, forKey: .deliveryMethod) - try encoderContainer.encodeIfPresent(deliveryUrl, forKey: .deliveryUrl) - try encoderContainer.encodeIfPresent(isExternalUrl, forKey: .isExternalUrl) - try encoderContainer.encodeIfPresent(isTextSubtitleStream, forKey: .isTextSubtitleStream) - try encoderContainer.encodeIfPresent(supportsExternalStream, forKey: .supportsExternalStream) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(pixelFormat, forKey: .pixelFormat) - try encoderContainer.encodeIfPresent(level, forKey: .level) - try encoderContainer.encodeIfPresent(isAnamorphic, forKey: .isAnamorphic) - } -} diff --git a/Sources/JellyfinAPI/Models/MediaStreamType.swift b/Sources/JellyfinAPI/Models/MediaStreamType.swift deleted file mode 100644 index b7f65c78e..000000000 --- a/Sources/JellyfinAPI/Models/MediaStreamType.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// MediaStreamType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum MediaStreamType. */ -public enum MediaStreamType: String, Codable, CaseIterable { - case audio = "Audio" - case video = "Video" - case subtitle = "Subtitle" - case embeddedImage = "EmbeddedImage" -} diff --git a/Sources/JellyfinAPI/Models/MediaUpdateInfoDto.swift b/Sources/JellyfinAPI/Models/MediaUpdateInfoDto.swift deleted file mode 100644 index fcd2850fc..000000000 --- a/Sources/JellyfinAPI/Models/MediaUpdateInfoDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// MediaUpdateInfoDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Media Update Info Dto. */ -public struct MediaUpdateInfoDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the list of updates. */ - public var updates: [MediaUpdateInfoPathDto]? - - public init(updates: [MediaUpdateInfoPathDto]? = nil) { - self.updates = updates - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case updates = "Updates" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(updates, forKey: .updates) - } -} diff --git a/Sources/JellyfinAPI/Models/MediaUpdateInfoPathDto.swift b/Sources/JellyfinAPI/Models/MediaUpdateInfoPathDto.swift deleted file mode 100644 index e19caa8fc..000000000 --- a/Sources/JellyfinAPI/Models/MediaUpdateInfoPathDto.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// MediaUpdateInfoPathDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The media update info path. */ -public struct MediaUpdateInfoPathDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets media path. */ - public var path: String? - /** Gets or sets media update type. Created, Modified, Deleted. */ - public var updateType: String? - - public init(path: String? = nil, updateType: String? = nil) { - self.path = path - self.updateType = updateType - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case path = "Path" - case updateType = "UpdateType" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(updateType, forKey: .updateType) - } -} diff --git a/Sources/JellyfinAPI/Models/MediaUrl.swift b/Sources/JellyfinAPI/Models/MediaUrl.swift deleted file mode 100644 index 971d26275..000000000 --- a/Sources/JellyfinAPI/Models/MediaUrl.swift +++ /dev/null @@ -1,35 +0,0 @@ -// -// MediaUrl.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MediaUrl: Codable, JSONEncodable, Hashable { - - public var url: String? - public var name: String? - - public init(url: String? = nil, name: String? = nil) { - self.url = url - self.name = name - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case url = "Url" - case name = "Name" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(url, forKey: .url) - try encoderContainer.encodeIfPresent(name, forKey: .name) - } -} diff --git a/Sources/JellyfinAPI/Models/MessageCommand.swift b/Sources/JellyfinAPI/Models/MessageCommand.swift deleted file mode 100644 index 15b59a7ea..000000000 --- a/Sources/JellyfinAPI/Models/MessageCommand.swift +++ /dev/null @@ -1,39 +0,0 @@ -// -// MessageCommand.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MessageCommand: Codable, JSONEncodable, Hashable { - - public var header: String? - public var text: String - public var timeoutMs: Int64? - - public init(header: String? = nil, text: String, timeoutMs: Int64? = nil) { - self.header = header - self.text = text - self.timeoutMs = timeoutMs - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case header = "Header" - case text = "Text" - case timeoutMs = "TimeoutMs" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(header, forKey: .header) - try encoderContainer.encode(text, forKey: .text) - try encoderContainer.encodeIfPresent(timeoutMs, forKey: .timeoutMs) - } -} diff --git a/Sources/JellyfinAPI/Models/MetadataConfiguration.swift b/Sources/JellyfinAPI/Models/MetadataConfiguration.swift deleted file mode 100644 index f8f847451..000000000 --- a/Sources/JellyfinAPI/Models/MetadataConfiguration.swift +++ /dev/null @@ -1,31 +0,0 @@ -// -// MetadataConfiguration.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MetadataConfiguration: Codable, JSONEncodable, Hashable { - - public var useFileCreationTimeForDateAdded: Bool? - - public init(useFileCreationTimeForDateAdded: Bool? = nil) { - self.useFileCreationTimeForDateAdded = useFileCreationTimeForDateAdded - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case useFileCreationTimeForDateAdded = "UseFileCreationTimeForDateAdded" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(useFileCreationTimeForDateAdded, forKey: .useFileCreationTimeForDateAdded) - } -} diff --git a/Sources/JellyfinAPI/Models/MetadataEditorInfo.swift b/Sources/JellyfinAPI/Models/MetadataEditorInfo.swift deleted file mode 100644 index 76d765762..000000000 --- a/Sources/JellyfinAPI/Models/MetadataEditorInfo.swift +++ /dev/null @@ -1,51 +0,0 @@ -// -// MetadataEditorInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MetadataEditorInfo: Codable, JSONEncodable, Hashable { - - public var parentalRatingOptions: [ParentalRating]? - public var countries: [CountryInfo]? - public var cultures: [CultureDto]? - public var externalIdInfos: [ExternalIdInfo]? - public var contentType: String? - public var contentTypeOptions: [NameValuePair]? - - public init(parentalRatingOptions: [ParentalRating]? = nil, countries: [CountryInfo]? = nil, cultures: [CultureDto]? = nil, externalIdInfos: [ExternalIdInfo]? = nil, contentType: String? = nil, contentTypeOptions: [NameValuePair]? = nil) { - self.parentalRatingOptions = parentalRatingOptions - self.countries = countries - self.cultures = cultures - self.externalIdInfos = externalIdInfos - self.contentType = contentType - self.contentTypeOptions = contentTypeOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case parentalRatingOptions = "ParentalRatingOptions" - case countries = "Countries" - case cultures = "Cultures" - case externalIdInfos = "ExternalIdInfos" - case contentType = "ContentType" - case contentTypeOptions = "ContentTypeOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(parentalRatingOptions, forKey: .parentalRatingOptions) - try encoderContainer.encodeIfPresent(countries, forKey: .countries) - try encoderContainer.encodeIfPresent(cultures, forKey: .cultures) - try encoderContainer.encodeIfPresent(externalIdInfos, forKey: .externalIdInfos) - try encoderContainer.encodeIfPresent(contentType, forKey: .contentType) - try encoderContainer.encodeIfPresent(contentTypeOptions, forKey: .contentTypeOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/MetadataField.swift b/Sources/JellyfinAPI/Models/MetadataField.swift deleted file mode 100644 index 47962abb3..000000000 --- a/Sources/JellyfinAPI/Models/MetadataField.swift +++ /dev/null @@ -1,24 +0,0 @@ -// -// MetadataField.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum MetadataFields. */ -public enum MetadataField: String, Codable, CaseIterable { - case cast = "Cast" - case genres = "Genres" - case productionLocations = "ProductionLocations" - case studios = "Studios" - case tags = "Tags" - case name = "Name" - case overview = "Overview" - case runtime = "Runtime" - case officialRating = "OfficialRating" -} diff --git a/Sources/JellyfinAPI/Models/MetadataOptions.swift b/Sources/JellyfinAPI/Models/MetadataOptions.swift deleted file mode 100644 index 0acf6f7ad..000000000 --- a/Sources/JellyfinAPI/Models/MetadataOptions.swift +++ /dev/null @@ -1,56 +0,0 @@ -// -// MetadataOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class MetadataOptions. */ -public struct MetadataOptions: Codable, JSONEncodable, Hashable { - - public var itemType: String? - public var disabledMetadataSavers: [String]? - public var localMetadataReaderOrder: [String]? - public var disabledMetadataFetchers: [String]? - public var metadataFetcherOrder: [String]? - public var disabledImageFetchers: [String]? - public var imageFetcherOrder: [String]? - - public init(itemType: String? = nil, disabledMetadataSavers: [String]? = nil, localMetadataReaderOrder: [String]? = nil, disabledMetadataFetchers: [String]? = nil, metadataFetcherOrder: [String]? = nil, disabledImageFetchers: [String]? = nil, imageFetcherOrder: [String]? = nil) { - self.itemType = itemType - self.disabledMetadataSavers = disabledMetadataSavers - self.localMetadataReaderOrder = localMetadataReaderOrder - self.disabledMetadataFetchers = disabledMetadataFetchers - self.metadataFetcherOrder = metadataFetcherOrder - self.disabledImageFetchers = disabledImageFetchers - self.imageFetcherOrder = imageFetcherOrder - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case itemType = "ItemType" - case disabledMetadataSavers = "DisabledMetadataSavers" - case localMetadataReaderOrder = "LocalMetadataReaderOrder" - case disabledMetadataFetchers = "DisabledMetadataFetchers" - case metadataFetcherOrder = "MetadataFetcherOrder" - case disabledImageFetchers = "DisabledImageFetchers" - case imageFetcherOrder = "ImageFetcherOrder" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(itemType, forKey: .itemType) - try encoderContainer.encodeIfPresent(disabledMetadataSavers, forKey: .disabledMetadataSavers) - try encoderContainer.encodeIfPresent(localMetadataReaderOrder, forKey: .localMetadataReaderOrder) - try encoderContainer.encodeIfPresent(disabledMetadataFetchers, forKey: .disabledMetadataFetchers) - try encoderContainer.encodeIfPresent(metadataFetcherOrder, forKey: .metadataFetcherOrder) - try encoderContainer.encodeIfPresent(disabledImageFetchers, forKey: .disabledImageFetchers) - try encoderContainer.encodeIfPresent(imageFetcherOrder, forKey: .imageFetcherOrder) - } -} diff --git a/Sources/JellyfinAPI/Models/MetadataRefreshMode.swift b/Sources/JellyfinAPI/Models/MetadataRefreshMode.swift deleted file mode 100644 index 4ac462690..000000000 --- a/Sources/JellyfinAPI/Models/MetadataRefreshMode.swift +++ /dev/null @@ -1,18 +0,0 @@ -// -// MetadataRefreshMode.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum MetadataRefreshMode: String, Codable, CaseIterable { - case _none = "None" - case validationOnly = "ValidationOnly" - case _default = "Default" - case fullRefresh = "FullRefresh" -} diff --git a/Sources/JellyfinAPI/Models/MovePlaylistItemRequestDto.swift b/Sources/JellyfinAPI/Models/MovePlaylistItemRequestDto.swift deleted file mode 100644 index 2b2582bd3..000000000 --- a/Sources/JellyfinAPI/Models/MovePlaylistItemRequestDto.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// MovePlaylistItemRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class MovePlaylistItemRequestDto. */ -public struct MovePlaylistItemRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playlist identifier of the item. */ - public var playlistItemId: String? - /** Gets or sets the new position. */ - public var newIndex: Int? - - public init(playlistItemId: String? = nil, newIndex: Int? = nil) { - self.playlistItemId = playlistItemId - self.newIndex = newIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playlistItemId = "PlaylistItemId" - case newIndex = "NewIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(newIndex, forKey: .newIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/MovieInfo.swift b/Sources/JellyfinAPI/Models/MovieInfo.swift deleted file mode 100644 index 0647ce3d5..000000000 --- a/Sources/JellyfinAPI/Models/MovieInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// MovieInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MovieInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - } -} diff --git a/Sources/JellyfinAPI/Models/MovieInfoRemoteSearchQuery.swift b/Sources/JellyfinAPI/Models/MovieInfoRemoteSearchQuery.swift deleted file mode 100644 index dbc4f3fd4..000000000 --- a/Sources/JellyfinAPI/Models/MovieInfoRemoteSearchQuery.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// MovieInfoRemoteSearchQuery.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MovieInfoRemoteSearchQuery: Codable, JSONEncodable, Hashable { - - public var searchInfo: MovieInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: MovieInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/MovieInfoRemoteSearchQuerySearchInfo.swift b/Sources/JellyfinAPI/Models/MovieInfoRemoteSearchQuerySearchInfo.swift deleted file mode 100644 index 3596137f8..000000000 --- a/Sources/JellyfinAPI/Models/MovieInfoRemoteSearchQuerySearchInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// MovieInfoRemoteSearchQuerySearchInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MovieInfoRemoteSearchQuerySearchInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - } -} diff --git a/Sources/JellyfinAPI/Models/MusicVideoInfo.swift b/Sources/JellyfinAPI/Models/MusicVideoInfo.swift deleted file mode 100644 index fa8dcc178..000000000 --- a/Sources/JellyfinAPI/Models/MusicVideoInfo.swift +++ /dev/null @@ -1,82 +0,0 @@ -// -// MusicVideoInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MusicVideoInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - public var artists: [String]? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil, artists: [String]? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - self.artists = artists - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - case artists = "Artists" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - try encoderContainer.encodeIfPresent(artists, forKey: .artists) - } -} diff --git a/Sources/JellyfinAPI/Models/MusicVideoInfoRemoteSearchQuery.swift b/Sources/JellyfinAPI/Models/MusicVideoInfoRemoteSearchQuery.swift deleted file mode 100644 index 126a2e44d..000000000 --- a/Sources/JellyfinAPI/Models/MusicVideoInfoRemoteSearchQuery.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// MusicVideoInfoRemoteSearchQuery.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MusicVideoInfoRemoteSearchQuery: Codable, JSONEncodable, Hashable { - - public var searchInfo: MusicVideoInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: MusicVideoInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/MusicVideoInfoRemoteSearchQuerySearchInfo.swift b/Sources/JellyfinAPI/Models/MusicVideoInfoRemoteSearchQuerySearchInfo.swift deleted file mode 100644 index 5a5960531..000000000 --- a/Sources/JellyfinAPI/Models/MusicVideoInfoRemoteSearchQuerySearchInfo.swift +++ /dev/null @@ -1,82 +0,0 @@ -// -// MusicVideoInfoRemoteSearchQuerySearchInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct MusicVideoInfoRemoteSearchQuerySearchInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - public var artists: [String]? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil, artists: [String]? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - self.artists = artists - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - case artists = "Artists" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - try encoderContainer.encodeIfPresent(artists, forKey: .artists) - } -} diff --git a/Sources/JellyfinAPI/Models/NameGuidPair.swift b/Sources/JellyfinAPI/Models/NameGuidPair.swift deleted file mode 100644 index 0e6ffc05a..000000000 --- a/Sources/JellyfinAPI/Models/NameGuidPair.swift +++ /dev/null @@ -1,35 +0,0 @@ -// -// NameGuidPair.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct NameGuidPair: Codable, JSONEncodable, Hashable { - - public var name: String? - public var id: String? - - public init(name: String? = nil, id: String? = nil) { - self.name = name - self.id = id - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case id = "Id" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(id, forKey: .id) - } -} diff --git a/Sources/JellyfinAPI/Models/NameIdPair.swift b/Sources/JellyfinAPI/Models/NameIdPair.swift deleted file mode 100644 index b2d41680a..000000000 --- a/Sources/JellyfinAPI/Models/NameIdPair.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// NameIdPair.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct NameIdPair: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the identifier. */ - public var id: String? - - public init(name: String? = nil, id: String? = nil) { - self.name = name - self.id = id - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case id = "Id" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(id, forKey: .id) - } -} diff --git a/Sources/JellyfinAPI/Models/NameValuePair.swift b/Sources/JellyfinAPI/Models/NameValuePair.swift deleted file mode 100644 index f78b6afff..000000000 --- a/Sources/JellyfinAPI/Models/NameValuePair.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// NameValuePair.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct NameValuePair: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the value. */ - public var value: String? - - public init(name: String? = nil, value: String? = nil) { - self.name = name - self.value = value - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case value = "Value" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(value, forKey: .value) - } -} diff --git a/Sources/JellyfinAPI/Models/NetworkConfiguration.swift b/Sources/JellyfinAPI/Models/NetworkConfiguration.swift deleted file mode 100644 index d8df17d09..000000000 --- a/Sources/JellyfinAPI/Models/NetworkConfiguration.swift +++ /dev/null @@ -1,198 +0,0 @@ -// -// NetworkConfiguration.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Defines the Jellyfin.Networking.Configuration.NetworkConfiguration. */ -public struct NetworkConfiguration: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether the server should force connections over HTTPS. */ - public var requireHttps: Bool? - /** Gets or sets the filesystem path of an X.509 certificate to use for SSL. */ - public var certificatePath: String? - /** Gets or sets the password required to access the X.509 certificate data in the file specified by Jellyfin.Networking.Configuration.NetworkConfiguration.CertificatePath. */ - public var certificatePassword: String? - /** Gets or sets a value used to specify the URL prefix that your Jellyfin instance can be accessed at. */ - public var baseUrl: String? - /** Gets or sets the public HTTPS port. */ - public var publicHttpsPort: Int? - /** Gets or sets the HTTP server port number. */ - public var httpServerPortNumber: Int? - /** Gets or sets the HTTPS server port number. */ - public var httpsPortNumber: Int? - /** Gets or sets a value indicating whether to use HTTPS. */ - public var enableHttps: Bool? - /** Gets or sets the public mapped port. */ - public var publicPort: Int? - /** Gets or sets a value indicating whether the http port should be mapped as part of UPnP automatic port forwarding. */ - public var uPnPCreateHttpPortMap: Bool? - /** Gets or sets the UDPPortRange. */ - public var uDPPortRange: String? - /** Gets or sets a value indicating whether gets or sets IPV6 capability. */ - public var enableIPV6: Bool? - /** Gets or sets a value indicating whether gets or sets IPV4 capability. */ - public var enableIPV4: Bool? - /** Gets or sets a value indicating whether detailed SSDP logs are sent to the console/log. \"Emby.Dlna\": \"Debug\" must be set in logging.default.json for this property to have any effect. */ - public var enableSSDPTracing: Bool? - /** Gets or sets the SSDPTracingFilter Gets or sets a value indicating whether an IP address is to be used to filter the detailed ssdp logs that are being sent to the console/log. If the setting \"Emby.Dlna\": \"Debug\" msut be set in logging.default.json for this property to work. */ - public var sSDPTracingFilter: String? - /** Gets or sets the number of times SSDP UDP messages are sent. */ - public var uDPSendCount: Int? - /** Gets or sets the delay between each groups of SSDP messages (in ms). */ - public var uDPSendDelay: Int? - /** Gets or sets a value indicating whether address names that match Jellyfin.Networking.Configuration.NetworkConfiguration.VirtualInterfaceNames should be Ignore for the purposes of binding. */ - public var ignoreVirtualInterfaces: Bool? - /** Gets or sets a value indicating the interfaces that should be ignored. The list can be comma separated. . */ - public var virtualInterfaceNames: String? - /** Gets or sets the time (in seconds) between the pings of SSDP gateway monitor. */ - public var gatewayMonitorPeriod: Int? - /** Gets a value indicating whether multi-socket binding is available. */ - public var enableMultiSocketBinding: Bool? - /** Gets or sets a value indicating whether all IPv6 interfaces should be treated as on the internal network. Depending on the address range implemented ULA ranges might not be used. */ - public var trustAllIP6Interfaces: Bool? - /** Gets or sets the ports that HDHomerun uses. */ - public var hDHomerunPortRange: String? - /** Gets or sets the PublishedServerUriBySubnet Gets or sets PublishedServerUri to advertise for specific subnets. */ - public var publishedServerUriBySubnet: [String]? - /** Gets or sets a value indicating whether Autodiscovery tracing is enabled. */ - public var autoDiscoveryTracing: Bool? - /** Gets or sets a value indicating whether Autodiscovery is enabled. */ - public var autoDiscovery: Bool? - /** Gets or sets the filter for remote IP connectivity. Used in conjuntion with . */ - public var remoteIPFilter: [String]? - /** Gets or sets a value indicating whether contains a blacklist or a whitelist. Default is a whitelist. */ - public var isRemoteIPFilterBlacklist: Bool? - /** Gets or sets a value indicating whether to enable automatic port forwarding. */ - public var enableUPnP: Bool? - /** Gets or sets a value indicating whether access outside of the LAN is permitted. */ - public var enableRemoteAccess: Bool? - /** Gets or sets the subnets that are deemed to make up the LAN. */ - public var localNetworkSubnets: [String]? - /** Gets or sets the interface addresses which Jellyfin will bind to. If empty, all interfaces will be used. */ - public var localNetworkAddresses: [String]? - /** Gets or sets the known proxies. If the proxy is a network, it's added to the KnownNetworks. */ - public var knownProxies: [String]? - /** Gets or sets a value indicating whether the published server uri is based on information in HTTP requests. */ - public var enablePublishedServerUriByRequest: Bool? - - public init(requireHttps: Bool? = nil, certificatePath: String? = nil, certificatePassword: String? = nil, baseUrl: String? = nil, publicHttpsPort: Int? = nil, httpServerPortNumber: Int? = nil, httpsPortNumber: Int? = nil, enableHttps: Bool? = nil, publicPort: Int? = nil, uPnPCreateHttpPortMap: Bool? = nil, uDPPortRange: String? = nil, enableIPV6: Bool? = nil, enableIPV4: Bool? = nil, enableSSDPTracing: Bool? = nil, sSDPTracingFilter: String? = nil, uDPSendCount: Int? = nil, uDPSendDelay: Int? = nil, ignoreVirtualInterfaces: Bool? = nil, virtualInterfaceNames: String? = nil, gatewayMonitorPeriod: Int? = nil, enableMultiSocketBinding: Bool? = nil, trustAllIP6Interfaces: Bool? = nil, hDHomerunPortRange: String? = nil, publishedServerUriBySubnet: [String]? = nil, autoDiscoveryTracing: Bool? = nil, autoDiscovery: Bool? = nil, remoteIPFilter: [String]? = nil, isRemoteIPFilterBlacklist: Bool? = nil, enableUPnP: Bool? = nil, enableRemoteAccess: Bool? = nil, localNetworkSubnets: [String]? = nil, localNetworkAddresses: [String]? = nil, knownProxies: [String]? = nil, enablePublishedServerUriByRequest: Bool? = nil) { - self.requireHttps = requireHttps - self.certificatePath = certificatePath - self.certificatePassword = certificatePassword - self.baseUrl = baseUrl - self.publicHttpsPort = publicHttpsPort - self.httpServerPortNumber = httpServerPortNumber - self.httpsPortNumber = httpsPortNumber - self.enableHttps = enableHttps - self.publicPort = publicPort - self.uPnPCreateHttpPortMap = uPnPCreateHttpPortMap - self.uDPPortRange = uDPPortRange - self.enableIPV6 = enableIPV6 - self.enableIPV4 = enableIPV4 - self.enableSSDPTracing = enableSSDPTracing - self.sSDPTracingFilter = sSDPTracingFilter - self.uDPSendCount = uDPSendCount - self.uDPSendDelay = uDPSendDelay - self.ignoreVirtualInterfaces = ignoreVirtualInterfaces - self.virtualInterfaceNames = virtualInterfaceNames - self.gatewayMonitorPeriod = gatewayMonitorPeriod - self.enableMultiSocketBinding = enableMultiSocketBinding - self.trustAllIP6Interfaces = trustAllIP6Interfaces - self.hDHomerunPortRange = hDHomerunPortRange - self.publishedServerUriBySubnet = publishedServerUriBySubnet - self.autoDiscoveryTracing = autoDiscoveryTracing - self.autoDiscovery = autoDiscovery - self.remoteIPFilter = remoteIPFilter - self.isRemoteIPFilterBlacklist = isRemoteIPFilterBlacklist - self.enableUPnP = enableUPnP - self.enableRemoteAccess = enableRemoteAccess - self.localNetworkSubnets = localNetworkSubnets - self.localNetworkAddresses = localNetworkAddresses - self.knownProxies = knownProxies - self.enablePublishedServerUriByRequest = enablePublishedServerUriByRequest - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case requireHttps = "RequireHttps" - case certificatePath = "CertificatePath" - case certificatePassword = "CertificatePassword" - case baseUrl = "BaseUrl" - case publicHttpsPort = "PublicHttpsPort" - case httpServerPortNumber = "HttpServerPortNumber" - case httpsPortNumber = "HttpsPortNumber" - case enableHttps = "EnableHttps" - case publicPort = "PublicPort" - case uPnPCreateHttpPortMap = "UPnPCreateHttpPortMap" - case uDPPortRange = "UDPPortRange" - case enableIPV6 = "EnableIPV6" - case enableIPV4 = "EnableIPV4" - case enableSSDPTracing = "EnableSSDPTracing" - case sSDPTracingFilter = "SSDPTracingFilter" - case uDPSendCount = "UDPSendCount" - case uDPSendDelay = "UDPSendDelay" - case ignoreVirtualInterfaces = "IgnoreVirtualInterfaces" - case virtualInterfaceNames = "VirtualInterfaceNames" - case gatewayMonitorPeriod = "GatewayMonitorPeriod" - case enableMultiSocketBinding = "EnableMultiSocketBinding" - case trustAllIP6Interfaces = "TrustAllIP6Interfaces" - case hDHomerunPortRange = "HDHomerunPortRange" - case publishedServerUriBySubnet = "PublishedServerUriBySubnet" - case autoDiscoveryTracing = "AutoDiscoveryTracing" - case autoDiscovery = "AutoDiscovery" - case remoteIPFilter = "RemoteIPFilter" - case isRemoteIPFilterBlacklist = "IsRemoteIPFilterBlacklist" - case enableUPnP = "EnableUPnP" - case enableRemoteAccess = "EnableRemoteAccess" - case localNetworkSubnets = "LocalNetworkSubnets" - case localNetworkAddresses = "LocalNetworkAddresses" - case knownProxies = "KnownProxies" - case enablePublishedServerUriByRequest = "EnablePublishedServerUriByRequest" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(requireHttps, forKey: .requireHttps) - try encoderContainer.encodeIfPresent(certificatePath, forKey: .certificatePath) - try encoderContainer.encodeIfPresent(certificatePassword, forKey: .certificatePassword) - try encoderContainer.encodeIfPresent(baseUrl, forKey: .baseUrl) - try encoderContainer.encodeIfPresent(publicHttpsPort, forKey: .publicHttpsPort) - try encoderContainer.encodeIfPresent(httpServerPortNumber, forKey: .httpServerPortNumber) - try encoderContainer.encodeIfPresent(httpsPortNumber, forKey: .httpsPortNumber) - try encoderContainer.encodeIfPresent(enableHttps, forKey: .enableHttps) - try encoderContainer.encodeIfPresent(publicPort, forKey: .publicPort) - try encoderContainer.encodeIfPresent(uPnPCreateHttpPortMap, forKey: .uPnPCreateHttpPortMap) - try encoderContainer.encodeIfPresent(uDPPortRange, forKey: .uDPPortRange) - try encoderContainer.encodeIfPresent(enableIPV6, forKey: .enableIPV6) - try encoderContainer.encodeIfPresent(enableIPV4, forKey: .enableIPV4) - try encoderContainer.encodeIfPresent(enableSSDPTracing, forKey: .enableSSDPTracing) - try encoderContainer.encodeIfPresent(sSDPTracingFilter, forKey: .sSDPTracingFilter) - try encoderContainer.encodeIfPresent(uDPSendCount, forKey: .uDPSendCount) - try encoderContainer.encodeIfPresent(uDPSendDelay, forKey: .uDPSendDelay) - try encoderContainer.encodeIfPresent(ignoreVirtualInterfaces, forKey: .ignoreVirtualInterfaces) - try encoderContainer.encodeIfPresent(virtualInterfaceNames, forKey: .virtualInterfaceNames) - try encoderContainer.encodeIfPresent(gatewayMonitorPeriod, forKey: .gatewayMonitorPeriod) - try encoderContainer.encodeIfPresent(enableMultiSocketBinding, forKey: .enableMultiSocketBinding) - try encoderContainer.encodeIfPresent(trustAllIP6Interfaces, forKey: .trustAllIP6Interfaces) - try encoderContainer.encodeIfPresent(hDHomerunPortRange, forKey: .hDHomerunPortRange) - try encoderContainer.encodeIfPresent(publishedServerUriBySubnet, forKey: .publishedServerUriBySubnet) - try encoderContainer.encodeIfPresent(autoDiscoveryTracing, forKey: .autoDiscoveryTracing) - try encoderContainer.encodeIfPresent(autoDiscovery, forKey: .autoDiscovery) - try encoderContainer.encodeIfPresent(remoteIPFilter, forKey: .remoteIPFilter) - try encoderContainer.encodeIfPresent(isRemoteIPFilterBlacklist, forKey: .isRemoteIPFilterBlacklist) - try encoderContainer.encodeIfPresent(enableUPnP, forKey: .enableUPnP) - try encoderContainer.encodeIfPresent(enableRemoteAccess, forKey: .enableRemoteAccess) - try encoderContainer.encodeIfPresent(localNetworkSubnets, forKey: .localNetworkSubnets) - try encoderContainer.encodeIfPresent(localNetworkAddresses, forKey: .localNetworkAddresses) - try encoderContainer.encodeIfPresent(knownProxies, forKey: .knownProxies) - try encoderContainer.encodeIfPresent(enablePublishedServerUriByRequest, forKey: .enablePublishedServerUriByRequest) - } -} diff --git a/Sources/JellyfinAPI/Models/NewGroupRequestDto.swift b/Sources/JellyfinAPI/Models/NewGroupRequestDto.swift deleted file mode 100644 index 2c06ee92d..000000000 --- a/Sources/JellyfinAPI/Models/NewGroupRequestDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// NewGroupRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class NewGroupRequestDto. */ -public struct NewGroupRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the group name. */ - public var groupName: String? - - public init(groupName: String? = nil) { - self.groupName = groupName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case groupName = "GroupName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(groupName, forKey: .groupName) - } -} diff --git a/Sources/JellyfinAPI/Models/NextItemRequestDto.swift b/Sources/JellyfinAPI/Models/NextItemRequestDto.swift deleted file mode 100644 index 5697dd1e5..000000000 --- a/Sources/JellyfinAPI/Models/NextItemRequestDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// NextItemRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class NextItemRequestDto. */ -public struct NextItemRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playing item identifier. */ - public var playlistItemId: String? - - public init(playlistItemId: String? = nil) { - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/NotificationDto.swift b/Sources/JellyfinAPI/Models/NotificationDto.swift deleted file mode 100644 index eee523e10..000000000 --- a/Sources/JellyfinAPI/Models/NotificationDto.swift +++ /dev/null @@ -1,68 +0,0 @@ -// -// NotificationDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The notification DTO. */ -public struct NotificationDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the notification ID. Defaults to an empty string. */ - public var id: String? - /** Gets or sets the notification's user ID. Defaults to an empty string. */ - public var userId: String? - /** Gets or sets the notification date. */ - public var date: Date? - /** Gets or sets a value indicating whether the notification has been read. Defaults to false. */ - public var isRead: Bool? - /** Gets or sets the notification's name. Defaults to an empty string. */ - public var name: String? - /** Gets or sets the notification's description. Defaults to an empty string. */ - public var description: String? - /** Gets or sets the notification's URL. Defaults to an empty string. */ - public var url: String? - /** Gets or sets the notification level. */ - public var level: NotificationLevel? - - public init(id: String? = nil, userId: String? = nil, date: Date? = nil, isRead: Bool? = nil, name: String? = nil, description: String? = nil, url: String? = nil, level: NotificationLevel? = nil) { - self.id = id - self.userId = userId - self.date = date - self.isRead = isRead - self.name = name - self.description = description - self.url = url - self.level = level - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case userId = "UserId" - case date = "Date" - case isRead = "IsRead" - case name = "Name" - case description = "Description" - case url = "Url" - case level = "Level" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(date, forKey: .date) - try encoderContainer.encodeIfPresent(isRead, forKey: .isRead) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(description, forKey: .description) - try encoderContainer.encodeIfPresent(url, forKey: .url) - try encoderContainer.encodeIfPresent(level, forKey: .level) - } -} diff --git a/Sources/JellyfinAPI/Models/NotificationLevel.swift b/Sources/JellyfinAPI/Models/NotificationLevel.swift deleted file mode 100644 index 94dca73b2..000000000 --- a/Sources/JellyfinAPI/Models/NotificationLevel.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// NotificationLevel.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum NotificationLevel: String, Codable, CaseIterable { - case normal = "Normal" - case warning = "Warning" - case error = "Error" -} diff --git a/Sources/JellyfinAPI/Models/NotificationOption.swift b/Sources/JellyfinAPI/Models/NotificationOption.swift deleted file mode 100644 index 1dd90cda0..000000000 --- a/Sources/JellyfinAPI/Models/NotificationOption.swift +++ /dev/null @@ -1,56 +0,0 @@ -// -// NotificationOption.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct NotificationOption: Codable, JSONEncodable, Hashable { - - public var type: String? - /** Gets or sets user Ids to not monitor (it's opt out). */ - public var disabledMonitorUsers: [String]? - /** Gets or sets user Ids to send to (if SendToUserMode == Custom). */ - public var sendToUsers: [String]? - /** Gets or sets a value indicating whether this MediaBrowser.Model.Notifications.NotificationOption is enabled. */ - public var enabled: Bool? - /** Gets or sets the disabled services. */ - public var disabledServices: [String]? - /** Gets or sets the send to user mode. */ - public var sendToUserMode: SendToUserType? - - public init(type: String? = nil, disabledMonitorUsers: [String]? = nil, sendToUsers: [String]? = nil, enabled: Bool? = nil, disabledServices: [String]? = nil, sendToUserMode: SendToUserType? = nil) { - self.type = type - self.disabledMonitorUsers = disabledMonitorUsers - self.sendToUsers = sendToUsers - self.enabled = enabled - self.disabledServices = disabledServices - self.sendToUserMode = sendToUserMode - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case type = "Type" - case disabledMonitorUsers = "DisabledMonitorUsers" - case sendToUsers = "SendToUsers" - case enabled = "Enabled" - case disabledServices = "DisabledServices" - case sendToUserMode = "SendToUserMode" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(disabledMonitorUsers, forKey: .disabledMonitorUsers) - try encoderContainer.encodeIfPresent(sendToUsers, forKey: .sendToUsers) - try encoderContainer.encodeIfPresent(enabled, forKey: .enabled) - try encoderContainer.encodeIfPresent(disabledServices, forKey: .disabledServices) - try encoderContainer.encodeIfPresent(sendToUserMode, forKey: .sendToUserMode) - } -} diff --git a/Sources/JellyfinAPI/Models/NotificationOptions.swift b/Sources/JellyfinAPI/Models/NotificationOptions.swift deleted file mode 100644 index 88e1d55b3..000000000 --- a/Sources/JellyfinAPI/Models/NotificationOptions.swift +++ /dev/null @@ -1,31 +0,0 @@ -// -// NotificationOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct NotificationOptions: Codable, JSONEncodable, Hashable { - - public var options: [NotificationOption]? - - public init(options: [NotificationOption]? = nil) { - self.options = options - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case options = "Options" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(options, forKey: .options) - } -} diff --git a/Sources/JellyfinAPI/Models/NotificationResultDto.swift b/Sources/JellyfinAPI/Models/NotificationResultDto.swift deleted file mode 100644 index 9cd4160a1..000000000 --- a/Sources/JellyfinAPI/Models/NotificationResultDto.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// NotificationResultDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** A list of notifications with the total record count for pagination. */ -public struct NotificationResultDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the current page of notifications. */ - public var notifications: [NotificationDto]? - /** Gets or sets the total number of notifications. */ - public var totalRecordCount: Int? - - public init(notifications: [NotificationDto]? = nil, totalRecordCount: Int? = nil) { - self.notifications = notifications - self.totalRecordCount = totalRecordCount - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case notifications = "Notifications" - case totalRecordCount = "TotalRecordCount" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(notifications, forKey: .notifications) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - } -} diff --git a/Sources/JellyfinAPI/Models/NotificationTypeInfo.swift b/Sources/JellyfinAPI/Models/NotificationTypeInfo.swift deleted file mode 100644 index 47b19b8c0..000000000 --- a/Sources/JellyfinAPI/Models/NotificationTypeInfo.swift +++ /dev/null @@ -1,47 +0,0 @@ -// -// NotificationTypeInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct NotificationTypeInfo: Codable, JSONEncodable, Hashable { - - public var type: String? - public var name: String? - public var enabled: Bool? - public var category: String? - public var isBasedOnUserEvent: Bool? - - public init(type: String? = nil, name: String? = nil, enabled: Bool? = nil, category: String? = nil, isBasedOnUserEvent: Bool? = nil) { - self.type = type - self.name = name - self.enabled = enabled - self.category = category - self.isBasedOnUserEvent = isBasedOnUserEvent - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case type = "Type" - case name = "Name" - case enabled = "Enabled" - case category = "Category" - case isBasedOnUserEvent = "IsBasedOnUserEvent" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(enabled, forKey: .enabled) - try encoderContainer.encodeIfPresent(category, forKey: .category) - try encoderContainer.encodeIfPresent(isBasedOnUserEvent, forKey: .isBasedOnUserEvent) - } -} diff --git a/Sources/JellyfinAPI/Models/NotificationsSummaryDto.swift b/Sources/JellyfinAPI/Models/NotificationsSummaryDto.swift deleted file mode 100644 index b1075eb6d..000000000 --- a/Sources/JellyfinAPI/Models/NotificationsSummaryDto.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// NotificationsSummaryDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The notification summary DTO. */ -public struct NotificationsSummaryDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the number of unread notifications. */ - public var unreadCount: Int? - /** Gets or sets the maximum unread notification level. */ - public var maxUnreadNotificationLevel: NotificationLevel? - - public init(unreadCount: Int? = nil, maxUnreadNotificationLevel: NotificationLevel? = nil) { - self.unreadCount = unreadCount - self.maxUnreadNotificationLevel = maxUnreadNotificationLevel - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case unreadCount = "UnreadCount" - case maxUnreadNotificationLevel = "MaxUnreadNotificationLevel" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(unreadCount, forKey: .unreadCount) - try encoderContainer.encodeIfPresent(maxUnreadNotificationLevel, forKey: .maxUnreadNotificationLevel) - } -} diff --git a/Sources/JellyfinAPI/Models/ObjectGroupUpdate.swift b/Sources/JellyfinAPI/Models/ObjectGroupUpdate.swift deleted file mode 100644 index a9a6f818e..000000000 --- a/Sources/JellyfinAPI/Models/ObjectGroupUpdate.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// ObjectGroupUpdate.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class GroupUpdate. */ -public struct ObjectGroupUpdate: Codable, JSONEncodable, Hashable { - - /** Gets the group identifier. */ - public var groupId: String? - /** Gets the update type. */ - public var type: GroupUpdateType? - /** Gets the update data. */ - public var data: AnyCodable? - - public init(groupId: String? = nil, type: GroupUpdateType? = nil, data: AnyCodable? = nil) { - self.groupId = groupId - self.type = type - self.data = data - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case groupId = "GroupId" - case type = "Type" - case data = "Data" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(groupId, forKey: .groupId) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(data, forKey: .data) - } -} diff --git a/Sources/JellyfinAPI/Models/OpenLiveStreamDto.swift b/Sources/JellyfinAPI/Models/OpenLiveStreamDto.swift deleted file mode 100644 index 3110dfe19..000000000 --- a/Sources/JellyfinAPI/Models/OpenLiveStreamDto.swift +++ /dev/null @@ -1,92 +0,0 @@ -// -// OpenLiveStreamDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Open live stream dto. */ -public struct OpenLiveStreamDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the open token. */ - public var openToken: String? - /** Gets or sets the user id. */ - public var userId: String? - /** Gets or sets the play session id. */ - public var playSessionId: String? - /** Gets or sets the max streaming bitrate. */ - public var maxStreamingBitrate: Int? - /** Gets or sets the start time in ticks. */ - public var startTimeTicks: Int64? - /** Gets or sets the audio stream index. */ - public var audioStreamIndex: Int? - /** Gets or sets the subtitle stream index. */ - public var subtitleStreamIndex: Int? - /** Gets or sets the max audio channels. */ - public var maxAudioChannels: Int? - /** Gets or sets the item id. */ - public var itemId: String? - /** Gets or sets a value indicating whether to enable direct play. */ - public var enableDirectPlay: Bool? - /** Gets or sets a value indicating whether to enale direct stream. */ - public var enableDirectStream: Bool? - public var deviceProfile: ClientCapabilitiesDeviceProfile? - /** Gets or sets the device play protocols. */ - public var directPlayProtocols: [MediaProtocol]? - - public init(openToken: String? = nil, userId: String? = nil, playSessionId: String? = nil, maxStreamingBitrate: Int? = nil, startTimeTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, maxAudioChannels: Int? = nil, itemId: String? = nil, enableDirectPlay: Bool? = nil, enableDirectStream: Bool? = nil, deviceProfile: ClientCapabilitiesDeviceProfile? = nil, directPlayProtocols: [MediaProtocol]? = nil) { - self.openToken = openToken - self.userId = userId - self.playSessionId = playSessionId - self.maxStreamingBitrate = maxStreamingBitrate - self.startTimeTicks = startTimeTicks - self.audioStreamIndex = audioStreamIndex - self.subtitleStreamIndex = subtitleStreamIndex - self.maxAudioChannels = maxAudioChannels - self.itemId = itemId - self.enableDirectPlay = enableDirectPlay - self.enableDirectStream = enableDirectStream - self.deviceProfile = deviceProfile - self.directPlayProtocols = directPlayProtocols - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case openToken = "OpenToken" - case userId = "UserId" - case playSessionId = "PlaySessionId" - case maxStreamingBitrate = "MaxStreamingBitrate" - case startTimeTicks = "StartTimeTicks" - case audioStreamIndex = "AudioStreamIndex" - case subtitleStreamIndex = "SubtitleStreamIndex" - case maxAudioChannels = "MaxAudioChannels" - case itemId = "ItemId" - case enableDirectPlay = "EnableDirectPlay" - case enableDirectStream = "EnableDirectStream" - case deviceProfile = "DeviceProfile" - case directPlayProtocols = "DirectPlayProtocols" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(openToken, forKey: .openToken) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(playSessionId, forKey: .playSessionId) - try encoderContainer.encodeIfPresent(maxStreamingBitrate, forKey: .maxStreamingBitrate) - try encoderContainer.encodeIfPresent(startTimeTicks, forKey: .startTimeTicks) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(maxAudioChannels, forKey: .maxAudioChannels) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(enableDirectPlay, forKey: .enableDirectPlay) - try encoderContainer.encodeIfPresent(enableDirectStream, forKey: .enableDirectStream) - try encoderContainer.encodeIfPresent(deviceProfile, forKey: .deviceProfile) - try encoderContainer.encodeIfPresent(directPlayProtocols, forKey: .directPlayProtocols) - } -} diff --git a/Sources/JellyfinAPI/Models/OpenLiveStreamRequest.swift b/Sources/JellyfinAPI/Models/OpenLiveStreamRequest.swift deleted file mode 100644 index 6c20b198c..000000000 --- a/Sources/JellyfinAPI/Models/OpenLiveStreamRequest.swift +++ /dev/null @@ -1,92 +0,0 @@ -// -// OpenLiveStreamRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Open live stream dto. */ -public struct OpenLiveStreamRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the open token. */ - public var openToken: String? - /** Gets or sets the user id. */ - public var userId: String? - /** Gets or sets the play session id. */ - public var playSessionId: String? - /** Gets or sets the max streaming bitrate. */ - public var maxStreamingBitrate: Int? - /** Gets or sets the start time in ticks. */ - public var startTimeTicks: Int64? - /** Gets or sets the audio stream index. */ - public var audioStreamIndex: Int? - /** Gets or sets the subtitle stream index. */ - public var subtitleStreamIndex: Int? - /** Gets or sets the max audio channels. */ - public var maxAudioChannels: Int? - /** Gets or sets the item id. */ - public var itemId: String? - /** Gets or sets a value indicating whether to enable direct play. */ - public var enableDirectPlay: Bool? - /** Gets or sets a value indicating whether to enale direct stream. */ - public var enableDirectStream: Bool? - public var deviceProfile: ClientCapabilitiesDeviceProfile? - /** Gets or sets the device play protocols. */ - public var directPlayProtocols: [MediaProtocol]? - - public init(openToken: String? = nil, userId: String? = nil, playSessionId: String? = nil, maxStreamingBitrate: Int? = nil, startTimeTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, maxAudioChannels: Int? = nil, itemId: String? = nil, enableDirectPlay: Bool? = nil, enableDirectStream: Bool? = nil, deviceProfile: ClientCapabilitiesDeviceProfile? = nil, directPlayProtocols: [MediaProtocol]? = nil) { - self.openToken = openToken - self.userId = userId - self.playSessionId = playSessionId - self.maxStreamingBitrate = maxStreamingBitrate - self.startTimeTicks = startTimeTicks - self.audioStreamIndex = audioStreamIndex - self.subtitleStreamIndex = subtitleStreamIndex - self.maxAudioChannels = maxAudioChannels - self.itemId = itemId - self.enableDirectPlay = enableDirectPlay - self.enableDirectStream = enableDirectStream - self.deviceProfile = deviceProfile - self.directPlayProtocols = directPlayProtocols - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case openToken = "OpenToken" - case userId = "UserId" - case playSessionId = "PlaySessionId" - case maxStreamingBitrate = "MaxStreamingBitrate" - case startTimeTicks = "StartTimeTicks" - case audioStreamIndex = "AudioStreamIndex" - case subtitleStreamIndex = "SubtitleStreamIndex" - case maxAudioChannels = "MaxAudioChannels" - case itemId = "ItemId" - case enableDirectPlay = "EnableDirectPlay" - case enableDirectStream = "EnableDirectStream" - case deviceProfile = "DeviceProfile" - case directPlayProtocols = "DirectPlayProtocols" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(openToken, forKey: .openToken) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(playSessionId, forKey: .playSessionId) - try encoderContainer.encodeIfPresent(maxStreamingBitrate, forKey: .maxStreamingBitrate) - try encoderContainer.encodeIfPresent(startTimeTicks, forKey: .startTimeTicks) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(maxAudioChannels, forKey: .maxAudioChannels) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(enableDirectPlay, forKey: .enableDirectPlay) - try encoderContainer.encodeIfPresent(enableDirectStream, forKey: .enableDirectStream) - try encoderContainer.encodeIfPresent(deviceProfile, forKey: .deviceProfile) - try encoderContainer.encodeIfPresent(directPlayProtocols, forKey: .directPlayProtocols) - } -} diff --git a/Sources/JellyfinAPI/Models/PackageInfo.swift b/Sources/JellyfinAPI/Models/PackageInfo.swift deleted file mode 100644 index b0d11fbd7..000000000 --- a/Sources/JellyfinAPI/Models/PackageInfo.swift +++ /dev/null @@ -1,68 +0,0 @@ -// -// PackageInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PackageInfo. */ -public struct PackageInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets a long description of the plugin containing features or helpful explanations. */ - public var description: String? - /** Gets or sets a short overview of what the plugin does. */ - public var overview: String? - /** Gets or sets the owner. */ - public var owner: String? - /** Gets or sets the category. */ - public var category: String? - /** Gets or sets the guid of the assembly associated with this plugin. This is used to identify the proper item for automatic updates. */ - public var guid: String? - /** Gets or sets the versions. */ - public var versions: [VersionInfo]? - /** Gets or sets the image url for the package. */ - public var imageUrl: String? - - public init(name: String? = nil, description: String? = nil, overview: String? = nil, owner: String? = nil, category: String? = nil, guid: String? = nil, versions: [VersionInfo]? = nil, imageUrl: String? = nil) { - self.name = name - self.description = description - self.overview = overview - self.owner = owner - self.category = category - self.guid = guid - self.versions = versions - self.imageUrl = imageUrl - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name - case description - case overview - case owner - case category - case guid - case versions - case imageUrl - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(description, forKey: .description) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(owner, forKey: .owner) - try encoderContainer.encodeIfPresent(category, forKey: .category) - try encoderContainer.encodeIfPresent(guid, forKey: .guid) - try encoderContainer.encodeIfPresent(versions, forKey: .versions) - try encoderContainer.encodeIfPresent(imageUrl, forKey: .imageUrl) - } -} diff --git a/Sources/JellyfinAPI/Models/ParentalRating.swift b/Sources/JellyfinAPI/Models/ParentalRating.swift deleted file mode 100644 index 51dd5f0ff..000000000 --- a/Sources/JellyfinAPI/Models/ParentalRating.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// ParentalRating.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class ParentalRating. */ -public struct ParentalRating: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the value. */ - public var value: Int? - - public init(name: String? = nil, value: Int? = nil) { - self.name = name - self.value = value - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case value = "Value" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(value, forKey: .value) - } -} diff --git a/Sources/JellyfinAPI/Models/PathSubstitution.swift b/Sources/JellyfinAPI/Models/PathSubstitution.swift deleted file mode 100644 index be54c2b92..000000000 --- a/Sources/JellyfinAPI/Models/PathSubstitution.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// PathSubstitution.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Defines the MediaBrowser.Model.Configuration.PathSubstitution. */ -public struct PathSubstitution: Codable, JSONEncodable, Hashable { - - /** Gets or sets the value to substitute. */ - public var from: String? - /** Gets or sets the value to substitution with. */ - public var to: String? - - public init(from: String? = nil, to: String? = nil) { - self.from = from - self.to = to - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case from = "From" - case to = "To" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(from, forKey: .from) - try encoderContainer.encodeIfPresent(to, forKey: .to) - } -} diff --git a/Sources/JellyfinAPI/Models/PersonLookupInfo.swift b/Sources/JellyfinAPI/Models/PersonLookupInfo.swift deleted file mode 100644 index dfa8bd406..000000000 --- a/Sources/JellyfinAPI/Models/PersonLookupInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// PersonLookupInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct PersonLookupInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - } -} diff --git a/Sources/JellyfinAPI/Models/PersonLookupInfoRemoteSearchQuery.swift b/Sources/JellyfinAPI/Models/PersonLookupInfoRemoteSearchQuery.swift deleted file mode 100644 index 5a16f6d83..000000000 --- a/Sources/JellyfinAPI/Models/PersonLookupInfoRemoteSearchQuery.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// PersonLookupInfoRemoteSearchQuery.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct PersonLookupInfoRemoteSearchQuery: Codable, JSONEncodable, Hashable { - - public var searchInfo: PersonLookupInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: PersonLookupInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/PersonLookupInfoRemoteSearchQuerySearchInfo.swift b/Sources/JellyfinAPI/Models/PersonLookupInfoRemoteSearchQuerySearchInfo.swift deleted file mode 100644 index bb8c88337..000000000 --- a/Sources/JellyfinAPI/Models/PersonLookupInfoRemoteSearchQuerySearchInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// PersonLookupInfoRemoteSearchQuerySearchInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct PersonLookupInfoRemoteSearchQuerySearchInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - } -} diff --git a/Sources/JellyfinAPI/Models/PinRedeemResult.swift b/Sources/JellyfinAPI/Models/PinRedeemResult.swift deleted file mode 100644 index 7b09ff067..000000000 --- a/Sources/JellyfinAPI/Models/PinRedeemResult.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// PinRedeemResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct PinRedeemResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether this MediaBrowser.Model.Users.PinRedeemResult is success. */ - public var success: Bool? - /** Gets or sets the users reset. */ - public var usersReset: [String]? - - public init(success: Bool? = nil, usersReset: [String]? = nil) { - self.success = success - self.usersReset = usersReset - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case success = "Success" - case usersReset = "UsersReset" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(success, forKey: .success) - try encoderContainer.encodeIfPresent(usersReset, forKey: .usersReset) - } -} diff --git a/Sources/JellyfinAPI/Models/PingRequestDto.swift b/Sources/JellyfinAPI/Models/PingRequestDto.swift deleted file mode 100644 index 4d56e295f..000000000 --- a/Sources/JellyfinAPI/Models/PingRequestDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// PingRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PingRequestDto. */ -public struct PingRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the ping time. */ - public var ping: Int64? - - public init(ping: Int64? = nil) { - self.ping = ping - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case ping = "Ping" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(ping, forKey: .ping) - } -} diff --git a/Sources/JellyfinAPI/Models/PlayAccess.swift b/Sources/JellyfinAPI/Models/PlayAccess.swift deleted file mode 100644 index 77a9c078e..000000000 --- a/Sources/JellyfinAPI/Models/PlayAccess.swift +++ /dev/null @@ -1,16 +0,0 @@ -// -// PlayAccess.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum PlayAccess: String, Codable, CaseIterable { - case full = "Full" - case _none = "None" -} diff --git a/Sources/JellyfinAPI/Models/PlayCommand.swift b/Sources/JellyfinAPI/Models/PlayCommand.swift deleted file mode 100644 index c966c16f7..000000000 --- a/Sources/JellyfinAPI/Models/PlayCommand.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// PlayCommand.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum PlayCommand. */ -public enum PlayCommand: String, Codable, CaseIterable { - case playNow = "PlayNow" - case playNext = "PlayNext" - case playLast = "PlayLast" - case playInstantMix = "PlayInstantMix" - case playShuffle = "PlayShuffle" -} diff --git a/Sources/JellyfinAPI/Models/PlayMethod.swift b/Sources/JellyfinAPI/Models/PlayMethod.swift deleted file mode 100644 index 85a964178..000000000 --- a/Sources/JellyfinAPI/Models/PlayMethod.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// PlayMethod.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum PlayMethod: String, Codable, CaseIterable { - case transcode = "Transcode" - case directStream = "DirectStream" - case directPlay = "DirectPlay" -} diff --git a/Sources/JellyfinAPI/Models/PlayRequest.swift b/Sources/JellyfinAPI/Models/PlayRequest.swift deleted file mode 100644 index bf3cd9d29..000000000 --- a/Sources/JellyfinAPI/Models/PlayRequest.swift +++ /dev/null @@ -1,64 +0,0 @@ -// -// PlayRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PlayRequest. */ -public struct PlayRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the item ids. */ - public var itemIds: [String]? - /** Gets or sets the start position ticks that the first item should be played at. */ - public var startPositionTicks: Int64? - /** Gets or sets the play command. */ - public var playCommand: PlayCommand? - /** Gets or sets the controlling user identifier. */ - public var controllingUserId: String? - public var subtitleStreamIndex: Int? - public var audioStreamIndex: Int? - public var mediaSourceId: String? - public var startIndex: Int? - - public init(itemIds: [String]? = nil, startPositionTicks: Int64? = nil, playCommand: PlayCommand? = nil, controllingUserId: String? = nil, subtitleStreamIndex: Int? = nil, audioStreamIndex: Int? = nil, mediaSourceId: String? = nil, startIndex: Int? = nil) { - self.itemIds = itemIds - self.startPositionTicks = startPositionTicks - self.playCommand = playCommand - self.controllingUserId = controllingUserId - self.subtitleStreamIndex = subtitleStreamIndex - self.audioStreamIndex = audioStreamIndex - self.mediaSourceId = mediaSourceId - self.startIndex = startIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case itemIds = "ItemIds" - case startPositionTicks = "StartPositionTicks" - case playCommand = "PlayCommand" - case controllingUserId = "ControllingUserId" - case subtitleStreamIndex = "SubtitleStreamIndex" - case audioStreamIndex = "AudioStreamIndex" - case mediaSourceId = "MediaSourceId" - case startIndex = "StartIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(itemIds, forKey: .itemIds) - try encoderContainer.encodeIfPresent(startPositionTicks, forKey: .startPositionTicks) - try encoderContainer.encodeIfPresent(playCommand, forKey: .playCommand) - try encoderContainer.encodeIfPresent(controllingUserId, forKey: .controllingUserId) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/PlayRequestDto.swift b/Sources/JellyfinAPI/Models/PlayRequestDto.swift deleted file mode 100644 index a3b4f82f4..000000000 --- a/Sources/JellyfinAPI/Models/PlayRequestDto.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// PlayRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PlayRequestDto. */ -public struct PlayRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playing queue. */ - public var playingQueue: [String]? - /** Gets or sets the position of the playing item in the queue. */ - public var playingItemPosition: Int? - /** Gets or sets the start position ticks. */ - public var startPositionTicks: Int64? - - public init(playingQueue: [String]? = nil, playingItemPosition: Int? = nil, startPositionTicks: Int64? = nil) { - self.playingQueue = playingQueue - self.playingItemPosition = playingItemPosition - self.startPositionTicks = startPositionTicks - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playingQueue = "PlayingQueue" - case playingItemPosition = "PlayingItemPosition" - case startPositionTicks = "StartPositionTicks" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playingQueue, forKey: .playingQueue) - try encoderContainer.encodeIfPresent(playingItemPosition, forKey: .playingItemPosition) - try encoderContainer.encodeIfPresent(startPositionTicks, forKey: .startPositionTicks) - } -} diff --git a/Sources/JellyfinAPI/Models/PlaybackErrorCode.swift b/Sources/JellyfinAPI/Models/PlaybackErrorCode.swift deleted file mode 100644 index 9c52ef46a..000000000 --- a/Sources/JellyfinAPI/Models/PlaybackErrorCode.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// PlaybackErrorCode.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum PlaybackErrorCode: String, Codable, CaseIterable { - case notAllowed = "NotAllowed" - case noCompatibleStream = "NoCompatibleStream" - case rateLimitExceeded = "RateLimitExceeded" -} diff --git a/Sources/JellyfinAPI/Models/PlaybackInfoDto.swift b/Sources/JellyfinAPI/Models/PlaybackInfoDto.swift deleted file mode 100644 index 8add242d5..000000000 --- a/Sources/JellyfinAPI/Models/PlaybackInfoDto.swift +++ /dev/null @@ -1,102 +0,0 @@ -// -// PlaybackInfoDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Plabyback info dto. */ -public struct PlaybackInfoDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playback userId. */ - public var userId: String? - /** Gets or sets the max streaming bitrate. */ - public var maxStreamingBitrate: Int? - /** Gets or sets the start time in ticks. */ - public var startTimeTicks: Int64? - /** Gets or sets the audio stream index. */ - public var audioStreamIndex: Int? - /** Gets or sets the subtitle stream index. */ - public var subtitleStreamIndex: Int? - /** Gets or sets the max audio channels. */ - public var maxAudioChannels: Int? - /** Gets or sets the media source id. */ - public var mediaSourceId: String? - /** Gets or sets the live stream id. */ - public var liveStreamId: String? - public var deviceProfile: ClientCapabilitiesDeviceProfile? - /** Gets or sets a value indicating whether to enable direct play. */ - public var enableDirectPlay: Bool? - /** Gets or sets a value indicating whether to enable direct stream. */ - public var enableDirectStream: Bool? - /** Gets or sets a value indicating whether to enable transcoding. */ - public var enableTranscoding: Bool? - /** Gets or sets a value indicating whether to enable video stream copy. */ - public var allowVideoStreamCopy: Bool? - /** Gets or sets a value indicating whether to allow audio stream copy. */ - public var allowAudioStreamCopy: Bool? - /** Gets or sets a value indicating whether to auto open the live stream. */ - public var autoOpenLiveStream: Bool? - - public init(userId: String? = nil, maxStreamingBitrate: Int? = nil, startTimeTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, maxAudioChannels: Int? = nil, mediaSourceId: String? = nil, liveStreamId: String? = nil, deviceProfile: ClientCapabilitiesDeviceProfile? = nil, enableDirectPlay: Bool? = nil, enableDirectStream: Bool? = nil, enableTranscoding: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, autoOpenLiveStream: Bool? = nil) { - self.userId = userId - self.maxStreamingBitrate = maxStreamingBitrate - self.startTimeTicks = startTimeTicks - self.audioStreamIndex = audioStreamIndex - self.subtitleStreamIndex = subtitleStreamIndex - self.maxAudioChannels = maxAudioChannels - self.mediaSourceId = mediaSourceId - self.liveStreamId = liveStreamId - self.deviceProfile = deviceProfile - self.enableDirectPlay = enableDirectPlay - self.enableDirectStream = enableDirectStream - self.enableTranscoding = enableTranscoding - self.allowVideoStreamCopy = allowVideoStreamCopy - self.allowAudioStreamCopy = allowAudioStreamCopy - self.autoOpenLiveStream = autoOpenLiveStream - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case userId = "UserId" - case maxStreamingBitrate = "MaxStreamingBitrate" - case startTimeTicks = "StartTimeTicks" - case audioStreamIndex = "AudioStreamIndex" - case subtitleStreamIndex = "SubtitleStreamIndex" - case maxAudioChannels = "MaxAudioChannels" - case mediaSourceId = "MediaSourceId" - case liveStreamId = "LiveStreamId" - case deviceProfile = "DeviceProfile" - case enableDirectPlay = "EnableDirectPlay" - case enableDirectStream = "EnableDirectStream" - case enableTranscoding = "EnableTranscoding" - case allowVideoStreamCopy = "AllowVideoStreamCopy" - case allowAudioStreamCopy = "AllowAudioStreamCopy" - case autoOpenLiveStream = "AutoOpenLiveStream" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(maxStreamingBitrate, forKey: .maxStreamingBitrate) - try encoderContainer.encodeIfPresent(startTimeTicks, forKey: .startTimeTicks) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(maxAudioChannels, forKey: .maxAudioChannels) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - try encoderContainer.encodeIfPresent(deviceProfile, forKey: .deviceProfile) - try encoderContainer.encodeIfPresent(enableDirectPlay, forKey: .enableDirectPlay) - try encoderContainer.encodeIfPresent(enableDirectStream, forKey: .enableDirectStream) - try encoderContainer.encodeIfPresent(enableTranscoding, forKey: .enableTranscoding) - try encoderContainer.encodeIfPresent(allowVideoStreamCopy, forKey: .allowVideoStreamCopy) - try encoderContainer.encodeIfPresent(allowAudioStreamCopy, forKey: .allowAudioStreamCopy) - try encoderContainer.encodeIfPresent(autoOpenLiveStream, forKey: .autoOpenLiveStream) - } -} diff --git a/Sources/JellyfinAPI/Models/PlaybackInfoResponse.swift b/Sources/JellyfinAPI/Models/PlaybackInfoResponse.swift deleted file mode 100644 index 28a79abd0..000000000 --- a/Sources/JellyfinAPI/Models/PlaybackInfoResponse.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// PlaybackInfoResponse.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PlaybackInfoResponse. */ -public struct PlaybackInfoResponse: Codable, JSONEncodable, Hashable { - - /** Gets or sets the media sources. */ - public var mediaSources: [MediaSourceInfo]? - /** Gets or sets the play session identifier. */ - public var playSessionId: String? - /** Gets or sets the error code. */ - public var errorCode: PlaybackErrorCode? - - public init(mediaSources: [MediaSourceInfo]? = nil, playSessionId: String? = nil, errorCode: PlaybackErrorCode? = nil) { - self.mediaSources = mediaSources - self.playSessionId = playSessionId - self.errorCode = errorCode - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case mediaSources = "MediaSources" - case playSessionId = "PlaySessionId" - case errorCode = "ErrorCode" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(mediaSources, forKey: .mediaSources) - try encoderContainer.encodeIfPresent(playSessionId, forKey: .playSessionId) - try encoderContainer.encodeIfPresent(errorCode, forKey: .errorCode) - } -} diff --git a/Sources/JellyfinAPI/Models/PlaybackProgressInfo.swift b/Sources/JellyfinAPI/Models/PlaybackProgressInfo.swift deleted file mode 100644 index 6d0d6110f..000000000 --- a/Sources/JellyfinAPI/Models/PlaybackProgressInfo.swift +++ /dev/null @@ -1,122 +0,0 @@ -// -// PlaybackProgressInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PlaybackProgressInfo. */ -public struct PlaybackProgressInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether this instance can seek. */ - public var canSeek: Bool? - public var item: PlaybackProgressInfoItem? - /** Gets or sets the item identifier. */ - public var itemId: String? - /** Gets or sets the session id. */ - public var sessionId: String? - /** Gets or sets the media version identifier. */ - public var mediaSourceId: String? - /** Gets or sets the index of the audio stream. */ - public var audioStreamIndex: Int? - /** Gets or sets the index of the subtitle stream. */ - public var subtitleStreamIndex: Int? - /** Gets or sets a value indicating whether this instance is paused. */ - public var isPaused: Bool? - /** Gets or sets a value indicating whether this instance is muted. */ - public var isMuted: Bool? - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - public var playbackStartTimeTicks: Int64? - /** Gets or sets the volume level. */ - public var volumeLevel: Int? - public var brightness: Int? - public var aspectRatio: String? - /** Gets or sets the play method. */ - public var playMethod: PlayMethod? - /** Gets or sets the live stream identifier. */ - public var liveStreamId: String? - /** Gets or sets the play session identifier. */ - public var playSessionId: String? - /** Gets or sets the repeat mode. */ - public var repeatMode: RepeatMode? - public var nowPlayingQueue: [QueueItem]? - public var playlistItemId: String? - - public init(canSeek: Bool? = nil, item: PlaybackProgressInfoItem? = nil, itemId: String? = nil, sessionId: String? = nil, mediaSourceId: String? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, isPaused: Bool? = nil, isMuted: Bool? = nil, positionTicks: Int64? = nil, playbackStartTimeTicks: Int64? = nil, volumeLevel: Int? = nil, brightness: Int? = nil, aspectRatio: String? = nil, playMethod: PlayMethod? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, repeatMode: RepeatMode? = nil, nowPlayingQueue: [QueueItem]? = nil, playlistItemId: String? = nil) { - self.canSeek = canSeek - self.item = item - self.itemId = itemId - self.sessionId = sessionId - self.mediaSourceId = mediaSourceId - self.audioStreamIndex = audioStreamIndex - self.subtitleStreamIndex = subtitleStreamIndex - self.isPaused = isPaused - self.isMuted = isMuted - self.positionTicks = positionTicks - self.playbackStartTimeTicks = playbackStartTimeTicks - self.volumeLevel = volumeLevel - self.brightness = brightness - self.aspectRatio = aspectRatio - self.playMethod = playMethod - self.liveStreamId = liveStreamId - self.playSessionId = playSessionId - self.repeatMode = repeatMode - self.nowPlayingQueue = nowPlayingQueue - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case canSeek = "CanSeek" - case item = "Item" - case itemId = "ItemId" - case sessionId = "SessionId" - case mediaSourceId = "MediaSourceId" - case audioStreamIndex = "AudioStreamIndex" - case subtitleStreamIndex = "SubtitleStreamIndex" - case isPaused = "IsPaused" - case isMuted = "IsMuted" - case positionTicks = "PositionTicks" - case playbackStartTimeTicks = "PlaybackStartTimeTicks" - case volumeLevel = "VolumeLevel" - case brightness = "Brightness" - case aspectRatio = "AspectRatio" - case playMethod = "PlayMethod" - case liveStreamId = "LiveStreamId" - case playSessionId = "PlaySessionId" - case repeatMode = "RepeatMode" - case nowPlayingQueue = "NowPlayingQueue" - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(canSeek, forKey: .canSeek) - try encoderContainer.encodeIfPresent(item, forKey: .item) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(sessionId, forKey: .sessionId) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(isPaused, forKey: .isPaused) - try encoderContainer.encodeIfPresent(isMuted, forKey: .isMuted) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(playbackStartTimeTicks, forKey: .playbackStartTimeTicks) - try encoderContainer.encodeIfPresent(volumeLevel, forKey: .volumeLevel) - try encoderContainer.encodeIfPresent(brightness, forKey: .brightness) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(playMethod, forKey: .playMethod) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - try encoderContainer.encodeIfPresent(playSessionId, forKey: .playSessionId) - try encoderContainer.encodeIfPresent(repeatMode, forKey: .repeatMode) - try encoderContainer.encodeIfPresent(nowPlayingQueue, forKey: .nowPlayingQueue) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/PlaybackProgressInfoItem.swift b/Sources/JellyfinAPI/Models/PlaybackProgressInfoItem.swift deleted file mode 100644 index 896579400..000000000 --- a/Sources/JellyfinAPI/Models/PlaybackProgressInfoItem.swift +++ /dev/null @@ -1,741 +0,0 @@ -// -// PlaybackProgressInfoItem.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the item. */ -public struct PlaybackProgressInfoItem: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - public var originalTitle: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the etag. */ - public var etag: String? - /** Gets or sets the type of the source. */ - public var sourceType: String? - /** Gets or sets the playlist item identifier. */ - public var playlistItemId: String? - /** Gets or sets the date created. */ - public var dateCreated: Date? - public var dateLastMediaAdded: Date? - public var extraType: String? - public var airsBeforeSeasonNumber: Int? - public var airsAfterSeasonNumber: Int? - public var airsBeforeEpisodeNumber: Int? - public var canDelete: Bool? - public var canDownload: Bool? - public var hasSubtitles: Bool? - public var preferredMetadataLanguage: String? - public var preferredMetadataCountryCode: String? - /** Gets or sets a value indicating whether [supports synchronize]. */ - public var supportsSync: Bool? - public var container: String? - /** Gets or sets the name of the sort. */ - public var sortName: String? - public var forcedSortName: String? - /** Gets or sets the video3 D format. */ - public var video3DFormat: Video3DFormat? - /** Gets or sets the premiere date. */ - public var premiereDate: Date? - /** Gets or sets the external urls. */ - public var externalUrls: [ExternalUrl]? - /** Gets or sets the media versions. */ - public var mediaSources: [MediaSourceInfo]? - /** Gets or sets the critic rating. */ - public var criticRating: Float? - public var productionLocations: [String]? - /** Gets or sets the path. */ - public var path: String? - public var enableMediaSourceDisplay: Bool? - /** Gets or sets the official rating. */ - public var officialRating: String? - /** Gets or sets the custom rating. */ - public var customRating: String? - /** Gets or sets the channel identifier. */ - public var channelId: String? - public var channelName: String? - /** Gets or sets the overview. */ - public var overview: String? - /** Gets or sets the taglines. */ - public var taglines: [String]? - /** Gets or sets the genres. */ - public var genres: [String]? - /** Gets or sets the community rating. */ - public var communityRating: Float? - /** Gets or sets the cumulative run time ticks. */ - public var cumulativeRunTimeTicks: Int64? - /** Gets or sets the run time ticks. */ - public var runTimeTicks: Int64? - /** Gets or sets the play access. */ - public var playAccess: PlayAccess? - /** Gets or sets the aspect ratio. */ - public var aspectRatio: String? - /** Gets or sets the production year. */ - public var productionYear: Int? - /** Gets or sets a value indicating whether this instance is place holder. */ - public var isPlaceHolder: Bool? - /** Gets or sets the number. */ - public var number: String? - public var channelNumber: String? - /** Gets or sets the index number. */ - public var indexNumber: Int? - /** Gets or sets the index number end. */ - public var indexNumberEnd: Int? - /** Gets or sets the parent index number. */ - public var parentIndexNumber: Int? - /** Gets or sets the trailer urls. */ - public var remoteTrailers: [MediaUrl]? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets a value indicating whether this instance is HD. */ - public var isHD: Bool? - /** Gets or sets a value indicating whether this instance is folder. */ - public var isFolder: Bool? - /** Gets or sets the parent id. */ - public var parentId: String? - /** The base item kind. */ - public var type: BaseItemKind? - /** Gets or sets the people. */ - public var people: [BaseItemPerson]? - /** Gets or sets the studios. */ - public var studios: [NameGuidPair]? - public var genreItems: [NameGuidPair]? - /** Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. */ - public var parentLogoItemId: String? - /** Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. */ - public var parentBackdropItemId: String? - /** Gets or sets the parent backdrop image tags. */ - public var parentBackdropImageTags: [String]? - /** Gets or sets the local trailer count. */ - public var localTrailerCount: Int? - public var userData: BaseItemDtoUserData? - /** Gets or sets the recursive item count. */ - public var recursiveItemCount: Int? - /** Gets or sets the child count. */ - public var childCount: Int? - /** Gets or sets the name of the series. */ - public var seriesName: String? - /** Gets or sets the series id. */ - public var seriesId: String? - /** Gets or sets the season identifier. */ - public var seasonId: String? - /** Gets or sets the special feature count. */ - public var specialFeatureCount: Int? - /** Gets or sets the display preferences id. */ - public var displayPreferencesId: String? - /** Gets or sets the status. */ - public var status: String? - /** Gets or sets the air time. */ - public var airTime: String? - /** Gets or sets the air days. */ - public var airDays: [DayOfWeek]? - /** Gets or sets the tags. */ - public var tags: [String]? - /** Gets or sets the primary image aspect ratio, after image enhancements. */ - public var primaryImageAspectRatio: Double? - /** Gets or sets the artists. */ - public var artists: [String]? - /** Gets or sets the artist items. */ - public var artistItems: [NameGuidPair]? - /** Gets or sets the album. */ - public var album: String? - /** Gets or sets the type of the collection. */ - public var collectionType: String? - /** Gets or sets the display order. */ - public var displayOrder: String? - /** Gets or sets the album id. */ - public var albumId: String? - /** Gets or sets the album image tag. */ - public var albumPrimaryImageTag: String? - /** Gets or sets the series primary image tag. */ - public var seriesPrimaryImageTag: String? - /** Gets or sets the album artist. */ - public var albumArtist: String? - /** Gets or sets the album artists. */ - public var albumArtists: [NameGuidPair]? - /** Gets or sets the name of the season. */ - public var seasonName: String? - /** Gets or sets the media streams. */ - public var mediaStreams: [MediaStream]? - /** Gets or sets the type of the video. */ - public var videoType: VideoType? - /** Gets or sets the part count. */ - public var partCount: Int? - public var mediaSourceCount: Int? - /** Gets or sets the image tags. */ - public var imageTags: [String: String]? - /** Gets or sets the backdrop image tags. */ - public var backdropImageTags: [String]? - /** Gets or sets the screenshot image tags. */ - public var screenshotImageTags: [String]? - /** Gets or sets the parent logo image tag. */ - public var parentLogoImageTag: String? - /** Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. */ - public var parentArtItemId: String? - /** Gets or sets the parent art image tag. */ - public var parentArtImageTag: String? - /** Gets or sets the series thumb image tag. */ - public var seriesThumbImageTag: String? - public var imageBlurHashes: BaseItemDtoImageBlurHashes? - /** Gets or sets the series studio. */ - public var seriesStudio: String? - /** Gets or sets the parent thumb item id. */ - public var parentThumbItemId: String? - /** Gets or sets the parent thumb image tag. */ - public var parentThumbImageTag: String? - /** Gets or sets the parent primary image item identifier. */ - public var parentPrimaryImageItemId: String? - /** Gets or sets the parent primary image tag. */ - public var parentPrimaryImageTag: String? - /** Gets or sets the chapters. */ - public var chapters: [ChapterInfo]? - /** Gets or sets the type of the location. */ - public var locationType: LocationType? - /** Gets or sets the type of the iso. */ - public var isoType: IsoType? - /** Gets or sets the type of the media. */ - public var mediaType: String? - /** Gets or sets the end date. */ - public var endDate: Date? - /** Gets or sets the locked fields. */ - public var lockedFields: [MetadataField]? - /** Gets or sets the trailer count. */ - public var trailerCount: Int? - /** Gets or sets the movie count. */ - public var movieCount: Int? - /** Gets or sets the series count. */ - public var seriesCount: Int? - public var programCount: Int? - /** Gets or sets the episode count. */ - public var episodeCount: Int? - /** Gets or sets the song count. */ - public var songCount: Int? - /** Gets or sets the album count. */ - public var albumCount: Int? - public var artistCount: Int? - /** Gets or sets the music video count. */ - public var musicVideoCount: Int? - /** Gets or sets a value indicating whether [enable internet providers]. */ - public var lockData: Bool? - public var width: Int? - public var height: Int? - public var cameraMake: String? - public var cameraModel: String? - public var software: String? - public var exposureTime: Double? - public var focalLength: Double? - public var imageOrientation: ImageOrientation? - public var aperture: Double? - public var shutterSpeed: Double? - public var latitude: Double? - public var longitude: Double? - public var altitude: Double? - public var isoSpeedRating: Int? - /** Gets or sets the series timer identifier. */ - public var seriesTimerId: String? - /** Gets or sets the program identifier. */ - public var programId: String? - /** Gets or sets the channel primary image tag. */ - public var channelPrimaryImageTag: String? - /** Gets or sets the start date of the recording, in UTC. */ - public var startDate: Date? - /** Gets or sets the completion percentage. */ - public var completionPercentage: Double? - /** Gets or sets a value indicating whether this instance is repeat. */ - public var isRepeat: Bool? - /** Gets or sets the episode title. */ - public var episodeTitle: String? - /** Gets or sets the type of the channel. */ - public var channelType: ChannelType? - /** Gets or sets the audio. */ - public var audio: ProgramAudio? - /** Gets or sets a value indicating whether this instance is movie. */ - public var isMovie: Bool? - /** Gets or sets a value indicating whether this instance is sports. */ - public var isSports: Bool? - /** Gets or sets a value indicating whether this instance is series. */ - public var isSeries: Bool? - /** Gets or sets a value indicating whether this instance is live. */ - public var isLive: Bool? - /** Gets or sets a value indicating whether this instance is news. */ - public var isNews: Bool? - /** Gets or sets a value indicating whether this instance is kids. */ - public var isKids: Bool? - /** Gets or sets a value indicating whether this instance is premiere. */ - public var isPremiere: Bool? - /** Gets or sets the timer identifier. */ - public var timerId: String? - - public init(name: String? = nil, originalTitle: String? = nil, serverId: String? = nil, id: String? = nil, etag: String? = nil, sourceType: String? = nil, playlistItemId: String? = nil, dateCreated: Date? = nil, dateLastMediaAdded: Date? = nil, extraType: String? = nil, airsBeforeSeasonNumber: Int? = nil, airsAfterSeasonNumber: Int? = nil, airsBeforeEpisodeNumber: Int? = nil, canDelete: Bool? = nil, canDownload: Bool? = nil, hasSubtitles: Bool? = nil, preferredMetadataLanguage: String? = nil, preferredMetadataCountryCode: String? = nil, supportsSync: Bool? = nil, container: String? = nil, sortName: String? = nil, forcedSortName: String? = nil, video3DFormat: Video3DFormat? = nil, premiereDate: Date? = nil, externalUrls: [ExternalUrl]? = nil, mediaSources: [MediaSourceInfo]? = nil, criticRating: Float? = nil, productionLocations: [String]? = nil, path: String? = nil, enableMediaSourceDisplay: Bool? = nil, officialRating: String? = nil, customRating: String? = nil, channelId: String? = nil, channelName: String? = nil, overview: String? = nil, taglines: [String]? = nil, genres: [String]? = nil, communityRating: Float? = nil, cumulativeRunTimeTicks: Int64? = nil, runTimeTicks: Int64? = nil, playAccess: PlayAccess? = nil, aspectRatio: String? = nil, productionYear: Int? = nil, isPlaceHolder: Bool? = nil, number: String? = nil, channelNumber: String? = nil, indexNumber: Int? = nil, indexNumberEnd: Int? = nil, parentIndexNumber: Int? = nil, remoteTrailers: [MediaUrl]? = nil, providerIds: [String: String]? = nil, isHD: Bool? = nil, isFolder: Bool? = nil, parentId: String? = nil, type: BaseItemKind? = nil, people: [BaseItemPerson]? = nil, studios: [NameGuidPair]? = nil, genreItems: [NameGuidPair]? = nil, parentLogoItemId: String? = nil, parentBackdropItemId: String? = nil, parentBackdropImageTags: [String]? = nil, localTrailerCount: Int? = nil, userData: BaseItemDtoUserData? = nil, recursiveItemCount: Int? = nil, childCount: Int? = nil, seriesName: String? = nil, seriesId: String? = nil, seasonId: String? = nil, specialFeatureCount: Int? = nil, displayPreferencesId: String? = nil, status: String? = nil, airTime: String? = nil, airDays: [DayOfWeek]? = nil, tags: [String]? = nil, primaryImageAspectRatio: Double? = nil, artists: [String]? = nil, artistItems: [NameGuidPair]? = nil, album: String? = nil, collectionType: String? = nil, displayOrder: String? = nil, albumId: String? = nil, albumPrimaryImageTag: String? = nil, seriesPrimaryImageTag: String? = nil, albumArtist: String? = nil, albumArtists: [NameGuidPair]? = nil, seasonName: String? = nil, mediaStreams: [MediaStream]? = nil, videoType: VideoType? = nil, partCount: Int? = nil, mediaSourceCount: Int? = nil, imageTags: [String: String]? = nil, backdropImageTags: [String]? = nil, screenshotImageTags: [String]? = nil, parentLogoImageTag: String? = nil, parentArtItemId: String? = nil, parentArtImageTag: String? = nil, seriesThumbImageTag: String? = nil, imageBlurHashes: BaseItemDtoImageBlurHashes? = nil, seriesStudio: String? = nil, parentThumbItemId: String? = nil, parentThumbImageTag: String? = nil, parentPrimaryImageItemId: String? = nil, parentPrimaryImageTag: String? = nil, chapters: [ChapterInfo]? = nil, locationType: LocationType? = nil, isoType: IsoType? = nil, mediaType: String? = nil, endDate: Date? = nil, lockedFields: [MetadataField]? = nil, trailerCount: Int? = nil, movieCount: Int? = nil, seriesCount: Int? = nil, programCount: Int? = nil, episodeCount: Int? = nil, songCount: Int? = nil, albumCount: Int? = nil, artistCount: Int? = nil, musicVideoCount: Int? = nil, lockData: Bool? = nil, width: Int? = nil, height: Int? = nil, cameraMake: String? = nil, cameraModel: String? = nil, software: String? = nil, exposureTime: Double? = nil, focalLength: Double? = nil, imageOrientation: ImageOrientation? = nil, aperture: Double? = nil, shutterSpeed: Double? = nil, latitude: Double? = nil, longitude: Double? = nil, altitude: Double? = nil, isoSpeedRating: Int? = nil, seriesTimerId: String? = nil, programId: String? = nil, channelPrimaryImageTag: String? = nil, startDate: Date? = nil, completionPercentage: Double? = nil, isRepeat: Bool? = nil, episodeTitle: String? = nil, channelType: ChannelType? = nil, audio: ProgramAudio? = nil, isMovie: Bool? = nil, isSports: Bool? = nil, isSeries: Bool? = nil, isLive: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isPremiere: Bool? = nil, timerId: String? = nil) { - self.name = name - self.originalTitle = originalTitle - self.serverId = serverId - self.id = id - self.etag = etag - self.sourceType = sourceType - self.playlistItemId = playlistItemId - self.dateCreated = dateCreated - self.dateLastMediaAdded = dateLastMediaAdded - self.extraType = extraType - self.airsBeforeSeasonNumber = airsBeforeSeasonNumber - self.airsAfterSeasonNumber = airsAfterSeasonNumber - self.airsBeforeEpisodeNumber = airsBeforeEpisodeNumber - self.canDelete = canDelete - self.canDownload = canDownload - self.hasSubtitles = hasSubtitles - self.preferredMetadataLanguage = preferredMetadataLanguage - self.preferredMetadataCountryCode = preferredMetadataCountryCode - self.supportsSync = supportsSync - self.container = container - self.sortName = sortName - self.forcedSortName = forcedSortName - self.video3DFormat = video3DFormat - self.premiereDate = premiereDate - self.externalUrls = externalUrls - self.mediaSources = mediaSources - self.criticRating = criticRating - self.productionLocations = productionLocations - self.path = path - self.enableMediaSourceDisplay = enableMediaSourceDisplay - self.officialRating = officialRating - self.customRating = customRating - self.channelId = channelId - self.channelName = channelName - self.overview = overview - self.taglines = taglines - self.genres = genres - self.communityRating = communityRating - self.cumulativeRunTimeTicks = cumulativeRunTimeTicks - self.runTimeTicks = runTimeTicks - self.playAccess = playAccess - self.aspectRatio = aspectRatio - self.productionYear = productionYear - self.isPlaceHolder = isPlaceHolder - self.number = number - self.channelNumber = channelNumber - self.indexNumber = indexNumber - self.indexNumberEnd = indexNumberEnd - self.parentIndexNumber = parentIndexNumber - self.remoteTrailers = remoteTrailers - self.providerIds = providerIds - self.isHD = isHD - self.isFolder = isFolder - self.parentId = parentId - self.type = type - self.people = people - self.studios = studios - self.genreItems = genreItems - self.parentLogoItemId = parentLogoItemId - self.parentBackdropItemId = parentBackdropItemId - self.parentBackdropImageTags = parentBackdropImageTags - self.localTrailerCount = localTrailerCount - self.userData = userData - self.recursiveItemCount = recursiveItemCount - self.childCount = childCount - self.seriesName = seriesName - self.seriesId = seriesId - self.seasonId = seasonId - self.specialFeatureCount = specialFeatureCount - self.displayPreferencesId = displayPreferencesId - self.status = status - self.airTime = airTime - self.airDays = airDays - self.tags = tags - self.primaryImageAspectRatio = primaryImageAspectRatio - self.artists = artists - self.artistItems = artistItems - self.album = album - self.collectionType = collectionType - self.displayOrder = displayOrder - self.albumId = albumId - self.albumPrimaryImageTag = albumPrimaryImageTag - self.seriesPrimaryImageTag = seriesPrimaryImageTag - self.albumArtist = albumArtist - self.albumArtists = albumArtists - self.seasonName = seasonName - self.mediaStreams = mediaStreams - self.videoType = videoType - self.partCount = partCount - self.mediaSourceCount = mediaSourceCount - self.imageTags = imageTags - self.backdropImageTags = backdropImageTags - self.screenshotImageTags = screenshotImageTags - self.parentLogoImageTag = parentLogoImageTag - self.parentArtItemId = parentArtItemId - self.parentArtImageTag = parentArtImageTag - self.seriesThumbImageTag = seriesThumbImageTag - self.imageBlurHashes = imageBlurHashes - self.seriesStudio = seriesStudio - self.parentThumbItemId = parentThumbItemId - self.parentThumbImageTag = parentThumbImageTag - self.parentPrimaryImageItemId = parentPrimaryImageItemId - self.parentPrimaryImageTag = parentPrimaryImageTag - self.chapters = chapters - self.locationType = locationType - self.isoType = isoType - self.mediaType = mediaType - self.endDate = endDate - self.lockedFields = lockedFields - self.trailerCount = trailerCount - self.movieCount = movieCount - self.seriesCount = seriesCount - self.programCount = programCount - self.episodeCount = episodeCount - self.songCount = songCount - self.albumCount = albumCount - self.artistCount = artistCount - self.musicVideoCount = musicVideoCount - self.lockData = lockData - self.width = width - self.height = height - self.cameraMake = cameraMake - self.cameraModel = cameraModel - self.software = software - self.exposureTime = exposureTime - self.focalLength = focalLength - self.imageOrientation = imageOrientation - self.aperture = aperture - self.shutterSpeed = shutterSpeed - self.latitude = latitude - self.longitude = longitude - self.altitude = altitude - self.isoSpeedRating = isoSpeedRating - self.seriesTimerId = seriesTimerId - self.programId = programId - self.channelPrimaryImageTag = channelPrimaryImageTag - self.startDate = startDate - self.completionPercentage = completionPercentage - self.isRepeat = isRepeat - self.episodeTitle = episodeTitle - self.channelType = channelType - self.audio = audio - self.isMovie = isMovie - self.isSports = isSports - self.isSeries = isSeries - self.isLive = isLive - self.isNews = isNews - self.isKids = isKids - self.isPremiere = isPremiere - self.timerId = timerId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case serverId = "ServerId" - case id = "Id" - case etag = "Etag" - case sourceType = "SourceType" - case playlistItemId = "PlaylistItemId" - case dateCreated = "DateCreated" - case dateLastMediaAdded = "DateLastMediaAdded" - case extraType = "ExtraType" - case airsBeforeSeasonNumber = "AirsBeforeSeasonNumber" - case airsAfterSeasonNumber = "AirsAfterSeasonNumber" - case airsBeforeEpisodeNumber = "AirsBeforeEpisodeNumber" - case canDelete = "CanDelete" - case canDownload = "CanDownload" - case hasSubtitles = "HasSubtitles" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case preferredMetadataCountryCode = "PreferredMetadataCountryCode" - case supportsSync = "SupportsSync" - case container = "Container" - case sortName = "SortName" - case forcedSortName = "ForcedSortName" - case video3DFormat = "Video3DFormat" - case premiereDate = "PremiereDate" - case externalUrls = "ExternalUrls" - case mediaSources = "MediaSources" - case criticRating = "CriticRating" - case productionLocations = "ProductionLocations" - case path = "Path" - case enableMediaSourceDisplay = "EnableMediaSourceDisplay" - case officialRating = "OfficialRating" - case customRating = "CustomRating" - case channelId = "ChannelId" - case channelName = "ChannelName" - case overview = "Overview" - case taglines = "Taglines" - case genres = "Genres" - case communityRating = "CommunityRating" - case cumulativeRunTimeTicks = "CumulativeRunTimeTicks" - case runTimeTicks = "RunTimeTicks" - case playAccess = "PlayAccess" - case aspectRatio = "AspectRatio" - case productionYear = "ProductionYear" - case isPlaceHolder = "IsPlaceHolder" - case number = "Number" - case channelNumber = "ChannelNumber" - case indexNumber = "IndexNumber" - case indexNumberEnd = "IndexNumberEnd" - case parentIndexNumber = "ParentIndexNumber" - case remoteTrailers = "RemoteTrailers" - case providerIds = "ProviderIds" - case isHD = "IsHD" - case isFolder = "IsFolder" - case parentId = "ParentId" - case type = "Type" - case people = "People" - case studios = "Studios" - case genreItems = "GenreItems" - case parentLogoItemId = "ParentLogoItemId" - case parentBackdropItemId = "ParentBackdropItemId" - case parentBackdropImageTags = "ParentBackdropImageTags" - case localTrailerCount = "LocalTrailerCount" - case userData = "UserData" - case recursiveItemCount = "RecursiveItemCount" - case childCount = "ChildCount" - case seriesName = "SeriesName" - case seriesId = "SeriesId" - case seasonId = "SeasonId" - case specialFeatureCount = "SpecialFeatureCount" - case displayPreferencesId = "DisplayPreferencesId" - case status = "Status" - case airTime = "AirTime" - case airDays = "AirDays" - case tags = "Tags" - case primaryImageAspectRatio = "PrimaryImageAspectRatio" - case artists = "Artists" - case artistItems = "ArtistItems" - case album = "Album" - case collectionType = "CollectionType" - case displayOrder = "DisplayOrder" - case albumId = "AlbumId" - case albumPrimaryImageTag = "AlbumPrimaryImageTag" - case seriesPrimaryImageTag = "SeriesPrimaryImageTag" - case albumArtist = "AlbumArtist" - case albumArtists = "AlbumArtists" - case seasonName = "SeasonName" - case mediaStreams = "MediaStreams" - case videoType = "VideoType" - case partCount = "PartCount" - case mediaSourceCount = "MediaSourceCount" - case imageTags = "ImageTags" - case backdropImageTags = "BackdropImageTags" - case screenshotImageTags = "ScreenshotImageTags" - case parentLogoImageTag = "ParentLogoImageTag" - case parentArtItemId = "ParentArtItemId" - case parentArtImageTag = "ParentArtImageTag" - case seriesThumbImageTag = "SeriesThumbImageTag" - case imageBlurHashes = "ImageBlurHashes" - case seriesStudio = "SeriesStudio" - case parentThumbItemId = "ParentThumbItemId" - case parentThumbImageTag = "ParentThumbImageTag" - case parentPrimaryImageItemId = "ParentPrimaryImageItemId" - case parentPrimaryImageTag = "ParentPrimaryImageTag" - case chapters = "Chapters" - case locationType = "LocationType" - case isoType = "IsoType" - case mediaType = "MediaType" - case endDate = "EndDate" - case lockedFields = "LockedFields" - case trailerCount = "TrailerCount" - case movieCount = "MovieCount" - case seriesCount = "SeriesCount" - case programCount = "ProgramCount" - case episodeCount = "EpisodeCount" - case songCount = "SongCount" - case albumCount = "AlbumCount" - case artistCount = "ArtistCount" - case musicVideoCount = "MusicVideoCount" - case lockData = "LockData" - case width = "Width" - case height = "Height" - case cameraMake = "CameraMake" - case cameraModel = "CameraModel" - case software = "Software" - case exposureTime = "ExposureTime" - case focalLength = "FocalLength" - case imageOrientation = "ImageOrientation" - case aperture = "Aperture" - case shutterSpeed = "ShutterSpeed" - case latitude = "Latitude" - case longitude = "Longitude" - case altitude = "Altitude" - case isoSpeedRating = "IsoSpeedRating" - case seriesTimerId = "SeriesTimerId" - case programId = "ProgramId" - case channelPrimaryImageTag = "ChannelPrimaryImageTag" - case startDate = "StartDate" - case completionPercentage = "CompletionPercentage" - case isRepeat = "IsRepeat" - case episodeTitle = "EpisodeTitle" - case channelType = "ChannelType" - case audio = "Audio" - case isMovie = "IsMovie" - case isSports = "IsSports" - case isSeries = "IsSeries" - case isLive = "IsLive" - case isNews = "IsNews" - case isKids = "IsKids" - case isPremiere = "IsPremiere" - case timerId = "TimerId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(etag, forKey: .etag) - try encoderContainer.encodeIfPresent(sourceType, forKey: .sourceType) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(dateCreated, forKey: .dateCreated) - try encoderContainer.encodeIfPresent(dateLastMediaAdded, forKey: .dateLastMediaAdded) - try encoderContainer.encodeIfPresent(extraType, forKey: .extraType) - try encoderContainer.encodeIfPresent(airsBeforeSeasonNumber, forKey: .airsBeforeSeasonNumber) - try encoderContainer.encodeIfPresent(airsAfterSeasonNumber, forKey: .airsAfterSeasonNumber) - try encoderContainer.encodeIfPresent(airsBeforeEpisodeNumber, forKey: .airsBeforeEpisodeNumber) - try encoderContainer.encodeIfPresent(canDelete, forKey: .canDelete) - try encoderContainer.encodeIfPresent(canDownload, forKey: .canDownload) - try encoderContainer.encodeIfPresent(hasSubtitles, forKey: .hasSubtitles) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(preferredMetadataCountryCode, forKey: .preferredMetadataCountryCode) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(sortName, forKey: .sortName) - try encoderContainer.encodeIfPresent(forcedSortName, forKey: .forcedSortName) - try encoderContainer.encodeIfPresent(video3DFormat, forKey: .video3DFormat) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(externalUrls, forKey: .externalUrls) - try encoderContainer.encodeIfPresent(mediaSources, forKey: .mediaSources) - try encoderContainer.encodeIfPresent(criticRating, forKey: .criticRating) - try encoderContainer.encodeIfPresent(productionLocations, forKey: .productionLocations) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(enableMediaSourceDisplay, forKey: .enableMediaSourceDisplay) - try encoderContainer.encodeIfPresent(officialRating, forKey: .officialRating) - try encoderContainer.encodeIfPresent(customRating, forKey: .customRating) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(taglines, forKey: .taglines) - try encoderContainer.encodeIfPresent(genres, forKey: .genres) - try encoderContainer.encodeIfPresent(communityRating, forKey: .communityRating) - try encoderContainer.encodeIfPresent(cumulativeRunTimeTicks, forKey: .cumulativeRunTimeTicks) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(playAccess, forKey: .playAccess) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(productionYear, forKey: .productionYear) - try encoderContainer.encodeIfPresent(isPlaceHolder, forKey: .isPlaceHolder) - try encoderContainer.encodeIfPresent(number, forKey: .number) - try encoderContainer.encodeIfPresent(channelNumber, forKey: .channelNumber) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(indexNumberEnd, forKey: .indexNumberEnd) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(remoteTrailers, forKey: .remoteTrailers) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(isHD, forKey: .isHD) - try encoderContainer.encodeIfPresent(isFolder, forKey: .isFolder) - try encoderContainer.encodeIfPresent(parentId, forKey: .parentId) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(people, forKey: .people) - try encoderContainer.encodeIfPresent(studios, forKey: .studios) - try encoderContainer.encodeIfPresent(genreItems, forKey: .genreItems) - try encoderContainer.encodeIfPresent(parentLogoItemId, forKey: .parentLogoItemId) - try encoderContainer.encodeIfPresent(parentBackdropItemId, forKey: .parentBackdropItemId) - try encoderContainer.encodeIfPresent(parentBackdropImageTags, forKey: .parentBackdropImageTags) - try encoderContainer.encodeIfPresent(localTrailerCount, forKey: .localTrailerCount) - try encoderContainer.encodeIfPresent(userData, forKey: .userData) - try encoderContainer.encodeIfPresent(recursiveItemCount, forKey: .recursiveItemCount) - try encoderContainer.encodeIfPresent(childCount, forKey: .childCount) - try encoderContainer.encodeIfPresent(seriesName, forKey: .seriesName) - try encoderContainer.encodeIfPresent(seriesId, forKey: .seriesId) - try encoderContainer.encodeIfPresent(seasonId, forKey: .seasonId) - try encoderContainer.encodeIfPresent(specialFeatureCount, forKey: .specialFeatureCount) - try encoderContainer.encodeIfPresent(displayPreferencesId, forKey: .displayPreferencesId) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(airTime, forKey: .airTime) - try encoderContainer.encodeIfPresent(airDays, forKey: .airDays) - try encoderContainer.encodeIfPresent(tags, forKey: .tags) - try encoderContainer.encodeIfPresent(primaryImageAspectRatio, forKey: .primaryImageAspectRatio) - try encoderContainer.encodeIfPresent(artists, forKey: .artists) - try encoderContainer.encodeIfPresent(artistItems, forKey: .artistItems) - try encoderContainer.encodeIfPresent(album, forKey: .album) - try encoderContainer.encodeIfPresent(collectionType, forKey: .collectionType) - try encoderContainer.encodeIfPresent(displayOrder, forKey: .displayOrder) - try encoderContainer.encodeIfPresent(albumId, forKey: .albumId) - try encoderContainer.encodeIfPresent(albumPrimaryImageTag, forKey: .albumPrimaryImageTag) - try encoderContainer.encodeIfPresent(seriesPrimaryImageTag, forKey: .seriesPrimaryImageTag) - try encoderContainer.encodeIfPresent(albumArtist, forKey: .albumArtist) - try encoderContainer.encodeIfPresent(albumArtists, forKey: .albumArtists) - try encoderContainer.encodeIfPresent(seasonName, forKey: .seasonName) - try encoderContainer.encodeIfPresent(mediaStreams, forKey: .mediaStreams) - try encoderContainer.encodeIfPresent(videoType, forKey: .videoType) - try encoderContainer.encodeIfPresent(partCount, forKey: .partCount) - try encoderContainer.encodeIfPresent(mediaSourceCount, forKey: .mediaSourceCount) - try encoderContainer.encodeIfPresent(imageTags, forKey: .imageTags) - try encoderContainer.encodeIfPresent(backdropImageTags, forKey: .backdropImageTags) - try encoderContainer.encodeIfPresent(screenshotImageTags, forKey: .screenshotImageTags) - try encoderContainer.encodeIfPresent(parentLogoImageTag, forKey: .parentLogoImageTag) - try encoderContainer.encodeIfPresent(parentArtItemId, forKey: .parentArtItemId) - try encoderContainer.encodeIfPresent(parentArtImageTag, forKey: .parentArtImageTag) - try encoderContainer.encodeIfPresent(seriesThumbImageTag, forKey: .seriesThumbImageTag) - try encoderContainer.encodeIfPresent(imageBlurHashes, forKey: .imageBlurHashes) - try encoderContainer.encodeIfPresent(seriesStudio, forKey: .seriesStudio) - try encoderContainer.encodeIfPresent(parentThumbItemId, forKey: .parentThumbItemId) - try encoderContainer.encodeIfPresent(parentThumbImageTag, forKey: .parentThumbImageTag) - try encoderContainer.encodeIfPresent(parentPrimaryImageItemId, forKey: .parentPrimaryImageItemId) - try encoderContainer.encodeIfPresent(parentPrimaryImageTag, forKey: .parentPrimaryImageTag) - try encoderContainer.encodeIfPresent(chapters, forKey: .chapters) - try encoderContainer.encodeIfPresent(locationType, forKey: .locationType) - try encoderContainer.encodeIfPresent(isoType, forKey: .isoType) - try encoderContainer.encodeIfPresent(mediaType, forKey: .mediaType) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(lockedFields, forKey: .lockedFields) - try encoderContainer.encodeIfPresent(trailerCount, forKey: .trailerCount) - try encoderContainer.encodeIfPresent(movieCount, forKey: .movieCount) - try encoderContainer.encodeIfPresent(seriesCount, forKey: .seriesCount) - try encoderContainer.encodeIfPresent(programCount, forKey: .programCount) - try encoderContainer.encodeIfPresent(episodeCount, forKey: .episodeCount) - try encoderContainer.encodeIfPresent(songCount, forKey: .songCount) - try encoderContainer.encodeIfPresent(albumCount, forKey: .albumCount) - try encoderContainer.encodeIfPresent(artistCount, forKey: .artistCount) - try encoderContainer.encodeIfPresent(musicVideoCount, forKey: .musicVideoCount) - try encoderContainer.encodeIfPresent(lockData, forKey: .lockData) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(cameraMake, forKey: .cameraMake) - try encoderContainer.encodeIfPresent(cameraModel, forKey: .cameraModel) - try encoderContainer.encodeIfPresent(software, forKey: .software) - try encoderContainer.encodeIfPresent(exposureTime, forKey: .exposureTime) - try encoderContainer.encodeIfPresent(focalLength, forKey: .focalLength) - try encoderContainer.encodeIfPresent(imageOrientation, forKey: .imageOrientation) - try encoderContainer.encodeIfPresent(aperture, forKey: .aperture) - try encoderContainer.encodeIfPresent(shutterSpeed, forKey: .shutterSpeed) - try encoderContainer.encodeIfPresent(latitude, forKey: .latitude) - try encoderContainer.encodeIfPresent(longitude, forKey: .longitude) - try encoderContainer.encodeIfPresent(altitude, forKey: .altitude) - try encoderContainer.encodeIfPresent(isoSpeedRating, forKey: .isoSpeedRating) - try encoderContainer.encodeIfPresent(seriesTimerId, forKey: .seriesTimerId) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - try encoderContainer.encodeIfPresent(channelPrimaryImageTag, forKey: .channelPrimaryImageTag) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(completionPercentage, forKey: .completionPercentage) - try encoderContainer.encodeIfPresent(isRepeat, forKey: .isRepeat) - try encoderContainer.encodeIfPresent(episodeTitle, forKey: .episodeTitle) - try encoderContainer.encodeIfPresent(channelType, forKey: .channelType) - try encoderContainer.encodeIfPresent(audio, forKey: .audio) - try encoderContainer.encodeIfPresent(isMovie, forKey: .isMovie) - try encoderContainer.encodeIfPresent(isSports, forKey: .isSports) - try encoderContainer.encodeIfPresent(isSeries, forKey: .isSeries) - try encoderContainer.encodeIfPresent(isLive, forKey: .isLive) - try encoderContainer.encodeIfPresent(isNews, forKey: .isNews) - try encoderContainer.encodeIfPresent(isKids, forKey: .isKids) - try encoderContainer.encodeIfPresent(isPremiere, forKey: .isPremiere) - try encoderContainer.encodeIfPresent(timerId, forKey: .timerId) - } -} diff --git a/Sources/JellyfinAPI/Models/PlaybackStartInfo.swift b/Sources/JellyfinAPI/Models/PlaybackStartInfo.swift deleted file mode 100644 index 289a76e44..000000000 --- a/Sources/JellyfinAPI/Models/PlaybackStartInfo.swift +++ /dev/null @@ -1,122 +0,0 @@ -// -// PlaybackStartInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PlaybackStartInfo. */ -public struct PlaybackStartInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether this instance can seek. */ - public var canSeek: Bool? - public var item: PlaybackProgressInfoItem? - /** Gets or sets the item identifier. */ - public var itemId: String? - /** Gets or sets the session id. */ - public var sessionId: String? - /** Gets or sets the media version identifier. */ - public var mediaSourceId: String? - /** Gets or sets the index of the audio stream. */ - public var audioStreamIndex: Int? - /** Gets or sets the index of the subtitle stream. */ - public var subtitleStreamIndex: Int? - /** Gets or sets a value indicating whether this instance is paused. */ - public var isPaused: Bool? - /** Gets or sets a value indicating whether this instance is muted. */ - public var isMuted: Bool? - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - public var playbackStartTimeTicks: Int64? - /** Gets or sets the volume level. */ - public var volumeLevel: Int? - public var brightness: Int? - public var aspectRatio: String? - /** Gets or sets the play method. */ - public var playMethod: PlayMethod? - /** Gets or sets the live stream identifier. */ - public var liveStreamId: String? - /** Gets or sets the play session identifier. */ - public var playSessionId: String? - /** Gets or sets the repeat mode. */ - public var repeatMode: RepeatMode? - public var nowPlayingQueue: [QueueItem]? - public var playlistItemId: String? - - public init(canSeek: Bool? = nil, item: PlaybackProgressInfoItem? = nil, itemId: String? = nil, sessionId: String? = nil, mediaSourceId: String? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, isPaused: Bool? = nil, isMuted: Bool? = nil, positionTicks: Int64? = nil, playbackStartTimeTicks: Int64? = nil, volumeLevel: Int? = nil, brightness: Int? = nil, aspectRatio: String? = nil, playMethod: PlayMethod? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, repeatMode: RepeatMode? = nil, nowPlayingQueue: [QueueItem]? = nil, playlistItemId: String? = nil) { - self.canSeek = canSeek - self.item = item - self.itemId = itemId - self.sessionId = sessionId - self.mediaSourceId = mediaSourceId - self.audioStreamIndex = audioStreamIndex - self.subtitleStreamIndex = subtitleStreamIndex - self.isPaused = isPaused - self.isMuted = isMuted - self.positionTicks = positionTicks - self.playbackStartTimeTicks = playbackStartTimeTicks - self.volumeLevel = volumeLevel - self.brightness = brightness - self.aspectRatio = aspectRatio - self.playMethod = playMethod - self.liveStreamId = liveStreamId - self.playSessionId = playSessionId - self.repeatMode = repeatMode - self.nowPlayingQueue = nowPlayingQueue - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case canSeek = "CanSeek" - case item = "Item" - case itemId = "ItemId" - case sessionId = "SessionId" - case mediaSourceId = "MediaSourceId" - case audioStreamIndex = "AudioStreamIndex" - case subtitleStreamIndex = "SubtitleStreamIndex" - case isPaused = "IsPaused" - case isMuted = "IsMuted" - case positionTicks = "PositionTicks" - case playbackStartTimeTicks = "PlaybackStartTimeTicks" - case volumeLevel = "VolumeLevel" - case brightness = "Brightness" - case aspectRatio = "AspectRatio" - case playMethod = "PlayMethod" - case liveStreamId = "LiveStreamId" - case playSessionId = "PlaySessionId" - case repeatMode = "RepeatMode" - case nowPlayingQueue = "NowPlayingQueue" - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(canSeek, forKey: .canSeek) - try encoderContainer.encodeIfPresent(item, forKey: .item) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(sessionId, forKey: .sessionId) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(isPaused, forKey: .isPaused) - try encoderContainer.encodeIfPresent(isMuted, forKey: .isMuted) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(playbackStartTimeTicks, forKey: .playbackStartTimeTicks) - try encoderContainer.encodeIfPresent(volumeLevel, forKey: .volumeLevel) - try encoderContainer.encodeIfPresent(brightness, forKey: .brightness) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(playMethod, forKey: .playMethod) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - try encoderContainer.encodeIfPresent(playSessionId, forKey: .playSessionId) - try encoderContainer.encodeIfPresent(repeatMode, forKey: .repeatMode) - try encoderContainer.encodeIfPresent(nowPlayingQueue, forKey: .nowPlayingQueue) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/PlaybackStopInfo.swift b/Sources/JellyfinAPI/Models/PlaybackStopInfo.swift deleted file mode 100644 index 9bfd3a34e..000000000 --- a/Sources/JellyfinAPI/Models/PlaybackStopInfo.swift +++ /dev/null @@ -1,79 +0,0 @@ -// -// PlaybackStopInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PlaybackStopInfo. */ -public struct PlaybackStopInfo: Codable, JSONEncodable, Hashable { - - public var item: PlaybackProgressInfoItem? - /** Gets or sets the item identifier. */ - public var itemId: String? - /** Gets or sets the session id. */ - public var sessionId: String? - /** Gets or sets the media version identifier. */ - public var mediaSourceId: String? - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - /** Gets or sets the live stream identifier. */ - public var liveStreamId: String? - /** Gets or sets the play session identifier. */ - public var playSessionId: String? - /** Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed. */ - public var failed: Bool? - public var nextMediaType: String? - public var playlistItemId: String? - public var nowPlayingQueue: [QueueItem]? - - public init(item: PlaybackProgressInfoItem? = nil, itemId: String? = nil, sessionId: String? = nil, mediaSourceId: String? = nil, positionTicks: Int64? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, failed: Bool? = nil, nextMediaType: String? = nil, playlistItemId: String? = nil, nowPlayingQueue: [QueueItem]? = nil) { - self.item = item - self.itemId = itemId - self.sessionId = sessionId - self.mediaSourceId = mediaSourceId - self.positionTicks = positionTicks - self.liveStreamId = liveStreamId - self.playSessionId = playSessionId - self.failed = failed - self.nextMediaType = nextMediaType - self.playlistItemId = playlistItemId - self.nowPlayingQueue = nowPlayingQueue - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case item = "Item" - case itemId = "ItemId" - case sessionId = "SessionId" - case mediaSourceId = "MediaSourceId" - case positionTicks = "PositionTicks" - case liveStreamId = "LiveStreamId" - case playSessionId = "PlaySessionId" - case failed = "Failed" - case nextMediaType = "NextMediaType" - case playlistItemId = "PlaylistItemId" - case nowPlayingQueue = "NowPlayingQueue" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(item, forKey: .item) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(sessionId, forKey: .sessionId) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - try encoderContainer.encodeIfPresent(playSessionId, forKey: .playSessionId) - try encoderContainer.encodeIfPresent(failed, forKey: .failed) - try encoderContainer.encodeIfPresent(nextMediaType, forKey: .nextMediaType) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(nowPlayingQueue, forKey: .nowPlayingQueue) - } -} diff --git a/Sources/JellyfinAPI/Models/PlayerStateInfo.swift b/Sources/JellyfinAPI/Models/PlayerStateInfo.swift deleted file mode 100644 index 09c887021..000000000 --- a/Sources/JellyfinAPI/Models/PlayerStateInfo.swift +++ /dev/null @@ -1,82 +0,0 @@ -// -// PlayerStateInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct PlayerStateInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the now playing position ticks. */ - public var positionTicks: Int64? - /** Gets or sets a value indicating whether this instance can seek. */ - public var canSeek: Bool? - /** Gets or sets a value indicating whether this instance is paused. */ - public var isPaused: Bool? - /** Gets or sets a value indicating whether this instance is muted. */ - public var isMuted: Bool? - /** Gets or sets the volume level. */ - public var volumeLevel: Int? - /** Gets or sets the index of the now playing audio stream. */ - public var audioStreamIndex: Int? - /** Gets or sets the index of the now playing subtitle stream. */ - public var subtitleStreamIndex: Int? - /** Gets or sets the now playing media version identifier. */ - public var mediaSourceId: String? - /** Gets or sets the play method. */ - public var playMethod: PlayMethod? - /** Gets or sets the repeat mode. */ - public var repeatMode: RepeatMode? - /** Gets or sets the now playing live stream identifier. */ - public var liveStreamId: String? - - public init(positionTicks: Int64? = nil, canSeek: Bool? = nil, isPaused: Bool? = nil, isMuted: Bool? = nil, volumeLevel: Int? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, mediaSourceId: String? = nil, playMethod: PlayMethod? = nil, repeatMode: RepeatMode? = nil, liveStreamId: String? = nil) { - self.positionTicks = positionTicks - self.canSeek = canSeek - self.isPaused = isPaused - self.isMuted = isMuted - self.volumeLevel = volumeLevel - self.audioStreamIndex = audioStreamIndex - self.subtitleStreamIndex = subtitleStreamIndex - self.mediaSourceId = mediaSourceId - self.playMethod = playMethod - self.repeatMode = repeatMode - self.liveStreamId = liveStreamId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case positionTicks = "PositionTicks" - case canSeek = "CanSeek" - case isPaused = "IsPaused" - case isMuted = "IsMuted" - case volumeLevel = "VolumeLevel" - case audioStreamIndex = "AudioStreamIndex" - case subtitleStreamIndex = "SubtitleStreamIndex" - case mediaSourceId = "MediaSourceId" - case playMethod = "PlayMethod" - case repeatMode = "RepeatMode" - case liveStreamId = "LiveStreamId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(canSeek, forKey: .canSeek) - try encoderContainer.encodeIfPresent(isPaused, forKey: .isPaused) - try encoderContainer.encodeIfPresent(isMuted, forKey: .isMuted) - try encoderContainer.encodeIfPresent(volumeLevel, forKey: .volumeLevel) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(playMethod, forKey: .playMethod) - try encoderContainer.encodeIfPresent(repeatMode, forKey: .repeatMode) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - } -} diff --git a/Sources/JellyfinAPI/Models/PlaylistCreationResult.swift b/Sources/JellyfinAPI/Models/PlaylistCreationResult.swift deleted file mode 100644 index 0b4c98cf5..000000000 --- a/Sources/JellyfinAPI/Models/PlaylistCreationResult.swift +++ /dev/null @@ -1,31 +0,0 @@ -// -// PlaylistCreationResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct PlaylistCreationResult: Codable, JSONEncodable, Hashable { - - public var id: String? - - public init(id: String? = nil) { - self.id = id - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - } -} diff --git a/Sources/JellyfinAPI/Models/PlaystateCommand.swift b/Sources/JellyfinAPI/Models/PlaystateCommand.swift deleted file mode 100644 index 34908e010..000000000 --- a/Sources/JellyfinAPI/Models/PlaystateCommand.swift +++ /dev/null @@ -1,24 +0,0 @@ -// -// PlaystateCommand.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum PlaystateCommand. */ -public enum PlaystateCommand: String, Codable, CaseIterable { - case stop = "Stop" - case pause = "Pause" - case unpause = "Unpause" - case nextTrack = "NextTrack" - case previousTrack = "PreviousTrack" - case seek = "Seek" - case rewind = "Rewind" - case fastForward = "FastForward" - case playPause = "PlayPause" -} diff --git a/Sources/JellyfinAPI/Models/PlaystateRequest.swift b/Sources/JellyfinAPI/Models/PlaystateRequest.swift deleted file mode 100644 index dbab9f484..000000000 --- a/Sources/JellyfinAPI/Models/PlaystateRequest.swift +++ /dev/null @@ -1,41 +0,0 @@ -// -// PlaystateRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct PlaystateRequest: Codable, JSONEncodable, Hashable { - - /** Enum PlaystateCommand. */ - public var command: PlaystateCommand? - public var seekPositionTicks: Int64? - /** Gets or sets the controlling user identifier. */ - public var controllingUserId: String? - - public init(command: PlaystateCommand? = nil, seekPositionTicks: Int64? = nil, controllingUserId: String? = nil) { - self.command = command - self.seekPositionTicks = seekPositionTicks - self.controllingUserId = controllingUserId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case command = "Command" - case seekPositionTicks = "SeekPositionTicks" - case controllingUserId = "ControllingUserId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(command, forKey: .command) - try encoderContainer.encodeIfPresent(seekPositionTicks, forKey: .seekPositionTicks) - try encoderContainer.encodeIfPresent(controllingUserId, forKey: .controllingUserId) - } -} diff --git a/Sources/JellyfinAPI/Models/PluginInfo.swift b/Sources/JellyfinAPI/Models/PluginInfo.swift deleted file mode 100644 index d184e0a61..000000000 --- a/Sources/JellyfinAPI/Models/PluginInfo.swift +++ /dev/null @@ -1,68 +0,0 @@ -// -// PluginInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** This is a serializable stub class that is used by the api to provide information about installed plugins. */ -public struct PluginInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the version. */ - public var version: String? - /** Gets or sets the name of the configuration file. */ - public var configurationFileName: String? - /** Gets or sets the description. */ - public var description: String? - /** Gets or sets the unique id. */ - public var id: String? - /** Gets or sets a value indicating whether the plugin can be uninstalled. */ - public var canUninstall: Bool? - /** Gets or sets a value indicating whether this plugin has a valid image. */ - public var hasImage: Bool? - /** Gets or sets a value indicating the status of the plugin. */ - public var status: PluginStatus? - - public init(name: String? = nil, version: String? = nil, configurationFileName: String? = nil, description: String? = nil, id: String? = nil, canUninstall: Bool? = nil, hasImage: Bool? = nil, status: PluginStatus? = nil) { - self.name = name - self.version = version - self.configurationFileName = configurationFileName - self.description = description - self.id = id - self.canUninstall = canUninstall - self.hasImage = hasImage - self.status = status - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case version = "Version" - case configurationFileName = "ConfigurationFileName" - case description = "Description" - case id = "Id" - case canUninstall = "CanUninstall" - case hasImage = "HasImage" - case status = "Status" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(version, forKey: .version) - try encoderContainer.encodeIfPresent(configurationFileName, forKey: .configurationFileName) - try encoderContainer.encodeIfPresent(description, forKey: .description) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(canUninstall, forKey: .canUninstall) - try encoderContainer.encodeIfPresent(hasImage, forKey: .hasImage) - try encoderContainer.encodeIfPresent(status, forKey: .status) - } -} diff --git a/Sources/JellyfinAPI/Models/PluginSecurityInfo.swift b/Sources/JellyfinAPI/Models/PluginSecurityInfo.swift deleted file mode 100644 index 4ea669895..000000000 --- a/Sources/JellyfinAPI/Models/PluginSecurityInfo.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// PluginSecurityInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Plugin security info. */ -public struct PluginSecurityInfo: Codable, Hashable { - - /** Gets or sets the supporter key. */ - public var supporterKey: String? - /** Gets or sets a value indicating whether is mb supporter. */ - public var isMbSupporter: Bool? - - public init(supporterKey: String? = nil, isMbSupporter: Bool? = nil) { - self.supporterKey = supporterKey - self.isMbSupporter = isMbSupporter - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case supporterKey = "SupporterKey" - case isMbSupporter = "IsMbSupporter" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(supporterKey, forKey: .supporterKey) - try encoderContainer.encodeIfPresent(isMbSupporter, forKey: .isMbSupporter) - } -} diff --git a/Sources/JellyfinAPI/Models/PluginStatus.swift b/Sources/JellyfinAPI/Models/PluginStatus.swift deleted file mode 100644 index 6bf69a5ff..000000000 --- a/Sources/JellyfinAPI/Models/PluginStatus.swift +++ /dev/null @@ -1,22 +0,0 @@ -// -// PluginStatus.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Plugin load status. */ -public enum PluginStatus: String, Codable, CaseIterable { - case active = "Active" - case restart = "Restart" - case deleted = "Deleted" - case superceded = "Superceded" - case malfunctioned = "Malfunctioned" - case notSupported = "NotSupported" - case disabled = "Disabled" -} diff --git a/Sources/JellyfinAPI/Models/PostFullCapabilitiesRequest.swift b/Sources/JellyfinAPI/Models/PostFullCapabilitiesRequest.swift deleted file mode 100644 index cf5f010a5..000000000 --- a/Sources/JellyfinAPI/Models/PostFullCapabilitiesRequest.swift +++ /dev/null @@ -1,77 +0,0 @@ -// -// PostFullCapabilitiesRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Client capabilities dto. */ -public struct PostFullCapabilitiesRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the list of playable media types. */ - public var playableMediaTypes: [String]? - /** Gets or sets the list of supported commands. */ - public var supportedCommands: [GeneralCommandType]? - /** Gets or sets a value indicating whether session supports media control. */ - public var supportsMediaControl: Bool? - /** Gets or sets a value indicating whether session supports content uploading. */ - public var supportsContentUploading: Bool? - /** Gets or sets the message callback url. */ - public var messageCallbackUrl: String? - /** Gets or sets a value indicating whether session supports a persistent identifier. */ - public var supportsPersistentIdentifier: Bool? - /** Gets or sets a value indicating whether session supports sync. */ - public var supportsSync: Bool? - public var deviceProfile: ClientCapabilitiesDeviceProfile? - /** Gets or sets the app store url. */ - public var appStoreUrl: String? - /** Gets or sets the icon url. */ - public var iconUrl: String? - - public init(playableMediaTypes: [String]? = nil, supportedCommands: [GeneralCommandType]? = nil, supportsMediaControl: Bool? = nil, supportsContentUploading: Bool? = nil, messageCallbackUrl: String? = nil, supportsPersistentIdentifier: Bool? = nil, supportsSync: Bool? = nil, deviceProfile: ClientCapabilitiesDeviceProfile? = nil, appStoreUrl: String? = nil, iconUrl: String? = nil) { - self.playableMediaTypes = playableMediaTypes - self.supportedCommands = supportedCommands - self.supportsMediaControl = supportsMediaControl - self.supportsContentUploading = supportsContentUploading - self.messageCallbackUrl = messageCallbackUrl - self.supportsPersistentIdentifier = supportsPersistentIdentifier - self.supportsSync = supportsSync - self.deviceProfile = deviceProfile - self.appStoreUrl = appStoreUrl - self.iconUrl = iconUrl - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playableMediaTypes = "PlayableMediaTypes" - case supportedCommands = "SupportedCommands" - case supportsMediaControl = "SupportsMediaControl" - case supportsContentUploading = "SupportsContentUploading" - case messageCallbackUrl = "MessageCallbackUrl" - case supportsPersistentIdentifier = "SupportsPersistentIdentifier" - case supportsSync = "SupportsSync" - case deviceProfile = "DeviceProfile" - case appStoreUrl = "AppStoreUrl" - case iconUrl = "IconUrl" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playableMediaTypes, forKey: .playableMediaTypes) - try encoderContainer.encodeIfPresent(supportedCommands, forKey: .supportedCommands) - try encoderContainer.encodeIfPresent(supportsMediaControl, forKey: .supportsMediaControl) - try encoderContainer.encodeIfPresent(supportsContentUploading, forKey: .supportsContentUploading) - try encoderContainer.encodeIfPresent(messageCallbackUrl, forKey: .messageCallbackUrl) - try encoderContainer.encodeIfPresent(supportsPersistentIdentifier, forKey: .supportsPersistentIdentifier) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(deviceProfile, forKey: .deviceProfile) - try encoderContainer.encodeIfPresent(appStoreUrl, forKey: .appStoreUrl) - try encoderContainer.encodeIfPresent(iconUrl, forKey: .iconUrl) - } -} diff --git a/Sources/JellyfinAPI/Models/PostUpdatedMediaRequest.swift b/Sources/JellyfinAPI/Models/PostUpdatedMediaRequest.swift deleted file mode 100644 index de4604d25..000000000 --- a/Sources/JellyfinAPI/Models/PostUpdatedMediaRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// PostUpdatedMediaRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Media Update Info Dto. */ -public struct PostUpdatedMediaRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the list of updates. */ - public var updates: [MediaUpdateInfoPathDto]? - - public init(updates: [MediaUpdateInfoPathDto]? = nil) { - self.updates = updates - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case updates = "Updates" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(updates, forKey: .updates) - } -} diff --git a/Sources/JellyfinAPI/Models/PreviousItemRequestDto.swift b/Sources/JellyfinAPI/Models/PreviousItemRequestDto.swift deleted file mode 100644 index 35d0f3e87..000000000 --- a/Sources/JellyfinAPI/Models/PreviousItemRequestDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// PreviousItemRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PreviousItemRequestDto. */ -public struct PreviousItemRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playing item identifier. */ - public var playlistItemId: String? - - public init(playlistItemId: String? = nil) { - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/ProblemDetails.swift b/Sources/JellyfinAPI/Models/ProblemDetails.swift deleted file mode 100644 index 83ae19577..000000000 --- a/Sources/JellyfinAPI/Models/ProblemDetails.swift +++ /dev/null @@ -1,83 +0,0 @@ -// -// ProblemDetails.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ProblemDetails: Codable, JSONEncodable, Hashable { - - public var type: String? - public var title: String? - public var status: Int? - public var detail: String? - public var instance: String? - - public init(type: String? = nil, title: String? = nil, status: Int? = nil, detail: String? = nil, instance: String? = nil) { - self.type = type - self.title = title - self.status = status - self.detail = detail - self.instance = instance - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case type - case title - case status - case detail - case instance - } - - public var additionalProperties: [String: AnyCodable] = [:] - - public subscript(key: String) -> AnyCodable? { - get { - if let value = additionalProperties[key] { - return value - } - return nil - } - - set { - additionalProperties[key] = newValue - } - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(title, forKey: .title) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(detail, forKey: .detail) - try encoderContainer.encodeIfPresent(instance, forKey: .instance) - var additionalPropertiesContainer = encoder.container(keyedBy: String.self) - try additionalPropertiesContainer.encodeMap(additionalProperties) - } - - // Decodable protocol methods - - public init(from decoder: Decoder) throws { - let decoderContainer = try decoder.container(keyedBy: CodingKeys.self) - type = try decoderContainer.decodeIfPresent(String.self, forKey: .type) - title = try decoderContainer.decodeIfPresent(String.self, forKey: .title) - status = try decoderContainer.decodeIfPresent(Int.self, forKey: .status) - detail = try decoderContainer.decodeIfPresent(String.self, forKey: .detail) - instance = try decoderContainer.decodeIfPresent(String.self, forKey: .instance) - var nonAdditionalPropertyKeys = Set() - nonAdditionalPropertyKeys.insert("type") - nonAdditionalPropertyKeys.insert("title") - nonAdditionalPropertyKeys.insert("status") - nonAdditionalPropertyKeys.insert("detail") - nonAdditionalPropertyKeys.insert("instance") - let additionalPropertiesContainer = try decoder.container(keyedBy: String.self) - additionalProperties = try additionalPropertiesContainer.decodeMap(AnyCodable.self, excludedKeys: nonAdditionalPropertyKeys) - } -} diff --git a/Sources/JellyfinAPI/Models/ProfileCondition.swift b/Sources/JellyfinAPI/Models/ProfileCondition.swift deleted file mode 100644 index b0835f3bc..000000000 --- a/Sources/JellyfinAPI/Models/ProfileCondition.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// ProfileCondition.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ProfileCondition: Codable, JSONEncodable, Hashable { - - public var condition: ProfileConditionType? - public var property: ProfileConditionValue? - public var value: String? - public var isRequired: Bool? - - public init(condition: ProfileConditionType? = nil, property: ProfileConditionValue? = nil, value: String? = nil, isRequired: Bool? = nil) { - self.condition = condition - self.property = property - self.value = value - self.isRequired = isRequired - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case condition = "Condition" - case property = "Property" - case value = "Value" - case isRequired = "IsRequired" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(condition, forKey: .condition) - try encoderContainer.encodeIfPresent(property, forKey: .property) - try encoderContainer.encodeIfPresent(value, forKey: .value) - try encoderContainer.encodeIfPresent(isRequired, forKey: .isRequired) - } -} diff --git a/Sources/JellyfinAPI/Models/ProfileConditionType.swift b/Sources/JellyfinAPI/Models/ProfileConditionType.swift deleted file mode 100644 index 9864acbbd..000000000 --- a/Sources/JellyfinAPI/Models/ProfileConditionType.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// ProfileConditionType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum ProfileConditionType: String, Codable, CaseIterable { - case equals = "Equals" - case notEquals = "NotEquals" - case lessThanEqual = "LessThanEqual" - case greaterThanEqual = "GreaterThanEqual" - case equalsAny = "EqualsAny" -} diff --git a/Sources/JellyfinAPI/Models/ProgramAudio.swift b/Sources/JellyfinAPI/Models/ProgramAudio.swift deleted file mode 100644 index cbbce06c1..000000000 --- a/Sources/JellyfinAPI/Models/ProgramAudio.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// ProgramAudio.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum ProgramAudio: String, Codable, CaseIterable { - case mono = "Mono" - case stereo = "Stereo" - case dolby = "Dolby" - case dolbyDigital = "DolbyDigital" - case thx = "Thx" - case atmos = "Atmos" -} diff --git a/Sources/JellyfinAPI/Models/PublicSystemInfo.swift b/Sources/JellyfinAPI/Models/PublicSystemInfo.swift deleted file mode 100644 index 3ddd9a833..000000000 --- a/Sources/JellyfinAPI/Models/PublicSystemInfo.swift +++ /dev/null @@ -1,62 +0,0 @@ -// -// PublicSystemInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct PublicSystemInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the local address. */ - public var localAddress: String? - /** Gets or sets the name of the server. */ - public var serverName: String? - /** Gets or sets the server version. */ - public var version: String? - /** Gets or sets the product name. This is the AssemblyProduct name. */ - public var productName: String? - /** Gets or sets the operating system. */ - public var operatingSystem: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets a value indicating whether the startup wizard is completed. */ - public var startupWizardCompleted: Bool? - - public init(localAddress: String? = nil, serverName: String? = nil, version: String? = nil, productName: String? = nil, operatingSystem: String? = nil, id: String? = nil, startupWizardCompleted: Bool? = nil) { - self.localAddress = localAddress - self.serverName = serverName - self.version = version - self.productName = productName - self.operatingSystem = operatingSystem - self.id = id - self.startupWizardCompleted = startupWizardCompleted - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case localAddress = "LocalAddress" - case serverName = "ServerName" - case version = "Version" - case productName = "ProductName" - case operatingSystem = "OperatingSystem" - case id = "Id" - case startupWizardCompleted = "StartupWizardCompleted" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(localAddress, forKey: .localAddress) - try encoderContainer.encodeIfPresent(serverName, forKey: .serverName) - try encoderContainer.encodeIfPresent(version, forKey: .version) - try encoderContainer.encodeIfPresent(productName, forKey: .productName) - try encoderContainer.encodeIfPresent(operatingSystem, forKey: .operatingSystem) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(startupWizardCompleted, forKey: .startupWizardCompleted) - } -} diff --git a/Sources/JellyfinAPI/Models/QueryFilters.swift b/Sources/JellyfinAPI/Models/QueryFilters.swift deleted file mode 100644 index 6bfda7d2d..000000000 --- a/Sources/JellyfinAPI/Models/QueryFilters.swift +++ /dev/null @@ -1,35 +0,0 @@ -// -// QueryFilters.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct QueryFilters: Codable, JSONEncodable, Hashable { - - public var genres: [NameGuidPair]? - public var tags: [String]? - - public init(genres: [NameGuidPair]? = nil, tags: [String]? = nil) { - self.genres = genres - self.tags = tags - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case genres = "Genres" - case tags = "Tags" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(genres, forKey: .genres) - try encoderContainer.encodeIfPresent(tags, forKey: .tags) - } -} diff --git a/Sources/JellyfinAPI/Models/QueryFiltersLegacy.swift b/Sources/JellyfinAPI/Models/QueryFiltersLegacy.swift deleted file mode 100644 index 79a124898..000000000 --- a/Sources/JellyfinAPI/Models/QueryFiltersLegacy.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// QueryFiltersLegacy.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct QueryFiltersLegacy: Codable, JSONEncodable, Hashable { - - public var genres: [String]? - public var tags: [String]? - public var officialRatings: [String]? - public var years: [Int]? - - public init(genres: [String]? = nil, tags: [String]? = nil, officialRatings: [String]? = nil, years: [Int]? = nil) { - self.genres = genres - self.tags = tags - self.officialRatings = officialRatings - self.years = years - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case genres = "Genres" - case tags = "Tags" - case officialRatings = "OfficialRatings" - case years = "Years" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(genres, forKey: .genres) - try encoderContainer.encodeIfPresent(tags, forKey: .tags) - try encoderContainer.encodeIfPresent(officialRatings, forKey: .officialRatings) - try encoderContainer.encodeIfPresent(years, forKey: .years) - } -} diff --git a/Sources/JellyfinAPI/Models/QueueItem.swift b/Sources/JellyfinAPI/Models/QueueItem.swift deleted file mode 100644 index b1d8c739e..000000000 --- a/Sources/JellyfinAPI/Models/QueueItem.swift +++ /dev/null @@ -1,35 +0,0 @@ -// -// QueueItem.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct QueueItem: Codable, JSONEncodable, Hashable { - - public var id: String? - public var playlistItemId: String? - - public init(id: String? = nil, playlistItemId: String? = nil) { - self.id = id - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/QueueRequestDto.swift b/Sources/JellyfinAPI/Models/QueueRequestDto.swift deleted file mode 100644 index 4c36643c0..000000000 --- a/Sources/JellyfinAPI/Models/QueueRequestDto.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// QueueRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class QueueRequestDto. */ -public struct QueueRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the items to enqueue. */ - public var itemIds: [String]? - /** Enum GroupQueueMode. */ - public var mode: GroupQueueMode? - - public init(itemIds: [String]? = nil, mode: GroupQueueMode? = nil) { - self.itemIds = itemIds - self.mode = mode - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case itemIds = "ItemIds" - case mode = "Mode" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(itemIds, forKey: .itemIds) - try encoderContainer.encodeIfPresent(mode, forKey: .mode) - } -} diff --git a/Sources/JellyfinAPI/Models/QuickConnectDto.swift b/Sources/JellyfinAPI/Models/QuickConnectDto.swift deleted file mode 100644 index f897b9d4a..000000000 --- a/Sources/JellyfinAPI/Models/QuickConnectDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// QuickConnectDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The quick connect request body. */ -public struct QuickConnectDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the quick connect secret. */ - public var secret: String - - public init(secret: String) { - self.secret = secret - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case secret = "Secret" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(secret, forKey: .secret) - } -} diff --git a/Sources/JellyfinAPI/Models/QuickConnectResult.swift b/Sources/JellyfinAPI/Models/QuickConnectResult.swift deleted file mode 100644 index 3dda01b48..000000000 --- a/Sources/JellyfinAPI/Models/QuickConnectResult.swift +++ /dev/null @@ -1,68 +0,0 @@ -// -// QuickConnectResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Stores the state of an quick connect request. */ -public struct QuickConnectResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether this request is authorized. */ - public var authenticated: Bool? - /** Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information. */ - public var secret: String? - /** Gets the user facing code used so the user can quickly differentiate this request from others. */ - public var code: String? - /** Gets the requesting device id. */ - public var deviceId: String? - /** Gets the requesting device name. */ - public var deviceName: String? - /** Gets the requesting app name. */ - public var appName: String? - /** Gets the requesting app version. */ - public var appVersion: String? - /** Gets or sets the DateTime that this request was created. */ - public var dateAdded: Date? - - public init(authenticated: Bool? = nil, secret: String? = nil, code: String? = nil, deviceId: String? = nil, deviceName: String? = nil, appName: String? = nil, appVersion: String? = nil, dateAdded: Date? = nil) { - self.authenticated = authenticated - self.secret = secret - self.code = code - self.deviceId = deviceId - self.deviceName = deviceName - self.appName = appName - self.appVersion = appVersion - self.dateAdded = dateAdded - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case authenticated = "Authenticated" - case secret = "Secret" - case code = "Code" - case deviceId = "DeviceId" - case deviceName = "DeviceName" - case appName = "AppName" - case appVersion = "AppVersion" - case dateAdded = "DateAdded" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(authenticated, forKey: .authenticated) - try encoderContainer.encodeIfPresent(secret, forKey: .secret) - try encoderContainer.encodeIfPresent(code, forKey: .code) - try encoderContainer.encodeIfPresent(deviceId, forKey: .deviceId) - try encoderContainer.encodeIfPresent(deviceName, forKey: .deviceName) - try encoderContainer.encodeIfPresent(appName, forKey: .appName) - try encoderContainer.encodeIfPresent(appVersion, forKey: .appVersion) - try encoderContainer.encodeIfPresent(dateAdded, forKey: .dateAdded) - } -} diff --git a/Sources/JellyfinAPI/Models/QuickConnectState.swift b/Sources/JellyfinAPI/Models/QuickConnectState.swift deleted file mode 100644 index 37b4cdbb7..000000000 --- a/Sources/JellyfinAPI/Models/QuickConnectState.swift +++ /dev/null @@ -1,18 +0,0 @@ -// -// QuickConnectState.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Quick connect state. */ -public enum QuickConnectState: String, Codable, CaseIterable { - case unavailable = "Unavailable" - case available = "Available" - case active = "Active" -} diff --git a/Sources/JellyfinAPI/Models/RatingType.swift b/Sources/JellyfinAPI/Models/RatingType.swift deleted file mode 100644 index 82db52999..000000000 --- a/Sources/JellyfinAPI/Models/RatingType.swift +++ /dev/null @@ -1,16 +0,0 @@ -// -// RatingType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum RatingType: String, Codable, CaseIterable { - case score = "Score" - case likes = "Likes" -} diff --git a/Sources/JellyfinAPI/Models/ReadyRequestDto.swift b/Sources/JellyfinAPI/Models/ReadyRequestDto.swift deleted file mode 100644 index 5f6c7e3a0..000000000 --- a/Sources/JellyfinAPI/Models/ReadyRequestDto.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// ReadyRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class ReadyRequest. */ -public struct ReadyRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets when the request has been made by the client. */ - public var when: Date? - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - /** Gets or sets a value indicating whether the client playback is unpaused. */ - public var isPlaying: Bool? - /** Gets or sets the playlist item identifier of the playing item. */ - public var playlistItemId: String? - - public init(when: Date? = nil, positionTicks: Int64? = nil, isPlaying: Bool? = nil, playlistItemId: String? = nil) { - self.when = when - self.positionTicks = positionTicks - self.isPlaying = isPlaying - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case when = "When" - case positionTicks = "PositionTicks" - case isPlaying = "IsPlaying" - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(when, forKey: .when) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(isPlaying, forKey: .isPlaying) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/RecommendationDto.swift b/Sources/JellyfinAPI/Models/RecommendationDto.swift deleted file mode 100644 index 055460b2f..000000000 --- a/Sources/JellyfinAPI/Models/RecommendationDto.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// RecommendationDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct RecommendationDto: Codable, JSONEncodable, Hashable { - - public var items: [BaseItemDto]? - public var recommendationType: RecommendationType? - public var baselineItemName: String? - public var categoryId: String? - - public init(items: [BaseItemDto]? = nil, recommendationType: RecommendationType? = nil, baselineItemName: String? = nil, categoryId: String? = nil) { - self.items = items - self.recommendationType = recommendationType - self.baselineItemName = baselineItemName - self.categoryId = categoryId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case items = "Items" - case recommendationType = "RecommendationType" - case baselineItemName = "BaselineItemName" - case categoryId = "CategoryId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(items, forKey: .items) - try encoderContainer.encodeIfPresent(recommendationType, forKey: .recommendationType) - try encoderContainer.encodeIfPresent(baselineItemName, forKey: .baselineItemName) - try encoderContainer.encodeIfPresent(categoryId, forKey: .categoryId) - } -} diff --git a/Sources/JellyfinAPI/Models/RecommendationType.swift b/Sources/JellyfinAPI/Models/RecommendationType.swift deleted file mode 100644 index 49067e9ae..000000000 --- a/Sources/JellyfinAPI/Models/RecommendationType.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// RecommendationType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum RecommendationType: String, Codable, CaseIterable { - case similarToRecentlyPlayed = "SimilarToRecentlyPlayed" - case similarToLikedItem = "SimilarToLikedItem" - case hasDirectorFromRecentlyPlayed = "HasDirectorFromRecentlyPlayed" - case hasActorFromRecentlyPlayed = "HasActorFromRecentlyPlayed" - case hasLikedDirector = "HasLikedDirector" - case hasLikedActor = "HasLikedActor" -} diff --git a/Sources/JellyfinAPI/Models/RecordingStatus.swift b/Sources/JellyfinAPI/Models/RecordingStatus.swift deleted file mode 100644 index 4e5633d8e..000000000 --- a/Sources/JellyfinAPI/Models/RecordingStatus.swift +++ /dev/null @@ -1,21 +0,0 @@ -// -// RecordingStatus.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum RecordingStatus: String, Codable, CaseIterable { - case new = "New" - case inProgress = "InProgress" - case completed = "Completed" - case cancelled = "Cancelled" - case conflictedOk = "ConflictedOk" - case conflictedNotOk = "ConflictedNotOk" - case error = "Error" -} diff --git a/Sources/JellyfinAPI/Models/RemoteImageInfo.swift b/Sources/JellyfinAPI/Models/RemoteImageInfo.swift deleted file mode 100644 index e5778b9c2..000000000 --- a/Sources/JellyfinAPI/Models/RemoteImageInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// RemoteImageInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class RemoteImageInfo. */ -public struct RemoteImageInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of the provider. */ - public var providerName: String? - /** Gets or sets the URL. */ - public var url: String? - /** Gets or sets a url used for previewing a smaller version. */ - public var thumbnailUrl: String? - /** Gets or sets the height. */ - public var height: Int? - /** Gets or sets the width. */ - public var width: Int? - /** Gets or sets the community rating. */ - public var communityRating: Double? - /** Gets or sets the vote count. */ - public var voteCount: Int? - /** Gets or sets the language. */ - public var language: String? - /** Gets or sets the type. */ - public var type: ImageType? - /** Gets or sets the type of the rating. */ - public var ratingType: RatingType? - - public init(providerName: String? = nil, url: String? = nil, thumbnailUrl: String? = nil, height: Int? = nil, width: Int? = nil, communityRating: Double? = nil, voteCount: Int? = nil, language: String? = nil, type: ImageType? = nil, ratingType: RatingType? = nil) { - self.providerName = providerName - self.url = url - self.thumbnailUrl = thumbnailUrl - self.height = height - self.width = width - self.communityRating = communityRating - self.voteCount = voteCount - self.language = language - self.type = type - self.ratingType = ratingType - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case providerName = "ProviderName" - case url = "Url" - case thumbnailUrl = "ThumbnailUrl" - case height = "Height" - case width = "Width" - case communityRating = "CommunityRating" - case voteCount = "VoteCount" - case language = "Language" - case type = "Type" - case ratingType = "RatingType" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(providerName, forKey: .providerName) - try encoderContainer.encodeIfPresent(url, forKey: .url) - try encoderContainer.encodeIfPresent(thumbnailUrl, forKey: .thumbnailUrl) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(communityRating, forKey: .communityRating) - try encoderContainer.encodeIfPresent(voteCount, forKey: .voteCount) - try encoderContainer.encodeIfPresent(language, forKey: .language) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(ratingType, forKey: .ratingType) - } -} diff --git a/Sources/JellyfinAPI/Models/RemoteImageResult.swift b/Sources/JellyfinAPI/Models/RemoteImageResult.swift deleted file mode 100644 index 1c25d8865..000000000 --- a/Sources/JellyfinAPI/Models/RemoteImageResult.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// RemoteImageResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class RemoteImageResult. */ -public struct RemoteImageResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the images. */ - public var images: [RemoteImageInfo]? - /** Gets or sets the total record count. */ - public var totalRecordCount: Int? - /** Gets or sets the providers. */ - public var providers: [String]? - - public init(images: [RemoteImageInfo]? = nil, totalRecordCount: Int? = nil, providers: [String]? = nil) { - self.images = images - self.totalRecordCount = totalRecordCount - self.providers = providers - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case images = "Images" - case totalRecordCount = "TotalRecordCount" - case providers = "Providers" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(images, forKey: .images) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - try encoderContainer.encodeIfPresent(providers, forKey: .providers) - } -} diff --git a/Sources/JellyfinAPI/Models/RemoteSearchResult.swift b/Sources/JellyfinAPI/Models/RemoteSearchResult.swift deleted file mode 100644 index 7a0ac882a..000000000 --- a/Sources/JellyfinAPI/Models/RemoteSearchResult.swift +++ /dev/null @@ -1,70 +0,0 @@ -// -// RemoteSearchResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct RemoteSearchResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var productionYear: Int? - public var indexNumber: Int? - public var indexNumberEnd: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var imageUrl: String? - public var searchProviderName: String? - public var overview: String? - - public init(name: String? = nil, providerIds: [String: String]? = nil, productionYear: Int? = nil, indexNumber: Int? = nil, indexNumberEnd: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, imageUrl: String? = nil, searchProviderName: String? = nil, overview: String? = nil) { - self.name = name - self.providerIds = providerIds - self.productionYear = productionYear - self.indexNumber = indexNumber - self.indexNumberEnd = indexNumberEnd - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.imageUrl = imageUrl - self.searchProviderName = searchProviderName - self.overview = overview - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case providerIds = "ProviderIds" - case productionYear = "ProductionYear" - case indexNumber = "IndexNumber" - case indexNumberEnd = "IndexNumberEnd" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case imageUrl = "ImageUrl" - case searchProviderName = "SearchProviderName" - case overview = "Overview" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(productionYear, forKey: .productionYear) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(indexNumberEnd, forKey: .indexNumberEnd) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(imageUrl, forKey: .imageUrl) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - } -} diff --git a/Sources/JellyfinAPI/Models/RemoteSubtitleInfo.swift b/Sources/JellyfinAPI/Models/RemoteSubtitleInfo.swift deleted file mode 100644 index e1555fa4a..000000000 --- a/Sources/JellyfinAPI/Models/RemoteSubtitleInfo.swift +++ /dev/null @@ -1,71 +0,0 @@ -// -// RemoteSubtitleInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct RemoteSubtitleInfo: Codable, JSONEncodable, Hashable { - - public var threeLetterISOLanguageName: String? - public var id: String? - public var providerName: String? - public var name: String? - public var format: String? - public var author: String? - public var comment: String? - public var dateCreated: Date? - public var communityRating: Float? - public var downloadCount: Int? - public var isHashMatch: Bool? - - public init(threeLetterISOLanguageName: String? = nil, id: String? = nil, providerName: String? = nil, name: String? = nil, format: String? = nil, author: String? = nil, comment: String? = nil, dateCreated: Date? = nil, communityRating: Float? = nil, downloadCount: Int? = nil, isHashMatch: Bool? = nil) { - self.threeLetterISOLanguageName = threeLetterISOLanguageName - self.id = id - self.providerName = providerName - self.name = name - self.format = format - self.author = author - self.comment = comment - self.dateCreated = dateCreated - self.communityRating = communityRating - self.downloadCount = downloadCount - self.isHashMatch = isHashMatch - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case threeLetterISOLanguageName = "ThreeLetterISOLanguageName" - case id = "Id" - case providerName = "ProviderName" - case name = "Name" - case format = "Format" - case author = "Author" - case comment = "Comment" - case dateCreated = "DateCreated" - case communityRating = "CommunityRating" - case downloadCount = "DownloadCount" - case isHashMatch = "IsHashMatch" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(threeLetterISOLanguageName, forKey: .threeLetterISOLanguageName) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(providerName, forKey: .providerName) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(format, forKey: .format) - try encoderContainer.encodeIfPresent(author, forKey: .author) - try encoderContainer.encodeIfPresent(comment, forKey: .comment) - try encoderContainer.encodeIfPresent(dateCreated, forKey: .dateCreated) - try encoderContainer.encodeIfPresent(communityRating, forKey: .communityRating) - try encoderContainer.encodeIfPresent(downloadCount, forKey: .downloadCount) - try encoderContainer.encodeIfPresent(isHashMatch, forKey: .isHashMatch) - } -} diff --git a/Sources/JellyfinAPI/Models/RemoveFromPlaylistRequestDto.swift b/Sources/JellyfinAPI/Models/RemoveFromPlaylistRequestDto.swift deleted file mode 100644 index 6507df999..000000000 --- a/Sources/JellyfinAPI/Models/RemoveFromPlaylistRequestDto.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// RemoveFromPlaylistRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class RemoveFromPlaylistRequestDto. */ -public struct RemoveFromPlaylistRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist. */ - public var playlistItemIds: [String]? - /** Gets or sets a value indicating whether the entire playlist should be cleared. */ - public var clearPlaylist: Bool? - /** Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist. */ - public var clearPlayingItem: Bool? - - public init(playlistItemIds: [String]? = nil, clearPlaylist: Bool? = nil, clearPlayingItem: Bool? = nil) { - self.playlistItemIds = playlistItemIds - self.clearPlaylist = clearPlaylist - self.clearPlayingItem = clearPlayingItem - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playlistItemIds = "PlaylistItemIds" - case clearPlaylist = "ClearPlaylist" - case clearPlayingItem = "ClearPlayingItem" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playlistItemIds, forKey: .playlistItemIds) - try encoderContainer.encodeIfPresent(clearPlaylist, forKey: .clearPlaylist) - try encoderContainer.encodeIfPresent(clearPlayingItem, forKey: .clearPlayingItem) - } -} diff --git a/Sources/JellyfinAPI/Models/RepeatMode.swift b/Sources/JellyfinAPI/Models/RepeatMode.swift deleted file mode 100644 index c114dba9a..000000000 --- a/Sources/JellyfinAPI/Models/RepeatMode.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// RepeatMode.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum RepeatMode: String, Codable, CaseIterable { - case repeatNone = "RepeatNone" - case repeatAll = "RepeatAll" - case repeatOne = "RepeatOne" -} diff --git a/Sources/JellyfinAPI/Models/ReportPlaybackProgressRequest.swift b/Sources/JellyfinAPI/Models/ReportPlaybackProgressRequest.swift deleted file mode 100644 index 0a4a8dd7f..000000000 --- a/Sources/JellyfinAPI/Models/ReportPlaybackProgressRequest.swift +++ /dev/null @@ -1,122 +0,0 @@ -// -// ReportPlaybackProgressRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PlaybackProgressInfo. */ -public struct ReportPlaybackProgressRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether this instance can seek. */ - public var canSeek: Bool? - public var item: PlaybackProgressInfoItem? - /** Gets or sets the item identifier. */ - public var itemId: String? - /** Gets or sets the session id. */ - public var sessionId: String? - /** Gets or sets the media version identifier. */ - public var mediaSourceId: String? - /** Gets or sets the index of the audio stream. */ - public var audioStreamIndex: Int? - /** Gets or sets the index of the subtitle stream. */ - public var subtitleStreamIndex: Int? - /** Gets or sets a value indicating whether this instance is paused. */ - public var isPaused: Bool? - /** Gets or sets a value indicating whether this instance is muted. */ - public var isMuted: Bool? - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - public var playbackStartTimeTicks: Int64? - /** Gets or sets the volume level. */ - public var volumeLevel: Int? - public var brightness: Int? - public var aspectRatio: String? - /** Gets or sets the play method. */ - public var playMethod: PlayMethod? - /** Gets or sets the live stream identifier. */ - public var liveStreamId: String? - /** Gets or sets the play session identifier. */ - public var playSessionId: String? - /** Gets or sets the repeat mode. */ - public var repeatMode: RepeatMode? - public var nowPlayingQueue: [QueueItem]? - public var playlistItemId: String? - - public init(canSeek: Bool? = nil, item: PlaybackProgressInfoItem? = nil, itemId: String? = nil, sessionId: String? = nil, mediaSourceId: String? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, isPaused: Bool? = nil, isMuted: Bool? = nil, positionTicks: Int64? = nil, playbackStartTimeTicks: Int64? = nil, volumeLevel: Int? = nil, brightness: Int? = nil, aspectRatio: String? = nil, playMethod: PlayMethod? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, repeatMode: RepeatMode? = nil, nowPlayingQueue: [QueueItem]? = nil, playlistItemId: String? = nil) { - self.canSeek = canSeek - self.item = item - self.itemId = itemId - self.sessionId = sessionId - self.mediaSourceId = mediaSourceId - self.audioStreamIndex = audioStreamIndex - self.subtitleStreamIndex = subtitleStreamIndex - self.isPaused = isPaused - self.isMuted = isMuted - self.positionTicks = positionTicks - self.playbackStartTimeTicks = playbackStartTimeTicks - self.volumeLevel = volumeLevel - self.brightness = brightness - self.aspectRatio = aspectRatio - self.playMethod = playMethod - self.liveStreamId = liveStreamId - self.playSessionId = playSessionId - self.repeatMode = repeatMode - self.nowPlayingQueue = nowPlayingQueue - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case canSeek = "CanSeek" - case item = "Item" - case itemId = "ItemId" - case sessionId = "SessionId" - case mediaSourceId = "MediaSourceId" - case audioStreamIndex = "AudioStreamIndex" - case subtitleStreamIndex = "SubtitleStreamIndex" - case isPaused = "IsPaused" - case isMuted = "IsMuted" - case positionTicks = "PositionTicks" - case playbackStartTimeTicks = "PlaybackStartTimeTicks" - case volumeLevel = "VolumeLevel" - case brightness = "Brightness" - case aspectRatio = "AspectRatio" - case playMethod = "PlayMethod" - case liveStreamId = "LiveStreamId" - case playSessionId = "PlaySessionId" - case repeatMode = "RepeatMode" - case nowPlayingQueue = "NowPlayingQueue" - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(canSeek, forKey: .canSeek) - try encoderContainer.encodeIfPresent(item, forKey: .item) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(sessionId, forKey: .sessionId) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(isPaused, forKey: .isPaused) - try encoderContainer.encodeIfPresent(isMuted, forKey: .isMuted) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(playbackStartTimeTicks, forKey: .playbackStartTimeTicks) - try encoderContainer.encodeIfPresent(volumeLevel, forKey: .volumeLevel) - try encoderContainer.encodeIfPresent(brightness, forKey: .brightness) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(playMethod, forKey: .playMethod) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - try encoderContainer.encodeIfPresent(playSessionId, forKey: .playSessionId) - try encoderContainer.encodeIfPresent(repeatMode, forKey: .repeatMode) - try encoderContainer.encodeIfPresent(nowPlayingQueue, forKey: .nowPlayingQueue) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/ReportPlaybackStartRequest.swift b/Sources/JellyfinAPI/Models/ReportPlaybackStartRequest.swift deleted file mode 100644 index 957b2ece6..000000000 --- a/Sources/JellyfinAPI/Models/ReportPlaybackStartRequest.swift +++ /dev/null @@ -1,122 +0,0 @@ -// -// ReportPlaybackStartRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PlaybackStartInfo. */ -public struct ReportPlaybackStartRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether this instance can seek. */ - public var canSeek: Bool? - public var item: PlaybackProgressInfoItem? - /** Gets or sets the item identifier. */ - public var itemId: String? - /** Gets or sets the session id. */ - public var sessionId: String? - /** Gets or sets the media version identifier. */ - public var mediaSourceId: String? - /** Gets or sets the index of the audio stream. */ - public var audioStreamIndex: Int? - /** Gets or sets the index of the subtitle stream. */ - public var subtitleStreamIndex: Int? - /** Gets or sets a value indicating whether this instance is paused. */ - public var isPaused: Bool? - /** Gets or sets a value indicating whether this instance is muted. */ - public var isMuted: Bool? - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - public var playbackStartTimeTicks: Int64? - /** Gets or sets the volume level. */ - public var volumeLevel: Int? - public var brightness: Int? - public var aspectRatio: String? - /** Gets or sets the play method. */ - public var playMethod: PlayMethod? - /** Gets or sets the live stream identifier. */ - public var liveStreamId: String? - /** Gets or sets the play session identifier. */ - public var playSessionId: String? - /** Gets or sets the repeat mode. */ - public var repeatMode: RepeatMode? - public var nowPlayingQueue: [QueueItem]? - public var playlistItemId: String? - - public init(canSeek: Bool? = nil, item: PlaybackProgressInfoItem? = nil, itemId: String? = nil, sessionId: String? = nil, mediaSourceId: String? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, isPaused: Bool? = nil, isMuted: Bool? = nil, positionTicks: Int64? = nil, playbackStartTimeTicks: Int64? = nil, volumeLevel: Int? = nil, brightness: Int? = nil, aspectRatio: String? = nil, playMethod: PlayMethod? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, repeatMode: RepeatMode? = nil, nowPlayingQueue: [QueueItem]? = nil, playlistItemId: String? = nil) { - self.canSeek = canSeek - self.item = item - self.itemId = itemId - self.sessionId = sessionId - self.mediaSourceId = mediaSourceId - self.audioStreamIndex = audioStreamIndex - self.subtitleStreamIndex = subtitleStreamIndex - self.isPaused = isPaused - self.isMuted = isMuted - self.positionTicks = positionTicks - self.playbackStartTimeTicks = playbackStartTimeTicks - self.volumeLevel = volumeLevel - self.brightness = brightness - self.aspectRatio = aspectRatio - self.playMethod = playMethod - self.liveStreamId = liveStreamId - self.playSessionId = playSessionId - self.repeatMode = repeatMode - self.nowPlayingQueue = nowPlayingQueue - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case canSeek = "CanSeek" - case item = "Item" - case itemId = "ItemId" - case sessionId = "SessionId" - case mediaSourceId = "MediaSourceId" - case audioStreamIndex = "AudioStreamIndex" - case subtitleStreamIndex = "SubtitleStreamIndex" - case isPaused = "IsPaused" - case isMuted = "IsMuted" - case positionTicks = "PositionTicks" - case playbackStartTimeTicks = "PlaybackStartTimeTicks" - case volumeLevel = "VolumeLevel" - case brightness = "Brightness" - case aspectRatio = "AspectRatio" - case playMethod = "PlayMethod" - case liveStreamId = "LiveStreamId" - case playSessionId = "PlaySessionId" - case repeatMode = "RepeatMode" - case nowPlayingQueue = "NowPlayingQueue" - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(canSeek, forKey: .canSeek) - try encoderContainer.encodeIfPresent(item, forKey: .item) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(sessionId, forKey: .sessionId) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(isPaused, forKey: .isPaused) - try encoderContainer.encodeIfPresent(isMuted, forKey: .isMuted) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(playbackStartTimeTicks, forKey: .playbackStartTimeTicks) - try encoderContainer.encodeIfPresent(volumeLevel, forKey: .volumeLevel) - try encoderContainer.encodeIfPresent(brightness, forKey: .brightness) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(playMethod, forKey: .playMethod) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - try encoderContainer.encodeIfPresent(playSessionId, forKey: .playSessionId) - try encoderContainer.encodeIfPresent(repeatMode, forKey: .repeatMode) - try encoderContainer.encodeIfPresent(nowPlayingQueue, forKey: .nowPlayingQueue) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/ReportPlaybackStoppedRequest.swift b/Sources/JellyfinAPI/Models/ReportPlaybackStoppedRequest.swift deleted file mode 100644 index d984e6018..000000000 --- a/Sources/JellyfinAPI/Models/ReportPlaybackStoppedRequest.swift +++ /dev/null @@ -1,79 +0,0 @@ -// -// ReportPlaybackStoppedRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PlaybackStopInfo. */ -public struct ReportPlaybackStoppedRequest: Codable, JSONEncodable, Hashable { - - public var item: PlaybackProgressInfoItem? - /** Gets or sets the item identifier. */ - public var itemId: String? - /** Gets or sets the session id. */ - public var sessionId: String? - /** Gets or sets the media version identifier. */ - public var mediaSourceId: String? - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - /** Gets or sets the live stream identifier. */ - public var liveStreamId: String? - /** Gets or sets the play session identifier. */ - public var playSessionId: String? - /** Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed. */ - public var failed: Bool? - public var nextMediaType: String? - public var playlistItemId: String? - public var nowPlayingQueue: [QueueItem]? - - public init(item: PlaybackProgressInfoItem? = nil, itemId: String? = nil, sessionId: String? = nil, mediaSourceId: String? = nil, positionTicks: Int64? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, failed: Bool? = nil, nextMediaType: String? = nil, playlistItemId: String? = nil, nowPlayingQueue: [QueueItem]? = nil) { - self.item = item - self.itemId = itemId - self.sessionId = sessionId - self.mediaSourceId = mediaSourceId - self.positionTicks = positionTicks - self.liveStreamId = liveStreamId - self.playSessionId = playSessionId - self.failed = failed - self.nextMediaType = nextMediaType - self.playlistItemId = playlistItemId - self.nowPlayingQueue = nowPlayingQueue - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case item = "Item" - case itemId = "ItemId" - case sessionId = "SessionId" - case mediaSourceId = "MediaSourceId" - case positionTicks = "PositionTicks" - case liveStreamId = "LiveStreamId" - case playSessionId = "PlaySessionId" - case failed = "Failed" - case nextMediaType = "NextMediaType" - case playlistItemId = "PlaylistItemId" - case nowPlayingQueue = "NowPlayingQueue" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(item, forKey: .item) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(sessionId, forKey: .sessionId) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - try encoderContainer.encodeIfPresent(playSessionId, forKey: .playSessionId) - try encoderContainer.encodeIfPresent(failed, forKey: .failed) - try encoderContainer.encodeIfPresent(nextMediaType, forKey: .nextMediaType) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(nowPlayingQueue, forKey: .nowPlayingQueue) - } -} diff --git a/Sources/JellyfinAPI/Models/RepositoryInfo.swift b/Sources/JellyfinAPI/Models/RepositoryInfo.swift deleted file mode 100644 index 079052c54..000000000 --- a/Sources/JellyfinAPI/Models/RepositoryInfo.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// RepositoryInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class RepositoryInfo. */ -public struct RepositoryInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the URL. */ - public var url: String? - /** Gets or sets a value indicating whether the repository is enabled. */ - public var enabled: Bool? - - public init(name: String? = nil, url: String? = nil, enabled: Bool? = nil) { - self.name = name - self.url = url - self.enabled = enabled - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case url = "Url" - case enabled = "Enabled" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(url, forKey: .url) - try encoderContainer.encodeIfPresent(enabled, forKey: .enabled) - } -} diff --git a/Sources/JellyfinAPI/Models/ResponseProfile.swift b/Sources/JellyfinAPI/Models/ResponseProfile.swift deleted file mode 100644 index 94243fb77..000000000 --- a/Sources/JellyfinAPI/Models/ResponseProfile.swift +++ /dev/null @@ -1,55 +0,0 @@ -// -// ResponseProfile.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct ResponseProfile: Codable, JSONEncodable, Hashable { - - public var container: String? - public var audioCodec: String? - public var videoCodec: String? - public var type: DlnaProfileType? - public var orgPn: String? - public var mimeType: String? - public var conditions: [ProfileCondition]? - - public init(container: String? = nil, audioCodec: String? = nil, videoCodec: String? = nil, type: DlnaProfileType? = nil, orgPn: String? = nil, mimeType: String? = nil, conditions: [ProfileCondition]? = nil) { - self.container = container - self.audioCodec = audioCodec - self.videoCodec = videoCodec - self.type = type - self.orgPn = orgPn - self.mimeType = mimeType - self.conditions = conditions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case container = "Container" - case audioCodec = "AudioCodec" - case videoCodec = "VideoCodec" - case type = "Type" - case orgPn = "OrgPn" - case mimeType = "MimeType" - case conditions = "Conditions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(audioCodec, forKey: .audioCodec) - try encoderContainer.encodeIfPresent(videoCodec, forKey: .videoCodec) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(orgPn, forKey: .orgPn) - try encoderContainer.encodeIfPresent(mimeType, forKey: .mimeType) - try encoderContainer.encodeIfPresent(conditions, forKey: .conditions) - } -} diff --git a/Sources/JellyfinAPI/Models/ScrollDirection.swift b/Sources/JellyfinAPI/Models/ScrollDirection.swift deleted file mode 100644 index 7715ec5d2..000000000 --- a/Sources/JellyfinAPI/Models/ScrollDirection.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// ScrollDirection.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** An enum representing the axis that should be scrolled. */ -public enum ScrollDirection: String, Codable, CaseIterable { - case horizontal = "Horizontal" - case vertical = "Vertical" -} diff --git a/Sources/JellyfinAPI/Models/SearchHint.swift b/Sources/JellyfinAPI/Models/SearchHint.swift deleted file mode 100644 index 83e23bb25..000000000 --- a/Sources/JellyfinAPI/Models/SearchHint.swift +++ /dev/null @@ -1,167 +0,0 @@ -// -// SearchHint.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SearchHintResult. */ -public struct SearchHint: Codable, JSONEncodable, Hashable { - - /** Gets or sets the item id. */ - public var itemId: String? - public var id: String? - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the matched term. */ - public var matchedTerm: String? - /** Gets or sets the index number. */ - public var indexNumber: Int? - /** Gets or sets the production year. */ - public var productionYear: Int? - /** Gets or sets the parent index number. */ - public var parentIndexNumber: Int? - /** Gets or sets the image tag. */ - public var primaryImageTag: String? - /** Gets or sets the thumb image tag. */ - public var thumbImageTag: String? - /** Gets or sets the thumb image item identifier. */ - public var thumbImageItemId: String? - /** Gets or sets the backdrop image tag. */ - public var backdropImageTag: String? - /** Gets or sets the backdrop image item identifier. */ - public var backdropImageItemId: String? - /** Gets or sets the type. */ - public var type: String? - public var isFolder: Bool? - /** Gets or sets the run time ticks. */ - public var runTimeTicks: Int64? - /** Gets or sets the type of the media. */ - public var mediaType: String? - public var startDate: Date? - public var endDate: Date? - /** Gets or sets the series. */ - public var series: String? - public var status: String? - /** Gets or sets the album. */ - public var album: String? - public var albumId: String? - /** Gets or sets the album artist. */ - public var albumArtist: String? - /** Gets or sets the artists. */ - public var artists: [String]? - /** Gets or sets the song count. */ - public var songCount: Int? - /** Gets or sets the episode count. */ - public var episodeCount: Int? - /** Gets or sets the channel identifier. */ - public var channelId: String? - /** Gets or sets the name of the channel. */ - public var channelName: String? - /** Gets or sets the primary image aspect ratio. */ - public var primaryImageAspectRatio: Double? - - public init(itemId: String? = nil, id: String? = nil, name: String? = nil, matchedTerm: String? = nil, indexNumber: Int? = nil, productionYear: Int? = nil, parentIndexNumber: Int? = nil, primaryImageTag: String? = nil, thumbImageTag: String? = nil, thumbImageItemId: String? = nil, backdropImageTag: String? = nil, backdropImageItemId: String? = nil, type: String? = nil, isFolder: Bool? = nil, runTimeTicks: Int64? = nil, mediaType: String? = nil, startDate: Date? = nil, endDate: Date? = nil, series: String? = nil, status: String? = nil, album: String? = nil, albumId: String? = nil, albumArtist: String? = nil, artists: [String]? = nil, songCount: Int? = nil, episodeCount: Int? = nil, channelId: String? = nil, channelName: String? = nil, primaryImageAspectRatio: Double? = nil) { - self.itemId = itemId - self.id = id - self.name = name - self.matchedTerm = matchedTerm - self.indexNumber = indexNumber - self.productionYear = productionYear - self.parentIndexNumber = parentIndexNumber - self.primaryImageTag = primaryImageTag - self.thumbImageTag = thumbImageTag - self.thumbImageItemId = thumbImageItemId - self.backdropImageTag = backdropImageTag - self.backdropImageItemId = backdropImageItemId - self.type = type - self.isFolder = isFolder - self.runTimeTicks = runTimeTicks - self.mediaType = mediaType - self.startDate = startDate - self.endDate = endDate - self.series = series - self.status = status - self.album = album - self.albumId = albumId - self.albumArtist = albumArtist - self.artists = artists - self.songCount = songCount - self.episodeCount = episodeCount - self.channelId = channelId - self.channelName = channelName - self.primaryImageAspectRatio = primaryImageAspectRatio - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case itemId = "ItemId" - case id = "Id" - case name = "Name" - case matchedTerm = "MatchedTerm" - case indexNumber = "IndexNumber" - case productionYear = "ProductionYear" - case parentIndexNumber = "ParentIndexNumber" - case primaryImageTag = "PrimaryImageTag" - case thumbImageTag = "ThumbImageTag" - case thumbImageItemId = "ThumbImageItemId" - case backdropImageTag = "BackdropImageTag" - case backdropImageItemId = "BackdropImageItemId" - case type = "Type" - case isFolder = "IsFolder" - case runTimeTicks = "RunTimeTicks" - case mediaType = "MediaType" - case startDate = "StartDate" - case endDate = "EndDate" - case series = "Series" - case status = "Status" - case album = "Album" - case albumId = "AlbumId" - case albumArtist = "AlbumArtist" - case artists = "Artists" - case songCount = "SongCount" - case episodeCount = "EpisodeCount" - case channelId = "ChannelId" - case channelName = "ChannelName" - case primaryImageAspectRatio = "PrimaryImageAspectRatio" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(matchedTerm, forKey: .matchedTerm) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(productionYear, forKey: .productionYear) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(primaryImageTag, forKey: .primaryImageTag) - try encoderContainer.encodeIfPresent(thumbImageTag, forKey: .thumbImageTag) - try encoderContainer.encodeIfPresent(thumbImageItemId, forKey: .thumbImageItemId) - try encoderContainer.encodeIfPresent(backdropImageTag, forKey: .backdropImageTag) - try encoderContainer.encodeIfPresent(backdropImageItemId, forKey: .backdropImageItemId) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(isFolder, forKey: .isFolder) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(mediaType, forKey: .mediaType) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(series, forKey: .series) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(album, forKey: .album) - try encoderContainer.encodeIfPresent(albumId, forKey: .albumId) - try encoderContainer.encodeIfPresent(albumArtist, forKey: .albumArtist) - try encoderContainer.encodeIfPresent(artists, forKey: .artists) - try encoderContainer.encodeIfPresent(songCount, forKey: .songCount) - try encoderContainer.encodeIfPresent(episodeCount, forKey: .episodeCount) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(primaryImageAspectRatio, forKey: .primaryImageAspectRatio) - } -} diff --git a/Sources/JellyfinAPI/Models/SearchHintResult.swift b/Sources/JellyfinAPI/Models/SearchHintResult.swift deleted file mode 100644 index fde885a3a..000000000 --- a/Sources/JellyfinAPI/Models/SearchHintResult.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// SearchHintResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SearchHintResult. */ -public struct SearchHintResult: Codable, JSONEncodable, Hashable { - - /** Gets the search hints. */ - public var searchHints: [SearchHint]? - /** Gets the total record count. */ - public var totalRecordCount: Int? - - public init(searchHints: [SearchHint]? = nil, totalRecordCount: Int? = nil) { - self.searchHints = searchHints - self.totalRecordCount = totalRecordCount - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchHints = "SearchHints" - case totalRecordCount = "TotalRecordCount" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchHints, forKey: .searchHints) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - } -} diff --git a/Sources/JellyfinAPI/Models/SeekRequestDto.swift b/Sources/JellyfinAPI/Models/SeekRequestDto.swift deleted file mode 100644 index 50a24309e..000000000 --- a/Sources/JellyfinAPI/Models/SeekRequestDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SeekRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SeekRequestDto. */ -public struct SeekRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - - public init(positionTicks: Int64? = nil) { - self.positionTicks = positionTicks - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case positionTicks = "PositionTicks" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - } -} diff --git a/Sources/JellyfinAPI/Models/SendCommand.swift b/Sources/JellyfinAPI/Models/SendCommand.swift deleted file mode 100644 index 0a3dce9f4..000000000 --- a/Sources/JellyfinAPI/Models/SendCommand.swift +++ /dev/null @@ -1,58 +0,0 @@ -// -// SendCommand.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SendCommand. */ -public struct SendCommand: Codable, JSONEncodable, Hashable { - - /** Gets the group identifier. */ - public var groupId: String? - /** Gets the playlist identifier of the playing item. */ - public var playlistItemId: String? - /** Gets or sets the UTC time when to execute the command. */ - public var when: Date? - /** Gets the position ticks. */ - public var positionTicks: Int64? - /** Gets the command. */ - public var command: SendCommandType? - /** Gets the UTC time when this command has been emitted. */ - public var emittedAt: Date? - - public init(groupId: String? = nil, playlistItemId: String? = nil, when: Date? = nil, positionTicks: Int64? = nil, command: SendCommandType? = nil, emittedAt: Date? = nil) { - self.groupId = groupId - self.playlistItemId = playlistItemId - self.when = when - self.positionTicks = positionTicks - self.command = command - self.emittedAt = emittedAt - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case groupId = "GroupId" - case playlistItemId = "PlaylistItemId" - case when = "When" - case positionTicks = "PositionTicks" - case command = "Command" - case emittedAt = "EmittedAt" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(groupId, forKey: .groupId) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(when, forKey: .when) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(command, forKey: .command) - try encoderContainer.encodeIfPresent(emittedAt, forKey: .emittedAt) - } -} diff --git a/Sources/JellyfinAPI/Models/SendCommandType.swift b/Sources/JellyfinAPI/Models/SendCommandType.swift deleted file mode 100644 index 2d46fd4b9..000000000 --- a/Sources/JellyfinAPI/Models/SendCommandType.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// SendCommandType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum SendCommandType. */ -public enum SendCommandType: String, Codable, CaseIterable { - case unpause = "Unpause" - case pause = "Pause" - case stop = "Stop" - case seek = "Seek" -} diff --git a/Sources/JellyfinAPI/Models/SendFullGeneralCommandRequest.swift b/Sources/JellyfinAPI/Models/SendFullGeneralCommandRequest.swift deleted file mode 100644 index 57a9fbf72..000000000 --- a/Sources/JellyfinAPI/Models/SendFullGeneralCommandRequest.swift +++ /dev/null @@ -1,40 +0,0 @@ -// -// SendFullGeneralCommandRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SendFullGeneralCommandRequest: Codable, JSONEncodable, Hashable { - - /** This exists simply to identify a set of known commands. */ - public var name: GeneralCommandType? - public var controllingUserId: String? - public var arguments: [String: String]? - - public init(name: GeneralCommandType? = nil, controllingUserId: String? = nil, arguments: [String: String]? = nil) { - self.name = name - self.controllingUserId = controllingUserId - self.arguments = arguments - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case controllingUserId = "ControllingUserId" - case arguments = "Arguments" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(controllingUserId, forKey: .controllingUserId) - try encoderContainer.encodeIfPresent(arguments, forKey: .arguments) - } -} diff --git a/Sources/JellyfinAPI/Models/SendMessageCommandRequest.swift b/Sources/JellyfinAPI/Models/SendMessageCommandRequest.swift deleted file mode 100644 index 16a24f12a..000000000 --- a/Sources/JellyfinAPI/Models/SendMessageCommandRequest.swift +++ /dev/null @@ -1,39 +0,0 @@ -// -// SendMessageCommandRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SendMessageCommandRequest: Codable, JSONEncodable, Hashable { - - public var header: String? - public var text: String - public var timeoutMs: Int64? - - public init(header: String? = nil, text: String, timeoutMs: Int64? = nil) { - self.header = header - self.text = text - self.timeoutMs = timeoutMs - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case header = "Header" - case text = "Text" - case timeoutMs = "TimeoutMs" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(header, forKey: .header) - try encoderContainer.encode(text, forKey: .text) - try encoderContainer.encodeIfPresent(timeoutMs, forKey: .timeoutMs) - } -} diff --git a/Sources/JellyfinAPI/Models/SendToUserType.swift b/Sources/JellyfinAPI/Models/SendToUserType.swift deleted file mode 100644 index cf2a42b75..000000000 --- a/Sources/JellyfinAPI/Models/SendToUserType.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// SendToUserType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum SendToUserType: String, Codable, CaseIterable { - case all = "All" - case admins = "Admins" - case custom = "Custom" -} diff --git a/Sources/JellyfinAPI/Models/SeriesInfo.swift b/Sources/JellyfinAPI/Models/SeriesInfo.swift deleted file mode 100644 index 2525bc013..000000000 --- a/Sources/JellyfinAPI/Models/SeriesInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// SeriesInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SeriesInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - } -} diff --git a/Sources/JellyfinAPI/Models/SeriesInfoRemoteSearchQuery.swift b/Sources/JellyfinAPI/Models/SeriesInfoRemoteSearchQuery.swift deleted file mode 100644 index ad1cf5c28..000000000 --- a/Sources/JellyfinAPI/Models/SeriesInfoRemoteSearchQuery.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// SeriesInfoRemoteSearchQuery.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SeriesInfoRemoteSearchQuery: Codable, JSONEncodable, Hashable { - - public var searchInfo: SeriesInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: SeriesInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/SeriesInfoRemoteSearchQuerySearchInfo.swift b/Sources/JellyfinAPI/Models/SeriesInfoRemoteSearchQuerySearchInfo.swift deleted file mode 100644 index 5de2d8579..000000000 --- a/Sources/JellyfinAPI/Models/SeriesInfoRemoteSearchQuerySearchInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// SeriesInfoRemoteSearchQuerySearchInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SeriesInfoRemoteSearchQuerySearchInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - } -} diff --git a/Sources/JellyfinAPI/Models/SeriesStatus.swift b/Sources/JellyfinAPI/Models/SeriesStatus.swift deleted file mode 100644 index 36047ea17..000000000 --- a/Sources/JellyfinAPI/Models/SeriesStatus.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// SeriesStatus.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum SeriesStatus. */ -public enum SeriesStatus: String, Codable, CaseIterable { - case continuing = "Continuing" - case ended = "Ended" -} diff --git a/Sources/JellyfinAPI/Models/SeriesTimerInfoDto.swift b/Sources/JellyfinAPI/Models/SeriesTimerInfoDto.swift deleted file mode 100644 index c098b37cc..000000000 --- a/Sources/JellyfinAPI/Models/SeriesTimerInfoDto.swift +++ /dev/null @@ -1,198 +0,0 @@ -// -// SeriesTimerInfoDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SeriesTimerInfoDto. */ -public struct SeriesTimerInfoDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the Id of the recording. */ - public var id: String? - public var type: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the external identifier. */ - public var externalId: String? - /** Gets or sets the channel id of the recording. */ - public var channelId: String? - /** Gets or sets the external channel identifier. */ - public var externalChannelId: String? - /** Gets or sets the channel name of the recording. */ - public var channelName: String? - public var channelPrimaryImageTag: String? - /** Gets or sets the program identifier. */ - public var programId: String? - /** Gets or sets the external program identifier. */ - public var externalProgramId: String? - /** Gets or sets the name of the recording. */ - public var name: String? - /** Gets or sets the description of the recording. */ - public var overview: String? - /** Gets or sets the start date of the recording, in UTC. */ - public var startDate: Date? - /** Gets or sets the end date of the recording, in UTC. */ - public var endDate: Date? - /** Gets or sets the name of the service. */ - public var serviceName: String? - /** Gets or sets the priority. */ - public var priority: Int? - /** Gets or sets the pre padding seconds. */ - public var prePaddingSeconds: Int? - /** Gets or sets the post padding seconds. */ - public var postPaddingSeconds: Int? - /** Gets or sets a value indicating whether this instance is pre padding required. */ - public var isPrePaddingRequired: Bool? - /** Gets or sets the Id of the Parent that has a backdrop if the item does not have one. */ - public var parentBackdropItemId: String? - /** Gets or sets the parent backdrop image tags. */ - public var parentBackdropImageTags: [String]? - /** Gets or sets a value indicating whether this instance is post padding required. */ - public var isPostPaddingRequired: Bool? - public var keepUntil: KeepUntil? - /** Gets or sets a value indicating whether [record any time]. */ - public var recordAnyTime: Bool? - public var skipEpisodesInLibrary: Bool? - /** Gets or sets a value indicating whether [record any channel]. */ - public var recordAnyChannel: Bool? - public var keepUpTo: Int? - /** Gets or sets a value indicating whether [record new only]. */ - public var recordNewOnly: Bool? - /** Gets or sets the days. */ - public var days: [DayOfWeek]? - /** Gets or sets the day pattern. */ - public var dayPattern: DayPattern? - /** Gets or sets the image tags. */ - public var imageTags: [String: String]? - /** Gets or sets the parent thumb item id. */ - public var parentThumbItemId: String? - /** Gets or sets the parent thumb image tag. */ - public var parentThumbImageTag: String? - /** Gets or sets the parent primary image item identifier. */ - public var parentPrimaryImageItemId: String? - /** Gets or sets the parent primary image tag. */ - public var parentPrimaryImageTag: String? - - public init(id: String? = nil, type: String? = nil, serverId: String? = nil, externalId: String? = nil, channelId: String? = nil, externalChannelId: String? = nil, channelName: String? = nil, channelPrimaryImageTag: String? = nil, programId: String? = nil, externalProgramId: String? = nil, name: String? = nil, overview: String? = nil, startDate: Date? = nil, endDate: Date? = nil, serviceName: String? = nil, priority: Int? = nil, prePaddingSeconds: Int? = nil, postPaddingSeconds: Int? = nil, isPrePaddingRequired: Bool? = nil, parentBackdropItemId: String? = nil, parentBackdropImageTags: [String]? = nil, isPostPaddingRequired: Bool? = nil, keepUntil: KeepUntil? = nil, recordAnyTime: Bool? = nil, skipEpisodesInLibrary: Bool? = nil, recordAnyChannel: Bool? = nil, keepUpTo: Int? = nil, recordNewOnly: Bool? = nil, days: [DayOfWeek]? = nil, dayPattern: DayPattern? = nil, imageTags: [String: String]? = nil, parentThumbItemId: String? = nil, parentThumbImageTag: String? = nil, parentPrimaryImageItemId: String? = nil, parentPrimaryImageTag: String? = nil) { - self.id = id - self.type = type - self.serverId = serverId - self.externalId = externalId - self.channelId = channelId - self.externalChannelId = externalChannelId - self.channelName = channelName - self.channelPrimaryImageTag = channelPrimaryImageTag - self.programId = programId - self.externalProgramId = externalProgramId - self.name = name - self.overview = overview - self.startDate = startDate - self.endDate = endDate - self.serviceName = serviceName - self.priority = priority - self.prePaddingSeconds = prePaddingSeconds - self.postPaddingSeconds = postPaddingSeconds - self.isPrePaddingRequired = isPrePaddingRequired - self.parentBackdropItemId = parentBackdropItemId - self.parentBackdropImageTags = parentBackdropImageTags - self.isPostPaddingRequired = isPostPaddingRequired - self.keepUntil = keepUntil - self.recordAnyTime = recordAnyTime - self.skipEpisodesInLibrary = skipEpisodesInLibrary - self.recordAnyChannel = recordAnyChannel - self.keepUpTo = keepUpTo - self.recordNewOnly = recordNewOnly - self.days = days - self.dayPattern = dayPattern - self.imageTags = imageTags - self.parentThumbItemId = parentThumbItemId - self.parentThumbImageTag = parentThumbImageTag - self.parentPrimaryImageItemId = parentPrimaryImageItemId - self.parentPrimaryImageTag = parentPrimaryImageTag - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case type = "Type" - case serverId = "ServerId" - case externalId = "ExternalId" - case channelId = "ChannelId" - case externalChannelId = "ExternalChannelId" - case channelName = "ChannelName" - case channelPrimaryImageTag = "ChannelPrimaryImageTag" - case programId = "ProgramId" - case externalProgramId = "ExternalProgramId" - case name = "Name" - case overview = "Overview" - case startDate = "StartDate" - case endDate = "EndDate" - case serviceName = "ServiceName" - case priority = "Priority" - case prePaddingSeconds = "PrePaddingSeconds" - case postPaddingSeconds = "PostPaddingSeconds" - case isPrePaddingRequired = "IsPrePaddingRequired" - case parentBackdropItemId = "ParentBackdropItemId" - case parentBackdropImageTags = "ParentBackdropImageTags" - case isPostPaddingRequired = "IsPostPaddingRequired" - case keepUntil = "KeepUntil" - case recordAnyTime = "RecordAnyTime" - case skipEpisodesInLibrary = "SkipEpisodesInLibrary" - case recordAnyChannel = "RecordAnyChannel" - case keepUpTo = "KeepUpTo" - case recordNewOnly = "RecordNewOnly" - case days = "Days" - case dayPattern = "DayPattern" - case imageTags = "ImageTags" - case parentThumbItemId = "ParentThumbItemId" - case parentThumbImageTag = "ParentThumbImageTag" - case parentPrimaryImageItemId = "ParentPrimaryImageItemId" - case parentPrimaryImageTag = "ParentPrimaryImageTag" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(externalId, forKey: .externalId) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(externalChannelId, forKey: .externalChannelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(channelPrimaryImageTag, forKey: .channelPrimaryImageTag) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - try encoderContainer.encodeIfPresent(externalProgramId, forKey: .externalProgramId) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(serviceName, forKey: .serviceName) - try encoderContainer.encodeIfPresent(priority, forKey: .priority) - try encoderContainer.encodeIfPresent(prePaddingSeconds, forKey: .prePaddingSeconds) - try encoderContainer.encodeIfPresent(postPaddingSeconds, forKey: .postPaddingSeconds) - try encoderContainer.encodeIfPresent(isPrePaddingRequired, forKey: .isPrePaddingRequired) - try encoderContainer.encodeIfPresent(parentBackdropItemId, forKey: .parentBackdropItemId) - try encoderContainer.encodeIfPresent(parentBackdropImageTags, forKey: .parentBackdropImageTags) - try encoderContainer.encodeIfPresent(isPostPaddingRequired, forKey: .isPostPaddingRequired) - try encoderContainer.encodeIfPresent(keepUntil, forKey: .keepUntil) - try encoderContainer.encodeIfPresent(recordAnyTime, forKey: .recordAnyTime) - try encoderContainer.encodeIfPresent(skipEpisodesInLibrary, forKey: .skipEpisodesInLibrary) - try encoderContainer.encodeIfPresent(recordAnyChannel, forKey: .recordAnyChannel) - try encoderContainer.encodeIfPresent(keepUpTo, forKey: .keepUpTo) - try encoderContainer.encodeIfPresent(recordNewOnly, forKey: .recordNewOnly) - try encoderContainer.encodeIfPresent(days, forKey: .days) - try encoderContainer.encodeIfPresent(dayPattern, forKey: .dayPattern) - try encoderContainer.encodeIfPresent(imageTags, forKey: .imageTags) - try encoderContainer.encodeIfPresent(parentThumbItemId, forKey: .parentThumbItemId) - try encoderContainer.encodeIfPresent(parentThumbImageTag, forKey: .parentThumbImageTag) - try encoderContainer.encodeIfPresent(parentPrimaryImageItemId, forKey: .parentPrimaryImageItemId) - try encoderContainer.encodeIfPresent(parentPrimaryImageTag, forKey: .parentPrimaryImageTag) - } -} diff --git a/Sources/JellyfinAPI/Models/SeriesTimerInfoDtoQueryResult.swift b/Sources/JellyfinAPI/Models/SeriesTimerInfoDtoQueryResult.swift deleted file mode 100644 index e8ebf861f..000000000 --- a/Sources/JellyfinAPI/Models/SeriesTimerInfoDtoQueryResult.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// SeriesTimerInfoDtoQueryResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SeriesTimerInfoDtoQueryResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the items. */ - public var items: [SeriesTimerInfoDto]? - /** Gets or sets the total number of records available. */ - public var totalRecordCount: Int? - /** Gets or sets the index of the first record in Items. */ - public var startIndex: Int? - - public init(items: [SeriesTimerInfoDto]? = nil, totalRecordCount: Int? = nil, startIndex: Int? = nil) { - self.items = items - self.totalRecordCount = totalRecordCount - self.startIndex = startIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case items = "Items" - case totalRecordCount = "TotalRecordCount" - case startIndex = "StartIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(items, forKey: .items) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/ServerConfiguration.swift b/Sources/JellyfinAPI/Models/ServerConfiguration.swift deleted file mode 100644 index 8848015fe..000000000 --- a/Sources/JellyfinAPI/Models/ServerConfiguration.swift +++ /dev/null @@ -1,250 +0,0 @@ -// -// ServerConfiguration.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Represents the server configuration. */ -public struct ServerConfiguration: Codable, JSONEncodable, Hashable { - - /** Gets or sets the number of days we should retain log files. */ - public var logFileRetentionDays: Int? - /** Gets or sets a value indicating whether this instance is first run. */ - public var isStartupWizardCompleted: Bool? - /** Gets or sets the cache path. */ - public var cachePath: String? - /** Gets or sets the last known version that was ran using the configuration. */ - public var previousVersion: String? - /** Gets or sets the stringified PreviousVersion to be stored/loaded, because System.Version itself isn't xml-serializable. */ - public var previousVersionStr: String? - /** Gets or sets a value indicating whether to enable prometheus metrics exporting. */ - public var enableMetrics: Bool? - public var enableNormalizedItemByNameIds: Bool? - /** Gets or sets a value indicating whether this instance is port authorized. */ - public var isPortAuthorized: Bool? - /** Gets or sets a value indicating whether quick connect is available for use on this server. */ - public var quickConnectAvailable: Bool? - /** Gets or sets a value indicating whether [enable case sensitive item ids]. */ - public var enableCaseSensitiveItemIds: Bool? - public var disableLiveTvChannelUserDataName: Bool? - /** Gets or sets the metadata path. */ - public var metadataPath: String? - public var metadataNetworkPath: String? - /** Gets or sets the preferred metadata language. */ - public var preferredMetadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets characters to be replaced with a ' ' in strings to create a sort name. */ - public var sortReplaceCharacters: [String]? - /** Gets or sets characters to be removed from strings to create a sort name. */ - public var sortRemoveCharacters: [String]? - /** Gets or sets words to be removed from strings to create a sort name. */ - public var sortRemoveWords: [String]? - /** Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated. */ - public var minResumePct: Int? - /** Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. */ - public var maxResumePct: Int? - /** Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates.. */ - public var minResumeDurationSeconds: Int? - /** Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated. */ - public var minAudiobookResume: Int? - /** Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. */ - public var maxAudiobookResume: Int? - /** Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added/removed Some delay is necessary with some items because their creation is not atomic. It involves the creation of several different directories and files. */ - public var libraryMonitorDelay: Int? - /** Gets or sets the image saving convention. */ - public var imageSavingConvention: ImageSavingConvention? - public var metadataOptions: [MetadataOptions]? - public var skipDeserializationForBasicTypes: Bool? - public var serverName: String? - public var uICulture: String? - public var saveMetadataHidden: Bool? - public var contentTypes: [NameValuePair]? - public var remoteClientBitrateLimit: Int? - public var enableFolderView: Bool? - public var enableGroupingIntoCollections: Bool? - public var displaySpecialsWithinSeasons: Bool? - public var codecsUsed: [String]? - public var pluginRepositories: [RepositoryInfo]? - public var enableExternalContentInSuggestions: Bool? - public var imageExtractionTimeoutMs: Int? - public var pathSubstitutions: [PathSubstitution]? - /** Gets or sets a value indicating whether slow server responses should be logged as a warning. */ - public var enableSlowResponseWarning: Bool? - /** Gets or sets the threshold for the slow response time warning in ms. */ - public var slowResponseThresholdMs: Int64? - /** Gets or sets the cors hosts. */ - public var corsHosts: [String]? - /** Gets or sets the number of days we should retain activity logs. */ - public var activityLogRetentionDays: Int? - /** Gets or sets the how the library scan fans out. */ - public var libraryScanFanoutConcurrency: Int? - /** Gets or sets the how many metadata refreshes can run concurrently. */ - public var libraryMetadataRefreshConcurrency: Int? - /** Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder. */ - public var removeOldPlugins: Bool? - /** Gets or sets a value indicating whether clients should be allowed to upload logs. */ - public var allowClientLogUpload: Bool? - - public init(logFileRetentionDays: Int? = nil, isStartupWizardCompleted: Bool? = nil, cachePath: String? = nil, previousVersion: String? = nil, previousVersionStr: String? = nil, enableMetrics: Bool? = nil, enableNormalizedItemByNameIds: Bool? = nil, isPortAuthorized: Bool? = nil, quickConnectAvailable: Bool? = nil, enableCaseSensitiveItemIds: Bool? = nil, disableLiveTvChannelUserDataName: Bool? = nil, metadataPath: String? = nil, metadataNetworkPath: String? = nil, preferredMetadataLanguage: String? = nil, metadataCountryCode: String? = nil, sortReplaceCharacters: [String]? = nil, sortRemoveCharacters: [String]? = nil, sortRemoveWords: [String]? = nil, minResumePct: Int? = nil, maxResumePct: Int? = nil, minResumeDurationSeconds: Int? = nil, minAudiobookResume: Int? = nil, maxAudiobookResume: Int? = nil, libraryMonitorDelay: Int? = nil, imageSavingConvention: ImageSavingConvention? = nil, metadataOptions: [MetadataOptions]? = nil, skipDeserializationForBasicTypes: Bool? = nil, serverName: String? = nil, uICulture: String? = nil, saveMetadataHidden: Bool? = nil, contentTypes: [NameValuePair]? = nil, remoteClientBitrateLimit: Int? = nil, enableFolderView: Bool? = nil, enableGroupingIntoCollections: Bool? = nil, displaySpecialsWithinSeasons: Bool? = nil, codecsUsed: [String]? = nil, pluginRepositories: [RepositoryInfo]? = nil, enableExternalContentInSuggestions: Bool? = nil, imageExtractionTimeoutMs: Int? = nil, pathSubstitutions: [PathSubstitution]? = nil, enableSlowResponseWarning: Bool? = nil, slowResponseThresholdMs: Int64? = nil, corsHosts: [String]? = nil, activityLogRetentionDays: Int? = nil, libraryScanFanoutConcurrency: Int? = nil, libraryMetadataRefreshConcurrency: Int? = nil, removeOldPlugins: Bool? = nil, allowClientLogUpload: Bool? = nil) { - self.logFileRetentionDays = logFileRetentionDays - self.isStartupWizardCompleted = isStartupWizardCompleted - self.cachePath = cachePath - self.previousVersion = previousVersion - self.previousVersionStr = previousVersionStr - self.enableMetrics = enableMetrics - self.enableNormalizedItemByNameIds = enableNormalizedItemByNameIds - self.isPortAuthorized = isPortAuthorized - self.quickConnectAvailable = quickConnectAvailable - self.enableCaseSensitiveItemIds = enableCaseSensitiveItemIds - self.disableLiveTvChannelUserDataName = disableLiveTvChannelUserDataName - self.metadataPath = metadataPath - self.metadataNetworkPath = metadataNetworkPath - self.preferredMetadataLanguage = preferredMetadataLanguage - self.metadataCountryCode = metadataCountryCode - self.sortReplaceCharacters = sortReplaceCharacters - self.sortRemoveCharacters = sortRemoveCharacters - self.sortRemoveWords = sortRemoveWords - self.minResumePct = minResumePct - self.maxResumePct = maxResumePct - self.minResumeDurationSeconds = minResumeDurationSeconds - self.minAudiobookResume = minAudiobookResume - self.maxAudiobookResume = maxAudiobookResume - self.libraryMonitorDelay = libraryMonitorDelay - self.imageSavingConvention = imageSavingConvention - self.metadataOptions = metadataOptions - self.skipDeserializationForBasicTypes = skipDeserializationForBasicTypes - self.serverName = serverName - self.uICulture = uICulture - self.saveMetadataHidden = saveMetadataHidden - self.contentTypes = contentTypes - self.remoteClientBitrateLimit = remoteClientBitrateLimit - self.enableFolderView = enableFolderView - self.enableGroupingIntoCollections = enableGroupingIntoCollections - self.displaySpecialsWithinSeasons = displaySpecialsWithinSeasons - self.codecsUsed = codecsUsed - self.pluginRepositories = pluginRepositories - self.enableExternalContentInSuggestions = enableExternalContentInSuggestions - self.imageExtractionTimeoutMs = imageExtractionTimeoutMs - self.pathSubstitutions = pathSubstitutions - self.enableSlowResponseWarning = enableSlowResponseWarning - self.slowResponseThresholdMs = slowResponseThresholdMs - self.corsHosts = corsHosts - self.activityLogRetentionDays = activityLogRetentionDays - self.libraryScanFanoutConcurrency = libraryScanFanoutConcurrency - self.libraryMetadataRefreshConcurrency = libraryMetadataRefreshConcurrency - self.removeOldPlugins = removeOldPlugins - self.allowClientLogUpload = allowClientLogUpload - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case logFileRetentionDays = "LogFileRetentionDays" - case isStartupWizardCompleted = "IsStartupWizardCompleted" - case cachePath = "CachePath" - case previousVersion = "PreviousVersion" - case previousVersionStr = "PreviousVersionStr" - case enableMetrics = "EnableMetrics" - case enableNormalizedItemByNameIds = "EnableNormalizedItemByNameIds" - case isPortAuthorized = "IsPortAuthorized" - case quickConnectAvailable = "QuickConnectAvailable" - case enableCaseSensitiveItemIds = "EnableCaseSensitiveItemIds" - case disableLiveTvChannelUserDataName = "DisableLiveTvChannelUserDataName" - case metadataPath = "MetadataPath" - case metadataNetworkPath = "MetadataNetworkPath" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case sortReplaceCharacters = "SortReplaceCharacters" - case sortRemoveCharacters = "SortRemoveCharacters" - case sortRemoveWords = "SortRemoveWords" - case minResumePct = "MinResumePct" - case maxResumePct = "MaxResumePct" - case minResumeDurationSeconds = "MinResumeDurationSeconds" - case minAudiobookResume = "MinAudiobookResume" - case maxAudiobookResume = "MaxAudiobookResume" - case libraryMonitorDelay = "LibraryMonitorDelay" - case imageSavingConvention = "ImageSavingConvention" - case metadataOptions = "MetadataOptions" - case skipDeserializationForBasicTypes = "SkipDeserializationForBasicTypes" - case serverName = "ServerName" - case uICulture = "UICulture" - case saveMetadataHidden = "SaveMetadataHidden" - case contentTypes = "ContentTypes" - case remoteClientBitrateLimit = "RemoteClientBitrateLimit" - case enableFolderView = "EnableFolderView" - case enableGroupingIntoCollections = "EnableGroupingIntoCollections" - case displaySpecialsWithinSeasons = "DisplaySpecialsWithinSeasons" - case codecsUsed = "CodecsUsed" - case pluginRepositories = "PluginRepositories" - case enableExternalContentInSuggestions = "EnableExternalContentInSuggestions" - case imageExtractionTimeoutMs = "ImageExtractionTimeoutMs" - case pathSubstitutions = "PathSubstitutions" - case enableSlowResponseWarning = "EnableSlowResponseWarning" - case slowResponseThresholdMs = "SlowResponseThresholdMs" - case corsHosts = "CorsHosts" - case activityLogRetentionDays = "ActivityLogRetentionDays" - case libraryScanFanoutConcurrency = "LibraryScanFanoutConcurrency" - case libraryMetadataRefreshConcurrency = "LibraryMetadataRefreshConcurrency" - case removeOldPlugins = "RemoveOldPlugins" - case allowClientLogUpload = "AllowClientLogUpload" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(logFileRetentionDays, forKey: .logFileRetentionDays) - try encoderContainer.encodeIfPresent(isStartupWizardCompleted, forKey: .isStartupWizardCompleted) - try encoderContainer.encodeIfPresent(cachePath, forKey: .cachePath) - try encoderContainer.encodeIfPresent(previousVersion, forKey: .previousVersion) - try encoderContainer.encodeIfPresent(previousVersionStr, forKey: .previousVersionStr) - try encoderContainer.encodeIfPresent(enableMetrics, forKey: .enableMetrics) - try encoderContainer.encodeIfPresent(enableNormalizedItemByNameIds, forKey: .enableNormalizedItemByNameIds) - try encoderContainer.encodeIfPresent(isPortAuthorized, forKey: .isPortAuthorized) - try encoderContainer.encodeIfPresent(quickConnectAvailable, forKey: .quickConnectAvailable) - try encoderContainer.encodeIfPresent(enableCaseSensitiveItemIds, forKey: .enableCaseSensitiveItemIds) - try encoderContainer.encodeIfPresent(disableLiveTvChannelUserDataName, forKey: .disableLiveTvChannelUserDataName) - try encoderContainer.encodeIfPresent(metadataPath, forKey: .metadataPath) - try encoderContainer.encodeIfPresent(metadataNetworkPath, forKey: .metadataNetworkPath) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(sortReplaceCharacters, forKey: .sortReplaceCharacters) - try encoderContainer.encodeIfPresent(sortRemoveCharacters, forKey: .sortRemoveCharacters) - try encoderContainer.encodeIfPresent(sortRemoveWords, forKey: .sortRemoveWords) - try encoderContainer.encodeIfPresent(minResumePct, forKey: .minResumePct) - try encoderContainer.encodeIfPresent(maxResumePct, forKey: .maxResumePct) - try encoderContainer.encodeIfPresent(minResumeDurationSeconds, forKey: .minResumeDurationSeconds) - try encoderContainer.encodeIfPresent(minAudiobookResume, forKey: .minAudiobookResume) - try encoderContainer.encodeIfPresent(maxAudiobookResume, forKey: .maxAudiobookResume) - try encoderContainer.encodeIfPresent(libraryMonitorDelay, forKey: .libraryMonitorDelay) - try encoderContainer.encodeIfPresent(imageSavingConvention, forKey: .imageSavingConvention) - try encoderContainer.encodeIfPresent(metadataOptions, forKey: .metadataOptions) - try encoderContainer.encodeIfPresent(skipDeserializationForBasicTypes, forKey: .skipDeserializationForBasicTypes) - try encoderContainer.encodeIfPresent(serverName, forKey: .serverName) - try encoderContainer.encodeIfPresent(uICulture, forKey: .uICulture) - try encoderContainer.encodeIfPresent(saveMetadataHidden, forKey: .saveMetadataHidden) - try encoderContainer.encodeIfPresent(contentTypes, forKey: .contentTypes) - try encoderContainer.encodeIfPresent(remoteClientBitrateLimit, forKey: .remoteClientBitrateLimit) - try encoderContainer.encodeIfPresent(enableFolderView, forKey: .enableFolderView) - try encoderContainer.encodeIfPresent(enableGroupingIntoCollections, forKey: .enableGroupingIntoCollections) - try encoderContainer.encodeIfPresent(displaySpecialsWithinSeasons, forKey: .displaySpecialsWithinSeasons) - try encoderContainer.encodeIfPresent(codecsUsed, forKey: .codecsUsed) - try encoderContainer.encodeIfPresent(pluginRepositories, forKey: .pluginRepositories) - try encoderContainer.encodeIfPresent(enableExternalContentInSuggestions, forKey: .enableExternalContentInSuggestions) - try encoderContainer.encodeIfPresent(imageExtractionTimeoutMs, forKey: .imageExtractionTimeoutMs) - try encoderContainer.encodeIfPresent(pathSubstitutions, forKey: .pathSubstitutions) - try encoderContainer.encodeIfPresent(enableSlowResponseWarning, forKey: .enableSlowResponseWarning) - try encoderContainer.encodeIfPresent(slowResponseThresholdMs, forKey: .slowResponseThresholdMs) - try encoderContainer.encodeIfPresent(corsHosts, forKey: .corsHosts) - try encoderContainer.encodeIfPresent(activityLogRetentionDays, forKey: .activityLogRetentionDays) - try encoderContainer.encodeIfPresent(libraryScanFanoutConcurrency, forKey: .libraryScanFanoutConcurrency) - try encoderContainer.encodeIfPresent(libraryMetadataRefreshConcurrency, forKey: .libraryMetadataRefreshConcurrency) - try encoderContainer.encodeIfPresent(removeOldPlugins, forKey: .removeOldPlugins) - try encoderContainer.encodeIfPresent(allowClientLogUpload, forKey: .allowClientLogUpload) - } -} diff --git a/Sources/JellyfinAPI/Models/ServerDiscoveryInfo.swift b/Sources/JellyfinAPI/Models/ServerDiscoveryInfo.swift deleted file mode 100644 index 2b6dfdcb8..000000000 --- a/Sources/JellyfinAPI/Models/ServerDiscoveryInfo.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// ServerDiscoveryInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The server discovery info model. */ -public struct ServerDiscoveryInfo: Codable, JSONEncodable, Hashable { - - /** Gets the address. */ - public var address: String? - /** Gets the server identifier. */ - public var id: String? - /** Gets the name. */ - public var name: String? - /** Gets the endpoint address. */ - public var endpointAddress: String? - - public init(address: String? = nil, id: String? = nil, name: String? = nil, endpointAddress: String? = nil) { - self.address = address - self.id = id - self.name = name - self.endpointAddress = endpointAddress - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case address = "Address" - case id = "Id" - case name = "Name" - case endpointAddress = "EndpointAddress" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(address, forKey: .address) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(endpointAddress, forKey: .endpointAddress) - } -} diff --git a/Sources/JellyfinAPI/Models/SessionInfo.swift b/Sources/JellyfinAPI/Models/SessionInfo.swift deleted file mode 100644 index 7cc7c453f..000000000 --- a/Sources/JellyfinAPI/Models/SessionInfo.swift +++ /dev/null @@ -1,158 +0,0 @@ -// -// SessionInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SessionInfo. */ -public struct SessionInfo: Codable, JSONEncodable, Hashable { - - public var playState: SessionInfoPlayState? - public var additionalUsers: [SessionUserInfo]? - public var capabilities: SessionInfoCapabilities? - /** Gets or sets the remote end point. */ - public var remoteEndPoint: String? - /** Gets the playable media types. */ - public var playableMediaTypes: [String]? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the user id. */ - public var userId: String? - /** Gets or sets the username. */ - public var userName: String? - /** Gets or sets the type of the client. */ - public var client: String? - /** Gets or sets the last activity date. */ - public var lastActivityDate: Date? - /** Gets or sets the last playback check in. */ - public var lastPlaybackCheckIn: Date? - /** Gets or sets the name of the device. */ - public var deviceName: String? - /** Gets or sets the type of the device. */ - public var deviceType: String? - public var nowPlayingItem: SessionInfoNowPlayingItem? - public var fullNowPlayingItem: SessionInfoFullNowPlayingItem? - public var nowViewingItem: SessionInfoNowViewingItem? - /** Gets or sets the device id. */ - public var deviceId: String? - /** Gets or sets the application version. */ - public var applicationVersion: String? - public var transcodingInfo: SessionInfoTranscodingInfo? - /** Gets a value indicating whether this instance is active. */ - public var isActive: Bool? - public var supportsMediaControl: Bool? - public var supportsRemoteControl: Bool? - public var nowPlayingQueue: [QueueItem]? - public var nowPlayingQueueFullItems: [BaseItemDto]? - public var hasCustomDeviceName: Bool? - public var playlistItemId: String? - public var serverId: String? - public var userPrimaryImageTag: String? - /** Gets the supported commands. */ - public var supportedCommands: [GeneralCommandType]? - - public init(playState: SessionInfoPlayState? = nil, additionalUsers: [SessionUserInfo]? = nil, capabilities: SessionInfoCapabilities? = nil, remoteEndPoint: String? = nil, playableMediaTypes: [String]? = nil, id: String? = nil, userId: String? = nil, userName: String? = nil, client: String? = nil, lastActivityDate: Date? = nil, lastPlaybackCheckIn: Date? = nil, deviceName: String? = nil, deviceType: String? = nil, nowPlayingItem: SessionInfoNowPlayingItem? = nil, fullNowPlayingItem: SessionInfoFullNowPlayingItem? = nil, nowViewingItem: SessionInfoNowViewingItem? = nil, deviceId: String? = nil, applicationVersion: String? = nil, transcodingInfo: SessionInfoTranscodingInfo? = nil, isActive: Bool? = nil, supportsMediaControl: Bool? = nil, supportsRemoteControl: Bool? = nil, nowPlayingQueue: [QueueItem]? = nil, nowPlayingQueueFullItems: [BaseItemDto]? = nil, hasCustomDeviceName: Bool? = nil, playlistItemId: String? = nil, serverId: String? = nil, userPrimaryImageTag: String? = nil, supportedCommands: [GeneralCommandType]? = nil) { - self.playState = playState - self.additionalUsers = additionalUsers - self.capabilities = capabilities - self.remoteEndPoint = remoteEndPoint - self.playableMediaTypes = playableMediaTypes - self.id = id - self.userId = userId - self.userName = userName - self.client = client - self.lastActivityDate = lastActivityDate - self.lastPlaybackCheckIn = lastPlaybackCheckIn - self.deviceName = deviceName - self.deviceType = deviceType - self.nowPlayingItem = nowPlayingItem - self.fullNowPlayingItem = fullNowPlayingItem - self.nowViewingItem = nowViewingItem - self.deviceId = deviceId - self.applicationVersion = applicationVersion - self.transcodingInfo = transcodingInfo - self.isActive = isActive - self.supportsMediaControl = supportsMediaControl - self.supportsRemoteControl = supportsRemoteControl - self.nowPlayingQueue = nowPlayingQueue - self.nowPlayingQueueFullItems = nowPlayingQueueFullItems - self.hasCustomDeviceName = hasCustomDeviceName - self.playlistItemId = playlistItemId - self.serverId = serverId - self.userPrimaryImageTag = userPrimaryImageTag - self.supportedCommands = supportedCommands - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playState = "PlayState" - case additionalUsers = "AdditionalUsers" - case capabilities = "Capabilities" - case remoteEndPoint = "RemoteEndPoint" - case playableMediaTypes = "PlayableMediaTypes" - case id = "Id" - case userId = "UserId" - case userName = "UserName" - case client = "Client" - case lastActivityDate = "LastActivityDate" - case lastPlaybackCheckIn = "LastPlaybackCheckIn" - case deviceName = "DeviceName" - case deviceType = "DeviceType" - case nowPlayingItem = "NowPlayingItem" - case fullNowPlayingItem = "FullNowPlayingItem" - case nowViewingItem = "NowViewingItem" - case deviceId = "DeviceId" - case applicationVersion = "ApplicationVersion" - case transcodingInfo = "TranscodingInfo" - case isActive = "IsActive" - case supportsMediaControl = "SupportsMediaControl" - case supportsRemoteControl = "SupportsRemoteControl" - case nowPlayingQueue = "NowPlayingQueue" - case nowPlayingQueueFullItems = "NowPlayingQueueFullItems" - case hasCustomDeviceName = "HasCustomDeviceName" - case playlistItemId = "PlaylistItemId" - case serverId = "ServerId" - case userPrimaryImageTag = "UserPrimaryImageTag" - case supportedCommands = "SupportedCommands" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playState, forKey: .playState) - try encoderContainer.encodeIfPresent(additionalUsers, forKey: .additionalUsers) - try encoderContainer.encodeIfPresent(capabilities, forKey: .capabilities) - try encoderContainer.encodeIfPresent(remoteEndPoint, forKey: .remoteEndPoint) - try encoderContainer.encodeIfPresent(playableMediaTypes, forKey: .playableMediaTypes) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(userName, forKey: .userName) - try encoderContainer.encodeIfPresent(client, forKey: .client) - try encoderContainer.encodeIfPresent(lastActivityDate, forKey: .lastActivityDate) - try encoderContainer.encodeIfPresent(lastPlaybackCheckIn, forKey: .lastPlaybackCheckIn) - try encoderContainer.encodeIfPresent(deviceName, forKey: .deviceName) - try encoderContainer.encodeIfPresent(deviceType, forKey: .deviceType) - try encoderContainer.encodeIfPresent(nowPlayingItem, forKey: .nowPlayingItem) - try encoderContainer.encodeIfPresent(fullNowPlayingItem, forKey: .fullNowPlayingItem) - try encoderContainer.encodeIfPresent(nowViewingItem, forKey: .nowViewingItem) - try encoderContainer.encodeIfPresent(deviceId, forKey: .deviceId) - try encoderContainer.encodeIfPresent(applicationVersion, forKey: .applicationVersion) - try encoderContainer.encodeIfPresent(transcodingInfo, forKey: .transcodingInfo) - try encoderContainer.encodeIfPresent(isActive, forKey: .isActive) - try encoderContainer.encodeIfPresent(supportsMediaControl, forKey: .supportsMediaControl) - try encoderContainer.encodeIfPresent(supportsRemoteControl, forKey: .supportsRemoteControl) - try encoderContainer.encodeIfPresent(nowPlayingQueue, forKey: .nowPlayingQueue) - try encoderContainer.encodeIfPresent(nowPlayingQueueFullItems, forKey: .nowPlayingQueueFullItems) - try encoderContainer.encodeIfPresent(hasCustomDeviceName, forKey: .hasCustomDeviceName) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(userPrimaryImageTag, forKey: .userPrimaryImageTag) - try encoderContainer.encodeIfPresent(supportedCommands, forKey: .supportedCommands) - } -} diff --git a/Sources/JellyfinAPI/Models/SessionInfoCapabilities.swift b/Sources/JellyfinAPI/Models/SessionInfoCapabilities.swift deleted file mode 100644 index 82b5128c5..000000000 --- a/Sources/JellyfinAPI/Models/SessionInfoCapabilities.swift +++ /dev/null @@ -1,67 +0,0 @@ -// -// SessionInfoCapabilities.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SessionInfoCapabilities: Codable, JSONEncodable, Hashable { - - public var playableMediaTypes: [String]? - public var supportedCommands: [GeneralCommandType]? - public var supportsMediaControl: Bool? - public var supportsContentUploading: Bool? - public var messageCallbackUrl: String? - public var supportsPersistentIdentifier: Bool? - public var supportsSync: Bool? - public var deviceProfile: ClientCapabilitiesDeviceProfile? - public var appStoreUrl: String? - public var iconUrl: String? - - public init(playableMediaTypes: [String]? = nil, supportedCommands: [GeneralCommandType]? = nil, supportsMediaControl: Bool? = nil, supportsContentUploading: Bool? = nil, messageCallbackUrl: String? = nil, supportsPersistentIdentifier: Bool? = nil, supportsSync: Bool? = nil, deviceProfile: ClientCapabilitiesDeviceProfile? = nil, appStoreUrl: String? = nil, iconUrl: String? = nil) { - self.playableMediaTypes = playableMediaTypes - self.supportedCommands = supportedCommands - self.supportsMediaControl = supportsMediaControl - self.supportsContentUploading = supportsContentUploading - self.messageCallbackUrl = messageCallbackUrl - self.supportsPersistentIdentifier = supportsPersistentIdentifier - self.supportsSync = supportsSync - self.deviceProfile = deviceProfile - self.appStoreUrl = appStoreUrl - self.iconUrl = iconUrl - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playableMediaTypes = "PlayableMediaTypes" - case supportedCommands = "SupportedCommands" - case supportsMediaControl = "SupportsMediaControl" - case supportsContentUploading = "SupportsContentUploading" - case messageCallbackUrl = "MessageCallbackUrl" - case supportsPersistentIdentifier = "SupportsPersistentIdentifier" - case supportsSync = "SupportsSync" - case deviceProfile = "DeviceProfile" - case appStoreUrl = "AppStoreUrl" - case iconUrl = "IconUrl" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playableMediaTypes, forKey: .playableMediaTypes) - try encoderContainer.encodeIfPresent(supportedCommands, forKey: .supportedCommands) - try encoderContainer.encodeIfPresent(supportsMediaControl, forKey: .supportsMediaControl) - try encoderContainer.encodeIfPresent(supportsContentUploading, forKey: .supportsContentUploading) - try encoderContainer.encodeIfPresent(messageCallbackUrl, forKey: .messageCallbackUrl) - try encoderContainer.encodeIfPresent(supportsPersistentIdentifier, forKey: .supportsPersistentIdentifier) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(deviceProfile, forKey: .deviceProfile) - try encoderContainer.encodeIfPresent(appStoreUrl, forKey: .appStoreUrl) - try encoderContainer.encodeIfPresent(iconUrl, forKey: .iconUrl) - } -} diff --git a/Sources/JellyfinAPI/Models/SessionInfoFullNowPlayingItem.swift b/Sources/JellyfinAPI/Models/SessionInfoFullNowPlayingItem.swift deleted file mode 100644 index c19116f8d..000000000 --- a/Sources/JellyfinAPI/Models/SessionInfoFullNowPlayingItem.swift +++ /dev/null @@ -1,73 +0,0 @@ -// -// SessionInfoFullNowPlayingItem.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class BaseItem. */ -public struct SessionInfoFullNowPlayingItem: Codable, JSONEncodable, Hashable { - - public var size: Int64? - public var container: String? - public var isHD: Bool? - public var isShortcut: Bool? - public var shortcutPath: String? - public var width: Int? - public var height: Int? - public var extraIds: [String]? - public var dateLastSaved: Date? - /** Gets or sets the remote trailers. */ - public var remoteTrailers: [MediaUrl]? - public var supportsExternalTransfer: Bool? - - public init(size: Int64? = nil, container: String? = nil, isHD: Bool? = nil, isShortcut: Bool? = nil, shortcutPath: String? = nil, width: Int? = nil, height: Int? = nil, extraIds: [String]? = nil, dateLastSaved: Date? = nil, remoteTrailers: [MediaUrl]? = nil, supportsExternalTransfer: Bool? = nil) { - self.size = size - self.container = container - self.isHD = isHD - self.isShortcut = isShortcut - self.shortcutPath = shortcutPath - self.width = width - self.height = height - self.extraIds = extraIds - self.dateLastSaved = dateLastSaved - self.remoteTrailers = remoteTrailers - self.supportsExternalTransfer = supportsExternalTransfer - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case size = "Size" - case container = "Container" - case isHD = "IsHD" - case isShortcut = "IsShortcut" - case shortcutPath = "ShortcutPath" - case width = "Width" - case height = "Height" - case extraIds = "ExtraIds" - case dateLastSaved = "DateLastSaved" - case remoteTrailers = "RemoteTrailers" - case supportsExternalTransfer = "SupportsExternalTransfer" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(size, forKey: .size) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(isHD, forKey: .isHD) - try encoderContainer.encodeIfPresent(isShortcut, forKey: .isShortcut) - try encoderContainer.encodeIfPresent(shortcutPath, forKey: .shortcutPath) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(extraIds, forKey: .extraIds) - try encoderContainer.encodeIfPresent(dateLastSaved, forKey: .dateLastSaved) - try encoderContainer.encodeIfPresent(remoteTrailers, forKey: .remoteTrailers) - try encoderContainer.encodeIfPresent(supportsExternalTransfer, forKey: .supportsExternalTransfer) - } -} diff --git a/Sources/JellyfinAPI/Models/SessionInfoNowPlayingItem.swift b/Sources/JellyfinAPI/Models/SessionInfoNowPlayingItem.swift deleted file mode 100644 index a84a89235..000000000 --- a/Sources/JellyfinAPI/Models/SessionInfoNowPlayingItem.swift +++ /dev/null @@ -1,741 +0,0 @@ -// -// SessionInfoNowPlayingItem.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the now playing item. */ -public struct SessionInfoNowPlayingItem: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - public var originalTitle: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the etag. */ - public var etag: String? - /** Gets or sets the type of the source. */ - public var sourceType: String? - /** Gets or sets the playlist item identifier. */ - public var playlistItemId: String? - /** Gets or sets the date created. */ - public var dateCreated: Date? - public var dateLastMediaAdded: Date? - public var extraType: String? - public var airsBeforeSeasonNumber: Int? - public var airsAfterSeasonNumber: Int? - public var airsBeforeEpisodeNumber: Int? - public var canDelete: Bool? - public var canDownload: Bool? - public var hasSubtitles: Bool? - public var preferredMetadataLanguage: String? - public var preferredMetadataCountryCode: String? - /** Gets or sets a value indicating whether [supports synchronize]. */ - public var supportsSync: Bool? - public var container: String? - /** Gets or sets the name of the sort. */ - public var sortName: String? - public var forcedSortName: String? - /** Gets or sets the video3 D format. */ - public var video3DFormat: Video3DFormat? - /** Gets or sets the premiere date. */ - public var premiereDate: Date? - /** Gets or sets the external urls. */ - public var externalUrls: [ExternalUrl]? - /** Gets or sets the media versions. */ - public var mediaSources: [MediaSourceInfo]? - /** Gets or sets the critic rating. */ - public var criticRating: Float? - public var productionLocations: [String]? - /** Gets or sets the path. */ - public var path: String? - public var enableMediaSourceDisplay: Bool? - /** Gets or sets the official rating. */ - public var officialRating: String? - /** Gets or sets the custom rating. */ - public var customRating: String? - /** Gets or sets the channel identifier. */ - public var channelId: String? - public var channelName: String? - /** Gets or sets the overview. */ - public var overview: String? - /** Gets or sets the taglines. */ - public var taglines: [String]? - /** Gets or sets the genres. */ - public var genres: [String]? - /** Gets or sets the community rating. */ - public var communityRating: Float? - /** Gets or sets the cumulative run time ticks. */ - public var cumulativeRunTimeTicks: Int64? - /** Gets or sets the run time ticks. */ - public var runTimeTicks: Int64? - /** Gets or sets the play access. */ - public var playAccess: PlayAccess? - /** Gets or sets the aspect ratio. */ - public var aspectRatio: String? - /** Gets or sets the production year. */ - public var productionYear: Int? - /** Gets or sets a value indicating whether this instance is place holder. */ - public var isPlaceHolder: Bool? - /** Gets or sets the number. */ - public var number: String? - public var channelNumber: String? - /** Gets or sets the index number. */ - public var indexNumber: Int? - /** Gets or sets the index number end. */ - public var indexNumberEnd: Int? - /** Gets or sets the parent index number. */ - public var parentIndexNumber: Int? - /** Gets or sets the trailer urls. */ - public var remoteTrailers: [MediaUrl]? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets a value indicating whether this instance is HD. */ - public var isHD: Bool? - /** Gets or sets a value indicating whether this instance is folder. */ - public var isFolder: Bool? - /** Gets or sets the parent id. */ - public var parentId: String? - /** The base item kind. */ - public var type: BaseItemKind? - /** Gets or sets the people. */ - public var people: [BaseItemPerson]? - /** Gets or sets the studios. */ - public var studios: [NameGuidPair]? - public var genreItems: [NameGuidPair]? - /** Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. */ - public var parentLogoItemId: String? - /** Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. */ - public var parentBackdropItemId: String? - /** Gets or sets the parent backdrop image tags. */ - public var parentBackdropImageTags: [String]? - /** Gets or sets the local trailer count. */ - public var localTrailerCount: Int? - public var userData: BaseItemDtoUserData? - /** Gets or sets the recursive item count. */ - public var recursiveItemCount: Int? - /** Gets or sets the child count. */ - public var childCount: Int? - /** Gets or sets the name of the series. */ - public var seriesName: String? - /** Gets or sets the series id. */ - public var seriesId: String? - /** Gets or sets the season identifier. */ - public var seasonId: String? - /** Gets or sets the special feature count. */ - public var specialFeatureCount: Int? - /** Gets or sets the display preferences id. */ - public var displayPreferencesId: String? - /** Gets or sets the status. */ - public var status: String? - /** Gets or sets the air time. */ - public var airTime: String? - /** Gets or sets the air days. */ - public var airDays: [DayOfWeek]? - /** Gets or sets the tags. */ - public var tags: [String]? - /** Gets or sets the primary image aspect ratio, after image enhancements. */ - public var primaryImageAspectRatio: Double? - /** Gets or sets the artists. */ - public var artists: [String]? - /** Gets or sets the artist items. */ - public var artistItems: [NameGuidPair]? - /** Gets or sets the album. */ - public var album: String? - /** Gets or sets the type of the collection. */ - public var collectionType: String? - /** Gets or sets the display order. */ - public var displayOrder: String? - /** Gets or sets the album id. */ - public var albumId: String? - /** Gets or sets the album image tag. */ - public var albumPrimaryImageTag: String? - /** Gets or sets the series primary image tag. */ - public var seriesPrimaryImageTag: String? - /** Gets or sets the album artist. */ - public var albumArtist: String? - /** Gets or sets the album artists. */ - public var albumArtists: [NameGuidPair]? - /** Gets or sets the name of the season. */ - public var seasonName: String? - /** Gets or sets the media streams. */ - public var mediaStreams: [MediaStream]? - /** Gets or sets the type of the video. */ - public var videoType: VideoType? - /** Gets or sets the part count. */ - public var partCount: Int? - public var mediaSourceCount: Int? - /** Gets or sets the image tags. */ - public var imageTags: [String: String]? - /** Gets or sets the backdrop image tags. */ - public var backdropImageTags: [String]? - /** Gets or sets the screenshot image tags. */ - public var screenshotImageTags: [String]? - /** Gets or sets the parent logo image tag. */ - public var parentLogoImageTag: String? - /** Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. */ - public var parentArtItemId: String? - /** Gets or sets the parent art image tag. */ - public var parentArtImageTag: String? - /** Gets or sets the series thumb image tag. */ - public var seriesThumbImageTag: String? - public var imageBlurHashes: BaseItemDtoImageBlurHashes? - /** Gets or sets the series studio. */ - public var seriesStudio: String? - /** Gets or sets the parent thumb item id. */ - public var parentThumbItemId: String? - /** Gets or sets the parent thumb image tag. */ - public var parentThumbImageTag: String? - /** Gets or sets the parent primary image item identifier. */ - public var parentPrimaryImageItemId: String? - /** Gets or sets the parent primary image tag. */ - public var parentPrimaryImageTag: String? - /** Gets or sets the chapters. */ - public var chapters: [ChapterInfo]? - /** Gets or sets the type of the location. */ - public var locationType: LocationType? - /** Gets or sets the type of the iso. */ - public var isoType: IsoType? - /** Gets or sets the type of the media. */ - public var mediaType: String? - /** Gets or sets the end date. */ - public var endDate: Date? - /** Gets or sets the locked fields. */ - public var lockedFields: [MetadataField]? - /** Gets or sets the trailer count. */ - public var trailerCount: Int? - /** Gets or sets the movie count. */ - public var movieCount: Int? - /** Gets or sets the series count. */ - public var seriesCount: Int? - public var programCount: Int? - /** Gets or sets the episode count. */ - public var episodeCount: Int? - /** Gets or sets the song count. */ - public var songCount: Int? - /** Gets or sets the album count. */ - public var albumCount: Int? - public var artistCount: Int? - /** Gets or sets the music video count. */ - public var musicVideoCount: Int? - /** Gets or sets a value indicating whether [enable internet providers]. */ - public var lockData: Bool? - public var width: Int? - public var height: Int? - public var cameraMake: String? - public var cameraModel: String? - public var software: String? - public var exposureTime: Double? - public var focalLength: Double? - public var imageOrientation: ImageOrientation? - public var aperture: Double? - public var shutterSpeed: Double? - public var latitude: Double? - public var longitude: Double? - public var altitude: Double? - public var isoSpeedRating: Int? - /** Gets or sets the series timer identifier. */ - public var seriesTimerId: String? - /** Gets or sets the program identifier. */ - public var programId: String? - /** Gets or sets the channel primary image tag. */ - public var channelPrimaryImageTag: String? - /** Gets or sets the start date of the recording, in UTC. */ - public var startDate: Date? - /** Gets or sets the completion percentage. */ - public var completionPercentage: Double? - /** Gets or sets a value indicating whether this instance is repeat. */ - public var isRepeat: Bool? - /** Gets or sets the episode title. */ - public var episodeTitle: String? - /** Gets or sets the type of the channel. */ - public var channelType: ChannelType? - /** Gets or sets the audio. */ - public var audio: ProgramAudio? - /** Gets or sets a value indicating whether this instance is movie. */ - public var isMovie: Bool? - /** Gets or sets a value indicating whether this instance is sports. */ - public var isSports: Bool? - /** Gets or sets a value indicating whether this instance is series. */ - public var isSeries: Bool? - /** Gets or sets a value indicating whether this instance is live. */ - public var isLive: Bool? - /** Gets or sets a value indicating whether this instance is news. */ - public var isNews: Bool? - /** Gets or sets a value indicating whether this instance is kids. */ - public var isKids: Bool? - /** Gets or sets a value indicating whether this instance is premiere. */ - public var isPremiere: Bool? - /** Gets or sets the timer identifier. */ - public var timerId: String? - - public init(name: String? = nil, originalTitle: String? = nil, serverId: String? = nil, id: String? = nil, etag: String? = nil, sourceType: String? = nil, playlistItemId: String? = nil, dateCreated: Date? = nil, dateLastMediaAdded: Date? = nil, extraType: String? = nil, airsBeforeSeasonNumber: Int? = nil, airsAfterSeasonNumber: Int? = nil, airsBeforeEpisodeNumber: Int? = nil, canDelete: Bool? = nil, canDownload: Bool? = nil, hasSubtitles: Bool? = nil, preferredMetadataLanguage: String? = nil, preferredMetadataCountryCode: String? = nil, supportsSync: Bool? = nil, container: String? = nil, sortName: String? = nil, forcedSortName: String? = nil, video3DFormat: Video3DFormat? = nil, premiereDate: Date? = nil, externalUrls: [ExternalUrl]? = nil, mediaSources: [MediaSourceInfo]? = nil, criticRating: Float? = nil, productionLocations: [String]? = nil, path: String? = nil, enableMediaSourceDisplay: Bool? = nil, officialRating: String? = nil, customRating: String? = nil, channelId: String? = nil, channelName: String? = nil, overview: String? = nil, taglines: [String]? = nil, genres: [String]? = nil, communityRating: Float? = nil, cumulativeRunTimeTicks: Int64? = nil, runTimeTicks: Int64? = nil, playAccess: PlayAccess? = nil, aspectRatio: String? = nil, productionYear: Int? = nil, isPlaceHolder: Bool? = nil, number: String? = nil, channelNumber: String? = nil, indexNumber: Int? = nil, indexNumberEnd: Int? = nil, parentIndexNumber: Int? = nil, remoteTrailers: [MediaUrl]? = nil, providerIds: [String: String]? = nil, isHD: Bool? = nil, isFolder: Bool? = nil, parentId: String? = nil, type: BaseItemKind? = nil, people: [BaseItemPerson]? = nil, studios: [NameGuidPair]? = nil, genreItems: [NameGuidPair]? = nil, parentLogoItemId: String? = nil, parentBackdropItemId: String? = nil, parentBackdropImageTags: [String]? = nil, localTrailerCount: Int? = nil, userData: BaseItemDtoUserData? = nil, recursiveItemCount: Int? = nil, childCount: Int? = nil, seriesName: String? = nil, seriesId: String? = nil, seasonId: String? = nil, specialFeatureCount: Int? = nil, displayPreferencesId: String? = nil, status: String? = nil, airTime: String? = nil, airDays: [DayOfWeek]? = nil, tags: [String]? = nil, primaryImageAspectRatio: Double? = nil, artists: [String]? = nil, artistItems: [NameGuidPair]? = nil, album: String? = nil, collectionType: String? = nil, displayOrder: String? = nil, albumId: String? = nil, albumPrimaryImageTag: String? = nil, seriesPrimaryImageTag: String? = nil, albumArtist: String? = nil, albumArtists: [NameGuidPair]? = nil, seasonName: String? = nil, mediaStreams: [MediaStream]? = nil, videoType: VideoType? = nil, partCount: Int? = nil, mediaSourceCount: Int? = nil, imageTags: [String: String]? = nil, backdropImageTags: [String]? = nil, screenshotImageTags: [String]? = nil, parentLogoImageTag: String? = nil, parentArtItemId: String? = nil, parentArtImageTag: String? = nil, seriesThumbImageTag: String? = nil, imageBlurHashes: BaseItemDtoImageBlurHashes? = nil, seriesStudio: String? = nil, parentThumbItemId: String? = nil, parentThumbImageTag: String? = nil, parentPrimaryImageItemId: String? = nil, parentPrimaryImageTag: String? = nil, chapters: [ChapterInfo]? = nil, locationType: LocationType? = nil, isoType: IsoType? = nil, mediaType: String? = nil, endDate: Date? = nil, lockedFields: [MetadataField]? = nil, trailerCount: Int? = nil, movieCount: Int? = nil, seriesCount: Int? = nil, programCount: Int? = nil, episodeCount: Int? = nil, songCount: Int? = nil, albumCount: Int? = nil, artistCount: Int? = nil, musicVideoCount: Int? = nil, lockData: Bool? = nil, width: Int? = nil, height: Int? = nil, cameraMake: String? = nil, cameraModel: String? = nil, software: String? = nil, exposureTime: Double? = nil, focalLength: Double? = nil, imageOrientation: ImageOrientation? = nil, aperture: Double? = nil, shutterSpeed: Double? = nil, latitude: Double? = nil, longitude: Double? = nil, altitude: Double? = nil, isoSpeedRating: Int? = nil, seriesTimerId: String? = nil, programId: String? = nil, channelPrimaryImageTag: String? = nil, startDate: Date? = nil, completionPercentage: Double? = nil, isRepeat: Bool? = nil, episodeTitle: String? = nil, channelType: ChannelType? = nil, audio: ProgramAudio? = nil, isMovie: Bool? = nil, isSports: Bool? = nil, isSeries: Bool? = nil, isLive: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isPremiere: Bool? = nil, timerId: String? = nil) { - self.name = name - self.originalTitle = originalTitle - self.serverId = serverId - self.id = id - self.etag = etag - self.sourceType = sourceType - self.playlistItemId = playlistItemId - self.dateCreated = dateCreated - self.dateLastMediaAdded = dateLastMediaAdded - self.extraType = extraType - self.airsBeforeSeasonNumber = airsBeforeSeasonNumber - self.airsAfterSeasonNumber = airsAfterSeasonNumber - self.airsBeforeEpisodeNumber = airsBeforeEpisodeNumber - self.canDelete = canDelete - self.canDownload = canDownload - self.hasSubtitles = hasSubtitles - self.preferredMetadataLanguage = preferredMetadataLanguage - self.preferredMetadataCountryCode = preferredMetadataCountryCode - self.supportsSync = supportsSync - self.container = container - self.sortName = sortName - self.forcedSortName = forcedSortName - self.video3DFormat = video3DFormat - self.premiereDate = premiereDate - self.externalUrls = externalUrls - self.mediaSources = mediaSources - self.criticRating = criticRating - self.productionLocations = productionLocations - self.path = path - self.enableMediaSourceDisplay = enableMediaSourceDisplay - self.officialRating = officialRating - self.customRating = customRating - self.channelId = channelId - self.channelName = channelName - self.overview = overview - self.taglines = taglines - self.genres = genres - self.communityRating = communityRating - self.cumulativeRunTimeTicks = cumulativeRunTimeTicks - self.runTimeTicks = runTimeTicks - self.playAccess = playAccess - self.aspectRatio = aspectRatio - self.productionYear = productionYear - self.isPlaceHolder = isPlaceHolder - self.number = number - self.channelNumber = channelNumber - self.indexNumber = indexNumber - self.indexNumberEnd = indexNumberEnd - self.parentIndexNumber = parentIndexNumber - self.remoteTrailers = remoteTrailers - self.providerIds = providerIds - self.isHD = isHD - self.isFolder = isFolder - self.parentId = parentId - self.type = type - self.people = people - self.studios = studios - self.genreItems = genreItems - self.parentLogoItemId = parentLogoItemId - self.parentBackdropItemId = parentBackdropItemId - self.parentBackdropImageTags = parentBackdropImageTags - self.localTrailerCount = localTrailerCount - self.userData = userData - self.recursiveItemCount = recursiveItemCount - self.childCount = childCount - self.seriesName = seriesName - self.seriesId = seriesId - self.seasonId = seasonId - self.specialFeatureCount = specialFeatureCount - self.displayPreferencesId = displayPreferencesId - self.status = status - self.airTime = airTime - self.airDays = airDays - self.tags = tags - self.primaryImageAspectRatio = primaryImageAspectRatio - self.artists = artists - self.artistItems = artistItems - self.album = album - self.collectionType = collectionType - self.displayOrder = displayOrder - self.albumId = albumId - self.albumPrimaryImageTag = albumPrimaryImageTag - self.seriesPrimaryImageTag = seriesPrimaryImageTag - self.albumArtist = albumArtist - self.albumArtists = albumArtists - self.seasonName = seasonName - self.mediaStreams = mediaStreams - self.videoType = videoType - self.partCount = partCount - self.mediaSourceCount = mediaSourceCount - self.imageTags = imageTags - self.backdropImageTags = backdropImageTags - self.screenshotImageTags = screenshotImageTags - self.parentLogoImageTag = parentLogoImageTag - self.parentArtItemId = parentArtItemId - self.parentArtImageTag = parentArtImageTag - self.seriesThumbImageTag = seriesThumbImageTag - self.imageBlurHashes = imageBlurHashes - self.seriesStudio = seriesStudio - self.parentThumbItemId = parentThumbItemId - self.parentThumbImageTag = parentThumbImageTag - self.parentPrimaryImageItemId = parentPrimaryImageItemId - self.parentPrimaryImageTag = parentPrimaryImageTag - self.chapters = chapters - self.locationType = locationType - self.isoType = isoType - self.mediaType = mediaType - self.endDate = endDate - self.lockedFields = lockedFields - self.trailerCount = trailerCount - self.movieCount = movieCount - self.seriesCount = seriesCount - self.programCount = programCount - self.episodeCount = episodeCount - self.songCount = songCount - self.albumCount = albumCount - self.artistCount = artistCount - self.musicVideoCount = musicVideoCount - self.lockData = lockData - self.width = width - self.height = height - self.cameraMake = cameraMake - self.cameraModel = cameraModel - self.software = software - self.exposureTime = exposureTime - self.focalLength = focalLength - self.imageOrientation = imageOrientation - self.aperture = aperture - self.shutterSpeed = shutterSpeed - self.latitude = latitude - self.longitude = longitude - self.altitude = altitude - self.isoSpeedRating = isoSpeedRating - self.seriesTimerId = seriesTimerId - self.programId = programId - self.channelPrimaryImageTag = channelPrimaryImageTag - self.startDate = startDate - self.completionPercentage = completionPercentage - self.isRepeat = isRepeat - self.episodeTitle = episodeTitle - self.channelType = channelType - self.audio = audio - self.isMovie = isMovie - self.isSports = isSports - self.isSeries = isSeries - self.isLive = isLive - self.isNews = isNews - self.isKids = isKids - self.isPremiere = isPremiere - self.timerId = timerId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case serverId = "ServerId" - case id = "Id" - case etag = "Etag" - case sourceType = "SourceType" - case playlistItemId = "PlaylistItemId" - case dateCreated = "DateCreated" - case dateLastMediaAdded = "DateLastMediaAdded" - case extraType = "ExtraType" - case airsBeforeSeasonNumber = "AirsBeforeSeasonNumber" - case airsAfterSeasonNumber = "AirsAfterSeasonNumber" - case airsBeforeEpisodeNumber = "AirsBeforeEpisodeNumber" - case canDelete = "CanDelete" - case canDownload = "CanDownload" - case hasSubtitles = "HasSubtitles" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case preferredMetadataCountryCode = "PreferredMetadataCountryCode" - case supportsSync = "SupportsSync" - case container = "Container" - case sortName = "SortName" - case forcedSortName = "ForcedSortName" - case video3DFormat = "Video3DFormat" - case premiereDate = "PremiereDate" - case externalUrls = "ExternalUrls" - case mediaSources = "MediaSources" - case criticRating = "CriticRating" - case productionLocations = "ProductionLocations" - case path = "Path" - case enableMediaSourceDisplay = "EnableMediaSourceDisplay" - case officialRating = "OfficialRating" - case customRating = "CustomRating" - case channelId = "ChannelId" - case channelName = "ChannelName" - case overview = "Overview" - case taglines = "Taglines" - case genres = "Genres" - case communityRating = "CommunityRating" - case cumulativeRunTimeTicks = "CumulativeRunTimeTicks" - case runTimeTicks = "RunTimeTicks" - case playAccess = "PlayAccess" - case aspectRatio = "AspectRatio" - case productionYear = "ProductionYear" - case isPlaceHolder = "IsPlaceHolder" - case number = "Number" - case channelNumber = "ChannelNumber" - case indexNumber = "IndexNumber" - case indexNumberEnd = "IndexNumberEnd" - case parentIndexNumber = "ParentIndexNumber" - case remoteTrailers = "RemoteTrailers" - case providerIds = "ProviderIds" - case isHD = "IsHD" - case isFolder = "IsFolder" - case parentId = "ParentId" - case type = "Type" - case people = "People" - case studios = "Studios" - case genreItems = "GenreItems" - case parentLogoItemId = "ParentLogoItemId" - case parentBackdropItemId = "ParentBackdropItemId" - case parentBackdropImageTags = "ParentBackdropImageTags" - case localTrailerCount = "LocalTrailerCount" - case userData = "UserData" - case recursiveItemCount = "RecursiveItemCount" - case childCount = "ChildCount" - case seriesName = "SeriesName" - case seriesId = "SeriesId" - case seasonId = "SeasonId" - case specialFeatureCount = "SpecialFeatureCount" - case displayPreferencesId = "DisplayPreferencesId" - case status = "Status" - case airTime = "AirTime" - case airDays = "AirDays" - case tags = "Tags" - case primaryImageAspectRatio = "PrimaryImageAspectRatio" - case artists = "Artists" - case artistItems = "ArtistItems" - case album = "Album" - case collectionType = "CollectionType" - case displayOrder = "DisplayOrder" - case albumId = "AlbumId" - case albumPrimaryImageTag = "AlbumPrimaryImageTag" - case seriesPrimaryImageTag = "SeriesPrimaryImageTag" - case albumArtist = "AlbumArtist" - case albumArtists = "AlbumArtists" - case seasonName = "SeasonName" - case mediaStreams = "MediaStreams" - case videoType = "VideoType" - case partCount = "PartCount" - case mediaSourceCount = "MediaSourceCount" - case imageTags = "ImageTags" - case backdropImageTags = "BackdropImageTags" - case screenshotImageTags = "ScreenshotImageTags" - case parentLogoImageTag = "ParentLogoImageTag" - case parentArtItemId = "ParentArtItemId" - case parentArtImageTag = "ParentArtImageTag" - case seriesThumbImageTag = "SeriesThumbImageTag" - case imageBlurHashes = "ImageBlurHashes" - case seriesStudio = "SeriesStudio" - case parentThumbItemId = "ParentThumbItemId" - case parentThumbImageTag = "ParentThumbImageTag" - case parentPrimaryImageItemId = "ParentPrimaryImageItemId" - case parentPrimaryImageTag = "ParentPrimaryImageTag" - case chapters = "Chapters" - case locationType = "LocationType" - case isoType = "IsoType" - case mediaType = "MediaType" - case endDate = "EndDate" - case lockedFields = "LockedFields" - case trailerCount = "TrailerCount" - case movieCount = "MovieCount" - case seriesCount = "SeriesCount" - case programCount = "ProgramCount" - case episodeCount = "EpisodeCount" - case songCount = "SongCount" - case albumCount = "AlbumCount" - case artistCount = "ArtistCount" - case musicVideoCount = "MusicVideoCount" - case lockData = "LockData" - case width = "Width" - case height = "Height" - case cameraMake = "CameraMake" - case cameraModel = "CameraModel" - case software = "Software" - case exposureTime = "ExposureTime" - case focalLength = "FocalLength" - case imageOrientation = "ImageOrientation" - case aperture = "Aperture" - case shutterSpeed = "ShutterSpeed" - case latitude = "Latitude" - case longitude = "Longitude" - case altitude = "Altitude" - case isoSpeedRating = "IsoSpeedRating" - case seriesTimerId = "SeriesTimerId" - case programId = "ProgramId" - case channelPrimaryImageTag = "ChannelPrimaryImageTag" - case startDate = "StartDate" - case completionPercentage = "CompletionPercentage" - case isRepeat = "IsRepeat" - case episodeTitle = "EpisodeTitle" - case channelType = "ChannelType" - case audio = "Audio" - case isMovie = "IsMovie" - case isSports = "IsSports" - case isSeries = "IsSeries" - case isLive = "IsLive" - case isNews = "IsNews" - case isKids = "IsKids" - case isPremiere = "IsPremiere" - case timerId = "TimerId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(etag, forKey: .etag) - try encoderContainer.encodeIfPresent(sourceType, forKey: .sourceType) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(dateCreated, forKey: .dateCreated) - try encoderContainer.encodeIfPresent(dateLastMediaAdded, forKey: .dateLastMediaAdded) - try encoderContainer.encodeIfPresent(extraType, forKey: .extraType) - try encoderContainer.encodeIfPresent(airsBeforeSeasonNumber, forKey: .airsBeforeSeasonNumber) - try encoderContainer.encodeIfPresent(airsAfterSeasonNumber, forKey: .airsAfterSeasonNumber) - try encoderContainer.encodeIfPresent(airsBeforeEpisodeNumber, forKey: .airsBeforeEpisodeNumber) - try encoderContainer.encodeIfPresent(canDelete, forKey: .canDelete) - try encoderContainer.encodeIfPresent(canDownload, forKey: .canDownload) - try encoderContainer.encodeIfPresent(hasSubtitles, forKey: .hasSubtitles) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(preferredMetadataCountryCode, forKey: .preferredMetadataCountryCode) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(sortName, forKey: .sortName) - try encoderContainer.encodeIfPresent(forcedSortName, forKey: .forcedSortName) - try encoderContainer.encodeIfPresent(video3DFormat, forKey: .video3DFormat) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(externalUrls, forKey: .externalUrls) - try encoderContainer.encodeIfPresent(mediaSources, forKey: .mediaSources) - try encoderContainer.encodeIfPresent(criticRating, forKey: .criticRating) - try encoderContainer.encodeIfPresent(productionLocations, forKey: .productionLocations) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(enableMediaSourceDisplay, forKey: .enableMediaSourceDisplay) - try encoderContainer.encodeIfPresent(officialRating, forKey: .officialRating) - try encoderContainer.encodeIfPresent(customRating, forKey: .customRating) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(taglines, forKey: .taglines) - try encoderContainer.encodeIfPresent(genres, forKey: .genres) - try encoderContainer.encodeIfPresent(communityRating, forKey: .communityRating) - try encoderContainer.encodeIfPresent(cumulativeRunTimeTicks, forKey: .cumulativeRunTimeTicks) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(playAccess, forKey: .playAccess) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(productionYear, forKey: .productionYear) - try encoderContainer.encodeIfPresent(isPlaceHolder, forKey: .isPlaceHolder) - try encoderContainer.encodeIfPresent(number, forKey: .number) - try encoderContainer.encodeIfPresent(channelNumber, forKey: .channelNumber) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(indexNumberEnd, forKey: .indexNumberEnd) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(remoteTrailers, forKey: .remoteTrailers) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(isHD, forKey: .isHD) - try encoderContainer.encodeIfPresent(isFolder, forKey: .isFolder) - try encoderContainer.encodeIfPresent(parentId, forKey: .parentId) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(people, forKey: .people) - try encoderContainer.encodeIfPresent(studios, forKey: .studios) - try encoderContainer.encodeIfPresent(genreItems, forKey: .genreItems) - try encoderContainer.encodeIfPresent(parentLogoItemId, forKey: .parentLogoItemId) - try encoderContainer.encodeIfPresent(parentBackdropItemId, forKey: .parentBackdropItemId) - try encoderContainer.encodeIfPresent(parentBackdropImageTags, forKey: .parentBackdropImageTags) - try encoderContainer.encodeIfPresent(localTrailerCount, forKey: .localTrailerCount) - try encoderContainer.encodeIfPresent(userData, forKey: .userData) - try encoderContainer.encodeIfPresent(recursiveItemCount, forKey: .recursiveItemCount) - try encoderContainer.encodeIfPresent(childCount, forKey: .childCount) - try encoderContainer.encodeIfPresent(seriesName, forKey: .seriesName) - try encoderContainer.encodeIfPresent(seriesId, forKey: .seriesId) - try encoderContainer.encodeIfPresent(seasonId, forKey: .seasonId) - try encoderContainer.encodeIfPresent(specialFeatureCount, forKey: .specialFeatureCount) - try encoderContainer.encodeIfPresent(displayPreferencesId, forKey: .displayPreferencesId) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(airTime, forKey: .airTime) - try encoderContainer.encodeIfPresent(airDays, forKey: .airDays) - try encoderContainer.encodeIfPresent(tags, forKey: .tags) - try encoderContainer.encodeIfPresent(primaryImageAspectRatio, forKey: .primaryImageAspectRatio) - try encoderContainer.encodeIfPresent(artists, forKey: .artists) - try encoderContainer.encodeIfPresent(artistItems, forKey: .artistItems) - try encoderContainer.encodeIfPresent(album, forKey: .album) - try encoderContainer.encodeIfPresent(collectionType, forKey: .collectionType) - try encoderContainer.encodeIfPresent(displayOrder, forKey: .displayOrder) - try encoderContainer.encodeIfPresent(albumId, forKey: .albumId) - try encoderContainer.encodeIfPresent(albumPrimaryImageTag, forKey: .albumPrimaryImageTag) - try encoderContainer.encodeIfPresent(seriesPrimaryImageTag, forKey: .seriesPrimaryImageTag) - try encoderContainer.encodeIfPresent(albumArtist, forKey: .albumArtist) - try encoderContainer.encodeIfPresent(albumArtists, forKey: .albumArtists) - try encoderContainer.encodeIfPresent(seasonName, forKey: .seasonName) - try encoderContainer.encodeIfPresent(mediaStreams, forKey: .mediaStreams) - try encoderContainer.encodeIfPresent(videoType, forKey: .videoType) - try encoderContainer.encodeIfPresent(partCount, forKey: .partCount) - try encoderContainer.encodeIfPresent(mediaSourceCount, forKey: .mediaSourceCount) - try encoderContainer.encodeIfPresent(imageTags, forKey: .imageTags) - try encoderContainer.encodeIfPresent(backdropImageTags, forKey: .backdropImageTags) - try encoderContainer.encodeIfPresent(screenshotImageTags, forKey: .screenshotImageTags) - try encoderContainer.encodeIfPresent(parentLogoImageTag, forKey: .parentLogoImageTag) - try encoderContainer.encodeIfPresent(parentArtItemId, forKey: .parentArtItemId) - try encoderContainer.encodeIfPresent(parentArtImageTag, forKey: .parentArtImageTag) - try encoderContainer.encodeIfPresent(seriesThumbImageTag, forKey: .seriesThumbImageTag) - try encoderContainer.encodeIfPresent(imageBlurHashes, forKey: .imageBlurHashes) - try encoderContainer.encodeIfPresent(seriesStudio, forKey: .seriesStudio) - try encoderContainer.encodeIfPresent(parentThumbItemId, forKey: .parentThumbItemId) - try encoderContainer.encodeIfPresent(parentThumbImageTag, forKey: .parentThumbImageTag) - try encoderContainer.encodeIfPresent(parentPrimaryImageItemId, forKey: .parentPrimaryImageItemId) - try encoderContainer.encodeIfPresent(parentPrimaryImageTag, forKey: .parentPrimaryImageTag) - try encoderContainer.encodeIfPresent(chapters, forKey: .chapters) - try encoderContainer.encodeIfPresent(locationType, forKey: .locationType) - try encoderContainer.encodeIfPresent(isoType, forKey: .isoType) - try encoderContainer.encodeIfPresent(mediaType, forKey: .mediaType) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(lockedFields, forKey: .lockedFields) - try encoderContainer.encodeIfPresent(trailerCount, forKey: .trailerCount) - try encoderContainer.encodeIfPresent(movieCount, forKey: .movieCount) - try encoderContainer.encodeIfPresent(seriesCount, forKey: .seriesCount) - try encoderContainer.encodeIfPresent(programCount, forKey: .programCount) - try encoderContainer.encodeIfPresent(episodeCount, forKey: .episodeCount) - try encoderContainer.encodeIfPresent(songCount, forKey: .songCount) - try encoderContainer.encodeIfPresent(albumCount, forKey: .albumCount) - try encoderContainer.encodeIfPresent(artistCount, forKey: .artistCount) - try encoderContainer.encodeIfPresent(musicVideoCount, forKey: .musicVideoCount) - try encoderContainer.encodeIfPresent(lockData, forKey: .lockData) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(cameraMake, forKey: .cameraMake) - try encoderContainer.encodeIfPresent(cameraModel, forKey: .cameraModel) - try encoderContainer.encodeIfPresent(software, forKey: .software) - try encoderContainer.encodeIfPresent(exposureTime, forKey: .exposureTime) - try encoderContainer.encodeIfPresent(focalLength, forKey: .focalLength) - try encoderContainer.encodeIfPresent(imageOrientation, forKey: .imageOrientation) - try encoderContainer.encodeIfPresent(aperture, forKey: .aperture) - try encoderContainer.encodeIfPresent(shutterSpeed, forKey: .shutterSpeed) - try encoderContainer.encodeIfPresent(latitude, forKey: .latitude) - try encoderContainer.encodeIfPresent(longitude, forKey: .longitude) - try encoderContainer.encodeIfPresent(altitude, forKey: .altitude) - try encoderContainer.encodeIfPresent(isoSpeedRating, forKey: .isoSpeedRating) - try encoderContainer.encodeIfPresent(seriesTimerId, forKey: .seriesTimerId) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - try encoderContainer.encodeIfPresent(channelPrimaryImageTag, forKey: .channelPrimaryImageTag) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(completionPercentage, forKey: .completionPercentage) - try encoderContainer.encodeIfPresent(isRepeat, forKey: .isRepeat) - try encoderContainer.encodeIfPresent(episodeTitle, forKey: .episodeTitle) - try encoderContainer.encodeIfPresent(channelType, forKey: .channelType) - try encoderContainer.encodeIfPresent(audio, forKey: .audio) - try encoderContainer.encodeIfPresent(isMovie, forKey: .isMovie) - try encoderContainer.encodeIfPresent(isSports, forKey: .isSports) - try encoderContainer.encodeIfPresent(isSeries, forKey: .isSeries) - try encoderContainer.encodeIfPresent(isLive, forKey: .isLive) - try encoderContainer.encodeIfPresent(isNews, forKey: .isNews) - try encoderContainer.encodeIfPresent(isKids, forKey: .isKids) - try encoderContainer.encodeIfPresent(isPremiere, forKey: .isPremiere) - try encoderContainer.encodeIfPresent(timerId, forKey: .timerId) - } -} diff --git a/Sources/JellyfinAPI/Models/SessionInfoNowViewingItem.swift b/Sources/JellyfinAPI/Models/SessionInfoNowViewingItem.swift deleted file mode 100644 index c5a334a48..000000000 --- a/Sources/JellyfinAPI/Models/SessionInfoNowViewingItem.swift +++ /dev/null @@ -1,741 +0,0 @@ -// -// SessionInfoNowViewingItem.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** This is strictly used as a data transfer object from the api layer. This holds information about a BaseItem in a format that is convenient for the client. */ -public struct SessionInfoNowViewingItem: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - public var originalTitle: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the etag. */ - public var etag: String? - /** Gets or sets the type of the source. */ - public var sourceType: String? - /** Gets or sets the playlist item identifier. */ - public var playlistItemId: String? - /** Gets or sets the date created. */ - public var dateCreated: Date? - public var dateLastMediaAdded: Date? - public var extraType: String? - public var airsBeforeSeasonNumber: Int? - public var airsAfterSeasonNumber: Int? - public var airsBeforeEpisodeNumber: Int? - public var canDelete: Bool? - public var canDownload: Bool? - public var hasSubtitles: Bool? - public var preferredMetadataLanguage: String? - public var preferredMetadataCountryCode: String? - /** Gets or sets a value indicating whether [supports synchronize]. */ - public var supportsSync: Bool? - public var container: String? - /** Gets or sets the name of the sort. */ - public var sortName: String? - public var forcedSortName: String? - /** Gets or sets the video3 D format. */ - public var video3DFormat: Video3DFormat? - /** Gets or sets the premiere date. */ - public var premiereDate: Date? - /** Gets or sets the external urls. */ - public var externalUrls: [ExternalUrl]? - /** Gets or sets the media versions. */ - public var mediaSources: [MediaSourceInfo]? - /** Gets or sets the critic rating. */ - public var criticRating: Float? - public var productionLocations: [String]? - /** Gets or sets the path. */ - public var path: String? - public var enableMediaSourceDisplay: Bool? - /** Gets or sets the official rating. */ - public var officialRating: String? - /** Gets or sets the custom rating. */ - public var customRating: String? - /** Gets or sets the channel identifier. */ - public var channelId: String? - public var channelName: String? - /** Gets or sets the overview. */ - public var overview: String? - /** Gets or sets the taglines. */ - public var taglines: [String]? - /** Gets or sets the genres. */ - public var genres: [String]? - /** Gets or sets the community rating. */ - public var communityRating: Float? - /** Gets or sets the cumulative run time ticks. */ - public var cumulativeRunTimeTicks: Int64? - /** Gets or sets the run time ticks. */ - public var runTimeTicks: Int64? - /** Gets or sets the play access. */ - public var playAccess: PlayAccess? - /** Gets or sets the aspect ratio. */ - public var aspectRatio: String? - /** Gets or sets the production year. */ - public var productionYear: Int? - /** Gets or sets a value indicating whether this instance is place holder. */ - public var isPlaceHolder: Bool? - /** Gets or sets the number. */ - public var number: String? - public var channelNumber: String? - /** Gets or sets the index number. */ - public var indexNumber: Int? - /** Gets or sets the index number end. */ - public var indexNumberEnd: Int? - /** Gets or sets the parent index number. */ - public var parentIndexNumber: Int? - /** Gets or sets the trailer urls. */ - public var remoteTrailers: [MediaUrl]? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets a value indicating whether this instance is HD. */ - public var isHD: Bool? - /** Gets or sets a value indicating whether this instance is folder. */ - public var isFolder: Bool? - /** Gets or sets the parent id. */ - public var parentId: String? - /** The base item kind. */ - public var type: BaseItemKind? - /** Gets or sets the people. */ - public var people: [BaseItemPerson]? - /** Gets or sets the studios. */ - public var studios: [NameGuidPair]? - public var genreItems: [NameGuidPair]? - /** Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. */ - public var parentLogoItemId: String? - /** Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. */ - public var parentBackdropItemId: String? - /** Gets or sets the parent backdrop image tags. */ - public var parentBackdropImageTags: [String]? - /** Gets or sets the local trailer count. */ - public var localTrailerCount: Int? - public var userData: BaseItemDtoUserData? - /** Gets or sets the recursive item count. */ - public var recursiveItemCount: Int? - /** Gets or sets the child count. */ - public var childCount: Int? - /** Gets or sets the name of the series. */ - public var seriesName: String? - /** Gets or sets the series id. */ - public var seriesId: String? - /** Gets or sets the season identifier. */ - public var seasonId: String? - /** Gets or sets the special feature count. */ - public var specialFeatureCount: Int? - /** Gets or sets the display preferences id. */ - public var displayPreferencesId: String? - /** Gets or sets the status. */ - public var status: String? - /** Gets or sets the air time. */ - public var airTime: String? - /** Gets or sets the air days. */ - public var airDays: [DayOfWeek]? - /** Gets or sets the tags. */ - public var tags: [String]? - /** Gets or sets the primary image aspect ratio, after image enhancements. */ - public var primaryImageAspectRatio: Double? - /** Gets or sets the artists. */ - public var artists: [String]? - /** Gets or sets the artist items. */ - public var artistItems: [NameGuidPair]? - /** Gets or sets the album. */ - public var album: String? - /** Gets or sets the type of the collection. */ - public var collectionType: String? - /** Gets or sets the display order. */ - public var displayOrder: String? - /** Gets or sets the album id. */ - public var albumId: String? - /** Gets or sets the album image tag. */ - public var albumPrimaryImageTag: String? - /** Gets or sets the series primary image tag. */ - public var seriesPrimaryImageTag: String? - /** Gets or sets the album artist. */ - public var albumArtist: String? - /** Gets or sets the album artists. */ - public var albumArtists: [NameGuidPair]? - /** Gets or sets the name of the season. */ - public var seasonName: String? - /** Gets or sets the media streams. */ - public var mediaStreams: [MediaStream]? - /** Gets or sets the type of the video. */ - public var videoType: VideoType? - /** Gets or sets the part count. */ - public var partCount: Int? - public var mediaSourceCount: Int? - /** Gets or sets the image tags. */ - public var imageTags: [String: String]? - /** Gets or sets the backdrop image tags. */ - public var backdropImageTags: [String]? - /** Gets or sets the screenshot image tags. */ - public var screenshotImageTags: [String]? - /** Gets or sets the parent logo image tag. */ - public var parentLogoImageTag: String? - /** Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. */ - public var parentArtItemId: String? - /** Gets or sets the parent art image tag. */ - public var parentArtImageTag: String? - /** Gets or sets the series thumb image tag. */ - public var seriesThumbImageTag: String? - public var imageBlurHashes: BaseItemDtoImageBlurHashes? - /** Gets or sets the series studio. */ - public var seriesStudio: String? - /** Gets or sets the parent thumb item id. */ - public var parentThumbItemId: String? - /** Gets or sets the parent thumb image tag. */ - public var parentThumbImageTag: String? - /** Gets or sets the parent primary image item identifier. */ - public var parentPrimaryImageItemId: String? - /** Gets or sets the parent primary image tag. */ - public var parentPrimaryImageTag: String? - /** Gets or sets the chapters. */ - public var chapters: [ChapterInfo]? - /** Gets or sets the type of the location. */ - public var locationType: LocationType? - /** Gets or sets the type of the iso. */ - public var isoType: IsoType? - /** Gets or sets the type of the media. */ - public var mediaType: String? - /** Gets or sets the end date. */ - public var endDate: Date? - /** Gets or sets the locked fields. */ - public var lockedFields: [MetadataField]? - /** Gets or sets the trailer count. */ - public var trailerCount: Int? - /** Gets or sets the movie count. */ - public var movieCount: Int? - /** Gets or sets the series count. */ - public var seriesCount: Int? - public var programCount: Int? - /** Gets or sets the episode count. */ - public var episodeCount: Int? - /** Gets or sets the song count. */ - public var songCount: Int? - /** Gets or sets the album count. */ - public var albumCount: Int? - public var artistCount: Int? - /** Gets or sets the music video count. */ - public var musicVideoCount: Int? - /** Gets or sets a value indicating whether [enable internet providers]. */ - public var lockData: Bool? - public var width: Int? - public var height: Int? - public var cameraMake: String? - public var cameraModel: String? - public var software: String? - public var exposureTime: Double? - public var focalLength: Double? - public var imageOrientation: ImageOrientation? - public var aperture: Double? - public var shutterSpeed: Double? - public var latitude: Double? - public var longitude: Double? - public var altitude: Double? - public var isoSpeedRating: Int? - /** Gets or sets the series timer identifier. */ - public var seriesTimerId: String? - /** Gets or sets the program identifier. */ - public var programId: String? - /** Gets or sets the channel primary image tag. */ - public var channelPrimaryImageTag: String? - /** Gets or sets the start date of the recording, in UTC. */ - public var startDate: Date? - /** Gets or sets the completion percentage. */ - public var completionPercentage: Double? - /** Gets or sets a value indicating whether this instance is repeat. */ - public var isRepeat: Bool? - /** Gets or sets the episode title. */ - public var episodeTitle: String? - /** Gets or sets the type of the channel. */ - public var channelType: ChannelType? - /** Gets or sets the audio. */ - public var audio: ProgramAudio? - /** Gets or sets a value indicating whether this instance is movie. */ - public var isMovie: Bool? - /** Gets or sets a value indicating whether this instance is sports. */ - public var isSports: Bool? - /** Gets or sets a value indicating whether this instance is series. */ - public var isSeries: Bool? - /** Gets or sets a value indicating whether this instance is live. */ - public var isLive: Bool? - /** Gets or sets a value indicating whether this instance is news. */ - public var isNews: Bool? - /** Gets or sets a value indicating whether this instance is kids. */ - public var isKids: Bool? - /** Gets or sets a value indicating whether this instance is premiere. */ - public var isPremiere: Bool? - /** Gets or sets the timer identifier. */ - public var timerId: String? - - public init(name: String? = nil, originalTitle: String? = nil, serverId: String? = nil, id: String? = nil, etag: String? = nil, sourceType: String? = nil, playlistItemId: String? = nil, dateCreated: Date? = nil, dateLastMediaAdded: Date? = nil, extraType: String? = nil, airsBeforeSeasonNumber: Int? = nil, airsAfterSeasonNumber: Int? = nil, airsBeforeEpisodeNumber: Int? = nil, canDelete: Bool? = nil, canDownload: Bool? = nil, hasSubtitles: Bool? = nil, preferredMetadataLanguage: String? = nil, preferredMetadataCountryCode: String? = nil, supportsSync: Bool? = nil, container: String? = nil, sortName: String? = nil, forcedSortName: String? = nil, video3DFormat: Video3DFormat? = nil, premiereDate: Date? = nil, externalUrls: [ExternalUrl]? = nil, mediaSources: [MediaSourceInfo]? = nil, criticRating: Float? = nil, productionLocations: [String]? = nil, path: String? = nil, enableMediaSourceDisplay: Bool? = nil, officialRating: String? = nil, customRating: String? = nil, channelId: String? = nil, channelName: String? = nil, overview: String? = nil, taglines: [String]? = nil, genres: [String]? = nil, communityRating: Float? = nil, cumulativeRunTimeTicks: Int64? = nil, runTimeTicks: Int64? = nil, playAccess: PlayAccess? = nil, aspectRatio: String? = nil, productionYear: Int? = nil, isPlaceHolder: Bool? = nil, number: String? = nil, channelNumber: String? = nil, indexNumber: Int? = nil, indexNumberEnd: Int? = nil, parentIndexNumber: Int? = nil, remoteTrailers: [MediaUrl]? = nil, providerIds: [String: String]? = nil, isHD: Bool? = nil, isFolder: Bool? = nil, parentId: String? = nil, type: BaseItemKind? = nil, people: [BaseItemPerson]? = nil, studios: [NameGuidPair]? = nil, genreItems: [NameGuidPair]? = nil, parentLogoItemId: String? = nil, parentBackdropItemId: String? = nil, parentBackdropImageTags: [String]? = nil, localTrailerCount: Int? = nil, userData: BaseItemDtoUserData? = nil, recursiveItemCount: Int? = nil, childCount: Int? = nil, seriesName: String? = nil, seriesId: String? = nil, seasonId: String? = nil, specialFeatureCount: Int? = nil, displayPreferencesId: String? = nil, status: String? = nil, airTime: String? = nil, airDays: [DayOfWeek]? = nil, tags: [String]? = nil, primaryImageAspectRatio: Double? = nil, artists: [String]? = nil, artistItems: [NameGuidPair]? = nil, album: String? = nil, collectionType: String? = nil, displayOrder: String? = nil, albumId: String? = nil, albumPrimaryImageTag: String? = nil, seriesPrimaryImageTag: String? = nil, albumArtist: String? = nil, albumArtists: [NameGuidPair]? = nil, seasonName: String? = nil, mediaStreams: [MediaStream]? = nil, videoType: VideoType? = nil, partCount: Int? = nil, mediaSourceCount: Int? = nil, imageTags: [String: String]? = nil, backdropImageTags: [String]? = nil, screenshotImageTags: [String]? = nil, parentLogoImageTag: String? = nil, parentArtItemId: String? = nil, parentArtImageTag: String? = nil, seriesThumbImageTag: String? = nil, imageBlurHashes: BaseItemDtoImageBlurHashes? = nil, seriesStudio: String? = nil, parentThumbItemId: String? = nil, parentThumbImageTag: String? = nil, parentPrimaryImageItemId: String? = nil, parentPrimaryImageTag: String? = nil, chapters: [ChapterInfo]? = nil, locationType: LocationType? = nil, isoType: IsoType? = nil, mediaType: String? = nil, endDate: Date? = nil, lockedFields: [MetadataField]? = nil, trailerCount: Int? = nil, movieCount: Int? = nil, seriesCount: Int? = nil, programCount: Int? = nil, episodeCount: Int? = nil, songCount: Int? = nil, albumCount: Int? = nil, artistCount: Int? = nil, musicVideoCount: Int? = nil, lockData: Bool? = nil, width: Int? = nil, height: Int? = nil, cameraMake: String? = nil, cameraModel: String? = nil, software: String? = nil, exposureTime: Double? = nil, focalLength: Double? = nil, imageOrientation: ImageOrientation? = nil, aperture: Double? = nil, shutterSpeed: Double? = nil, latitude: Double? = nil, longitude: Double? = nil, altitude: Double? = nil, isoSpeedRating: Int? = nil, seriesTimerId: String? = nil, programId: String? = nil, channelPrimaryImageTag: String? = nil, startDate: Date? = nil, completionPercentage: Double? = nil, isRepeat: Bool? = nil, episodeTitle: String? = nil, channelType: ChannelType? = nil, audio: ProgramAudio? = nil, isMovie: Bool? = nil, isSports: Bool? = nil, isSeries: Bool? = nil, isLive: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isPremiere: Bool? = nil, timerId: String? = nil) { - self.name = name - self.originalTitle = originalTitle - self.serverId = serverId - self.id = id - self.etag = etag - self.sourceType = sourceType - self.playlistItemId = playlistItemId - self.dateCreated = dateCreated - self.dateLastMediaAdded = dateLastMediaAdded - self.extraType = extraType - self.airsBeforeSeasonNumber = airsBeforeSeasonNumber - self.airsAfterSeasonNumber = airsAfterSeasonNumber - self.airsBeforeEpisodeNumber = airsBeforeEpisodeNumber - self.canDelete = canDelete - self.canDownload = canDownload - self.hasSubtitles = hasSubtitles - self.preferredMetadataLanguage = preferredMetadataLanguage - self.preferredMetadataCountryCode = preferredMetadataCountryCode - self.supportsSync = supportsSync - self.container = container - self.sortName = sortName - self.forcedSortName = forcedSortName - self.video3DFormat = video3DFormat - self.premiereDate = premiereDate - self.externalUrls = externalUrls - self.mediaSources = mediaSources - self.criticRating = criticRating - self.productionLocations = productionLocations - self.path = path - self.enableMediaSourceDisplay = enableMediaSourceDisplay - self.officialRating = officialRating - self.customRating = customRating - self.channelId = channelId - self.channelName = channelName - self.overview = overview - self.taglines = taglines - self.genres = genres - self.communityRating = communityRating - self.cumulativeRunTimeTicks = cumulativeRunTimeTicks - self.runTimeTicks = runTimeTicks - self.playAccess = playAccess - self.aspectRatio = aspectRatio - self.productionYear = productionYear - self.isPlaceHolder = isPlaceHolder - self.number = number - self.channelNumber = channelNumber - self.indexNumber = indexNumber - self.indexNumberEnd = indexNumberEnd - self.parentIndexNumber = parentIndexNumber - self.remoteTrailers = remoteTrailers - self.providerIds = providerIds - self.isHD = isHD - self.isFolder = isFolder - self.parentId = parentId - self.type = type - self.people = people - self.studios = studios - self.genreItems = genreItems - self.parentLogoItemId = parentLogoItemId - self.parentBackdropItemId = parentBackdropItemId - self.parentBackdropImageTags = parentBackdropImageTags - self.localTrailerCount = localTrailerCount - self.userData = userData - self.recursiveItemCount = recursiveItemCount - self.childCount = childCount - self.seriesName = seriesName - self.seriesId = seriesId - self.seasonId = seasonId - self.specialFeatureCount = specialFeatureCount - self.displayPreferencesId = displayPreferencesId - self.status = status - self.airTime = airTime - self.airDays = airDays - self.tags = tags - self.primaryImageAspectRatio = primaryImageAspectRatio - self.artists = artists - self.artistItems = artistItems - self.album = album - self.collectionType = collectionType - self.displayOrder = displayOrder - self.albumId = albumId - self.albumPrimaryImageTag = albumPrimaryImageTag - self.seriesPrimaryImageTag = seriesPrimaryImageTag - self.albumArtist = albumArtist - self.albumArtists = albumArtists - self.seasonName = seasonName - self.mediaStreams = mediaStreams - self.videoType = videoType - self.partCount = partCount - self.mediaSourceCount = mediaSourceCount - self.imageTags = imageTags - self.backdropImageTags = backdropImageTags - self.screenshotImageTags = screenshotImageTags - self.parentLogoImageTag = parentLogoImageTag - self.parentArtItemId = parentArtItemId - self.parentArtImageTag = parentArtImageTag - self.seriesThumbImageTag = seriesThumbImageTag - self.imageBlurHashes = imageBlurHashes - self.seriesStudio = seriesStudio - self.parentThumbItemId = parentThumbItemId - self.parentThumbImageTag = parentThumbImageTag - self.parentPrimaryImageItemId = parentPrimaryImageItemId - self.parentPrimaryImageTag = parentPrimaryImageTag - self.chapters = chapters - self.locationType = locationType - self.isoType = isoType - self.mediaType = mediaType - self.endDate = endDate - self.lockedFields = lockedFields - self.trailerCount = trailerCount - self.movieCount = movieCount - self.seriesCount = seriesCount - self.programCount = programCount - self.episodeCount = episodeCount - self.songCount = songCount - self.albumCount = albumCount - self.artistCount = artistCount - self.musicVideoCount = musicVideoCount - self.lockData = lockData - self.width = width - self.height = height - self.cameraMake = cameraMake - self.cameraModel = cameraModel - self.software = software - self.exposureTime = exposureTime - self.focalLength = focalLength - self.imageOrientation = imageOrientation - self.aperture = aperture - self.shutterSpeed = shutterSpeed - self.latitude = latitude - self.longitude = longitude - self.altitude = altitude - self.isoSpeedRating = isoSpeedRating - self.seriesTimerId = seriesTimerId - self.programId = programId - self.channelPrimaryImageTag = channelPrimaryImageTag - self.startDate = startDate - self.completionPercentage = completionPercentage - self.isRepeat = isRepeat - self.episodeTitle = episodeTitle - self.channelType = channelType - self.audio = audio - self.isMovie = isMovie - self.isSports = isSports - self.isSeries = isSeries - self.isLive = isLive - self.isNews = isNews - self.isKids = isKids - self.isPremiere = isPremiere - self.timerId = timerId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case serverId = "ServerId" - case id = "Id" - case etag = "Etag" - case sourceType = "SourceType" - case playlistItemId = "PlaylistItemId" - case dateCreated = "DateCreated" - case dateLastMediaAdded = "DateLastMediaAdded" - case extraType = "ExtraType" - case airsBeforeSeasonNumber = "AirsBeforeSeasonNumber" - case airsAfterSeasonNumber = "AirsAfterSeasonNumber" - case airsBeforeEpisodeNumber = "AirsBeforeEpisodeNumber" - case canDelete = "CanDelete" - case canDownload = "CanDownload" - case hasSubtitles = "HasSubtitles" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case preferredMetadataCountryCode = "PreferredMetadataCountryCode" - case supportsSync = "SupportsSync" - case container = "Container" - case sortName = "SortName" - case forcedSortName = "ForcedSortName" - case video3DFormat = "Video3DFormat" - case premiereDate = "PremiereDate" - case externalUrls = "ExternalUrls" - case mediaSources = "MediaSources" - case criticRating = "CriticRating" - case productionLocations = "ProductionLocations" - case path = "Path" - case enableMediaSourceDisplay = "EnableMediaSourceDisplay" - case officialRating = "OfficialRating" - case customRating = "CustomRating" - case channelId = "ChannelId" - case channelName = "ChannelName" - case overview = "Overview" - case taglines = "Taglines" - case genres = "Genres" - case communityRating = "CommunityRating" - case cumulativeRunTimeTicks = "CumulativeRunTimeTicks" - case runTimeTicks = "RunTimeTicks" - case playAccess = "PlayAccess" - case aspectRatio = "AspectRatio" - case productionYear = "ProductionYear" - case isPlaceHolder = "IsPlaceHolder" - case number = "Number" - case channelNumber = "ChannelNumber" - case indexNumber = "IndexNumber" - case indexNumberEnd = "IndexNumberEnd" - case parentIndexNumber = "ParentIndexNumber" - case remoteTrailers = "RemoteTrailers" - case providerIds = "ProviderIds" - case isHD = "IsHD" - case isFolder = "IsFolder" - case parentId = "ParentId" - case type = "Type" - case people = "People" - case studios = "Studios" - case genreItems = "GenreItems" - case parentLogoItemId = "ParentLogoItemId" - case parentBackdropItemId = "ParentBackdropItemId" - case parentBackdropImageTags = "ParentBackdropImageTags" - case localTrailerCount = "LocalTrailerCount" - case userData = "UserData" - case recursiveItemCount = "RecursiveItemCount" - case childCount = "ChildCount" - case seriesName = "SeriesName" - case seriesId = "SeriesId" - case seasonId = "SeasonId" - case specialFeatureCount = "SpecialFeatureCount" - case displayPreferencesId = "DisplayPreferencesId" - case status = "Status" - case airTime = "AirTime" - case airDays = "AirDays" - case tags = "Tags" - case primaryImageAspectRatio = "PrimaryImageAspectRatio" - case artists = "Artists" - case artistItems = "ArtistItems" - case album = "Album" - case collectionType = "CollectionType" - case displayOrder = "DisplayOrder" - case albumId = "AlbumId" - case albumPrimaryImageTag = "AlbumPrimaryImageTag" - case seriesPrimaryImageTag = "SeriesPrimaryImageTag" - case albumArtist = "AlbumArtist" - case albumArtists = "AlbumArtists" - case seasonName = "SeasonName" - case mediaStreams = "MediaStreams" - case videoType = "VideoType" - case partCount = "PartCount" - case mediaSourceCount = "MediaSourceCount" - case imageTags = "ImageTags" - case backdropImageTags = "BackdropImageTags" - case screenshotImageTags = "ScreenshotImageTags" - case parentLogoImageTag = "ParentLogoImageTag" - case parentArtItemId = "ParentArtItemId" - case parentArtImageTag = "ParentArtImageTag" - case seriesThumbImageTag = "SeriesThumbImageTag" - case imageBlurHashes = "ImageBlurHashes" - case seriesStudio = "SeriesStudio" - case parentThumbItemId = "ParentThumbItemId" - case parentThumbImageTag = "ParentThumbImageTag" - case parentPrimaryImageItemId = "ParentPrimaryImageItemId" - case parentPrimaryImageTag = "ParentPrimaryImageTag" - case chapters = "Chapters" - case locationType = "LocationType" - case isoType = "IsoType" - case mediaType = "MediaType" - case endDate = "EndDate" - case lockedFields = "LockedFields" - case trailerCount = "TrailerCount" - case movieCount = "MovieCount" - case seriesCount = "SeriesCount" - case programCount = "ProgramCount" - case episodeCount = "EpisodeCount" - case songCount = "SongCount" - case albumCount = "AlbumCount" - case artistCount = "ArtistCount" - case musicVideoCount = "MusicVideoCount" - case lockData = "LockData" - case width = "Width" - case height = "Height" - case cameraMake = "CameraMake" - case cameraModel = "CameraModel" - case software = "Software" - case exposureTime = "ExposureTime" - case focalLength = "FocalLength" - case imageOrientation = "ImageOrientation" - case aperture = "Aperture" - case shutterSpeed = "ShutterSpeed" - case latitude = "Latitude" - case longitude = "Longitude" - case altitude = "Altitude" - case isoSpeedRating = "IsoSpeedRating" - case seriesTimerId = "SeriesTimerId" - case programId = "ProgramId" - case channelPrimaryImageTag = "ChannelPrimaryImageTag" - case startDate = "StartDate" - case completionPercentage = "CompletionPercentage" - case isRepeat = "IsRepeat" - case episodeTitle = "EpisodeTitle" - case channelType = "ChannelType" - case audio = "Audio" - case isMovie = "IsMovie" - case isSports = "IsSports" - case isSeries = "IsSeries" - case isLive = "IsLive" - case isNews = "IsNews" - case isKids = "IsKids" - case isPremiere = "IsPremiere" - case timerId = "TimerId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(etag, forKey: .etag) - try encoderContainer.encodeIfPresent(sourceType, forKey: .sourceType) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(dateCreated, forKey: .dateCreated) - try encoderContainer.encodeIfPresent(dateLastMediaAdded, forKey: .dateLastMediaAdded) - try encoderContainer.encodeIfPresent(extraType, forKey: .extraType) - try encoderContainer.encodeIfPresent(airsBeforeSeasonNumber, forKey: .airsBeforeSeasonNumber) - try encoderContainer.encodeIfPresent(airsAfterSeasonNumber, forKey: .airsAfterSeasonNumber) - try encoderContainer.encodeIfPresent(airsBeforeEpisodeNumber, forKey: .airsBeforeEpisodeNumber) - try encoderContainer.encodeIfPresent(canDelete, forKey: .canDelete) - try encoderContainer.encodeIfPresent(canDownload, forKey: .canDownload) - try encoderContainer.encodeIfPresent(hasSubtitles, forKey: .hasSubtitles) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(preferredMetadataCountryCode, forKey: .preferredMetadataCountryCode) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(sortName, forKey: .sortName) - try encoderContainer.encodeIfPresent(forcedSortName, forKey: .forcedSortName) - try encoderContainer.encodeIfPresent(video3DFormat, forKey: .video3DFormat) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(externalUrls, forKey: .externalUrls) - try encoderContainer.encodeIfPresent(mediaSources, forKey: .mediaSources) - try encoderContainer.encodeIfPresent(criticRating, forKey: .criticRating) - try encoderContainer.encodeIfPresent(productionLocations, forKey: .productionLocations) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(enableMediaSourceDisplay, forKey: .enableMediaSourceDisplay) - try encoderContainer.encodeIfPresent(officialRating, forKey: .officialRating) - try encoderContainer.encodeIfPresent(customRating, forKey: .customRating) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(taglines, forKey: .taglines) - try encoderContainer.encodeIfPresent(genres, forKey: .genres) - try encoderContainer.encodeIfPresent(communityRating, forKey: .communityRating) - try encoderContainer.encodeIfPresent(cumulativeRunTimeTicks, forKey: .cumulativeRunTimeTicks) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(playAccess, forKey: .playAccess) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(productionYear, forKey: .productionYear) - try encoderContainer.encodeIfPresent(isPlaceHolder, forKey: .isPlaceHolder) - try encoderContainer.encodeIfPresent(number, forKey: .number) - try encoderContainer.encodeIfPresent(channelNumber, forKey: .channelNumber) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(indexNumberEnd, forKey: .indexNumberEnd) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(remoteTrailers, forKey: .remoteTrailers) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(isHD, forKey: .isHD) - try encoderContainer.encodeIfPresent(isFolder, forKey: .isFolder) - try encoderContainer.encodeIfPresent(parentId, forKey: .parentId) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(people, forKey: .people) - try encoderContainer.encodeIfPresent(studios, forKey: .studios) - try encoderContainer.encodeIfPresent(genreItems, forKey: .genreItems) - try encoderContainer.encodeIfPresent(parentLogoItemId, forKey: .parentLogoItemId) - try encoderContainer.encodeIfPresent(parentBackdropItemId, forKey: .parentBackdropItemId) - try encoderContainer.encodeIfPresent(parentBackdropImageTags, forKey: .parentBackdropImageTags) - try encoderContainer.encodeIfPresent(localTrailerCount, forKey: .localTrailerCount) - try encoderContainer.encodeIfPresent(userData, forKey: .userData) - try encoderContainer.encodeIfPresent(recursiveItemCount, forKey: .recursiveItemCount) - try encoderContainer.encodeIfPresent(childCount, forKey: .childCount) - try encoderContainer.encodeIfPresent(seriesName, forKey: .seriesName) - try encoderContainer.encodeIfPresent(seriesId, forKey: .seriesId) - try encoderContainer.encodeIfPresent(seasonId, forKey: .seasonId) - try encoderContainer.encodeIfPresent(specialFeatureCount, forKey: .specialFeatureCount) - try encoderContainer.encodeIfPresent(displayPreferencesId, forKey: .displayPreferencesId) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(airTime, forKey: .airTime) - try encoderContainer.encodeIfPresent(airDays, forKey: .airDays) - try encoderContainer.encodeIfPresent(tags, forKey: .tags) - try encoderContainer.encodeIfPresent(primaryImageAspectRatio, forKey: .primaryImageAspectRatio) - try encoderContainer.encodeIfPresent(artists, forKey: .artists) - try encoderContainer.encodeIfPresent(artistItems, forKey: .artistItems) - try encoderContainer.encodeIfPresent(album, forKey: .album) - try encoderContainer.encodeIfPresent(collectionType, forKey: .collectionType) - try encoderContainer.encodeIfPresent(displayOrder, forKey: .displayOrder) - try encoderContainer.encodeIfPresent(albumId, forKey: .albumId) - try encoderContainer.encodeIfPresent(albumPrimaryImageTag, forKey: .albumPrimaryImageTag) - try encoderContainer.encodeIfPresent(seriesPrimaryImageTag, forKey: .seriesPrimaryImageTag) - try encoderContainer.encodeIfPresent(albumArtist, forKey: .albumArtist) - try encoderContainer.encodeIfPresent(albumArtists, forKey: .albumArtists) - try encoderContainer.encodeIfPresent(seasonName, forKey: .seasonName) - try encoderContainer.encodeIfPresent(mediaStreams, forKey: .mediaStreams) - try encoderContainer.encodeIfPresent(videoType, forKey: .videoType) - try encoderContainer.encodeIfPresent(partCount, forKey: .partCount) - try encoderContainer.encodeIfPresent(mediaSourceCount, forKey: .mediaSourceCount) - try encoderContainer.encodeIfPresent(imageTags, forKey: .imageTags) - try encoderContainer.encodeIfPresent(backdropImageTags, forKey: .backdropImageTags) - try encoderContainer.encodeIfPresent(screenshotImageTags, forKey: .screenshotImageTags) - try encoderContainer.encodeIfPresent(parentLogoImageTag, forKey: .parentLogoImageTag) - try encoderContainer.encodeIfPresent(parentArtItemId, forKey: .parentArtItemId) - try encoderContainer.encodeIfPresent(parentArtImageTag, forKey: .parentArtImageTag) - try encoderContainer.encodeIfPresent(seriesThumbImageTag, forKey: .seriesThumbImageTag) - try encoderContainer.encodeIfPresent(imageBlurHashes, forKey: .imageBlurHashes) - try encoderContainer.encodeIfPresent(seriesStudio, forKey: .seriesStudio) - try encoderContainer.encodeIfPresent(parentThumbItemId, forKey: .parentThumbItemId) - try encoderContainer.encodeIfPresent(parentThumbImageTag, forKey: .parentThumbImageTag) - try encoderContainer.encodeIfPresent(parentPrimaryImageItemId, forKey: .parentPrimaryImageItemId) - try encoderContainer.encodeIfPresent(parentPrimaryImageTag, forKey: .parentPrimaryImageTag) - try encoderContainer.encodeIfPresent(chapters, forKey: .chapters) - try encoderContainer.encodeIfPresent(locationType, forKey: .locationType) - try encoderContainer.encodeIfPresent(isoType, forKey: .isoType) - try encoderContainer.encodeIfPresent(mediaType, forKey: .mediaType) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(lockedFields, forKey: .lockedFields) - try encoderContainer.encodeIfPresent(trailerCount, forKey: .trailerCount) - try encoderContainer.encodeIfPresent(movieCount, forKey: .movieCount) - try encoderContainer.encodeIfPresent(seriesCount, forKey: .seriesCount) - try encoderContainer.encodeIfPresent(programCount, forKey: .programCount) - try encoderContainer.encodeIfPresent(episodeCount, forKey: .episodeCount) - try encoderContainer.encodeIfPresent(songCount, forKey: .songCount) - try encoderContainer.encodeIfPresent(albumCount, forKey: .albumCount) - try encoderContainer.encodeIfPresent(artistCount, forKey: .artistCount) - try encoderContainer.encodeIfPresent(musicVideoCount, forKey: .musicVideoCount) - try encoderContainer.encodeIfPresent(lockData, forKey: .lockData) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(cameraMake, forKey: .cameraMake) - try encoderContainer.encodeIfPresent(cameraModel, forKey: .cameraModel) - try encoderContainer.encodeIfPresent(software, forKey: .software) - try encoderContainer.encodeIfPresent(exposureTime, forKey: .exposureTime) - try encoderContainer.encodeIfPresent(focalLength, forKey: .focalLength) - try encoderContainer.encodeIfPresent(imageOrientation, forKey: .imageOrientation) - try encoderContainer.encodeIfPresent(aperture, forKey: .aperture) - try encoderContainer.encodeIfPresent(shutterSpeed, forKey: .shutterSpeed) - try encoderContainer.encodeIfPresent(latitude, forKey: .latitude) - try encoderContainer.encodeIfPresent(longitude, forKey: .longitude) - try encoderContainer.encodeIfPresent(altitude, forKey: .altitude) - try encoderContainer.encodeIfPresent(isoSpeedRating, forKey: .isoSpeedRating) - try encoderContainer.encodeIfPresent(seriesTimerId, forKey: .seriesTimerId) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - try encoderContainer.encodeIfPresent(channelPrimaryImageTag, forKey: .channelPrimaryImageTag) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(completionPercentage, forKey: .completionPercentage) - try encoderContainer.encodeIfPresent(isRepeat, forKey: .isRepeat) - try encoderContainer.encodeIfPresent(episodeTitle, forKey: .episodeTitle) - try encoderContainer.encodeIfPresent(channelType, forKey: .channelType) - try encoderContainer.encodeIfPresent(audio, forKey: .audio) - try encoderContainer.encodeIfPresent(isMovie, forKey: .isMovie) - try encoderContainer.encodeIfPresent(isSports, forKey: .isSports) - try encoderContainer.encodeIfPresent(isSeries, forKey: .isSeries) - try encoderContainer.encodeIfPresent(isLive, forKey: .isLive) - try encoderContainer.encodeIfPresent(isNews, forKey: .isNews) - try encoderContainer.encodeIfPresent(isKids, forKey: .isKids) - try encoderContainer.encodeIfPresent(isPremiere, forKey: .isPremiere) - try encoderContainer.encodeIfPresent(timerId, forKey: .timerId) - } -} diff --git a/Sources/JellyfinAPI/Models/SessionInfoPlayState.swift b/Sources/JellyfinAPI/Models/SessionInfoPlayState.swift deleted file mode 100644 index 6e62ba841..000000000 --- a/Sources/JellyfinAPI/Models/SessionInfoPlayState.swift +++ /dev/null @@ -1,82 +0,0 @@ -// -// SessionInfoPlayState.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SessionInfoPlayState: Codable, JSONEncodable, Hashable { - - /** Gets or sets the now playing position ticks. */ - public var positionTicks: Int64? - /** Gets or sets a value indicating whether this instance can seek. */ - public var canSeek: Bool? - /** Gets or sets a value indicating whether this instance is paused. */ - public var isPaused: Bool? - /** Gets or sets a value indicating whether this instance is muted. */ - public var isMuted: Bool? - /** Gets or sets the volume level. */ - public var volumeLevel: Int? - /** Gets or sets the index of the now playing audio stream. */ - public var audioStreamIndex: Int? - /** Gets or sets the index of the now playing subtitle stream. */ - public var subtitleStreamIndex: Int? - /** Gets or sets the now playing media version identifier. */ - public var mediaSourceId: String? - /** Gets or sets the play method. */ - public var playMethod: PlayMethod? - /** Gets or sets the repeat mode. */ - public var repeatMode: RepeatMode? - /** Gets or sets the now playing live stream identifier. */ - public var liveStreamId: String? - - public init(positionTicks: Int64? = nil, canSeek: Bool? = nil, isPaused: Bool? = nil, isMuted: Bool? = nil, volumeLevel: Int? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, mediaSourceId: String? = nil, playMethod: PlayMethod? = nil, repeatMode: RepeatMode? = nil, liveStreamId: String? = nil) { - self.positionTicks = positionTicks - self.canSeek = canSeek - self.isPaused = isPaused - self.isMuted = isMuted - self.volumeLevel = volumeLevel - self.audioStreamIndex = audioStreamIndex - self.subtitleStreamIndex = subtitleStreamIndex - self.mediaSourceId = mediaSourceId - self.playMethod = playMethod - self.repeatMode = repeatMode - self.liveStreamId = liveStreamId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case positionTicks = "PositionTicks" - case canSeek = "CanSeek" - case isPaused = "IsPaused" - case isMuted = "IsMuted" - case volumeLevel = "VolumeLevel" - case audioStreamIndex = "AudioStreamIndex" - case subtitleStreamIndex = "SubtitleStreamIndex" - case mediaSourceId = "MediaSourceId" - case playMethod = "PlayMethod" - case repeatMode = "RepeatMode" - case liveStreamId = "LiveStreamId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(canSeek, forKey: .canSeek) - try encoderContainer.encodeIfPresent(isPaused, forKey: .isPaused) - try encoderContainer.encodeIfPresent(isMuted, forKey: .isMuted) - try encoderContainer.encodeIfPresent(volumeLevel, forKey: .volumeLevel) - try encoderContainer.encodeIfPresent(audioStreamIndex, forKey: .audioStreamIndex) - try encoderContainer.encodeIfPresent(subtitleStreamIndex, forKey: .subtitleStreamIndex) - try encoderContainer.encodeIfPresent(mediaSourceId, forKey: .mediaSourceId) - try encoderContainer.encodeIfPresent(playMethod, forKey: .playMethod) - try encoderContainer.encodeIfPresent(repeatMode, forKey: .repeatMode) - try encoderContainer.encodeIfPresent(liveStreamId, forKey: .liveStreamId) - } -} diff --git a/Sources/JellyfinAPI/Models/SessionInfoTranscodingInfo.swift b/Sources/JellyfinAPI/Models/SessionInfoTranscodingInfo.swift deleted file mode 100644 index 0bd672f84..000000000 --- a/Sources/JellyfinAPI/Models/SessionInfoTranscodingInfo.swift +++ /dev/null @@ -1,105 +0,0 @@ -// -// SessionInfoTranscodingInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SessionInfoTranscodingInfo: Codable, JSONEncodable, Hashable { - - public enum TranscodeReasons: String, Codable, CaseIterable { - case containerNotSupported = "ContainerNotSupported" - case videoCodecNotSupported = "VideoCodecNotSupported" - case audioCodecNotSupported = "AudioCodecNotSupported" - case subtitleCodecNotSupported = "SubtitleCodecNotSupported" - case audioIsExternal = "AudioIsExternal" - case secondaryAudioNotSupported = "SecondaryAudioNotSupported" - case videoProfileNotSupported = "VideoProfileNotSupported" - case videoLevelNotSupported = "VideoLevelNotSupported" - case videoResolutionNotSupported = "VideoResolutionNotSupported" - case videoBitDepthNotSupported = "VideoBitDepthNotSupported" - case videoFramerateNotSupported = "VideoFramerateNotSupported" - case refFramesNotSupported = "RefFramesNotSupported" - case anamorphicVideoNotSupported = "AnamorphicVideoNotSupported" - case interlacedVideoNotSupported = "InterlacedVideoNotSupported" - case audioChannelsNotSupported = "AudioChannelsNotSupported" - case audioProfileNotSupported = "AudioProfileNotSupported" - case audioSampleRateNotSupported = "AudioSampleRateNotSupported" - case audioBitDepthNotSupported = "AudioBitDepthNotSupported" - case containerBitrateExceedsLimit = "ContainerBitrateExceedsLimit" - case videoBitrateNotSupported = "VideoBitrateNotSupported" - case audioBitrateNotSupported = "AudioBitrateNotSupported" - case unknownVideoStreamInfo = "UnknownVideoStreamInfo" - case unknownAudioStreamInfo = "UnknownAudioStreamInfo" - case directPlayError = "DirectPlayError" - } - public var audioCodec: String? - public var videoCodec: String? - public var container: String? - public var isVideoDirect: Bool? - public var isAudioDirect: Bool? - public var bitrate: Int? - public var framerate: Float? - public var completionPercentage: Double? - public var width: Int? - public var height: Int? - public var audioChannels: Int? - public var hardwareAccelerationType: HardwareEncodingType? - public var transcodeReasons: TranscodeReasons? - - public init(audioCodec: String? = nil, videoCodec: String? = nil, container: String? = nil, isVideoDirect: Bool? = nil, isAudioDirect: Bool? = nil, bitrate: Int? = nil, framerate: Float? = nil, completionPercentage: Double? = nil, width: Int? = nil, height: Int? = nil, audioChannels: Int? = nil, hardwareAccelerationType: HardwareEncodingType? = nil, transcodeReasons: TranscodeReasons? = nil) { - self.audioCodec = audioCodec - self.videoCodec = videoCodec - self.container = container - self.isVideoDirect = isVideoDirect - self.isAudioDirect = isAudioDirect - self.bitrate = bitrate - self.framerate = framerate - self.completionPercentage = completionPercentage - self.width = width - self.height = height - self.audioChannels = audioChannels - self.hardwareAccelerationType = hardwareAccelerationType - self.transcodeReasons = transcodeReasons - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case audioCodec = "AudioCodec" - case videoCodec = "VideoCodec" - case container = "Container" - case isVideoDirect = "IsVideoDirect" - case isAudioDirect = "IsAudioDirect" - case bitrate = "Bitrate" - case framerate = "Framerate" - case completionPercentage = "CompletionPercentage" - case width = "Width" - case height = "Height" - case audioChannels = "AudioChannels" - case hardwareAccelerationType = "HardwareAccelerationType" - case transcodeReasons = "TranscodeReasons" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(audioCodec, forKey: .audioCodec) - try encoderContainer.encodeIfPresent(videoCodec, forKey: .videoCodec) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(isVideoDirect, forKey: .isVideoDirect) - try encoderContainer.encodeIfPresent(isAudioDirect, forKey: .isAudioDirect) - try encoderContainer.encodeIfPresent(bitrate, forKey: .bitrate) - try encoderContainer.encodeIfPresent(framerate, forKey: .framerate) - try encoderContainer.encodeIfPresent(completionPercentage, forKey: .completionPercentage) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(audioChannels, forKey: .audioChannels) - try encoderContainer.encodeIfPresent(hardwareAccelerationType, forKey: .hardwareAccelerationType) - try encoderContainer.encodeIfPresent(transcodeReasons, forKey: .transcodeReasons) - } -} diff --git a/Sources/JellyfinAPI/Models/SessionUserInfo.swift b/Sources/JellyfinAPI/Models/SessionUserInfo.swift deleted file mode 100644 index 8a8c60962..000000000 --- a/Sources/JellyfinAPI/Models/SessionUserInfo.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// SessionUserInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SessionUserInfo. */ -public struct SessionUserInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the user identifier. */ - public var userId: String? - /** Gets or sets the name of the user. */ - public var userName: String? - - public init(userId: String? = nil, userName: String? = nil) { - self.userId = userId - self.userName = userName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case userId = "UserId" - case userName = "UserName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(userName, forKey: .userName) - } -} diff --git a/Sources/JellyfinAPI/Models/SetChannelMappingDto.swift b/Sources/JellyfinAPI/Models/SetChannelMappingDto.swift deleted file mode 100644 index 625d03608..000000000 --- a/Sources/JellyfinAPI/Models/SetChannelMappingDto.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// SetChannelMappingDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Set channel mapping dto. */ -public struct SetChannelMappingDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the provider id. */ - public var providerId: String - /** Gets or sets the tuner channel id. */ - public var tunerChannelId: String - /** Gets or sets the provider channel id. */ - public var providerChannelId: String - - public init(providerId: String, tunerChannelId: String, providerChannelId: String) { - self.providerId = providerId - self.tunerChannelId = tunerChannelId - self.providerChannelId = providerChannelId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case providerId = "ProviderId" - case tunerChannelId = "TunerChannelId" - case providerChannelId = "ProviderChannelId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(providerId, forKey: .providerId) - try encoderContainer.encode(tunerChannelId, forKey: .tunerChannelId) - try encoderContainer.encode(providerChannelId, forKey: .providerChannelId) - } -} diff --git a/Sources/JellyfinAPI/Models/SetChannelMappingRequest.swift b/Sources/JellyfinAPI/Models/SetChannelMappingRequest.swift deleted file mode 100644 index dc03a319e..000000000 --- a/Sources/JellyfinAPI/Models/SetChannelMappingRequest.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// SetChannelMappingRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Set channel mapping dto. */ -public struct SetChannelMappingRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the provider id. */ - public var providerId: String - /** Gets or sets the tuner channel id. */ - public var tunerChannelId: String - /** Gets or sets the provider channel id. */ - public var providerChannelId: String - - public init(providerId: String, tunerChannelId: String, providerChannelId: String) { - self.providerId = providerId - self.tunerChannelId = tunerChannelId - self.providerChannelId = providerChannelId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case providerId = "ProviderId" - case tunerChannelId = "TunerChannelId" - case providerChannelId = "ProviderChannelId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(providerId, forKey: .providerId) - try encoderContainer.encode(tunerChannelId, forKey: .tunerChannelId) - try encoderContainer.encode(providerChannelId, forKey: .providerChannelId) - } -} diff --git a/Sources/JellyfinAPI/Models/SetPlaylistItemRequestDto.swift b/Sources/JellyfinAPI/Models/SetPlaylistItemRequestDto.swift deleted file mode 100644 index a9535ebc0..000000000 --- a/Sources/JellyfinAPI/Models/SetPlaylistItemRequestDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SetPlaylistItemRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SetPlaylistItemRequestDto. */ -public struct SetPlaylistItemRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playlist identifier of the playing item. */ - public var playlistItemId: String? - - public init(playlistItemId: String? = nil) { - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/SetRemoteAccessRequest.swift b/Sources/JellyfinAPI/Models/SetRemoteAccessRequest.swift deleted file mode 100644 index d756c0139..000000000 --- a/Sources/JellyfinAPI/Models/SetRemoteAccessRequest.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// SetRemoteAccessRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Startup remote access dto. */ -public struct SetRemoteAccessRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether enable remote access. */ - public var enableRemoteAccess: Bool - /** Gets or sets a value indicating whether enable automatic port mapping. */ - public var enableAutomaticPortMapping: Bool - - public init(enableRemoteAccess: Bool, enableAutomaticPortMapping: Bool) { - self.enableRemoteAccess = enableRemoteAccess - self.enableAutomaticPortMapping = enableAutomaticPortMapping - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case enableRemoteAccess = "EnableRemoteAccess" - case enableAutomaticPortMapping = "EnableAutomaticPortMapping" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(enableRemoteAccess, forKey: .enableRemoteAccess) - try encoderContainer.encode(enableAutomaticPortMapping, forKey: .enableAutomaticPortMapping) - } -} diff --git a/Sources/JellyfinAPI/Models/SetRepeatModeRequestDto.swift b/Sources/JellyfinAPI/Models/SetRepeatModeRequestDto.swift deleted file mode 100644 index d79005d17..000000000 --- a/Sources/JellyfinAPI/Models/SetRepeatModeRequestDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SetRepeatModeRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SetRepeatModeRequestDto. */ -public struct SetRepeatModeRequestDto: Codable, JSONEncodable, Hashable { - - /** Enum GroupRepeatMode. */ - public var mode: GroupRepeatMode? - - public init(mode: GroupRepeatMode? = nil) { - self.mode = mode - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case mode = "Mode" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(mode, forKey: .mode) - } -} diff --git a/Sources/JellyfinAPI/Models/SetShuffleModeRequestDto.swift b/Sources/JellyfinAPI/Models/SetShuffleModeRequestDto.swift deleted file mode 100644 index 64a451c85..000000000 --- a/Sources/JellyfinAPI/Models/SetShuffleModeRequestDto.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SetShuffleModeRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SetShuffleModeRequestDto. */ -public struct SetShuffleModeRequestDto: Codable, JSONEncodable, Hashable { - - /** Enum GroupShuffleMode. */ - public var mode: GroupShuffleMode? - - public init(mode: GroupShuffleMode? = nil) { - self.mode = mode - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case mode = "Mode" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(mode, forKey: .mode) - } -} diff --git a/Sources/JellyfinAPI/Models/SongInfo.swift b/Sources/JellyfinAPI/Models/SongInfo.swift deleted file mode 100644 index a84ff6e4c..000000000 --- a/Sources/JellyfinAPI/Models/SongInfo.swift +++ /dev/null @@ -1,90 +0,0 @@ -// -// SongInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SongInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - public var albumArtists: [String]? - public var album: String? - public var artists: [String]? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil, albumArtists: [String]? = nil, album: String? = nil, artists: [String]? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - self.albumArtists = albumArtists - self.album = album - self.artists = artists - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - case albumArtists = "AlbumArtists" - case album = "Album" - case artists = "Artists" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - try encoderContainer.encodeIfPresent(albumArtists, forKey: .albumArtists) - try encoderContainer.encodeIfPresent(album, forKey: .album) - try encoderContainer.encodeIfPresent(artists, forKey: .artists) - } -} diff --git a/Sources/JellyfinAPI/Models/SortOrder.swift b/Sources/JellyfinAPI/Models/SortOrder.swift deleted file mode 100644 index 42101dbc1..000000000 --- a/Sources/JellyfinAPI/Models/SortOrder.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// SortOrder.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** An enum representing the sorting order. */ -public enum SortOrder: String, Codable, CaseIterable { - case ascending = "Ascending" - case descending = "Descending" -} diff --git a/Sources/JellyfinAPI/Models/SpecialViewOptionDto.swift b/Sources/JellyfinAPI/Models/SpecialViewOptionDto.swift deleted file mode 100644 index 34eadb618..000000000 --- a/Sources/JellyfinAPI/Models/SpecialViewOptionDto.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// SpecialViewOptionDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Special view option dto. */ -public struct SpecialViewOptionDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets view option name. */ - public var name: String? - /** Gets or sets view option id. */ - public var id: String? - - public init(name: String? = nil, id: String? = nil) { - self.name = name - self.id = id - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case id = "Id" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(id, forKey: .id) - } -} diff --git a/Sources/JellyfinAPI/Models/StartupConfigurationDto.swift b/Sources/JellyfinAPI/Models/StartupConfigurationDto.swift deleted file mode 100644 index 9f9aab251..000000000 --- a/Sources/JellyfinAPI/Models/StartupConfigurationDto.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// StartupConfigurationDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The startup configuration DTO. */ -public struct StartupConfigurationDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets UI language culture. */ - public var uICulture: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the preferred language for the metadata. */ - public var preferredMetadataLanguage: String? - - public init(uICulture: String? = nil, metadataCountryCode: String? = nil, preferredMetadataLanguage: String? = nil) { - self.uICulture = uICulture - self.metadataCountryCode = metadataCountryCode - self.preferredMetadataLanguage = preferredMetadataLanguage - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case uICulture = "UICulture" - case metadataCountryCode = "MetadataCountryCode" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(uICulture, forKey: .uICulture) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - } -} diff --git a/Sources/JellyfinAPI/Models/StartupRemoteAccessDto.swift b/Sources/JellyfinAPI/Models/StartupRemoteAccessDto.swift deleted file mode 100644 index 91f7ba872..000000000 --- a/Sources/JellyfinAPI/Models/StartupRemoteAccessDto.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// StartupRemoteAccessDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Startup remote access dto. */ -public struct StartupRemoteAccessDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether enable remote access. */ - public var enableRemoteAccess: Bool - /** Gets or sets a value indicating whether enable automatic port mapping. */ - public var enableAutomaticPortMapping: Bool - - public init(enableRemoteAccess: Bool, enableAutomaticPortMapping: Bool) { - self.enableRemoteAccess = enableRemoteAccess - self.enableAutomaticPortMapping = enableAutomaticPortMapping - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case enableRemoteAccess = "EnableRemoteAccess" - case enableAutomaticPortMapping = "EnableAutomaticPortMapping" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(enableRemoteAccess, forKey: .enableRemoteAccess) - try encoderContainer.encode(enableAutomaticPortMapping, forKey: .enableAutomaticPortMapping) - } -} diff --git a/Sources/JellyfinAPI/Models/StartupUserDto.swift b/Sources/JellyfinAPI/Models/StartupUserDto.swift deleted file mode 100644 index 3d0d91ecb..000000000 --- a/Sources/JellyfinAPI/Models/StartupUserDto.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// StartupUserDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The startup user DTO. */ -public struct StartupUserDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the username. */ - public var name: String? - /** Gets or sets the user's password. */ - public var password: String? - - public init(name: String? = nil, password: String? = nil) { - self.name = name - self.password = password - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case password = "Password" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(password, forKey: .password) - } -} diff --git a/Sources/JellyfinAPI/Models/SubtitleDeliveryMethod.swift b/Sources/JellyfinAPI/Models/SubtitleDeliveryMethod.swift deleted file mode 100644 index 19158e536..000000000 --- a/Sources/JellyfinAPI/Models/SubtitleDeliveryMethod.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// SubtitleDeliveryMethod.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Delivery method to use during playback of a specific subtitle format. */ -public enum SubtitleDeliveryMethod: String, Codable, CaseIterable { - case encode = "Encode" - case embed = "Embed" - case external = "External" - case hls = "Hls" - case drop = "Drop" -} diff --git a/Sources/JellyfinAPI/Models/SubtitleOptions.swift b/Sources/JellyfinAPI/Models/SubtitleOptions.swift deleted file mode 100644 index 3b8a6e71d..000000000 --- a/Sources/JellyfinAPI/Models/SubtitleOptions.swift +++ /dev/null @@ -1,63 +0,0 @@ -// -// SubtitleOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SubtitleOptions: Codable, JSONEncodable, Hashable { - - public var skipIfEmbeddedSubtitlesPresent: Bool? - public var skipIfAudioTrackMatches: Bool? - public var downloadLanguages: [String]? - public var downloadMovieSubtitles: Bool? - public var downloadEpisodeSubtitles: Bool? - public var openSubtitlesUsername: String? - public var openSubtitlesPasswordHash: String? - public var isOpenSubtitleVipAccount: Bool? - public var requirePerfectMatch: Bool? - - public init(skipIfEmbeddedSubtitlesPresent: Bool? = nil, skipIfAudioTrackMatches: Bool? = nil, downloadLanguages: [String]? = nil, downloadMovieSubtitles: Bool? = nil, downloadEpisodeSubtitles: Bool? = nil, openSubtitlesUsername: String? = nil, openSubtitlesPasswordHash: String? = nil, isOpenSubtitleVipAccount: Bool? = nil, requirePerfectMatch: Bool? = nil) { - self.skipIfEmbeddedSubtitlesPresent = skipIfEmbeddedSubtitlesPresent - self.skipIfAudioTrackMatches = skipIfAudioTrackMatches - self.downloadLanguages = downloadLanguages - self.downloadMovieSubtitles = downloadMovieSubtitles - self.downloadEpisodeSubtitles = downloadEpisodeSubtitles - self.openSubtitlesUsername = openSubtitlesUsername - self.openSubtitlesPasswordHash = openSubtitlesPasswordHash - self.isOpenSubtitleVipAccount = isOpenSubtitleVipAccount - self.requirePerfectMatch = requirePerfectMatch - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case skipIfEmbeddedSubtitlesPresent = "SkipIfEmbeddedSubtitlesPresent" - case skipIfAudioTrackMatches = "SkipIfAudioTrackMatches" - case downloadLanguages = "DownloadLanguages" - case downloadMovieSubtitles = "DownloadMovieSubtitles" - case downloadEpisodeSubtitles = "DownloadEpisodeSubtitles" - case openSubtitlesUsername = "OpenSubtitlesUsername" - case openSubtitlesPasswordHash = "OpenSubtitlesPasswordHash" - case isOpenSubtitleVipAccount = "IsOpenSubtitleVipAccount" - case requirePerfectMatch = "RequirePerfectMatch" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(skipIfEmbeddedSubtitlesPresent, forKey: .skipIfEmbeddedSubtitlesPresent) - try encoderContainer.encodeIfPresent(skipIfAudioTrackMatches, forKey: .skipIfAudioTrackMatches) - try encoderContainer.encodeIfPresent(downloadLanguages, forKey: .downloadLanguages) - try encoderContainer.encodeIfPresent(downloadMovieSubtitles, forKey: .downloadMovieSubtitles) - try encoderContainer.encodeIfPresent(downloadEpisodeSubtitles, forKey: .downloadEpisodeSubtitles) - try encoderContainer.encodeIfPresent(openSubtitlesUsername, forKey: .openSubtitlesUsername) - try encoderContainer.encodeIfPresent(openSubtitlesPasswordHash, forKey: .openSubtitlesPasswordHash) - try encoderContainer.encodeIfPresent(isOpenSubtitleVipAccount, forKey: .isOpenSubtitleVipAccount) - try encoderContainer.encodeIfPresent(requirePerfectMatch, forKey: .requirePerfectMatch) - } -} diff --git a/Sources/JellyfinAPI/Models/SubtitlePlaybackMode.swift b/Sources/JellyfinAPI/Models/SubtitlePlaybackMode.swift deleted file mode 100644 index 8afa5e68e..000000000 --- a/Sources/JellyfinAPI/Models/SubtitlePlaybackMode.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// SubtitlePlaybackMode.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** An enum representing a subtitle playback mode. */ -public enum SubtitlePlaybackMode: String, Codable, CaseIterable { - case _default = "Default" - case always = "Always" - case onlyForced = "OnlyForced" - case _none = "None" - case smart = "Smart" -} diff --git a/Sources/JellyfinAPI/Models/SubtitleProfile.swift b/Sources/JellyfinAPI/Models/SubtitleProfile.swift deleted file mode 100644 index dc1976014..000000000 --- a/Sources/JellyfinAPI/Models/SubtitleProfile.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// SubtitleProfile.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct SubtitleProfile: Codable, JSONEncodable, Hashable { - - public var format: String? - /** Delivery method to use during playback of a specific subtitle format. */ - public var method: SubtitleDeliveryMethod? - public var didlMode: String? - public var language: String? - public var container: String? - - public init(format: String? = nil, method: SubtitleDeliveryMethod? = nil, didlMode: String? = nil, language: String? = nil, container: String? = nil) { - self.format = format - self.method = method - self.didlMode = didlMode - self.language = language - self.container = container - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case format = "Format" - case method = "Method" - case didlMode = "DidlMode" - case language = "Language" - case container = "Container" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(format, forKey: .format) - try encoderContainer.encodeIfPresent(method, forKey: .method) - try encoderContainer.encodeIfPresent(didlMode, forKey: .didlMode) - try encoderContainer.encodeIfPresent(language, forKey: .language) - try encoderContainer.encodeIfPresent(container, forKey: .container) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayBufferingRequest.swift b/Sources/JellyfinAPI/Models/SyncPlayBufferingRequest.swift deleted file mode 100644 index a7158beaf..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayBufferingRequest.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// SyncPlayBufferingRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class BufferRequestDto. */ -public struct SyncPlayBufferingRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets when the request has been made by the client. */ - public var when: Date? - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - /** Gets or sets a value indicating whether the client playback is unpaused. */ - public var isPlaying: Bool? - /** Gets or sets the playlist item identifier of the playing item. */ - public var playlistItemId: String? - - public init(when: Date? = nil, positionTicks: Int64? = nil, isPlaying: Bool? = nil, playlistItemId: String? = nil) { - self.when = when - self.positionTicks = positionTicks - self.isPlaying = isPlaying - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case when = "When" - case positionTicks = "PositionTicks" - case isPlaying = "IsPlaying" - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(when, forKey: .when) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(isPlaying, forKey: .isPlaying) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayCreateGroupRequest.swift b/Sources/JellyfinAPI/Models/SyncPlayCreateGroupRequest.swift deleted file mode 100644 index 520f832fb..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayCreateGroupRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SyncPlayCreateGroupRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class NewGroupRequestDto. */ -public struct SyncPlayCreateGroupRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the group name. */ - public var groupName: String? - - public init(groupName: String? = nil) { - self.groupName = groupName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case groupName = "GroupName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(groupName, forKey: .groupName) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayJoinGroupRequest.swift b/Sources/JellyfinAPI/Models/SyncPlayJoinGroupRequest.swift deleted file mode 100644 index 577f439a1..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayJoinGroupRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SyncPlayJoinGroupRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class JoinGroupRequestDto. */ -public struct SyncPlayJoinGroupRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the group identifier. */ - public var groupId: String? - - public init(groupId: String? = nil) { - self.groupId = groupId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case groupId = "GroupId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(groupId, forKey: .groupId) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayMovePlaylistItemRequest.swift b/Sources/JellyfinAPI/Models/SyncPlayMovePlaylistItemRequest.swift deleted file mode 100644 index cdc14a278..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayMovePlaylistItemRequest.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// SyncPlayMovePlaylistItemRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class MovePlaylistItemRequestDto. */ -public struct SyncPlayMovePlaylistItemRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playlist identifier of the item. */ - public var playlistItemId: String? - /** Gets or sets the new position. */ - public var newIndex: Int? - - public init(playlistItemId: String? = nil, newIndex: Int? = nil) { - self.playlistItemId = playlistItemId - self.newIndex = newIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playlistItemId = "PlaylistItemId" - case newIndex = "NewIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(newIndex, forKey: .newIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayNextItemRequest.swift b/Sources/JellyfinAPI/Models/SyncPlayNextItemRequest.swift deleted file mode 100644 index 9086f65a5..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayNextItemRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SyncPlayNextItemRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class NextItemRequestDto. */ -public struct SyncPlayNextItemRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playing item identifier. */ - public var playlistItemId: String? - - public init(playlistItemId: String? = nil) { - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayPingRequest.swift b/Sources/JellyfinAPI/Models/SyncPlayPingRequest.swift deleted file mode 100644 index 0446e521d..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayPingRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SyncPlayPingRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PingRequestDto. */ -public struct SyncPlayPingRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the ping time. */ - public var ping: Int64? - - public init(ping: Int64? = nil) { - self.ping = ping - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case ping = "Ping" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(ping, forKey: .ping) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayPreviousItemRequest.swift b/Sources/JellyfinAPI/Models/SyncPlayPreviousItemRequest.swift deleted file mode 100644 index 03554a08b..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayPreviousItemRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SyncPlayPreviousItemRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PreviousItemRequestDto. */ -public struct SyncPlayPreviousItemRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playing item identifier. */ - public var playlistItemId: String? - - public init(playlistItemId: String? = nil) { - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayQueueRequest.swift b/Sources/JellyfinAPI/Models/SyncPlayQueueRequest.swift deleted file mode 100644 index ce6ef6bc1..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayQueueRequest.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// SyncPlayQueueRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class QueueRequestDto. */ -public struct SyncPlayQueueRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the items to enqueue. */ - public var itemIds: [String]? - /** Enum GroupQueueMode. */ - public var mode: GroupQueueMode? - - public init(itemIds: [String]? = nil, mode: GroupQueueMode? = nil) { - self.itemIds = itemIds - self.mode = mode - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case itemIds = "ItemIds" - case mode = "Mode" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(itemIds, forKey: .itemIds) - try encoderContainer.encodeIfPresent(mode, forKey: .mode) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayReadyRequest.swift b/Sources/JellyfinAPI/Models/SyncPlayReadyRequest.swift deleted file mode 100644 index 5ed48b269..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayReadyRequest.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// SyncPlayReadyRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class ReadyRequest. */ -public struct SyncPlayReadyRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets when the request has been made by the client. */ - public var when: Date? - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - /** Gets or sets a value indicating whether the client playback is unpaused. */ - public var isPlaying: Bool? - /** Gets or sets the playlist item identifier of the playing item. */ - public var playlistItemId: String? - - public init(when: Date? = nil, positionTicks: Int64? = nil, isPlaying: Bool? = nil, playlistItemId: String? = nil) { - self.when = when - self.positionTicks = positionTicks - self.isPlaying = isPlaying - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case when = "When" - case positionTicks = "PositionTicks" - case isPlaying = "IsPlaying" - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(when, forKey: .when) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - try encoderContainer.encodeIfPresent(isPlaying, forKey: .isPlaying) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayRemoveFromPlaylistRequest.swift b/Sources/JellyfinAPI/Models/SyncPlayRemoveFromPlaylistRequest.swift deleted file mode 100644 index e2c20b4f1..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayRemoveFromPlaylistRequest.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// SyncPlayRemoveFromPlaylistRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class RemoveFromPlaylistRequestDto. */ -public struct SyncPlayRemoveFromPlaylistRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist. */ - public var playlistItemIds: [String]? - /** Gets or sets a value indicating whether the entire playlist should be cleared. */ - public var clearPlaylist: Bool? - /** Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist. */ - public var clearPlayingItem: Bool? - - public init(playlistItemIds: [String]? = nil, clearPlaylist: Bool? = nil, clearPlayingItem: Bool? = nil) { - self.playlistItemIds = playlistItemIds - self.clearPlaylist = clearPlaylist - self.clearPlayingItem = clearPlayingItem - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playlistItemIds = "PlaylistItemIds" - case clearPlaylist = "ClearPlaylist" - case clearPlayingItem = "ClearPlayingItem" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playlistItemIds, forKey: .playlistItemIds) - try encoderContainer.encodeIfPresent(clearPlaylist, forKey: .clearPlaylist) - try encoderContainer.encodeIfPresent(clearPlayingItem, forKey: .clearPlayingItem) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlaySeekRequest.swift b/Sources/JellyfinAPI/Models/SyncPlaySeekRequest.swift deleted file mode 100644 index 05e8b5f15..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlaySeekRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SyncPlaySeekRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SeekRequestDto. */ -public struct SyncPlaySeekRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the position ticks. */ - public var positionTicks: Int64? - - public init(positionTicks: Int64? = nil) { - self.positionTicks = positionTicks - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case positionTicks = "PositionTicks" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(positionTicks, forKey: .positionTicks) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlaySetIgnoreWaitRequest.swift b/Sources/JellyfinAPI/Models/SyncPlaySetIgnoreWaitRequest.swift deleted file mode 100644 index 73a39af3a..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlaySetIgnoreWaitRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SyncPlaySetIgnoreWaitRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class IgnoreWaitRequestDto. */ -public struct SyncPlaySetIgnoreWaitRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether the client should be ignored. */ - public var ignoreWait: Bool? - - public init(ignoreWait: Bool? = nil) { - self.ignoreWait = ignoreWait - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case ignoreWait = "IgnoreWait" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(ignoreWait, forKey: .ignoreWait) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlaySetNewQueueRequest.swift b/Sources/JellyfinAPI/Models/SyncPlaySetNewQueueRequest.swift deleted file mode 100644 index 02adda0bd..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlaySetNewQueueRequest.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// SyncPlaySetNewQueueRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class PlayRequestDto. */ -public struct SyncPlaySetNewQueueRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playing queue. */ - public var playingQueue: [String]? - /** Gets or sets the position of the playing item in the queue. */ - public var playingItemPosition: Int? - /** Gets or sets the start position ticks. */ - public var startPositionTicks: Int64? - - public init(playingQueue: [String]? = nil, playingItemPosition: Int? = nil, startPositionTicks: Int64? = nil) { - self.playingQueue = playingQueue - self.playingItemPosition = playingItemPosition - self.startPositionTicks = startPositionTicks - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playingQueue = "PlayingQueue" - case playingItemPosition = "PlayingItemPosition" - case startPositionTicks = "StartPositionTicks" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playingQueue, forKey: .playingQueue) - try encoderContainer.encodeIfPresent(playingItemPosition, forKey: .playingItemPosition) - try encoderContainer.encodeIfPresent(startPositionTicks, forKey: .startPositionTicks) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlaySetPlaylistItemRequest.swift b/Sources/JellyfinAPI/Models/SyncPlaySetPlaylistItemRequest.swift deleted file mode 100644 index 4aab75666..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlaySetPlaylistItemRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SyncPlaySetPlaylistItemRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SetPlaylistItemRequestDto. */ -public struct SyncPlaySetPlaylistItemRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the playlist identifier of the playing item. */ - public var playlistItemId: String? - - public init(playlistItemId: String? = nil) { - self.playlistItemId = playlistItemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case playlistItemId = "PlaylistItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlaySetRepeatModeRequest.swift b/Sources/JellyfinAPI/Models/SyncPlaySetRepeatModeRequest.swift deleted file mode 100644 index a4cf2da4b..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlaySetRepeatModeRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SyncPlaySetRepeatModeRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SetRepeatModeRequestDto. */ -public struct SyncPlaySetRepeatModeRequest: Codable, JSONEncodable, Hashable { - - /** Enum GroupRepeatMode. */ - public var mode: GroupRepeatMode? - - public init(mode: GroupRepeatMode? = nil) { - self.mode = mode - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case mode = "Mode" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(mode, forKey: .mode) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlaySetShuffleModeRequest.swift b/Sources/JellyfinAPI/Models/SyncPlaySetShuffleModeRequest.swift deleted file mode 100644 index 3892c164b..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlaySetShuffleModeRequest.swift +++ /dev/null @@ -1,33 +0,0 @@ -// -// SyncPlaySetShuffleModeRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SetShuffleModeRequestDto. */ -public struct SyncPlaySetShuffleModeRequest: Codable, JSONEncodable, Hashable { - - /** Enum GroupShuffleMode. */ - public var mode: GroupShuffleMode? - - public init(mode: GroupShuffleMode? = nil) { - self.mode = mode - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case mode = "Mode" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(mode, forKey: .mode) - } -} diff --git a/Sources/JellyfinAPI/Models/SyncPlayUserAccessType.swift b/Sources/JellyfinAPI/Models/SyncPlayUserAccessType.swift deleted file mode 100644 index 502440d55..000000000 --- a/Sources/JellyfinAPI/Models/SyncPlayUserAccessType.swift +++ /dev/null @@ -1,18 +0,0 @@ -// -// SyncPlayUserAccessType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum SyncPlayUserAccessType. */ -public enum SyncPlayUserAccessType: String, Codable, CaseIterable { - case createAndJoinGroups = "CreateAndJoinGroups" - case joinGroups = "JoinGroups" - case _none = "None" -} diff --git a/Sources/JellyfinAPI/Models/SystemInfo.swift b/Sources/JellyfinAPI/Models/SystemInfo.swift deleted file mode 100644 index 8f14c8bc0..000000000 --- a/Sources/JellyfinAPI/Models/SystemInfo.swift +++ /dev/null @@ -1,157 +0,0 @@ -// -// SystemInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class SystemInfo. */ -public struct SystemInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the local address. */ - public var localAddress: String? - /** Gets or sets the name of the server. */ - public var serverName: String? - /** Gets or sets the server version. */ - public var version: String? - /** Gets or sets the product name. This is the AssemblyProduct name. */ - public var productName: String? - /** Gets or sets the operating system. */ - public var operatingSystem: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets a value indicating whether the startup wizard is completed. */ - public var startupWizardCompleted: Bool? - /** Gets or sets the display name of the operating system. */ - public var operatingSystemDisplayName: String? - /** Gets or sets the package name. */ - public var packageName: String? - /** Gets or sets a value indicating whether this instance has pending restart. */ - public var hasPendingRestart: Bool? - public var isShuttingDown: Bool? - /** Gets or sets a value indicating whether [supports library monitor]. */ - public var supportsLibraryMonitor: Bool? - /** Gets or sets the web socket port number. */ - public var webSocketPortNumber: Int? - /** Gets or sets the completed installations. */ - public var completedInstallations: [InstallationInfo]? - /** Gets or sets a value indicating whether this instance can self restart. */ - public var canSelfRestart: Bool? - public var canLaunchWebBrowser: Bool? - /** Gets or sets the program data path. */ - public var programDataPath: String? - /** Gets or sets the web UI resources path. */ - public var webPath: String? - /** Gets or sets the items by name path. */ - public var itemsByNamePath: String? - /** Gets or sets the cache path. */ - public var cachePath: String? - /** Gets or sets the log path. */ - public var logPath: String? - /** Gets or sets the internal metadata path. */ - public var internalMetadataPath: String? - /** Gets or sets the transcode path. */ - public var transcodingTempPath: String? - /** Gets or sets a value indicating whether this instance has update available. */ - @available(*, deprecated, message: "This property is deprecated.") - public var hasUpdateAvailable: Bool? - /** Enum describing the location of the FFmpeg tool. */ - @available(*, deprecated, message: "This property is deprecated.") - public var encoderLocation: FFmpegLocation? - public var systemArchitecture: Architecture? - - public init(localAddress: String? = nil, serverName: String? = nil, version: String? = nil, productName: String? = nil, operatingSystem: String? = nil, id: String? = nil, startupWizardCompleted: Bool? = nil, operatingSystemDisplayName: String? = nil, packageName: String? = nil, hasPendingRestart: Bool? = nil, isShuttingDown: Bool? = nil, supportsLibraryMonitor: Bool? = nil, webSocketPortNumber: Int? = nil, completedInstallations: [InstallationInfo]? = nil, canSelfRestart: Bool? = nil, canLaunchWebBrowser: Bool? = nil, programDataPath: String? = nil, webPath: String? = nil, itemsByNamePath: String? = nil, cachePath: String? = nil, logPath: String? = nil, internalMetadataPath: String? = nil, transcodingTempPath: String? = nil, hasUpdateAvailable: Bool? = nil, encoderLocation: FFmpegLocation? = nil, systemArchitecture: Architecture? = nil) { - self.localAddress = localAddress - self.serverName = serverName - self.version = version - self.productName = productName - self.operatingSystem = operatingSystem - self.id = id - self.startupWizardCompleted = startupWizardCompleted - self.operatingSystemDisplayName = operatingSystemDisplayName - self.packageName = packageName - self.hasPendingRestart = hasPendingRestart - self.isShuttingDown = isShuttingDown - self.supportsLibraryMonitor = supportsLibraryMonitor - self.webSocketPortNumber = webSocketPortNumber - self.completedInstallations = completedInstallations - self.canSelfRestart = canSelfRestart - self.canLaunchWebBrowser = canLaunchWebBrowser - self.programDataPath = programDataPath - self.webPath = webPath - self.itemsByNamePath = itemsByNamePath - self.cachePath = cachePath - self.logPath = logPath - self.internalMetadataPath = internalMetadataPath - self.transcodingTempPath = transcodingTempPath - self.hasUpdateAvailable = hasUpdateAvailable - self.encoderLocation = encoderLocation - self.systemArchitecture = systemArchitecture - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case localAddress = "LocalAddress" - case serverName = "ServerName" - case version = "Version" - case productName = "ProductName" - case operatingSystem = "OperatingSystem" - case id = "Id" - case startupWizardCompleted = "StartupWizardCompleted" - case operatingSystemDisplayName = "OperatingSystemDisplayName" - case packageName = "PackageName" - case hasPendingRestart = "HasPendingRestart" - case isShuttingDown = "IsShuttingDown" - case supportsLibraryMonitor = "SupportsLibraryMonitor" - case webSocketPortNumber = "WebSocketPortNumber" - case completedInstallations = "CompletedInstallations" - case canSelfRestart = "CanSelfRestart" - case canLaunchWebBrowser = "CanLaunchWebBrowser" - case programDataPath = "ProgramDataPath" - case webPath = "WebPath" - case itemsByNamePath = "ItemsByNamePath" - case cachePath = "CachePath" - case logPath = "LogPath" - case internalMetadataPath = "InternalMetadataPath" - case transcodingTempPath = "TranscodingTempPath" - case hasUpdateAvailable = "HasUpdateAvailable" - case encoderLocation = "EncoderLocation" - case systemArchitecture = "SystemArchitecture" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(localAddress, forKey: .localAddress) - try encoderContainer.encodeIfPresent(serverName, forKey: .serverName) - try encoderContainer.encodeIfPresent(version, forKey: .version) - try encoderContainer.encodeIfPresent(productName, forKey: .productName) - try encoderContainer.encodeIfPresent(operatingSystem, forKey: .operatingSystem) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(startupWizardCompleted, forKey: .startupWizardCompleted) - try encoderContainer.encodeIfPresent(operatingSystemDisplayName, forKey: .operatingSystemDisplayName) - try encoderContainer.encodeIfPresent(packageName, forKey: .packageName) - try encoderContainer.encodeIfPresent(hasPendingRestart, forKey: .hasPendingRestart) - try encoderContainer.encodeIfPresent(isShuttingDown, forKey: .isShuttingDown) - try encoderContainer.encodeIfPresent(supportsLibraryMonitor, forKey: .supportsLibraryMonitor) - try encoderContainer.encodeIfPresent(webSocketPortNumber, forKey: .webSocketPortNumber) - try encoderContainer.encodeIfPresent(completedInstallations, forKey: .completedInstallations) - try encoderContainer.encodeIfPresent(canSelfRestart, forKey: .canSelfRestart) - try encoderContainer.encodeIfPresent(canLaunchWebBrowser, forKey: .canLaunchWebBrowser) - try encoderContainer.encodeIfPresent(programDataPath, forKey: .programDataPath) - try encoderContainer.encodeIfPresent(webPath, forKey: .webPath) - try encoderContainer.encodeIfPresent(itemsByNamePath, forKey: .itemsByNamePath) - try encoderContainer.encodeIfPresent(cachePath, forKey: .cachePath) - try encoderContainer.encodeIfPresent(logPath, forKey: .logPath) - try encoderContainer.encodeIfPresent(internalMetadataPath, forKey: .internalMetadataPath) - try encoderContainer.encodeIfPresent(transcodingTempPath, forKey: .transcodingTempPath) - try encoderContainer.encodeIfPresent(hasUpdateAvailable, forKey: .hasUpdateAvailable) - try encoderContainer.encodeIfPresent(encoderLocation, forKey: .encoderLocation) - try encoderContainer.encodeIfPresent(systemArchitecture, forKey: .systemArchitecture) - } -} diff --git a/Sources/JellyfinAPI/Models/TaskCompletionStatus.swift b/Sources/JellyfinAPI/Models/TaskCompletionStatus.swift deleted file mode 100644 index c8c0ac317..000000000 --- a/Sources/JellyfinAPI/Models/TaskCompletionStatus.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// TaskCompletionStatus.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum TaskCompletionStatus. */ -public enum TaskCompletionStatus: String, Codable, CaseIterable { - case completed = "Completed" - case failed = "Failed" - case cancelled = "Cancelled" - case aborted = "Aborted" -} diff --git a/Sources/JellyfinAPI/Models/TaskInfo.swift b/Sources/JellyfinAPI/Models/TaskInfo.swift deleted file mode 100644 index 10d461c20..000000000 --- a/Sources/JellyfinAPI/Models/TaskInfo.swift +++ /dev/null @@ -1,77 +0,0 @@ -// -// TaskInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class TaskInfo. */ -public struct TaskInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the state of the task. */ - public var state: TaskState? - /** Gets or sets the progress. */ - public var currentProgressPercentage: Double? - /** Gets or sets the id. */ - public var id: String? - public var lastExecutionResult: TaskInfoLastExecutionResult? - /** Gets or sets the triggers. */ - public var triggers: [TaskTriggerInfo]? - /** Gets or sets the description. */ - public var description: String? - /** Gets or sets the category. */ - public var category: String? - /** Gets or sets a value indicating whether this instance is hidden. */ - public var isHidden: Bool? - /** Gets or sets the key. */ - public var key: String? - - public init(name: String? = nil, state: TaskState? = nil, currentProgressPercentage: Double? = nil, id: String? = nil, lastExecutionResult: TaskInfoLastExecutionResult? = nil, triggers: [TaskTriggerInfo]? = nil, description: String? = nil, category: String? = nil, isHidden: Bool? = nil, key: String? = nil) { - self.name = name - self.state = state - self.currentProgressPercentage = currentProgressPercentage - self.id = id - self.lastExecutionResult = lastExecutionResult - self.triggers = triggers - self.description = description - self.category = category - self.isHidden = isHidden - self.key = key - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case state = "State" - case currentProgressPercentage = "CurrentProgressPercentage" - case id = "Id" - case lastExecutionResult = "LastExecutionResult" - case triggers = "Triggers" - case description = "Description" - case category = "Category" - case isHidden = "IsHidden" - case key = "Key" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(state, forKey: .state) - try encoderContainer.encodeIfPresent(currentProgressPercentage, forKey: .currentProgressPercentage) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(lastExecutionResult, forKey: .lastExecutionResult) - try encoderContainer.encodeIfPresent(triggers, forKey: .triggers) - try encoderContainer.encodeIfPresent(description, forKey: .description) - try encoderContainer.encodeIfPresent(category, forKey: .category) - try encoderContainer.encodeIfPresent(isHidden, forKey: .isHidden) - try encoderContainer.encodeIfPresent(key, forKey: .key) - } -} diff --git a/Sources/JellyfinAPI/Models/TaskInfoLastExecutionResult.swift b/Sources/JellyfinAPI/Models/TaskInfoLastExecutionResult.swift deleted file mode 100644 index 43e019b68..000000000 --- a/Sources/JellyfinAPI/Models/TaskInfoLastExecutionResult.swift +++ /dev/null @@ -1,68 +0,0 @@ -// -// TaskInfoLastExecutionResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the last execution result. */ -public struct TaskInfoLastExecutionResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the start time UTC. */ - public var startTimeUtc: Date? - /** Gets or sets the end time UTC. */ - public var endTimeUtc: Date? - /** Gets or sets the status. */ - public var status: TaskCompletionStatus? - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the key. */ - public var key: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the error message. */ - public var errorMessage: String? - /** Gets or sets the long error message. */ - public var longErrorMessage: String? - - public init(startTimeUtc: Date? = nil, endTimeUtc: Date? = nil, status: TaskCompletionStatus? = nil, name: String? = nil, key: String? = nil, id: String? = nil, errorMessage: String? = nil, longErrorMessage: String? = nil) { - self.startTimeUtc = startTimeUtc - self.endTimeUtc = endTimeUtc - self.status = status - self.name = name - self.key = key - self.id = id - self.errorMessage = errorMessage - self.longErrorMessage = longErrorMessage - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case startTimeUtc = "StartTimeUtc" - case endTimeUtc = "EndTimeUtc" - case status = "Status" - case name = "Name" - case key = "Key" - case id = "Id" - case errorMessage = "ErrorMessage" - case longErrorMessage = "LongErrorMessage" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(startTimeUtc, forKey: .startTimeUtc) - try encoderContainer.encodeIfPresent(endTimeUtc, forKey: .endTimeUtc) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(key, forKey: .key) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(errorMessage, forKey: .errorMessage) - try encoderContainer.encodeIfPresent(longErrorMessage, forKey: .longErrorMessage) - } -} diff --git a/Sources/JellyfinAPI/Models/TaskResult.swift b/Sources/JellyfinAPI/Models/TaskResult.swift deleted file mode 100644 index 247e2eb82..000000000 --- a/Sources/JellyfinAPI/Models/TaskResult.swift +++ /dev/null @@ -1,68 +0,0 @@ -// -// TaskResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class TaskExecutionInfo. */ -public struct TaskResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the start time UTC. */ - public var startTimeUtc: Date? - /** Gets or sets the end time UTC. */ - public var endTimeUtc: Date? - /** Gets or sets the status. */ - public var status: TaskCompletionStatus? - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the key. */ - public var key: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the error message. */ - public var errorMessage: String? - /** Gets or sets the long error message. */ - public var longErrorMessage: String? - - public init(startTimeUtc: Date? = nil, endTimeUtc: Date? = nil, status: TaskCompletionStatus? = nil, name: String? = nil, key: String? = nil, id: String? = nil, errorMessage: String? = nil, longErrorMessage: String? = nil) { - self.startTimeUtc = startTimeUtc - self.endTimeUtc = endTimeUtc - self.status = status - self.name = name - self.key = key - self.id = id - self.errorMessage = errorMessage - self.longErrorMessage = longErrorMessage - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case startTimeUtc = "StartTimeUtc" - case endTimeUtc = "EndTimeUtc" - case status = "Status" - case name = "Name" - case key = "Key" - case id = "Id" - case errorMessage = "ErrorMessage" - case longErrorMessage = "LongErrorMessage" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(startTimeUtc, forKey: .startTimeUtc) - try encoderContainer.encodeIfPresent(endTimeUtc, forKey: .endTimeUtc) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(key, forKey: .key) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(errorMessage, forKey: .errorMessage) - try encoderContainer.encodeIfPresent(longErrorMessage, forKey: .longErrorMessage) - } -} diff --git a/Sources/JellyfinAPI/Models/TaskState.swift b/Sources/JellyfinAPI/Models/TaskState.swift deleted file mode 100644 index 8f6ca070e..000000000 --- a/Sources/JellyfinAPI/Models/TaskState.swift +++ /dev/null @@ -1,18 +0,0 @@ -// -// TaskState.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum TaskState. */ -public enum TaskState: String, Codable, CaseIterable { - case idle = "Idle" - case cancelling = "Cancelling" - case running = "Running" -} diff --git a/Sources/JellyfinAPI/Models/TaskTriggerInfo.swift b/Sources/JellyfinAPI/Models/TaskTriggerInfo.swift deleted file mode 100644 index 0ba63db85..000000000 --- a/Sources/JellyfinAPI/Models/TaskTriggerInfo.swift +++ /dev/null @@ -1,53 +0,0 @@ -// -// TaskTriggerInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class TaskTriggerInfo. */ -public struct TaskTriggerInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the type. */ - public var type: String? - /** Gets or sets the time of day. */ - public var timeOfDayTicks: Int64? - /** Gets or sets the interval. */ - public var intervalTicks: Int64? - /** Gets or sets the day of week. */ - public var dayOfWeek: DayOfWeek? - /** Gets or sets the maximum runtime ticks. */ - public var maxRuntimeTicks: Int64? - - public init(type: String? = nil, timeOfDayTicks: Int64? = nil, intervalTicks: Int64? = nil, dayOfWeek: DayOfWeek? = nil, maxRuntimeTicks: Int64? = nil) { - self.type = type - self.timeOfDayTicks = timeOfDayTicks - self.intervalTicks = intervalTicks - self.dayOfWeek = dayOfWeek - self.maxRuntimeTicks = maxRuntimeTicks - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case type = "Type" - case timeOfDayTicks = "TimeOfDayTicks" - case intervalTicks = "IntervalTicks" - case dayOfWeek = "DayOfWeek" - case maxRuntimeTicks = "MaxRuntimeTicks" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(timeOfDayTicks, forKey: .timeOfDayTicks) - try encoderContainer.encodeIfPresent(intervalTicks, forKey: .intervalTicks) - try encoderContainer.encodeIfPresent(dayOfWeek, forKey: .dayOfWeek) - try encoderContainer.encodeIfPresent(maxRuntimeTicks, forKey: .maxRuntimeTicks) - } -} diff --git a/Sources/JellyfinAPI/Models/ThemeMediaResult.swift b/Sources/JellyfinAPI/Models/ThemeMediaResult.swift deleted file mode 100644 index aae0042be..000000000 --- a/Sources/JellyfinAPI/Models/ThemeMediaResult.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// ThemeMediaResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class ThemeMediaResult. */ -public struct ThemeMediaResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the items. */ - public var items: [BaseItemDto]? - /** Gets or sets the total number of records available. */ - public var totalRecordCount: Int? - /** Gets or sets the index of the first record in Items. */ - public var startIndex: Int? - /** Gets or sets the owner id. */ - public var ownerId: String? - - public init(items: [BaseItemDto]? = nil, totalRecordCount: Int? = nil, startIndex: Int? = nil, ownerId: String? = nil) { - self.items = items - self.totalRecordCount = totalRecordCount - self.startIndex = startIndex - self.ownerId = ownerId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case items = "Items" - case totalRecordCount = "TotalRecordCount" - case startIndex = "StartIndex" - case ownerId = "OwnerId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(items, forKey: .items) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - try encoderContainer.encodeIfPresent(ownerId, forKey: .ownerId) - } -} diff --git a/Sources/JellyfinAPI/Models/TimerEventInfo.swift b/Sources/JellyfinAPI/Models/TimerEventInfo.swift deleted file mode 100644 index ca808c126..000000000 --- a/Sources/JellyfinAPI/Models/TimerEventInfo.swift +++ /dev/null @@ -1,35 +0,0 @@ -// -// TimerEventInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TimerEventInfo: Codable, JSONEncodable, Hashable { - - public var id: String? - public var programId: String? - - public init(id: String? = nil, programId: String? = nil) { - self.id = id - self.programId = programId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case programId = "ProgramId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - } -} diff --git a/Sources/JellyfinAPI/Models/TimerInfoDto.swift b/Sources/JellyfinAPI/Models/TimerInfoDto.swift deleted file mode 100644 index a5de424b2..000000000 --- a/Sources/JellyfinAPI/Models/TimerInfoDto.swift +++ /dev/null @@ -1,163 +0,0 @@ -// -// TimerInfoDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TimerInfoDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the Id of the recording. */ - public var id: String? - public var type: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the external identifier. */ - public var externalId: String? - /** Gets or sets the channel id of the recording. */ - public var channelId: String? - /** Gets or sets the external channel identifier. */ - public var externalChannelId: String? - /** Gets or sets the channel name of the recording. */ - public var channelName: String? - public var channelPrimaryImageTag: String? - /** Gets or sets the program identifier. */ - public var programId: String? - /** Gets or sets the external program identifier. */ - public var externalProgramId: String? - /** Gets or sets the name of the recording. */ - public var name: String? - /** Gets or sets the description of the recording. */ - public var overview: String? - /** Gets or sets the start date of the recording, in UTC. */ - public var startDate: Date? - /** Gets or sets the end date of the recording, in UTC. */ - public var endDate: Date? - /** Gets or sets the name of the service. */ - public var serviceName: String? - /** Gets or sets the priority. */ - public var priority: Int? - /** Gets or sets the pre padding seconds. */ - public var prePaddingSeconds: Int? - /** Gets or sets the post padding seconds. */ - public var postPaddingSeconds: Int? - /** Gets or sets a value indicating whether this instance is pre padding required. */ - public var isPrePaddingRequired: Bool? - /** Gets or sets the Id of the Parent that has a backdrop if the item does not have one. */ - public var parentBackdropItemId: String? - /** Gets or sets the parent backdrop image tags. */ - public var parentBackdropImageTags: [String]? - /** Gets or sets a value indicating whether this instance is post padding required. */ - public var isPostPaddingRequired: Bool? - public var keepUntil: KeepUntil? - /** Gets or sets the status. */ - public var status: RecordingStatus? - /** Gets or sets the series timer identifier. */ - public var seriesTimerId: String? - /** Gets or sets the external series timer identifier. */ - public var externalSeriesTimerId: String? - /** Gets or sets the run time ticks. */ - public var runTimeTicks: Int64? - public var programInfo: TimerInfoDtoProgramInfo? - - public init(id: String? = nil, type: String? = nil, serverId: String? = nil, externalId: String? = nil, channelId: String? = nil, externalChannelId: String? = nil, channelName: String? = nil, channelPrimaryImageTag: String? = nil, programId: String? = nil, externalProgramId: String? = nil, name: String? = nil, overview: String? = nil, startDate: Date? = nil, endDate: Date? = nil, serviceName: String? = nil, priority: Int? = nil, prePaddingSeconds: Int? = nil, postPaddingSeconds: Int? = nil, isPrePaddingRequired: Bool? = nil, parentBackdropItemId: String? = nil, parentBackdropImageTags: [String]? = nil, isPostPaddingRequired: Bool? = nil, keepUntil: KeepUntil? = nil, status: RecordingStatus? = nil, seriesTimerId: String? = nil, externalSeriesTimerId: String? = nil, runTimeTicks: Int64? = nil, programInfo: TimerInfoDtoProgramInfo? = nil) { - self.id = id - self.type = type - self.serverId = serverId - self.externalId = externalId - self.channelId = channelId - self.externalChannelId = externalChannelId - self.channelName = channelName - self.channelPrimaryImageTag = channelPrimaryImageTag - self.programId = programId - self.externalProgramId = externalProgramId - self.name = name - self.overview = overview - self.startDate = startDate - self.endDate = endDate - self.serviceName = serviceName - self.priority = priority - self.prePaddingSeconds = prePaddingSeconds - self.postPaddingSeconds = postPaddingSeconds - self.isPrePaddingRequired = isPrePaddingRequired - self.parentBackdropItemId = parentBackdropItemId - self.parentBackdropImageTags = parentBackdropImageTags - self.isPostPaddingRequired = isPostPaddingRequired - self.keepUntil = keepUntil - self.status = status - self.seriesTimerId = seriesTimerId - self.externalSeriesTimerId = externalSeriesTimerId - self.runTimeTicks = runTimeTicks - self.programInfo = programInfo - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case type = "Type" - case serverId = "ServerId" - case externalId = "ExternalId" - case channelId = "ChannelId" - case externalChannelId = "ExternalChannelId" - case channelName = "ChannelName" - case channelPrimaryImageTag = "ChannelPrimaryImageTag" - case programId = "ProgramId" - case externalProgramId = "ExternalProgramId" - case name = "Name" - case overview = "Overview" - case startDate = "StartDate" - case endDate = "EndDate" - case serviceName = "ServiceName" - case priority = "Priority" - case prePaddingSeconds = "PrePaddingSeconds" - case postPaddingSeconds = "PostPaddingSeconds" - case isPrePaddingRequired = "IsPrePaddingRequired" - case parentBackdropItemId = "ParentBackdropItemId" - case parentBackdropImageTags = "ParentBackdropImageTags" - case isPostPaddingRequired = "IsPostPaddingRequired" - case keepUntil = "KeepUntil" - case status = "Status" - case seriesTimerId = "SeriesTimerId" - case externalSeriesTimerId = "ExternalSeriesTimerId" - case runTimeTicks = "RunTimeTicks" - case programInfo = "ProgramInfo" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(externalId, forKey: .externalId) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(externalChannelId, forKey: .externalChannelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(channelPrimaryImageTag, forKey: .channelPrimaryImageTag) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - try encoderContainer.encodeIfPresent(externalProgramId, forKey: .externalProgramId) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(serviceName, forKey: .serviceName) - try encoderContainer.encodeIfPresent(priority, forKey: .priority) - try encoderContainer.encodeIfPresent(prePaddingSeconds, forKey: .prePaddingSeconds) - try encoderContainer.encodeIfPresent(postPaddingSeconds, forKey: .postPaddingSeconds) - try encoderContainer.encodeIfPresent(isPrePaddingRequired, forKey: .isPrePaddingRequired) - try encoderContainer.encodeIfPresent(parentBackdropItemId, forKey: .parentBackdropItemId) - try encoderContainer.encodeIfPresent(parentBackdropImageTags, forKey: .parentBackdropImageTags) - try encoderContainer.encodeIfPresent(isPostPaddingRequired, forKey: .isPostPaddingRequired) - try encoderContainer.encodeIfPresent(keepUntil, forKey: .keepUntil) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(seriesTimerId, forKey: .seriesTimerId) - try encoderContainer.encodeIfPresent(externalSeriesTimerId, forKey: .externalSeriesTimerId) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(programInfo, forKey: .programInfo) - } -} diff --git a/Sources/JellyfinAPI/Models/TimerInfoDtoProgramInfo.swift b/Sources/JellyfinAPI/Models/TimerInfoDtoProgramInfo.swift deleted file mode 100644 index ec804ce73..000000000 --- a/Sources/JellyfinAPI/Models/TimerInfoDtoProgramInfo.swift +++ /dev/null @@ -1,741 +0,0 @@ -// -// TimerInfoDtoProgramInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the program information. */ -public struct TimerInfoDtoProgramInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - public var originalTitle: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the etag. */ - public var etag: String? - /** Gets or sets the type of the source. */ - public var sourceType: String? - /** Gets or sets the playlist item identifier. */ - public var playlistItemId: String? - /** Gets or sets the date created. */ - public var dateCreated: Date? - public var dateLastMediaAdded: Date? - public var extraType: String? - public var airsBeforeSeasonNumber: Int? - public var airsAfterSeasonNumber: Int? - public var airsBeforeEpisodeNumber: Int? - public var canDelete: Bool? - public var canDownload: Bool? - public var hasSubtitles: Bool? - public var preferredMetadataLanguage: String? - public var preferredMetadataCountryCode: String? - /** Gets or sets a value indicating whether [supports synchronize]. */ - public var supportsSync: Bool? - public var container: String? - /** Gets or sets the name of the sort. */ - public var sortName: String? - public var forcedSortName: String? - /** Gets or sets the video3 D format. */ - public var video3DFormat: Video3DFormat? - /** Gets or sets the premiere date. */ - public var premiereDate: Date? - /** Gets or sets the external urls. */ - public var externalUrls: [ExternalUrl]? - /** Gets or sets the media versions. */ - public var mediaSources: [MediaSourceInfo]? - /** Gets or sets the critic rating. */ - public var criticRating: Float? - public var productionLocations: [String]? - /** Gets or sets the path. */ - public var path: String? - public var enableMediaSourceDisplay: Bool? - /** Gets or sets the official rating. */ - public var officialRating: String? - /** Gets or sets the custom rating. */ - public var customRating: String? - /** Gets or sets the channel identifier. */ - public var channelId: String? - public var channelName: String? - /** Gets or sets the overview. */ - public var overview: String? - /** Gets or sets the taglines. */ - public var taglines: [String]? - /** Gets or sets the genres. */ - public var genres: [String]? - /** Gets or sets the community rating. */ - public var communityRating: Float? - /** Gets or sets the cumulative run time ticks. */ - public var cumulativeRunTimeTicks: Int64? - /** Gets or sets the run time ticks. */ - public var runTimeTicks: Int64? - /** Gets or sets the play access. */ - public var playAccess: PlayAccess? - /** Gets or sets the aspect ratio. */ - public var aspectRatio: String? - /** Gets or sets the production year. */ - public var productionYear: Int? - /** Gets or sets a value indicating whether this instance is place holder. */ - public var isPlaceHolder: Bool? - /** Gets or sets the number. */ - public var number: String? - public var channelNumber: String? - /** Gets or sets the index number. */ - public var indexNumber: Int? - /** Gets or sets the index number end. */ - public var indexNumberEnd: Int? - /** Gets or sets the parent index number. */ - public var parentIndexNumber: Int? - /** Gets or sets the trailer urls. */ - public var remoteTrailers: [MediaUrl]? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets a value indicating whether this instance is HD. */ - public var isHD: Bool? - /** Gets or sets a value indicating whether this instance is folder. */ - public var isFolder: Bool? - /** Gets or sets the parent id. */ - public var parentId: String? - /** The base item kind. */ - public var type: BaseItemKind? - /** Gets or sets the people. */ - public var people: [BaseItemPerson]? - /** Gets or sets the studios. */ - public var studios: [NameGuidPair]? - public var genreItems: [NameGuidPair]? - /** Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. */ - public var parentLogoItemId: String? - /** Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. */ - public var parentBackdropItemId: String? - /** Gets or sets the parent backdrop image tags. */ - public var parentBackdropImageTags: [String]? - /** Gets or sets the local trailer count. */ - public var localTrailerCount: Int? - public var userData: BaseItemDtoUserData? - /** Gets or sets the recursive item count. */ - public var recursiveItemCount: Int? - /** Gets or sets the child count. */ - public var childCount: Int? - /** Gets or sets the name of the series. */ - public var seriesName: String? - /** Gets or sets the series id. */ - public var seriesId: String? - /** Gets or sets the season identifier. */ - public var seasonId: String? - /** Gets or sets the special feature count. */ - public var specialFeatureCount: Int? - /** Gets or sets the display preferences id. */ - public var displayPreferencesId: String? - /** Gets or sets the status. */ - public var status: String? - /** Gets or sets the air time. */ - public var airTime: String? - /** Gets or sets the air days. */ - public var airDays: [DayOfWeek]? - /** Gets or sets the tags. */ - public var tags: [String]? - /** Gets or sets the primary image aspect ratio, after image enhancements. */ - public var primaryImageAspectRatio: Double? - /** Gets or sets the artists. */ - public var artists: [String]? - /** Gets or sets the artist items. */ - public var artistItems: [NameGuidPair]? - /** Gets or sets the album. */ - public var album: String? - /** Gets or sets the type of the collection. */ - public var collectionType: String? - /** Gets or sets the display order. */ - public var displayOrder: String? - /** Gets or sets the album id. */ - public var albumId: String? - /** Gets or sets the album image tag. */ - public var albumPrimaryImageTag: String? - /** Gets or sets the series primary image tag. */ - public var seriesPrimaryImageTag: String? - /** Gets or sets the album artist. */ - public var albumArtist: String? - /** Gets or sets the album artists. */ - public var albumArtists: [NameGuidPair]? - /** Gets or sets the name of the season. */ - public var seasonName: String? - /** Gets or sets the media streams. */ - public var mediaStreams: [MediaStream]? - /** Gets or sets the type of the video. */ - public var videoType: VideoType? - /** Gets or sets the part count. */ - public var partCount: Int? - public var mediaSourceCount: Int? - /** Gets or sets the image tags. */ - public var imageTags: [String: String]? - /** Gets or sets the backdrop image tags. */ - public var backdropImageTags: [String]? - /** Gets or sets the screenshot image tags. */ - public var screenshotImageTags: [String]? - /** Gets or sets the parent logo image tag. */ - public var parentLogoImageTag: String? - /** Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. */ - public var parentArtItemId: String? - /** Gets or sets the parent art image tag. */ - public var parentArtImageTag: String? - /** Gets or sets the series thumb image tag. */ - public var seriesThumbImageTag: String? - public var imageBlurHashes: BaseItemDtoImageBlurHashes? - /** Gets or sets the series studio. */ - public var seriesStudio: String? - /** Gets or sets the parent thumb item id. */ - public var parentThumbItemId: String? - /** Gets or sets the parent thumb image tag. */ - public var parentThumbImageTag: String? - /** Gets or sets the parent primary image item identifier. */ - public var parentPrimaryImageItemId: String? - /** Gets or sets the parent primary image tag. */ - public var parentPrimaryImageTag: String? - /** Gets or sets the chapters. */ - public var chapters: [ChapterInfo]? - /** Gets or sets the type of the location. */ - public var locationType: LocationType? - /** Gets or sets the type of the iso. */ - public var isoType: IsoType? - /** Gets or sets the type of the media. */ - public var mediaType: String? - /** Gets or sets the end date. */ - public var endDate: Date? - /** Gets or sets the locked fields. */ - public var lockedFields: [MetadataField]? - /** Gets or sets the trailer count. */ - public var trailerCount: Int? - /** Gets or sets the movie count. */ - public var movieCount: Int? - /** Gets or sets the series count. */ - public var seriesCount: Int? - public var programCount: Int? - /** Gets or sets the episode count. */ - public var episodeCount: Int? - /** Gets or sets the song count. */ - public var songCount: Int? - /** Gets or sets the album count. */ - public var albumCount: Int? - public var artistCount: Int? - /** Gets or sets the music video count. */ - public var musicVideoCount: Int? - /** Gets or sets a value indicating whether [enable internet providers]. */ - public var lockData: Bool? - public var width: Int? - public var height: Int? - public var cameraMake: String? - public var cameraModel: String? - public var software: String? - public var exposureTime: Double? - public var focalLength: Double? - public var imageOrientation: ImageOrientation? - public var aperture: Double? - public var shutterSpeed: Double? - public var latitude: Double? - public var longitude: Double? - public var altitude: Double? - public var isoSpeedRating: Int? - /** Gets or sets the series timer identifier. */ - public var seriesTimerId: String? - /** Gets or sets the program identifier. */ - public var programId: String? - /** Gets or sets the channel primary image tag. */ - public var channelPrimaryImageTag: String? - /** Gets or sets the start date of the recording, in UTC. */ - public var startDate: Date? - /** Gets or sets the completion percentage. */ - public var completionPercentage: Double? - /** Gets or sets a value indicating whether this instance is repeat. */ - public var isRepeat: Bool? - /** Gets or sets the episode title. */ - public var episodeTitle: String? - /** Gets or sets the type of the channel. */ - public var channelType: ChannelType? - /** Gets or sets the audio. */ - public var audio: ProgramAudio? - /** Gets or sets a value indicating whether this instance is movie. */ - public var isMovie: Bool? - /** Gets or sets a value indicating whether this instance is sports. */ - public var isSports: Bool? - /** Gets or sets a value indicating whether this instance is series. */ - public var isSeries: Bool? - /** Gets or sets a value indicating whether this instance is live. */ - public var isLive: Bool? - /** Gets or sets a value indicating whether this instance is news. */ - public var isNews: Bool? - /** Gets or sets a value indicating whether this instance is kids. */ - public var isKids: Bool? - /** Gets or sets a value indicating whether this instance is premiere. */ - public var isPremiere: Bool? - /** Gets or sets the timer identifier. */ - public var timerId: String? - - public init(name: String? = nil, originalTitle: String? = nil, serverId: String? = nil, id: String? = nil, etag: String? = nil, sourceType: String? = nil, playlistItemId: String? = nil, dateCreated: Date? = nil, dateLastMediaAdded: Date? = nil, extraType: String? = nil, airsBeforeSeasonNumber: Int? = nil, airsAfterSeasonNumber: Int? = nil, airsBeforeEpisodeNumber: Int? = nil, canDelete: Bool? = nil, canDownload: Bool? = nil, hasSubtitles: Bool? = nil, preferredMetadataLanguage: String? = nil, preferredMetadataCountryCode: String? = nil, supportsSync: Bool? = nil, container: String? = nil, sortName: String? = nil, forcedSortName: String? = nil, video3DFormat: Video3DFormat? = nil, premiereDate: Date? = nil, externalUrls: [ExternalUrl]? = nil, mediaSources: [MediaSourceInfo]? = nil, criticRating: Float? = nil, productionLocations: [String]? = nil, path: String? = nil, enableMediaSourceDisplay: Bool? = nil, officialRating: String? = nil, customRating: String? = nil, channelId: String? = nil, channelName: String? = nil, overview: String? = nil, taglines: [String]? = nil, genres: [String]? = nil, communityRating: Float? = nil, cumulativeRunTimeTicks: Int64? = nil, runTimeTicks: Int64? = nil, playAccess: PlayAccess? = nil, aspectRatio: String? = nil, productionYear: Int? = nil, isPlaceHolder: Bool? = nil, number: String? = nil, channelNumber: String? = nil, indexNumber: Int? = nil, indexNumberEnd: Int? = nil, parentIndexNumber: Int? = nil, remoteTrailers: [MediaUrl]? = nil, providerIds: [String: String]? = nil, isHD: Bool? = nil, isFolder: Bool? = nil, parentId: String? = nil, type: BaseItemKind? = nil, people: [BaseItemPerson]? = nil, studios: [NameGuidPair]? = nil, genreItems: [NameGuidPair]? = nil, parentLogoItemId: String? = nil, parentBackdropItemId: String? = nil, parentBackdropImageTags: [String]? = nil, localTrailerCount: Int? = nil, userData: BaseItemDtoUserData? = nil, recursiveItemCount: Int? = nil, childCount: Int? = nil, seriesName: String? = nil, seriesId: String? = nil, seasonId: String? = nil, specialFeatureCount: Int? = nil, displayPreferencesId: String? = nil, status: String? = nil, airTime: String? = nil, airDays: [DayOfWeek]? = nil, tags: [String]? = nil, primaryImageAspectRatio: Double? = nil, artists: [String]? = nil, artistItems: [NameGuidPair]? = nil, album: String? = nil, collectionType: String? = nil, displayOrder: String? = nil, albumId: String? = nil, albumPrimaryImageTag: String? = nil, seriesPrimaryImageTag: String? = nil, albumArtist: String? = nil, albumArtists: [NameGuidPair]? = nil, seasonName: String? = nil, mediaStreams: [MediaStream]? = nil, videoType: VideoType? = nil, partCount: Int? = nil, mediaSourceCount: Int? = nil, imageTags: [String: String]? = nil, backdropImageTags: [String]? = nil, screenshotImageTags: [String]? = nil, parentLogoImageTag: String? = nil, parentArtItemId: String? = nil, parentArtImageTag: String? = nil, seriesThumbImageTag: String? = nil, imageBlurHashes: BaseItemDtoImageBlurHashes? = nil, seriesStudio: String? = nil, parentThumbItemId: String? = nil, parentThumbImageTag: String? = nil, parentPrimaryImageItemId: String? = nil, parentPrimaryImageTag: String? = nil, chapters: [ChapterInfo]? = nil, locationType: LocationType? = nil, isoType: IsoType? = nil, mediaType: String? = nil, endDate: Date? = nil, lockedFields: [MetadataField]? = nil, trailerCount: Int? = nil, movieCount: Int? = nil, seriesCount: Int? = nil, programCount: Int? = nil, episodeCount: Int? = nil, songCount: Int? = nil, albumCount: Int? = nil, artistCount: Int? = nil, musicVideoCount: Int? = nil, lockData: Bool? = nil, width: Int? = nil, height: Int? = nil, cameraMake: String? = nil, cameraModel: String? = nil, software: String? = nil, exposureTime: Double? = nil, focalLength: Double? = nil, imageOrientation: ImageOrientation? = nil, aperture: Double? = nil, shutterSpeed: Double? = nil, latitude: Double? = nil, longitude: Double? = nil, altitude: Double? = nil, isoSpeedRating: Int? = nil, seriesTimerId: String? = nil, programId: String? = nil, channelPrimaryImageTag: String? = nil, startDate: Date? = nil, completionPercentage: Double? = nil, isRepeat: Bool? = nil, episodeTitle: String? = nil, channelType: ChannelType? = nil, audio: ProgramAudio? = nil, isMovie: Bool? = nil, isSports: Bool? = nil, isSeries: Bool? = nil, isLive: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isPremiere: Bool? = nil, timerId: String? = nil) { - self.name = name - self.originalTitle = originalTitle - self.serverId = serverId - self.id = id - self.etag = etag - self.sourceType = sourceType - self.playlistItemId = playlistItemId - self.dateCreated = dateCreated - self.dateLastMediaAdded = dateLastMediaAdded - self.extraType = extraType - self.airsBeforeSeasonNumber = airsBeforeSeasonNumber - self.airsAfterSeasonNumber = airsAfterSeasonNumber - self.airsBeforeEpisodeNumber = airsBeforeEpisodeNumber - self.canDelete = canDelete - self.canDownload = canDownload - self.hasSubtitles = hasSubtitles - self.preferredMetadataLanguage = preferredMetadataLanguage - self.preferredMetadataCountryCode = preferredMetadataCountryCode - self.supportsSync = supportsSync - self.container = container - self.sortName = sortName - self.forcedSortName = forcedSortName - self.video3DFormat = video3DFormat - self.premiereDate = premiereDate - self.externalUrls = externalUrls - self.mediaSources = mediaSources - self.criticRating = criticRating - self.productionLocations = productionLocations - self.path = path - self.enableMediaSourceDisplay = enableMediaSourceDisplay - self.officialRating = officialRating - self.customRating = customRating - self.channelId = channelId - self.channelName = channelName - self.overview = overview - self.taglines = taglines - self.genres = genres - self.communityRating = communityRating - self.cumulativeRunTimeTicks = cumulativeRunTimeTicks - self.runTimeTicks = runTimeTicks - self.playAccess = playAccess - self.aspectRatio = aspectRatio - self.productionYear = productionYear - self.isPlaceHolder = isPlaceHolder - self.number = number - self.channelNumber = channelNumber - self.indexNumber = indexNumber - self.indexNumberEnd = indexNumberEnd - self.parentIndexNumber = parentIndexNumber - self.remoteTrailers = remoteTrailers - self.providerIds = providerIds - self.isHD = isHD - self.isFolder = isFolder - self.parentId = parentId - self.type = type - self.people = people - self.studios = studios - self.genreItems = genreItems - self.parentLogoItemId = parentLogoItemId - self.parentBackdropItemId = parentBackdropItemId - self.parentBackdropImageTags = parentBackdropImageTags - self.localTrailerCount = localTrailerCount - self.userData = userData - self.recursiveItemCount = recursiveItemCount - self.childCount = childCount - self.seriesName = seriesName - self.seriesId = seriesId - self.seasonId = seasonId - self.specialFeatureCount = specialFeatureCount - self.displayPreferencesId = displayPreferencesId - self.status = status - self.airTime = airTime - self.airDays = airDays - self.tags = tags - self.primaryImageAspectRatio = primaryImageAspectRatio - self.artists = artists - self.artistItems = artistItems - self.album = album - self.collectionType = collectionType - self.displayOrder = displayOrder - self.albumId = albumId - self.albumPrimaryImageTag = albumPrimaryImageTag - self.seriesPrimaryImageTag = seriesPrimaryImageTag - self.albumArtist = albumArtist - self.albumArtists = albumArtists - self.seasonName = seasonName - self.mediaStreams = mediaStreams - self.videoType = videoType - self.partCount = partCount - self.mediaSourceCount = mediaSourceCount - self.imageTags = imageTags - self.backdropImageTags = backdropImageTags - self.screenshotImageTags = screenshotImageTags - self.parentLogoImageTag = parentLogoImageTag - self.parentArtItemId = parentArtItemId - self.parentArtImageTag = parentArtImageTag - self.seriesThumbImageTag = seriesThumbImageTag - self.imageBlurHashes = imageBlurHashes - self.seriesStudio = seriesStudio - self.parentThumbItemId = parentThumbItemId - self.parentThumbImageTag = parentThumbImageTag - self.parentPrimaryImageItemId = parentPrimaryImageItemId - self.parentPrimaryImageTag = parentPrimaryImageTag - self.chapters = chapters - self.locationType = locationType - self.isoType = isoType - self.mediaType = mediaType - self.endDate = endDate - self.lockedFields = lockedFields - self.trailerCount = trailerCount - self.movieCount = movieCount - self.seriesCount = seriesCount - self.programCount = programCount - self.episodeCount = episodeCount - self.songCount = songCount - self.albumCount = albumCount - self.artistCount = artistCount - self.musicVideoCount = musicVideoCount - self.lockData = lockData - self.width = width - self.height = height - self.cameraMake = cameraMake - self.cameraModel = cameraModel - self.software = software - self.exposureTime = exposureTime - self.focalLength = focalLength - self.imageOrientation = imageOrientation - self.aperture = aperture - self.shutterSpeed = shutterSpeed - self.latitude = latitude - self.longitude = longitude - self.altitude = altitude - self.isoSpeedRating = isoSpeedRating - self.seriesTimerId = seriesTimerId - self.programId = programId - self.channelPrimaryImageTag = channelPrimaryImageTag - self.startDate = startDate - self.completionPercentage = completionPercentage - self.isRepeat = isRepeat - self.episodeTitle = episodeTitle - self.channelType = channelType - self.audio = audio - self.isMovie = isMovie - self.isSports = isSports - self.isSeries = isSeries - self.isLive = isLive - self.isNews = isNews - self.isKids = isKids - self.isPremiere = isPremiere - self.timerId = timerId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case serverId = "ServerId" - case id = "Id" - case etag = "Etag" - case sourceType = "SourceType" - case playlistItemId = "PlaylistItemId" - case dateCreated = "DateCreated" - case dateLastMediaAdded = "DateLastMediaAdded" - case extraType = "ExtraType" - case airsBeforeSeasonNumber = "AirsBeforeSeasonNumber" - case airsAfterSeasonNumber = "AirsAfterSeasonNumber" - case airsBeforeEpisodeNumber = "AirsBeforeEpisodeNumber" - case canDelete = "CanDelete" - case canDownload = "CanDownload" - case hasSubtitles = "HasSubtitles" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case preferredMetadataCountryCode = "PreferredMetadataCountryCode" - case supportsSync = "SupportsSync" - case container = "Container" - case sortName = "SortName" - case forcedSortName = "ForcedSortName" - case video3DFormat = "Video3DFormat" - case premiereDate = "PremiereDate" - case externalUrls = "ExternalUrls" - case mediaSources = "MediaSources" - case criticRating = "CriticRating" - case productionLocations = "ProductionLocations" - case path = "Path" - case enableMediaSourceDisplay = "EnableMediaSourceDisplay" - case officialRating = "OfficialRating" - case customRating = "CustomRating" - case channelId = "ChannelId" - case channelName = "ChannelName" - case overview = "Overview" - case taglines = "Taglines" - case genres = "Genres" - case communityRating = "CommunityRating" - case cumulativeRunTimeTicks = "CumulativeRunTimeTicks" - case runTimeTicks = "RunTimeTicks" - case playAccess = "PlayAccess" - case aspectRatio = "AspectRatio" - case productionYear = "ProductionYear" - case isPlaceHolder = "IsPlaceHolder" - case number = "Number" - case channelNumber = "ChannelNumber" - case indexNumber = "IndexNumber" - case indexNumberEnd = "IndexNumberEnd" - case parentIndexNumber = "ParentIndexNumber" - case remoteTrailers = "RemoteTrailers" - case providerIds = "ProviderIds" - case isHD = "IsHD" - case isFolder = "IsFolder" - case parentId = "ParentId" - case type = "Type" - case people = "People" - case studios = "Studios" - case genreItems = "GenreItems" - case parentLogoItemId = "ParentLogoItemId" - case parentBackdropItemId = "ParentBackdropItemId" - case parentBackdropImageTags = "ParentBackdropImageTags" - case localTrailerCount = "LocalTrailerCount" - case userData = "UserData" - case recursiveItemCount = "RecursiveItemCount" - case childCount = "ChildCount" - case seriesName = "SeriesName" - case seriesId = "SeriesId" - case seasonId = "SeasonId" - case specialFeatureCount = "SpecialFeatureCount" - case displayPreferencesId = "DisplayPreferencesId" - case status = "Status" - case airTime = "AirTime" - case airDays = "AirDays" - case tags = "Tags" - case primaryImageAspectRatio = "PrimaryImageAspectRatio" - case artists = "Artists" - case artistItems = "ArtistItems" - case album = "Album" - case collectionType = "CollectionType" - case displayOrder = "DisplayOrder" - case albumId = "AlbumId" - case albumPrimaryImageTag = "AlbumPrimaryImageTag" - case seriesPrimaryImageTag = "SeriesPrimaryImageTag" - case albumArtist = "AlbumArtist" - case albumArtists = "AlbumArtists" - case seasonName = "SeasonName" - case mediaStreams = "MediaStreams" - case videoType = "VideoType" - case partCount = "PartCount" - case mediaSourceCount = "MediaSourceCount" - case imageTags = "ImageTags" - case backdropImageTags = "BackdropImageTags" - case screenshotImageTags = "ScreenshotImageTags" - case parentLogoImageTag = "ParentLogoImageTag" - case parentArtItemId = "ParentArtItemId" - case parentArtImageTag = "ParentArtImageTag" - case seriesThumbImageTag = "SeriesThumbImageTag" - case imageBlurHashes = "ImageBlurHashes" - case seriesStudio = "SeriesStudio" - case parentThumbItemId = "ParentThumbItemId" - case parentThumbImageTag = "ParentThumbImageTag" - case parentPrimaryImageItemId = "ParentPrimaryImageItemId" - case parentPrimaryImageTag = "ParentPrimaryImageTag" - case chapters = "Chapters" - case locationType = "LocationType" - case isoType = "IsoType" - case mediaType = "MediaType" - case endDate = "EndDate" - case lockedFields = "LockedFields" - case trailerCount = "TrailerCount" - case movieCount = "MovieCount" - case seriesCount = "SeriesCount" - case programCount = "ProgramCount" - case episodeCount = "EpisodeCount" - case songCount = "SongCount" - case albumCount = "AlbumCount" - case artistCount = "ArtistCount" - case musicVideoCount = "MusicVideoCount" - case lockData = "LockData" - case width = "Width" - case height = "Height" - case cameraMake = "CameraMake" - case cameraModel = "CameraModel" - case software = "Software" - case exposureTime = "ExposureTime" - case focalLength = "FocalLength" - case imageOrientation = "ImageOrientation" - case aperture = "Aperture" - case shutterSpeed = "ShutterSpeed" - case latitude = "Latitude" - case longitude = "Longitude" - case altitude = "Altitude" - case isoSpeedRating = "IsoSpeedRating" - case seriesTimerId = "SeriesTimerId" - case programId = "ProgramId" - case channelPrimaryImageTag = "ChannelPrimaryImageTag" - case startDate = "StartDate" - case completionPercentage = "CompletionPercentage" - case isRepeat = "IsRepeat" - case episodeTitle = "EpisodeTitle" - case channelType = "ChannelType" - case audio = "Audio" - case isMovie = "IsMovie" - case isSports = "IsSports" - case isSeries = "IsSeries" - case isLive = "IsLive" - case isNews = "IsNews" - case isKids = "IsKids" - case isPremiere = "IsPremiere" - case timerId = "TimerId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(etag, forKey: .etag) - try encoderContainer.encodeIfPresent(sourceType, forKey: .sourceType) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(dateCreated, forKey: .dateCreated) - try encoderContainer.encodeIfPresent(dateLastMediaAdded, forKey: .dateLastMediaAdded) - try encoderContainer.encodeIfPresent(extraType, forKey: .extraType) - try encoderContainer.encodeIfPresent(airsBeforeSeasonNumber, forKey: .airsBeforeSeasonNumber) - try encoderContainer.encodeIfPresent(airsAfterSeasonNumber, forKey: .airsAfterSeasonNumber) - try encoderContainer.encodeIfPresent(airsBeforeEpisodeNumber, forKey: .airsBeforeEpisodeNumber) - try encoderContainer.encodeIfPresent(canDelete, forKey: .canDelete) - try encoderContainer.encodeIfPresent(canDownload, forKey: .canDownload) - try encoderContainer.encodeIfPresent(hasSubtitles, forKey: .hasSubtitles) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(preferredMetadataCountryCode, forKey: .preferredMetadataCountryCode) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(sortName, forKey: .sortName) - try encoderContainer.encodeIfPresent(forcedSortName, forKey: .forcedSortName) - try encoderContainer.encodeIfPresent(video3DFormat, forKey: .video3DFormat) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(externalUrls, forKey: .externalUrls) - try encoderContainer.encodeIfPresent(mediaSources, forKey: .mediaSources) - try encoderContainer.encodeIfPresent(criticRating, forKey: .criticRating) - try encoderContainer.encodeIfPresent(productionLocations, forKey: .productionLocations) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(enableMediaSourceDisplay, forKey: .enableMediaSourceDisplay) - try encoderContainer.encodeIfPresent(officialRating, forKey: .officialRating) - try encoderContainer.encodeIfPresent(customRating, forKey: .customRating) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(taglines, forKey: .taglines) - try encoderContainer.encodeIfPresent(genres, forKey: .genres) - try encoderContainer.encodeIfPresent(communityRating, forKey: .communityRating) - try encoderContainer.encodeIfPresent(cumulativeRunTimeTicks, forKey: .cumulativeRunTimeTicks) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(playAccess, forKey: .playAccess) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(productionYear, forKey: .productionYear) - try encoderContainer.encodeIfPresent(isPlaceHolder, forKey: .isPlaceHolder) - try encoderContainer.encodeIfPresent(number, forKey: .number) - try encoderContainer.encodeIfPresent(channelNumber, forKey: .channelNumber) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(indexNumberEnd, forKey: .indexNumberEnd) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(remoteTrailers, forKey: .remoteTrailers) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(isHD, forKey: .isHD) - try encoderContainer.encodeIfPresent(isFolder, forKey: .isFolder) - try encoderContainer.encodeIfPresent(parentId, forKey: .parentId) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(people, forKey: .people) - try encoderContainer.encodeIfPresent(studios, forKey: .studios) - try encoderContainer.encodeIfPresent(genreItems, forKey: .genreItems) - try encoderContainer.encodeIfPresent(parentLogoItemId, forKey: .parentLogoItemId) - try encoderContainer.encodeIfPresent(parentBackdropItemId, forKey: .parentBackdropItemId) - try encoderContainer.encodeIfPresent(parentBackdropImageTags, forKey: .parentBackdropImageTags) - try encoderContainer.encodeIfPresent(localTrailerCount, forKey: .localTrailerCount) - try encoderContainer.encodeIfPresent(userData, forKey: .userData) - try encoderContainer.encodeIfPresent(recursiveItemCount, forKey: .recursiveItemCount) - try encoderContainer.encodeIfPresent(childCount, forKey: .childCount) - try encoderContainer.encodeIfPresent(seriesName, forKey: .seriesName) - try encoderContainer.encodeIfPresent(seriesId, forKey: .seriesId) - try encoderContainer.encodeIfPresent(seasonId, forKey: .seasonId) - try encoderContainer.encodeIfPresent(specialFeatureCount, forKey: .specialFeatureCount) - try encoderContainer.encodeIfPresent(displayPreferencesId, forKey: .displayPreferencesId) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(airTime, forKey: .airTime) - try encoderContainer.encodeIfPresent(airDays, forKey: .airDays) - try encoderContainer.encodeIfPresent(tags, forKey: .tags) - try encoderContainer.encodeIfPresent(primaryImageAspectRatio, forKey: .primaryImageAspectRatio) - try encoderContainer.encodeIfPresent(artists, forKey: .artists) - try encoderContainer.encodeIfPresent(artistItems, forKey: .artistItems) - try encoderContainer.encodeIfPresent(album, forKey: .album) - try encoderContainer.encodeIfPresent(collectionType, forKey: .collectionType) - try encoderContainer.encodeIfPresent(displayOrder, forKey: .displayOrder) - try encoderContainer.encodeIfPresent(albumId, forKey: .albumId) - try encoderContainer.encodeIfPresent(albumPrimaryImageTag, forKey: .albumPrimaryImageTag) - try encoderContainer.encodeIfPresent(seriesPrimaryImageTag, forKey: .seriesPrimaryImageTag) - try encoderContainer.encodeIfPresent(albumArtist, forKey: .albumArtist) - try encoderContainer.encodeIfPresent(albumArtists, forKey: .albumArtists) - try encoderContainer.encodeIfPresent(seasonName, forKey: .seasonName) - try encoderContainer.encodeIfPresent(mediaStreams, forKey: .mediaStreams) - try encoderContainer.encodeIfPresent(videoType, forKey: .videoType) - try encoderContainer.encodeIfPresent(partCount, forKey: .partCount) - try encoderContainer.encodeIfPresent(mediaSourceCount, forKey: .mediaSourceCount) - try encoderContainer.encodeIfPresent(imageTags, forKey: .imageTags) - try encoderContainer.encodeIfPresent(backdropImageTags, forKey: .backdropImageTags) - try encoderContainer.encodeIfPresent(screenshotImageTags, forKey: .screenshotImageTags) - try encoderContainer.encodeIfPresent(parentLogoImageTag, forKey: .parentLogoImageTag) - try encoderContainer.encodeIfPresent(parentArtItemId, forKey: .parentArtItemId) - try encoderContainer.encodeIfPresent(parentArtImageTag, forKey: .parentArtImageTag) - try encoderContainer.encodeIfPresent(seriesThumbImageTag, forKey: .seriesThumbImageTag) - try encoderContainer.encodeIfPresent(imageBlurHashes, forKey: .imageBlurHashes) - try encoderContainer.encodeIfPresent(seriesStudio, forKey: .seriesStudio) - try encoderContainer.encodeIfPresent(parentThumbItemId, forKey: .parentThumbItemId) - try encoderContainer.encodeIfPresent(parentThumbImageTag, forKey: .parentThumbImageTag) - try encoderContainer.encodeIfPresent(parentPrimaryImageItemId, forKey: .parentPrimaryImageItemId) - try encoderContainer.encodeIfPresent(parentPrimaryImageTag, forKey: .parentPrimaryImageTag) - try encoderContainer.encodeIfPresent(chapters, forKey: .chapters) - try encoderContainer.encodeIfPresent(locationType, forKey: .locationType) - try encoderContainer.encodeIfPresent(isoType, forKey: .isoType) - try encoderContainer.encodeIfPresent(mediaType, forKey: .mediaType) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(lockedFields, forKey: .lockedFields) - try encoderContainer.encodeIfPresent(trailerCount, forKey: .trailerCount) - try encoderContainer.encodeIfPresent(movieCount, forKey: .movieCount) - try encoderContainer.encodeIfPresent(seriesCount, forKey: .seriesCount) - try encoderContainer.encodeIfPresent(programCount, forKey: .programCount) - try encoderContainer.encodeIfPresent(episodeCount, forKey: .episodeCount) - try encoderContainer.encodeIfPresent(songCount, forKey: .songCount) - try encoderContainer.encodeIfPresent(albumCount, forKey: .albumCount) - try encoderContainer.encodeIfPresent(artistCount, forKey: .artistCount) - try encoderContainer.encodeIfPresent(musicVideoCount, forKey: .musicVideoCount) - try encoderContainer.encodeIfPresent(lockData, forKey: .lockData) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(cameraMake, forKey: .cameraMake) - try encoderContainer.encodeIfPresent(cameraModel, forKey: .cameraModel) - try encoderContainer.encodeIfPresent(software, forKey: .software) - try encoderContainer.encodeIfPresent(exposureTime, forKey: .exposureTime) - try encoderContainer.encodeIfPresent(focalLength, forKey: .focalLength) - try encoderContainer.encodeIfPresent(imageOrientation, forKey: .imageOrientation) - try encoderContainer.encodeIfPresent(aperture, forKey: .aperture) - try encoderContainer.encodeIfPresent(shutterSpeed, forKey: .shutterSpeed) - try encoderContainer.encodeIfPresent(latitude, forKey: .latitude) - try encoderContainer.encodeIfPresent(longitude, forKey: .longitude) - try encoderContainer.encodeIfPresent(altitude, forKey: .altitude) - try encoderContainer.encodeIfPresent(isoSpeedRating, forKey: .isoSpeedRating) - try encoderContainer.encodeIfPresent(seriesTimerId, forKey: .seriesTimerId) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - try encoderContainer.encodeIfPresent(channelPrimaryImageTag, forKey: .channelPrimaryImageTag) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(completionPercentage, forKey: .completionPercentage) - try encoderContainer.encodeIfPresent(isRepeat, forKey: .isRepeat) - try encoderContainer.encodeIfPresent(episodeTitle, forKey: .episodeTitle) - try encoderContainer.encodeIfPresent(channelType, forKey: .channelType) - try encoderContainer.encodeIfPresent(audio, forKey: .audio) - try encoderContainer.encodeIfPresent(isMovie, forKey: .isMovie) - try encoderContainer.encodeIfPresent(isSports, forKey: .isSports) - try encoderContainer.encodeIfPresent(isSeries, forKey: .isSeries) - try encoderContainer.encodeIfPresent(isLive, forKey: .isLive) - try encoderContainer.encodeIfPresent(isNews, forKey: .isNews) - try encoderContainer.encodeIfPresent(isKids, forKey: .isKids) - try encoderContainer.encodeIfPresent(isPremiere, forKey: .isPremiere) - try encoderContainer.encodeIfPresent(timerId, forKey: .timerId) - } -} diff --git a/Sources/JellyfinAPI/Models/TimerInfoDtoQueryResult.swift b/Sources/JellyfinAPI/Models/TimerInfoDtoQueryResult.swift deleted file mode 100644 index e042f94c9..000000000 --- a/Sources/JellyfinAPI/Models/TimerInfoDtoQueryResult.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// TimerInfoDtoQueryResult.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TimerInfoDtoQueryResult: Codable, JSONEncodable, Hashable { - - /** Gets or sets the items. */ - public var items: [TimerInfoDto]? - /** Gets or sets the total number of records available. */ - public var totalRecordCount: Int? - /** Gets or sets the index of the first record in Items. */ - public var startIndex: Int? - - public init(items: [TimerInfoDto]? = nil, totalRecordCount: Int? = nil, startIndex: Int? = nil) { - self.items = items - self.totalRecordCount = totalRecordCount - self.startIndex = startIndex - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case items = "Items" - case totalRecordCount = "TotalRecordCount" - case startIndex = "StartIndex" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(items, forKey: .items) - try encoderContainer.encodeIfPresent(totalRecordCount, forKey: .totalRecordCount) - try encoderContainer.encodeIfPresent(startIndex, forKey: .startIndex) - } -} diff --git a/Sources/JellyfinAPI/Models/TrailerInfo.swift b/Sources/JellyfinAPI/Models/TrailerInfo.swift deleted file mode 100644 index b85235b70..000000000 --- a/Sources/JellyfinAPI/Models/TrailerInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// TrailerInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TrailerInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - } -} diff --git a/Sources/JellyfinAPI/Models/TrailerInfoRemoteSearchQuery.swift b/Sources/JellyfinAPI/Models/TrailerInfoRemoteSearchQuery.swift deleted file mode 100644 index 334c456b6..000000000 --- a/Sources/JellyfinAPI/Models/TrailerInfoRemoteSearchQuery.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// TrailerInfoRemoteSearchQuery.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TrailerInfoRemoteSearchQuery: Codable, JSONEncodable, Hashable { - - public var searchInfo: TrailerInfoRemoteSearchQuerySearchInfo? - public var itemId: String? - /** Gets or sets the provider name to search within if set. */ - public var searchProviderName: String? - /** Gets or sets a value indicating whether disabled providers should be included. */ - public var includeDisabledProviders: Bool? - - public init(searchInfo: TrailerInfoRemoteSearchQuerySearchInfo? = nil, itemId: String? = nil, searchProviderName: String? = nil, includeDisabledProviders: Bool? = nil) { - self.searchInfo = searchInfo - self.itemId = itemId - self.searchProviderName = searchProviderName - self.includeDisabledProviders = includeDisabledProviders - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case searchInfo = "SearchInfo" - case itemId = "ItemId" - case searchProviderName = "SearchProviderName" - case includeDisabledProviders = "IncludeDisabledProviders" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(searchInfo, forKey: .searchInfo) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(searchProviderName, forKey: .searchProviderName) - try encoderContainer.encodeIfPresent(includeDisabledProviders, forKey: .includeDisabledProviders) - } -} diff --git a/Sources/JellyfinAPI/Models/TrailerInfoRemoteSearchQuerySearchInfo.swift b/Sources/JellyfinAPI/Models/TrailerInfoRemoteSearchQuerySearchInfo.swift deleted file mode 100644 index b89ecb70f..000000000 --- a/Sources/JellyfinAPI/Models/TrailerInfoRemoteSearchQuerySearchInfo.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// TrailerInfoRemoteSearchQuerySearchInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TrailerInfoRemoteSearchQuerySearchInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the original title. */ - public var originalTitle: String? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets the metadata language. */ - public var metadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets the year. */ - public var year: Int? - public var indexNumber: Int? - public var parentIndexNumber: Int? - public var premiereDate: Date? - public var isAutomated: Bool? - - public init(name: String? = nil, originalTitle: String? = nil, path: String? = nil, metadataLanguage: String? = nil, metadataCountryCode: String? = nil, providerIds: [String: String]? = nil, year: Int? = nil, indexNumber: Int? = nil, parentIndexNumber: Int? = nil, premiereDate: Date? = nil, isAutomated: Bool? = nil) { - self.name = name - self.originalTitle = originalTitle - self.path = path - self.metadataLanguage = metadataLanguage - self.metadataCountryCode = metadataCountryCode - self.providerIds = providerIds - self.year = year - self.indexNumber = indexNumber - self.parentIndexNumber = parentIndexNumber - self.premiereDate = premiereDate - self.isAutomated = isAutomated - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case path = "Path" - case metadataLanguage = "MetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case providerIds = "ProviderIds" - case year = "Year" - case indexNumber = "IndexNumber" - case parentIndexNumber = "ParentIndexNumber" - case premiereDate = "PremiereDate" - case isAutomated = "IsAutomated" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(metadataLanguage, forKey: .metadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(year, forKey: .year) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(isAutomated, forKey: .isAutomated) - } -} diff --git a/Sources/JellyfinAPI/Models/TranscodeReason.swift b/Sources/JellyfinAPI/Models/TranscodeReason.swift deleted file mode 100644 index bc1698009..000000000 --- a/Sources/JellyfinAPI/Models/TranscodeReason.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// TranscodeReason.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum TranscodeReason: String, Codable, CaseIterable { - case containerNotSupported = "ContainerNotSupported" - case videoCodecNotSupported = "VideoCodecNotSupported" - case audioCodecNotSupported = "AudioCodecNotSupported" - case containerBitrateExceedsLimit = "ContainerBitrateExceedsLimit" - case audioBitrateNotSupported = "AudioBitrateNotSupported" - case audioChannelsNotSupported = "AudioChannelsNotSupported" - case videoResolutionNotSupported = "VideoResolutionNotSupported" - case unknownVideoStreamInfo = "UnknownVideoStreamInfo" - case unknownAudioStreamInfo = "UnknownAudioStreamInfo" - case audioProfileNotSupported = "AudioProfileNotSupported" - case audioSampleRateNotSupported = "AudioSampleRateNotSupported" - case anamorphicVideoNotSupported = "AnamorphicVideoNotSupported" - case interlacedVideoNotSupported = "InterlacedVideoNotSupported" - case secondaryAudioNotSupported = "SecondaryAudioNotSupported" - case refFramesNotSupported = "RefFramesNotSupported" - case videoBitDepthNotSupported = "VideoBitDepthNotSupported" - case videoBitrateNotSupported = "VideoBitrateNotSupported" - case videoFramerateNotSupported = "VideoFramerateNotSupported" - case videoLevelNotSupported = "VideoLevelNotSupported" - case videoProfileNotSupported = "VideoProfileNotSupported" - case audioBitDepthNotSupported = "AudioBitDepthNotSupported" - case subtitleCodecNotSupported = "SubtitleCodecNotSupported" - case directPlayError = "DirectPlayError" -} diff --git a/Sources/JellyfinAPI/Models/TranscodeSeekInfo.swift b/Sources/JellyfinAPI/Models/TranscodeSeekInfo.swift deleted file mode 100644 index da516f054..000000000 --- a/Sources/JellyfinAPI/Models/TranscodeSeekInfo.swift +++ /dev/null @@ -1,16 +0,0 @@ -// -// TranscodeSeekInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum TranscodeSeekInfo: String, Codable, CaseIterable { - case auto = "Auto" - case bytes = "Bytes" -} diff --git a/Sources/JellyfinAPI/Models/TranscodingInfo.swift b/Sources/JellyfinAPI/Models/TranscodingInfo.swift deleted file mode 100644 index 594e53c76..000000000 --- a/Sources/JellyfinAPI/Models/TranscodingInfo.swift +++ /dev/null @@ -1,105 +0,0 @@ -// -// TranscodingInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TranscodingInfo: Codable, JSONEncodable, Hashable { - - public enum TranscodeReasons: String, Codable, CaseIterable { - case containerNotSupported = "ContainerNotSupported" - case videoCodecNotSupported = "VideoCodecNotSupported" - case audioCodecNotSupported = "AudioCodecNotSupported" - case subtitleCodecNotSupported = "SubtitleCodecNotSupported" - case audioIsExternal = "AudioIsExternal" - case secondaryAudioNotSupported = "SecondaryAudioNotSupported" - case videoProfileNotSupported = "VideoProfileNotSupported" - case videoLevelNotSupported = "VideoLevelNotSupported" - case videoResolutionNotSupported = "VideoResolutionNotSupported" - case videoBitDepthNotSupported = "VideoBitDepthNotSupported" - case videoFramerateNotSupported = "VideoFramerateNotSupported" - case refFramesNotSupported = "RefFramesNotSupported" - case anamorphicVideoNotSupported = "AnamorphicVideoNotSupported" - case interlacedVideoNotSupported = "InterlacedVideoNotSupported" - case audioChannelsNotSupported = "AudioChannelsNotSupported" - case audioProfileNotSupported = "AudioProfileNotSupported" - case audioSampleRateNotSupported = "AudioSampleRateNotSupported" - case audioBitDepthNotSupported = "AudioBitDepthNotSupported" - case containerBitrateExceedsLimit = "ContainerBitrateExceedsLimit" - case videoBitrateNotSupported = "VideoBitrateNotSupported" - case audioBitrateNotSupported = "AudioBitrateNotSupported" - case unknownVideoStreamInfo = "UnknownVideoStreamInfo" - case unknownAudioStreamInfo = "UnknownAudioStreamInfo" - case directPlayError = "DirectPlayError" - } - public var audioCodec: String? - public var videoCodec: String? - public var container: String? - public var isVideoDirect: Bool? - public var isAudioDirect: Bool? - public var bitrate: Int? - public var framerate: Float? - public var completionPercentage: Double? - public var width: Int? - public var height: Int? - public var audioChannels: Int? - public var hardwareAccelerationType: HardwareEncodingType? - public var transcodeReasons: TranscodeReasons? - - public init(audioCodec: String? = nil, videoCodec: String? = nil, container: String? = nil, isVideoDirect: Bool? = nil, isAudioDirect: Bool? = nil, bitrate: Int? = nil, framerate: Float? = nil, completionPercentage: Double? = nil, width: Int? = nil, height: Int? = nil, audioChannels: Int? = nil, hardwareAccelerationType: HardwareEncodingType? = nil, transcodeReasons: TranscodeReasons? = nil) { - self.audioCodec = audioCodec - self.videoCodec = videoCodec - self.container = container - self.isVideoDirect = isVideoDirect - self.isAudioDirect = isAudioDirect - self.bitrate = bitrate - self.framerate = framerate - self.completionPercentage = completionPercentage - self.width = width - self.height = height - self.audioChannels = audioChannels - self.hardwareAccelerationType = hardwareAccelerationType - self.transcodeReasons = transcodeReasons - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case audioCodec = "AudioCodec" - case videoCodec = "VideoCodec" - case container = "Container" - case isVideoDirect = "IsVideoDirect" - case isAudioDirect = "IsAudioDirect" - case bitrate = "Bitrate" - case framerate = "Framerate" - case completionPercentage = "CompletionPercentage" - case width = "Width" - case height = "Height" - case audioChannels = "AudioChannels" - case hardwareAccelerationType = "HardwareAccelerationType" - case transcodeReasons = "TranscodeReasons" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(audioCodec, forKey: .audioCodec) - try encoderContainer.encodeIfPresent(videoCodec, forKey: .videoCodec) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(isVideoDirect, forKey: .isVideoDirect) - try encoderContainer.encodeIfPresent(isAudioDirect, forKey: .isAudioDirect) - try encoderContainer.encodeIfPresent(bitrate, forKey: .bitrate) - try encoderContainer.encodeIfPresent(framerate, forKey: .framerate) - try encoderContainer.encodeIfPresent(completionPercentage, forKey: .completionPercentage) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(audioChannels, forKey: .audioChannels) - try encoderContainer.encodeIfPresent(hardwareAccelerationType, forKey: .hardwareAccelerationType) - try encoderContainer.encodeIfPresent(transcodeReasons, forKey: .transcodeReasons) - } -} diff --git a/Sources/JellyfinAPI/Models/TranscodingProfile.swift b/Sources/JellyfinAPI/Models/TranscodingProfile.swift deleted file mode 100644 index 7477b1024..000000000 --- a/Sources/JellyfinAPI/Models/TranscodingProfile.swift +++ /dev/null @@ -1,91 +0,0 @@ -// -// TranscodingProfile.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TranscodingProfile: Codable, JSONEncodable, Hashable { - - public var container: String? - public var type: DlnaProfileType? - public var videoCodec: String? - public var audioCodec: String? - public var _protocol: String? - public var estimateContentLength: Bool? = false - public var enableMpegtsM2TsMode: Bool? = false - public var transcodeSeekInfo: TranscodeSeekInfo? - public var copyTimestamps: Bool? = false - public var context: EncodingContext? - public var enableSubtitlesInManifest: Bool? = false - public var maxAudioChannels: String? - public var minSegments: Int? = 0 - public var segmentLength: Int? = 0 - public var breakOnNonKeyFrames: Bool? = false - public var conditions: [ProfileCondition]? - - public init(container: String? = nil, type: DlnaProfileType? = nil, videoCodec: String? = nil, audioCodec: String? = nil, _protocol: String? = nil, estimateContentLength: Bool? = false, enableMpegtsM2TsMode: Bool? = false, transcodeSeekInfo: TranscodeSeekInfo? = nil, copyTimestamps: Bool? = false, context: EncodingContext? = nil, enableSubtitlesInManifest: Bool? = false, maxAudioChannels: String? = nil, minSegments: Int? = 0, segmentLength: Int? = 0, breakOnNonKeyFrames: Bool? = false, conditions: [ProfileCondition]? = nil) { - self.container = container - self.type = type - self.videoCodec = videoCodec - self.audioCodec = audioCodec - self._protocol = _protocol - self.estimateContentLength = estimateContentLength - self.enableMpegtsM2TsMode = enableMpegtsM2TsMode - self.transcodeSeekInfo = transcodeSeekInfo - self.copyTimestamps = copyTimestamps - self.context = context - self.enableSubtitlesInManifest = enableSubtitlesInManifest - self.maxAudioChannels = maxAudioChannels - self.minSegments = minSegments - self.segmentLength = segmentLength - self.breakOnNonKeyFrames = breakOnNonKeyFrames - self.conditions = conditions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case container = "Container" - case type = "Type" - case videoCodec = "VideoCodec" - case audioCodec = "AudioCodec" - case _protocol = "Protocol" - case estimateContentLength = "EstimateContentLength" - case enableMpegtsM2TsMode = "EnableMpegtsM2TsMode" - case transcodeSeekInfo = "TranscodeSeekInfo" - case copyTimestamps = "CopyTimestamps" - case context = "Context" - case enableSubtitlesInManifest = "EnableSubtitlesInManifest" - case maxAudioChannels = "MaxAudioChannels" - case minSegments = "MinSegments" - case segmentLength = "SegmentLength" - case breakOnNonKeyFrames = "BreakOnNonKeyFrames" - case conditions = "Conditions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(videoCodec, forKey: .videoCodec) - try encoderContainer.encodeIfPresent(audioCodec, forKey: .audioCodec) - try encoderContainer.encodeIfPresent(_protocol, forKey: ._protocol) - try encoderContainer.encodeIfPresent(estimateContentLength, forKey: .estimateContentLength) - try encoderContainer.encodeIfPresent(enableMpegtsM2TsMode, forKey: .enableMpegtsM2TsMode) - try encoderContainer.encodeIfPresent(transcodeSeekInfo, forKey: .transcodeSeekInfo) - try encoderContainer.encodeIfPresent(copyTimestamps, forKey: .copyTimestamps) - try encoderContainer.encodeIfPresent(context, forKey: .context) - try encoderContainer.encodeIfPresent(enableSubtitlesInManifest, forKey: .enableSubtitlesInManifest) - try encoderContainer.encodeIfPresent(maxAudioChannels, forKey: .maxAudioChannels) - try encoderContainer.encodeIfPresent(minSegments, forKey: .minSegments) - try encoderContainer.encodeIfPresent(segmentLength, forKey: .segmentLength) - try encoderContainer.encodeIfPresent(breakOnNonKeyFrames, forKey: .breakOnNonKeyFrames) - try encoderContainer.encodeIfPresent(conditions, forKey: .conditions) - } -} diff --git a/Sources/JellyfinAPI/Models/TransportStreamTimestamp.swift b/Sources/JellyfinAPI/Models/TransportStreamTimestamp.swift deleted file mode 100644 index e90d51439..000000000 --- a/Sources/JellyfinAPI/Models/TransportStreamTimestamp.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// TransportStreamTimestamp.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum TransportStreamTimestamp: String, Codable, CaseIterable { - case _none = "None" - case zero = "Zero" - case valid = "Valid" -} diff --git a/Sources/JellyfinAPI/Models/TunerChannelMapping.swift b/Sources/JellyfinAPI/Models/TunerChannelMapping.swift deleted file mode 100644 index 7ff5d9fa9..000000000 --- a/Sources/JellyfinAPI/Models/TunerChannelMapping.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// TunerChannelMapping.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TunerChannelMapping: Codable, JSONEncodable, Hashable { - - public var name: String? - public var providerChannelName: String? - public var providerChannelId: String? - public var id: String? - - public init(name: String? = nil, providerChannelName: String? = nil, providerChannelId: String? = nil, id: String? = nil) { - self.name = name - self.providerChannelName = providerChannelName - self.providerChannelId = providerChannelId - self.id = id - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case providerChannelName = "ProviderChannelName" - case providerChannelId = "ProviderChannelId" - case id = "Id" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(providerChannelName, forKey: .providerChannelName) - try encoderContainer.encodeIfPresent(providerChannelId, forKey: .providerChannelId) - try encoderContainer.encodeIfPresent(id, forKey: .id) - } -} diff --git a/Sources/JellyfinAPI/Models/TunerHostInfo.swift b/Sources/JellyfinAPI/Models/TunerHostInfo.swift deleted file mode 100644 index 73dee9a18..000000000 --- a/Sources/JellyfinAPI/Models/TunerHostInfo.swift +++ /dev/null @@ -1,71 +0,0 @@ -// -// TunerHostInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TunerHostInfo: Codable, JSONEncodable, Hashable { - - public var id: String? - public var url: String? - public var type: String? - public var deviceId: String? - public var friendlyName: String? - public var importFavoritesOnly: Bool? - public var allowHWTranscoding: Bool? - public var enableStreamLooping: Bool? - public var source: String? - public var tunerCount: Int? - public var userAgent: String? - - public init(id: String? = nil, url: String? = nil, type: String? = nil, deviceId: String? = nil, friendlyName: String? = nil, importFavoritesOnly: Bool? = nil, allowHWTranscoding: Bool? = nil, enableStreamLooping: Bool? = nil, source: String? = nil, tunerCount: Int? = nil, userAgent: String? = nil) { - self.id = id - self.url = url - self.type = type - self.deviceId = deviceId - self.friendlyName = friendlyName - self.importFavoritesOnly = importFavoritesOnly - self.allowHWTranscoding = allowHWTranscoding - self.enableStreamLooping = enableStreamLooping - self.source = source - self.tunerCount = tunerCount - self.userAgent = userAgent - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case url = "Url" - case type = "Type" - case deviceId = "DeviceId" - case friendlyName = "FriendlyName" - case importFavoritesOnly = "ImportFavoritesOnly" - case allowHWTranscoding = "AllowHWTranscoding" - case enableStreamLooping = "EnableStreamLooping" - case source = "Source" - case tunerCount = "TunerCount" - case userAgent = "UserAgent" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(url, forKey: .url) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(deviceId, forKey: .deviceId) - try encoderContainer.encodeIfPresent(friendlyName, forKey: .friendlyName) - try encoderContainer.encodeIfPresent(importFavoritesOnly, forKey: .importFavoritesOnly) - try encoderContainer.encodeIfPresent(allowHWTranscoding, forKey: .allowHWTranscoding) - try encoderContainer.encodeIfPresent(enableStreamLooping, forKey: .enableStreamLooping) - try encoderContainer.encodeIfPresent(source, forKey: .source) - try encoderContainer.encodeIfPresent(tunerCount, forKey: .tunerCount) - try encoderContainer.encodeIfPresent(userAgent, forKey: .userAgent) - } -} diff --git a/Sources/JellyfinAPI/Models/TypeOptions.swift b/Sources/JellyfinAPI/Models/TypeOptions.swift deleted file mode 100644 index 6bc794b62..000000000 --- a/Sources/JellyfinAPI/Models/TypeOptions.swift +++ /dev/null @@ -1,51 +0,0 @@ -// -// TypeOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct TypeOptions: Codable, JSONEncodable, Hashable { - - public var type: String? - public var metadataFetchers: [String]? - public var metadataFetcherOrder: [String]? - public var imageFetchers: [String]? - public var imageFetcherOrder: [String]? - public var imageOptions: [ImageOption]? - - public init(type: String? = nil, metadataFetchers: [String]? = nil, metadataFetcherOrder: [String]? = nil, imageFetchers: [String]? = nil, imageFetcherOrder: [String]? = nil, imageOptions: [ImageOption]? = nil) { - self.type = type - self.metadataFetchers = metadataFetchers - self.metadataFetcherOrder = metadataFetcherOrder - self.imageFetchers = imageFetchers - self.imageFetcherOrder = imageFetcherOrder - self.imageOptions = imageOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case type = "Type" - case metadataFetchers = "MetadataFetchers" - case metadataFetcherOrder = "MetadataFetcherOrder" - case imageFetchers = "ImageFetchers" - case imageFetcherOrder = "ImageFetcherOrder" - case imageOptions = "ImageOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(metadataFetchers, forKey: .metadataFetchers) - try encoderContainer.encodeIfPresent(metadataFetcherOrder, forKey: .metadataFetcherOrder) - try encoderContainer.encodeIfPresent(imageFetchers, forKey: .imageFetchers) - try encoderContainer.encodeIfPresent(imageFetcherOrder, forKey: .imageFetcherOrder) - try encoderContainer.encodeIfPresent(imageOptions, forKey: .imageOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/UnratedItem.swift b/Sources/JellyfinAPI/Models/UnratedItem.swift deleted file mode 100644 index e9bf71111..000000000 --- a/Sources/JellyfinAPI/Models/UnratedItem.swift +++ /dev/null @@ -1,24 +0,0 @@ -// -// UnratedItem.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** An enum representing an unrated item. */ -public enum UnratedItem: String, Codable, CaseIterable { - case movie = "Movie" - case trailer = "Trailer" - case series = "Series" - case music = "Music" - case book = "Book" - case liveTvChannel = "LiveTvChannel" - case liveTvProgram = "LiveTvProgram" - case channelContent = "ChannelContent" - case other = "Other" -} diff --git a/Sources/JellyfinAPI/Models/UpdateConfigurationRequest.swift b/Sources/JellyfinAPI/Models/UpdateConfigurationRequest.swift deleted file mode 100644 index 01a409b5e..000000000 --- a/Sources/JellyfinAPI/Models/UpdateConfigurationRequest.swift +++ /dev/null @@ -1,250 +0,0 @@ -// -// UpdateConfigurationRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Represents the server configuration. */ -public struct UpdateConfigurationRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the number of days we should retain log files. */ - public var logFileRetentionDays: Int? - /** Gets or sets a value indicating whether this instance is first run. */ - public var isStartupWizardCompleted: Bool? - /** Gets or sets the cache path. */ - public var cachePath: String? - /** Gets or sets the last known version that was ran using the configuration. */ - public var previousVersion: String? - /** Gets or sets the stringified PreviousVersion to be stored/loaded, because System.Version itself isn't xml-serializable. */ - public var previousVersionStr: String? - /** Gets or sets a value indicating whether to enable prometheus metrics exporting. */ - public var enableMetrics: Bool? - public var enableNormalizedItemByNameIds: Bool? - /** Gets or sets a value indicating whether this instance is port authorized. */ - public var isPortAuthorized: Bool? - /** Gets or sets a value indicating whether quick connect is available for use on this server. */ - public var quickConnectAvailable: Bool? - /** Gets or sets a value indicating whether [enable case sensitive item ids]. */ - public var enableCaseSensitiveItemIds: Bool? - public var disableLiveTvChannelUserDataName: Bool? - /** Gets or sets the metadata path. */ - public var metadataPath: String? - public var metadataNetworkPath: String? - /** Gets or sets the preferred metadata language. */ - public var preferredMetadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets characters to be replaced with a ' ' in strings to create a sort name. */ - public var sortReplaceCharacters: [String]? - /** Gets or sets characters to be removed from strings to create a sort name. */ - public var sortRemoveCharacters: [String]? - /** Gets or sets words to be removed from strings to create a sort name. */ - public var sortRemoveWords: [String]? - /** Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated. */ - public var minResumePct: Int? - /** Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. */ - public var maxResumePct: Int? - /** Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates.. */ - public var minResumeDurationSeconds: Int? - /** Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated. */ - public var minAudiobookResume: Int? - /** Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. */ - public var maxAudiobookResume: Int? - /** Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added/removed Some delay is necessary with some items because their creation is not atomic. It involves the creation of several different directories and files. */ - public var libraryMonitorDelay: Int? - /** Gets or sets the image saving convention. */ - public var imageSavingConvention: ImageSavingConvention? - public var metadataOptions: [MetadataOptions]? - public var skipDeserializationForBasicTypes: Bool? - public var serverName: String? - public var uICulture: String? - public var saveMetadataHidden: Bool? - public var contentTypes: [NameValuePair]? - public var remoteClientBitrateLimit: Int? - public var enableFolderView: Bool? - public var enableGroupingIntoCollections: Bool? - public var displaySpecialsWithinSeasons: Bool? - public var codecsUsed: [String]? - public var pluginRepositories: [RepositoryInfo]? - public var enableExternalContentInSuggestions: Bool? - public var imageExtractionTimeoutMs: Int? - public var pathSubstitutions: [PathSubstitution]? - /** Gets or sets a value indicating whether slow server responses should be logged as a warning. */ - public var enableSlowResponseWarning: Bool? - /** Gets or sets the threshold for the slow response time warning in ms. */ - public var slowResponseThresholdMs: Int64? - /** Gets or sets the cors hosts. */ - public var corsHosts: [String]? - /** Gets or sets the number of days we should retain activity logs. */ - public var activityLogRetentionDays: Int? - /** Gets or sets the how the library scan fans out. */ - public var libraryScanFanoutConcurrency: Int? - /** Gets or sets the how many metadata refreshes can run concurrently. */ - public var libraryMetadataRefreshConcurrency: Int? - /** Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder. */ - public var removeOldPlugins: Bool? - /** Gets or sets a value indicating whether clients should be allowed to upload logs. */ - public var allowClientLogUpload: Bool? - - public init(logFileRetentionDays: Int? = nil, isStartupWizardCompleted: Bool? = nil, cachePath: String? = nil, previousVersion: String? = nil, previousVersionStr: String? = nil, enableMetrics: Bool? = nil, enableNormalizedItemByNameIds: Bool? = nil, isPortAuthorized: Bool? = nil, quickConnectAvailable: Bool? = nil, enableCaseSensitiveItemIds: Bool? = nil, disableLiveTvChannelUserDataName: Bool? = nil, metadataPath: String? = nil, metadataNetworkPath: String? = nil, preferredMetadataLanguage: String? = nil, metadataCountryCode: String? = nil, sortReplaceCharacters: [String]? = nil, sortRemoveCharacters: [String]? = nil, sortRemoveWords: [String]? = nil, minResumePct: Int? = nil, maxResumePct: Int? = nil, minResumeDurationSeconds: Int? = nil, minAudiobookResume: Int? = nil, maxAudiobookResume: Int? = nil, libraryMonitorDelay: Int? = nil, imageSavingConvention: ImageSavingConvention? = nil, metadataOptions: [MetadataOptions]? = nil, skipDeserializationForBasicTypes: Bool? = nil, serverName: String? = nil, uICulture: String? = nil, saveMetadataHidden: Bool? = nil, contentTypes: [NameValuePair]? = nil, remoteClientBitrateLimit: Int? = nil, enableFolderView: Bool? = nil, enableGroupingIntoCollections: Bool? = nil, displaySpecialsWithinSeasons: Bool? = nil, codecsUsed: [String]? = nil, pluginRepositories: [RepositoryInfo]? = nil, enableExternalContentInSuggestions: Bool? = nil, imageExtractionTimeoutMs: Int? = nil, pathSubstitutions: [PathSubstitution]? = nil, enableSlowResponseWarning: Bool? = nil, slowResponseThresholdMs: Int64? = nil, corsHosts: [String]? = nil, activityLogRetentionDays: Int? = nil, libraryScanFanoutConcurrency: Int? = nil, libraryMetadataRefreshConcurrency: Int? = nil, removeOldPlugins: Bool? = nil, allowClientLogUpload: Bool? = nil) { - self.logFileRetentionDays = logFileRetentionDays - self.isStartupWizardCompleted = isStartupWizardCompleted - self.cachePath = cachePath - self.previousVersion = previousVersion - self.previousVersionStr = previousVersionStr - self.enableMetrics = enableMetrics - self.enableNormalizedItemByNameIds = enableNormalizedItemByNameIds - self.isPortAuthorized = isPortAuthorized - self.quickConnectAvailable = quickConnectAvailable - self.enableCaseSensitiveItemIds = enableCaseSensitiveItemIds - self.disableLiveTvChannelUserDataName = disableLiveTvChannelUserDataName - self.metadataPath = metadataPath - self.metadataNetworkPath = metadataNetworkPath - self.preferredMetadataLanguage = preferredMetadataLanguage - self.metadataCountryCode = metadataCountryCode - self.sortReplaceCharacters = sortReplaceCharacters - self.sortRemoveCharacters = sortRemoveCharacters - self.sortRemoveWords = sortRemoveWords - self.minResumePct = minResumePct - self.maxResumePct = maxResumePct - self.minResumeDurationSeconds = minResumeDurationSeconds - self.minAudiobookResume = minAudiobookResume - self.maxAudiobookResume = maxAudiobookResume - self.libraryMonitorDelay = libraryMonitorDelay - self.imageSavingConvention = imageSavingConvention - self.metadataOptions = metadataOptions - self.skipDeserializationForBasicTypes = skipDeserializationForBasicTypes - self.serverName = serverName - self.uICulture = uICulture - self.saveMetadataHidden = saveMetadataHidden - self.contentTypes = contentTypes - self.remoteClientBitrateLimit = remoteClientBitrateLimit - self.enableFolderView = enableFolderView - self.enableGroupingIntoCollections = enableGroupingIntoCollections - self.displaySpecialsWithinSeasons = displaySpecialsWithinSeasons - self.codecsUsed = codecsUsed - self.pluginRepositories = pluginRepositories - self.enableExternalContentInSuggestions = enableExternalContentInSuggestions - self.imageExtractionTimeoutMs = imageExtractionTimeoutMs - self.pathSubstitutions = pathSubstitutions - self.enableSlowResponseWarning = enableSlowResponseWarning - self.slowResponseThresholdMs = slowResponseThresholdMs - self.corsHosts = corsHosts - self.activityLogRetentionDays = activityLogRetentionDays - self.libraryScanFanoutConcurrency = libraryScanFanoutConcurrency - self.libraryMetadataRefreshConcurrency = libraryMetadataRefreshConcurrency - self.removeOldPlugins = removeOldPlugins - self.allowClientLogUpload = allowClientLogUpload - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case logFileRetentionDays = "LogFileRetentionDays" - case isStartupWizardCompleted = "IsStartupWizardCompleted" - case cachePath = "CachePath" - case previousVersion = "PreviousVersion" - case previousVersionStr = "PreviousVersionStr" - case enableMetrics = "EnableMetrics" - case enableNormalizedItemByNameIds = "EnableNormalizedItemByNameIds" - case isPortAuthorized = "IsPortAuthorized" - case quickConnectAvailable = "QuickConnectAvailable" - case enableCaseSensitiveItemIds = "EnableCaseSensitiveItemIds" - case disableLiveTvChannelUserDataName = "DisableLiveTvChannelUserDataName" - case metadataPath = "MetadataPath" - case metadataNetworkPath = "MetadataNetworkPath" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case sortReplaceCharacters = "SortReplaceCharacters" - case sortRemoveCharacters = "SortRemoveCharacters" - case sortRemoveWords = "SortRemoveWords" - case minResumePct = "MinResumePct" - case maxResumePct = "MaxResumePct" - case minResumeDurationSeconds = "MinResumeDurationSeconds" - case minAudiobookResume = "MinAudiobookResume" - case maxAudiobookResume = "MaxAudiobookResume" - case libraryMonitorDelay = "LibraryMonitorDelay" - case imageSavingConvention = "ImageSavingConvention" - case metadataOptions = "MetadataOptions" - case skipDeserializationForBasicTypes = "SkipDeserializationForBasicTypes" - case serverName = "ServerName" - case uICulture = "UICulture" - case saveMetadataHidden = "SaveMetadataHidden" - case contentTypes = "ContentTypes" - case remoteClientBitrateLimit = "RemoteClientBitrateLimit" - case enableFolderView = "EnableFolderView" - case enableGroupingIntoCollections = "EnableGroupingIntoCollections" - case displaySpecialsWithinSeasons = "DisplaySpecialsWithinSeasons" - case codecsUsed = "CodecsUsed" - case pluginRepositories = "PluginRepositories" - case enableExternalContentInSuggestions = "EnableExternalContentInSuggestions" - case imageExtractionTimeoutMs = "ImageExtractionTimeoutMs" - case pathSubstitutions = "PathSubstitutions" - case enableSlowResponseWarning = "EnableSlowResponseWarning" - case slowResponseThresholdMs = "SlowResponseThresholdMs" - case corsHosts = "CorsHosts" - case activityLogRetentionDays = "ActivityLogRetentionDays" - case libraryScanFanoutConcurrency = "LibraryScanFanoutConcurrency" - case libraryMetadataRefreshConcurrency = "LibraryMetadataRefreshConcurrency" - case removeOldPlugins = "RemoveOldPlugins" - case allowClientLogUpload = "AllowClientLogUpload" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(logFileRetentionDays, forKey: .logFileRetentionDays) - try encoderContainer.encodeIfPresent(isStartupWizardCompleted, forKey: .isStartupWizardCompleted) - try encoderContainer.encodeIfPresent(cachePath, forKey: .cachePath) - try encoderContainer.encodeIfPresent(previousVersion, forKey: .previousVersion) - try encoderContainer.encodeIfPresent(previousVersionStr, forKey: .previousVersionStr) - try encoderContainer.encodeIfPresent(enableMetrics, forKey: .enableMetrics) - try encoderContainer.encodeIfPresent(enableNormalizedItemByNameIds, forKey: .enableNormalizedItemByNameIds) - try encoderContainer.encodeIfPresent(isPortAuthorized, forKey: .isPortAuthorized) - try encoderContainer.encodeIfPresent(quickConnectAvailable, forKey: .quickConnectAvailable) - try encoderContainer.encodeIfPresent(enableCaseSensitiveItemIds, forKey: .enableCaseSensitiveItemIds) - try encoderContainer.encodeIfPresent(disableLiveTvChannelUserDataName, forKey: .disableLiveTvChannelUserDataName) - try encoderContainer.encodeIfPresent(metadataPath, forKey: .metadataPath) - try encoderContainer.encodeIfPresent(metadataNetworkPath, forKey: .metadataNetworkPath) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(sortReplaceCharacters, forKey: .sortReplaceCharacters) - try encoderContainer.encodeIfPresent(sortRemoveCharacters, forKey: .sortRemoveCharacters) - try encoderContainer.encodeIfPresent(sortRemoveWords, forKey: .sortRemoveWords) - try encoderContainer.encodeIfPresent(minResumePct, forKey: .minResumePct) - try encoderContainer.encodeIfPresent(maxResumePct, forKey: .maxResumePct) - try encoderContainer.encodeIfPresent(minResumeDurationSeconds, forKey: .minResumeDurationSeconds) - try encoderContainer.encodeIfPresent(minAudiobookResume, forKey: .minAudiobookResume) - try encoderContainer.encodeIfPresent(maxAudiobookResume, forKey: .maxAudiobookResume) - try encoderContainer.encodeIfPresent(libraryMonitorDelay, forKey: .libraryMonitorDelay) - try encoderContainer.encodeIfPresent(imageSavingConvention, forKey: .imageSavingConvention) - try encoderContainer.encodeIfPresent(metadataOptions, forKey: .metadataOptions) - try encoderContainer.encodeIfPresent(skipDeserializationForBasicTypes, forKey: .skipDeserializationForBasicTypes) - try encoderContainer.encodeIfPresent(serverName, forKey: .serverName) - try encoderContainer.encodeIfPresent(uICulture, forKey: .uICulture) - try encoderContainer.encodeIfPresent(saveMetadataHidden, forKey: .saveMetadataHidden) - try encoderContainer.encodeIfPresent(contentTypes, forKey: .contentTypes) - try encoderContainer.encodeIfPresent(remoteClientBitrateLimit, forKey: .remoteClientBitrateLimit) - try encoderContainer.encodeIfPresent(enableFolderView, forKey: .enableFolderView) - try encoderContainer.encodeIfPresent(enableGroupingIntoCollections, forKey: .enableGroupingIntoCollections) - try encoderContainer.encodeIfPresent(displaySpecialsWithinSeasons, forKey: .displaySpecialsWithinSeasons) - try encoderContainer.encodeIfPresent(codecsUsed, forKey: .codecsUsed) - try encoderContainer.encodeIfPresent(pluginRepositories, forKey: .pluginRepositories) - try encoderContainer.encodeIfPresent(enableExternalContentInSuggestions, forKey: .enableExternalContentInSuggestions) - try encoderContainer.encodeIfPresent(imageExtractionTimeoutMs, forKey: .imageExtractionTimeoutMs) - try encoderContainer.encodeIfPresent(pathSubstitutions, forKey: .pathSubstitutions) - try encoderContainer.encodeIfPresent(enableSlowResponseWarning, forKey: .enableSlowResponseWarning) - try encoderContainer.encodeIfPresent(slowResponseThresholdMs, forKey: .slowResponseThresholdMs) - try encoderContainer.encodeIfPresent(corsHosts, forKey: .corsHosts) - try encoderContainer.encodeIfPresent(activityLogRetentionDays, forKey: .activityLogRetentionDays) - try encoderContainer.encodeIfPresent(libraryScanFanoutConcurrency, forKey: .libraryScanFanoutConcurrency) - try encoderContainer.encodeIfPresent(libraryMetadataRefreshConcurrency, forKey: .libraryMetadataRefreshConcurrency) - try encoderContainer.encodeIfPresent(removeOldPlugins, forKey: .removeOldPlugins) - try encoderContainer.encodeIfPresent(allowClientLogUpload, forKey: .allowClientLogUpload) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateDeviceOptionsRequest.swift b/Sources/JellyfinAPI/Models/UpdateDeviceOptionsRequest.swift deleted file mode 100644 index 98af302ae..000000000 --- a/Sources/JellyfinAPI/Models/UpdateDeviceOptionsRequest.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// UpdateDeviceOptionsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** A dto representing custom options for a device. */ -public struct UpdateDeviceOptionsRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the id. */ - public var id: Int? - /** Gets or sets the device id. */ - public var deviceId: String? - /** Gets or sets the custom name. */ - public var customName: String? - - public init(id: Int? = nil, deviceId: String? = nil, customName: String? = nil) { - self.id = id - self.deviceId = deviceId - self.customName = customName - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case deviceId = "DeviceId" - case customName = "CustomName" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(deviceId, forKey: .deviceId) - try encoderContainer.encodeIfPresent(customName, forKey: .customName) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateDisplayPreferencesRequest.swift b/Sources/JellyfinAPI/Models/UpdateDisplayPreferencesRequest.swift deleted file mode 100644 index a0e81b38b..000000000 --- a/Sources/JellyfinAPI/Models/UpdateDisplayPreferencesRequest.swift +++ /dev/null @@ -1,98 +0,0 @@ -// -// UpdateDisplayPreferencesRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Defines the display preferences for any item that supports them (usually Folders). */ -public struct UpdateDisplayPreferencesRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the user id. */ - public var id: String? - /** Gets or sets the type of the view. */ - public var viewType: String? - /** Gets or sets the sort by. */ - public var sortBy: String? - /** Gets or sets the index by. */ - public var indexBy: String? - /** Gets or sets a value indicating whether [remember indexing]. */ - public var rememberIndexing: Bool? - /** Gets or sets the height of the primary image. */ - public var primaryImageHeight: Int? - /** Gets or sets the width of the primary image. */ - public var primaryImageWidth: Int? - /** Gets or sets the custom prefs. */ - public var customPrefs: [String: String]? - /** An enum representing the axis that should be scrolled. */ - public var scrollDirection: ScrollDirection? - /** Gets or sets a value indicating whether to show backdrops on this item. */ - public var showBackdrop: Bool? - /** Gets or sets a value indicating whether [remember sorting]. */ - public var rememberSorting: Bool? - /** An enum representing the sorting order. */ - public var sortOrder: SortOrder? - /** Gets or sets a value indicating whether [show sidebar]. */ - public var showSidebar: Bool? - /** Gets or sets the client. */ - public var client: String? - - public init(id: String? = nil, viewType: String? = nil, sortBy: String? = nil, indexBy: String? = nil, rememberIndexing: Bool? = nil, primaryImageHeight: Int? = nil, primaryImageWidth: Int? = nil, customPrefs: [String: String]? = nil, scrollDirection: ScrollDirection? = nil, showBackdrop: Bool? = nil, rememberSorting: Bool? = nil, sortOrder: SortOrder? = nil, showSidebar: Bool? = nil, client: String? = nil) { - self.id = id - self.viewType = viewType - self.sortBy = sortBy - self.indexBy = indexBy - self.rememberIndexing = rememberIndexing - self.primaryImageHeight = primaryImageHeight - self.primaryImageWidth = primaryImageWidth - self.customPrefs = customPrefs - self.scrollDirection = scrollDirection - self.showBackdrop = showBackdrop - self.rememberSorting = rememberSorting - self.sortOrder = sortOrder - self.showSidebar = showSidebar - self.client = client - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case viewType = "ViewType" - case sortBy = "SortBy" - case indexBy = "IndexBy" - case rememberIndexing = "RememberIndexing" - case primaryImageHeight = "PrimaryImageHeight" - case primaryImageWidth = "PrimaryImageWidth" - case customPrefs = "CustomPrefs" - case scrollDirection = "ScrollDirection" - case showBackdrop = "ShowBackdrop" - case rememberSorting = "RememberSorting" - case sortOrder = "SortOrder" - case showSidebar = "ShowSidebar" - case client = "Client" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(viewType, forKey: .viewType) - try encoderContainer.encodeIfPresent(sortBy, forKey: .sortBy) - try encoderContainer.encodeIfPresent(indexBy, forKey: .indexBy) - try encoderContainer.encodeIfPresent(rememberIndexing, forKey: .rememberIndexing) - try encoderContainer.encodeIfPresent(primaryImageHeight, forKey: .primaryImageHeight) - try encoderContainer.encodeIfPresent(primaryImageWidth, forKey: .primaryImageWidth) - try encoderContainer.encodeIfPresent(customPrefs, forKey: .customPrefs) - try encoderContainer.encodeIfPresent(scrollDirection, forKey: .scrollDirection) - try encoderContainer.encodeIfPresent(showBackdrop, forKey: .showBackdrop) - try encoderContainer.encodeIfPresent(rememberSorting, forKey: .rememberSorting) - try encoderContainer.encodeIfPresent(sortOrder, forKey: .sortOrder) - try encoderContainer.encodeIfPresent(showSidebar, forKey: .showSidebar) - try encoderContainer.encodeIfPresent(client, forKey: .client) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateInitialConfigurationRequest.swift b/Sources/JellyfinAPI/Models/UpdateInitialConfigurationRequest.swift deleted file mode 100644 index 7520d891c..000000000 --- a/Sources/JellyfinAPI/Models/UpdateInitialConfigurationRequest.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// UpdateInitialConfigurationRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The startup configuration DTO. */ -public struct UpdateInitialConfigurationRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets UI language culture. */ - public var uICulture: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - /** Gets or sets the preferred language for the metadata. */ - public var preferredMetadataLanguage: String? - - public init(uICulture: String? = nil, metadataCountryCode: String? = nil, preferredMetadataLanguage: String? = nil) { - self.uICulture = uICulture - self.metadataCountryCode = metadataCountryCode - self.preferredMetadataLanguage = preferredMetadataLanguage - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case uICulture = "UICulture" - case metadataCountryCode = "MetadataCountryCode" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(uICulture, forKey: .uICulture) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateItemRequest.swift b/Sources/JellyfinAPI/Models/UpdateItemRequest.swift deleted file mode 100644 index beec3e1e5..000000000 --- a/Sources/JellyfinAPI/Models/UpdateItemRequest.swift +++ /dev/null @@ -1,741 +0,0 @@ -// -// UpdateItemRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** This is strictly used as a data transfer object from the api layer. This holds information about a BaseItem in a format that is convenient for the client. */ -public struct UpdateItemRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - public var originalTitle: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the etag. */ - public var etag: String? - /** Gets or sets the type of the source. */ - public var sourceType: String? - /** Gets or sets the playlist item identifier. */ - public var playlistItemId: String? - /** Gets or sets the date created. */ - public var dateCreated: Date? - public var dateLastMediaAdded: Date? - public var extraType: String? - public var airsBeforeSeasonNumber: Int? - public var airsAfterSeasonNumber: Int? - public var airsBeforeEpisodeNumber: Int? - public var canDelete: Bool? - public var canDownload: Bool? - public var hasSubtitles: Bool? - public var preferredMetadataLanguage: String? - public var preferredMetadataCountryCode: String? - /** Gets or sets a value indicating whether [supports synchronize]. */ - public var supportsSync: Bool? - public var container: String? - /** Gets or sets the name of the sort. */ - public var sortName: String? - public var forcedSortName: String? - /** Gets or sets the video3 D format. */ - public var video3DFormat: Video3DFormat? - /** Gets or sets the premiere date. */ - public var premiereDate: Date? - /** Gets or sets the external urls. */ - public var externalUrls: [ExternalUrl]? - /** Gets or sets the media versions. */ - public var mediaSources: [MediaSourceInfo]? - /** Gets or sets the critic rating. */ - public var criticRating: Float? - public var productionLocations: [String]? - /** Gets or sets the path. */ - public var path: String? - public var enableMediaSourceDisplay: Bool? - /** Gets or sets the official rating. */ - public var officialRating: String? - /** Gets or sets the custom rating. */ - public var customRating: String? - /** Gets or sets the channel identifier. */ - public var channelId: String? - public var channelName: String? - /** Gets or sets the overview. */ - public var overview: String? - /** Gets or sets the taglines. */ - public var taglines: [String]? - /** Gets or sets the genres. */ - public var genres: [String]? - /** Gets or sets the community rating. */ - public var communityRating: Float? - /** Gets or sets the cumulative run time ticks. */ - public var cumulativeRunTimeTicks: Int64? - /** Gets or sets the run time ticks. */ - public var runTimeTicks: Int64? - /** Gets or sets the play access. */ - public var playAccess: PlayAccess? - /** Gets or sets the aspect ratio. */ - public var aspectRatio: String? - /** Gets or sets the production year. */ - public var productionYear: Int? - /** Gets or sets a value indicating whether this instance is place holder. */ - public var isPlaceHolder: Bool? - /** Gets or sets the number. */ - public var number: String? - public var channelNumber: String? - /** Gets or sets the index number. */ - public var indexNumber: Int? - /** Gets or sets the index number end. */ - public var indexNumberEnd: Int? - /** Gets or sets the parent index number. */ - public var parentIndexNumber: Int? - /** Gets or sets the trailer urls. */ - public var remoteTrailers: [MediaUrl]? - /** Gets or sets the provider ids. */ - public var providerIds: [String: String]? - /** Gets or sets a value indicating whether this instance is HD. */ - public var isHD: Bool? - /** Gets or sets a value indicating whether this instance is folder. */ - public var isFolder: Bool? - /** Gets or sets the parent id. */ - public var parentId: String? - /** The base item kind. */ - public var type: BaseItemKind? - /** Gets or sets the people. */ - public var people: [BaseItemPerson]? - /** Gets or sets the studios. */ - public var studios: [NameGuidPair]? - public var genreItems: [NameGuidPair]? - /** Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. */ - public var parentLogoItemId: String? - /** Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. */ - public var parentBackdropItemId: String? - /** Gets or sets the parent backdrop image tags. */ - public var parentBackdropImageTags: [String]? - /** Gets or sets the local trailer count. */ - public var localTrailerCount: Int? - public var userData: BaseItemDtoUserData? - /** Gets or sets the recursive item count. */ - public var recursiveItemCount: Int? - /** Gets or sets the child count. */ - public var childCount: Int? - /** Gets or sets the name of the series. */ - public var seriesName: String? - /** Gets or sets the series id. */ - public var seriesId: String? - /** Gets or sets the season identifier. */ - public var seasonId: String? - /** Gets or sets the special feature count. */ - public var specialFeatureCount: Int? - /** Gets or sets the display preferences id. */ - public var displayPreferencesId: String? - /** Gets or sets the status. */ - public var status: String? - /** Gets or sets the air time. */ - public var airTime: String? - /** Gets or sets the air days. */ - public var airDays: [DayOfWeek]? - /** Gets or sets the tags. */ - public var tags: [String]? - /** Gets or sets the primary image aspect ratio, after image enhancements. */ - public var primaryImageAspectRatio: Double? - /** Gets or sets the artists. */ - public var artists: [String]? - /** Gets or sets the artist items. */ - public var artistItems: [NameGuidPair]? - /** Gets or sets the album. */ - public var album: String? - /** Gets or sets the type of the collection. */ - public var collectionType: String? - /** Gets or sets the display order. */ - public var displayOrder: String? - /** Gets or sets the album id. */ - public var albumId: String? - /** Gets or sets the album image tag. */ - public var albumPrimaryImageTag: String? - /** Gets or sets the series primary image tag. */ - public var seriesPrimaryImageTag: String? - /** Gets or sets the album artist. */ - public var albumArtist: String? - /** Gets or sets the album artists. */ - public var albumArtists: [NameGuidPair]? - /** Gets or sets the name of the season. */ - public var seasonName: String? - /** Gets or sets the media streams. */ - public var mediaStreams: [MediaStream]? - /** Gets or sets the type of the video. */ - public var videoType: VideoType? - /** Gets or sets the part count. */ - public var partCount: Int? - public var mediaSourceCount: Int? - /** Gets or sets the image tags. */ - public var imageTags: [String: String]? - /** Gets or sets the backdrop image tags. */ - public var backdropImageTags: [String]? - /** Gets or sets the screenshot image tags. */ - public var screenshotImageTags: [String]? - /** Gets or sets the parent logo image tag. */ - public var parentLogoImageTag: String? - /** Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. */ - public var parentArtItemId: String? - /** Gets or sets the parent art image tag. */ - public var parentArtImageTag: String? - /** Gets or sets the series thumb image tag. */ - public var seriesThumbImageTag: String? - public var imageBlurHashes: BaseItemDtoImageBlurHashes? - /** Gets or sets the series studio. */ - public var seriesStudio: String? - /** Gets or sets the parent thumb item id. */ - public var parentThumbItemId: String? - /** Gets or sets the parent thumb image tag. */ - public var parentThumbImageTag: String? - /** Gets or sets the parent primary image item identifier. */ - public var parentPrimaryImageItemId: String? - /** Gets or sets the parent primary image tag. */ - public var parentPrimaryImageTag: String? - /** Gets or sets the chapters. */ - public var chapters: [ChapterInfo]? - /** Gets or sets the type of the location. */ - public var locationType: LocationType? - /** Gets or sets the type of the iso. */ - public var isoType: IsoType? - /** Gets or sets the type of the media. */ - public var mediaType: String? - /** Gets or sets the end date. */ - public var endDate: Date? - /** Gets or sets the locked fields. */ - public var lockedFields: [MetadataField]? - /** Gets or sets the trailer count. */ - public var trailerCount: Int? - /** Gets or sets the movie count. */ - public var movieCount: Int? - /** Gets or sets the series count. */ - public var seriesCount: Int? - public var programCount: Int? - /** Gets or sets the episode count. */ - public var episodeCount: Int? - /** Gets or sets the song count. */ - public var songCount: Int? - /** Gets or sets the album count. */ - public var albumCount: Int? - public var artistCount: Int? - /** Gets or sets the music video count. */ - public var musicVideoCount: Int? - /** Gets or sets a value indicating whether [enable internet providers]. */ - public var lockData: Bool? - public var width: Int? - public var height: Int? - public var cameraMake: String? - public var cameraModel: String? - public var software: String? - public var exposureTime: Double? - public var focalLength: Double? - public var imageOrientation: ImageOrientation? - public var aperture: Double? - public var shutterSpeed: Double? - public var latitude: Double? - public var longitude: Double? - public var altitude: Double? - public var isoSpeedRating: Int? - /** Gets or sets the series timer identifier. */ - public var seriesTimerId: String? - /** Gets or sets the program identifier. */ - public var programId: String? - /** Gets or sets the channel primary image tag. */ - public var channelPrimaryImageTag: String? - /** Gets or sets the start date of the recording, in UTC. */ - public var startDate: Date? - /** Gets or sets the completion percentage. */ - public var completionPercentage: Double? - /** Gets or sets a value indicating whether this instance is repeat. */ - public var isRepeat: Bool? - /** Gets or sets the episode title. */ - public var episodeTitle: String? - /** Gets or sets the type of the channel. */ - public var channelType: ChannelType? - /** Gets or sets the audio. */ - public var audio: ProgramAudio? - /** Gets or sets a value indicating whether this instance is movie. */ - public var isMovie: Bool? - /** Gets or sets a value indicating whether this instance is sports. */ - public var isSports: Bool? - /** Gets or sets a value indicating whether this instance is series. */ - public var isSeries: Bool? - /** Gets or sets a value indicating whether this instance is live. */ - public var isLive: Bool? - /** Gets or sets a value indicating whether this instance is news. */ - public var isNews: Bool? - /** Gets or sets a value indicating whether this instance is kids. */ - public var isKids: Bool? - /** Gets or sets a value indicating whether this instance is premiere. */ - public var isPremiere: Bool? - /** Gets or sets the timer identifier. */ - public var timerId: String? - - public init(name: String? = nil, originalTitle: String? = nil, serverId: String? = nil, id: String? = nil, etag: String? = nil, sourceType: String? = nil, playlistItemId: String? = nil, dateCreated: Date? = nil, dateLastMediaAdded: Date? = nil, extraType: String? = nil, airsBeforeSeasonNumber: Int? = nil, airsAfterSeasonNumber: Int? = nil, airsBeforeEpisodeNumber: Int? = nil, canDelete: Bool? = nil, canDownload: Bool? = nil, hasSubtitles: Bool? = nil, preferredMetadataLanguage: String? = nil, preferredMetadataCountryCode: String? = nil, supportsSync: Bool? = nil, container: String? = nil, sortName: String? = nil, forcedSortName: String? = nil, video3DFormat: Video3DFormat? = nil, premiereDate: Date? = nil, externalUrls: [ExternalUrl]? = nil, mediaSources: [MediaSourceInfo]? = nil, criticRating: Float? = nil, productionLocations: [String]? = nil, path: String? = nil, enableMediaSourceDisplay: Bool? = nil, officialRating: String? = nil, customRating: String? = nil, channelId: String? = nil, channelName: String? = nil, overview: String? = nil, taglines: [String]? = nil, genres: [String]? = nil, communityRating: Float? = nil, cumulativeRunTimeTicks: Int64? = nil, runTimeTicks: Int64? = nil, playAccess: PlayAccess? = nil, aspectRatio: String? = nil, productionYear: Int? = nil, isPlaceHolder: Bool? = nil, number: String? = nil, channelNumber: String? = nil, indexNumber: Int? = nil, indexNumberEnd: Int? = nil, parentIndexNumber: Int? = nil, remoteTrailers: [MediaUrl]? = nil, providerIds: [String: String]? = nil, isHD: Bool? = nil, isFolder: Bool? = nil, parentId: String? = nil, type: BaseItemKind? = nil, people: [BaseItemPerson]? = nil, studios: [NameGuidPair]? = nil, genreItems: [NameGuidPair]? = nil, parentLogoItemId: String? = nil, parentBackdropItemId: String? = nil, parentBackdropImageTags: [String]? = nil, localTrailerCount: Int? = nil, userData: BaseItemDtoUserData? = nil, recursiveItemCount: Int? = nil, childCount: Int? = nil, seriesName: String? = nil, seriesId: String? = nil, seasonId: String? = nil, specialFeatureCount: Int? = nil, displayPreferencesId: String? = nil, status: String? = nil, airTime: String? = nil, airDays: [DayOfWeek]? = nil, tags: [String]? = nil, primaryImageAspectRatio: Double? = nil, artists: [String]? = nil, artistItems: [NameGuidPair]? = nil, album: String? = nil, collectionType: String? = nil, displayOrder: String? = nil, albumId: String? = nil, albumPrimaryImageTag: String? = nil, seriesPrimaryImageTag: String? = nil, albumArtist: String? = nil, albumArtists: [NameGuidPair]? = nil, seasonName: String? = nil, mediaStreams: [MediaStream]? = nil, videoType: VideoType? = nil, partCount: Int? = nil, mediaSourceCount: Int? = nil, imageTags: [String: String]? = nil, backdropImageTags: [String]? = nil, screenshotImageTags: [String]? = nil, parentLogoImageTag: String? = nil, parentArtItemId: String? = nil, parentArtImageTag: String? = nil, seriesThumbImageTag: String? = nil, imageBlurHashes: BaseItemDtoImageBlurHashes? = nil, seriesStudio: String? = nil, parentThumbItemId: String? = nil, parentThumbImageTag: String? = nil, parentPrimaryImageItemId: String? = nil, parentPrimaryImageTag: String? = nil, chapters: [ChapterInfo]? = nil, locationType: LocationType? = nil, isoType: IsoType? = nil, mediaType: String? = nil, endDate: Date? = nil, lockedFields: [MetadataField]? = nil, trailerCount: Int? = nil, movieCount: Int? = nil, seriesCount: Int? = nil, programCount: Int? = nil, episodeCount: Int? = nil, songCount: Int? = nil, albumCount: Int? = nil, artistCount: Int? = nil, musicVideoCount: Int? = nil, lockData: Bool? = nil, width: Int? = nil, height: Int? = nil, cameraMake: String? = nil, cameraModel: String? = nil, software: String? = nil, exposureTime: Double? = nil, focalLength: Double? = nil, imageOrientation: ImageOrientation? = nil, aperture: Double? = nil, shutterSpeed: Double? = nil, latitude: Double? = nil, longitude: Double? = nil, altitude: Double? = nil, isoSpeedRating: Int? = nil, seriesTimerId: String? = nil, programId: String? = nil, channelPrimaryImageTag: String? = nil, startDate: Date? = nil, completionPercentage: Double? = nil, isRepeat: Bool? = nil, episodeTitle: String? = nil, channelType: ChannelType? = nil, audio: ProgramAudio? = nil, isMovie: Bool? = nil, isSports: Bool? = nil, isSeries: Bool? = nil, isLive: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isPremiere: Bool? = nil, timerId: String? = nil) { - self.name = name - self.originalTitle = originalTitle - self.serverId = serverId - self.id = id - self.etag = etag - self.sourceType = sourceType - self.playlistItemId = playlistItemId - self.dateCreated = dateCreated - self.dateLastMediaAdded = dateLastMediaAdded - self.extraType = extraType - self.airsBeforeSeasonNumber = airsBeforeSeasonNumber - self.airsAfterSeasonNumber = airsAfterSeasonNumber - self.airsBeforeEpisodeNumber = airsBeforeEpisodeNumber - self.canDelete = canDelete - self.canDownload = canDownload - self.hasSubtitles = hasSubtitles - self.preferredMetadataLanguage = preferredMetadataLanguage - self.preferredMetadataCountryCode = preferredMetadataCountryCode - self.supportsSync = supportsSync - self.container = container - self.sortName = sortName - self.forcedSortName = forcedSortName - self.video3DFormat = video3DFormat - self.premiereDate = premiereDate - self.externalUrls = externalUrls - self.mediaSources = mediaSources - self.criticRating = criticRating - self.productionLocations = productionLocations - self.path = path - self.enableMediaSourceDisplay = enableMediaSourceDisplay - self.officialRating = officialRating - self.customRating = customRating - self.channelId = channelId - self.channelName = channelName - self.overview = overview - self.taglines = taglines - self.genres = genres - self.communityRating = communityRating - self.cumulativeRunTimeTicks = cumulativeRunTimeTicks - self.runTimeTicks = runTimeTicks - self.playAccess = playAccess - self.aspectRatio = aspectRatio - self.productionYear = productionYear - self.isPlaceHolder = isPlaceHolder - self.number = number - self.channelNumber = channelNumber - self.indexNumber = indexNumber - self.indexNumberEnd = indexNumberEnd - self.parentIndexNumber = parentIndexNumber - self.remoteTrailers = remoteTrailers - self.providerIds = providerIds - self.isHD = isHD - self.isFolder = isFolder - self.parentId = parentId - self.type = type - self.people = people - self.studios = studios - self.genreItems = genreItems - self.parentLogoItemId = parentLogoItemId - self.parentBackdropItemId = parentBackdropItemId - self.parentBackdropImageTags = parentBackdropImageTags - self.localTrailerCount = localTrailerCount - self.userData = userData - self.recursiveItemCount = recursiveItemCount - self.childCount = childCount - self.seriesName = seriesName - self.seriesId = seriesId - self.seasonId = seasonId - self.specialFeatureCount = specialFeatureCount - self.displayPreferencesId = displayPreferencesId - self.status = status - self.airTime = airTime - self.airDays = airDays - self.tags = tags - self.primaryImageAspectRatio = primaryImageAspectRatio - self.artists = artists - self.artistItems = artistItems - self.album = album - self.collectionType = collectionType - self.displayOrder = displayOrder - self.albumId = albumId - self.albumPrimaryImageTag = albumPrimaryImageTag - self.seriesPrimaryImageTag = seriesPrimaryImageTag - self.albumArtist = albumArtist - self.albumArtists = albumArtists - self.seasonName = seasonName - self.mediaStreams = mediaStreams - self.videoType = videoType - self.partCount = partCount - self.mediaSourceCount = mediaSourceCount - self.imageTags = imageTags - self.backdropImageTags = backdropImageTags - self.screenshotImageTags = screenshotImageTags - self.parentLogoImageTag = parentLogoImageTag - self.parentArtItemId = parentArtItemId - self.parentArtImageTag = parentArtImageTag - self.seriesThumbImageTag = seriesThumbImageTag - self.imageBlurHashes = imageBlurHashes - self.seriesStudio = seriesStudio - self.parentThumbItemId = parentThumbItemId - self.parentThumbImageTag = parentThumbImageTag - self.parentPrimaryImageItemId = parentPrimaryImageItemId - self.parentPrimaryImageTag = parentPrimaryImageTag - self.chapters = chapters - self.locationType = locationType - self.isoType = isoType - self.mediaType = mediaType - self.endDate = endDate - self.lockedFields = lockedFields - self.trailerCount = trailerCount - self.movieCount = movieCount - self.seriesCount = seriesCount - self.programCount = programCount - self.episodeCount = episodeCount - self.songCount = songCount - self.albumCount = albumCount - self.artistCount = artistCount - self.musicVideoCount = musicVideoCount - self.lockData = lockData - self.width = width - self.height = height - self.cameraMake = cameraMake - self.cameraModel = cameraModel - self.software = software - self.exposureTime = exposureTime - self.focalLength = focalLength - self.imageOrientation = imageOrientation - self.aperture = aperture - self.shutterSpeed = shutterSpeed - self.latitude = latitude - self.longitude = longitude - self.altitude = altitude - self.isoSpeedRating = isoSpeedRating - self.seriesTimerId = seriesTimerId - self.programId = programId - self.channelPrimaryImageTag = channelPrimaryImageTag - self.startDate = startDate - self.completionPercentage = completionPercentage - self.isRepeat = isRepeat - self.episodeTitle = episodeTitle - self.channelType = channelType - self.audio = audio - self.isMovie = isMovie - self.isSports = isSports - self.isSeries = isSeries - self.isLive = isLive - self.isNews = isNews - self.isKids = isKids - self.isPremiere = isPremiere - self.timerId = timerId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case originalTitle = "OriginalTitle" - case serverId = "ServerId" - case id = "Id" - case etag = "Etag" - case sourceType = "SourceType" - case playlistItemId = "PlaylistItemId" - case dateCreated = "DateCreated" - case dateLastMediaAdded = "DateLastMediaAdded" - case extraType = "ExtraType" - case airsBeforeSeasonNumber = "AirsBeforeSeasonNumber" - case airsAfterSeasonNumber = "AirsAfterSeasonNumber" - case airsBeforeEpisodeNumber = "AirsBeforeEpisodeNumber" - case canDelete = "CanDelete" - case canDownload = "CanDownload" - case hasSubtitles = "HasSubtitles" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case preferredMetadataCountryCode = "PreferredMetadataCountryCode" - case supportsSync = "SupportsSync" - case container = "Container" - case sortName = "SortName" - case forcedSortName = "ForcedSortName" - case video3DFormat = "Video3DFormat" - case premiereDate = "PremiereDate" - case externalUrls = "ExternalUrls" - case mediaSources = "MediaSources" - case criticRating = "CriticRating" - case productionLocations = "ProductionLocations" - case path = "Path" - case enableMediaSourceDisplay = "EnableMediaSourceDisplay" - case officialRating = "OfficialRating" - case customRating = "CustomRating" - case channelId = "ChannelId" - case channelName = "ChannelName" - case overview = "Overview" - case taglines = "Taglines" - case genres = "Genres" - case communityRating = "CommunityRating" - case cumulativeRunTimeTicks = "CumulativeRunTimeTicks" - case runTimeTicks = "RunTimeTicks" - case playAccess = "PlayAccess" - case aspectRatio = "AspectRatio" - case productionYear = "ProductionYear" - case isPlaceHolder = "IsPlaceHolder" - case number = "Number" - case channelNumber = "ChannelNumber" - case indexNumber = "IndexNumber" - case indexNumberEnd = "IndexNumberEnd" - case parentIndexNumber = "ParentIndexNumber" - case remoteTrailers = "RemoteTrailers" - case providerIds = "ProviderIds" - case isHD = "IsHD" - case isFolder = "IsFolder" - case parentId = "ParentId" - case type = "Type" - case people = "People" - case studios = "Studios" - case genreItems = "GenreItems" - case parentLogoItemId = "ParentLogoItemId" - case parentBackdropItemId = "ParentBackdropItemId" - case parentBackdropImageTags = "ParentBackdropImageTags" - case localTrailerCount = "LocalTrailerCount" - case userData = "UserData" - case recursiveItemCount = "RecursiveItemCount" - case childCount = "ChildCount" - case seriesName = "SeriesName" - case seriesId = "SeriesId" - case seasonId = "SeasonId" - case specialFeatureCount = "SpecialFeatureCount" - case displayPreferencesId = "DisplayPreferencesId" - case status = "Status" - case airTime = "AirTime" - case airDays = "AirDays" - case tags = "Tags" - case primaryImageAspectRatio = "PrimaryImageAspectRatio" - case artists = "Artists" - case artistItems = "ArtistItems" - case album = "Album" - case collectionType = "CollectionType" - case displayOrder = "DisplayOrder" - case albumId = "AlbumId" - case albumPrimaryImageTag = "AlbumPrimaryImageTag" - case seriesPrimaryImageTag = "SeriesPrimaryImageTag" - case albumArtist = "AlbumArtist" - case albumArtists = "AlbumArtists" - case seasonName = "SeasonName" - case mediaStreams = "MediaStreams" - case videoType = "VideoType" - case partCount = "PartCount" - case mediaSourceCount = "MediaSourceCount" - case imageTags = "ImageTags" - case backdropImageTags = "BackdropImageTags" - case screenshotImageTags = "ScreenshotImageTags" - case parentLogoImageTag = "ParentLogoImageTag" - case parentArtItemId = "ParentArtItemId" - case parentArtImageTag = "ParentArtImageTag" - case seriesThumbImageTag = "SeriesThumbImageTag" - case imageBlurHashes = "ImageBlurHashes" - case seriesStudio = "SeriesStudio" - case parentThumbItemId = "ParentThumbItemId" - case parentThumbImageTag = "ParentThumbImageTag" - case parentPrimaryImageItemId = "ParentPrimaryImageItemId" - case parentPrimaryImageTag = "ParentPrimaryImageTag" - case chapters = "Chapters" - case locationType = "LocationType" - case isoType = "IsoType" - case mediaType = "MediaType" - case endDate = "EndDate" - case lockedFields = "LockedFields" - case trailerCount = "TrailerCount" - case movieCount = "MovieCount" - case seriesCount = "SeriesCount" - case programCount = "ProgramCount" - case episodeCount = "EpisodeCount" - case songCount = "SongCount" - case albumCount = "AlbumCount" - case artistCount = "ArtistCount" - case musicVideoCount = "MusicVideoCount" - case lockData = "LockData" - case width = "Width" - case height = "Height" - case cameraMake = "CameraMake" - case cameraModel = "CameraModel" - case software = "Software" - case exposureTime = "ExposureTime" - case focalLength = "FocalLength" - case imageOrientation = "ImageOrientation" - case aperture = "Aperture" - case shutterSpeed = "ShutterSpeed" - case latitude = "Latitude" - case longitude = "Longitude" - case altitude = "Altitude" - case isoSpeedRating = "IsoSpeedRating" - case seriesTimerId = "SeriesTimerId" - case programId = "ProgramId" - case channelPrimaryImageTag = "ChannelPrimaryImageTag" - case startDate = "StartDate" - case completionPercentage = "CompletionPercentage" - case isRepeat = "IsRepeat" - case episodeTitle = "EpisodeTitle" - case channelType = "ChannelType" - case audio = "Audio" - case isMovie = "IsMovie" - case isSports = "IsSports" - case isSeries = "IsSeries" - case isLive = "IsLive" - case isNews = "IsNews" - case isKids = "IsKids" - case isPremiere = "IsPremiere" - case timerId = "TimerId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(originalTitle, forKey: .originalTitle) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(etag, forKey: .etag) - try encoderContainer.encodeIfPresent(sourceType, forKey: .sourceType) - try encoderContainer.encodeIfPresent(playlistItemId, forKey: .playlistItemId) - try encoderContainer.encodeIfPresent(dateCreated, forKey: .dateCreated) - try encoderContainer.encodeIfPresent(dateLastMediaAdded, forKey: .dateLastMediaAdded) - try encoderContainer.encodeIfPresent(extraType, forKey: .extraType) - try encoderContainer.encodeIfPresent(airsBeforeSeasonNumber, forKey: .airsBeforeSeasonNumber) - try encoderContainer.encodeIfPresent(airsAfterSeasonNumber, forKey: .airsAfterSeasonNumber) - try encoderContainer.encodeIfPresent(airsBeforeEpisodeNumber, forKey: .airsBeforeEpisodeNumber) - try encoderContainer.encodeIfPresent(canDelete, forKey: .canDelete) - try encoderContainer.encodeIfPresent(canDownload, forKey: .canDownload) - try encoderContainer.encodeIfPresent(hasSubtitles, forKey: .hasSubtitles) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(preferredMetadataCountryCode, forKey: .preferredMetadataCountryCode) - try encoderContainer.encodeIfPresent(supportsSync, forKey: .supportsSync) - try encoderContainer.encodeIfPresent(container, forKey: .container) - try encoderContainer.encodeIfPresent(sortName, forKey: .sortName) - try encoderContainer.encodeIfPresent(forcedSortName, forKey: .forcedSortName) - try encoderContainer.encodeIfPresent(video3DFormat, forKey: .video3DFormat) - try encoderContainer.encodeIfPresent(premiereDate, forKey: .premiereDate) - try encoderContainer.encodeIfPresent(externalUrls, forKey: .externalUrls) - try encoderContainer.encodeIfPresent(mediaSources, forKey: .mediaSources) - try encoderContainer.encodeIfPresent(criticRating, forKey: .criticRating) - try encoderContainer.encodeIfPresent(productionLocations, forKey: .productionLocations) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(enableMediaSourceDisplay, forKey: .enableMediaSourceDisplay) - try encoderContainer.encodeIfPresent(officialRating, forKey: .officialRating) - try encoderContainer.encodeIfPresent(customRating, forKey: .customRating) - try encoderContainer.encodeIfPresent(channelId, forKey: .channelId) - try encoderContainer.encodeIfPresent(channelName, forKey: .channelName) - try encoderContainer.encodeIfPresent(overview, forKey: .overview) - try encoderContainer.encodeIfPresent(taglines, forKey: .taglines) - try encoderContainer.encodeIfPresent(genres, forKey: .genres) - try encoderContainer.encodeIfPresent(communityRating, forKey: .communityRating) - try encoderContainer.encodeIfPresent(cumulativeRunTimeTicks, forKey: .cumulativeRunTimeTicks) - try encoderContainer.encodeIfPresent(runTimeTicks, forKey: .runTimeTicks) - try encoderContainer.encodeIfPresent(playAccess, forKey: .playAccess) - try encoderContainer.encodeIfPresent(aspectRatio, forKey: .aspectRatio) - try encoderContainer.encodeIfPresent(productionYear, forKey: .productionYear) - try encoderContainer.encodeIfPresent(isPlaceHolder, forKey: .isPlaceHolder) - try encoderContainer.encodeIfPresent(number, forKey: .number) - try encoderContainer.encodeIfPresent(channelNumber, forKey: .channelNumber) - try encoderContainer.encodeIfPresent(indexNumber, forKey: .indexNumber) - try encoderContainer.encodeIfPresent(indexNumberEnd, forKey: .indexNumberEnd) - try encoderContainer.encodeIfPresent(parentIndexNumber, forKey: .parentIndexNumber) - try encoderContainer.encodeIfPresent(remoteTrailers, forKey: .remoteTrailers) - try encoderContainer.encodeIfPresent(providerIds, forKey: .providerIds) - try encoderContainer.encodeIfPresent(isHD, forKey: .isHD) - try encoderContainer.encodeIfPresent(isFolder, forKey: .isFolder) - try encoderContainer.encodeIfPresent(parentId, forKey: .parentId) - try encoderContainer.encodeIfPresent(type, forKey: .type) - try encoderContainer.encodeIfPresent(people, forKey: .people) - try encoderContainer.encodeIfPresent(studios, forKey: .studios) - try encoderContainer.encodeIfPresent(genreItems, forKey: .genreItems) - try encoderContainer.encodeIfPresent(parentLogoItemId, forKey: .parentLogoItemId) - try encoderContainer.encodeIfPresent(parentBackdropItemId, forKey: .parentBackdropItemId) - try encoderContainer.encodeIfPresent(parentBackdropImageTags, forKey: .parentBackdropImageTags) - try encoderContainer.encodeIfPresent(localTrailerCount, forKey: .localTrailerCount) - try encoderContainer.encodeIfPresent(userData, forKey: .userData) - try encoderContainer.encodeIfPresent(recursiveItemCount, forKey: .recursiveItemCount) - try encoderContainer.encodeIfPresent(childCount, forKey: .childCount) - try encoderContainer.encodeIfPresent(seriesName, forKey: .seriesName) - try encoderContainer.encodeIfPresent(seriesId, forKey: .seriesId) - try encoderContainer.encodeIfPresent(seasonId, forKey: .seasonId) - try encoderContainer.encodeIfPresent(specialFeatureCount, forKey: .specialFeatureCount) - try encoderContainer.encodeIfPresent(displayPreferencesId, forKey: .displayPreferencesId) - try encoderContainer.encodeIfPresent(status, forKey: .status) - try encoderContainer.encodeIfPresent(airTime, forKey: .airTime) - try encoderContainer.encodeIfPresent(airDays, forKey: .airDays) - try encoderContainer.encodeIfPresent(tags, forKey: .tags) - try encoderContainer.encodeIfPresent(primaryImageAspectRatio, forKey: .primaryImageAspectRatio) - try encoderContainer.encodeIfPresent(artists, forKey: .artists) - try encoderContainer.encodeIfPresent(artistItems, forKey: .artistItems) - try encoderContainer.encodeIfPresent(album, forKey: .album) - try encoderContainer.encodeIfPresent(collectionType, forKey: .collectionType) - try encoderContainer.encodeIfPresent(displayOrder, forKey: .displayOrder) - try encoderContainer.encodeIfPresent(albumId, forKey: .albumId) - try encoderContainer.encodeIfPresent(albumPrimaryImageTag, forKey: .albumPrimaryImageTag) - try encoderContainer.encodeIfPresent(seriesPrimaryImageTag, forKey: .seriesPrimaryImageTag) - try encoderContainer.encodeIfPresent(albumArtist, forKey: .albumArtist) - try encoderContainer.encodeIfPresent(albumArtists, forKey: .albumArtists) - try encoderContainer.encodeIfPresent(seasonName, forKey: .seasonName) - try encoderContainer.encodeIfPresent(mediaStreams, forKey: .mediaStreams) - try encoderContainer.encodeIfPresent(videoType, forKey: .videoType) - try encoderContainer.encodeIfPresent(partCount, forKey: .partCount) - try encoderContainer.encodeIfPresent(mediaSourceCount, forKey: .mediaSourceCount) - try encoderContainer.encodeIfPresent(imageTags, forKey: .imageTags) - try encoderContainer.encodeIfPresent(backdropImageTags, forKey: .backdropImageTags) - try encoderContainer.encodeIfPresent(screenshotImageTags, forKey: .screenshotImageTags) - try encoderContainer.encodeIfPresent(parentLogoImageTag, forKey: .parentLogoImageTag) - try encoderContainer.encodeIfPresent(parentArtItemId, forKey: .parentArtItemId) - try encoderContainer.encodeIfPresent(parentArtImageTag, forKey: .parentArtImageTag) - try encoderContainer.encodeIfPresent(seriesThumbImageTag, forKey: .seriesThumbImageTag) - try encoderContainer.encodeIfPresent(imageBlurHashes, forKey: .imageBlurHashes) - try encoderContainer.encodeIfPresent(seriesStudio, forKey: .seriesStudio) - try encoderContainer.encodeIfPresent(parentThumbItemId, forKey: .parentThumbItemId) - try encoderContainer.encodeIfPresent(parentThumbImageTag, forKey: .parentThumbImageTag) - try encoderContainer.encodeIfPresent(parentPrimaryImageItemId, forKey: .parentPrimaryImageItemId) - try encoderContainer.encodeIfPresent(parentPrimaryImageTag, forKey: .parentPrimaryImageTag) - try encoderContainer.encodeIfPresent(chapters, forKey: .chapters) - try encoderContainer.encodeIfPresent(locationType, forKey: .locationType) - try encoderContainer.encodeIfPresent(isoType, forKey: .isoType) - try encoderContainer.encodeIfPresent(mediaType, forKey: .mediaType) - try encoderContainer.encodeIfPresent(endDate, forKey: .endDate) - try encoderContainer.encodeIfPresent(lockedFields, forKey: .lockedFields) - try encoderContainer.encodeIfPresent(trailerCount, forKey: .trailerCount) - try encoderContainer.encodeIfPresent(movieCount, forKey: .movieCount) - try encoderContainer.encodeIfPresent(seriesCount, forKey: .seriesCount) - try encoderContainer.encodeIfPresent(programCount, forKey: .programCount) - try encoderContainer.encodeIfPresent(episodeCount, forKey: .episodeCount) - try encoderContainer.encodeIfPresent(songCount, forKey: .songCount) - try encoderContainer.encodeIfPresent(albumCount, forKey: .albumCount) - try encoderContainer.encodeIfPresent(artistCount, forKey: .artistCount) - try encoderContainer.encodeIfPresent(musicVideoCount, forKey: .musicVideoCount) - try encoderContainer.encodeIfPresent(lockData, forKey: .lockData) - try encoderContainer.encodeIfPresent(width, forKey: .width) - try encoderContainer.encodeIfPresent(height, forKey: .height) - try encoderContainer.encodeIfPresent(cameraMake, forKey: .cameraMake) - try encoderContainer.encodeIfPresent(cameraModel, forKey: .cameraModel) - try encoderContainer.encodeIfPresent(software, forKey: .software) - try encoderContainer.encodeIfPresent(exposureTime, forKey: .exposureTime) - try encoderContainer.encodeIfPresent(focalLength, forKey: .focalLength) - try encoderContainer.encodeIfPresent(imageOrientation, forKey: .imageOrientation) - try encoderContainer.encodeIfPresent(aperture, forKey: .aperture) - try encoderContainer.encodeIfPresent(shutterSpeed, forKey: .shutterSpeed) - try encoderContainer.encodeIfPresent(latitude, forKey: .latitude) - try encoderContainer.encodeIfPresent(longitude, forKey: .longitude) - try encoderContainer.encodeIfPresent(altitude, forKey: .altitude) - try encoderContainer.encodeIfPresent(isoSpeedRating, forKey: .isoSpeedRating) - try encoderContainer.encodeIfPresent(seriesTimerId, forKey: .seriesTimerId) - try encoderContainer.encodeIfPresent(programId, forKey: .programId) - try encoderContainer.encodeIfPresent(channelPrimaryImageTag, forKey: .channelPrimaryImageTag) - try encoderContainer.encodeIfPresent(startDate, forKey: .startDate) - try encoderContainer.encodeIfPresent(completionPercentage, forKey: .completionPercentage) - try encoderContainer.encodeIfPresent(isRepeat, forKey: .isRepeat) - try encoderContainer.encodeIfPresent(episodeTitle, forKey: .episodeTitle) - try encoderContainer.encodeIfPresent(channelType, forKey: .channelType) - try encoderContainer.encodeIfPresent(audio, forKey: .audio) - try encoderContainer.encodeIfPresent(isMovie, forKey: .isMovie) - try encoderContainer.encodeIfPresent(isSports, forKey: .isSports) - try encoderContainer.encodeIfPresent(isSeries, forKey: .isSeries) - try encoderContainer.encodeIfPresent(isLive, forKey: .isLive) - try encoderContainer.encodeIfPresent(isNews, forKey: .isNews) - try encoderContainer.encodeIfPresent(isKids, forKey: .isKids) - try encoderContainer.encodeIfPresent(isPremiere, forKey: .isPremiere) - try encoderContainer.encodeIfPresent(timerId, forKey: .timerId) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateLibraryOptionsDto.swift b/Sources/JellyfinAPI/Models/UpdateLibraryOptionsDto.swift deleted file mode 100644 index ec2077184..000000000 --- a/Sources/JellyfinAPI/Models/UpdateLibraryOptionsDto.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// UpdateLibraryOptionsDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Update library options dto. */ -public struct UpdateLibraryOptionsDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the library item id. */ - public var id: String? - public var libraryOptions: AddVirtualFolderDtoLibraryOptions? - - public init(id: String? = nil, libraryOptions: AddVirtualFolderDtoLibraryOptions? = nil) { - self.id = id - self.libraryOptions = libraryOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case libraryOptions = "LibraryOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(libraryOptions, forKey: .libraryOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateLibraryOptionsRequest.swift b/Sources/JellyfinAPI/Models/UpdateLibraryOptionsRequest.swift deleted file mode 100644 index 9ec36356a..000000000 --- a/Sources/JellyfinAPI/Models/UpdateLibraryOptionsRequest.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// UpdateLibraryOptionsRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Update library options dto. */ -public struct UpdateLibraryOptionsRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the library item id. */ - public var id: String? - public var libraryOptions: AddVirtualFolderDtoLibraryOptions? - - public init(id: String? = nil, libraryOptions: AddVirtualFolderDtoLibraryOptions? = nil) { - self.id = id - self.libraryOptions = libraryOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case id = "Id" - case libraryOptions = "LibraryOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(libraryOptions, forKey: .libraryOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateMediaEncoderPathRequest.swift b/Sources/JellyfinAPI/Models/UpdateMediaEncoderPathRequest.swift deleted file mode 100644 index 14d8e8c7b..000000000 --- a/Sources/JellyfinAPI/Models/UpdateMediaEncoderPathRequest.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// UpdateMediaEncoderPathRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Media Encoder Path Dto. */ -public struct UpdateMediaEncoderPathRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets media encoder path. */ - public var path: String? - /** Gets or sets media encoder path type. */ - public var pathType: String? - - public init(path: String? = nil, pathType: String? = nil) { - self.path = path - self.pathType = pathType - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case path = "Path" - case pathType = "PathType" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(pathType, forKey: .pathType) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateMediaPathRequest.swift b/Sources/JellyfinAPI/Models/UpdateMediaPathRequest.swift deleted file mode 100644 index b5a6f028b..000000000 --- a/Sources/JellyfinAPI/Models/UpdateMediaPathRequest.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// UpdateMediaPathRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Update library options dto. */ -public struct UpdateMediaPathRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the library name. */ - public var name: String - public var pathInfo: UpdateMediaPathRequestDtoPathInfo - - public init(name: String, pathInfo: UpdateMediaPathRequestDtoPathInfo) { - self.name = name - self.pathInfo = pathInfo - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case pathInfo = "PathInfo" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(name, forKey: .name) - try encoderContainer.encode(pathInfo, forKey: .pathInfo) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateMediaPathRequestDto.swift b/Sources/JellyfinAPI/Models/UpdateMediaPathRequestDto.swift deleted file mode 100644 index bcf0b32c0..000000000 --- a/Sources/JellyfinAPI/Models/UpdateMediaPathRequestDto.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// UpdateMediaPathRequestDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Update library options dto. */ -public struct UpdateMediaPathRequestDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the library name. */ - public var name: String - public var pathInfo: UpdateMediaPathRequestDtoPathInfo - - public init(name: String, pathInfo: UpdateMediaPathRequestDtoPathInfo) { - self.name = name - self.pathInfo = pathInfo - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case pathInfo = "PathInfo" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(name, forKey: .name) - try encoderContainer.encode(pathInfo, forKey: .pathInfo) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateMediaPathRequestDtoPathInfo.swift b/Sources/JellyfinAPI/Models/UpdateMediaPathRequestDtoPathInfo.swift deleted file mode 100644 index b51ed546c..000000000 --- a/Sources/JellyfinAPI/Models/UpdateMediaPathRequestDtoPathInfo.swift +++ /dev/null @@ -1,36 +0,0 @@ -// -// UpdateMediaPathRequestDtoPathInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets library folder path information. */ -public struct UpdateMediaPathRequestDtoPathInfo: Codable, JSONEncodable, Hashable { - - public var path: String? - public var networkPath: String? - - public init(path: String? = nil, networkPath: String? = nil) { - self.path = path - self.networkPath = networkPath - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case path = "Path" - case networkPath = "NetworkPath" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(networkPath, forKey: .networkPath) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateStartupUserRequest.swift b/Sources/JellyfinAPI/Models/UpdateStartupUserRequest.swift deleted file mode 100644 index 2adda1da2..000000000 --- a/Sources/JellyfinAPI/Models/UpdateStartupUserRequest.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// UpdateStartupUserRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The startup user DTO. */ -public struct UpdateStartupUserRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the username. */ - public var name: String? - /** Gets or sets the user's password. */ - public var password: String? - - public init(name: String? = nil, password: String? = nil) { - self.name = name - self.password = password - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case password = "Password" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(password, forKey: .password) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateUserConfigurationRequest.swift b/Sources/JellyfinAPI/Models/UpdateUserConfigurationRequest.swift deleted file mode 100644 index 5a0507abd..000000000 --- a/Sources/JellyfinAPI/Models/UpdateUserConfigurationRequest.swift +++ /dev/null @@ -1,92 +0,0 @@ -// -// UpdateUserConfigurationRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class UserConfiguration. */ -public struct UpdateUserConfigurationRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the audio language preference. */ - public var audioLanguagePreference: String? - /** Gets or sets a value indicating whether [play default audio track]. */ - public var playDefaultAudioTrack: Bool? - /** Gets or sets the subtitle language preference. */ - public var subtitleLanguagePreference: String? - public var displayMissingEpisodes: Bool? - public var groupedFolders: [String]? - /** An enum representing a subtitle playback mode. */ - public var subtitleMode: SubtitlePlaybackMode? - public var displayCollectionsView: Bool? - public var enableLocalPassword: Bool? - public var orderedViews: [String]? - public var latestItemsExcludes: [String]? - public var myMediaExcludes: [String]? - public var hidePlayedInLatest: Bool? - public var rememberAudioSelections: Bool? - public var rememberSubtitleSelections: Bool? - public var enableNextEpisodeAutoPlay: Bool? - - public init(audioLanguagePreference: String? = nil, playDefaultAudioTrack: Bool? = nil, subtitleLanguagePreference: String? = nil, displayMissingEpisodes: Bool? = nil, groupedFolders: [String]? = nil, subtitleMode: SubtitlePlaybackMode? = nil, displayCollectionsView: Bool? = nil, enableLocalPassword: Bool? = nil, orderedViews: [String]? = nil, latestItemsExcludes: [String]? = nil, myMediaExcludes: [String]? = nil, hidePlayedInLatest: Bool? = nil, rememberAudioSelections: Bool? = nil, rememberSubtitleSelections: Bool? = nil, enableNextEpisodeAutoPlay: Bool? = nil) { - self.audioLanguagePreference = audioLanguagePreference - self.playDefaultAudioTrack = playDefaultAudioTrack - self.subtitleLanguagePreference = subtitleLanguagePreference - self.displayMissingEpisodes = displayMissingEpisodes - self.groupedFolders = groupedFolders - self.subtitleMode = subtitleMode - self.displayCollectionsView = displayCollectionsView - self.enableLocalPassword = enableLocalPassword - self.orderedViews = orderedViews - self.latestItemsExcludes = latestItemsExcludes - self.myMediaExcludes = myMediaExcludes - self.hidePlayedInLatest = hidePlayedInLatest - self.rememberAudioSelections = rememberAudioSelections - self.rememberSubtitleSelections = rememberSubtitleSelections - self.enableNextEpisodeAutoPlay = enableNextEpisodeAutoPlay - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case audioLanguagePreference = "AudioLanguagePreference" - case playDefaultAudioTrack = "PlayDefaultAudioTrack" - case subtitleLanguagePreference = "SubtitleLanguagePreference" - case displayMissingEpisodes = "DisplayMissingEpisodes" - case groupedFolders = "GroupedFolders" - case subtitleMode = "SubtitleMode" - case displayCollectionsView = "DisplayCollectionsView" - case enableLocalPassword = "EnableLocalPassword" - case orderedViews = "OrderedViews" - case latestItemsExcludes = "LatestItemsExcludes" - case myMediaExcludes = "MyMediaExcludes" - case hidePlayedInLatest = "HidePlayedInLatest" - case rememberAudioSelections = "RememberAudioSelections" - case rememberSubtitleSelections = "RememberSubtitleSelections" - case enableNextEpisodeAutoPlay = "EnableNextEpisodeAutoPlay" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(audioLanguagePreference, forKey: .audioLanguagePreference) - try encoderContainer.encodeIfPresent(playDefaultAudioTrack, forKey: .playDefaultAudioTrack) - try encoderContainer.encodeIfPresent(subtitleLanguagePreference, forKey: .subtitleLanguagePreference) - try encoderContainer.encodeIfPresent(displayMissingEpisodes, forKey: .displayMissingEpisodes) - try encoderContainer.encodeIfPresent(groupedFolders, forKey: .groupedFolders) - try encoderContainer.encodeIfPresent(subtitleMode, forKey: .subtitleMode) - try encoderContainer.encodeIfPresent(displayCollectionsView, forKey: .displayCollectionsView) - try encoderContainer.encodeIfPresent(enableLocalPassword, forKey: .enableLocalPassword) - try encoderContainer.encodeIfPresent(orderedViews, forKey: .orderedViews) - try encoderContainer.encodeIfPresent(latestItemsExcludes, forKey: .latestItemsExcludes) - try encoderContainer.encodeIfPresent(myMediaExcludes, forKey: .myMediaExcludes) - try encoderContainer.encodeIfPresent(hidePlayedInLatest, forKey: .hidePlayedInLatest) - try encoderContainer.encodeIfPresent(rememberAudioSelections, forKey: .rememberAudioSelections) - try encoderContainer.encodeIfPresent(rememberSubtitleSelections, forKey: .rememberSubtitleSelections) - try encoderContainer.encodeIfPresent(enableNextEpisodeAutoPlay, forKey: .enableNextEpisodeAutoPlay) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateUserEasyPassword.swift b/Sources/JellyfinAPI/Models/UpdateUserEasyPassword.swift deleted file mode 100644 index f4145ad94..000000000 --- a/Sources/JellyfinAPI/Models/UpdateUserEasyPassword.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// UpdateUserEasyPassword.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The update user easy password request body. */ -public struct UpdateUserEasyPassword: Codable, JSONEncodable, Hashable { - - /** Gets or sets the new sha1-hashed password. */ - public var newPassword: String? - /** Gets or sets the new password. */ - public var newPw: String? - /** Gets or sets a value indicating whether to reset the password. */ - public var resetPassword: Bool? - - public init(newPassword: String? = nil, newPw: String? = nil, resetPassword: Bool? = nil) { - self.newPassword = newPassword - self.newPw = newPw - self.resetPassword = resetPassword - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case newPassword = "NewPassword" - case newPw = "NewPw" - case resetPassword = "ResetPassword" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(newPassword, forKey: .newPassword) - try encoderContainer.encodeIfPresent(newPw, forKey: .newPw) - try encoderContainer.encodeIfPresent(resetPassword, forKey: .resetPassword) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateUserEasyPasswordRequest.swift b/Sources/JellyfinAPI/Models/UpdateUserEasyPasswordRequest.swift deleted file mode 100644 index 820db9eb8..000000000 --- a/Sources/JellyfinAPI/Models/UpdateUserEasyPasswordRequest.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// UpdateUserEasyPasswordRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The update user easy password request body. */ -public struct UpdateUserEasyPasswordRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the new sha1-hashed password. */ - public var newPassword: String? - /** Gets or sets the new password. */ - public var newPw: String? - /** Gets or sets a value indicating whether to reset the password. */ - public var resetPassword: Bool? - - public init(newPassword: String? = nil, newPw: String? = nil, resetPassword: Bool? = nil) { - self.newPassword = newPassword - self.newPw = newPw - self.resetPassword = resetPassword - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case newPassword = "NewPassword" - case newPw = "NewPw" - case resetPassword = "ResetPassword" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(newPassword, forKey: .newPassword) - try encoderContainer.encodeIfPresent(newPw, forKey: .newPw) - try encoderContainer.encodeIfPresent(resetPassword, forKey: .resetPassword) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateUserPassword.swift b/Sources/JellyfinAPI/Models/UpdateUserPassword.swift deleted file mode 100644 index 6b0280f80..000000000 --- a/Sources/JellyfinAPI/Models/UpdateUserPassword.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// UpdateUserPassword.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The update user password request body. */ -public struct UpdateUserPassword: Codable, JSONEncodable, Hashable { - - /** Gets or sets the current sha1-hashed password. */ - public var currentPassword: String? - /** Gets or sets the current plain text password. */ - public var currentPw: String? - /** Gets or sets the new plain text password. */ - public var newPw: String? - /** Gets or sets a value indicating whether to reset the password. */ - public var resetPassword: Bool? - - public init(currentPassword: String? = nil, currentPw: String? = nil, newPw: String? = nil, resetPassword: Bool? = nil) { - self.currentPassword = currentPassword - self.currentPw = currentPw - self.newPw = newPw - self.resetPassword = resetPassword - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case currentPassword = "CurrentPassword" - case currentPw = "CurrentPw" - case newPw = "NewPw" - case resetPassword = "ResetPassword" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(currentPassword, forKey: .currentPassword) - try encoderContainer.encodeIfPresent(currentPw, forKey: .currentPw) - try encoderContainer.encodeIfPresent(newPw, forKey: .newPw) - try encoderContainer.encodeIfPresent(resetPassword, forKey: .resetPassword) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateUserPasswordRequest.swift b/Sources/JellyfinAPI/Models/UpdateUserPasswordRequest.swift deleted file mode 100644 index 2b05edcac..000000000 --- a/Sources/JellyfinAPI/Models/UpdateUserPasswordRequest.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// UpdateUserPasswordRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** The update user password request body. */ -public struct UpdateUserPasswordRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the current sha1-hashed password. */ - public var currentPassword: String? - /** Gets or sets the current plain text password. */ - public var currentPw: String? - /** Gets or sets the new plain text password. */ - public var newPw: String? - /** Gets or sets a value indicating whether to reset the password. */ - public var resetPassword: Bool? - - public init(currentPassword: String? = nil, currentPw: String? = nil, newPw: String? = nil, resetPassword: Bool? = nil) { - self.currentPassword = currentPassword - self.currentPw = currentPw - self.newPw = newPw - self.resetPassword = resetPassword - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case currentPassword = "CurrentPassword" - case currentPw = "CurrentPw" - case newPw = "NewPw" - case resetPassword = "ResetPassword" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(currentPassword, forKey: .currentPassword) - try encoderContainer.encodeIfPresent(currentPw, forKey: .currentPw) - try encoderContainer.encodeIfPresent(newPw, forKey: .newPw) - try encoderContainer.encodeIfPresent(resetPassword, forKey: .resetPassword) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateUserPolicyRequest.swift b/Sources/JellyfinAPI/Models/UpdateUserPolicyRequest.swift deleted file mode 100644 index ed596a359..000000000 --- a/Sources/JellyfinAPI/Models/UpdateUserPolicyRequest.swift +++ /dev/null @@ -1,189 +0,0 @@ -// -// UpdateUserPolicyRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct UpdateUserPolicyRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether this instance is administrator. */ - public var isAdministrator: Bool? - /** Gets or sets a value indicating whether this instance is hidden. */ - public var isHidden: Bool? - /** Gets or sets a value indicating whether this instance is disabled. */ - public var isDisabled: Bool? - /** Gets or sets the max parental rating. */ - public var maxParentalRating: Int? - public var blockedTags: [String]? - public var enableUserPreferenceAccess: Bool? - public var accessSchedules: [AccessSchedule]? - public var blockUnratedItems: [UnratedItem]? - public var enableRemoteControlOfOtherUsers: Bool? - public var enableSharedDeviceControl: Bool? - public var enableRemoteAccess: Bool? - public var enableLiveTvManagement: Bool? - public var enableLiveTvAccess: Bool? - public var enableMediaPlayback: Bool? - public var enableAudioPlaybackTranscoding: Bool? - public var enableVideoPlaybackTranscoding: Bool? - public var enablePlaybackRemuxing: Bool? - public var forceRemoteSourceTranscoding: Bool? - public var enableContentDeletion: Bool? - public var enableContentDeletionFromFolders: [String]? - public var enableContentDownloading: Bool? - /** Gets or sets a value indicating whether [enable synchronize]. */ - public var enableSyncTranscoding: Bool? - public var enableMediaConversion: Bool? - public var enabledDevices: [String]? - public var enableAllDevices: Bool? - public var enabledChannels: [String]? - public var enableAllChannels: Bool? - public var enabledFolders: [String]? - public var enableAllFolders: Bool? - public var invalidLoginAttemptCount: Int? - public var loginAttemptsBeforeLockout: Int? - public var maxActiveSessions: Int? - public var enablePublicSharing: Bool? - public var blockedMediaFolders: [String]? - public var blockedChannels: [String]? - public var remoteClientBitrateLimit: Int? - public var authenticationProviderId: String? - public var passwordResetProviderId: String? - /** Enum SyncPlayUserAccessType. */ - public var syncPlayAccess: SyncPlayUserAccessType? - - public init(isAdministrator: Bool? = nil, isHidden: Bool? = nil, isDisabled: Bool? = nil, maxParentalRating: Int? = nil, blockedTags: [String]? = nil, enableUserPreferenceAccess: Bool? = nil, accessSchedules: [AccessSchedule]? = nil, blockUnratedItems: [UnratedItem]? = nil, enableRemoteControlOfOtherUsers: Bool? = nil, enableSharedDeviceControl: Bool? = nil, enableRemoteAccess: Bool? = nil, enableLiveTvManagement: Bool? = nil, enableLiveTvAccess: Bool? = nil, enableMediaPlayback: Bool? = nil, enableAudioPlaybackTranscoding: Bool? = nil, enableVideoPlaybackTranscoding: Bool? = nil, enablePlaybackRemuxing: Bool? = nil, forceRemoteSourceTranscoding: Bool? = nil, enableContentDeletion: Bool? = nil, enableContentDeletionFromFolders: [String]? = nil, enableContentDownloading: Bool? = nil, enableSyncTranscoding: Bool? = nil, enableMediaConversion: Bool? = nil, enabledDevices: [String]? = nil, enableAllDevices: Bool? = nil, enabledChannels: [String]? = nil, enableAllChannels: Bool? = nil, enabledFolders: [String]? = nil, enableAllFolders: Bool? = nil, invalidLoginAttemptCount: Int? = nil, loginAttemptsBeforeLockout: Int? = nil, maxActiveSessions: Int? = nil, enablePublicSharing: Bool? = nil, blockedMediaFolders: [String]? = nil, blockedChannels: [String]? = nil, remoteClientBitrateLimit: Int? = nil, authenticationProviderId: String? = nil, passwordResetProviderId: String? = nil, syncPlayAccess: SyncPlayUserAccessType? = nil) { - self.isAdministrator = isAdministrator - self.isHidden = isHidden - self.isDisabled = isDisabled - self.maxParentalRating = maxParentalRating - self.blockedTags = blockedTags - self.enableUserPreferenceAccess = enableUserPreferenceAccess - self.accessSchedules = accessSchedules - self.blockUnratedItems = blockUnratedItems - self.enableRemoteControlOfOtherUsers = enableRemoteControlOfOtherUsers - self.enableSharedDeviceControl = enableSharedDeviceControl - self.enableRemoteAccess = enableRemoteAccess - self.enableLiveTvManagement = enableLiveTvManagement - self.enableLiveTvAccess = enableLiveTvAccess - self.enableMediaPlayback = enableMediaPlayback - self.enableAudioPlaybackTranscoding = enableAudioPlaybackTranscoding - self.enableVideoPlaybackTranscoding = enableVideoPlaybackTranscoding - self.enablePlaybackRemuxing = enablePlaybackRemuxing - self.forceRemoteSourceTranscoding = forceRemoteSourceTranscoding - self.enableContentDeletion = enableContentDeletion - self.enableContentDeletionFromFolders = enableContentDeletionFromFolders - self.enableContentDownloading = enableContentDownloading - self.enableSyncTranscoding = enableSyncTranscoding - self.enableMediaConversion = enableMediaConversion - self.enabledDevices = enabledDevices - self.enableAllDevices = enableAllDevices - self.enabledChannels = enabledChannels - self.enableAllChannels = enableAllChannels - self.enabledFolders = enabledFolders - self.enableAllFolders = enableAllFolders - self.invalidLoginAttemptCount = invalidLoginAttemptCount - self.loginAttemptsBeforeLockout = loginAttemptsBeforeLockout - self.maxActiveSessions = maxActiveSessions - self.enablePublicSharing = enablePublicSharing - self.blockedMediaFolders = blockedMediaFolders - self.blockedChannels = blockedChannels - self.remoteClientBitrateLimit = remoteClientBitrateLimit - self.authenticationProviderId = authenticationProviderId - self.passwordResetProviderId = passwordResetProviderId - self.syncPlayAccess = syncPlayAccess - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case isAdministrator = "IsAdministrator" - case isHidden = "IsHidden" - case isDisabled = "IsDisabled" - case maxParentalRating = "MaxParentalRating" - case blockedTags = "BlockedTags" - case enableUserPreferenceAccess = "EnableUserPreferenceAccess" - case accessSchedules = "AccessSchedules" - case blockUnratedItems = "BlockUnratedItems" - case enableRemoteControlOfOtherUsers = "EnableRemoteControlOfOtherUsers" - case enableSharedDeviceControl = "EnableSharedDeviceControl" - case enableRemoteAccess = "EnableRemoteAccess" - case enableLiveTvManagement = "EnableLiveTvManagement" - case enableLiveTvAccess = "EnableLiveTvAccess" - case enableMediaPlayback = "EnableMediaPlayback" - case enableAudioPlaybackTranscoding = "EnableAudioPlaybackTranscoding" - case enableVideoPlaybackTranscoding = "EnableVideoPlaybackTranscoding" - case enablePlaybackRemuxing = "EnablePlaybackRemuxing" - case forceRemoteSourceTranscoding = "ForceRemoteSourceTranscoding" - case enableContentDeletion = "EnableContentDeletion" - case enableContentDeletionFromFolders = "EnableContentDeletionFromFolders" - case enableContentDownloading = "EnableContentDownloading" - case enableSyncTranscoding = "EnableSyncTranscoding" - case enableMediaConversion = "EnableMediaConversion" - case enabledDevices = "EnabledDevices" - case enableAllDevices = "EnableAllDevices" - case enabledChannels = "EnabledChannels" - case enableAllChannels = "EnableAllChannels" - case enabledFolders = "EnabledFolders" - case enableAllFolders = "EnableAllFolders" - case invalidLoginAttemptCount = "InvalidLoginAttemptCount" - case loginAttemptsBeforeLockout = "LoginAttemptsBeforeLockout" - case maxActiveSessions = "MaxActiveSessions" - case enablePublicSharing = "EnablePublicSharing" - case blockedMediaFolders = "BlockedMediaFolders" - case blockedChannels = "BlockedChannels" - case remoteClientBitrateLimit = "RemoteClientBitrateLimit" - case authenticationProviderId = "AuthenticationProviderId" - case passwordResetProviderId = "PasswordResetProviderId" - case syncPlayAccess = "SyncPlayAccess" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(isAdministrator, forKey: .isAdministrator) - try encoderContainer.encodeIfPresent(isHidden, forKey: .isHidden) - try encoderContainer.encodeIfPresent(isDisabled, forKey: .isDisabled) - try encoderContainer.encodeIfPresent(maxParentalRating, forKey: .maxParentalRating) - try encoderContainer.encodeIfPresent(blockedTags, forKey: .blockedTags) - try encoderContainer.encodeIfPresent(enableUserPreferenceAccess, forKey: .enableUserPreferenceAccess) - try encoderContainer.encodeIfPresent(accessSchedules, forKey: .accessSchedules) - try encoderContainer.encodeIfPresent(blockUnratedItems, forKey: .blockUnratedItems) - try encoderContainer.encodeIfPresent(enableRemoteControlOfOtherUsers, forKey: .enableRemoteControlOfOtherUsers) - try encoderContainer.encodeIfPresent(enableSharedDeviceControl, forKey: .enableSharedDeviceControl) - try encoderContainer.encodeIfPresent(enableRemoteAccess, forKey: .enableRemoteAccess) - try encoderContainer.encodeIfPresent(enableLiveTvManagement, forKey: .enableLiveTvManagement) - try encoderContainer.encodeIfPresent(enableLiveTvAccess, forKey: .enableLiveTvAccess) - try encoderContainer.encodeIfPresent(enableMediaPlayback, forKey: .enableMediaPlayback) - try encoderContainer.encodeIfPresent(enableAudioPlaybackTranscoding, forKey: .enableAudioPlaybackTranscoding) - try encoderContainer.encodeIfPresent(enableVideoPlaybackTranscoding, forKey: .enableVideoPlaybackTranscoding) - try encoderContainer.encodeIfPresent(enablePlaybackRemuxing, forKey: .enablePlaybackRemuxing) - try encoderContainer.encodeIfPresent(forceRemoteSourceTranscoding, forKey: .forceRemoteSourceTranscoding) - try encoderContainer.encodeIfPresent(enableContentDeletion, forKey: .enableContentDeletion) - try encoderContainer.encodeIfPresent(enableContentDeletionFromFolders, forKey: .enableContentDeletionFromFolders) - try encoderContainer.encodeIfPresent(enableContentDownloading, forKey: .enableContentDownloading) - try encoderContainer.encodeIfPresent(enableSyncTranscoding, forKey: .enableSyncTranscoding) - try encoderContainer.encodeIfPresent(enableMediaConversion, forKey: .enableMediaConversion) - try encoderContainer.encodeIfPresent(enabledDevices, forKey: .enabledDevices) - try encoderContainer.encodeIfPresent(enableAllDevices, forKey: .enableAllDevices) - try encoderContainer.encodeIfPresent(enabledChannels, forKey: .enabledChannels) - try encoderContainer.encodeIfPresent(enableAllChannels, forKey: .enableAllChannels) - try encoderContainer.encodeIfPresent(enabledFolders, forKey: .enabledFolders) - try encoderContainer.encodeIfPresent(enableAllFolders, forKey: .enableAllFolders) - try encoderContainer.encodeIfPresent(invalidLoginAttemptCount, forKey: .invalidLoginAttemptCount) - try encoderContainer.encodeIfPresent(loginAttemptsBeforeLockout, forKey: .loginAttemptsBeforeLockout) - try encoderContainer.encodeIfPresent(maxActiveSessions, forKey: .maxActiveSessions) - try encoderContainer.encodeIfPresent(enablePublicSharing, forKey: .enablePublicSharing) - try encoderContainer.encodeIfPresent(blockedMediaFolders, forKey: .blockedMediaFolders) - try encoderContainer.encodeIfPresent(blockedChannels, forKey: .blockedChannels) - try encoderContainer.encodeIfPresent(remoteClientBitrateLimit, forKey: .remoteClientBitrateLimit) - try encoderContainer.encodeIfPresent(authenticationProviderId, forKey: .authenticationProviderId) - try encoderContainer.encodeIfPresent(passwordResetProviderId, forKey: .passwordResetProviderId) - try encoderContainer.encodeIfPresent(syncPlayAccess, forKey: .syncPlayAccess) - } -} diff --git a/Sources/JellyfinAPI/Models/UpdateUserRequest.swift b/Sources/JellyfinAPI/Models/UpdateUserRequest.swift deleted file mode 100644 index 4ceddd28b..000000000 --- a/Sources/JellyfinAPI/Models/UpdateUserRequest.swift +++ /dev/null @@ -1,96 +0,0 @@ -// -// UpdateUserRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class UserDto. */ -public struct UpdateUserRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the name of the server. This is not used by the server and is for client-side usage only. */ - public var serverName: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the primary image tag. */ - public var primaryImageTag: String? - /** Gets or sets a value indicating whether this instance has password. */ - public var hasPassword: Bool? - /** Gets or sets a value indicating whether this instance has configured password. */ - public var hasConfiguredPassword: Bool? - /** Gets or sets a value indicating whether this instance has configured easy password. */ - public var hasConfiguredEasyPassword: Bool? - /** Gets or sets whether async login is enabled or not. */ - public var enableAutoLogin: Bool? - /** Gets or sets the last login date. */ - public var lastLoginDate: Date? - /** Gets or sets the last activity date. */ - public var lastActivityDate: Date? - public var configuration: UserDtoConfiguration? - public var policy: UserDtoPolicy? - /** Gets or sets the primary image aspect ratio. */ - public var primaryImageAspectRatio: Double? - - public init(name: String? = nil, serverId: String? = nil, serverName: String? = nil, id: String? = nil, primaryImageTag: String? = nil, hasPassword: Bool? = nil, hasConfiguredPassword: Bool? = nil, hasConfiguredEasyPassword: Bool? = nil, enableAutoLogin: Bool? = nil, lastLoginDate: Date? = nil, lastActivityDate: Date? = nil, configuration: UserDtoConfiguration? = nil, policy: UserDtoPolicy? = nil, primaryImageAspectRatio: Double? = nil) { - self.name = name - self.serverId = serverId - self.serverName = serverName - self.id = id - self.primaryImageTag = primaryImageTag - self.hasPassword = hasPassword - self.hasConfiguredPassword = hasConfiguredPassword - self.hasConfiguredEasyPassword = hasConfiguredEasyPassword - self.enableAutoLogin = enableAutoLogin - self.lastLoginDate = lastLoginDate - self.lastActivityDate = lastActivityDate - self.configuration = configuration - self.policy = policy - self.primaryImageAspectRatio = primaryImageAspectRatio - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case serverId = "ServerId" - case serverName = "ServerName" - case id = "Id" - case primaryImageTag = "PrimaryImageTag" - case hasPassword = "HasPassword" - case hasConfiguredPassword = "HasConfiguredPassword" - case hasConfiguredEasyPassword = "HasConfiguredEasyPassword" - case enableAutoLogin = "EnableAutoLogin" - case lastLoginDate = "LastLoginDate" - case lastActivityDate = "LastActivityDate" - case configuration = "Configuration" - case policy = "Policy" - case primaryImageAspectRatio = "PrimaryImageAspectRatio" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(serverName, forKey: .serverName) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(primaryImageTag, forKey: .primaryImageTag) - try encoderContainer.encodeIfPresent(hasPassword, forKey: .hasPassword) - try encoderContainer.encodeIfPresent(hasConfiguredPassword, forKey: .hasConfiguredPassword) - try encoderContainer.encodeIfPresent(hasConfiguredEasyPassword, forKey: .hasConfiguredEasyPassword) - try encoderContainer.encodeIfPresent(enableAutoLogin, forKey: .enableAutoLogin) - try encoderContainer.encodeIfPresent(lastLoginDate, forKey: .lastLoginDate) - try encoderContainer.encodeIfPresent(lastActivityDate, forKey: .lastActivityDate) - try encoderContainer.encodeIfPresent(configuration, forKey: .configuration) - try encoderContainer.encodeIfPresent(policy, forKey: .policy) - try encoderContainer.encodeIfPresent(primaryImageAspectRatio, forKey: .primaryImageAspectRatio) - } -} diff --git a/Sources/JellyfinAPI/Models/UploadSubtitleDto.swift b/Sources/JellyfinAPI/Models/UploadSubtitleDto.swift deleted file mode 100644 index 872396e00..000000000 --- a/Sources/JellyfinAPI/Models/UploadSubtitleDto.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// UploadSubtitleDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Upload subtitles dto. */ -public struct UploadSubtitleDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the subtitle language. */ - public var language: String - /** Gets or sets the subtitle format. */ - public var format: String - /** Gets or sets a value indicating whether the subtitle is forced. */ - public var isForced: Bool - /** Gets or sets the subtitle data. */ - public var data: String - - public init(language: String, format: String, isForced: Bool, data: String) { - self.language = language - self.format = format - self.isForced = isForced - self.data = data - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case language = "Language" - case format = "Format" - case isForced = "IsForced" - case data = "Data" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(language, forKey: .language) - try encoderContainer.encode(format, forKey: .format) - try encoderContainer.encode(isForced, forKey: .isForced) - try encoderContainer.encode(data, forKey: .data) - } -} diff --git a/Sources/JellyfinAPI/Models/UploadSubtitleRequest.swift b/Sources/JellyfinAPI/Models/UploadSubtitleRequest.swift deleted file mode 100644 index f5f1d7479..000000000 --- a/Sources/JellyfinAPI/Models/UploadSubtitleRequest.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// UploadSubtitleRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Upload subtitles dto. */ -public struct UploadSubtitleRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets the subtitle language. */ - public var language: String - /** Gets or sets the subtitle format. */ - public var format: String - /** Gets or sets a value indicating whether the subtitle is forced. */ - public var isForced: Bool - /** Gets or sets the subtitle data. */ - public var data: String - - public init(language: String, format: String, isForced: Bool, data: String) { - self.language = language - self.format = format - self.isForced = isForced - self.data = data - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case language = "Language" - case format = "Format" - case isForced = "IsForced" - case data = "Data" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encode(language, forKey: .language) - try encoderContainer.encode(format, forKey: .format) - try encoderContainer.encode(isForced, forKey: .isForced) - try encoderContainer.encode(data, forKey: .data) - } -} diff --git a/Sources/JellyfinAPI/Models/UserConfiguration.swift b/Sources/JellyfinAPI/Models/UserConfiguration.swift deleted file mode 100644 index 73bd69045..000000000 --- a/Sources/JellyfinAPI/Models/UserConfiguration.swift +++ /dev/null @@ -1,92 +0,0 @@ -// -// UserConfiguration.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class UserConfiguration. */ -public struct UserConfiguration: Codable, JSONEncodable, Hashable { - - /** Gets or sets the audio language preference. */ - public var audioLanguagePreference: String? - /** Gets or sets a value indicating whether [play default audio track]. */ - public var playDefaultAudioTrack: Bool? - /** Gets or sets the subtitle language preference. */ - public var subtitleLanguagePreference: String? - public var displayMissingEpisodes: Bool? - public var groupedFolders: [String]? - /** An enum representing a subtitle playback mode. */ - public var subtitleMode: SubtitlePlaybackMode? - public var displayCollectionsView: Bool? - public var enableLocalPassword: Bool? - public var orderedViews: [String]? - public var latestItemsExcludes: [String]? - public var myMediaExcludes: [String]? - public var hidePlayedInLatest: Bool? - public var rememberAudioSelections: Bool? - public var rememberSubtitleSelections: Bool? - public var enableNextEpisodeAutoPlay: Bool? - - public init(audioLanguagePreference: String? = nil, playDefaultAudioTrack: Bool? = nil, subtitleLanguagePreference: String? = nil, displayMissingEpisodes: Bool? = nil, groupedFolders: [String]? = nil, subtitleMode: SubtitlePlaybackMode? = nil, displayCollectionsView: Bool? = nil, enableLocalPassword: Bool? = nil, orderedViews: [String]? = nil, latestItemsExcludes: [String]? = nil, myMediaExcludes: [String]? = nil, hidePlayedInLatest: Bool? = nil, rememberAudioSelections: Bool? = nil, rememberSubtitleSelections: Bool? = nil, enableNextEpisodeAutoPlay: Bool? = nil) { - self.audioLanguagePreference = audioLanguagePreference - self.playDefaultAudioTrack = playDefaultAudioTrack - self.subtitleLanguagePreference = subtitleLanguagePreference - self.displayMissingEpisodes = displayMissingEpisodes - self.groupedFolders = groupedFolders - self.subtitleMode = subtitleMode - self.displayCollectionsView = displayCollectionsView - self.enableLocalPassword = enableLocalPassword - self.orderedViews = orderedViews - self.latestItemsExcludes = latestItemsExcludes - self.myMediaExcludes = myMediaExcludes - self.hidePlayedInLatest = hidePlayedInLatest - self.rememberAudioSelections = rememberAudioSelections - self.rememberSubtitleSelections = rememberSubtitleSelections - self.enableNextEpisodeAutoPlay = enableNextEpisodeAutoPlay - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case audioLanguagePreference = "AudioLanguagePreference" - case playDefaultAudioTrack = "PlayDefaultAudioTrack" - case subtitleLanguagePreference = "SubtitleLanguagePreference" - case displayMissingEpisodes = "DisplayMissingEpisodes" - case groupedFolders = "GroupedFolders" - case subtitleMode = "SubtitleMode" - case displayCollectionsView = "DisplayCollectionsView" - case enableLocalPassword = "EnableLocalPassword" - case orderedViews = "OrderedViews" - case latestItemsExcludes = "LatestItemsExcludes" - case myMediaExcludes = "MyMediaExcludes" - case hidePlayedInLatest = "HidePlayedInLatest" - case rememberAudioSelections = "RememberAudioSelections" - case rememberSubtitleSelections = "RememberSubtitleSelections" - case enableNextEpisodeAutoPlay = "EnableNextEpisodeAutoPlay" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(audioLanguagePreference, forKey: .audioLanguagePreference) - try encoderContainer.encodeIfPresent(playDefaultAudioTrack, forKey: .playDefaultAudioTrack) - try encoderContainer.encodeIfPresent(subtitleLanguagePreference, forKey: .subtitleLanguagePreference) - try encoderContainer.encodeIfPresent(displayMissingEpisodes, forKey: .displayMissingEpisodes) - try encoderContainer.encodeIfPresent(groupedFolders, forKey: .groupedFolders) - try encoderContainer.encodeIfPresent(subtitleMode, forKey: .subtitleMode) - try encoderContainer.encodeIfPresent(displayCollectionsView, forKey: .displayCollectionsView) - try encoderContainer.encodeIfPresent(enableLocalPassword, forKey: .enableLocalPassword) - try encoderContainer.encodeIfPresent(orderedViews, forKey: .orderedViews) - try encoderContainer.encodeIfPresent(latestItemsExcludes, forKey: .latestItemsExcludes) - try encoderContainer.encodeIfPresent(myMediaExcludes, forKey: .myMediaExcludes) - try encoderContainer.encodeIfPresent(hidePlayedInLatest, forKey: .hidePlayedInLatest) - try encoderContainer.encodeIfPresent(rememberAudioSelections, forKey: .rememberAudioSelections) - try encoderContainer.encodeIfPresent(rememberSubtitleSelections, forKey: .rememberSubtitleSelections) - try encoderContainer.encodeIfPresent(enableNextEpisodeAutoPlay, forKey: .enableNextEpisodeAutoPlay) - } -} diff --git a/Sources/JellyfinAPI/Models/UserDto.swift b/Sources/JellyfinAPI/Models/UserDto.swift deleted file mode 100644 index 231f3eced..000000000 --- a/Sources/JellyfinAPI/Models/UserDto.swift +++ /dev/null @@ -1,96 +0,0 @@ -// -// UserDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class UserDto. */ -public struct UserDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the server identifier. */ - public var serverId: String? - /** Gets or sets the name of the server. This is not used by the server and is for client-side usage only. */ - public var serverName: String? - /** Gets or sets the id. */ - public var id: String? - /** Gets or sets the primary image tag. */ - public var primaryImageTag: String? - /** Gets or sets a value indicating whether this instance has password. */ - public var hasPassword: Bool? - /** Gets or sets a value indicating whether this instance has configured password. */ - public var hasConfiguredPassword: Bool? - /** Gets or sets a value indicating whether this instance has configured easy password. */ - public var hasConfiguredEasyPassword: Bool? - /** Gets or sets whether async login is enabled or not. */ - public var enableAutoLogin: Bool? - /** Gets or sets the last login date. */ - public var lastLoginDate: Date? - /** Gets or sets the last activity date. */ - public var lastActivityDate: Date? - public var configuration: UserDtoConfiguration? - public var policy: UserDtoPolicy? - /** Gets or sets the primary image aspect ratio. */ - public var primaryImageAspectRatio: Double? - - public init(name: String? = nil, serverId: String? = nil, serverName: String? = nil, id: String? = nil, primaryImageTag: String? = nil, hasPassword: Bool? = nil, hasConfiguredPassword: Bool? = nil, hasConfiguredEasyPassword: Bool? = nil, enableAutoLogin: Bool? = nil, lastLoginDate: Date? = nil, lastActivityDate: Date? = nil, configuration: UserDtoConfiguration? = nil, policy: UserDtoPolicy? = nil, primaryImageAspectRatio: Double? = nil) { - self.name = name - self.serverId = serverId - self.serverName = serverName - self.id = id - self.primaryImageTag = primaryImageTag - self.hasPassword = hasPassword - self.hasConfiguredPassword = hasConfiguredPassword - self.hasConfiguredEasyPassword = hasConfiguredEasyPassword - self.enableAutoLogin = enableAutoLogin - self.lastLoginDate = lastLoginDate - self.lastActivityDate = lastActivityDate - self.configuration = configuration - self.policy = policy - self.primaryImageAspectRatio = primaryImageAspectRatio - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case serverId = "ServerId" - case serverName = "ServerName" - case id = "Id" - case primaryImageTag = "PrimaryImageTag" - case hasPassword = "HasPassword" - case hasConfiguredPassword = "HasConfiguredPassword" - case hasConfiguredEasyPassword = "HasConfiguredEasyPassword" - case enableAutoLogin = "EnableAutoLogin" - case lastLoginDate = "LastLoginDate" - case lastActivityDate = "LastActivityDate" - case configuration = "Configuration" - case policy = "Policy" - case primaryImageAspectRatio = "PrimaryImageAspectRatio" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(serverId, forKey: .serverId) - try encoderContainer.encodeIfPresent(serverName, forKey: .serverName) - try encoderContainer.encodeIfPresent(id, forKey: .id) - try encoderContainer.encodeIfPresent(primaryImageTag, forKey: .primaryImageTag) - try encoderContainer.encodeIfPresent(hasPassword, forKey: .hasPassword) - try encoderContainer.encodeIfPresent(hasConfiguredPassword, forKey: .hasConfiguredPassword) - try encoderContainer.encodeIfPresent(hasConfiguredEasyPassword, forKey: .hasConfiguredEasyPassword) - try encoderContainer.encodeIfPresent(enableAutoLogin, forKey: .enableAutoLogin) - try encoderContainer.encodeIfPresent(lastLoginDate, forKey: .lastLoginDate) - try encoderContainer.encodeIfPresent(lastActivityDate, forKey: .lastActivityDate) - try encoderContainer.encodeIfPresent(configuration, forKey: .configuration) - try encoderContainer.encodeIfPresent(policy, forKey: .policy) - try encoderContainer.encodeIfPresent(primaryImageAspectRatio, forKey: .primaryImageAspectRatio) - } -} diff --git a/Sources/JellyfinAPI/Models/UserDtoConfiguration.swift b/Sources/JellyfinAPI/Models/UserDtoConfiguration.swift deleted file mode 100644 index 5da4d1a96..000000000 --- a/Sources/JellyfinAPI/Models/UserDtoConfiguration.swift +++ /dev/null @@ -1,92 +0,0 @@ -// -// UserDtoConfiguration.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the configuration. */ -public struct UserDtoConfiguration: Codable, JSONEncodable, Hashable { - - /** Gets or sets the audio language preference. */ - public var audioLanguagePreference: String? - /** Gets or sets a value indicating whether [play default audio track]. */ - public var playDefaultAudioTrack: Bool? - /** Gets or sets the subtitle language preference. */ - public var subtitleLanguagePreference: String? - public var displayMissingEpisodes: Bool? - public var groupedFolders: [String]? - /** An enum representing a subtitle playback mode. */ - public var subtitleMode: SubtitlePlaybackMode? - public var displayCollectionsView: Bool? - public var enableLocalPassword: Bool? - public var orderedViews: [String]? - public var latestItemsExcludes: [String]? - public var myMediaExcludes: [String]? - public var hidePlayedInLatest: Bool? - public var rememberAudioSelections: Bool? - public var rememberSubtitleSelections: Bool? - public var enableNextEpisodeAutoPlay: Bool? - - public init(audioLanguagePreference: String? = nil, playDefaultAudioTrack: Bool? = nil, subtitleLanguagePreference: String? = nil, displayMissingEpisodes: Bool? = nil, groupedFolders: [String]? = nil, subtitleMode: SubtitlePlaybackMode? = nil, displayCollectionsView: Bool? = nil, enableLocalPassword: Bool? = nil, orderedViews: [String]? = nil, latestItemsExcludes: [String]? = nil, myMediaExcludes: [String]? = nil, hidePlayedInLatest: Bool? = nil, rememberAudioSelections: Bool? = nil, rememberSubtitleSelections: Bool? = nil, enableNextEpisodeAutoPlay: Bool? = nil) { - self.audioLanguagePreference = audioLanguagePreference - self.playDefaultAudioTrack = playDefaultAudioTrack - self.subtitleLanguagePreference = subtitleLanguagePreference - self.displayMissingEpisodes = displayMissingEpisodes - self.groupedFolders = groupedFolders - self.subtitleMode = subtitleMode - self.displayCollectionsView = displayCollectionsView - self.enableLocalPassword = enableLocalPassword - self.orderedViews = orderedViews - self.latestItemsExcludes = latestItemsExcludes - self.myMediaExcludes = myMediaExcludes - self.hidePlayedInLatest = hidePlayedInLatest - self.rememberAudioSelections = rememberAudioSelections - self.rememberSubtitleSelections = rememberSubtitleSelections - self.enableNextEpisodeAutoPlay = enableNextEpisodeAutoPlay - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case audioLanguagePreference = "AudioLanguagePreference" - case playDefaultAudioTrack = "PlayDefaultAudioTrack" - case subtitleLanguagePreference = "SubtitleLanguagePreference" - case displayMissingEpisodes = "DisplayMissingEpisodes" - case groupedFolders = "GroupedFolders" - case subtitleMode = "SubtitleMode" - case displayCollectionsView = "DisplayCollectionsView" - case enableLocalPassword = "EnableLocalPassword" - case orderedViews = "OrderedViews" - case latestItemsExcludes = "LatestItemsExcludes" - case myMediaExcludes = "MyMediaExcludes" - case hidePlayedInLatest = "HidePlayedInLatest" - case rememberAudioSelections = "RememberAudioSelections" - case rememberSubtitleSelections = "RememberSubtitleSelections" - case enableNextEpisodeAutoPlay = "EnableNextEpisodeAutoPlay" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(audioLanguagePreference, forKey: .audioLanguagePreference) - try encoderContainer.encodeIfPresent(playDefaultAudioTrack, forKey: .playDefaultAudioTrack) - try encoderContainer.encodeIfPresent(subtitleLanguagePreference, forKey: .subtitleLanguagePreference) - try encoderContainer.encodeIfPresent(displayMissingEpisodes, forKey: .displayMissingEpisodes) - try encoderContainer.encodeIfPresent(groupedFolders, forKey: .groupedFolders) - try encoderContainer.encodeIfPresent(subtitleMode, forKey: .subtitleMode) - try encoderContainer.encodeIfPresent(displayCollectionsView, forKey: .displayCollectionsView) - try encoderContainer.encodeIfPresent(enableLocalPassword, forKey: .enableLocalPassword) - try encoderContainer.encodeIfPresent(orderedViews, forKey: .orderedViews) - try encoderContainer.encodeIfPresent(latestItemsExcludes, forKey: .latestItemsExcludes) - try encoderContainer.encodeIfPresent(myMediaExcludes, forKey: .myMediaExcludes) - try encoderContainer.encodeIfPresent(hidePlayedInLatest, forKey: .hidePlayedInLatest) - try encoderContainer.encodeIfPresent(rememberAudioSelections, forKey: .rememberAudioSelections) - try encoderContainer.encodeIfPresent(rememberSubtitleSelections, forKey: .rememberSubtitleSelections) - try encoderContainer.encodeIfPresent(enableNextEpisodeAutoPlay, forKey: .enableNextEpisodeAutoPlay) - } -} diff --git a/Sources/JellyfinAPI/Models/UserDtoPolicy.swift b/Sources/JellyfinAPI/Models/UserDtoPolicy.swift deleted file mode 100644 index 2bf37663c..000000000 --- a/Sources/JellyfinAPI/Models/UserDtoPolicy.swift +++ /dev/null @@ -1,190 +0,0 @@ -// -// UserDtoPolicy.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Gets or sets the policy. */ -public struct UserDtoPolicy: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether this instance is administrator. */ - public var isAdministrator: Bool? - /** Gets or sets a value indicating whether this instance is hidden. */ - public var isHidden: Bool? - /** Gets or sets a value indicating whether this instance is disabled. */ - public var isDisabled: Bool? - /** Gets or sets the max parental rating. */ - public var maxParentalRating: Int? - public var blockedTags: [String]? - public var enableUserPreferenceAccess: Bool? - public var accessSchedules: [AccessSchedule]? - public var blockUnratedItems: [UnratedItem]? - public var enableRemoteControlOfOtherUsers: Bool? - public var enableSharedDeviceControl: Bool? - public var enableRemoteAccess: Bool? - public var enableLiveTvManagement: Bool? - public var enableLiveTvAccess: Bool? - public var enableMediaPlayback: Bool? - public var enableAudioPlaybackTranscoding: Bool? - public var enableVideoPlaybackTranscoding: Bool? - public var enablePlaybackRemuxing: Bool? - public var forceRemoteSourceTranscoding: Bool? - public var enableContentDeletion: Bool? - public var enableContentDeletionFromFolders: [String]? - public var enableContentDownloading: Bool? - /** Gets or sets a value indicating whether [enable synchronize]. */ - public var enableSyncTranscoding: Bool? - public var enableMediaConversion: Bool? - public var enabledDevices: [String]? - public var enableAllDevices: Bool? - public var enabledChannels: [String]? - public var enableAllChannels: Bool? - public var enabledFolders: [String]? - public var enableAllFolders: Bool? - public var invalidLoginAttemptCount: Int? - public var loginAttemptsBeforeLockout: Int? - public var maxActiveSessions: Int? - public var enablePublicSharing: Bool? - public var blockedMediaFolders: [String]? - public var blockedChannels: [String]? - public var remoteClientBitrateLimit: Int? - public var authenticationProviderId: String? - public var passwordResetProviderId: String? - /** Enum SyncPlayUserAccessType. */ - public var syncPlayAccess: SyncPlayUserAccessType? - - public init(isAdministrator: Bool? = nil, isHidden: Bool? = nil, isDisabled: Bool? = nil, maxParentalRating: Int? = nil, blockedTags: [String]? = nil, enableUserPreferenceAccess: Bool? = nil, accessSchedules: [AccessSchedule]? = nil, blockUnratedItems: [UnratedItem]? = nil, enableRemoteControlOfOtherUsers: Bool? = nil, enableSharedDeviceControl: Bool? = nil, enableRemoteAccess: Bool? = nil, enableLiveTvManagement: Bool? = nil, enableLiveTvAccess: Bool? = nil, enableMediaPlayback: Bool? = nil, enableAudioPlaybackTranscoding: Bool? = nil, enableVideoPlaybackTranscoding: Bool? = nil, enablePlaybackRemuxing: Bool? = nil, forceRemoteSourceTranscoding: Bool? = nil, enableContentDeletion: Bool? = nil, enableContentDeletionFromFolders: [String]? = nil, enableContentDownloading: Bool? = nil, enableSyncTranscoding: Bool? = nil, enableMediaConversion: Bool? = nil, enabledDevices: [String]? = nil, enableAllDevices: Bool? = nil, enabledChannels: [String]? = nil, enableAllChannels: Bool? = nil, enabledFolders: [String]? = nil, enableAllFolders: Bool? = nil, invalidLoginAttemptCount: Int? = nil, loginAttemptsBeforeLockout: Int? = nil, maxActiveSessions: Int? = nil, enablePublicSharing: Bool? = nil, blockedMediaFolders: [String]? = nil, blockedChannels: [String]? = nil, remoteClientBitrateLimit: Int? = nil, authenticationProviderId: String? = nil, passwordResetProviderId: String? = nil, syncPlayAccess: SyncPlayUserAccessType? = nil) { - self.isAdministrator = isAdministrator - self.isHidden = isHidden - self.isDisabled = isDisabled - self.maxParentalRating = maxParentalRating - self.blockedTags = blockedTags - self.enableUserPreferenceAccess = enableUserPreferenceAccess - self.accessSchedules = accessSchedules - self.blockUnratedItems = blockUnratedItems - self.enableRemoteControlOfOtherUsers = enableRemoteControlOfOtherUsers - self.enableSharedDeviceControl = enableSharedDeviceControl - self.enableRemoteAccess = enableRemoteAccess - self.enableLiveTvManagement = enableLiveTvManagement - self.enableLiveTvAccess = enableLiveTvAccess - self.enableMediaPlayback = enableMediaPlayback - self.enableAudioPlaybackTranscoding = enableAudioPlaybackTranscoding - self.enableVideoPlaybackTranscoding = enableVideoPlaybackTranscoding - self.enablePlaybackRemuxing = enablePlaybackRemuxing - self.forceRemoteSourceTranscoding = forceRemoteSourceTranscoding - self.enableContentDeletion = enableContentDeletion - self.enableContentDeletionFromFolders = enableContentDeletionFromFolders - self.enableContentDownloading = enableContentDownloading - self.enableSyncTranscoding = enableSyncTranscoding - self.enableMediaConversion = enableMediaConversion - self.enabledDevices = enabledDevices - self.enableAllDevices = enableAllDevices - self.enabledChannels = enabledChannels - self.enableAllChannels = enableAllChannels - self.enabledFolders = enabledFolders - self.enableAllFolders = enableAllFolders - self.invalidLoginAttemptCount = invalidLoginAttemptCount - self.loginAttemptsBeforeLockout = loginAttemptsBeforeLockout - self.maxActiveSessions = maxActiveSessions - self.enablePublicSharing = enablePublicSharing - self.blockedMediaFolders = blockedMediaFolders - self.blockedChannels = blockedChannels - self.remoteClientBitrateLimit = remoteClientBitrateLimit - self.authenticationProviderId = authenticationProviderId - self.passwordResetProviderId = passwordResetProviderId - self.syncPlayAccess = syncPlayAccess - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case isAdministrator = "IsAdministrator" - case isHidden = "IsHidden" - case isDisabled = "IsDisabled" - case maxParentalRating = "MaxParentalRating" - case blockedTags = "BlockedTags" - case enableUserPreferenceAccess = "EnableUserPreferenceAccess" - case accessSchedules = "AccessSchedules" - case blockUnratedItems = "BlockUnratedItems" - case enableRemoteControlOfOtherUsers = "EnableRemoteControlOfOtherUsers" - case enableSharedDeviceControl = "EnableSharedDeviceControl" - case enableRemoteAccess = "EnableRemoteAccess" - case enableLiveTvManagement = "EnableLiveTvManagement" - case enableLiveTvAccess = "EnableLiveTvAccess" - case enableMediaPlayback = "EnableMediaPlayback" - case enableAudioPlaybackTranscoding = "EnableAudioPlaybackTranscoding" - case enableVideoPlaybackTranscoding = "EnableVideoPlaybackTranscoding" - case enablePlaybackRemuxing = "EnablePlaybackRemuxing" - case forceRemoteSourceTranscoding = "ForceRemoteSourceTranscoding" - case enableContentDeletion = "EnableContentDeletion" - case enableContentDeletionFromFolders = "EnableContentDeletionFromFolders" - case enableContentDownloading = "EnableContentDownloading" - case enableSyncTranscoding = "EnableSyncTranscoding" - case enableMediaConversion = "EnableMediaConversion" - case enabledDevices = "EnabledDevices" - case enableAllDevices = "EnableAllDevices" - case enabledChannels = "EnabledChannels" - case enableAllChannels = "EnableAllChannels" - case enabledFolders = "EnabledFolders" - case enableAllFolders = "EnableAllFolders" - case invalidLoginAttemptCount = "InvalidLoginAttemptCount" - case loginAttemptsBeforeLockout = "LoginAttemptsBeforeLockout" - case maxActiveSessions = "MaxActiveSessions" - case enablePublicSharing = "EnablePublicSharing" - case blockedMediaFolders = "BlockedMediaFolders" - case blockedChannels = "BlockedChannels" - case remoteClientBitrateLimit = "RemoteClientBitrateLimit" - case authenticationProviderId = "AuthenticationProviderId" - case passwordResetProviderId = "PasswordResetProviderId" - case syncPlayAccess = "SyncPlayAccess" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(isAdministrator, forKey: .isAdministrator) - try encoderContainer.encodeIfPresent(isHidden, forKey: .isHidden) - try encoderContainer.encodeIfPresent(isDisabled, forKey: .isDisabled) - try encoderContainer.encodeIfPresent(maxParentalRating, forKey: .maxParentalRating) - try encoderContainer.encodeIfPresent(blockedTags, forKey: .blockedTags) - try encoderContainer.encodeIfPresent(enableUserPreferenceAccess, forKey: .enableUserPreferenceAccess) - try encoderContainer.encodeIfPresent(accessSchedules, forKey: .accessSchedules) - try encoderContainer.encodeIfPresent(blockUnratedItems, forKey: .blockUnratedItems) - try encoderContainer.encodeIfPresent(enableRemoteControlOfOtherUsers, forKey: .enableRemoteControlOfOtherUsers) - try encoderContainer.encodeIfPresent(enableSharedDeviceControl, forKey: .enableSharedDeviceControl) - try encoderContainer.encodeIfPresent(enableRemoteAccess, forKey: .enableRemoteAccess) - try encoderContainer.encodeIfPresent(enableLiveTvManagement, forKey: .enableLiveTvManagement) - try encoderContainer.encodeIfPresent(enableLiveTvAccess, forKey: .enableLiveTvAccess) - try encoderContainer.encodeIfPresent(enableMediaPlayback, forKey: .enableMediaPlayback) - try encoderContainer.encodeIfPresent(enableAudioPlaybackTranscoding, forKey: .enableAudioPlaybackTranscoding) - try encoderContainer.encodeIfPresent(enableVideoPlaybackTranscoding, forKey: .enableVideoPlaybackTranscoding) - try encoderContainer.encodeIfPresent(enablePlaybackRemuxing, forKey: .enablePlaybackRemuxing) - try encoderContainer.encodeIfPresent(forceRemoteSourceTranscoding, forKey: .forceRemoteSourceTranscoding) - try encoderContainer.encodeIfPresent(enableContentDeletion, forKey: .enableContentDeletion) - try encoderContainer.encodeIfPresent(enableContentDeletionFromFolders, forKey: .enableContentDeletionFromFolders) - try encoderContainer.encodeIfPresent(enableContentDownloading, forKey: .enableContentDownloading) - try encoderContainer.encodeIfPresent(enableSyncTranscoding, forKey: .enableSyncTranscoding) - try encoderContainer.encodeIfPresent(enableMediaConversion, forKey: .enableMediaConversion) - try encoderContainer.encodeIfPresent(enabledDevices, forKey: .enabledDevices) - try encoderContainer.encodeIfPresent(enableAllDevices, forKey: .enableAllDevices) - try encoderContainer.encodeIfPresent(enabledChannels, forKey: .enabledChannels) - try encoderContainer.encodeIfPresent(enableAllChannels, forKey: .enableAllChannels) - try encoderContainer.encodeIfPresent(enabledFolders, forKey: .enabledFolders) - try encoderContainer.encodeIfPresent(enableAllFolders, forKey: .enableAllFolders) - try encoderContainer.encodeIfPresent(invalidLoginAttemptCount, forKey: .invalidLoginAttemptCount) - try encoderContainer.encodeIfPresent(loginAttemptsBeforeLockout, forKey: .loginAttemptsBeforeLockout) - try encoderContainer.encodeIfPresent(maxActiveSessions, forKey: .maxActiveSessions) - try encoderContainer.encodeIfPresent(enablePublicSharing, forKey: .enablePublicSharing) - try encoderContainer.encodeIfPresent(blockedMediaFolders, forKey: .blockedMediaFolders) - try encoderContainer.encodeIfPresent(blockedChannels, forKey: .blockedChannels) - try encoderContainer.encodeIfPresent(remoteClientBitrateLimit, forKey: .remoteClientBitrateLimit) - try encoderContainer.encodeIfPresent(authenticationProviderId, forKey: .authenticationProviderId) - try encoderContainer.encodeIfPresent(passwordResetProviderId, forKey: .passwordResetProviderId) - try encoderContainer.encodeIfPresent(syncPlayAccess, forKey: .syncPlayAccess) - } -} diff --git a/Sources/JellyfinAPI/Models/UserItemDataDto.swift b/Sources/JellyfinAPI/Models/UserItemDataDto.swift deleted file mode 100644 index 44e470b75..000000000 --- a/Sources/JellyfinAPI/Models/UserItemDataDto.swift +++ /dev/null @@ -1,83 +0,0 @@ -// -// UserItemDataDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class UserItemDataDto. */ -public struct UserItemDataDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets the rating. */ - public var rating: Double? - /** Gets or sets the played percentage. */ - public var playedPercentage: Double? - /** Gets or sets the unplayed item count. */ - public var unplayedItemCount: Int? - /** Gets or sets the playback position ticks. */ - public var playbackPositionTicks: Int64? - /** Gets or sets the play count. */ - public var playCount: Int? - /** Gets or sets a value indicating whether this instance is favorite. */ - public var isFavorite: Bool? - /** Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes. */ - public var likes: Bool? - /** Gets or sets the last played date. */ - public var lastPlayedDate: Date? - /** Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played. */ - public var played: Bool? - /** Gets or sets the key. */ - public var key: String? - /** Gets or sets the item identifier. */ - public var itemId: String? - - public init(rating: Double? = nil, playedPercentage: Double? = nil, unplayedItemCount: Int? = nil, playbackPositionTicks: Int64? = nil, playCount: Int? = nil, isFavorite: Bool? = nil, likes: Bool? = nil, lastPlayedDate: Date? = nil, played: Bool? = nil, key: String? = nil, itemId: String? = nil) { - self.rating = rating - self.playedPercentage = playedPercentage - self.unplayedItemCount = unplayedItemCount - self.playbackPositionTicks = playbackPositionTicks - self.playCount = playCount - self.isFavorite = isFavorite - self.likes = likes - self.lastPlayedDate = lastPlayedDate - self.played = played - self.key = key - self.itemId = itemId - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case rating = "Rating" - case playedPercentage = "PlayedPercentage" - case unplayedItemCount = "UnplayedItemCount" - case playbackPositionTicks = "PlaybackPositionTicks" - case playCount = "PlayCount" - case isFavorite = "IsFavorite" - case likes = "Likes" - case lastPlayedDate = "LastPlayedDate" - case played = "Played" - case key = "Key" - case itemId = "ItemId" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(rating, forKey: .rating) - try encoderContainer.encodeIfPresent(playedPercentage, forKey: .playedPercentage) - try encoderContainer.encodeIfPresent(unplayedItemCount, forKey: .unplayedItemCount) - try encoderContainer.encodeIfPresent(playbackPositionTicks, forKey: .playbackPositionTicks) - try encoderContainer.encodeIfPresent(playCount, forKey: .playCount) - try encoderContainer.encodeIfPresent(isFavorite, forKey: .isFavorite) - try encoderContainer.encodeIfPresent(likes, forKey: .likes) - try encoderContainer.encodeIfPresent(lastPlayedDate, forKey: .lastPlayedDate) - try encoderContainer.encodeIfPresent(played, forKey: .played) - try encoderContainer.encodeIfPresent(key, forKey: .key) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - } -} diff --git a/Sources/JellyfinAPI/Models/UserPolicy.swift b/Sources/JellyfinAPI/Models/UserPolicy.swift deleted file mode 100644 index e29b20db8..000000000 --- a/Sources/JellyfinAPI/Models/UserPolicy.swift +++ /dev/null @@ -1,189 +0,0 @@ -// -// UserPolicy.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct UserPolicy: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether this instance is administrator. */ - public var isAdministrator: Bool? - /** Gets or sets a value indicating whether this instance is hidden. */ - public var isHidden: Bool? - /** Gets or sets a value indicating whether this instance is disabled. */ - public var isDisabled: Bool? - /** Gets or sets the max parental rating. */ - public var maxParentalRating: Int? - public var blockedTags: [String]? - public var enableUserPreferenceAccess: Bool? - public var accessSchedules: [AccessSchedule]? - public var blockUnratedItems: [UnratedItem]? - public var enableRemoteControlOfOtherUsers: Bool? - public var enableSharedDeviceControl: Bool? - public var enableRemoteAccess: Bool? - public var enableLiveTvManagement: Bool? - public var enableLiveTvAccess: Bool? - public var enableMediaPlayback: Bool? - public var enableAudioPlaybackTranscoding: Bool? - public var enableVideoPlaybackTranscoding: Bool? - public var enablePlaybackRemuxing: Bool? - public var forceRemoteSourceTranscoding: Bool? - public var enableContentDeletion: Bool? - public var enableContentDeletionFromFolders: [String]? - public var enableContentDownloading: Bool? - /** Gets or sets a value indicating whether [enable synchronize]. */ - public var enableSyncTranscoding: Bool? - public var enableMediaConversion: Bool? - public var enabledDevices: [String]? - public var enableAllDevices: Bool? - public var enabledChannels: [String]? - public var enableAllChannels: Bool? - public var enabledFolders: [String]? - public var enableAllFolders: Bool? - public var invalidLoginAttemptCount: Int? - public var loginAttemptsBeforeLockout: Int? - public var maxActiveSessions: Int? - public var enablePublicSharing: Bool? - public var blockedMediaFolders: [String]? - public var blockedChannels: [String]? - public var remoteClientBitrateLimit: Int? - public var authenticationProviderId: String? - public var passwordResetProviderId: String? - /** Enum SyncPlayUserAccessType. */ - public var syncPlayAccess: SyncPlayUserAccessType? - - public init(isAdministrator: Bool? = nil, isHidden: Bool? = nil, isDisabled: Bool? = nil, maxParentalRating: Int? = nil, blockedTags: [String]? = nil, enableUserPreferenceAccess: Bool? = nil, accessSchedules: [AccessSchedule]? = nil, blockUnratedItems: [UnratedItem]? = nil, enableRemoteControlOfOtherUsers: Bool? = nil, enableSharedDeviceControl: Bool? = nil, enableRemoteAccess: Bool? = nil, enableLiveTvManagement: Bool? = nil, enableLiveTvAccess: Bool? = nil, enableMediaPlayback: Bool? = nil, enableAudioPlaybackTranscoding: Bool? = nil, enableVideoPlaybackTranscoding: Bool? = nil, enablePlaybackRemuxing: Bool? = nil, forceRemoteSourceTranscoding: Bool? = nil, enableContentDeletion: Bool? = nil, enableContentDeletionFromFolders: [String]? = nil, enableContentDownloading: Bool? = nil, enableSyncTranscoding: Bool? = nil, enableMediaConversion: Bool? = nil, enabledDevices: [String]? = nil, enableAllDevices: Bool? = nil, enabledChannels: [String]? = nil, enableAllChannels: Bool? = nil, enabledFolders: [String]? = nil, enableAllFolders: Bool? = nil, invalidLoginAttemptCount: Int? = nil, loginAttemptsBeforeLockout: Int? = nil, maxActiveSessions: Int? = nil, enablePublicSharing: Bool? = nil, blockedMediaFolders: [String]? = nil, blockedChannels: [String]? = nil, remoteClientBitrateLimit: Int? = nil, authenticationProviderId: String? = nil, passwordResetProviderId: String? = nil, syncPlayAccess: SyncPlayUserAccessType? = nil) { - self.isAdministrator = isAdministrator - self.isHidden = isHidden - self.isDisabled = isDisabled - self.maxParentalRating = maxParentalRating - self.blockedTags = blockedTags - self.enableUserPreferenceAccess = enableUserPreferenceAccess - self.accessSchedules = accessSchedules - self.blockUnratedItems = blockUnratedItems - self.enableRemoteControlOfOtherUsers = enableRemoteControlOfOtherUsers - self.enableSharedDeviceControl = enableSharedDeviceControl - self.enableRemoteAccess = enableRemoteAccess - self.enableLiveTvManagement = enableLiveTvManagement - self.enableLiveTvAccess = enableLiveTvAccess - self.enableMediaPlayback = enableMediaPlayback - self.enableAudioPlaybackTranscoding = enableAudioPlaybackTranscoding - self.enableVideoPlaybackTranscoding = enableVideoPlaybackTranscoding - self.enablePlaybackRemuxing = enablePlaybackRemuxing - self.forceRemoteSourceTranscoding = forceRemoteSourceTranscoding - self.enableContentDeletion = enableContentDeletion - self.enableContentDeletionFromFolders = enableContentDeletionFromFolders - self.enableContentDownloading = enableContentDownloading - self.enableSyncTranscoding = enableSyncTranscoding - self.enableMediaConversion = enableMediaConversion - self.enabledDevices = enabledDevices - self.enableAllDevices = enableAllDevices - self.enabledChannels = enabledChannels - self.enableAllChannels = enableAllChannels - self.enabledFolders = enabledFolders - self.enableAllFolders = enableAllFolders - self.invalidLoginAttemptCount = invalidLoginAttemptCount - self.loginAttemptsBeforeLockout = loginAttemptsBeforeLockout - self.maxActiveSessions = maxActiveSessions - self.enablePublicSharing = enablePublicSharing - self.blockedMediaFolders = blockedMediaFolders - self.blockedChannels = blockedChannels - self.remoteClientBitrateLimit = remoteClientBitrateLimit - self.authenticationProviderId = authenticationProviderId - self.passwordResetProviderId = passwordResetProviderId - self.syncPlayAccess = syncPlayAccess - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case isAdministrator = "IsAdministrator" - case isHidden = "IsHidden" - case isDisabled = "IsDisabled" - case maxParentalRating = "MaxParentalRating" - case blockedTags = "BlockedTags" - case enableUserPreferenceAccess = "EnableUserPreferenceAccess" - case accessSchedules = "AccessSchedules" - case blockUnratedItems = "BlockUnratedItems" - case enableRemoteControlOfOtherUsers = "EnableRemoteControlOfOtherUsers" - case enableSharedDeviceControl = "EnableSharedDeviceControl" - case enableRemoteAccess = "EnableRemoteAccess" - case enableLiveTvManagement = "EnableLiveTvManagement" - case enableLiveTvAccess = "EnableLiveTvAccess" - case enableMediaPlayback = "EnableMediaPlayback" - case enableAudioPlaybackTranscoding = "EnableAudioPlaybackTranscoding" - case enableVideoPlaybackTranscoding = "EnableVideoPlaybackTranscoding" - case enablePlaybackRemuxing = "EnablePlaybackRemuxing" - case forceRemoteSourceTranscoding = "ForceRemoteSourceTranscoding" - case enableContentDeletion = "EnableContentDeletion" - case enableContentDeletionFromFolders = "EnableContentDeletionFromFolders" - case enableContentDownloading = "EnableContentDownloading" - case enableSyncTranscoding = "EnableSyncTranscoding" - case enableMediaConversion = "EnableMediaConversion" - case enabledDevices = "EnabledDevices" - case enableAllDevices = "EnableAllDevices" - case enabledChannels = "EnabledChannels" - case enableAllChannels = "EnableAllChannels" - case enabledFolders = "EnabledFolders" - case enableAllFolders = "EnableAllFolders" - case invalidLoginAttemptCount = "InvalidLoginAttemptCount" - case loginAttemptsBeforeLockout = "LoginAttemptsBeforeLockout" - case maxActiveSessions = "MaxActiveSessions" - case enablePublicSharing = "EnablePublicSharing" - case blockedMediaFolders = "BlockedMediaFolders" - case blockedChannels = "BlockedChannels" - case remoteClientBitrateLimit = "RemoteClientBitrateLimit" - case authenticationProviderId = "AuthenticationProviderId" - case passwordResetProviderId = "PasswordResetProviderId" - case syncPlayAccess = "SyncPlayAccess" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(isAdministrator, forKey: .isAdministrator) - try encoderContainer.encodeIfPresent(isHidden, forKey: .isHidden) - try encoderContainer.encodeIfPresent(isDisabled, forKey: .isDisabled) - try encoderContainer.encodeIfPresent(maxParentalRating, forKey: .maxParentalRating) - try encoderContainer.encodeIfPresent(blockedTags, forKey: .blockedTags) - try encoderContainer.encodeIfPresent(enableUserPreferenceAccess, forKey: .enableUserPreferenceAccess) - try encoderContainer.encodeIfPresent(accessSchedules, forKey: .accessSchedules) - try encoderContainer.encodeIfPresent(blockUnratedItems, forKey: .blockUnratedItems) - try encoderContainer.encodeIfPresent(enableRemoteControlOfOtherUsers, forKey: .enableRemoteControlOfOtherUsers) - try encoderContainer.encodeIfPresent(enableSharedDeviceControl, forKey: .enableSharedDeviceControl) - try encoderContainer.encodeIfPresent(enableRemoteAccess, forKey: .enableRemoteAccess) - try encoderContainer.encodeIfPresent(enableLiveTvManagement, forKey: .enableLiveTvManagement) - try encoderContainer.encodeIfPresent(enableLiveTvAccess, forKey: .enableLiveTvAccess) - try encoderContainer.encodeIfPresent(enableMediaPlayback, forKey: .enableMediaPlayback) - try encoderContainer.encodeIfPresent(enableAudioPlaybackTranscoding, forKey: .enableAudioPlaybackTranscoding) - try encoderContainer.encodeIfPresent(enableVideoPlaybackTranscoding, forKey: .enableVideoPlaybackTranscoding) - try encoderContainer.encodeIfPresent(enablePlaybackRemuxing, forKey: .enablePlaybackRemuxing) - try encoderContainer.encodeIfPresent(forceRemoteSourceTranscoding, forKey: .forceRemoteSourceTranscoding) - try encoderContainer.encodeIfPresent(enableContentDeletion, forKey: .enableContentDeletion) - try encoderContainer.encodeIfPresent(enableContentDeletionFromFolders, forKey: .enableContentDeletionFromFolders) - try encoderContainer.encodeIfPresent(enableContentDownloading, forKey: .enableContentDownloading) - try encoderContainer.encodeIfPresent(enableSyncTranscoding, forKey: .enableSyncTranscoding) - try encoderContainer.encodeIfPresent(enableMediaConversion, forKey: .enableMediaConversion) - try encoderContainer.encodeIfPresent(enabledDevices, forKey: .enabledDevices) - try encoderContainer.encodeIfPresent(enableAllDevices, forKey: .enableAllDevices) - try encoderContainer.encodeIfPresent(enabledChannels, forKey: .enabledChannels) - try encoderContainer.encodeIfPresent(enableAllChannels, forKey: .enableAllChannels) - try encoderContainer.encodeIfPresent(enabledFolders, forKey: .enabledFolders) - try encoderContainer.encodeIfPresent(enableAllFolders, forKey: .enableAllFolders) - try encoderContainer.encodeIfPresent(invalidLoginAttemptCount, forKey: .invalidLoginAttemptCount) - try encoderContainer.encodeIfPresent(loginAttemptsBeforeLockout, forKey: .loginAttemptsBeforeLockout) - try encoderContainer.encodeIfPresent(maxActiveSessions, forKey: .maxActiveSessions) - try encoderContainer.encodeIfPresent(enablePublicSharing, forKey: .enablePublicSharing) - try encoderContainer.encodeIfPresent(blockedMediaFolders, forKey: .blockedMediaFolders) - try encoderContainer.encodeIfPresent(blockedChannels, forKey: .blockedChannels) - try encoderContainer.encodeIfPresent(remoteClientBitrateLimit, forKey: .remoteClientBitrateLimit) - try encoderContainer.encodeIfPresent(authenticationProviderId, forKey: .authenticationProviderId) - try encoderContainer.encodeIfPresent(passwordResetProviderId, forKey: .passwordResetProviderId) - try encoderContainer.encodeIfPresent(syncPlayAccess, forKey: .syncPlayAccess) - } -} diff --git a/Sources/JellyfinAPI/Models/UtcTimeResponse.swift b/Sources/JellyfinAPI/Models/UtcTimeResponse.swift deleted file mode 100644 index 2da0420c4..000000000 --- a/Sources/JellyfinAPI/Models/UtcTimeResponse.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// UtcTimeResponse.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Class UtcTimeResponse. */ -public struct UtcTimeResponse: Codable, JSONEncodable, Hashable { - - /** Gets the UTC time when request has been received. */ - public var requestReceptionTime: Date? - /** Gets the UTC time when response has been sent. */ - public var responseTransmissionTime: Date? - - public init(requestReceptionTime: Date? = nil, responseTransmissionTime: Date? = nil) { - self.requestReceptionTime = requestReceptionTime - self.responseTransmissionTime = responseTransmissionTime - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case requestReceptionTime = "RequestReceptionTime" - case responseTransmissionTime = "ResponseTransmissionTime" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(requestReceptionTime, forKey: .requestReceptionTime) - try encoderContainer.encodeIfPresent(responseTransmissionTime, forKey: .responseTransmissionTime) - } -} diff --git a/Sources/JellyfinAPI/Models/ValidatePathDto.swift b/Sources/JellyfinAPI/Models/ValidatePathDto.swift deleted file mode 100644 index 10f918b04..000000000 --- a/Sources/JellyfinAPI/Models/ValidatePathDto.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// ValidatePathDto.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Validate path object. */ -public struct ValidatePathDto: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether validate if path is writable. */ - public var validateWritable: Bool? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets is path file. */ - public var isFile: Bool? - - public init(validateWritable: Bool? = nil, path: String? = nil, isFile: Bool? = nil) { - self.validateWritable = validateWritable - self.path = path - self.isFile = isFile - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case validateWritable = "ValidateWritable" - case path = "Path" - case isFile = "IsFile" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(validateWritable, forKey: .validateWritable) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(isFile, forKey: .isFile) - } -} diff --git a/Sources/JellyfinAPI/Models/ValidatePathRequest.swift b/Sources/JellyfinAPI/Models/ValidatePathRequest.swift deleted file mode 100644 index 3e4e98fca..000000000 --- a/Sources/JellyfinAPI/Models/ValidatePathRequest.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// ValidatePathRequest.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Validate path object. */ -public struct ValidatePathRequest: Codable, JSONEncodable, Hashable { - - /** Gets or sets a value indicating whether validate if path is writable. */ - public var validateWritable: Bool? - /** Gets or sets the path. */ - public var path: String? - /** Gets or sets is path file. */ - public var isFile: Bool? - - public init(validateWritable: Bool? = nil, path: String? = nil, isFile: Bool? = nil) { - self.validateWritable = validateWritable - self.path = path - self.isFile = isFile - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case validateWritable = "ValidateWritable" - case path = "Path" - case isFile = "IsFile" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(validateWritable, forKey: .validateWritable) - try encoderContainer.encodeIfPresent(path, forKey: .path) - try encoderContainer.encodeIfPresent(isFile, forKey: .isFile) - } -} diff --git a/Sources/JellyfinAPI/Models/Version.swift b/Sources/JellyfinAPI/Models/Version.swift deleted file mode 100644 index e16678591..000000000 --- a/Sources/JellyfinAPI/Models/Version.swift +++ /dev/null @@ -1,51 +0,0 @@ -// -// Version.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct Version: Codable, Hashable { - - public var major: Int? - public var minor: Int? - public var build: Int? - public var revision: Int? - public var majorRevision: Int? - public var minorRevision: Int? - - public init(major: Int? = nil, minor: Int? = nil, build: Int? = nil, revision: Int? = nil, majorRevision: Int? = nil, minorRevision: Int? = nil) { - self.major = major - self.minor = minor - self.build = build - self.revision = revision - self.majorRevision = majorRevision - self.minorRevision = minorRevision - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case major = "Major" - case minor = "Minor" - case build = "Build" - case revision = "Revision" - case majorRevision = "MajorRevision" - case minorRevision = "MinorRevision" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(major, forKey: .major) - try encoderContainer.encodeIfPresent(minor, forKey: .minor) - try encoderContainer.encodeIfPresent(build, forKey: .build) - try encoderContainer.encodeIfPresent(revision, forKey: .revision) - try encoderContainer.encodeIfPresent(majorRevision, forKey: .majorRevision) - try encoderContainer.encodeIfPresent(minorRevision, forKey: .minorRevision) - } -} diff --git a/Sources/JellyfinAPI/Models/VersionInfo.swift b/Sources/JellyfinAPI/Models/VersionInfo.swift deleted file mode 100644 index f94fefae4..000000000 --- a/Sources/JellyfinAPI/Models/VersionInfo.swift +++ /dev/null @@ -1,73 +0,0 @@ -// -// VersionInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Defines the MediaBrowser.Model.Updates.VersionInfo class. */ -public struct VersionInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the version. */ - public var version: String? - /** Gets the version as a System.Version. */ - public var versionNumber: String? - /** Gets or sets the changelog for this version. */ - public var changelog: String? - /** Gets or sets the ABI that this version was built against. */ - public var targetAbi: String? - /** Gets or sets the source URL. */ - public var sourceUrl: String? - /** Gets or sets a checksum for the binary. */ - public var checksum: String? - /** Gets or sets a timestamp of when the binary was built. */ - public var timestamp: String? - /** Gets or sets the repository name. */ - public var repositoryName: String? - /** Gets or sets the repository url. */ - public var repositoryUrl: String? - - public init(version: String? = nil, versionNumber: String? = nil, changelog: String? = nil, targetAbi: String? = nil, sourceUrl: String? = nil, checksum: String? = nil, timestamp: String? = nil, repositoryName: String? = nil, repositoryUrl: String? = nil) { - self.version = version - self.versionNumber = versionNumber - self.changelog = changelog - self.targetAbi = targetAbi - self.sourceUrl = sourceUrl - self.checksum = checksum - self.timestamp = timestamp - self.repositoryName = repositoryName - self.repositoryUrl = repositoryUrl - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case version - case versionNumber = "VersionNumber" - case changelog - case targetAbi - case sourceUrl - case checksum - case timestamp - case repositoryName - case repositoryUrl - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(version, forKey: .version) - try encoderContainer.encodeIfPresent(versionNumber, forKey: .versionNumber) - try encoderContainer.encodeIfPresent(changelog, forKey: .changelog) - try encoderContainer.encodeIfPresent(targetAbi, forKey: .targetAbi) - try encoderContainer.encodeIfPresent(sourceUrl, forKey: .sourceUrl) - try encoderContainer.encodeIfPresent(checksum, forKey: .checksum) - try encoderContainer.encodeIfPresent(timestamp, forKey: .timestamp) - try encoderContainer.encodeIfPresent(repositoryName, forKey: .repositoryName) - try encoderContainer.encodeIfPresent(repositoryUrl, forKey: .repositoryUrl) - } -} diff --git a/Sources/JellyfinAPI/Models/Video3DFormat.swift b/Sources/JellyfinAPI/Models/Video3DFormat.swift deleted file mode 100644 index fe269360f..000000000 --- a/Sources/JellyfinAPI/Models/Video3DFormat.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// Video3DFormat.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public enum Video3DFormat: String, Codable, CaseIterable { - case halfSideBySide = "HalfSideBySide" - case fullSideBySide = "FullSideBySide" - case fullTopAndBottom = "FullTopAndBottom" - case halfTopAndBottom = "HalfTopAndBottom" - case mvc = "MVC" -} diff --git a/Sources/JellyfinAPI/Models/VideoType.swift b/Sources/JellyfinAPI/Models/VideoType.swift deleted file mode 100644 index 65ee9c481..000000000 --- a/Sources/JellyfinAPI/Models/VideoType.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// VideoType.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Enum VideoType. */ -public enum VideoType: String, Codable, CaseIterable { - case videoFile = "VideoFile" - case iso = "Iso" - case dvd = "Dvd" - case bluRay = "BluRay" -} diff --git a/Sources/JellyfinAPI/Models/VirtualFolderInfo.swift b/Sources/JellyfinAPI/Models/VirtualFolderInfo.swift deleted file mode 100644 index 408ce0b7b..000000000 --- a/Sources/JellyfinAPI/Models/VirtualFolderInfo.swift +++ /dev/null @@ -1,65 +0,0 @@ -// -// VirtualFolderInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Used to hold information about a user's list of configured virtual folders. */ -public struct VirtualFolderInfo: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name. */ - public var name: String? - /** Gets or sets the locations. */ - public var locations: [String]? - /** Gets or sets the type of the collection. */ - public var collectionType: CollectionTypeOptions? - public var libraryOptions: VirtualFolderInfoLibraryOptions? - /** Gets or sets the item identifier. */ - public var itemId: String? - /** Gets or sets the primary image item identifier. */ - public var primaryImageItemId: String? - public var refreshProgress: Double? - public var refreshStatus: String? - - public init(name: String? = nil, locations: [String]? = nil, collectionType: CollectionTypeOptions? = nil, libraryOptions: VirtualFolderInfoLibraryOptions? = nil, itemId: String? = nil, primaryImageItemId: String? = nil, refreshProgress: Double? = nil, refreshStatus: String? = nil) { - self.name = name - self.locations = locations - self.collectionType = collectionType - self.libraryOptions = libraryOptions - self.itemId = itemId - self.primaryImageItemId = primaryImageItemId - self.refreshProgress = refreshProgress - self.refreshStatus = refreshStatus - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case locations = "Locations" - case collectionType = "CollectionType" - case libraryOptions = "LibraryOptions" - case itemId = "ItemId" - case primaryImageItemId = "PrimaryImageItemId" - case refreshProgress = "RefreshProgress" - case refreshStatus = "RefreshStatus" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(locations, forKey: .locations) - try encoderContainer.encodeIfPresent(collectionType, forKey: .collectionType) - try encoderContainer.encodeIfPresent(libraryOptions, forKey: .libraryOptions) - try encoderContainer.encodeIfPresent(itemId, forKey: .itemId) - try encoderContainer.encodeIfPresent(primaryImageItemId, forKey: .primaryImageItemId) - try encoderContainer.encodeIfPresent(refreshProgress, forKey: .refreshProgress) - try encoderContainer.encodeIfPresent(refreshStatus, forKey: .refreshStatus) - } -} diff --git a/Sources/JellyfinAPI/Models/VirtualFolderInfoLibraryOptions.swift b/Sources/JellyfinAPI/Models/VirtualFolderInfoLibraryOptions.swift deleted file mode 100644 index 08410f180..000000000 --- a/Sources/JellyfinAPI/Models/VirtualFolderInfoLibraryOptions.swift +++ /dev/null @@ -1,139 +0,0 @@ -// -// VirtualFolderInfoLibraryOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct VirtualFolderInfoLibraryOptions: Codable, JSONEncodable, Hashable { - - public var enablePhotos: Bool? - public var enableRealtimeMonitor: Bool? - public var enableChapterImageExtraction: Bool? - public var extractChapterImagesDuringLibraryScan: Bool? - public var pathInfos: [MediaPathInfo]? - public var saveLocalMetadata: Bool? - @available(*, deprecated, message: "This property is deprecated.") - public var enableInternetProviders: Bool? - public var enableAutomaticSeriesGrouping: Bool? - public var enableEmbeddedTitles: Bool? - public var enableEmbeddedEpisodeInfos: Bool? - public var automaticRefreshIntervalDays: Int? - /** Gets or sets the preferred metadata language. */ - public var preferredMetadataLanguage: String? - /** Gets or sets the metadata country code. */ - public var metadataCountryCode: String? - public var seasonZeroDisplayName: String? - public var metadataSavers: [String]? - public var disabledLocalMetadataReaders: [String]? - public var localMetadataReaderOrder: [String]? - public var disabledSubtitleFetchers: [String]? - public var subtitleFetcherOrder: [String]? - public var skipSubtitlesIfEmbeddedSubtitlesPresent: Bool? - public var skipSubtitlesIfAudioTrackMatches: Bool? - public var subtitleDownloadLanguages: [String]? - public var requirePerfectSubtitleMatch: Bool? - public var saveSubtitlesWithMedia: Bool? - public var automaticallyAddToCollection: Bool? - /** An enum representing the options to disable embedded subs. */ - public var allowEmbeddedSubtitles: EmbeddedSubtitleOptions? - public var typeOptions: [TypeOptions]? - - public init(enablePhotos: Bool? = nil, enableRealtimeMonitor: Bool? = nil, enableChapterImageExtraction: Bool? = nil, extractChapterImagesDuringLibraryScan: Bool? = nil, pathInfos: [MediaPathInfo]? = nil, saveLocalMetadata: Bool? = nil, enableInternetProviders: Bool? = nil, enableAutomaticSeriesGrouping: Bool? = nil, enableEmbeddedTitles: Bool? = nil, enableEmbeddedEpisodeInfos: Bool? = nil, automaticRefreshIntervalDays: Int? = nil, preferredMetadataLanguage: String? = nil, metadataCountryCode: String? = nil, seasonZeroDisplayName: String? = nil, metadataSavers: [String]? = nil, disabledLocalMetadataReaders: [String]? = nil, localMetadataReaderOrder: [String]? = nil, disabledSubtitleFetchers: [String]? = nil, subtitleFetcherOrder: [String]? = nil, skipSubtitlesIfEmbeddedSubtitlesPresent: Bool? = nil, skipSubtitlesIfAudioTrackMatches: Bool? = nil, subtitleDownloadLanguages: [String]? = nil, requirePerfectSubtitleMatch: Bool? = nil, saveSubtitlesWithMedia: Bool? = nil, automaticallyAddToCollection: Bool? = nil, allowEmbeddedSubtitles: EmbeddedSubtitleOptions? = nil, typeOptions: [TypeOptions]? = nil) { - self.enablePhotos = enablePhotos - self.enableRealtimeMonitor = enableRealtimeMonitor - self.enableChapterImageExtraction = enableChapterImageExtraction - self.extractChapterImagesDuringLibraryScan = extractChapterImagesDuringLibraryScan - self.pathInfos = pathInfos - self.saveLocalMetadata = saveLocalMetadata - self.enableInternetProviders = enableInternetProviders - self.enableAutomaticSeriesGrouping = enableAutomaticSeriesGrouping - self.enableEmbeddedTitles = enableEmbeddedTitles - self.enableEmbeddedEpisodeInfos = enableEmbeddedEpisodeInfos - self.automaticRefreshIntervalDays = automaticRefreshIntervalDays - self.preferredMetadataLanguage = preferredMetadataLanguage - self.metadataCountryCode = metadataCountryCode - self.seasonZeroDisplayName = seasonZeroDisplayName - self.metadataSavers = metadataSavers - self.disabledLocalMetadataReaders = disabledLocalMetadataReaders - self.localMetadataReaderOrder = localMetadataReaderOrder - self.disabledSubtitleFetchers = disabledSubtitleFetchers - self.subtitleFetcherOrder = subtitleFetcherOrder - self.skipSubtitlesIfEmbeddedSubtitlesPresent = skipSubtitlesIfEmbeddedSubtitlesPresent - self.skipSubtitlesIfAudioTrackMatches = skipSubtitlesIfAudioTrackMatches - self.subtitleDownloadLanguages = subtitleDownloadLanguages - self.requirePerfectSubtitleMatch = requirePerfectSubtitleMatch - self.saveSubtitlesWithMedia = saveSubtitlesWithMedia - self.automaticallyAddToCollection = automaticallyAddToCollection - self.allowEmbeddedSubtitles = allowEmbeddedSubtitles - self.typeOptions = typeOptions - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case enablePhotos = "EnablePhotos" - case enableRealtimeMonitor = "EnableRealtimeMonitor" - case enableChapterImageExtraction = "EnableChapterImageExtraction" - case extractChapterImagesDuringLibraryScan = "ExtractChapterImagesDuringLibraryScan" - case pathInfos = "PathInfos" - case saveLocalMetadata = "SaveLocalMetadata" - case enableInternetProviders = "EnableInternetProviders" - case enableAutomaticSeriesGrouping = "EnableAutomaticSeriesGrouping" - case enableEmbeddedTitles = "EnableEmbeddedTitles" - case enableEmbeddedEpisodeInfos = "EnableEmbeddedEpisodeInfos" - case automaticRefreshIntervalDays = "AutomaticRefreshIntervalDays" - case preferredMetadataLanguage = "PreferredMetadataLanguage" - case metadataCountryCode = "MetadataCountryCode" - case seasonZeroDisplayName = "SeasonZeroDisplayName" - case metadataSavers = "MetadataSavers" - case disabledLocalMetadataReaders = "DisabledLocalMetadataReaders" - case localMetadataReaderOrder = "LocalMetadataReaderOrder" - case disabledSubtitleFetchers = "DisabledSubtitleFetchers" - case subtitleFetcherOrder = "SubtitleFetcherOrder" - case skipSubtitlesIfEmbeddedSubtitlesPresent = "SkipSubtitlesIfEmbeddedSubtitlesPresent" - case skipSubtitlesIfAudioTrackMatches = "SkipSubtitlesIfAudioTrackMatches" - case subtitleDownloadLanguages = "SubtitleDownloadLanguages" - case requirePerfectSubtitleMatch = "RequirePerfectSubtitleMatch" - case saveSubtitlesWithMedia = "SaveSubtitlesWithMedia" - case automaticallyAddToCollection = "AutomaticallyAddToCollection" - case allowEmbeddedSubtitles = "AllowEmbeddedSubtitles" - case typeOptions = "TypeOptions" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(enablePhotos, forKey: .enablePhotos) - try encoderContainer.encodeIfPresent(enableRealtimeMonitor, forKey: .enableRealtimeMonitor) - try encoderContainer.encodeIfPresent(enableChapterImageExtraction, forKey: .enableChapterImageExtraction) - try encoderContainer.encodeIfPresent(extractChapterImagesDuringLibraryScan, forKey: .extractChapterImagesDuringLibraryScan) - try encoderContainer.encodeIfPresent(pathInfos, forKey: .pathInfos) - try encoderContainer.encodeIfPresent(saveLocalMetadata, forKey: .saveLocalMetadata) - try encoderContainer.encodeIfPresent(enableInternetProviders, forKey: .enableInternetProviders) - try encoderContainer.encodeIfPresent(enableAutomaticSeriesGrouping, forKey: .enableAutomaticSeriesGrouping) - try encoderContainer.encodeIfPresent(enableEmbeddedTitles, forKey: .enableEmbeddedTitles) - try encoderContainer.encodeIfPresent(enableEmbeddedEpisodeInfos, forKey: .enableEmbeddedEpisodeInfos) - try encoderContainer.encodeIfPresent(automaticRefreshIntervalDays, forKey: .automaticRefreshIntervalDays) - try encoderContainer.encodeIfPresent(preferredMetadataLanguage, forKey: .preferredMetadataLanguage) - try encoderContainer.encodeIfPresent(metadataCountryCode, forKey: .metadataCountryCode) - try encoderContainer.encodeIfPresent(seasonZeroDisplayName, forKey: .seasonZeroDisplayName) - try encoderContainer.encodeIfPresent(metadataSavers, forKey: .metadataSavers) - try encoderContainer.encodeIfPresent(disabledLocalMetadataReaders, forKey: .disabledLocalMetadataReaders) - try encoderContainer.encodeIfPresent(localMetadataReaderOrder, forKey: .localMetadataReaderOrder) - try encoderContainer.encodeIfPresent(disabledSubtitleFetchers, forKey: .disabledSubtitleFetchers) - try encoderContainer.encodeIfPresent(subtitleFetcherOrder, forKey: .subtitleFetcherOrder) - try encoderContainer.encodeIfPresent(skipSubtitlesIfEmbeddedSubtitlesPresent, forKey: .skipSubtitlesIfEmbeddedSubtitlesPresent) - try encoderContainer.encodeIfPresent(skipSubtitlesIfAudioTrackMatches, forKey: .skipSubtitlesIfAudioTrackMatches) - try encoderContainer.encodeIfPresent(subtitleDownloadLanguages, forKey: .subtitleDownloadLanguages) - try encoderContainer.encodeIfPresent(requirePerfectSubtitleMatch, forKey: .requirePerfectSubtitleMatch) - try encoderContainer.encodeIfPresent(saveSubtitlesWithMedia, forKey: .saveSubtitlesWithMedia) - try encoderContainer.encodeIfPresent(automaticallyAddToCollection, forKey: .automaticallyAddToCollection) - try encoderContainer.encodeIfPresent(allowEmbeddedSubtitles, forKey: .allowEmbeddedSubtitles) - try encoderContainer.encodeIfPresent(typeOptions, forKey: .typeOptions) - } -} diff --git a/Sources/JellyfinAPI/Models/WakeOnLanInfo.swift b/Sources/JellyfinAPI/Models/WakeOnLanInfo.swift deleted file mode 100644 index 020f347ac..000000000 --- a/Sources/JellyfinAPI/Models/WakeOnLanInfo.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// WakeOnLanInfo.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Provides the MAC address and port for wake-on-LAN functionality. */ -public struct WakeOnLanInfo: Codable, JSONEncodable, Hashable { - - /** Gets the MAC address of the device. */ - public var macAddress: String? - /** Gets or sets the wake-on-LAN port. */ - public var port: Int? - - public init(macAddress: String? = nil, port: Int? = nil) { - self.macAddress = macAddress - self.port = port - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case macAddress = "MacAddress" - case port = "Port" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(macAddress, forKey: .macAddress) - try encoderContainer.encodeIfPresent(port, forKey: .port) - } -} diff --git a/Sources/JellyfinAPI/Models/XbmcMetadataOptions.swift b/Sources/JellyfinAPI/Models/XbmcMetadataOptions.swift deleted file mode 100644 index c136659cc..000000000 --- a/Sources/JellyfinAPI/Models/XbmcMetadataOptions.swift +++ /dev/null @@ -1,47 +0,0 @@ -// -// XbmcMetadataOptions.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -public struct XbmcMetadataOptions: Codable, JSONEncodable, Hashable { - - public var userId: String? - public var releaseDateFormat: String? - public var saveImagePathsInNfo: Bool? - public var enablePathSubstitution: Bool? - public var enableExtraThumbsDuplication: Bool? - - public init(userId: String? = nil, releaseDateFormat: String? = nil, saveImagePathsInNfo: Bool? = nil, enablePathSubstitution: Bool? = nil, enableExtraThumbsDuplication: Bool? = nil) { - self.userId = userId - self.releaseDateFormat = releaseDateFormat - self.saveImagePathsInNfo = saveImagePathsInNfo - self.enablePathSubstitution = enablePathSubstitution - self.enableExtraThumbsDuplication = enableExtraThumbsDuplication - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case userId = "UserId" - case releaseDateFormat = "ReleaseDateFormat" - case saveImagePathsInNfo = "SaveImagePathsInNfo" - case enablePathSubstitution = "EnablePathSubstitution" - case enableExtraThumbsDuplication = "EnableExtraThumbsDuplication" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(userId, forKey: .userId) - try encoderContainer.encodeIfPresent(releaseDateFormat, forKey: .releaseDateFormat) - try encoderContainer.encodeIfPresent(saveImagePathsInNfo, forKey: .saveImagePathsInNfo) - try encoderContainer.encodeIfPresent(enablePathSubstitution, forKey: .enablePathSubstitution) - try encoderContainer.encodeIfPresent(enableExtraThumbsDuplication, forKey: .enableExtraThumbsDuplication) - } -} diff --git a/Sources/JellyfinAPI/Models/XmlAttribute.swift b/Sources/JellyfinAPI/Models/XmlAttribute.swift deleted file mode 100644 index a80f5f4ce..000000000 --- a/Sources/JellyfinAPI/Models/XmlAttribute.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// XmlAttribute.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if canImport(AnyCodable) -import AnyCodable -#endif - -/** Defines the MediaBrowser.Model.Dlna.XmlAttribute. */ -public struct XmlAttribute: Codable, JSONEncodable, Hashable { - - /** Gets or sets the name of the attribute. */ - public var name: String? - /** Gets or sets the value of the attribute. */ - public var value: String? - - public init(name: String? = nil, value: String? = nil) { - self.name = name - self.value = value - } - - public enum CodingKeys: String, CodingKey, CaseIterable { - case name = "Name" - case value = "Value" - } - - // Encodable protocol methods - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - try encoderContainer.encodeIfPresent(name, forKey: .name) - try encoderContainer.encodeIfPresent(value, forKey: .value) - } -} diff --git a/Sources/JellyfinAPI/OpenISO8601DateFormatter.swift b/Sources/JellyfinAPI/OpenISO8601DateFormatter.swift deleted file mode 100644 index e06208074..000000000 --- a/Sources/JellyfinAPI/OpenISO8601DateFormatter.swift +++ /dev/null @@ -1,44 +0,0 @@ -// -// OpenISO8601DateFormatter.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation - -// https://stackoverflow.com/a/50281094/976628 -public class OpenISO8601DateFormatter: DateFormatter { - static let withoutSeconds: DateFormatter = { - let formatter = DateFormatter() - formatter.calendar = Calendar(identifier: .iso8601) - formatter.locale = Locale(identifier: "en_US_POSIX") - formatter.timeZone = TimeZone(secondsFromGMT: 0) - formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZZZZZ" - return formatter - }() - - private func setup() { - calendar = Calendar(identifier: .iso8601) - locale = Locale(identifier: "en_US_POSIX") - timeZone = TimeZone(secondsFromGMT: 0) - dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ" - } - - override init() { - super.init() - setup() - } - - required init?(coder aDecoder: NSCoder) { - super.init(coder: aDecoder) - setup() - } - - override public func date(from string: String) -> Date? { - if let result = super.date(from: string) { - return result - } - return OpenISO8601DateFormatter.withoutSeconds.date(from: string) - } -} diff --git a/Sources/JellyfinAPI/SynchronizedDictionary.swift b/Sources/JellyfinAPI/SynchronizedDictionary.swift deleted file mode 100644 index acf7ff403..000000000 --- a/Sources/JellyfinAPI/SynchronizedDictionary.swift +++ /dev/null @@ -1,36 +0,0 @@ -// SynchronizedDictionary.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation - -internal struct SynchronizedDictionary { - - private var dictionary = [K: V]() - private let queue = DispatchQueue( - label: "SynchronizedDictionary", - qos: DispatchQoS.userInitiated, - attributes: [DispatchQueue.Attributes.concurrent], - autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency.inherit, - target: nil - ) - - internal subscript(key: K) -> V? { - get { - var value: V? - - queue.sync { - value = self.dictionary[key] - } - - return value - } - set { - queue.sync(flags: DispatchWorkItemFlags.barrier) { - self.dictionary[key] = newValue - } - } - } -} diff --git a/Sources/JellyfinAPI/URLSessionImplementations.swift b/Sources/JellyfinAPI/URLSessionImplementations.swift deleted file mode 100644 index b400f829e..000000000 --- a/Sources/JellyfinAPI/URLSessionImplementations.swift +++ /dev/null @@ -1,628 +0,0 @@ -// URLSessionImplementations.swift -// -// Generated by openapi-generator -// https://openapi-generator.tech -// - -import Foundation -#if !os(macOS) -import MobileCoreServices -#endif - -public protocol URLSessionProtocol { - func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask -} - -extension URLSession: URLSessionProtocol {} - -class URLSessionRequestBuilderFactory: RequestBuilderFactory { - func getNonDecodableBuilder() -> RequestBuilder.Type { - return URLSessionRequestBuilder.self - } - - func getBuilder() -> RequestBuilder.Type { - return URLSessionDecodableRequestBuilder.self - } -} - -public typealias JellyfinAPIAPIChallengeHandler = ((URLSession, URLSessionTask, URLAuthenticationChallenge) -> (URLSession.AuthChallengeDisposition, URLCredential?)) - -// Store the URLSession's delegate to retain its reference -private let sessionDelegate = SessionDelegate() - -// Store the URLSession to retain its reference -private let defaultURLSession = URLSession(configuration: .default, delegate: sessionDelegate, delegateQueue: nil) - -// Store current taskDidReceiveChallenge for every URLSessionTask -private var challengeHandlerStore = SynchronizedDictionary() - -// Store current URLCredential for every URLSessionTask -private var credentialStore = SynchronizedDictionary() - -open class URLSessionRequestBuilder: RequestBuilder { - - /** - May be assigned if you want to control the authentication challenges. - */ - public var taskDidReceiveChallenge: JellyfinAPIAPIChallengeHandler? - - /** - May be assigned if you want to do any of those things: - - control the task completion - - intercept and handle errors like authorization - - retry the request. - */ - @available(*, deprecated, message: "Please override execute() method to intercept and handle errors like authorization or retry the request. Check the Wiki for more info. https://github.com/OpenAPITools/openapi-generator/wiki/FAQ#how-do-i-implement-bearer-token-authentication-with-urlsession-on-the-swift-api-client") - public var taskCompletionShouldRetry: ((Data?, URLResponse?, Error?, @escaping (Bool) -> Void) -> Void)? - - required public init(method: String, URLString: String, parameters: [String: Any]?, headers: [String: String] = [:]) { - super.init(method: method, URLString: URLString, parameters: parameters, headers: headers) - } - - /** - May be overridden by a subclass if you want to control the URLSession - configuration. - */ - open func createURLSession() -> URLSessionProtocol { - return defaultURLSession - } - - /** - May be overridden by a subclass if you want to control the Content-Type - that is given to an uploaded form part. - - Return nil to use the default behavior (inferring the Content-Type from - the file extension). Return the desired Content-Type otherwise. - */ - open func contentTypeForFormPart(fileURL: URL) -> String? { - return nil - } - - /** - May be overridden by a subclass if you want to control the URLRequest - configuration (e.g. to override the cache policy). - */ - open func createURLRequest(urlSession: URLSessionProtocol, method: HTTPMethod, encoding: ParameterEncoding, headers: [String: String]) throws -> URLRequest { - - guard let url = URL(string: URLString) else { - throw DownloadException.requestMissingURL - } - - var originalRequest = URLRequest(url: url) - - originalRequest.httpMethod = method.rawValue - - headers.forEach { key, value in - originalRequest.setValue(value, forHTTPHeaderField: key) - } - - buildHeaders().forEach { key, value in - originalRequest.setValue(value, forHTTPHeaderField: key) - } - - let modifiedRequest = try encoding.encode(originalRequest, with: parameters) - - return modifiedRequest - } - - @discardableResult - override open func execute(_ apiResponseQueue: DispatchQueue = JellyfinAPIAPI.apiResponseQueue, _ completion: @escaping (_ result: Swift.Result, ErrorResponse>) -> Void) -> RequestTask { - let urlSession = createURLSession() - - guard let xMethod = HTTPMethod(rawValue: method) else { - fatalError("Unsupported Http method - \(method)") - } - - let encoding: ParameterEncoding - - switch xMethod { - case .get, .head: - encoding = URLEncoding() - - case .options, .post, .put, .patch, .delete, .trace, .connect: - let contentType = headers["Content-Type"] ?? "application/json" - - if contentType == "application/json" { - encoding = JSONDataEncoding() - } else if contentType == "multipart/form-data" { - encoding = FormDataEncoding(contentTypeForFormPart: contentTypeForFormPart(fileURL:)) - } else if contentType == "application/x-www-form-urlencoded" { - encoding = FormURLEncoding() - } else { - fatalError("Unsupported Media Type - \(contentType)") - } - } - - do { - let request = try createURLRequest(urlSession: urlSession, method: xMethod, encoding: encoding, headers: headers) - - var taskIdentifier: Int? - let cleanupRequest = { - if let taskIdentifier = taskIdentifier { - challengeHandlerStore[taskIdentifier] = nil - credentialStore[taskIdentifier] = nil - } - } - - let dataTask = urlSession.dataTask(with: request) { data, response, error in - - if let taskCompletionShouldRetry = self.taskCompletionShouldRetry { - - taskCompletionShouldRetry(data, response, error) { shouldRetry in - - if shouldRetry { - cleanupRequest() - self.execute(apiResponseQueue, completion) - } else { - apiResponseQueue.async { - self.processRequestResponse(urlRequest: request, data: data, response: response, error: error, completion: completion) - cleanupRequest() - } - } - } - } else { - apiResponseQueue.async { - self.processRequestResponse(urlRequest: request, data: data, response: response, error: error, completion: completion) - cleanupRequest() - } - } - } - - if #available(iOS 11.0, macOS 10.13, macCatalyst 13.0, tvOS 11.0, watchOS 4.0, *) { - onProgressReady?(dataTask.progress) - } - - taskIdentifier = dataTask.taskIdentifier - challengeHandlerStore[dataTask.taskIdentifier] = taskDidReceiveChallenge - credentialStore[dataTask.taskIdentifier] = credential - - dataTask.resume() - - requestTask.set(task: dataTask) - } catch { - apiResponseQueue.async { - completion(.failure(ErrorResponse.error(415, nil, nil, error))) - } - } - - return requestTask - } - - fileprivate func processRequestResponse(urlRequest: URLRequest, data: Data?, response: URLResponse?, error: Error?, completion: @escaping (_ result: Swift.Result, ErrorResponse>) -> Void) { - - if let error = error { - completion(.failure(ErrorResponse.error(-1, data, response, error))) - return - } - - guard let httpResponse = response as? HTTPURLResponse else { - completion(.failure(ErrorResponse.error(-2, data, response, DecodableRequestBuilderError.nilHTTPResponse))) - return - } - - guard httpResponse.isStatusCodeSuccessful else { - completion(.failure(ErrorResponse.error(httpResponse.statusCode, data, response, DecodableRequestBuilderError.unsuccessfulHTTPStatusCode))) - return - } - - switch T.self { - case is Void.Type: - - completion(.success(Response(response: httpResponse, body: () as! T))) - - default: - fatalError("Unsupported Response Body Type - \(String(describing: T.self))") - } - - } - - open func buildHeaders() -> [String: String] { - var httpHeaders: [String: String] = [:] - for (key, value) in headers { - httpHeaders[key] = value - } - for (key, value) in JellyfinAPIAPI.customHeaders { - httpHeaders[key] = value - } - return httpHeaders - } - - fileprivate func getFileName(fromContentDisposition contentDisposition: String?) -> String? { - - guard let contentDisposition = contentDisposition else { - return nil - } - - let items = contentDisposition.components(separatedBy: ";") - - var filename: String? - - for contentItem in items { - - let filenameKey = "filename=" - guard let range = contentItem.range(of: filenameKey) else { - continue - } - - filename = contentItem - return filename? - .replacingCharacters(in: range, with: "") - .replacingOccurrences(of: "\"", with: "") - .trimmingCharacters(in: .whitespacesAndNewlines) - } - - return filename - - } - - fileprivate func getPath(from url: URL) throws -> String { - - guard var path = URLComponents(url: url, resolvingAgainstBaseURL: true)?.path else { - throw DownloadException.requestMissingPath - } - - if path.hasPrefix("/") { - path.remove(at: path.startIndex) - } - - return path - - } - - fileprivate func getURL(from urlRequest: URLRequest) throws -> URL { - - guard let url = urlRequest.url else { - throw DownloadException.requestMissingURL - } - - return url - } - -} - -open class URLSessionDecodableRequestBuilder: URLSessionRequestBuilder { - override fileprivate func processRequestResponse(urlRequest: URLRequest, data: Data?, response: URLResponse?, error: Error?, completion: @escaping (_ result: Swift.Result, ErrorResponse>) -> Void) { - - if let error = error { - completion(.failure(ErrorResponse.error(-1, data, response, error))) - return - } - - guard let httpResponse = response as? HTTPURLResponse else { - completion(.failure(ErrorResponse.error(-2, data, response, DecodableRequestBuilderError.nilHTTPResponse))) - return - } - - guard httpResponse.isStatusCodeSuccessful else { - completion(.failure(ErrorResponse.error(httpResponse.statusCode, data, response, DecodableRequestBuilderError.unsuccessfulHTTPStatusCode))) - return - } - - switch T.self { - case is String.Type: - - let body = data.flatMap { String(data: $0, encoding: .utf8) } ?? "" - - completion(.success(Response(response: httpResponse, body: body as! T))) - - case is URL.Type: - do { - - guard error == nil else { - throw DownloadException.responseFailed - } - - guard let data = data else { - throw DownloadException.responseDataMissing - } - - let fileManager = FileManager.default - let cachesDirectory = fileManager.urls(for: .cachesDirectory, in: .userDomainMask)[0] - let requestURL = try getURL(from: urlRequest) - - var requestPath = try getPath(from: requestURL) - - if let headerFileName = getFileName(fromContentDisposition: httpResponse.allHeaderFields["Content-Disposition"] as? String) { - requestPath = requestPath.appending("/\(headerFileName)") - } else { - requestPath = requestPath.appending("/tmp.JellyfinAPI.\(UUID().uuidString)") - } - - let filePath = cachesDirectory.appendingPathComponent(requestPath) - let directoryPath = filePath.deletingLastPathComponent().path - - try fileManager.createDirectory(atPath: directoryPath, withIntermediateDirectories: true, attributes: nil) - try data.write(to: filePath, options: .atomic) - - completion(.success(Response(response: httpResponse, body: filePath as! T))) - - } catch let requestParserError as DownloadException { - completion(.failure(ErrorResponse.error(400, data, response, requestParserError))) - } catch { - completion(.failure(ErrorResponse.error(400, data, response, error))) - } - - case is Void.Type: - - completion(.success(Response(response: httpResponse, body: () as! T))) - - case is Data.Type: - - completion(.success(Response(response: httpResponse, body: data as! T))) - - default: - - guard let data = data, !data.isEmpty else { - if T.self is ExpressibleByNilLiteral.Type { - completion(.success(Response(response: httpResponse, body: Optional.none as! T))) - } else { - completion(.failure(ErrorResponse.error(httpResponse.statusCode, nil, response, DecodableRequestBuilderError.emptyDataResponse))) - } - return - } - - let decodeResult = CodableHelper.decode(T.self, from: data) - - switch decodeResult { - case let .success(decodableObj): - completion(.success(Response(response: httpResponse, body: decodableObj))) - case let .failure(error): - completion(.failure(ErrorResponse.error(httpResponse.statusCode, data, response, error))) - } - } - } -} - -private class SessionDelegate: NSObject, URLSessionTaskDelegate { - func urlSession(_ session: URLSession, task: URLSessionTask, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) { - - var disposition: URLSession.AuthChallengeDisposition = .performDefaultHandling - - var credential: URLCredential? - - if let taskDidReceiveChallenge = challengeHandlerStore[task.taskIdentifier] { - (disposition, credential) = taskDidReceiveChallenge(session, task, challenge) - } else { - if challenge.previousFailureCount > 0 { - disposition = .rejectProtectionSpace - } else { - credential = credentialStore[task.taskIdentifier] ?? session.configuration.urlCredentialStorage?.defaultCredential(for: challenge.protectionSpace) - - if credential != nil { - disposition = .useCredential - } - } - } - - completionHandler(disposition, credential) - } -} - -public enum HTTPMethod: String { - case options = "OPTIONS" - case get = "GET" - case head = "HEAD" - case post = "POST" - case put = "PUT" - case patch = "PATCH" - case delete = "DELETE" - case trace = "TRACE" - case connect = "CONNECT" -} - -public protocol ParameterEncoding { - func encode(_ urlRequest: URLRequest, with parameters: [String: Any]?) throws -> URLRequest -} - -private class URLEncoding: ParameterEncoding { - func encode(_ urlRequest: URLRequest, with parameters: [String: Any]?) throws -> URLRequest { - - var urlRequest = urlRequest - - guard let parameters = parameters else { return urlRequest } - - guard let url = urlRequest.url else { - throw DownloadException.requestMissingURL - } - - if var urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false), !parameters.isEmpty { - urlComponents.queryItems = APIHelper.mapValuesToQueryItems(parameters) - urlRequest.url = urlComponents.url - } - - return urlRequest - } -} - -private class FormDataEncoding: ParameterEncoding { - - let contentTypeForFormPart: (_ fileURL: URL) -> String? - - init(contentTypeForFormPart: @escaping (_ fileURL: URL) -> String?) { - self.contentTypeForFormPart = contentTypeForFormPart - } - - func encode(_ urlRequest: URLRequest, with parameters: [String: Any]?) throws -> URLRequest { - - var urlRequest = urlRequest - - guard let parameters = parameters, !parameters.isEmpty else { - return urlRequest - } - - let boundary = "Boundary-\(UUID().uuidString)" - - urlRequest.setValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: "Content-Type") - - for (key, value) in parameters { - switch value { - case let fileURL as URL: - - urlRequest = try configureFileUploadRequest( - urlRequest: urlRequest, - boundary: boundary, - name: key, - fileURL: fileURL - ) - - case let string as String: - - if let data = string.data(using: .utf8) { - urlRequest = configureDataUploadRequest( - urlRequest: urlRequest, - boundary: boundary, - name: key, - data: data - ) - } - - case let number as NSNumber: - - if let data = number.stringValue.data(using: .utf8) { - urlRequest = configureDataUploadRequest( - urlRequest: urlRequest, - boundary: boundary, - name: key, - data: data - ) - } - - case let data as Data: - - urlRequest = configureDataUploadRequest( - urlRequest: urlRequest, - boundary: boundary, - name: key, - data: data - ) - - default: - fatalError("Unprocessable value \(value) with key \(key)") - } - } - - var body = urlRequest.httpBody.orEmpty - - body.append("\r\n--\(boundary)--\r\n") - - urlRequest.httpBody = body - - return urlRequest - } - - private func configureFileUploadRequest(urlRequest: URLRequest, boundary: String, name: String, fileURL: URL) throws -> URLRequest { - - var urlRequest = urlRequest - - var body = urlRequest.httpBody.orEmpty - - let fileData = try Data(contentsOf: fileURL) - - let mimetype = contentTypeForFormPart(fileURL) ?? mimeType(for: fileURL) - - let fileName = fileURL.lastPathComponent - - // If we already added something then we need an additional newline. - if body.count > 0 { - body.append("\r\n") - } - - // Value boundary. - body.append("--\(boundary)\r\n") - - // Value headers. - body.append("Content-Disposition: form-data; name=\"\(name)\"; filename=\"\(fileName)\"\r\n") - body.append("Content-Type: \(mimetype)\r\n") - - // Separate headers and body. - body.append("\r\n") - - // The value data. - body.append(fileData) - - urlRequest.httpBody = body - - return urlRequest - } - - private func configureDataUploadRequest(urlRequest: URLRequest, boundary: String, name: String, data: Data) -> URLRequest { - - var urlRequest = urlRequest - - var body = urlRequest.httpBody.orEmpty - - // If we already added something then we need an additional newline. - if body.count > 0 { - body.append("\r\n") - } - - // Value boundary. - body.append("--\(boundary)\r\n") - - // Value headers. - body.append("Content-Disposition: form-data; name=\"\(name)\"\r\n") - - // Separate headers and body. - body.append("\r\n") - - // The value data. - body.append(data) - - urlRequest.httpBody = body - - return urlRequest - - } - - func mimeType(for url: URL) -> String { - let pathExtension = url.pathExtension - - if let uti = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, pathExtension as NSString, nil)?.takeRetainedValue() { - if let mimetype = UTTypeCopyPreferredTagWithClass(uti, kUTTagClassMIMEType)?.takeRetainedValue() { - return mimetype as String - } - } - return "application/octet-stream" - } - -} - -private class FormURLEncoding: ParameterEncoding { - func encode(_ urlRequest: URLRequest, with parameters: [String: Any]?) throws -> URLRequest { - - var urlRequest = urlRequest - - var requestBodyComponents = URLComponents() - requestBodyComponents.queryItems = APIHelper.mapValuesToQueryItems(parameters ?? [:]) - - if urlRequest.value(forHTTPHeaderField: "Content-Type") == nil { - urlRequest.setValue("application/x-www-form-urlencoded", forHTTPHeaderField: "Content-Type") - } - - urlRequest.httpBody = requestBodyComponents.query?.data(using: .utf8) - - return urlRequest - } -} - -private extension Data { - /// Append string to Data - /// - /// Rather than littering my code with calls to `dataUsingEncoding` to convert strings to Data, and then add that data to the Data, this wraps it in a nice convenient little extension to Data. This converts using UTF-8. - /// - /// - parameter string: The string to be added to the `Data`. - - mutating func append(_ string: String) { - if let data = string.data(using: .utf8) { - append(data) - } - } -} - -private extension Optional where Wrapped == Data { - var orEmpty: Data { - self ?? Data() - } -} - -extension JSONDataEncoding: ParameterEncoding {} diff --git a/Sources/JellyfinClient.swift b/Sources/JellyfinClient.swift new file mode 100644 index 000000000..7e1206813 --- /dev/null +++ b/Sources/JellyfinClient.swift @@ -0,0 +1,276 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get + +/// Basic wrapper of `Get.APIClient` with helper methods for interfacing with the `JellyfinAPI` package, +/// like injecting required headers for API calls with the current access token. +public final class JellyfinClient { + + /// Current user access token + public private(set) var accessToken: String? + + /// Configuration for this instance of `JellyfinClient` + public let configuration: Configuration + + private var _apiClient: APIClient! + private let sessionConfiguration: URLSessionConfiguration + private let delegate: APIClientDelegate? + + /// Create a `JellyfinClient` instance given a configuration and optional access token + public init( + configuration: Configuration, + sessionConfiguration: URLSessionConfiguration = .default, + delegate: APIClientDelegate? = nil, + accessToken: String? = nil + ) { + self.configuration = configuration + self.sessionConfiguration = sessionConfiguration + self.delegate = delegate + self.accessToken = accessToken + + self._apiClient = APIClient(baseURL: configuration.url) { configuration in + configuration.sessionConfiguration = sessionConfiguration + configuration.delegate = self + + let isoDateFormatter: DateFormatter = OpenISO8601DateFormatter() + + let decoder = JSONDecoder() + decoder.dateDecodingStrategy = .formatted(isoDateFormatter) + configuration.decoder = decoder + + let encoder = JSONEncoder() + encoder.dateEncodingStrategy = .formatted(isoDateFormatter) + encoder.outputFormatting = .prettyPrinted + configuration.encoder = encoder + } + } + + public struct Configuration { + + /// Server URL + public let url: URL + + /// Client name + /// + /// - Example: `Jellyfin iOS` + public let client: String + + /// Device name + /// + /// - Example: `iPhone 13 Pro` + public let deviceName: String + + /// Unique device ID. A `UUID` is recommended. + public let deviceID: String + + /// Version of your application + /// + /// - Example: `1.2.3` + public let version: String + + public init( + url: URL, + client: String, + deviceName: String, + deviceID: String, + version: String + ) { + self.url = url + self.client = client + self.deviceName = deviceName + self.deviceID = deviceID + self.version = version + } + } + + public func send( + _ request: Request, + delegate: URLSessionDataDelegate? = nil, + configure: ((inout URLRequest) throws -> Void)? = nil + ) async throws -> Response where T: Decodable { + try await _apiClient.send(request, delegate: delegate, configure: configure) + } + + @discardableResult + public func send( + _ request: Request, + delegate: URLSessionDataDelegate? = nil, + configure: ((inout URLRequest) throws -> Void)? = nil + ) async throws -> Response { + try await _apiClient.send(request, delegate: delegate, configure: configure) + } + + public func data( + for request: Request, + delegate: URLSessionDataDelegate? = nil, + configure: ((inout URLRequest) throws -> Void)? = nil + ) async throws -> Response { + try await _apiClient.data(for: request, delegate: delegate, configure: configure) + } + + public func download( + for request: Request, + delegate: URLSessionDownloadDelegate? = nil, + configure: ((inout URLRequest) throws -> Void)? = nil + ) async throws -> Response { + try await _apiClient.download(for: request, delegate: delegate, configure: configure) + } + + public func download( + resumeFrom resumeData: Data, + delegate: URLSessionDownloadDelegate? = nil + ) async throws -> Response { + try await _apiClient.download(resumeFrom: resumeData, delegate: delegate) + } + + private func authHeaders() -> String { + let fields = [ + "DeviceId": configuration.deviceID, + "Device": configuration.deviceName, + "Client": configuration.client, + "Version": configuration.version, + "Token": accessToken ?? "", + ] + .map { "\($0.key)=\($0.value)" } + .joined(separator: ", ") + + return "MediaBrowser \(fields)" + } +} + +// MARK: APIClientDelegate + +extension JellyfinClient: APIClientDelegate { + + /// Allows you to modify the request right before it is sent. + /// Also injects required Jellyfin headers for every request. + /// + /// Gets called right before sending the request. If the retries are enabled, + /// is called before every attempt. + /// + /// - parameters: + /// - client: The client that sends the request. + /// - request: The request about to be sent. Can be modified + public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws { + // Inject required headers + request.addValue(authHeaders(), forHTTPHeaderField: "Authorization") + + try await delegate?.client(_apiClient, willSendRequest: &request) + } + + /// Validates response for the given request. + /// + /// - parameters: + /// - client: The client that sent the request. + /// - response: The response with an invalid status code. + /// - data: Body of the response, if any. + /// - request: Failing request. + /// + /// - throws: An error to be returned to the user. By default, throws + /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of + /// the `200..<300` range. + public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws { + if let delegate = delegate { + try delegate.client(_apiClient, validateResponse: response, data: data, task: task) + } else { + guard (200 ..< 300).contains(response.statusCode) else { + throw APIError.unacceptableStatusCode(response.statusCode) + } + } + } + + /// Gets called after a networking failure. Only one retry attempt is allowed. + /// + /// - important: This method will only be called for network requests, but not for + /// response body decoding failures or failures with creating requests using + /// ``client(_:makeURLFor:query:)`` and ``client(_:willSendRequest:)``. + /// + /// - parameters: + /// - client: The client that sent the request. + /// - task: The failed task. + /// - error: The encountered error. + /// - attempts: The number of already performed attempts. + /// + /// - returns: Return `true` to retry the request. + public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool { + try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false + } + + /// Constructs URL for the given request. + /// + /// - parameters: + /// - client: The client that sends the request. + /// - url: The URL passed by the client. + /// - request: The request about to be sent. + /// + /// - returns: The URL for the request. Return `nil` to use the default + /// logic used by client. + public func client(_ client: APIClient, makeURLFor url: String, query: [(String, String?)]?) throws -> URL? { + try delegate?.client(_apiClient, makeURLFor: url, query: query) + } +} + +// MARK: Helpers + +public extension JellyfinClient { + + /// Signs in a user given a username and password. On a successful response `accessToken` is set to the given access token. + /// + /// - Note: Overrides the current access token if one was previously set. Save this token locally or revoke it with `signOut` for proper access token management. + /// + /// - Parameters: + /// - username: username of the user + /// - password: password of the user + /// + /// - Throws: `ClientError.noAccessTokenInResponse` if no access token was supplied in a successful authentication response + @discardableResult + func signIn(username: String, password: String) async throws -> AuthenticationResult { + let authenticateUserRequest = Paths.authenticateUserByName(.init(password: password, pw: nil, username: "epippin")) + let response = try await send(authenticateUserRequest).value + + if let accessToken = response.accessToken { + self.accessToken = accessToken + } else { + throw ClientError.noAccessTokenInResponse + } + + return response + } + + /// Signs out the current user with the server by revoking the current access token + /// + /// - Throws: `ClientError.noAccessTokenSet` if no access token has currently been set + func signOut() async throws { + guard let accessToken = self.accessToken else { throw ClientError.noAccessTokenSet } + + let revokeKeyRequest = Paths.revokeKey(key: accessToken) + try await send(revokeKeyRequest) + self.accessToken = nil + } +} + +// MARK: ClientError + +extension JellyfinClient { + + enum ClientError: Error { + case noAccessTokenInResponse + case noAccessTokenSet + + var localizedDescription: String { + switch self { + case .noAccessTokenInResponse: + return "No access token in authenticated response" + case .noAccessTokenSet: + return "No access token to revoke" + } + } + } +} diff --git a/Sources/OpenISO8601Formatter.swift b/Sources/OpenISO8601Formatter.swift new file mode 100644 index 000000000..bd145e072 --- /dev/null +++ b/Sources/OpenISO8601Formatter.swift @@ -0,0 +1,45 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation + +// https://stackoverflow.com/a/50281094/976628 +public class OpenISO8601DateFormatter: DateFormatter { + static let withoutSeconds: DateFormatter = { + let formatter = DateFormatter() + formatter.calendar = Calendar(identifier: .iso8601) + formatter.locale = Locale(identifier: "en_US_POSIX") + formatter.timeZone = TimeZone(secondsFromGMT: 0) + formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZZZZZ" + return formatter + }() + + private func setup() { + calendar = Calendar(identifier: .iso8601) + locale = Locale(identifier: "en_US_POSIX") + timeZone = TimeZone(secondsFromGMT: 0) + dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ" + } + + override init() { + super.init() + setup() + } + + required init?(coder aDecoder: NSCoder) { + super.init(coder: aDecoder) + setup() + } + + override public func date(from string: String) -> Date? { + if let result = super.date(from: string) { + return result + } + return OpenISO8601DateFormatter.withoutSeconds.date(from: string) + } +} diff --git a/Sources/Paths/AddListingProviderAPI.swift b/Sources/Paths/AddListingProviderAPI.swift new file mode 100644 index 000000000..97db5caae --- /dev/null +++ b/Sources/Paths/AddListingProviderAPI.swift @@ -0,0 +1,41 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Adds a listings provider. + static func addListingProvider( + parameters: AddListingProviderParameters? = nil, + _ body: JellyfinAPI.ListingsProviderInfo? = nil + ) -> Request { + Request(method: "POST", url: "/LiveTv/ListingProviders", query: parameters?.asQuery, body: body, id: "AddListingProvider") + } + + struct AddListingProviderParameters { + public var pw: String? + public var isValidateListings: Bool? + public var isValidateLogin: Bool? + + public init(pw: String? = nil, isValidateListings: Bool? = nil, isValidateLogin: Bool? = nil) { + self.pw = pw + self.isValidateListings = isValidateListings + self.isValidateLogin = isValidateLogin + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(pw, forKey: "pw") + encoder.encode(isValidateListings, forKey: "validateListings") + encoder.encode(isValidateLogin, forKey: "validateLogin") + return encoder.items + } + } +} diff --git a/Sources/Paths/AddMediaPathAPI.swift b/Sources/Paths/AddMediaPathAPI.swift new file mode 100644 index 000000000..67aea87b2 --- /dev/null +++ b/Sources/Paths/AddMediaPathAPI.swift @@ -0,0 +1,30 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Add a media path to a library. + public static func addMediaPath(isRefreshLibrary: Bool? = nil, _ body: JellyfinAPI.MediaPathDto) -> Request { + Request( + method: "POST", + url: "/Library/VirtualFolders/Paths", + query: makeAddMediaPathQuery(isRefreshLibrary), + body: body, + id: "AddMediaPath" + ) + } + + private static func makeAddMediaPathQuery(_ isRefreshLibrary: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isRefreshLibrary, forKey: "refreshLibrary") + return encoder.items + } +} diff --git a/Sources/Paths/AddToCollectionAPI.swift b/Sources/Paths/AddToCollectionAPI.swift new file mode 100644 index 000000000..012c6ed40 --- /dev/null +++ b/Sources/Paths/AddToCollectionAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Adds items to a collection. + public static func addToCollection(collectionID: String, ids: [String]) -> Request { + Request(method: "POST", url: "/Collections/\(collectionID)/Items", query: makeAddToCollectionQuery(ids), id: "AddToCollection") + } + + private static func makeAddToCollectionQuery(_ ids: [String]) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(ids, forKey: "ids") + return encoder.items + } +} diff --git a/Sources/Paths/AddToPlaylistAPI.swift b/Sources/Paths/AddToPlaylistAPI.swift new file mode 100644 index 000000000..7364f4af1 --- /dev/null +++ b/Sources/Paths/AddToPlaylistAPI.swift @@ -0,0 +1,25 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Adds items to a playlist. + public static func addToPlaylist(playlistID: String, ids: [String]? = nil, userID: String? = nil) -> Request { + Request(method: "POST", url: "/Playlists/\(playlistID)/Items", query: makeAddToPlaylistQuery(ids, userID), id: "AddToPlaylist") + } + + private static func makeAddToPlaylistQuery(_ ids: [String]?, _ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(ids, forKey: "ids") + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/AddTunerHostAPI.swift b/Sources/Paths/AddTunerHostAPI.swift new file mode 100644 index 000000000..e49b613e3 --- /dev/null +++ b/Sources/Paths/AddTunerHostAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Adds a tuner host. + static func addTunerHost(_ body: JellyfinAPI.TunerHostInfo? = nil) -> Request { + Request(method: "POST", url: "/LiveTv/TunerHosts", body: body, id: "AddTunerHost") + } +} diff --git a/Sources/Paths/AddUserToSessionAPI.swift b/Sources/Paths/AddUserToSessionAPI.swift new file mode 100644 index 000000000..613dd9a7a --- /dev/null +++ b/Sources/Paths/AddUserToSessionAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Adds an additional user to a session. + static func addUserToSession(sessionID: String, userID: String) -> Request { + Request(method: "POST", url: "/Sessions/\(sessionID)/User/\(userID)", id: "AddUserToSession") + } +} diff --git a/Sources/Paths/AddVirtualFolderAPI.swift b/Sources/Paths/AddVirtualFolderAPI.swift new file mode 100644 index 000000000..03369d709 --- /dev/null +++ b/Sources/Paths/AddVirtualFolderAPI.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Adds a virtual folder. + static func addVirtualFolder( + parameters: AddVirtualFolderParameters? = nil, + _ body: JellyfinAPI.AddVirtualFolderDto? = nil + ) -> Request { + Request(method: "POST", url: "/Library/VirtualFolders", query: parameters?.asQuery, body: body, id: "AddVirtualFolder") + } + + struct AddVirtualFolderParameters { + public var name: String? + public var collectionType: CollectionType? + public var paths: [String]? + public var isRefreshLibrary: Bool? + + public typealias CollectionType = JellyfinAPI.CollectionTypeOptions + + public init(name: String? = nil, collectionType: CollectionType? = nil, paths: [String]? = nil, isRefreshLibrary: Bool? = nil) { + self.name = name + self.collectionType = collectionType + self.paths = paths + self.isRefreshLibrary = isRefreshLibrary + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(name, forKey: "name") + encoder.encode(collectionType, forKey: "collectionType") + encoder.encode(paths, forKey: "paths") + encoder.encode(isRefreshLibrary, forKey: "refreshLibrary") + return encoder.items + } + } +} diff --git a/Sources/Paths/ApplySearchCriteriaAPI.swift b/Sources/Paths/ApplySearchCriteriaAPI.swift new file mode 100644 index 000000000..17f6b3c92 --- /dev/null +++ b/Sources/Paths/ApplySearchCriteriaAPI.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Applies search criteria to an item and refreshes metadata. + public static func applySearchCriteria( + itemID: String, + isReplaceAllImages: Bool? = nil, + _ body: JellyfinAPI.RemoteSearchResult + ) -> Request { + Request( + method: "POST", + url: "/Items/RemoteSearch/Apply/\(itemID)", + query: makeApplySearchCriteriaQuery(isReplaceAllImages), + body: body, + id: "ApplySearchCriteria" + ) + } + + private static func makeApplySearchCriteriaQuery(_ isReplaceAllImages: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isReplaceAllImages, forKey: "replaceAllImages") + return encoder.items + } +} diff --git a/Sources/Paths/AuthenticateUserAPI.swift b/Sources/Paths/AuthenticateUserAPI.swift new file mode 100644 index 000000000..aa863738b --- /dev/null +++ b/Sources/Paths/AuthenticateUserAPI.swift @@ -0,0 +1,30 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Authenticates a user. + public static func authenticateUser(userID: String, pw: String, password: String? = nil) -> Request { + Request( + method: "POST", + url: "/Users/\(userID)/Authenticate", + query: makeAuthenticateUserQuery(pw, password), + id: "AuthenticateUser" + ) + } + + private static func makeAuthenticateUserQuery(_ pw: String, _ password: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(pw, forKey: "pw") + encoder.encode(password, forKey: "password") + return encoder.items + } +} diff --git a/Sources/Paths/AuthenticateUserByNameAPI.swift b/Sources/Paths/AuthenticateUserByNameAPI.swift new file mode 100644 index 000000000..250c6157a --- /dev/null +++ b/Sources/Paths/AuthenticateUserByNameAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Authenticates a user by name. + static func authenticateUserByName(_ body: JellyfinAPI.AuthenticateUserByName) -> Request { + Request(method: "POST", url: "/Users/AuthenticateByName", body: body, id: "AuthenticateUserByName") + } +} diff --git a/Sources/Paths/AuthenticateWithQuickConnectAPI.swift b/Sources/Paths/AuthenticateWithQuickConnectAPI.swift new file mode 100644 index 000000000..7a0b8fae6 --- /dev/null +++ b/Sources/Paths/AuthenticateWithQuickConnectAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Authenticates a user with quick connect. + static func authenticateWithQuickConnect(_ body: JellyfinAPI.QuickConnectDto) -> Request { + Request(method: "POST", url: "/Users/AuthenticateWithQuickConnect", body: body, id: "AuthenticateWithQuickConnect") + } +} diff --git a/Sources/Paths/AuthorizeAPI.swift b/Sources/Paths/AuthorizeAPI.swift new file mode 100644 index 000000000..613757615 --- /dev/null +++ b/Sources/Paths/AuthorizeAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Authorizes a pending quick connect request. + static func authorize(code: String) -> Request { + Request(method: "POST", url: "/QuickConnect/Authorize", query: [("code", code)], id: "Authorize") + } +} diff --git a/Sources/Paths/CancelPackageInstallationAPI.swift b/Sources/Paths/CancelPackageInstallationAPI.swift new file mode 100644 index 000000000..1977d65dc --- /dev/null +++ b/Sources/Paths/CancelPackageInstallationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Cancels a package installation. + static func cancelPackageInstallation(packageID: String) -> Request { + Request(method: "DELETE", url: "/Packages/Installing/\(packageID)", id: "CancelPackageInstallation") + } +} diff --git a/Sources/Paths/CancelSeriesTimerAPI.swift b/Sources/Paths/CancelSeriesTimerAPI.swift new file mode 100644 index 000000000..e10774e0e --- /dev/null +++ b/Sources/Paths/CancelSeriesTimerAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Cancels a live tv series timer. + static func cancelSeriesTimer(timerID: String) -> Request { + Request(method: "DELETE", url: "/LiveTv/SeriesTimers/\(timerID)", id: "CancelSeriesTimer") + } +} diff --git a/Sources/Paths/CancelTimerAPI.swift b/Sources/Paths/CancelTimerAPI.swift new file mode 100644 index 000000000..3a287232b --- /dev/null +++ b/Sources/Paths/CancelTimerAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Cancels a live tv timer. + static func cancelTimer(timerID: String) -> Request { + Request(method: "DELETE", url: "/LiveTv/Timers/\(timerID)", id: "CancelTimer") + } +} diff --git a/Sources/Paths/CloseLiveStreamAPI.swift b/Sources/Paths/CloseLiveStreamAPI.swift new file mode 100644 index 000000000..dae0bf3ab --- /dev/null +++ b/Sources/Paths/CloseLiveStreamAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Closes a media source. + static func closeLiveStream(liveStreamID: String) -> Request { + Request(method: "POST", url: "/LiveStreams/Close", query: [("liveStreamId", liveStreamID)], id: "CloseLiveStream") + } +} diff --git a/Sources/Paths/CompleteWizardAPI.swift b/Sources/Paths/CompleteWizardAPI.swift new file mode 100644 index 000000000..089ed6f98 --- /dev/null +++ b/Sources/Paths/CompleteWizardAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Completes the startup wizard. + static var completeWizard: Request { + Request(method: "POST", url: "/Startup/Complete", id: "CompleteWizard") + } +} diff --git a/Sources/Paths/ConnectAPI.swift b/Sources/Paths/ConnectAPI.swift new file mode 100644 index 000000000..ba5310e9d --- /dev/null +++ b/Sources/Paths/ConnectAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Attempts to retrieve authentication information. + static func connect(secret: String) -> Request { + Request(method: "GET", url: "/QuickConnect/Connect", query: [("secret", secret)], id: "Connect") + } +} diff --git a/Sources/Paths/CreateAdminNotificationAPI.swift b/Sources/Paths/CreateAdminNotificationAPI.swift new file mode 100644 index 000000000..15d3eccc9 --- /dev/null +++ b/Sources/Paths/CreateAdminNotificationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Sends a notification to all admins. + static func createAdminNotification(_ body: JellyfinAPI.AdminNotificationDto) -> Request { + Request(method: "POST", url: "/Notifications/Admin", body: body, id: "CreateAdminNotification") + } +} diff --git a/Sources/Paths/CreateCollectionAPI.swift b/Sources/Paths/CreateCollectionAPI.swift new file mode 100644 index 000000000..7c6722eb4 --- /dev/null +++ b/Sources/Paths/CreateCollectionAPI.swift @@ -0,0 +1,41 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates a new collection. + static func createCollection(parameters: CreateCollectionParameters? = nil) -> Request { + Request(method: "POST", url: "/Collections", query: parameters?.asQuery, id: "CreateCollection") + } + + struct CreateCollectionParameters { + public var name: String? + public var ids: [String]? + public var parentID: String? + public var isLocked: Bool? + + public init(name: String? = nil, ids: [String]? = nil, parentID: String? = nil, isLocked: Bool? = nil) { + self.name = name + self.ids = ids + self.parentID = parentID + self.isLocked = isLocked + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(name, forKey: "name") + encoder.encode(ids, forKey: "ids") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(isLocked, forKey: "isLocked") + return encoder.items + } + } +} diff --git a/Sources/Paths/CreateKeyAPI.swift b/Sources/Paths/CreateKeyAPI.swift new file mode 100644 index 000000000..13f03ec7d --- /dev/null +++ b/Sources/Paths/CreateKeyAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Create a new api key. + static func createKey(app: String) -> Request { + Request(method: "POST", url: "/Auth/Keys", query: [("app", app)], id: "CreateKey") + } +} diff --git a/Sources/Paths/CreatePlaylistAPI.swift b/Sources/Paths/CreatePlaylistAPI.swift new file mode 100644 index 000000000..02fb71b89 --- /dev/null +++ b/Sources/Paths/CreatePlaylistAPI.swift @@ -0,0 +1,48 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates a new playlist. + /// + /// For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence. + /// + /// Query parameters are obsolete. + static func createPlaylist( + parameters: CreatePlaylistParameters? = nil, + _ body: JellyfinAPI.CreatePlaylistDto? = nil + ) -> Request { + Request(method: "POST", url: "/Playlists", query: parameters?.asQuery, body: body, id: "CreatePlaylist") + } + + struct CreatePlaylistParameters { + public var name: String? + public var ids: [String]? + public var userID: String? + public var mediaType: String? + + public init(name: String? = nil, ids: [String]? = nil, userID: String? = nil, mediaType: String? = nil) { + self.name = name + self.ids = ids + self.userID = userID + self.mediaType = mediaType + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(name, forKey: "name") + encoder.encode(ids, forKey: "ids") + encoder.encode(userID, forKey: "userId") + encoder.encode(mediaType, forKey: "mediaType") + return encoder.items + } + } +} diff --git a/Sources/Paths/CreateProfileAPI.swift b/Sources/Paths/CreateProfileAPI.swift new file mode 100644 index 000000000..f8ecc3ca5 --- /dev/null +++ b/Sources/Paths/CreateProfileAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates a profile. + static func createProfile(_ body: JellyfinAPI.DeviceProfile? = nil) -> Request { + Request(method: "POST", url: "/Dlna/Profiles", body: body, id: "CreateProfile") + } +} diff --git a/Sources/Paths/CreateSeriesTimerAPI.swift b/Sources/Paths/CreateSeriesTimerAPI.swift new file mode 100644 index 000000000..3095055c1 --- /dev/null +++ b/Sources/Paths/CreateSeriesTimerAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates a live tv series timer. + static func createSeriesTimer(_ body: JellyfinAPI.SeriesTimerInfoDto? = nil) -> Request { + Request(method: "POST", url: "/LiveTv/SeriesTimers", body: body, id: "CreateSeriesTimer") + } +} diff --git a/Sources/Paths/CreateTimerAPI.swift b/Sources/Paths/CreateTimerAPI.swift new file mode 100644 index 000000000..622e2f2a1 --- /dev/null +++ b/Sources/Paths/CreateTimerAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates a live tv timer. + static func createTimer(_ body: JellyfinAPI.TimerInfoDto? = nil) -> Request { + Request(method: "POST", url: "/LiveTv/Timers", body: body, id: "CreateTimer") + } +} diff --git a/Sources/Paths/CreateUserByNameAPI.swift b/Sources/Paths/CreateUserByNameAPI.swift new file mode 100644 index 000000000..6f2765af4 --- /dev/null +++ b/Sources/Paths/CreateUserByNameAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates a user. + static func createUserByName(_ body: JellyfinAPI.CreateUserByName) -> Request { + Request(method: "POST", url: "/Users/New", body: body, id: "CreateUserByName") + } +} diff --git a/Sources/Paths/DeleteAlternateSourcesAPI.swift b/Sources/Paths/DeleteAlternateSourcesAPI.swift new file mode 100644 index 000000000..38ee20bf8 --- /dev/null +++ b/Sources/Paths/DeleteAlternateSourcesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Removes alternate video sources. + static func deleteAlternateSources(itemID: String) -> Request { + Request(method: "DELETE", url: "/Videos/\(itemID)/AlternateSources", id: "DeleteAlternateSources") + } +} diff --git a/Sources/Paths/DeleteCustomSplashscreenAPI.swift b/Sources/Paths/DeleteCustomSplashscreenAPI.swift new file mode 100644 index 000000000..7694195ab --- /dev/null +++ b/Sources/Paths/DeleteCustomSplashscreenAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Delete a custom splashscreen. + static var deleteCustomSplashscreen: Request { + Request(method: "DELETE", url: "/Branding/Splashscreen", id: "DeleteCustomSplashscreen") + } +} diff --git a/Sources/Paths/DeleteDeviceAPI.swift b/Sources/Paths/DeleteDeviceAPI.swift new file mode 100644 index 000000000..adcd4d8a0 --- /dev/null +++ b/Sources/Paths/DeleteDeviceAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Deletes a device. + static func deleteDevice(id: String) -> Request { + Request(method: "DELETE", url: "/Devices", query: [("id", id)], id: "DeleteDevice") + } +} diff --git a/Sources/Paths/DeleteItemAPI.swift b/Sources/Paths/DeleteItemAPI.swift new file mode 100644 index 000000000..50213fe33 --- /dev/null +++ b/Sources/Paths/DeleteItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Deletes an item from the library and filesystem. + static func deleteItem(itemID: String) -> Request { + Request(method: "DELETE", url: "/Items/\(itemID)", id: "DeleteItem") + } +} diff --git a/Sources/Paths/DeleteItemImageAPI.swift b/Sources/Paths/DeleteItemImageAPI.swift new file mode 100644 index 000000000..70c48f0ad --- /dev/null +++ b/Sources/Paths/DeleteItemImageAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Delete an item's image. + public static func deleteItemImage(itemID: String, imageType: String, imageIndex: Int32? = nil) -> Request { + Request( + method: "DELETE", + url: "/Items/\(itemID)/Images/\(imageType)", + query: makeDeleteItemImageQuery(imageIndex), + id: "DeleteItemImage" + ) + } + + private static func makeDeleteItemImageQuery(_ imageIndex: Int32?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } +} diff --git a/Sources/Paths/DeleteItemImageByIndexAPI.swift b/Sources/Paths/DeleteItemImageByIndexAPI.swift new file mode 100644 index 000000000..0f6c23475 --- /dev/null +++ b/Sources/Paths/DeleteItemImageByIndexAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Delete an item's image. + static func deleteItemImageByIndex(itemID: String, imageType: String, imageIndex: Int) -> Request { + Request(method: "DELETE", url: "/Items/\(itemID)/Images/\(imageType)/\(imageIndex)", id: "DeleteItemImageByIndex") + } +} diff --git a/Sources/Paths/DeleteItemsAPI.swift b/Sources/Paths/DeleteItemsAPI.swift new file mode 100644 index 000000000..bcc4af984 --- /dev/null +++ b/Sources/Paths/DeleteItemsAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Deletes items from the library and filesystem. + public static func deleteItems(ids: [String]? = nil) -> Request { + Request(method: "DELETE", url: "/Items", query: makeDeleteItemsQuery(ids), id: "DeleteItems") + } + + private static func makeDeleteItemsQuery(_ ids: [String]?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(ids, forKey: "ids") + return encoder.items + } +} diff --git a/Sources/Paths/DeleteListingProviderAPI.swift b/Sources/Paths/DeleteListingProviderAPI.swift new file mode 100644 index 000000000..fadf188f4 --- /dev/null +++ b/Sources/Paths/DeleteListingProviderAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Delete listing provider. + public static func deleteListingProvider(id: String? = nil) -> Request { + Request(method: "DELETE", url: "/LiveTv/ListingProviders", query: makeDeleteListingProviderQuery(id), id: "DeleteListingProvider") + } + + private static func makeDeleteListingProviderQuery(_ id: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(id, forKey: "id") + return encoder.items + } +} diff --git a/Sources/Paths/DeleteProfileAPI.swift b/Sources/Paths/DeleteProfileAPI.swift new file mode 100644 index 000000000..f0517759b --- /dev/null +++ b/Sources/Paths/DeleteProfileAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Deletes a profile. + static func deleteProfile(profileID: String) -> Request { + Request(method: "DELETE", url: "/Dlna/Profiles/\(profileID)", id: "DeleteProfile") + } +} diff --git a/Sources/Paths/DeleteRecordingAPI.swift b/Sources/Paths/DeleteRecordingAPI.swift new file mode 100644 index 000000000..0f69184ef --- /dev/null +++ b/Sources/Paths/DeleteRecordingAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Deletes a live tv recording. + static func deleteRecording(recordingID: String) -> Request { + Request(method: "DELETE", url: "/LiveTv/Recordings/\(recordingID)", id: "DeleteRecording") + } +} diff --git a/Sources/Paths/DeleteSubtitleAPI.swift b/Sources/Paths/DeleteSubtitleAPI.swift new file mode 100644 index 000000000..552726384 --- /dev/null +++ b/Sources/Paths/DeleteSubtitleAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Deletes an external subtitle file. + static func deleteSubtitle(itemID: String, index: Int) -> Request { + Request(method: "DELETE", url: "/Videos/\(itemID)/Subtitles/\(index)", id: "DeleteSubtitle") + } +} diff --git a/Sources/Paths/DeleteTunerHostAPI.swift b/Sources/Paths/DeleteTunerHostAPI.swift new file mode 100644 index 000000000..95c95cc01 --- /dev/null +++ b/Sources/Paths/DeleteTunerHostAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Deletes a tuner host. + public static func deleteTunerHost(id: String? = nil) -> Request { + Request(method: "DELETE", url: "/LiveTv/TunerHosts", query: makeDeleteTunerHostQuery(id), id: "DeleteTunerHost") + } + + private static func makeDeleteTunerHostQuery(_ id: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(id, forKey: "id") + return encoder.items + } +} diff --git a/Sources/Paths/DeleteUserAPI.swift b/Sources/Paths/DeleteUserAPI.swift new file mode 100644 index 000000000..305456a15 --- /dev/null +++ b/Sources/Paths/DeleteUserAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Deletes a user. + static func deleteUser(userID: String) -> Request { + Request(method: "DELETE", url: "/Users/\(userID)", id: "DeleteUser") + } +} diff --git a/Sources/Paths/DeleteUserImageAPI.swift b/Sources/Paths/DeleteUserImageAPI.swift new file mode 100644 index 000000000..9902bb0e9 --- /dev/null +++ b/Sources/Paths/DeleteUserImageAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Delete the user's image. + public static func deleteUserImage(userID: String, imageType: String, index: Int32? = nil) -> Request { + Request( + method: "DELETE", + url: "/Users/\(userID)/Images/\(imageType)", + query: makeDeleteUserImageQuery(index), + id: "DeleteUserImage" + ) + } + + private static func makeDeleteUserImageQuery(_ index: Int32?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(index, forKey: "index") + return encoder.items + } +} diff --git a/Sources/Paths/DeleteUserImageByIndexAPI.swift b/Sources/Paths/DeleteUserImageByIndexAPI.swift new file mode 100644 index 000000000..5580e7c69 --- /dev/null +++ b/Sources/Paths/DeleteUserImageByIndexAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Delete the user's image. + static func deleteUserImageByIndex(userID: String, imageType: String, index: Int) -> Request { + Request(method: "DELETE", url: "/Users/\(userID)/Images/\(imageType)/\(index)", id: "DeleteUserImageByIndex") + } +} diff --git a/Sources/Paths/DeleteUserItemRatingAPI.swift b/Sources/Paths/DeleteUserItemRatingAPI.swift new file mode 100644 index 000000000..45e5c05a3 --- /dev/null +++ b/Sources/Paths/DeleteUserItemRatingAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Deletes a user's saved personal rating for an item. + static func deleteUserItemRating(userID: String, itemID: String) -> Request { + Request(method: "DELETE", url: "/Users/\(userID)/Items/\(itemID)/Rating", id: "DeleteUserItemRating") + } +} diff --git a/Sources/Paths/DisablePluginAPI.swift b/Sources/Paths/DisablePluginAPI.swift new file mode 100644 index 000000000..3d6328fcb --- /dev/null +++ b/Sources/Paths/DisablePluginAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Disable a plugin. + static func disablePlugin(pluginID: String, version: String) -> Request { + Request(method: "POST", url: "/Plugins/\(pluginID)/\(version)/Disable", id: "DisablePlugin") + } +} diff --git a/Sources/Paths/DiscoverTunersAPI.swift b/Sources/Paths/DiscoverTunersAPI.swift new file mode 100644 index 000000000..4fe7bcae7 --- /dev/null +++ b/Sources/Paths/DiscoverTunersAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Discover tuners. + public static func discoverTuners(isNewDevicesOnly: Bool? = nil) -> Request<[JellyfinAPI.TunerHostInfo]> { + Request(method: "GET", url: "/LiveTv/Tuners/Discover", query: makeDiscoverTunersQuery(isNewDevicesOnly), id: "DiscoverTuners") + } + + private static func makeDiscoverTunersQuery(_ isNewDevicesOnly: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isNewDevicesOnly, forKey: "newDevicesOnly") + return encoder.items + } +} diff --git a/Sources/Paths/DiscvoverTunersAPI.swift b/Sources/Paths/DiscvoverTunersAPI.swift new file mode 100644 index 000000000..f8b8ca881 --- /dev/null +++ b/Sources/Paths/DiscvoverTunersAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Discover tuners. + public static func discvoverTuners(isNewDevicesOnly: Bool? = nil) -> Request<[JellyfinAPI.TunerHostInfo]> { + Request(method: "GET", url: "/LiveTv/Tuners/Discvover", query: makeDiscvoverTunersQuery(isNewDevicesOnly), id: "DiscvoverTuners") + } + + private static func makeDiscvoverTunersQuery(_ isNewDevicesOnly: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isNewDevicesOnly, forKey: "newDevicesOnly") + return encoder.items + } +} diff --git a/Sources/Paths/DisplayContentAPI.swift b/Sources/Paths/DisplayContentAPI.swift new file mode 100644 index 000000000..56410bd2f --- /dev/null +++ b/Sources/Paths/DisplayContentAPI.swift @@ -0,0 +1,41 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Instructs a session to browse to an item or view. + static func displayContent(sessionID: String, parameters: DisplayContentParameters) -> Request { + Request(method: "POST", url: "/Sessions/\(sessionID)/Viewing", query: parameters.asQuery, id: "DisplayContent") + } + + struct DisplayContentParameters { + /// The base item kind. + public var itemType: ItemType + public var itemID: String + public var itemName: String + + public typealias ItemType = JellyfinAPI.BaseItemKind + + public init(itemType: ItemType, itemID: String, itemName: String) { + self.itemType = itemType + self.itemID = itemID + self.itemName = itemName + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(itemType, forKey: "itemType") + encoder.encode(itemID, forKey: "itemId") + encoder.encode(itemName, forKey: "itemName") + return encoder.items + } + } +} diff --git a/Sources/Paths/DownloadRemoteImageAPI.swift b/Sources/Paths/DownloadRemoteImageAPI.swift new file mode 100644 index 000000000..da2bc103b --- /dev/null +++ b/Sources/Paths/DownloadRemoteImageAPI.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Downloads a remote image for an item. + static func downloadRemoteImage(itemID: String, parameters: DownloadRemoteImageParameters) -> Request { + Request(method: "POST", url: "/Items/\(itemID)/RemoteImages/Download", query: parameters.asQuery, id: "DownloadRemoteImage") + } + + struct DownloadRemoteImageParameters { + /// Enum ImageType. + public var type: `Type` + public var imageURL: String? + + public typealias `Type` = JellyfinAPI.ImageType + + public init(type: Type, imageURL: String? = nil) { + self.type = type + self.imageURL = imageURL + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(type, forKey: "type") + encoder.encode(imageURL, forKey: "imageUrl") + return encoder.items + } + } +} diff --git a/Sources/Paths/DownloadRemoteSubtitlesAPI.swift b/Sources/Paths/DownloadRemoteSubtitlesAPI.swift new file mode 100644 index 000000000..ddbcfb709 --- /dev/null +++ b/Sources/Paths/DownloadRemoteSubtitlesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Downloads a remote subtitle. + static func downloadRemoteSubtitles(itemID: String, subtitleID: String) -> Request { + Request(method: "POST", url: "/Items/\(itemID)/RemoteSearch/Subtitles/\(subtitleID)", id: "DownloadRemoteSubtitles") + } +} diff --git a/Sources/Paths/EnablePluginAPI.swift b/Sources/Paths/EnablePluginAPI.swift new file mode 100644 index 000000000..531e74bb9 --- /dev/null +++ b/Sources/Paths/EnablePluginAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Enables a disabled plugin. + static func enablePlugin(pluginID: String, version: String) -> Request { + Request(method: "POST", url: "/Plugins/\(pluginID)/\(version)/Enable", id: "EnablePlugin") + } +} diff --git a/Sources/Paths/ForgotPasswordAPI.swift b/Sources/Paths/ForgotPasswordAPI.swift new file mode 100644 index 000000000..f1df7021a --- /dev/null +++ b/Sources/Paths/ForgotPasswordAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Initiates the forgot password process for a local user. + static func forgotPassword(_ body: JellyfinAPI.ForgotPasswordDto) -> Request { + Request(method: "POST", url: "/Users/ForgotPassword", body: body, id: "ForgotPassword") + } +} diff --git a/Sources/Paths/ForgotPasswordPinAPI.swift b/Sources/Paths/ForgotPasswordPinAPI.swift new file mode 100644 index 000000000..99d436efd --- /dev/null +++ b/Sources/Paths/ForgotPasswordPinAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Redeems a forgot password pin. + static func forgotPasswordPin(_ body: JellyfinAPI.ForgotPasswordPinDto) -> Request { + Request(method: "POST", url: "/Users/ForgotPassword/Pin", body: body, id: "ForgotPasswordPin") + } +} diff --git a/Sources/Paths/GetAPI.swift b/Sources/Paths/GetAPI.swift new file mode 100644 index 000000000..c64cc4c3b --- /dev/null +++ b/Sources/Paths/GetAPI.swift @@ -0,0 +1,102 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the search hint result. + static func get(parameters: GetParameters) -> Request { + Request(method: "GET", url: "/Search/Hints", query: parameters.asQuery, id: "Get") + } + + struct GetParameters { + public var startIndex: Int32? + public var limit: Int32? + public var userID: String? + public var searchTerm: String + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var mediaTypes: [String]? + public var parentID: String? + public var isMovie: Bool? + public var isSeries: Bool? + public var isNews: Bool? + public var isKids: Bool? + public var isSports: Bool? + public var isIncludePeople: Bool? + public var isIncludeMedia: Bool? + public var isIncludeGenres: Bool? + public var isIncludeStudios: Bool? + public var isIncludeArtists: Bool? + + public init( + startIndex: Int32? = nil, + limit: Int32? = nil, + userID: String? = nil, + searchTerm: String, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + mediaTypes: [String]? = nil, + parentID: String? = nil, + isMovie: Bool? = nil, + isSeries: Bool? = nil, + isNews: Bool? = nil, + isKids: Bool? = nil, + isSports: Bool? = nil, + isIncludePeople: Bool? = nil, + isIncludeMedia: Bool? = nil, + isIncludeGenres: Bool? = nil, + isIncludeStudios: Bool? = nil, + isIncludeArtists: Bool? = nil + ) { + self.startIndex = startIndex + self.limit = limit + self.userID = userID + self.searchTerm = searchTerm + self.includeItemTypes = includeItemTypes + self.excludeItemTypes = excludeItemTypes + self.mediaTypes = mediaTypes + self.parentID = parentID + self.isMovie = isMovie + self.isSeries = isSeries + self.isNews = isNews + self.isKids = isKids + self.isSports = isSports + self.isIncludePeople = isIncludePeople + self.isIncludeMedia = isIncludeMedia + self.isIncludeGenres = isIncludeGenres + self.isIncludeStudios = isIncludeStudios + self.isIncludeArtists = isIncludeArtists + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(userID, forKey: "userId") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(mediaTypes, forKey: "mediaTypes") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(isMovie, forKey: "isMovie") + encoder.encode(isSeries, forKey: "isSeries") + encoder.encode(isNews, forKey: "isNews") + encoder.encode(isKids, forKey: "isKids") + encoder.encode(isSports, forKey: "isSports") + encoder.encode(isIncludePeople, forKey: "includePeople") + encoder.encode(isIncludeMedia, forKey: "includeMedia") + encoder.encode(isIncludeGenres, forKey: "includeGenres") + encoder.encode(isIncludeStudios, forKey: "includeStudios") + encoder.encode(isIncludeArtists, forKey: "includeArtists") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetAdditionalPartAPI.swift b/Sources/Paths/GetAdditionalPartAPI.swift new file mode 100644 index 000000000..d6d21e0e3 --- /dev/null +++ b/Sources/Paths/GetAdditionalPartAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets additional parts for a video. + public static func getAdditionalPart(itemID: String, userID: String? = nil) -> Request { + Request(method: "GET", url: "/Videos/\(itemID)/AdditionalParts", query: makeGetAdditionalPartQuery(userID), id: "GetAdditionalPart") + } + + private static func makeGetAdditionalPartQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetAlbumArtistsAPI.swift b/Sources/Paths/GetAlbumArtistsAPI.swift new file mode 100644 index 000000000..9b5dd9a1e --- /dev/null +++ b/Sources/Paths/GetAlbumArtistsAPI.swift @@ -0,0 +1,158 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets all album artists from a given item, folder, or the entire library. + static func getAlbumArtists(parameters: GetAlbumArtistsParameters? = nil) -> Request { + Request(method: "GET", url: "/Artists/AlbumArtists", query: parameters?.asQuery, id: "GetAlbumArtists") + } + + struct GetAlbumArtistsParameters { + public var minCommunityRating: Double? + public var startIndex: Int32? + public var limit: Int32? + public var searchTerm: String? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var filters: [JellyfinAPI.ItemFilter]? + public var isFavorite: Bool? + public var mediaTypes: [String]? + public var genres: [String]? + public var genreIDs: [String]? + public var officialRatings: [String]? + public var tags: [String]? + public var years: [Int32]? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var person: String? + public var personIDs: [String]? + public var personTypes: [String]? + public var studios: [String]? + public var studioIDs: [String]? + public var userID: String? + public var nameStartsWithOrGreater: String? + public var nameStartsWith: String? + public var nameLessThan: String? + public var sortBy: [String]? + public var sortOrder: [JellyfinAPI.SortOrder]? + public var enableImages: Bool? + public var enableTotalRecordCount: Bool? + + public init( + minCommunityRating: Double? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + searchTerm: String? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + filters: [JellyfinAPI.ItemFilter]? = nil, + isFavorite: Bool? = nil, + mediaTypes: [String]? = nil, + genres: [String]? = nil, + genreIDs: [String]? = nil, + officialRatings: [String]? = nil, + tags: [String]? = nil, + years: [Int32]? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + person: String? = nil, + personIDs: [String]? = nil, + personTypes: [String]? = nil, + studios: [String]? = nil, + studioIDs: [String]? = nil, + userID: String? = nil, + nameStartsWithOrGreater: String? = nil, + nameStartsWith: String? = nil, + nameLessThan: String? = nil, + sortBy: [String]? = nil, + sortOrder: [JellyfinAPI.SortOrder]? = nil, + enableImages: Bool? = nil, + enableTotalRecordCount: Bool? = nil + ) { + self.minCommunityRating = minCommunityRating + self.startIndex = startIndex + self.limit = limit + self.searchTerm = searchTerm + self.parentID = parentID + self.fields = fields + self.excludeItemTypes = excludeItemTypes + self.includeItemTypes = includeItemTypes + self.filters = filters + self.isFavorite = isFavorite + self.mediaTypes = mediaTypes + self.genres = genres + self.genreIDs = genreIDs + self.officialRatings = officialRatings + self.tags = tags + self.years = years + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.person = person + self.personIDs = personIDs + self.personTypes = personTypes + self.studios = studios + self.studioIDs = studioIDs + self.userID = userID + self.nameStartsWithOrGreater = nameStartsWithOrGreater + self.nameStartsWith = nameStartsWith + self.nameLessThan = nameLessThan + self.sortBy = sortBy + self.sortOrder = sortOrder + self.enableImages = enableImages + self.enableTotalRecordCount = enableTotalRecordCount + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(minCommunityRating, forKey: "minCommunityRating") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(filters, forKey: "filters") + encoder.encode(isFavorite, forKey: "isFavorite") + encoder.encode(mediaTypes, forKey: "mediaTypes") + encoder.encode(genres, forKey: "genres") + encoder.encode(genreIDs, forKey: "genreIds") + encoder.encode(officialRatings, forKey: "officialRatings") + encoder.encode(tags, forKey: "tags") + encoder.encode(years, forKey: "years") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(person, forKey: "person") + encoder.encode(personIDs, forKey: "personIds") + encoder.encode(personTypes, forKey: "personTypes") + encoder.encode(studios, forKey: "studios") + encoder.encode(studioIDs, forKey: "studioIds") + encoder.encode(userID, forKey: "userId") + encoder.encode(nameStartsWithOrGreater, forKey: "nameStartsWithOrGreater") + encoder.encode(nameStartsWith, forKey: "nameStartsWith") + encoder.encode(nameLessThan, forKey: "nameLessThan") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetAllChannelFeaturesAPI.swift b/Sources/Paths/GetAllChannelFeaturesAPI.swift new file mode 100644 index 000000000..eeb9bbc91 --- /dev/null +++ b/Sources/Paths/GetAllChannelFeaturesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get all channel features. + static var getAllChannelFeatures: Request<[JellyfinAPI.ChannelFeatures]> { + Request(method: "GET", url: "/Channels/Features", id: "GetAllChannelFeatures") + } +} diff --git a/Sources/Paths/GetAncestorsAPI.swift b/Sources/Paths/GetAncestorsAPI.swift new file mode 100644 index 000000000..4bb9915c2 --- /dev/null +++ b/Sources/Paths/GetAncestorsAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets all parents of an item. + public static func getAncestors(itemID: String, userID: String? = nil) -> Request<[JellyfinAPI.BaseItemDto]> { + Request(method: "GET", url: "/Items/\(itemID)/Ancestors", query: makeGetAncestorsQuery(userID), id: "GetAncestors") + } + + private static func makeGetAncestorsQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetArtistByNameAPI.swift b/Sources/Paths/GetArtistByNameAPI.swift new file mode 100644 index 000000000..1ed9da8a4 --- /dev/null +++ b/Sources/Paths/GetArtistByNameAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets an artist by name. + public static func getArtistByName(name: String, userID: String? = nil) -> Request { + Request(method: "GET", url: "/Artists/\(name)", query: makeGetArtistByNameQuery(userID), id: "GetArtistByName") + } + + private static func makeGetArtistByNameQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetArtistImageAPI.swift b/Sources/Paths/GetArtistImageAPI.swift new file mode 100644 index 000000000..986414051 --- /dev/null +++ b/Sources/Paths/GetArtistImageAPI.swift @@ -0,0 +1,101 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get artist image by name. + static func getArtistImage( + name: String, + imageType: String, + imageIndex: Int, + parameters: GetArtistImageParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Artists/\(name)/Images/\(imageType)/\(imageIndex)", query: parameters?.asQuery, id: "GetArtistImage") + } + + struct GetArtistImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetArtistsAPI.swift b/Sources/Paths/GetArtistsAPI.swift new file mode 100644 index 000000000..1c8b05cb5 --- /dev/null +++ b/Sources/Paths/GetArtistsAPI.swift @@ -0,0 +1,158 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets all artists from a given item, folder, or the entire library. + static func getArtists(parameters: GetArtistsParameters? = nil) -> Request { + Request(method: "GET", url: "/Artists", query: parameters?.asQuery, id: "GetArtists") + } + + struct GetArtistsParameters { + public var minCommunityRating: Double? + public var startIndex: Int32? + public var limit: Int32? + public var searchTerm: String? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var filters: [JellyfinAPI.ItemFilter]? + public var isFavorite: Bool? + public var mediaTypes: [String]? + public var genres: [String]? + public var genreIDs: [String]? + public var officialRatings: [String]? + public var tags: [String]? + public var years: [Int32]? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var person: String? + public var personIDs: [String]? + public var personTypes: [String]? + public var studios: [String]? + public var studioIDs: [String]? + public var userID: String? + public var nameStartsWithOrGreater: String? + public var nameStartsWith: String? + public var nameLessThan: String? + public var sortBy: [String]? + public var sortOrder: [JellyfinAPI.SortOrder]? + public var enableImages: Bool? + public var enableTotalRecordCount: Bool? + + public init( + minCommunityRating: Double? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + searchTerm: String? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + filters: [JellyfinAPI.ItemFilter]? = nil, + isFavorite: Bool? = nil, + mediaTypes: [String]? = nil, + genres: [String]? = nil, + genreIDs: [String]? = nil, + officialRatings: [String]? = nil, + tags: [String]? = nil, + years: [Int32]? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + person: String? = nil, + personIDs: [String]? = nil, + personTypes: [String]? = nil, + studios: [String]? = nil, + studioIDs: [String]? = nil, + userID: String? = nil, + nameStartsWithOrGreater: String? = nil, + nameStartsWith: String? = nil, + nameLessThan: String? = nil, + sortBy: [String]? = nil, + sortOrder: [JellyfinAPI.SortOrder]? = nil, + enableImages: Bool? = nil, + enableTotalRecordCount: Bool? = nil + ) { + self.minCommunityRating = minCommunityRating + self.startIndex = startIndex + self.limit = limit + self.searchTerm = searchTerm + self.parentID = parentID + self.fields = fields + self.excludeItemTypes = excludeItemTypes + self.includeItemTypes = includeItemTypes + self.filters = filters + self.isFavorite = isFavorite + self.mediaTypes = mediaTypes + self.genres = genres + self.genreIDs = genreIDs + self.officialRatings = officialRatings + self.tags = tags + self.years = years + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.person = person + self.personIDs = personIDs + self.personTypes = personTypes + self.studios = studios + self.studioIDs = studioIDs + self.userID = userID + self.nameStartsWithOrGreater = nameStartsWithOrGreater + self.nameStartsWith = nameStartsWith + self.nameLessThan = nameLessThan + self.sortBy = sortBy + self.sortOrder = sortOrder + self.enableImages = enableImages + self.enableTotalRecordCount = enableTotalRecordCount + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(minCommunityRating, forKey: "minCommunityRating") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(filters, forKey: "filters") + encoder.encode(isFavorite, forKey: "isFavorite") + encoder.encode(mediaTypes, forKey: "mediaTypes") + encoder.encode(genres, forKey: "genres") + encoder.encode(genreIDs, forKey: "genreIds") + encoder.encode(officialRatings, forKey: "officialRatings") + encoder.encode(tags, forKey: "tags") + encoder.encode(years, forKey: "years") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(person, forKey: "person") + encoder.encode(personIDs, forKey: "personIds") + encoder.encode(personTypes, forKey: "personTypes") + encoder.encode(studios, forKey: "studios") + encoder.encode(studioIDs, forKey: "studioIds") + encoder.encode(userID, forKey: "userId") + encoder.encode(nameStartsWithOrGreater, forKey: "nameStartsWithOrGreater") + encoder.encode(nameStartsWith, forKey: "nameStartsWith") + encoder.encode(nameLessThan, forKey: "nameLessThan") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetAttachmentAPI.swift b/Sources/Paths/GetAttachmentAPI.swift new file mode 100644 index 000000000..e0e2aafac --- /dev/null +++ b/Sources/Paths/GetAttachmentAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get video attachment. + static func getAttachment(videoID: String, mediaSourceID: String, index: Int) -> Request { + Request(method: "GET", url: "/Videos/\(videoID)/\(mediaSourceID)/Attachments/\(index)", id: "GetAttachment") + } +} diff --git a/Sources/Paths/GetAudioStreamAPI.swift b/Sources/Paths/GetAudioStreamAPI.swift new file mode 100644 index 000000000..480ee10ef --- /dev/null +++ b/Sources/Paths/GetAudioStreamAPI.swift @@ -0,0 +1,228 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets an audio stream. + static func getAudioStream(itemID: String, parameters: GetAudioStreamParameters? = nil) -> Request { + Request(method: "GET", url: "/Audio/\(itemID)/stream", query: parameters?.asQuery, id: "GetAudioStream") + } + + struct GetAudioStreamParameters { + public var container: String? + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + container: String? = nil, + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.container = container + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(container, forKey: "container") + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetAudioStreamByContainerAPI.swift b/Sources/Paths/GetAudioStreamByContainerAPI.swift new file mode 100644 index 000000000..21e0fce26 --- /dev/null +++ b/Sources/Paths/GetAudioStreamByContainerAPI.swift @@ -0,0 +1,228 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets an audio stream. + static func getAudioStreamByContainer( + itemID: String, + container: String, + parameters: GetAudioStreamByContainerParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Audio/\(itemID)/stream.\(container)", query: parameters?.asQuery, id: "GetAudioStreamByContainer") + } + + struct GetAudioStreamByContainerParameters { + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetAuthProvidersAPI.swift b/Sources/Paths/GetAuthProvidersAPI.swift new file mode 100644 index 000000000..47a0f5aa4 --- /dev/null +++ b/Sources/Paths/GetAuthProvidersAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get all auth providers. + static var getAuthProviders: Request<[JellyfinAPI.NameIDPair]> { + Request(method: "GET", url: "/Auth/Providers", id: "GetAuthProviders") + } +} diff --git a/Sources/Paths/GetBitrateTestBytesAPI.swift b/Sources/Paths/GetBitrateTestBytesAPI.swift new file mode 100644 index 000000000..7595dcb27 --- /dev/null +++ b/Sources/Paths/GetBitrateTestBytesAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Tests the network with a request with the size of the bitrate. + public static func getBitrateTestBytes(size: Int32? = nil) -> Request { + Request(method: "GET", url: "/Playback/BitrateTest", query: makeGetBitrateTestBytesQuery(size), id: "GetBitrateTestBytes") + } + + private static func makeGetBitrateTestBytesQuery(_ size: Int32?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(size, forKey: "size") + return encoder.items + } +} diff --git a/Sources/Paths/GetBookRemoteSearchResultsAPI.swift b/Sources/Paths/GetBookRemoteSearchResultsAPI.swift new file mode 100644 index 000000000..4564c9eb4 --- /dev/null +++ b/Sources/Paths/GetBookRemoteSearchResultsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get book remote search. + static func getBookRemoteSearchResults(_ body: JellyfinAPI.BookInfoRemoteSearchQuery) -> Request<[JellyfinAPI.RemoteSearchResult]> { + Request(method: "POST", url: "/Items/RemoteSearch/Book", body: body, id: "GetBookRemoteSearchResults") + } +} diff --git a/Sources/Paths/GetBoxSetRemoteSearchResultsAPI.swift b/Sources/Paths/GetBoxSetRemoteSearchResultsAPI.swift new file mode 100644 index 000000000..a585e0df4 --- /dev/null +++ b/Sources/Paths/GetBoxSetRemoteSearchResultsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get box set remote search. + static func getBoxSetRemoteSearchResults(_ body: JellyfinAPI.BoxSetInfoRemoteSearchQuery) -> Request<[JellyfinAPI.RemoteSearchResult]> { + Request(method: "POST", url: "/Items/RemoteSearch/BoxSet", body: body, id: "GetBoxSetRemoteSearchResults") + } +} diff --git a/Sources/Paths/GetBrandingCss2API.swift b/Sources/Paths/GetBrandingCss2API.swift new file mode 100644 index 000000000..e675bf92a --- /dev/null +++ b/Sources/Paths/GetBrandingCss2API.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets branding css. + static var getBrandingCss2: Request { + Request(method: "GET", url: "/Branding/Css.css", id: "GetBrandingCss_2") + } +} diff --git a/Sources/Paths/GetBrandingCssAPI.swift b/Sources/Paths/GetBrandingCssAPI.swift new file mode 100644 index 000000000..227af63bd --- /dev/null +++ b/Sources/Paths/GetBrandingCssAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets branding css. + static var getBrandingCss: Request { + Request(method: "GET", url: "/Branding/Css", id: "GetBrandingCss") + } +} diff --git a/Sources/Paths/GetBrandingOptionsAPI.swift b/Sources/Paths/GetBrandingOptionsAPI.swift new file mode 100644 index 000000000..a663b18aa --- /dev/null +++ b/Sources/Paths/GetBrandingOptionsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets branding configuration. + static var getBrandingOptions: Request { + Request(method: "GET", url: "/Branding/Configuration", id: "GetBrandingOptions") + } +} diff --git a/Sources/Paths/GetChannelAPI.swift b/Sources/Paths/GetChannelAPI.swift new file mode 100644 index 000000000..3a6974725 --- /dev/null +++ b/Sources/Paths/GetChannelAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets a live tv channel. + public static func getChannel(channelID: String, userID: String? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Channels/\(channelID)", query: makeGetChannelQuery(userID), id: "GetChannel") + } + + private static func makeGetChannelQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetChannelFeaturesAPI.swift b/Sources/Paths/GetChannelFeaturesAPI.swift new file mode 100644 index 000000000..b58d206bf --- /dev/null +++ b/Sources/Paths/GetChannelFeaturesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get channel features. + static func getChannelFeatures(channelID: String) -> Request { + Request(method: "GET", url: "/Channels/\(channelID)/Features", id: "GetChannelFeatures") + } +} diff --git a/Sources/Paths/GetChannelItemsAPI.swift b/Sources/Paths/GetChannelItemsAPI.swift new file mode 100644 index 000000000..fbedee565 --- /dev/null +++ b/Sources/Paths/GetChannelItemsAPI.swift @@ -0,0 +1,65 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get channel items. + static func getChannelItems( + channelID: String, + parameters: GetChannelItemsParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Channels/\(channelID)/Items", query: parameters?.asQuery, id: "GetChannelItems") + } + + struct GetChannelItemsParameters { + public var folderID: String? + public var userID: String? + public var startIndex: Int32? + public var limit: Int32? + public var sortOrder: [JellyfinAPI.SortOrder]? + public var filters: [JellyfinAPI.ItemFilter]? + public var sortBy: [String]? + public var fields: [JellyfinAPI.ItemFields]? + + public init( + folderID: String? = nil, + userID: String? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + sortOrder: [JellyfinAPI.SortOrder]? = nil, + filters: [JellyfinAPI.ItemFilter]? = nil, + sortBy: [String]? = nil, + fields: [JellyfinAPI.ItemFields]? = nil + ) { + self.folderID = folderID + self.userID = userID + self.startIndex = startIndex + self.limit = limit + self.sortOrder = sortOrder + self.filters = filters + self.sortBy = sortBy + self.fields = fields + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(folderID, forKey: "folderId") + encoder.encode(userID, forKey: "userId") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(filters, forKey: "filters") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(fields, forKey: "fields") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetChannelMappingOptionsAPI.swift b/Sources/Paths/GetChannelMappingOptionsAPI.swift new file mode 100644 index 000000000..ac3ab23dd --- /dev/null +++ b/Sources/Paths/GetChannelMappingOptionsAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Get channel mapping options. + public static func getChannelMappingOptions(providerID: String? = nil) -> Request { + Request( + method: "GET", + url: "/LiveTv/ChannelMappingOptions", + query: makeGetChannelMappingOptionsQuery(providerID), + id: "GetChannelMappingOptions" + ) + } + + private static func makeGetChannelMappingOptionsQuery(_ providerID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(providerID, forKey: "providerId") + return encoder.items + } +} diff --git a/Sources/Paths/GetChannelsAPI.swift b/Sources/Paths/GetChannelsAPI.swift new file mode 100644 index 000000000..adde3cbf2 --- /dev/null +++ b/Sources/Paths/GetChannelsAPI.swift @@ -0,0 +1,54 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available channels. + static func getChannels(parameters: GetChannelsParameters? = nil) -> Request { + Request(method: "GET", url: "/Channels", query: parameters?.asQuery, id: "GetChannels") + } + + struct GetChannelsParameters { + public var userID: String? + public var startIndex: Int32? + public var limit: Int32? + public var isSupportsLatestItems: Bool? + public var isSupportsMediaDeletion: Bool? + public var isFavorite: Bool? + + public init( + userID: String? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + isSupportsLatestItems: Bool? = nil, + isSupportsMediaDeletion: Bool? = nil, + isFavorite: Bool? = nil + ) { + self.userID = userID + self.startIndex = startIndex + self.limit = limit + self.isSupportsLatestItems = isSupportsLatestItems + self.isSupportsMediaDeletion = isSupportsMediaDeletion + self.isFavorite = isFavorite + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(isSupportsLatestItems, forKey: "supportsLatestItems") + encoder.encode(isSupportsMediaDeletion, forKey: "supportsMediaDeletion") + encoder.encode(isFavorite, forKey: "isFavorite") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetConfigurationAPI.swift b/Sources/Paths/GetConfigurationAPI.swift new file mode 100644 index 000000000..4f1d5a6d4 --- /dev/null +++ b/Sources/Paths/GetConfigurationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets application configuration. + static var getConfiguration: Request { + Request(method: "GET", url: "/System/Configuration", id: "GetConfiguration") + } +} diff --git a/Sources/Paths/GetConfigurationPagesAPI.swift b/Sources/Paths/GetConfigurationPagesAPI.swift new file mode 100644 index 000000000..7bd41a27d --- /dev/null +++ b/Sources/Paths/GetConfigurationPagesAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets the configuration pages. + public static func getConfigurationPages(enableInMainMenu: Bool? = nil) -> Request<[JellyfinAPI.ConfigurationPageInfo]> { + Request( + method: "GET", + url: "/web/ConfigurationPages", + query: makeGetConfigurationPagesQuery(enableInMainMenu), + id: "GetConfigurationPages" + ) + } + + private static func makeGetConfigurationPagesQuery(_ enableInMainMenu: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(enableInMainMenu, forKey: "enableInMainMenu") + return encoder.items + } +} diff --git a/Sources/Paths/GetConnectionManager2API.swift b/Sources/Paths/GetConnectionManager2API.swift new file mode 100644 index 000000000..264e7dde3 --- /dev/null +++ b/Sources/Paths/GetConnectionManager2API.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets Dlna media receiver registrar xml. + static func getConnectionManager2(serverID: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/ConnectionManager/ConnectionManager", id: "GetConnectionManager_2") + } +} diff --git a/Sources/Paths/GetConnectionManager3API.swift b/Sources/Paths/GetConnectionManager3API.swift new file mode 100644 index 000000000..506d8297d --- /dev/null +++ b/Sources/Paths/GetConnectionManager3API.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets Dlna media receiver registrar xml. + static func getConnectionManager3(serverID: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/ConnectionManager/ConnectionManager.xml", id: "GetConnectionManager_3") + } +} diff --git a/Sources/Paths/GetConnectionManagerAPI.swift b/Sources/Paths/GetConnectionManagerAPI.swift new file mode 100644 index 000000000..f99f13e58 --- /dev/null +++ b/Sources/Paths/GetConnectionManagerAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets Dlna media receiver registrar xml. + static func getConnectionManager(serverID: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/ConnectionManager", id: "GetConnectionManager") + } +} diff --git a/Sources/Paths/GetContentDirectory2API.swift b/Sources/Paths/GetContentDirectory2API.swift new file mode 100644 index 000000000..afb78ccaa --- /dev/null +++ b/Sources/Paths/GetContentDirectory2API.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets Dlna content directory xml. + static func getContentDirectory2(serverID: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/ContentDirectory/ContentDirectory", id: "GetContentDirectory_2") + } +} diff --git a/Sources/Paths/GetContentDirectory3API.swift b/Sources/Paths/GetContentDirectory3API.swift new file mode 100644 index 000000000..db3740181 --- /dev/null +++ b/Sources/Paths/GetContentDirectory3API.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets Dlna content directory xml. + static func getContentDirectory3(serverID: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/ContentDirectory/ContentDirectory.xml", id: "GetContentDirectory_3") + } +} diff --git a/Sources/Paths/GetContentDirectoryAPI.swift b/Sources/Paths/GetContentDirectoryAPI.swift new file mode 100644 index 000000000..63bb99753 --- /dev/null +++ b/Sources/Paths/GetContentDirectoryAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets Dlna content directory xml. + static func getContentDirectory(serverID: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/ContentDirectory", id: "GetContentDirectory") + } +} diff --git a/Sources/Paths/GetCountriesAPI.swift b/Sources/Paths/GetCountriesAPI.swift new file mode 100644 index 000000000..3696be624 --- /dev/null +++ b/Sources/Paths/GetCountriesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets known countries. + static var getCountries: Request<[JellyfinAPI.CountryInfo]> { + Request(method: "GET", url: "/Localization/Countries", id: "GetCountries") + } +} diff --git a/Sources/Paths/GetCriticReviewsAPI.swift b/Sources/Paths/GetCriticReviewsAPI.swift new file mode 100644 index 000000000..9cdacf25d --- /dev/null +++ b/Sources/Paths/GetCriticReviewsAPI.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets critic review for an item. + @available(*, deprecated, message: "Deprecated") + static func getCriticReviews(itemID: String) -> Request { + Request(method: "GET", url: "/Items/\(itemID)/CriticReviews", id: "GetCriticReviews") + } +} diff --git a/Sources/Paths/GetCulturesAPI.swift b/Sources/Paths/GetCulturesAPI.swift new file mode 100644 index 000000000..6d90499fc --- /dev/null +++ b/Sources/Paths/GetCulturesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets known cultures. + static var getCultures: Request<[JellyfinAPI.CultureDto]> { + Request(method: "GET", url: "/Localization/Cultures", id: "GetCultures") + } +} diff --git a/Sources/Paths/GetCurrentUserAPI.swift b/Sources/Paths/GetCurrentUserAPI.swift new file mode 100644 index 000000000..12b3fe83c --- /dev/null +++ b/Sources/Paths/GetCurrentUserAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the user based on auth token. + static var getCurrentUser: Request { + Request(method: "GET", url: "/Users/Me", id: "GetCurrentUser") + } +} diff --git a/Sources/Paths/GetDashboardConfigurationPageAPI.swift b/Sources/Paths/GetDashboardConfigurationPageAPI.swift new file mode 100644 index 000000000..eabeedf9c --- /dev/null +++ b/Sources/Paths/GetDashboardConfigurationPageAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets a dashboard configuration page. + public static func getDashboardConfigurationPage(name: String? = nil) -> Request { + Request( + method: "GET", + url: "/web/ConfigurationPage", + query: makeGetDashboardConfigurationPageQuery(name), + id: "GetDashboardConfigurationPage" + ) + } + + private static func makeGetDashboardConfigurationPageQuery(_ name: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(name, forKey: "name") + return encoder.items + } +} diff --git a/Sources/Paths/GetDefaultDirectoryBrowserAPI.swift b/Sources/Paths/GetDefaultDirectoryBrowserAPI.swift new file mode 100644 index 000000000..a816fd033 --- /dev/null +++ b/Sources/Paths/GetDefaultDirectoryBrowserAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get Default directory browser. + static var getDefaultDirectoryBrowser: Request { + Request(method: "GET", url: "/Environment/DefaultDirectoryBrowser", id: "GetDefaultDirectoryBrowser") + } +} diff --git a/Sources/Paths/GetDefaultListingProviderAPI.swift b/Sources/Paths/GetDefaultListingProviderAPI.swift new file mode 100644 index 000000000..cad4a5af2 --- /dev/null +++ b/Sources/Paths/GetDefaultListingProviderAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets default listings provider info. + static var getDefaultListingProvider: Request { + Request(method: "GET", url: "/LiveTv/ListingProviders/Default", id: "GetDefaultListingProvider") + } +} diff --git a/Sources/Paths/GetDefaultMetadataOptionsAPI.swift b/Sources/Paths/GetDefaultMetadataOptionsAPI.swift new file mode 100644 index 000000000..3d78cbb0e --- /dev/null +++ b/Sources/Paths/GetDefaultMetadataOptionsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a default MetadataOptions object. + static var getDefaultMetadataOptions: Request { + Request(method: "GET", url: "/System/Configuration/MetadataOptions/Default", id: "GetDefaultMetadataOptions") + } +} diff --git a/Sources/Paths/GetDefaultProfileAPI.swift b/Sources/Paths/GetDefaultProfileAPI.swift new file mode 100644 index 000000000..52b4b4f34 --- /dev/null +++ b/Sources/Paths/GetDefaultProfileAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the default profile. + static var getDefaultProfile: Request { + Request(method: "GET", url: "/Dlna/Profiles/Default", id: "GetDefaultProfile") + } +} diff --git a/Sources/Paths/GetDefaultTimerAPI.swift b/Sources/Paths/GetDefaultTimerAPI.swift new file mode 100644 index 000000000..0d840187a --- /dev/null +++ b/Sources/Paths/GetDefaultTimerAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets the default values for a new timer. + public static func getDefaultTimer(programID: String? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Timers/Defaults", query: makeGetDefaultTimerQuery(programID), id: "GetDefaultTimer") + } + + private static func makeGetDefaultTimerQuery(_ programID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(programID, forKey: "programId") + return encoder.items + } +} diff --git a/Sources/Paths/GetDescriptionXml2API.swift b/Sources/Paths/GetDescriptionXml2API.swift new file mode 100644 index 000000000..969c04d1d --- /dev/null +++ b/Sources/Paths/GetDescriptionXml2API.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get Description Xml. + static func getDescriptionXml2(serverID: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/description.xml", id: "GetDescriptionXml_2") + } +} diff --git a/Sources/Paths/GetDescriptionXmlAPI.swift b/Sources/Paths/GetDescriptionXmlAPI.swift new file mode 100644 index 000000000..6329c0468 --- /dev/null +++ b/Sources/Paths/GetDescriptionXmlAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get Description Xml. + static func getDescriptionXml(serverID: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/description", id: "GetDescriptionXml") + } +} diff --git a/Sources/Paths/GetDeviceInfoAPI.swift b/Sources/Paths/GetDeviceInfoAPI.swift new file mode 100644 index 000000000..a371c7733 --- /dev/null +++ b/Sources/Paths/GetDeviceInfoAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get info for a device. + static func getDeviceInfo(id: String) -> Request { + Request(method: "GET", url: "/Devices/Info", query: [("id", id)], id: "GetDeviceInfo") + } +} diff --git a/Sources/Paths/GetDeviceOptionsAPI.swift b/Sources/Paths/GetDeviceOptionsAPI.swift new file mode 100644 index 000000000..8ad98b666 --- /dev/null +++ b/Sources/Paths/GetDeviceOptionsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get options for a device. + static func getDeviceOptions(id: String) -> Request { + Request(method: "GET", url: "/Devices/Options", query: [("id", id)], id: "GetDeviceOptions") + } +} diff --git a/Sources/Paths/GetDevicesAPI.swift b/Sources/Paths/GetDevicesAPI.swift new file mode 100644 index 000000000..b366cad26 --- /dev/null +++ b/Sources/Paths/GetDevicesAPI.swift @@ -0,0 +1,25 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Get Devices. + public static func getDevices(isSupportsSync: Bool? = nil, userID: String? = nil) -> Request { + Request(method: "GET", url: "/Devices", query: makeGetDevicesQuery(isSupportsSync, userID), id: "GetDevices") + } + + private static func makeGetDevicesQuery(_ isSupportsSync: Bool?, _ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isSupportsSync, forKey: "supportsSync") + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetDirectoryContentsAPI.swift b/Sources/Paths/GetDirectoryContentsAPI.swift new file mode 100644 index 000000000..8269885c5 --- /dev/null +++ b/Sources/Paths/GetDirectoryContentsAPI.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the contents of a given directory in the file system. + static func getDirectoryContents(parameters: GetDirectoryContentsParameters) -> Request<[JellyfinAPI.FileSystemEntryInfo]> { + Request(method: "GET", url: "/Environment/DirectoryContents", query: parameters.asQuery, id: "GetDirectoryContents") + } + + struct GetDirectoryContentsParameters { + public var path: String + public var isIncludeFiles: Bool? + public var isIncludeDirectories: Bool? + + public init(path: String, isIncludeFiles: Bool? = nil, isIncludeDirectories: Bool? = nil) { + self.path = path + self.isIncludeFiles = isIncludeFiles + self.isIncludeDirectories = isIncludeDirectories + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(path, forKey: "path") + encoder.encode(isIncludeFiles, forKey: "includeFiles") + encoder.encode(isIncludeDirectories, forKey: "includeDirectories") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetDisplayPreferencesAPI.swift b/Sources/Paths/GetDisplayPreferencesAPI.swift new file mode 100644 index 000000000..3fa6f8f2a --- /dev/null +++ b/Sources/Paths/GetDisplayPreferencesAPI.swift @@ -0,0 +1,27 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get Display Preferences. + static func getDisplayPreferences( + displayPreferencesID: String, + userID: String, + client: String + ) -> Request { + Request( + method: "GET", + url: "/DisplayPreferences/\(displayPreferencesID)", + query: [("userId", userID), ("client", client)], + id: "GetDisplayPreferences" + ) + } +} diff --git a/Sources/Paths/GetDownloadAPI.swift b/Sources/Paths/GetDownloadAPI.swift new file mode 100644 index 000000000..4b58a6091 --- /dev/null +++ b/Sources/Paths/GetDownloadAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Downloads item media. + static func getDownload(itemID: String) -> Request { + Request(method: "GET", url: "/Items/\(itemID)/Download", id: "GetDownload") + } +} diff --git a/Sources/Paths/GetDrivesAPI.swift b/Sources/Paths/GetDrivesAPI.swift new file mode 100644 index 000000000..3a7861968 --- /dev/null +++ b/Sources/Paths/GetDrivesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available drives from the server's file system. + static var getDrives: Request<[JellyfinAPI.FileSystemEntryInfo]> { + Request(method: "GET", url: "/Environment/Drives", id: "GetDrives") + } +} diff --git a/Sources/Paths/GetEnabledAPI.swift b/Sources/Paths/GetEnabledAPI.swift new file mode 100644 index 000000000..583d29109 --- /dev/null +++ b/Sources/Paths/GetEnabledAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the current quick connect state. + static var getEnabled: Request { + Request(method: "GET", url: "/QuickConnect/Enabled", id: "GetEnabled") + } +} diff --git a/Sources/Paths/GetEndpointInfoAPI.swift b/Sources/Paths/GetEndpointInfoAPI.swift new file mode 100644 index 000000000..2eadb0743 --- /dev/null +++ b/Sources/Paths/GetEndpointInfoAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets information about the request endpoint. + static var getEndpointInfo: Request { + Request(method: "GET", url: "/System/Endpoint", id: "GetEndpointInfo") + } +} diff --git a/Sources/Paths/GetEpisodesAPI.swift b/Sources/Paths/GetEpisodesAPI.swift new file mode 100644 index 000000000..88a119652 --- /dev/null +++ b/Sources/Paths/GetEpisodesAPI.swift @@ -0,0 +1,86 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets episodes for a tv season. + static func getEpisodes(seriesID: String, parameters: GetEpisodesParameters? = nil) -> Request { + Request(method: "GET", url: "/Shows/\(seriesID)/Episodes", query: parameters?.asQuery, id: "GetEpisodes") + } + + struct GetEpisodesParameters { + public var userID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var season: Int32? + public var seasonID: String? + public var isMissing: Bool? + public var adjacentTo: String? + public var startItemID: String? + public var startIndex: Int32? + public var limit: Int32? + public var enableImages: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var enableUserData: Bool? + public var sortBy: String? + + public init( + userID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + season: Int32? = nil, + seasonID: String? = nil, + isMissing: Bool? = nil, + adjacentTo: String? = nil, + startItemID: String? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + enableImages: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + enableUserData: Bool? = nil, + sortBy: String? = nil + ) { + self.userID = userID + self.fields = fields + self.season = season + self.seasonID = seasonID + self.isMissing = isMissing + self.adjacentTo = adjacentTo + self.startItemID = startItemID + self.startIndex = startIndex + self.limit = limit + self.enableImages = enableImages + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.enableUserData = enableUserData + self.sortBy = sortBy + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(fields, forKey: "fields") + encoder.encode(season, forKey: "season") + encoder.encode(seasonID, forKey: "seasonId") + encoder.encode(isMissing, forKey: "isMissing") + encoder.encode(adjacentTo, forKey: "adjacentTo") + encoder.encode(startItemID, forKey: "startItemId") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(sortBy, forKey: "sortBy") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetExternalIDInfosAPI.swift b/Sources/Paths/GetExternalIDInfosAPI.swift new file mode 100644 index 000000000..0c8ab709e --- /dev/null +++ b/Sources/Paths/GetExternalIDInfosAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get the item's external id info. + static func getExternalIDInfos(itemID: String) -> Request<[JellyfinAPI.ExternalIDInfo]> { + Request(method: "GET", url: "/Items/\(itemID)/ExternalIdInfos", id: "GetExternalIdInfos") + } +} diff --git a/Sources/Paths/GetFallbackFontAPI.swift b/Sources/Paths/GetFallbackFontAPI.swift new file mode 100644 index 000000000..c99e59607 --- /dev/null +++ b/Sources/Paths/GetFallbackFontAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a fallback font file. + static func getFallbackFont(name: String) -> Request { + Request(method: "GET", url: "/FallbackFont/Fonts/\(name)", id: "GetFallbackFont") + } +} diff --git a/Sources/Paths/GetFallbackFontListAPI.swift b/Sources/Paths/GetFallbackFontListAPI.swift new file mode 100644 index 000000000..f8576c8fb --- /dev/null +++ b/Sources/Paths/GetFallbackFontListAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a list of available fallback font files. + static var getFallbackFontList: Request<[JellyfinAPI.FontFile]> { + Request(method: "GET", url: "/FallbackFont/Fonts", id: "GetFallbackFontList") + } +} diff --git a/Sources/Paths/GetFileAPI.swift b/Sources/Paths/GetFileAPI.swift new file mode 100644 index 000000000..b86738d70 --- /dev/null +++ b/Sources/Paths/GetFileAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get the original file of an item. + static func getFile(itemID: String) -> Request { + Request(method: "GET", url: "/Items/\(itemID)/File", id: "GetFile") + } +} diff --git a/Sources/Paths/GetFirstUser2API.swift b/Sources/Paths/GetFirstUser2API.swift new file mode 100644 index 000000000..bb05f24cf --- /dev/null +++ b/Sources/Paths/GetFirstUser2API.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the first user. + static var getFirstUser2: Request { + Request(method: "GET", url: "/Startup/FirstUser", id: "GetFirstUser_2") + } +} diff --git a/Sources/Paths/GetFirstUserAPI.swift b/Sources/Paths/GetFirstUserAPI.swift new file mode 100644 index 000000000..eb854f249 --- /dev/null +++ b/Sources/Paths/GetFirstUserAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the first user. + static var getFirstUser: Request { + Request(method: "GET", url: "/Startup/User", id: "GetFirstUser") + } +} diff --git a/Sources/Paths/GetGeneralImageAPI.swift b/Sources/Paths/GetGeneralImageAPI.swift new file mode 100644 index 000000000..99d5460e7 --- /dev/null +++ b/Sources/Paths/GetGeneralImageAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get General Image. + static func getGeneralImage(name: String, type: String) -> Request { + Request(method: "GET", url: "/Images/General/\(name)/\(type)", id: "GetGeneralImage") + } +} diff --git a/Sources/Paths/GetGeneralImagesAPI.swift b/Sources/Paths/GetGeneralImagesAPI.swift new file mode 100644 index 000000000..55ffd360d --- /dev/null +++ b/Sources/Paths/GetGeneralImagesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get all general images. + static var getGeneralImages: Request<[JellyfinAPI.ImageByNameInfo]> { + Request(method: "GET", url: "/Images/General", id: "GetGeneralImages") + } +} diff --git a/Sources/Paths/GetGenreAPI.swift b/Sources/Paths/GetGenreAPI.swift new file mode 100644 index 000000000..3985d07f0 --- /dev/null +++ b/Sources/Paths/GetGenreAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets a genre, by name. + public static func getGenre(genreName: String, userID: String? = nil) -> Request { + Request(method: "GET", url: "/Genres/\(genreName)", query: makeGetGenreQuery(userID), id: "GetGenre") + } + + private static func makeGetGenreQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetGenreImageAPI.swift b/Sources/Paths/GetGenreImageAPI.swift new file mode 100644 index 000000000..d48056071 --- /dev/null +++ b/Sources/Paths/GetGenreImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get genre image by name. + static func getGenreImage(name: String, imageType: String, parameters: GetGenreImageParameters? = nil) -> Request { + Request(method: "GET", url: "/Genres/\(name)/Images/\(imageType)", query: parameters?.asQuery, id: "GetGenreImage") + } + + struct GetGenreImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetGenreImageByIndexAPI.swift b/Sources/Paths/GetGenreImageByIndexAPI.swift new file mode 100644 index 000000000..adff34a3f --- /dev/null +++ b/Sources/Paths/GetGenreImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get genre image by name. + static func getGenreImageByIndex( + name: String, + imageType: String, + imageIndex: Int, + parameters: GetGenreImageByIndexParameters? = nil + ) -> Request { + Request( + method: "GET", + url: "/Genres/\(name)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "GetGenreImageByIndex" + ) + } + + struct GetGenreImageByIndexParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetGenresAPI.swift b/Sources/Paths/GetGenresAPI.swift new file mode 100644 index 000000000..1de145d06 --- /dev/null +++ b/Sources/Paths/GetGenresAPI.swift @@ -0,0 +1,102 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets all genres from a given item, folder, or the entire library. + static func getGenres(parameters: GetGenresParameters? = nil) -> Request { + Request(method: "GET", url: "/Genres", query: parameters?.asQuery, id: "GetGenres") + } + + struct GetGenresParameters { + public var startIndex: Int32? + public var limit: Int32? + public var searchTerm: String? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var isFavorite: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var userID: String? + public var nameStartsWithOrGreater: String? + public var nameStartsWith: String? + public var nameLessThan: String? + public var sortBy: [String]? + public var sortOrder: [JellyfinAPI.SortOrder]? + public var enableImages: Bool? + public var enableTotalRecordCount: Bool? + + public init( + startIndex: Int32? = nil, + limit: Int32? = nil, + searchTerm: String? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + isFavorite: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + userID: String? = nil, + nameStartsWithOrGreater: String? = nil, + nameStartsWith: String? = nil, + nameLessThan: String? = nil, + sortBy: [String]? = nil, + sortOrder: [JellyfinAPI.SortOrder]? = nil, + enableImages: Bool? = nil, + enableTotalRecordCount: Bool? = nil + ) { + self.startIndex = startIndex + self.limit = limit + self.searchTerm = searchTerm + self.parentID = parentID + self.fields = fields + self.excludeItemTypes = excludeItemTypes + self.includeItemTypes = includeItemTypes + self.isFavorite = isFavorite + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.userID = userID + self.nameStartsWithOrGreater = nameStartsWithOrGreater + self.nameStartsWith = nameStartsWith + self.nameLessThan = nameLessThan + self.sortBy = sortBy + self.sortOrder = sortOrder + self.enableImages = enableImages + self.enableTotalRecordCount = enableTotalRecordCount + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(isFavorite, forKey: "isFavorite") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(userID, forKey: "userId") + encoder.encode(nameStartsWithOrGreater, forKey: "nameStartsWithOrGreater") + encoder.encode(nameStartsWith, forKey: "nameStartsWith") + encoder.encode(nameLessThan, forKey: "nameLessThan") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetGroupingOptionsAPI.swift b/Sources/Paths/GetGroupingOptionsAPI.swift new file mode 100644 index 000000000..47f26b4f6 --- /dev/null +++ b/Sources/Paths/GetGroupingOptionsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get user view grouping options. + static func getGroupingOptions(userID: String) -> Request<[JellyfinAPI.SpecialViewOptionDto]> { + Request(method: "GET", url: "/Users/\(userID)/GroupingOptions", id: "GetGroupingOptions") + } +} diff --git a/Sources/Paths/GetGuideInfoAPI.swift b/Sources/Paths/GetGuideInfoAPI.swift new file mode 100644 index 000000000..37e60d1d7 --- /dev/null +++ b/Sources/Paths/GetGuideInfoAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get guid info. + static var getGuideInfo: Request { + Request(method: "GET", url: "/LiveTv/GuideInfo", id: "GetGuideInfo") + } +} diff --git a/Sources/Paths/GetHlsAudioSegmentAPI.swift b/Sources/Paths/GetHlsAudioSegmentAPI.swift new file mode 100644 index 000000000..c460c5015 --- /dev/null +++ b/Sources/Paths/GetHlsAudioSegmentAPI.swift @@ -0,0 +1,247 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a video stream using HTTP live streaming. + static func getHlsAudioSegment( + itemID: String, + playlistID: String, + segmentID: Int, + container: String, + parameters: GetHlsAudioSegmentParameters + ) -> Request { + Request( + method: "GET", + url: "/Audio/\(itemID)/hls1/\(playlistID)/\(segmentID).\(container)", + query: parameters.asQuery, + id: "GetHlsAudioSegment" + ) + } + + struct GetHlsAudioSegmentParameters { + public var runtimeTicks: Int64 + public var actualSegmentLengthTicks: Int64 + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var maxStreamingBitrate: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + runtimeTicks: Int64, + actualSegmentLengthTicks: Int64, + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + maxStreamingBitrate: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.runtimeTicks = runtimeTicks + self.actualSegmentLengthTicks = actualSegmentLengthTicks + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.maxStreamingBitrate = maxStreamingBitrate + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(runtimeTicks, forKey: "runtimeTicks") + encoder.encode(actualSegmentLengthTicks, forKey: "actualSegmentLengthTicks") + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(maxStreamingBitrate, forKey: "maxStreamingBitrate") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetHlsAudioSegmentLegacyAacAPI.swift b/Sources/Paths/GetHlsAudioSegmentLegacyAacAPI.swift new file mode 100644 index 000000000..96ba0310c --- /dev/null +++ b/Sources/Paths/GetHlsAudioSegmentLegacyAacAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the specified audio segment for an audio item. + static func getHlsAudioSegmentLegacyAac(itemID: String, segmentID: String) -> Request { + Request(method: "GET", url: "/Audio/\(itemID)/hls/\(segmentID)/stream.aac", id: "GetHlsAudioSegmentLegacyAac") + } +} diff --git a/Sources/Paths/GetHlsAudioSegmentLegacyMp3API.swift b/Sources/Paths/GetHlsAudioSegmentLegacyMp3API.swift new file mode 100644 index 000000000..b27825a2b --- /dev/null +++ b/Sources/Paths/GetHlsAudioSegmentLegacyMp3API.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the specified audio segment for an audio item. + static func getHlsAudioSegmentLegacyMp3(itemID: String, segmentID: String) -> Request { + Request(method: "GET", url: "/Audio/\(itemID)/hls/\(segmentID)/stream.mp3", id: "GetHlsAudioSegmentLegacyMp3") + } +} diff --git a/Sources/Paths/GetHlsPlaylistLegacyAPI.swift b/Sources/Paths/GetHlsPlaylistLegacyAPI.swift new file mode 100644 index 000000000..a8ac084f3 --- /dev/null +++ b/Sources/Paths/GetHlsPlaylistLegacyAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a hls video playlist. + static func getHlsPlaylistLegacy(itemID: String, playlistID: String) -> Request { + Request(method: "GET", url: "/Videos/\(itemID)/hls/\(playlistID)/stream.m3u8", id: "GetHlsPlaylistLegacy") + } +} diff --git a/Sources/Paths/GetHlsVideoSegmentAPI.swift b/Sources/Paths/GetHlsVideoSegmentAPI.swift new file mode 100644 index 000000000..7e411ff12 --- /dev/null +++ b/Sources/Paths/GetHlsVideoSegmentAPI.swift @@ -0,0 +1,251 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a video stream using HTTP live streaming. + static func getHlsVideoSegment( + itemID: String, + playlistID: String, + segmentID: Int, + container: String, + parameters: GetHlsVideoSegmentParameters + ) -> Request { + Request( + method: "GET", + url: "/Videos/\(itemID)/hls1/\(playlistID)/\(segmentID).\(container)", + query: parameters.asQuery, + id: "GetHlsVideoSegment" + ) + } + + struct GetHlsVideoSegmentParameters { + public var runtimeTicks: Int64 + public var actualSegmentLengthTicks: Int64 + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + runtimeTicks: Int64, + actualSegmentLengthTicks: Int64, + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.runtimeTicks = runtimeTicks + self.actualSegmentLengthTicks = actualSegmentLengthTicks + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(runtimeTicks, forKey: "runtimeTicks") + encoder.encode(actualSegmentLengthTicks, forKey: "actualSegmentLengthTicks") + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetHlsVideoSegmentLegacyAPI.swift b/Sources/Paths/GetHlsVideoSegmentLegacyAPI.swift new file mode 100644 index 000000000..106231274 --- /dev/null +++ b/Sources/Paths/GetHlsVideoSegmentLegacyAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a hls video segment. + static func getHlsVideoSegmentLegacy(itemID: String, playlistID: String, segmentID: String, segmentContainer: String) -> Request { + Request(method: "GET", url: "/Videos/\(itemID)/hls/\(playlistID)/\(segmentID).\(segmentContainer)", id: "GetHlsVideoSegmentLegacy") + } +} diff --git a/Sources/Paths/GetIconAPI.swift b/Sources/Paths/GetIconAPI.swift new file mode 100644 index 000000000..92aa42dbe --- /dev/null +++ b/Sources/Paths/GetIconAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a server icon. + static func getIcon(fileName: String) -> Request { + Request(method: "GET", url: "/Dlna/icons/\(fileName)", id: "GetIcon") + } +} diff --git a/Sources/Paths/GetIconIDAPI.swift b/Sources/Paths/GetIconIDAPI.swift new file mode 100644 index 000000000..03701c90f --- /dev/null +++ b/Sources/Paths/GetIconIDAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a server icon. + static func getIconID(serverID: String, fileName: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/icons/\(fileName)", id: "GetIconId") + } +} diff --git a/Sources/Paths/GetInstantMixFromAlbumAPI.swift b/Sources/Paths/GetInstantMixFromAlbumAPI.swift new file mode 100644 index 000000000..eb4a56af3 --- /dev/null +++ b/Sources/Paths/GetInstantMixFromAlbumAPI.swift @@ -0,0 +1,61 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates an instant playlist based on a given album. + static func getInstantMixFromAlbum( + id: String, + parameters: GetInstantMixFromAlbumParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Albums/\(id)/InstantMix", query: parameters?.asQuery, id: "GetInstantMixFromAlbum") + } + + struct GetInstantMixFromAlbumParameters { + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var enableImages: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + + public init( + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableImages: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil + ) { + self.userID = userID + self.limit = limit + self.fields = fields + self.enableImages = enableImages + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetInstantMixFromArtists2API.swift b/Sources/Paths/GetInstantMixFromArtists2API.swift new file mode 100644 index 000000000..0f6540193 --- /dev/null +++ b/Sources/Paths/GetInstantMixFromArtists2API.swift @@ -0,0 +1,63 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates an instant playlist based on a given artist. + @available(*, deprecated, message: "Deprecated") + static func getInstantMixFromArtists2(parameters: GetInstantMixFromArtists2Parameters) -> Request { + Request(method: "GET", url: "/Artists/InstantMix", query: parameters.asQuery, id: "GetInstantMixFromArtists2") + } + + struct GetInstantMixFromArtists2Parameters { + public var id: String + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var enableImages: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + + public init( + id: String, + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableImages: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil + ) { + self.id = id + self.userID = userID + self.limit = limit + self.fields = fields + self.enableImages = enableImages + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(id, forKey: "id") + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetInstantMixFromArtistsAPI.swift b/Sources/Paths/GetInstantMixFromArtistsAPI.swift new file mode 100644 index 000000000..1dd84281e --- /dev/null +++ b/Sources/Paths/GetInstantMixFromArtistsAPI.swift @@ -0,0 +1,61 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates an instant playlist based on a given artist. + static func getInstantMixFromArtists( + id: String, + parameters: GetInstantMixFromArtistsParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Artists/\(id)/InstantMix", query: parameters?.asQuery, id: "GetInstantMixFromArtists") + } + + struct GetInstantMixFromArtistsParameters { + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var enableImages: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + + public init( + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableImages: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil + ) { + self.userID = userID + self.limit = limit + self.fields = fields + self.enableImages = enableImages + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetInstantMixFromItemAPI.swift b/Sources/Paths/GetInstantMixFromItemAPI.swift new file mode 100644 index 000000000..759db832f --- /dev/null +++ b/Sources/Paths/GetInstantMixFromItemAPI.swift @@ -0,0 +1,61 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates an instant playlist based on a given item. + static func getInstantMixFromItem( + id: String, + parameters: GetInstantMixFromItemParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Items/\(id)/InstantMix", query: parameters?.asQuery, id: "GetInstantMixFromItem") + } + + struct GetInstantMixFromItemParameters { + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var enableImages: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + + public init( + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableImages: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil + ) { + self.userID = userID + self.limit = limit + self.fields = fields + self.enableImages = enableImages + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetInstantMixFromMusicGenreByIDAPI.swift b/Sources/Paths/GetInstantMixFromMusicGenreByIDAPI.swift new file mode 100644 index 000000000..c103a8f40 --- /dev/null +++ b/Sources/Paths/GetInstantMixFromMusicGenreByIDAPI.swift @@ -0,0 +1,63 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates an instant playlist based on a given genre. + static func getInstantMixFromMusicGenreByID(parameters: GetInstantMixFromMusicGenreByIDParameters) + -> Request { + Request(method: "GET", url: "/MusicGenres/InstantMix", query: parameters.asQuery, id: "GetInstantMixFromMusicGenreById") + } + + struct GetInstantMixFromMusicGenreByIDParameters { + public var id: String + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var enableImages: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + + public init( + id: String, + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableImages: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil + ) { + self.id = id + self.userID = userID + self.limit = limit + self.fields = fields + self.enableImages = enableImages + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(id, forKey: "id") + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetInstantMixFromMusicGenreByNameAPI.swift b/Sources/Paths/GetInstantMixFromMusicGenreByNameAPI.swift new file mode 100644 index 000000000..2cd687703 --- /dev/null +++ b/Sources/Paths/GetInstantMixFromMusicGenreByNameAPI.swift @@ -0,0 +1,61 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates an instant playlist based on a given genre. + static func getInstantMixFromMusicGenreByName( + name: String, + parameters: GetInstantMixFromMusicGenreByNameParameters? = nil + ) -> Request { + Request(method: "GET", url: "/MusicGenres/\(name)/InstantMix", query: parameters?.asQuery, id: "GetInstantMixFromMusicGenreByName") + } + + struct GetInstantMixFromMusicGenreByNameParameters { + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var enableImages: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + + public init( + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableImages: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil + ) { + self.userID = userID + self.limit = limit + self.fields = fields + self.enableImages = enableImages + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetInstantMixFromPlaylistAPI.swift b/Sources/Paths/GetInstantMixFromPlaylistAPI.swift new file mode 100644 index 000000000..214633afe --- /dev/null +++ b/Sources/Paths/GetInstantMixFromPlaylistAPI.swift @@ -0,0 +1,61 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates an instant playlist based on a given playlist. + static func getInstantMixFromPlaylist( + id: String, + parameters: GetInstantMixFromPlaylistParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Playlists/\(id)/InstantMix", query: parameters?.asQuery, id: "GetInstantMixFromPlaylist") + } + + struct GetInstantMixFromPlaylistParameters { + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var enableImages: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + + public init( + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableImages: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil + ) { + self.userID = userID + self.limit = limit + self.fields = fields + self.enableImages = enableImages + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetInstantMixFromSongAPI.swift b/Sources/Paths/GetInstantMixFromSongAPI.swift new file mode 100644 index 000000000..eb67dafea --- /dev/null +++ b/Sources/Paths/GetInstantMixFromSongAPI.swift @@ -0,0 +1,61 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Creates an instant playlist based on a given song. + static func getInstantMixFromSong( + id: String, + parameters: GetInstantMixFromSongParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Songs/\(id)/InstantMix", query: parameters?.asQuery, id: "GetInstantMixFromSong") + } + + struct GetInstantMixFromSongParameters { + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var enableImages: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + + public init( + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableImages: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil + ) { + self.userID = userID + self.limit = limit + self.fields = fields + self.enableImages = enableImages + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetIntrosAPI.swift b/Sources/Paths/GetIntrosAPI.swift new file mode 100644 index 000000000..f36cd5df9 --- /dev/null +++ b/Sources/Paths/GetIntrosAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets intros to play before the main media item plays. + static func getIntros(userID: String, itemID: String) -> Request { + Request(method: "GET", url: "/Users/\(userID)/Items/\(itemID)/Intros", id: "GetIntros") + } +} diff --git a/Sources/Paths/GetItemAPI.swift b/Sources/Paths/GetItemAPI.swift new file mode 100644 index 000000000..c3c8b7679 --- /dev/null +++ b/Sources/Paths/GetItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets an item from a user's library. + static func getItem(userID: String, itemID: String) -> Request { + Request(method: "GET", url: "/Users/\(userID)/Items/\(itemID)", id: "GetItem") + } +} diff --git a/Sources/Paths/GetItemCountsAPI.swift b/Sources/Paths/GetItemCountsAPI.swift new file mode 100644 index 000000000..f5fecb20b --- /dev/null +++ b/Sources/Paths/GetItemCountsAPI.swift @@ -0,0 +1,25 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Get item counts. + public static func getItemCounts(userID: String? = nil, isFavorite: Bool? = nil) -> Request { + Request(method: "GET", url: "/Items/Counts", query: makeGetItemCountsQuery(userID, isFavorite), id: "GetItemCounts") + } + + private static func makeGetItemCountsQuery(_ userID: String?, _ isFavorite: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(isFavorite, forKey: "isFavorite") + return encoder.items + } +} diff --git a/Sources/Paths/GetItemImage2API.swift b/Sources/Paths/GetItemImage2API.swift new file mode 100644 index 000000000..b2738f4f5 --- /dev/null +++ b/Sources/Paths/GetItemImage2API.swift @@ -0,0 +1,86 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the item's image. + static func getItemImage2( + itemID: String, + imageType: String, + maxWidth: Int, + maxHeight: Int, + tag: String, + format: String, + percentPlayed: String, + unplayedCount: Int, + imageIndex: Int, + parameters: GetItemImage2Parameters? = nil + ) -> Request { + Request( + method: "GET", + url: "/Items/\(itemID)/Images/\(imageType)/\(imageIndex)/\(tag)/\(format)/\(maxWidth)/\(maxHeight)/\(percentPlayed)/\(unplayedCount)", + query: parameters?.asQuery, + id: "GetItemImage2" + ) + } + + struct GetItemImage2Parameters { + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public init( + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetItemImageAPI.swift b/Sources/Paths/GetItemImageAPI.swift new file mode 100644 index 000000000..e3fee9839 --- /dev/null +++ b/Sources/Paths/GetItemImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the item's image. + static func getItemImage(itemID: String, imageType: String, parameters: GetItemImageParameters? = nil) -> Request { + Request(method: "GET", url: "/Items/\(itemID)/Images/\(imageType)", query: parameters?.asQuery, id: "GetItemImage") + } + + struct GetItemImageParameters { + public var maxWidth: Int32? + public var maxHeight: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var tag: String? + public var isCropWhitespace: Bool? + public var format: Format? + public var isAddPlayedIndicator: Bool? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + tag: String? = nil, + isCropWhitespace: Bool? = nil, + format: Format? = nil, + isAddPlayedIndicator: Bool? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.tag = tag + self.isCropWhitespace = isCropWhitespace + self.format = format + self.isAddPlayedIndicator = isAddPlayedIndicator + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(tag, forKey: "tag") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(format, forKey: "format") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetItemImageByIndexAPI.swift b/Sources/Paths/GetItemImageByIndexAPI.swift new file mode 100644 index 000000000..e1e348d00 --- /dev/null +++ b/Sources/Paths/GetItemImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the item's image. + static func getItemImageByIndex( + itemID: String, + imageType: String, + imageIndex: Int, + parameters: GetItemImageByIndexParameters? = nil + ) -> Request { + Request( + method: "GET", + url: "/Items/\(itemID)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "GetItemImageByIndex" + ) + } + + struct GetItemImageByIndexParameters { + public var maxWidth: Int32? + public var maxHeight: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var tag: String? + public var isCropWhitespace: Bool? + public var format: Format? + public var isAddPlayedIndicator: Bool? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + tag: String? = nil, + isCropWhitespace: Bool? = nil, + format: Format? = nil, + isAddPlayedIndicator: Bool? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.tag = tag + self.isCropWhitespace = isCropWhitespace + self.format = format + self.isAddPlayedIndicator = isAddPlayedIndicator + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(tag, forKey: "tag") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(format, forKey: "format") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetItemImageInfosAPI.swift b/Sources/Paths/GetItemImageInfosAPI.swift new file mode 100644 index 000000000..18e5d0524 --- /dev/null +++ b/Sources/Paths/GetItemImageInfosAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get item image infos. + static func getItemImageInfos(itemID: String) -> Request<[JellyfinAPI.ImageInfo]> { + Request(method: "GET", url: "/Items/\(itemID)/Images", id: "GetItemImageInfos") + } +} diff --git a/Sources/Paths/GetItemsAPI.swift b/Sources/Paths/GetItemsAPI.swift new file mode 100644 index 000000000..95ff139fa --- /dev/null +++ b/Sources/Paths/GetItemsAPI.swift @@ -0,0 +1,370 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets items based on a query. + static func getItems(parameters: GetItemsParameters? = nil) -> Request { + Request(method: "GET", url: "/Items", query: parameters?.asQuery, id: "GetItems") + } + + struct GetItemsParameters { + public var userID: String? + public var maxOfficialRating: String? + public var hasThemeSong: Bool? + public var hasThemeVideo: Bool? + public var hasSubtitles: Bool? + public var hasSpecialFeature: Bool? + public var hasTrailer: Bool? + public var adjacentTo: String? + public var parentIndexNumber: Int32? + public var hasParentalRating: Bool? + public var isHd: Bool? + public var isIs4K: Bool? + public var locationTypes: [JellyfinAPI.LocationType]? + public var excludeLocationTypes: [JellyfinAPI.LocationType]? + public var isMissing: Bool? + public var isUnaired: Bool? + public var minCommunityRating: Double? + public var minCriticRating: Double? + public var minPremiereDate: Date? + public var minDateLastSaved: Date? + public var minDateLastSavedForUser: Date? + public var maxPremiereDate: Date? + public var hasOverview: Bool? + public var hasImdbID: Bool? + public var hasTmdbID: Bool? + public var hasTvdbID: Bool? + public var isMovie: Bool? + public var isSeries: Bool? + public var isNews: Bool? + public var isKids: Bool? + public var isSports: Bool? + public var excludeItemIDs: [String]? + public var startIndex: Int32? + public var limit: Int32? + public var isRecursive: Bool? + public var searchTerm: String? + public var sortOrder: [JellyfinAPI.SortOrder]? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var filters: [JellyfinAPI.ItemFilter]? + public var isFavorite: Bool? + public var mediaTypes: [String]? + public var imageTypes: [JellyfinAPI.ImageType]? + public var sortBy: [String]? + public var isPlayed: Bool? + public var genres: [String]? + public var officialRatings: [String]? + public var tags: [String]? + public var years: [Int32]? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var person: String? + public var personIDs: [String]? + public var personTypes: [String]? + public var studios: [String]? + public var artists: [String]? + public var excludeArtistIDs: [String]? + public var artistIDs: [String]? + public var albumArtistIDs: [String]? + public var contributingArtistIDs: [String]? + public var albums: [String]? + public var albumIDs: [String]? + public var ids: [String]? + public var videoTypes: [JellyfinAPI.VideoType]? + public var minOfficialRating: String? + public var isLocked: Bool? + public var isPlaceHolder: Bool? + public var hasOfficialRating: Bool? + public var isCollapseBoxSetItems: Bool? + public var minWidth: Int32? + public var minHeight: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var isIs3D: Bool? + public var seriesStatus: [JellyfinAPI.SeriesStatus]? + public var nameStartsWithOrGreater: String? + public var nameStartsWith: String? + public var nameLessThan: String? + public var studioIDs: [String]? + public var genreIDs: [String]? + public var enableTotalRecordCount: Bool? + public var enableImages: Bool? + + public init( + userID: String? = nil, + maxOfficialRating: String? = nil, + hasThemeSong: Bool? = nil, + hasThemeVideo: Bool? = nil, + hasSubtitles: Bool? = nil, + hasSpecialFeature: Bool? = nil, + hasTrailer: Bool? = nil, + adjacentTo: String? = nil, + parentIndexNumber: Int32? = nil, + hasParentalRating: Bool? = nil, + isHd: Bool? = nil, + isIs4K: Bool? = nil, + locationTypes: [JellyfinAPI.LocationType]? = nil, + excludeLocationTypes: [JellyfinAPI.LocationType]? = nil, + isMissing: Bool? = nil, + isUnaired: Bool? = nil, + minCommunityRating: Double? = nil, + minCriticRating: Double? = nil, + minPremiereDate: Date? = nil, + minDateLastSaved: Date? = nil, + minDateLastSavedForUser: Date? = nil, + maxPremiereDate: Date? = nil, + hasOverview: Bool? = nil, + hasImdbID: Bool? = nil, + hasTmdbID: Bool? = nil, + hasTvdbID: Bool? = nil, + isMovie: Bool? = nil, + isSeries: Bool? = nil, + isNews: Bool? = nil, + isKids: Bool? = nil, + isSports: Bool? = nil, + excludeItemIDs: [String]? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + isRecursive: Bool? = nil, + searchTerm: String? = nil, + sortOrder: [JellyfinAPI.SortOrder]? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + filters: [JellyfinAPI.ItemFilter]? = nil, + isFavorite: Bool? = nil, + mediaTypes: [String]? = nil, + imageTypes: [JellyfinAPI.ImageType]? = nil, + sortBy: [String]? = nil, + isPlayed: Bool? = nil, + genres: [String]? = nil, + officialRatings: [String]? = nil, + tags: [String]? = nil, + years: [Int32]? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + person: String? = nil, + personIDs: [String]? = nil, + personTypes: [String]? = nil, + studios: [String]? = nil, + artists: [String]? = nil, + excludeArtistIDs: [String]? = nil, + artistIDs: [String]? = nil, + albumArtistIDs: [String]? = nil, + contributingArtistIDs: [String]? = nil, + albums: [String]? = nil, + albumIDs: [String]? = nil, + ids: [String]? = nil, + videoTypes: [JellyfinAPI.VideoType]? = nil, + minOfficialRating: String? = nil, + isLocked: Bool? = nil, + isPlaceHolder: Bool? = nil, + hasOfficialRating: Bool? = nil, + isCollapseBoxSetItems: Bool? = nil, + minWidth: Int32? = nil, + minHeight: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + isIs3D: Bool? = nil, + seriesStatus: [JellyfinAPI.SeriesStatus]? = nil, + nameStartsWithOrGreater: String? = nil, + nameStartsWith: String? = nil, + nameLessThan: String? = nil, + studioIDs: [String]? = nil, + genreIDs: [String]? = nil, + enableTotalRecordCount: Bool? = nil, + enableImages: Bool? = nil + ) { + self.userID = userID + self.maxOfficialRating = maxOfficialRating + self.hasThemeSong = hasThemeSong + self.hasThemeVideo = hasThemeVideo + self.hasSubtitles = hasSubtitles + self.hasSpecialFeature = hasSpecialFeature + self.hasTrailer = hasTrailer + self.adjacentTo = adjacentTo + self.parentIndexNumber = parentIndexNumber + self.hasParentalRating = hasParentalRating + self.isHd = isHd + self.isIs4K = isIs4K + self.locationTypes = locationTypes + self.excludeLocationTypes = excludeLocationTypes + self.isMissing = isMissing + self.isUnaired = isUnaired + self.minCommunityRating = minCommunityRating + self.minCriticRating = minCriticRating + self.minPremiereDate = minPremiereDate + self.minDateLastSaved = minDateLastSaved + self.minDateLastSavedForUser = minDateLastSavedForUser + self.maxPremiereDate = maxPremiereDate + self.hasOverview = hasOverview + self.hasImdbID = hasImdbID + self.hasTmdbID = hasTmdbID + self.hasTvdbID = hasTvdbID + self.isMovie = isMovie + self.isSeries = isSeries + self.isNews = isNews + self.isKids = isKids + self.isSports = isSports + self.excludeItemIDs = excludeItemIDs + self.startIndex = startIndex + self.limit = limit + self.isRecursive = isRecursive + self.searchTerm = searchTerm + self.sortOrder = sortOrder + self.parentID = parentID + self.fields = fields + self.excludeItemTypes = excludeItemTypes + self.includeItemTypes = includeItemTypes + self.filters = filters + self.isFavorite = isFavorite + self.mediaTypes = mediaTypes + self.imageTypes = imageTypes + self.sortBy = sortBy + self.isPlayed = isPlayed + self.genres = genres + self.officialRatings = officialRatings + self.tags = tags + self.years = years + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.person = person + self.personIDs = personIDs + self.personTypes = personTypes + self.studios = studios + self.artists = artists + self.excludeArtistIDs = excludeArtistIDs + self.artistIDs = artistIDs + self.albumArtistIDs = albumArtistIDs + self.contributingArtistIDs = contributingArtistIDs + self.albums = albums + self.albumIDs = albumIDs + self.ids = ids + self.videoTypes = videoTypes + self.minOfficialRating = minOfficialRating + self.isLocked = isLocked + self.isPlaceHolder = isPlaceHolder + self.hasOfficialRating = hasOfficialRating + self.isCollapseBoxSetItems = isCollapseBoxSetItems + self.minWidth = minWidth + self.minHeight = minHeight + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.isIs3D = isIs3D + self.seriesStatus = seriesStatus + self.nameStartsWithOrGreater = nameStartsWithOrGreater + self.nameStartsWith = nameStartsWith + self.nameLessThan = nameLessThan + self.studioIDs = studioIDs + self.genreIDs = genreIDs + self.enableTotalRecordCount = enableTotalRecordCount + self.enableImages = enableImages + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(maxOfficialRating, forKey: "maxOfficialRating") + encoder.encode(hasThemeSong, forKey: "hasThemeSong") + encoder.encode(hasThemeVideo, forKey: "hasThemeVideo") + encoder.encode(hasSubtitles, forKey: "hasSubtitles") + encoder.encode(hasSpecialFeature, forKey: "hasSpecialFeature") + encoder.encode(hasTrailer, forKey: "hasTrailer") + encoder.encode(adjacentTo, forKey: "adjacentTo") + encoder.encode(parentIndexNumber, forKey: "parentIndexNumber") + encoder.encode(hasParentalRating, forKey: "hasParentalRating") + encoder.encode(isHd, forKey: "isHd") + encoder.encode(isIs4K, forKey: "is4K") + encoder.encode(locationTypes, forKey: "locationTypes") + encoder.encode(excludeLocationTypes, forKey: "excludeLocationTypes") + encoder.encode(isMissing, forKey: "isMissing") + encoder.encode(isUnaired, forKey: "isUnaired") + encoder.encode(minCommunityRating, forKey: "minCommunityRating") + encoder.encode(minCriticRating, forKey: "minCriticRating") + encoder.encode(minPremiereDate, forKey: "minPremiereDate") + encoder.encode(minDateLastSaved, forKey: "minDateLastSaved") + encoder.encode(minDateLastSavedForUser, forKey: "minDateLastSavedForUser") + encoder.encode(maxPremiereDate, forKey: "maxPremiereDate") + encoder.encode(hasOverview, forKey: "hasOverview") + encoder.encode(hasImdbID, forKey: "hasImdbId") + encoder.encode(hasTmdbID, forKey: "hasTmdbId") + encoder.encode(hasTvdbID, forKey: "hasTvdbId") + encoder.encode(isMovie, forKey: "isMovie") + encoder.encode(isSeries, forKey: "isSeries") + encoder.encode(isNews, forKey: "isNews") + encoder.encode(isKids, forKey: "isKids") + encoder.encode(isSports, forKey: "isSports") + encoder.encode(excludeItemIDs, forKey: "excludeItemIds") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(isRecursive, forKey: "recursive") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(filters, forKey: "filters") + encoder.encode(isFavorite, forKey: "isFavorite") + encoder.encode(mediaTypes, forKey: "mediaTypes") + encoder.encode(imageTypes, forKey: "imageTypes") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(isPlayed, forKey: "isPlayed") + encoder.encode(genres, forKey: "genres") + encoder.encode(officialRatings, forKey: "officialRatings") + encoder.encode(tags, forKey: "tags") + encoder.encode(years, forKey: "years") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(person, forKey: "person") + encoder.encode(personIDs, forKey: "personIds") + encoder.encode(personTypes, forKey: "personTypes") + encoder.encode(studios, forKey: "studios") + encoder.encode(artists, forKey: "artists") + encoder.encode(excludeArtistIDs, forKey: "excludeArtistIds") + encoder.encode(artistIDs, forKey: "artistIds") + encoder.encode(albumArtistIDs, forKey: "albumArtistIds") + encoder.encode(contributingArtistIDs, forKey: "contributingArtistIds") + encoder.encode(albums, forKey: "albums") + encoder.encode(albumIDs, forKey: "albumIds") + encoder.encode(ids, forKey: "ids") + encoder.encode(videoTypes, forKey: "videoTypes") + encoder.encode(minOfficialRating, forKey: "minOfficialRating") + encoder.encode(isLocked, forKey: "isLocked") + encoder.encode(isPlaceHolder, forKey: "isPlaceHolder") + encoder.encode(hasOfficialRating, forKey: "hasOfficialRating") + encoder.encode(isCollapseBoxSetItems, forKey: "collapseBoxSetItems") + encoder.encode(minWidth, forKey: "minWidth") + encoder.encode(minHeight, forKey: "minHeight") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(isIs3D, forKey: "is3D") + encoder.encode(seriesStatus, forKey: "seriesStatus") + encoder.encode(nameStartsWithOrGreater, forKey: "nameStartsWithOrGreater") + encoder.encode(nameStartsWith, forKey: "nameStartsWith") + encoder.encode(nameLessThan, forKey: "nameLessThan") + encoder.encode(studioIDs, forKey: "studioIds") + encoder.encode(genreIDs, forKey: "genreIds") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + encoder.encode(enableImages, forKey: "enableImages") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetItemsByUserIDAPI.swift b/Sources/Paths/GetItemsByUserIDAPI.swift new file mode 100644 index 000000000..69e947aa8 --- /dev/null +++ b/Sources/Paths/GetItemsByUserIDAPI.swift @@ -0,0 +1,369 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets items based on a query. + static func getItemsByUserID( + userID: String, + parameters: GetItemsByUserIDParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Users/\(userID)/Items", query: parameters?.asQuery, id: "GetItemsByUserId") + } + + struct GetItemsByUserIDParameters { + public var maxOfficialRating: String? + public var hasThemeSong: Bool? + public var hasThemeVideo: Bool? + public var hasSubtitles: Bool? + public var hasSpecialFeature: Bool? + public var hasTrailer: Bool? + public var adjacentTo: String? + public var parentIndexNumber: Int32? + public var hasParentalRating: Bool? + public var isHd: Bool? + public var isIs4K: Bool? + public var locationTypes: [JellyfinAPI.LocationType]? + public var excludeLocationTypes: [JellyfinAPI.LocationType]? + public var isMissing: Bool? + public var isUnaired: Bool? + public var minCommunityRating: Double? + public var minCriticRating: Double? + public var minPremiereDate: Date? + public var minDateLastSaved: Date? + public var minDateLastSavedForUser: Date? + public var maxPremiereDate: Date? + public var hasOverview: Bool? + public var hasImdbID: Bool? + public var hasTmdbID: Bool? + public var hasTvdbID: Bool? + public var isMovie: Bool? + public var isSeries: Bool? + public var isNews: Bool? + public var isKids: Bool? + public var isSports: Bool? + public var excludeItemIDs: [String]? + public var startIndex: Int32? + public var limit: Int32? + public var isRecursive: Bool? + public var searchTerm: String? + public var sortOrder: [JellyfinAPI.SortOrder]? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var filters: [JellyfinAPI.ItemFilter]? + public var isFavorite: Bool? + public var mediaTypes: [String]? + public var imageTypes: [JellyfinAPI.ImageType]? + public var sortBy: [String]? + public var isPlayed: Bool? + public var genres: [String]? + public var officialRatings: [String]? + public var tags: [String]? + public var years: [Int32]? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var person: String? + public var personIDs: [String]? + public var personTypes: [String]? + public var studios: [String]? + public var artists: [String]? + public var excludeArtistIDs: [String]? + public var artistIDs: [String]? + public var albumArtistIDs: [String]? + public var contributingArtistIDs: [String]? + public var albums: [String]? + public var albumIDs: [String]? + public var ids: [String]? + public var videoTypes: [JellyfinAPI.VideoType]? + public var minOfficialRating: String? + public var isLocked: Bool? + public var isPlaceHolder: Bool? + public var hasOfficialRating: Bool? + public var isCollapseBoxSetItems: Bool? + public var minWidth: Int32? + public var minHeight: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var isIs3D: Bool? + public var seriesStatus: [JellyfinAPI.SeriesStatus]? + public var nameStartsWithOrGreater: String? + public var nameStartsWith: String? + public var nameLessThan: String? + public var studioIDs: [String]? + public var genreIDs: [String]? + public var enableTotalRecordCount: Bool? + public var enableImages: Bool? + + public init( + maxOfficialRating: String? = nil, + hasThemeSong: Bool? = nil, + hasThemeVideo: Bool? = nil, + hasSubtitles: Bool? = nil, + hasSpecialFeature: Bool? = nil, + hasTrailer: Bool? = nil, + adjacentTo: String? = nil, + parentIndexNumber: Int32? = nil, + hasParentalRating: Bool? = nil, + isHd: Bool? = nil, + isIs4K: Bool? = nil, + locationTypes: [JellyfinAPI.LocationType]? = nil, + excludeLocationTypes: [JellyfinAPI.LocationType]? = nil, + isMissing: Bool? = nil, + isUnaired: Bool? = nil, + minCommunityRating: Double? = nil, + minCriticRating: Double? = nil, + minPremiereDate: Date? = nil, + minDateLastSaved: Date? = nil, + minDateLastSavedForUser: Date? = nil, + maxPremiereDate: Date? = nil, + hasOverview: Bool? = nil, + hasImdbID: Bool? = nil, + hasTmdbID: Bool? = nil, + hasTvdbID: Bool? = nil, + isMovie: Bool? = nil, + isSeries: Bool? = nil, + isNews: Bool? = nil, + isKids: Bool? = nil, + isSports: Bool? = nil, + excludeItemIDs: [String]? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + isRecursive: Bool? = nil, + searchTerm: String? = nil, + sortOrder: [JellyfinAPI.SortOrder]? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + filters: [JellyfinAPI.ItemFilter]? = nil, + isFavorite: Bool? = nil, + mediaTypes: [String]? = nil, + imageTypes: [JellyfinAPI.ImageType]? = nil, + sortBy: [String]? = nil, + isPlayed: Bool? = nil, + genres: [String]? = nil, + officialRatings: [String]? = nil, + tags: [String]? = nil, + years: [Int32]? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + person: String? = nil, + personIDs: [String]? = nil, + personTypes: [String]? = nil, + studios: [String]? = nil, + artists: [String]? = nil, + excludeArtistIDs: [String]? = nil, + artistIDs: [String]? = nil, + albumArtistIDs: [String]? = nil, + contributingArtistIDs: [String]? = nil, + albums: [String]? = nil, + albumIDs: [String]? = nil, + ids: [String]? = nil, + videoTypes: [JellyfinAPI.VideoType]? = nil, + minOfficialRating: String? = nil, + isLocked: Bool? = nil, + isPlaceHolder: Bool? = nil, + hasOfficialRating: Bool? = nil, + isCollapseBoxSetItems: Bool? = nil, + minWidth: Int32? = nil, + minHeight: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + isIs3D: Bool? = nil, + seriesStatus: [JellyfinAPI.SeriesStatus]? = nil, + nameStartsWithOrGreater: String? = nil, + nameStartsWith: String? = nil, + nameLessThan: String? = nil, + studioIDs: [String]? = nil, + genreIDs: [String]? = nil, + enableTotalRecordCount: Bool? = nil, + enableImages: Bool? = nil + ) { + self.maxOfficialRating = maxOfficialRating + self.hasThemeSong = hasThemeSong + self.hasThemeVideo = hasThemeVideo + self.hasSubtitles = hasSubtitles + self.hasSpecialFeature = hasSpecialFeature + self.hasTrailer = hasTrailer + self.adjacentTo = adjacentTo + self.parentIndexNumber = parentIndexNumber + self.hasParentalRating = hasParentalRating + self.isHd = isHd + self.isIs4K = isIs4K + self.locationTypes = locationTypes + self.excludeLocationTypes = excludeLocationTypes + self.isMissing = isMissing + self.isUnaired = isUnaired + self.minCommunityRating = minCommunityRating + self.minCriticRating = minCriticRating + self.minPremiereDate = minPremiereDate + self.minDateLastSaved = minDateLastSaved + self.minDateLastSavedForUser = minDateLastSavedForUser + self.maxPremiereDate = maxPremiereDate + self.hasOverview = hasOverview + self.hasImdbID = hasImdbID + self.hasTmdbID = hasTmdbID + self.hasTvdbID = hasTvdbID + self.isMovie = isMovie + self.isSeries = isSeries + self.isNews = isNews + self.isKids = isKids + self.isSports = isSports + self.excludeItemIDs = excludeItemIDs + self.startIndex = startIndex + self.limit = limit + self.isRecursive = isRecursive + self.searchTerm = searchTerm + self.sortOrder = sortOrder + self.parentID = parentID + self.fields = fields + self.excludeItemTypes = excludeItemTypes + self.includeItemTypes = includeItemTypes + self.filters = filters + self.isFavorite = isFavorite + self.mediaTypes = mediaTypes + self.imageTypes = imageTypes + self.sortBy = sortBy + self.isPlayed = isPlayed + self.genres = genres + self.officialRatings = officialRatings + self.tags = tags + self.years = years + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.person = person + self.personIDs = personIDs + self.personTypes = personTypes + self.studios = studios + self.artists = artists + self.excludeArtistIDs = excludeArtistIDs + self.artistIDs = artistIDs + self.albumArtistIDs = albumArtistIDs + self.contributingArtistIDs = contributingArtistIDs + self.albums = albums + self.albumIDs = albumIDs + self.ids = ids + self.videoTypes = videoTypes + self.minOfficialRating = minOfficialRating + self.isLocked = isLocked + self.isPlaceHolder = isPlaceHolder + self.hasOfficialRating = hasOfficialRating + self.isCollapseBoxSetItems = isCollapseBoxSetItems + self.minWidth = minWidth + self.minHeight = minHeight + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.isIs3D = isIs3D + self.seriesStatus = seriesStatus + self.nameStartsWithOrGreater = nameStartsWithOrGreater + self.nameStartsWith = nameStartsWith + self.nameLessThan = nameLessThan + self.studioIDs = studioIDs + self.genreIDs = genreIDs + self.enableTotalRecordCount = enableTotalRecordCount + self.enableImages = enableImages + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(maxOfficialRating, forKey: "maxOfficialRating") + encoder.encode(hasThemeSong, forKey: "hasThemeSong") + encoder.encode(hasThemeVideo, forKey: "hasThemeVideo") + encoder.encode(hasSubtitles, forKey: "hasSubtitles") + encoder.encode(hasSpecialFeature, forKey: "hasSpecialFeature") + encoder.encode(hasTrailer, forKey: "hasTrailer") + encoder.encode(adjacentTo, forKey: "adjacentTo") + encoder.encode(parentIndexNumber, forKey: "parentIndexNumber") + encoder.encode(hasParentalRating, forKey: "hasParentalRating") + encoder.encode(isHd, forKey: "isHd") + encoder.encode(isIs4K, forKey: "is4K") + encoder.encode(locationTypes, forKey: "locationTypes") + encoder.encode(excludeLocationTypes, forKey: "excludeLocationTypes") + encoder.encode(isMissing, forKey: "isMissing") + encoder.encode(isUnaired, forKey: "isUnaired") + encoder.encode(minCommunityRating, forKey: "minCommunityRating") + encoder.encode(minCriticRating, forKey: "minCriticRating") + encoder.encode(minPremiereDate, forKey: "minPremiereDate") + encoder.encode(minDateLastSaved, forKey: "minDateLastSaved") + encoder.encode(minDateLastSavedForUser, forKey: "minDateLastSavedForUser") + encoder.encode(maxPremiereDate, forKey: "maxPremiereDate") + encoder.encode(hasOverview, forKey: "hasOverview") + encoder.encode(hasImdbID, forKey: "hasImdbId") + encoder.encode(hasTmdbID, forKey: "hasTmdbId") + encoder.encode(hasTvdbID, forKey: "hasTvdbId") + encoder.encode(isMovie, forKey: "isMovie") + encoder.encode(isSeries, forKey: "isSeries") + encoder.encode(isNews, forKey: "isNews") + encoder.encode(isKids, forKey: "isKids") + encoder.encode(isSports, forKey: "isSports") + encoder.encode(excludeItemIDs, forKey: "excludeItemIds") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(isRecursive, forKey: "recursive") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(filters, forKey: "filters") + encoder.encode(isFavorite, forKey: "isFavorite") + encoder.encode(mediaTypes, forKey: "mediaTypes") + encoder.encode(imageTypes, forKey: "imageTypes") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(isPlayed, forKey: "isPlayed") + encoder.encode(genres, forKey: "genres") + encoder.encode(officialRatings, forKey: "officialRatings") + encoder.encode(tags, forKey: "tags") + encoder.encode(years, forKey: "years") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(person, forKey: "person") + encoder.encode(personIDs, forKey: "personIds") + encoder.encode(personTypes, forKey: "personTypes") + encoder.encode(studios, forKey: "studios") + encoder.encode(artists, forKey: "artists") + encoder.encode(excludeArtistIDs, forKey: "excludeArtistIds") + encoder.encode(artistIDs, forKey: "artistIds") + encoder.encode(albumArtistIDs, forKey: "albumArtistIds") + encoder.encode(contributingArtistIDs, forKey: "contributingArtistIds") + encoder.encode(albums, forKey: "albums") + encoder.encode(albumIDs, forKey: "albumIds") + encoder.encode(ids, forKey: "ids") + encoder.encode(videoTypes, forKey: "videoTypes") + encoder.encode(minOfficialRating, forKey: "minOfficialRating") + encoder.encode(isLocked, forKey: "isLocked") + encoder.encode(isPlaceHolder, forKey: "isPlaceHolder") + encoder.encode(hasOfficialRating, forKey: "hasOfficialRating") + encoder.encode(isCollapseBoxSetItems, forKey: "collapseBoxSetItems") + encoder.encode(minWidth, forKey: "minWidth") + encoder.encode(minHeight, forKey: "minHeight") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(isIs3D, forKey: "is3D") + encoder.encode(seriesStatus, forKey: "seriesStatus") + encoder.encode(nameStartsWithOrGreater, forKey: "nameStartsWithOrGreater") + encoder.encode(nameStartsWith, forKey: "nameStartsWith") + encoder.encode(nameLessThan, forKey: "nameLessThan") + encoder.encode(studioIDs, forKey: "studioIds") + encoder.encode(genreIDs, forKey: "genreIds") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + encoder.encode(enableImages, forKey: "enableImages") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetKeysAPI.swift b/Sources/Paths/GetKeysAPI.swift new file mode 100644 index 000000000..623640c4d --- /dev/null +++ b/Sources/Paths/GetKeysAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get all keys. + static var getKeys: Request { + Request(method: "GET", url: "/Auth/Keys", id: "GetKeys") + } +} diff --git a/Sources/Paths/GetLatestChannelItemsAPI.swift b/Sources/Paths/GetLatestChannelItemsAPI.swift new file mode 100644 index 000000000..37bd055cb --- /dev/null +++ b/Sources/Paths/GetLatestChannelItemsAPI.swift @@ -0,0 +1,54 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets latest channel items. + static func getLatestChannelItems(parameters: GetLatestChannelItemsParameters? = nil) -> Request { + Request(method: "GET", url: "/Channels/Items/Latest", query: parameters?.asQuery, id: "GetLatestChannelItems") + } + + struct GetLatestChannelItemsParameters { + public var userID: String? + public var startIndex: Int32? + public var limit: Int32? + public var filters: [JellyfinAPI.ItemFilter]? + public var fields: [JellyfinAPI.ItemFields]? + public var channelIDs: [String]? + + public init( + userID: String? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + filters: [JellyfinAPI.ItemFilter]? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + channelIDs: [String]? = nil + ) { + self.userID = userID + self.startIndex = startIndex + self.limit = limit + self.filters = filters + self.fields = fields + self.channelIDs = channelIDs + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(filters, forKey: "filters") + encoder.encode(fields, forKey: "fields") + encoder.encode(channelIDs, forKey: "channelIds") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetLatestMediaAPI.swift b/Sources/Paths/GetLatestMediaAPI.swift new file mode 100644 index 000000000..976961e5f --- /dev/null +++ b/Sources/Paths/GetLatestMediaAPI.swift @@ -0,0 +1,70 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets latest media. + static func getLatestMedia(userID: String, parameters: GetLatestMediaParameters? = nil) -> Request<[JellyfinAPI.BaseItemDto]> { + Request(method: "GET", url: "/Users/\(userID)/Items/Latest", query: parameters?.asQuery, id: "GetLatestMedia") + } + + struct GetLatestMediaParameters { + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var isPlayed: Bool? + public var enableImages: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var enableUserData: Bool? + public var limit: Int32? + public var isGroupItems: Bool? + + public init( + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + isPlayed: Bool? = nil, + enableImages: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + enableUserData: Bool? = nil, + limit: Int32? = nil, + isGroupItems: Bool? = nil + ) { + self.parentID = parentID + self.fields = fields + self.includeItemTypes = includeItemTypes + self.isPlayed = isPlayed + self.enableImages = enableImages + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.enableUserData = enableUserData + self.limit = limit + self.isGroupItems = isGroupItems + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(isPlayed, forKey: "isPlayed") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(limit, forKey: "limit") + encoder.encode(isGroupItems, forKey: "groupItems") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetLibraryOptionsInfoAPI.swift b/Sources/Paths/GetLibraryOptionsInfoAPI.swift new file mode 100644 index 000000000..f408ab764 --- /dev/null +++ b/Sources/Paths/GetLibraryOptionsInfoAPI.swift @@ -0,0 +1,33 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets the library options info. + public static func getLibraryOptionsInfo( + libraryContentType: String? = nil, + isNewLibrary: Bool? = nil + ) -> Request { + Request( + method: "GET", + url: "/Libraries/AvailableOptions", + query: makeGetLibraryOptionsInfoQuery(libraryContentType, isNewLibrary), + id: "GetLibraryOptionsInfo" + ) + } + + private static func makeGetLibraryOptionsInfoQuery(_ libraryContentType: String?, _ isNewLibrary: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(libraryContentType, forKey: "libraryContentType") + encoder.encode(isNewLibrary, forKey: "isNewLibrary") + return encoder.items + } +} diff --git a/Sources/Paths/GetLineupsAPI.swift b/Sources/Paths/GetLineupsAPI.swift new file mode 100644 index 000000000..be6f8536d --- /dev/null +++ b/Sources/Paths/GetLineupsAPI.swift @@ -0,0 +1,41 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available lineups. + static func getLineups(parameters: GetLineupsParameters? = nil) -> Request<[JellyfinAPI.NameIDPair]> { + Request(method: "GET", url: "/LiveTv/ListingProviders/Lineups", query: parameters?.asQuery, id: "GetLineups") + } + + struct GetLineupsParameters { + public var id: String? + public var type: String? + public var location: String? + public var country: String? + + public init(id: String? = nil, type: String? = nil, location: String? = nil, country: String? = nil) { + self.id = id + self.type = type + self.location = location + self.country = country + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(id, forKey: "id") + encoder.encode(type, forKey: "type") + encoder.encode(location, forKey: "location") + encoder.encode(country, forKey: "country") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetLiveHlsStreamAPI.swift b/Sources/Paths/GetLiveHlsStreamAPI.swift new file mode 100644 index 000000000..53e41a989 --- /dev/null +++ b/Sources/Paths/GetLiveHlsStreamAPI.swift @@ -0,0 +1,240 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a hls live stream. + static func getLiveHlsStream(itemID: String, parameters: GetLiveHlsStreamParameters? = nil) -> Request { + Request(method: "GET", url: "/Videos/\(itemID)/live.m3u8", query: parameters?.asQuery, id: "GetLiveHlsStream") + } + + struct GetLiveHlsStreamParameters { + public var container: String? + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var enableSubtitlesInManifest: Bool? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + container: String? = nil, + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + enableSubtitlesInManifest: Bool? = nil + ) { + self.container = container + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.enableSubtitlesInManifest = enableSubtitlesInManifest + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(container, forKey: "container") + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(enableSubtitlesInManifest, forKey: "enableSubtitlesInManifest") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetLiveRecordingFileAPI.swift b/Sources/Paths/GetLiveRecordingFileAPI.swift new file mode 100644 index 000000000..7f6f35707 --- /dev/null +++ b/Sources/Paths/GetLiveRecordingFileAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a live tv recording stream. + static func getLiveRecordingFile(recordingID: String) -> Request { + Request(method: "GET", url: "/LiveTv/LiveRecordings/\(recordingID)/stream", id: "GetLiveRecordingFile") + } +} diff --git a/Sources/Paths/GetLiveStreamFileAPI.swift b/Sources/Paths/GetLiveStreamFileAPI.swift new file mode 100644 index 000000000..16e59a6ac --- /dev/null +++ b/Sources/Paths/GetLiveStreamFileAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a live tv channel stream. + static func getLiveStreamFile(streamID: String, container: String) -> Request { + Request(method: "GET", url: "/LiveTv/LiveStreamFiles/\(streamID)/stream.\(container)", id: "GetLiveStreamFile") + } +} diff --git a/Sources/Paths/GetLiveTvChannelsAPI.swift b/Sources/Paths/GetLiveTvChannelsAPI.swift new file mode 100644 index 000000000..9884bb164 --- /dev/null +++ b/Sources/Paths/GetLiveTvChannelsAPI.swift @@ -0,0 +1,118 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available live tv channels. + static func getLiveTvChannels(parameters: GetLiveTvChannelsParameters? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Channels", query: parameters?.asQuery, id: "GetLiveTvChannels") + } + + struct GetLiveTvChannelsParameters { + public var type: `Type`? + public var userID: String? + public var startIndex: Int32? + public var isMovie: Bool? + public var isSeries: Bool? + public var isNews: Bool? + public var isKids: Bool? + public var isSports: Bool? + public var limit: Int32? + public var isFavorite: Bool? + public var isLiked: Bool? + public var isDisliked: Bool? + public var enableImages: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var fields: [JellyfinAPI.ItemFields]? + public var enableUserData: Bool? + public var sortBy: [String]? + public var sortOrder: SortOrder? + public var enableFavoriteSorting: Bool? + public var isAddCurrentProgram: Bool? + + public typealias `Type` = JellyfinAPI.ChannelType + + public typealias SortOrder = JellyfinAPI.SortOrder + + public init( + type: Type? = nil, + userID: String? = nil, + startIndex: Int32? = nil, + isMovie: Bool? = nil, + isSeries: Bool? = nil, + isNews: Bool? = nil, + isKids: Bool? = nil, + isSports: Bool? = nil, + limit: Int32? = nil, + isFavorite: Bool? = nil, + isLiked: Bool? = nil, + isDisliked: Bool? = nil, + enableImages: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableUserData: Bool? = nil, + sortBy: [String]? = nil, + sortOrder: SortOrder? = nil, + enableFavoriteSorting: Bool? = nil, + isAddCurrentProgram: Bool? = nil + ) { + self.type = type + self.userID = userID + self.startIndex = startIndex + self.isMovie = isMovie + self.isSeries = isSeries + self.isNews = isNews + self.isKids = isKids + self.isSports = isSports + self.limit = limit + self.isFavorite = isFavorite + self.isLiked = isLiked + self.isDisliked = isDisliked + self.enableImages = enableImages + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.fields = fields + self.enableUserData = enableUserData + self.sortBy = sortBy + self.sortOrder = sortOrder + self.enableFavoriteSorting = enableFavoriteSorting + self.isAddCurrentProgram = isAddCurrentProgram + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(type, forKey: "type") + encoder.encode(userID, forKey: "userId") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(isMovie, forKey: "isMovie") + encoder.encode(isSeries, forKey: "isSeries") + encoder.encode(isNews, forKey: "isNews") + encoder.encode(isKids, forKey: "isKids") + encoder.encode(isSports, forKey: "isSports") + encoder.encode(limit, forKey: "limit") + encoder.encode(isFavorite, forKey: "isFavorite") + encoder.encode(isLiked, forKey: "isLiked") + encoder.encode(isDisliked, forKey: "isDisliked") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(enableFavoriteSorting, forKey: "enableFavoriteSorting") + encoder.encode(isAddCurrentProgram, forKey: "addCurrentProgram") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetLiveTvInfoAPI.swift b/Sources/Paths/GetLiveTvInfoAPI.swift new file mode 100644 index 000000000..cc340ec9f --- /dev/null +++ b/Sources/Paths/GetLiveTvInfoAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available live tv services. + static var getLiveTvInfo: Request { + Request(method: "GET", url: "/LiveTv/Info", id: "GetLiveTvInfo") + } +} diff --git a/Sources/Paths/GetLiveTvProgramsAPI.swift b/Sources/Paths/GetLiveTvProgramsAPI.swift new file mode 100644 index 000000000..070e15649 --- /dev/null +++ b/Sources/Paths/GetLiveTvProgramsAPI.swift @@ -0,0 +1,138 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available live tv epgs. + static func getLiveTvPrograms(parameters: GetLiveTvProgramsParameters? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Programs", query: parameters?.asQuery, id: "GetLiveTvPrograms") + } + + struct GetLiveTvProgramsParameters { + public var channelIDs: [String]? + public var userID: String? + public var minStartDate: Date? + public var hasAired: Bool? + public var isAiring: Bool? + public var maxStartDate: Date? + public var minEndDate: Date? + public var maxEndDate: Date? + public var isMovie: Bool? + public var isSeries: Bool? + public var isNews: Bool? + public var isKids: Bool? + public var isSports: Bool? + public var startIndex: Int32? + public var limit: Int32? + public var sortBy: [String]? + public var sortOrder: [JellyfinAPI.SortOrder]? + public var genres: [String]? + public var genreIDs: [String]? + public var enableImages: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var enableUserData: Bool? + public var seriesTimerID: String? + public var librarySeriesID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var enableTotalRecordCount: Bool? + + public init( + channelIDs: [String]? = nil, + userID: String? = nil, + minStartDate: Date? = nil, + hasAired: Bool? = nil, + isAiring: Bool? = nil, + maxStartDate: Date? = nil, + minEndDate: Date? = nil, + maxEndDate: Date? = nil, + isMovie: Bool? = nil, + isSeries: Bool? = nil, + isNews: Bool? = nil, + isKids: Bool? = nil, + isSports: Bool? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + sortBy: [String]? = nil, + sortOrder: [JellyfinAPI.SortOrder]? = nil, + genres: [String]? = nil, + genreIDs: [String]? = nil, + enableImages: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + enableUserData: Bool? = nil, + seriesTimerID: String? = nil, + librarySeriesID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableTotalRecordCount: Bool? = nil + ) { + self.channelIDs = channelIDs + self.userID = userID + self.minStartDate = minStartDate + self.hasAired = hasAired + self.isAiring = isAiring + self.maxStartDate = maxStartDate + self.minEndDate = minEndDate + self.maxEndDate = maxEndDate + self.isMovie = isMovie + self.isSeries = isSeries + self.isNews = isNews + self.isKids = isKids + self.isSports = isSports + self.startIndex = startIndex + self.limit = limit + self.sortBy = sortBy + self.sortOrder = sortOrder + self.genres = genres + self.genreIDs = genreIDs + self.enableImages = enableImages + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.enableUserData = enableUserData + self.seriesTimerID = seriesTimerID + self.librarySeriesID = librarySeriesID + self.fields = fields + self.enableTotalRecordCount = enableTotalRecordCount + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(channelIDs, forKey: "channelIds") + encoder.encode(userID, forKey: "userId") + encoder.encode(minStartDate, forKey: "minStartDate") + encoder.encode(hasAired, forKey: "hasAired") + encoder.encode(isAiring, forKey: "isAiring") + encoder.encode(maxStartDate, forKey: "maxStartDate") + encoder.encode(minEndDate, forKey: "minEndDate") + encoder.encode(maxEndDate, forKey: "maxEndDate") + encoder.encode(isMovie, forKey: "isMovie") + encoder.encode(isSeries, forKey: "isSeries") + encoder.encode(isNews, forKey: "isNews") + encoder.encode(isKids, forKey: "isKids") + encoder.encode(isSports, forKey: "isSports") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(genres, forKey: "genres") + encoder.encode(genreIDs, forKey: "genreIds") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(seriesTimerID, forKey: "seriesTimerId") + encoder.encode(librarySeriesID, forKey: "librarySeriesId") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetLocalTrailersAPI.swift b/Sources/Paths/GetLocalTrailersAPI.swift new file mode 100644 index 000000000..8719f390d --- /dev/null +++ b/Sources/Paths/GetLocalTrailersAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets local trailers for an item. + static func getLocalTrailers(userID: String, itemID: String) -> Request<[JellyfinAPI.BaseItemDto]> { + Request(method: "GET", url: "/Users/\(userID)/Items/\(itemID)/LocalTrailers", id: "GetLocalTrailers") + } +} diff --git a/Sources/Paths/GetLocalizationOptionsAPI.swift b/Sources/Paths/GetLocalizationOptionsAPI.swift new file mode 100644 index 000000000..5f383956d --- /dev/null +++ b/Sources/Paths/GetLocalizationOptionsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets localization options. + static var getLocalizationOptions: Request<[JellyfinAPI.LocalizationOption]> { + Request(method: "GET", url: "/Localization/Options", id: "GetLocalizationOptions") + } +} diff --git a/Sources/Paths/GetLogEntriesAPI.swift b/Sources/Paths/GetLogEntriesAPI.swift new file mode 100644 index 000000000..60fdf2f14 --- /dev/null +++ b/Sources/Paths/GetLogEntriesAPI.swift @@ -0,0 +1,41 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets activity log entries. + static func getLogEntries(parameters: GetLogEntriesParameters? = nil) -> Request { + Request(method: "GET", url: "/System/ActivityLog/Entries", query: parameters?.asQuery, id: "GetLogEntries") + } + + struct GetLogEntriesParameters { + public var startIndex: Int32? + public var limit: Int32? + public var minDate: Date? + public var hasUserID: Bool? + + public init(startIndex: Int32? = nil, limit: Int32? = nil, minDate: Date? = nil, hasUserID: Bool? = nil) { + self.startIndex = startIndex + self.limit = limit + self.minDate = minDate + self.hasUserID = hasUserID + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(minDate, forKey: "minDate") + encoder.encode(hasUserID, forKey: "hasUserId") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetLogFileAPI.swift b/Sources/Paths/GetLogFileAPI.swift new file mode 100644 index 000000000..621d6ad52 --- /dev/null +++ b/Sources/Paths/GetLogFileAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a log file. + static func getLogFile(name: String) -> Request { + Request(method: "GET", url: "/System/Logs/Log", query: [("name", name)], id: "GetLogFile") + } +} diff --git a/Sources/Paths/GetMasterHlsAudioPlaylistAPI.swift b/Sources/Paths/GetMasterHlsAudioPlaylistAPI.swift new file mode 100644 index 000000000..c90dac6eb --- /dev/null +++ b/Sources/Paths/GetMasterHlsAudioPlaylistAPI.swift @@ -0,0 +1,232 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets an audio hls playlist stream. + static func getMasterHlsAudioPlaylist(itemID: String, parameters: GetMasterHlsAudioPlaylistParameters) -> Request { + Request(method: "GET", url: "/Audio/\(itemID)/master.m3u8", query: parameters.asQuery, id: "GetMasterHlsAudioPlaylist") + } + + struct GetMasterHlsAudioPlaylistParameters { + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var maxStreamingBitrate: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + public var enableAdaptiveBitrateStreaming: Bool? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + maxStreamingBitrate: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil, + enableAdaptiveBitrateStreaming: Bool? = nil + ) { + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.maxStreamingBitrate = maxStreamingBitrate + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + self.enableAdaptiveBitrateStreaming = enableAdaptiveBitrateStreaming + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(maxStreamingBitrate, forKey: "maxStreamingBitrate") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + encoder.encode(enableAdaptiveBitrateStreaming, forKey: "enableAdaptiveBitrateStreaming") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetMasterHlsVideoPlaylistAPI.swift b/Sources/Paths/GetMasterHlsVideoPlaylistAPI.swift new file mode 100644 index 000000000..ea0c56a9f --- /dev/null +++ b/Sources/Paths/GetMasterHlsVideoPlaylistAPI.swift @@ -0,0 +1,236 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a video hls playlist stream. + static func getMasterHlsVideoPlaylist(itemID: String, parameters: GetMasterHlsVideoPlaylistParameters) -> Request { + Request(method: "GET", url: "/Videos/\(itemID)/master.m3u8", query: parameters.asQuery, id: "GetMasterHlsVideoPlaylist") + } + + struct GetMasterHlsVideoPlaylistParameters { + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + public var enableAdaptiveBitrateStreaming: Bool? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil, + enableAdaptiveBitrateStreaming: Bool? = nil + ) { + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + self.enableAdaptiveBitrateStreaming = enableAdaptiveBitrateStreaming + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + encoder.encode(enableAdaptiveBitrateStreaming, forKey: "enableAdaptiveBitrateStreaming") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetMediaFoldersAPI.swift b/Sources/Paths/GetMediaFoldersAPI.swift new file mode 100644 index 000000000..774deea55 --- /dev/null +++ b/Sources/Paths/GetMediaFoldersAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets all user media folders. + public static func getMediaFolders(isHidden: Bool? = nil) -> Request { + Request(method: "GET", url: "/Library/MediaFolders", query: makeGetMediaFoldersQuery(isHidden), id: "GetMediaFolders") + } + + private static func makeGetMediaFoldersQuery(_ isHidden: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isHidden, forKey: "isHidden") + return encoder.items + } +} diff --git a/Sources/Paths/GetMediaInfoImageAPI.swift b/Sources/Paths/GetMediaInfoImageAPI.swift new file mode 100644 index 000000000..54f83a93c --- /dev/null +++ b/Sources/Paths/GetMediaInfoImageAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get media info image. + static func getMediaInfoImage(theme: String, name: String) -> Request { + Request(method: "GET", url: "/Images/MediaInfo/\(theme)/\(name)", id: "GetMediaInfoImage") + } +} diff --git a/Sources/Paths/GetMediaInfoImagesAPI.swift b/Sources/Paths/GetMediaInfoImagesAPI.swift new file mode 100644 index 000000000..e2bbf92ca --- /dev/null +++ b/Sources/Paths/GetMediaInfoImagesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get all media info images. + static var getMediaInfoImages: Request<[JellyfinAPI.ImageByNameInfo]> { + Request(method: "GET", url: "/Images/MediaInfo", id: "GetMediaInfoImages") + } +} diff --git a/Sources/Paths/GetMediaReceiverRegistrar2API.swift b/Sources/Paths/GetMediaReceiverRegistrar2API.swift new file mode 100644 index 000000000..149f2de1b --- /dev/null +++ b/Sources/Paths/GetMediaReceiverRegistrar2API.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets Dlna media receiver registrar xml. + static func getMediaReceiverRegistrar2(serverID: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/MediaReceiverRegistrar/MediaReceiverRegistrar", id: "GetMediaReceiverRegistrar_2") + } +} diff --git a/Sources/Paths/GetMediaReceiverRegistrar3API.swift b/Sources/Paths/GetMediaReceiverRegistrar3API.swift new file mode 100644 index 000000000..1726eb339 --- /dev/null +++ b/Sources/Paths/GetMediaReceiverRegistrar3API.swift @@ -0,0 +1,22 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets Dlna media receiver registrar xml. + static func getMediaReceiverRegistrar3(serverID: String) -> Request { + Request( + method: "GET", + url: "/Dlna/\(serverID)/MediaReceiverRegistrar/MediaReceiverRegistrar.xml", + id: "GetMediaReceiverRegistrar_3" + ) + } +} diff --git a/Sources/Paths/GetMediaReceiverRegistrarAPI.swift b/Sources/Paths/GetMediaReceiverRegistrarAPI.swift new file mode 100644 index 000000000..d3ae68f03 --- /dev/null +++ b/Sources/Paths/GetMediaReceiverRegistrarAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets Dlna media receiver registrar xml. + static func getMediaReceiverRegistrar(serverID: String) -> Request { + Request(method: "GET", url: "/Dlna/\(serverID)/MediaReceiverRegistrar", id: "GetMediaReceiverRegistrar") + } +} diff --git a/Sources/Paths/GetMetadataEditorInfoAPI.swift b/Sources/Paths/GetMetadataEditorInfoAPI.swift new file mode 100644 index 000000000..1417129ae --- /dev/null +++ b/Sources/Paths/GetMetadataEditorInfoAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets metadata editor info for an item. + static func getMetadataEditorInfo(itemID: String) -> Request { + Request(method: "GET", url: "/Items/\(itemID)/MetadataEditor", id: "GetMetadataEditorInfo") + } +} diff --git a/Sources/Paths/GetMovieRecommendationsAPI.swift b/Sources/Paths/GetMovieRecommendationsAPI.swift new file mode 100644 index 000000000..eb1d49368 --- /dev/null +++ b/Sources/Paths/GetMovieRecommendationsAPI.swift @@ -0,0 +1,50 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets movie recommendations. + static func getMovieRecommendations(parameters: GetMovieRecommendationsParameters? = nil) -> Request<[JellyfinAPI.RecommendationDto]> { + Request(method: "GET", url: "/Movies/Recommendations", query: parameters?.asQuery, id: "GetMovieRecommendations") + } + + struct GetMovieRecommendationsParameters { + public var userID: String? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var categoryLimit: Int32? + public var itemLimit: Int32? + + public init( + userID: String? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + categoryLimit: Int32? = nil, + itemLimit: Int32? = nil + ) { + self.userID = userID + self.parentID = parentID + self.fields = fields + self.categoryLimit = categoryLimit + self.itemLimit = itemLimit + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(categoryLimit, forKey: "categoryLimit") + encoder.encode(itemLimit, forKey: "itemLimit") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetMovieRemoteSearchResultsAPI.swift b/Sources/Paths/GetMovieRemoteSearchResultsAPI.swift new file mode 100644 index 000000000..a6059a898 --- /dev/null +++ b/Sources/Paths/GetMovieRemoteSearchResultsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get movie remote search. + static func getMovieRemoteSearchResults(_ body: JellyfinAPI.MovieInfoRemoteSearchQuery) -> Request<[JellyfinAPI.RemoteSearchResult]> { + Request(method: "POST", url: "/Items/RemoteSearch/Movie", body: body, id: "GetMovieRemoteSearchResults") + } +} diff --git a/Sources/Paths/GetMusicAlbumRemoteSearchResultsAPI.swift b/Sources/Paths/GetMusicAlbumRemoteSearchResultsAPI.swift new file mode 100644 index 000000000..1b94fef24 --- /dev/null +++ b/Sources/Paths/GetMusicAlbumRemoteSearchResultsAPI.swift @@ -0,0 +1,21 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get music album remote search. + static func getMusicAlbumRemoteSearchResults( + _ body: JellyfinAPI + .AlbumInfoRemoteSearchQuery + ) -> Request<[JellyfinAPI.RemoteSearchResult]> { + Request(method: "POST", url: "/Items/RemoteSearch/MusicAlbum", body: body, id: "GetMusicAlbumRemoteSearchResults") + } +} diff --git a/Sources/Paths/GetMusicArtistRemoteSearchResultsAPI.swift b/Sources/Paths/GetMusicArtistRemoteSearchResultsAPI.swift new file mode 100644 index 000000000..c1f3b4eea --- /dev/null +++ b/Sources/Paths/GetMusicArtistRemoteSearchResultsAPI.swift @@ -0,0 +1,21 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get music artist remote search. + static func getMusicArtistRemoteSearchResults( + _ body: JellyfinAPI + .ArtistInfoRemoteSearchQuery + ) -> Request<[JellyfinAPI.RemoteSearchResult]> { + Request(method: "POST", url: "/Items/RemoteSearch/MusicArtist", body: body, id: "GetMusicArtistRemoteSearchResults") + } +} diff --git a/Sources/Paths/GetMusicGenreAPI.swift b/Sources/Paths/GetMusicGenreAPI.swift new file mode 100644 index 000000000..19da75b4d --- /dev/null +++ b/Sources/Paths/GetMusicGenreAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets a music genre, by name. + public static func getMusicGenre(genreName: String, userID: String? = nil) -> Request { + Request(method: "GET", url: "/MusicGenres/\(genreName)", query: makeGetMusicGenreQuery(userID), id: "GetMusicGenre") + } + + private static func makeGetMusicGenreQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetMusicGenreImageAPI.swift b/Sources/Paths/GetMusicGenreImageAPI.swift new file mode 100644 index 000000000..af8167052 --- /dev/null +++ b/Sources/Paths/GetMusicGenreImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get music genre image by name. + static func getMusicGenreImage(name: String, imageType: String, parameters: GetMusicGenreImageParameters? = nil) -> Request { + Request(method: "GET", url: "/MusicGenres/\(name)/Images/\(imageType)", query: parameters?.asQuery, id: "GetMusicGenreImage") + } + + struct GetMusicGenreImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetMusicGenreImageByIndexAPI.swift b/Sources/Paths/GetMusicGenreImageByIndexAPI.swift new file mode 100644 index 000000000..712adabfe --- /dev/null +++ b/Sources/Paths/GetMusicGenreImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get music genre image by name. + static func getMusicGenreImageByIndex( + name: String, + imageType: String, + imageIndex: Int, + parameters: GetMusicGenreImageByIndexParameters? = nil + ) -> Request { + Request( + method: "GET", + url: "/MusicGenres/\(name)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "GetMusicGenreImageByIndex" + ) + } + + struct GetMusicGenreImageByIndexParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetMusicGenresAPI.swift b/Sources/Paths/GetMusicGenresAPI.swift new file mode 100644 index 000000000..3e6b3ace8 --- /dev/null +++ b/Sources/Paths/GetMusicGenresAPI.swift @@ -0,0 +1,103 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets all music genres from a given item, folder, or the entire library. + @available(*, deprecated, message: "Deprecated") + static func getMusicGenres(parameters: GetMusicGenresParameters? = nil) -> Request { + Request(method: "GET", url: "/MusicGenres", query: parameters?.asQuery, id: "GetMusicGenres") + } + + struct GetMusicGenresParameters { + public var startIndex: Int32? + public var limit: Int32? + public var searchTerm: String? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var isFavorite: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var userID: String? + public var nameStartsWithOrGreater: String? + public var nameStartsWith: String? + public var nameLessThan: String? + public var sortBy: [String]? + public var sortOrder: [JellyfinAPI.SortOrder]? + public var enableImages: Bool? + public var enableTotalRecordCount: Bool? + + public init( + startIndex: Int32? = nil, + limit: Int32? = nil, + searchTerm: String? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + isFavorite: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + userID: String? = nil, + nameStartsWithOrGreater: String? = nil, + nameStartsWith: String? = nil, + nameLessThan: String? = nil, + sortBy: [String]? = nil, + sortOrder: [JellyfinAPI.SortOrder]? = nil, + enableImages: Bool? = nil, + enableTotalRecordCount: Bool? = nil + ) { + self.startIndex = startIndex + self.limit = limit + self.searchTerm = searchTerm + self.parentID = parentID + self.fields = fields + self.excludeItemTypes = excludeItemTypes + self.includeItemTypes = includeItemTypes + self.isFavorite = isFavorite + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.userID = userID + self.nameStartsWithOrGreater = nameStartsWithOrGreater + self.nameStartsWith = nameStartsWith + self.nameLessThan = nameLessThan + self.sortBy = sortBy + self.sortOrder = sortOrder + self.enableImages = enableImages + self.enableTotalRecordCount = enableTotalRecordCount + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(isFavorite, forKey: "isFavorite") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(userID, forKey: "userId") + encoder.encode(nameStartsWithOrGreater, forKey: "nameStartsWithOrGreater") + encoder.encode(nameStartsWith, forKey: "nameStartsWith") + encoder.encode(nameLessThan, forKey: "nameLessThan") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetMusicVideoRemoteSearchResultsAPI.swift b/Sources/Paths/GetMusicVideoRemoteSearchResultsAPI.swift new file mode 100644 index 000000000..b0878fdd3 --- /dev/null +++ b/Sources/Paths/GetMusicVideoRemoteSearchResultsAPI.swift @@ -0,0 +1,21 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get music video remote search. + static func getMusicVideoRemoteSearchResults( + _ body: JellyfinAPI + .MusicVideoInfoRemoteSearchQuery + ) -> Request<[JellyfinAPI.RemoteSearchResult]> { + Request(method: "POST", url: "/Items/RemoteSearch/MusicVideo", body: body, id: "GetMusicVideoRemoteSearchResults") + } +} diff --git a/Sources/Paths/GetNamedConfigurationAPI.swift b/Sources/Paths/GetNamedConfigurationAPI.swift new file mode 100644 index 000000000..a9ca40305 --- /dev/null +++ b/Sources/Paths/GetNamedConfigurationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a named configuration. + static func getNamedConfiguration(key: String) -> Request { + Request(method: "GET", url: "/System/Configuration/\(key)", id: "GetNamedConfiguration") + } +} diff --git a/Sources/Paths/GetNetworkSharesAPI.swift b/Sources/Paths/GetNetworkSharesAPI.swift new file mode 100644 index 000000000..6f520b3cb --- /dev/null +++ b/Sources/Paths/GetNetworkSharesAPI.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets network paths. + @available(*, deprecated, message: "Deprecated") + static var getNetworkShares: Request<[JellyfinAPI.FileSystemEntryInfo]> { + Request(method: "GET", url: "/Environment/NetworkShares", id: "GetNetworkShares") + } +} diff --git a/Sources/Paths/GetNextUpAPI.swift b/Sources/Paths/GetNextUpAPI.swift new file mode 100644 index 000000000..92d6f0f1d --- /dev/null +++ b/Sources/Paths/GetNextUpAPI.swift @@ -0,0 +1,86 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a list of next up episodes. + static func getNextUp(parameters: GetNextUpParameters? = nil) -> Request { + Request(method: "GET", url: "/Shows/NextUp", query: parameters?.asQuery, id: "GetNextUp") + } + + struct GetNextUpParameters { + public var userID: String? + public var startIndex: Int32? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var seriesID: String? + public var parentID: String? + public var enableImages: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var enableUserData: Bool? + public var nextUpDateCutoff: Date? + public var enableTotalRecordCount: Bool? + public var isDisableFirstEpisode: Bool? + public var enableRewatching: Bool? + + public init( + userID: String? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + seriesID: String? = nil, + parentID: String? = nil, + enableImages: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + enableUserData: Bool? = nil, + nextUpDateCutoff: Date? = nil, + enableTotalRecordCount: Bool? = nil, + isDisableFirstEpisode: Bool? = nil, + enableRewatching: Bool? = nil + ) { + self.userID = userID + self.startIndex = startIndex + self.limit = limit + self.fields = fields + self.seriesID = seriesID + self.parentID = parentID + self.enableImages = enableImages + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.enableUserData = enableUserData + self.nextUpDateCutoff = nextUpDateCutoff + self.enableTotalRecordCount = enableTotalRecordCount + self.isDisableFirstEpisode = isDisableFirstEpisode + self.enableRewatching = enableRewatching + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(seriesID, forKey: "seriesId") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(nextUpDateCutoff, forKey: "nextUpDateCutoff") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + encoder.encode(isDisableFirstEpisode, forKey: "disableFirstEpisode") + encoder.encode(enableRewatching, forKey: "enableRewatching") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetNotificationServicesAPI.swift b/Sources/Paths/GetNotificationServicesAPI.swift new file mode 100644 index 000000000..ad4af6ccc --- /dev/null +++ b/Sources/Paths/GetNotificationServicesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets notification services. + static var getNotificationServices: Request<[JellyfinAPI.NameIDPair]> { + Request(method: "GET", url: "/Notifications/Services", id: "GetNotificationServices") + } +} diff --git a/Sources/Paths/GetNotificationTypesAPI.swift b/Sources/Paths/GetNotificationTypesAPI.swift new file mode 100644 index 000000000..e0c36c843 --- /dev/null +++ b/Sources/Paths/GetNotificationTypesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets notification types. + static var getNotificationTypes: Request<[JellyfinAPI.NotificationTypeInfo]> { + Request(method: "GET", url: "/Notifications/Types", id: "GetNotificationTypes") + } +} diff --git a/Sources/Paths/GetNotificationsAPI.swift b/Sources/Paths/GetNotificationsAPI.swift new file mode 100644 index 000000000..491a9457d --- /dev/null +++ b/Sources/Paths/GetNotificationsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a user's notifications. + static func getNotifications(userID: String) -> Request { + Request(method: "GET", url: "/Notifications/\(userID)", id: "GetNotifications") + } +} diff --git a/Sources/Paths/GetNotificationsSummaryAPI.swift b/Sources/Paths/GetNotificationsSummaryAPI.swift new file mode 100644 index 000000000..93059a5d3 --- /dev/null +++ b/Sources/Paths/GetNotificationsSummaryAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a user's notification summary. + static func getNotificationsSummary(userID: String) -> Request { + Request(method: "GET", url: "/Notifications/\(userID)/Summary", id: "GetNotificationsSummary") + } +} diff --git a/Sources/Paths/GetPackageInfoAPI.swift b/Sources/Paths/GetPackageInfoAPI.swift new file mode 100644 index 000000000..a682c2c01 --- /dev/null +++ b/Sources/Paths/GetPackageInfoAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets a package by name or assembly GUID. + public static func getPackageInfo(name: String, assemblyGuid: String? = nil) -> Request { + Request(method: "GET", url: "/Packages/\(name)", query: makeGetPackageInfoQuery(assemblyGuid), id: "GetPackageInfo") + } + + private static func makeGetPackageInfoQuery(_ assemblyGuid: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(assemblyGuid, forKey: "assemblyGuid") + return encoder.items + } +} diff --git a/Sources/Paths/GetPackagesAPI.swift b/Sources/Paths/GetPackagesAPI.swift new file mode 100644 index 000000000..8adb540ec --- /dev/null +++ b/Sources/Paths/GetPackagesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available packages. + static var getPackages: Request<[JellyfinAPI.PackageInfo]> { + Request(method: "GET", url: "/Packages", id: "GetPackages") + } +} diff --git a/Sources/Paths/GetParentPathAPI.swift b/Sources/Paths/GetParentPathAPI.swift new file mode 100644 index 000000000..c310caeda --- /dev/null +++ b/Sources/Paths/GetParentPathAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the parent path of a given path. + static func getParentPath(path: String) -> Request { + Request(method: "GET", url: "/Environment/ParentPath", query: [("path", path)], id: "GetParentPath") + } +} diff --git a/Sources/Paths/GetParentalRatingsAPI.swift b/Sources/Paths/GetParentalRatingsAPI.swift new file mode 100644 index 000000000..4dc2063d8 --- /dev/null +++ b/Sources/Paths/GetParentalRatingsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets known parental ratings. + static var getParentalRatings: Request<[JellyfinAPI.ParentalRating]> { + Request(method: "GET", url: "/Localization/ParentalRatings", id: "GetParentalRatings") + } +} diff --git a/Sources/Paths/GetPasswordResetProvidersAPI.swift b/Sources/Paths/GetPasswordResetProvidersAPI.swift new file mode 100644 index 000000000..2416b7ed2 --- /dev/null +++ b/Sources/Paths/GetPasswordResetProvidersAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get all password reset providers. + static var getPasswordResetProviders: Request<[JellyfinAPI.NameIDPair]> { + Request(method: "GET", url: "/Auth/PasswordResetProviders", id: "GetPasswordResetProviders") + } +} diff --git a/Sources/Paths/GetPersonAPI.swift b/Sources/Paths/GetPersonAPI.swift new file mode 100644 index 000000000..f48823296 --- /dev/null +++ b/Sources/Paths/GetPersonAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Get person by name. + public static func getPerson(name: String, userID: String? = nil) -> Request { + Request(method: "GET", url: "/Persons/\(name)", query: makeGetPersonQuery(userID), id: "GetPerson") + } + + private static func makeGetPersonQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetPersonImageAPI.swift b/Sources/Paths/GetPersonImageAPI.swift new file mode 100644 index 000000000..f4007735e --- /dev/null +++ b/Sources/Paths/GetPersonImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get person image by name. + static func getPersonImage(name: String, imageType: String, parameters: GetPersonImageParameters? = nil) -> Request { + Request(method: "GET", url: "/Persons/\(name)/Images/\(imageType)", query: parameters?.asQuery, id: "GetPersonImage") + } + + struct GetPersonImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetPersonImageByIndexAPI.swift b/Sources/Paths/GetPersonImageByIndexAPI.swift new file mode 100644 index 000000000..967d8fe46 --- /dev/null +++ b/Sources/Paths/GetPersonImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get person image by name. + static func getPersonImageByIndex( + name: String, + imageType: String, + imageIndex: Int, + parameters: GetPersonImageByIndexParameters? = nil + ) -> Request { + Request( + method: "GET", + url: "/Persons/\(name)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "GetPersonImageByIndex" + ) + } + + struct GetPersonImageByIndexParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetPersonRemoteSearchResultsAPI.swift b/Sources/Paths/GetPersonRemoteSearchResultsAPI.swift new file mode 100644 index 000000000..aed11f08b --- /dev/null +++ b/Sources/Paths/GetPersonRemoteSearchResultsAPI.swift @@ -0,0 +1,21 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get person remote search. + static func getPersonRemoteSearchResults( + _ body: JellyfinAPI + .PersonLookupInfoRemoteSearchQuery + ) -> Request<[JellyfinAPI.RemoteSearchResult]> { + Request(method: "POST", url: "/Items/RemoteSearch/Person", body: body, id: "GetPersonRemoteSearchResults") + } +} diff --git a/Sources/Paths/GetPersonsAPI.swift b/Sources/Paths/GetPersonsAPI.swift new file mode 100644 index 000000000..23df294ef --- /dev/null +++ b/Sources/Paths/GetPersonsAPI.swift @@ -0,0 +1,82 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets all persons. + static func getPersons(parameters: GetPersonsParameters? = nil) -> Request { + Request(method: "GET", url: "/Persons", query: parameters?.asQuery, id: "GetPersons") + } + + struct GetPersonsParameters { + public var limit: Int32? + public var searchTerm: String? + public var fields: [JellyfinAPI.ItemFields]? + public var filters: [JellyfinAPI.ItemFilter]? + public var isFavorite: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var excludePersonTypes: [String]? + public var personTypes: [String]? + public var appearsInItemID: String? + public var userID: String? + public var enableImages: Bool? + + public init( + limit: Int32? = nil, + searchTerm: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + filters: [JellyfinAPI.ItemFilter]? = nil, + isFavorite: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + excludePersonTypes: [String]? = nil, + personTypes: [String]? = nil, + appearsInItemID: String? = nil, + userID: String? = nil, + enableImages: Bool? = nil + ) { + self.limit = limit + self.searchTerm = searchTerm + self.fields = fields + self.filters = filters + self.isFavorite = isFavorite + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.excludePersonTypes = excludePersonTypes + self.personTypes = personTypes + self.appearsInItemID = appearsInItemID + self.userID = userID + self.enableImages = enableImages + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(limit, forKey: "limit") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(fields, forKey: "fields") + encoder.encode(filters, forKey: "filters") + encoder.encode(isFavorite, forKey: "isFavorite") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(excludePersonTypes, forKey: "excludePersonTypes") + encoder.encode(personTypes, forKey: "personTypes") + encoder.encode(appearsInItemID, forKey: "appearsInItemId") + encoder.encode(userID, forKey: "userId") + encoder.encode(enableImages, forKey: "enableImages") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetPhysicalPathsAPI.swift b/Sources/Paths/GetPhysicalPathsAPI.swift new file mode 100644 index 000000000..e85c5732c --- /dev/null +++ b/Sources/Paths/GetPhysicalPathsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a list of physical paths from virtual folders. + static var getPhysicalPaths: Request<[String]> { + Request(method: "GET", url: "/Library/PhysicalPaths", id: "GetPhysicalPaths") + } +} diff --git a/Sources/Paths/GetPingSystemAPI.swift b/Sources/Paths/GetPingSystemAPI.swift new file mode 100644 index 000000000..202777fe6 --- /dev/null +++ b/Sources/Paths/GetPingSystemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Pings the system. + static var getPingSystem: Request { + Request(method: "GET", url: "/System/Ping", id: "GetPingSystem") + } +} diff --git a/Sources/Paths/GetPlaybackInfoAPI.swift b/Sources/Paths/GetPlaybackInfoAPI.swift new file mode 100644 index 000000000..ed941e616 --- /dev/null +++ b/Sources/Paths/GetPlaybackInfoAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets live playback media info for an item. + static func getPlaybackInfo(itemID: String, userID: String) -> Request { + Request(method: "GET", url: "/Items/\(itemID)/PlaybackInfo", query: [("userId", userID)], id: "GetPlaybackInfo") + } +} diff --git a/Sources/Paths/GetPlaylistItemsAPI.swift b/Sources/Paths/GetPlaylistItemsAPI.swift new file mode 100644 index 000000000..8975fb4b8 --- /dev/null +++ b/Sources/Paths/GetPlaylistItemsAPI.swift @@ -0,0 +1,65 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the original items of a playlist. + static func getPlaylistItems( + playlistID: String, + parameters: GetPlaylistItemsParameters + ) -> Request { + Request(method: "GET", url: "/Playlists/\(playlistID)/Items", query: parameters.asQuery, id: "GetPlaylistItems") + } + + struct GetPlaylistItemsParameters { + public var userID: String + public var startIndex: Int32? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var enableImages: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + + public init( + userID: String, + startIndex: Int32? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableImages: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil + ) { + self.userID = userID + self.startIndex = startIndex + self.limit = limit + self.fields = fields + self.enableImages = enableImages + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetPluginConfigurationAPI.swift b/Sources/Paths/GetPluginConfigurationAPI.swift new file mode 100644 index 000000000..fadfb873b --- /dev/null +++ b/Sources/Paths/GetPluginConfigurationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets plugin configuration. + static func getPluginConfiguration(pluginID: String) -> Request { + Request(method: "GET", url: "/Plugins/\(pluginID)/Configuration", id: "GetPluginConfiguration") + } +} diff --git a/Sources/Paths/GetPluginImageAPI.swift b/Sources/Paths/GetPluginImageAPI.swift new file mode 100644 index 000000000..860a41595 --- /dev/null +++ b/Sources/Paths/GetPluginImageAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a plugin's image. + static func getPluginImage(pluginID: String, version: String) -> Request { + Request(method: "GET", url: "/Plugins/\(pluginID)/\(version)/Image", id: "GetPluginImage") + } +} diff --git a/Sources/Paths/GetPluginManifestAPI.swift b/Sources/Paths/GetPluginManifestAPI.swift new file mode 100644 index 000000000..64f188cab --- /dev/null +++ b/Sources/Paths/GetPluginManifestAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a plugin's manifest. + static func getPluginManifest(pluginID: String) -> Request { + Request(method: "POST", url: "/Plugins/\(pluginID)/Manifest", id: "GetPluginManifest") + } +} diff --git a/Sources/Paths/GetPluginsAPI.swift b/Sources/Paths/GetPluginsAPI.swift new file mode 100644 index 000000000..140c36248 --- /dev/null +++ b/Sources/Paths/GetPluginsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a list of currently installed plugins. + static var getPlugins: Request<[JellyfinAPI.PluginInfo]> { + Request(method: "GET", url: "/Plugins", id: "GetPlugins") + } +} diff --git a/Sources/Paths/GetPostedPlaybackInfoAPI.swift b/Sources/Paths/GetPostedPlaybackInfoAPI.swift new file mode 100644 index 000000000..8f1a86039 --- /dev/null +++ b/Sources/Paths/GetPostedPlaybackInfoAPI.swift @@ -0,0 +1,94 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets live playback media info for an item. + /// + /// For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence. + /// + /// Query parameters are obsolete. + static func getPostedPlaybackInfo( + itemID: String, + parameters: GetPostedPlaybackInfoParameters? = nil, + _ body: JellyfinAPI.PlaybackInfoDto? = nil + ) -> Request { + Request(method: "POST", url: "/Items/\(itemID)/PlaybackInfo", query: parameters?.asQuery, body: body, id: "GetPostedPlaybackInfo") + } + + struct GetPostedPlaybackInfoParameters { + public var userID: String? + public var maxStreamingBitrate: Int32? + public var startTimeTicks: Int64? + public var audioStreamIndex: Int32? + public var subtitleStreamIndex: Int32? + public var maxAudioChannels: Int32? + public var mediaSourceID: String? + public var liveStreamID: String? + public var isAutoOpenLiveStream: Bool? + public var enableDirectPlay: Bool? + public var enableDirectStream: Bool? + public var enableTranscoding: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + + public init( + userID: String? = nil, + maxStreamingBitrate: Int32? = nil, + startTimeTicks: Int64? = nil, + audioStreamIndex: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + maxAudioChannels: Int32? = nil, + mediaSourceID: String? = nil, + liveStreamID: String? = nil, + isAutoOpenLiveStream: Bool? = nil, + enableDirectPlay: Bool? = nil, + enableDirectStream: Bool? = nil, + enableTranscoding: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil + ) { + self.userID = userID + self.maxStreamingBitrate = maxStreamingBitrate + self.startTimeTicks = startTimeTicks + self.audioStreamIndex = audioStreamIndex + self.subtitleStreamIndex = subtitleStreamIndex + self.maxAudioChannels = maxAudioChannels + self.mediaSourceID = mediaSourceID + self.liveStreamID = liveStreamID + self.isAutoOpenLiveStream = isAutoOpenLiveStream + self.enableDirectPlay = enableDirectPlay + self.enableDirectStream = enableDirectStream + self.enableTranscoding = enableTranscoding + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(maxStreamingBitrate, forKey: "maxStreamingBitrate") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(isAutoOpenLiveStream, forKey: "autoOpenLiveStream") + encoder.encode(enableDirectPlay, forKey: "enableDirectPlay") + encoder.encode(enableDirectStream, forKey: "enableDirectStream") + encoder.encode(enableTranscoding, forKey: "enableTranscoding") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetProfileAPI.swift b/Sources/Paths/GetProfileAPI.swift new file mode 100644 index 000000000..3d098f16b --- /dev/null +++ b/Sources/Paths/GetProfileAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a single profile. + static func getProfile(profileID: String) -> Request { + Request(method: "GET", url: "/Dlna/Profiles/\(profileID)", id: "GetProfile") + } +} diff --git a/Sources/Paths/GetProfileInfosAPI.swift b/Sources/Paths/GetProfileInfosAPI.swift new file mode 100644 index 000000000..f96ccc7ac --- /dev/null +++ b/Sources/Paths/GetProfileInfosAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get profile infos. + static var getProfileInfos: Request<[JellyfinAPI.DeviceProfileInfo]> { + Request(method: "GET", url: "/Dlna/ProfileInfos", id: "GetProfileInfos") + } +} diff --git a/Sources/Paths/GetProgramAPI.swift b/Sources/Paths/GetProgramAPI.swift new file mode 100644 index 000000000..221df83a6 --- /dev/null +++ b/Sources/Paths/GetProgramAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets a live tv program. + public static func getProgram(programID: String, userID: String? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Programs/\(programID)", query: makeGetProgramQuery(userID), id: "GetProgram") + } + + private static func makeGetProgramQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetProgramsAPI.swift b/Sources/Paths/GetProgramsAPI.swift new file mode 100644 index 000000000..f71528ff3 --- /dev/null +++ b/Sources/Paths/GetProgramsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available live tv epgs. + static func getPrograms(_ body: JellyfinAPI.GetProgramsDto? = nil) -> Request { + Request(method: "POST", url: "/LiveTv/Programs", body: body, id: "GetPrograms") + } +} diff --git a/Sources/Paths/GetPublicSystemInfoAPI.swift b/Sources/Paths/GetPublicSystemInfoAPI.swift new file mode 100644 index 000000000..5efd51bd2 --- /dev/null +++ b/Sources/Paths/GetPublicSystemInfoAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets public information about the server. + static var getPublicSystemInfo: Request { + Request(method: "GET", url: "/System/Info/Public", id: "GetPublicSystemInfo") + } +} diff --git a/Sources/Paths/GetPublicUsersAPI.swift b/Sources/Paths/GetPublicUsersAPI.swift new file mode 100644 index 000000000..02b60566e --- /dev/null +++ b/Sources/Paths/GetPublicUsersAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a list of publicly visible users for display on a login screen. + static var getPublicUsers: Request<[JellyfinAPI.UserDto]> { + Request(method: "GET", url: "/Users/Public", id: "GetPublicUsers") + } +} diff --git a/Sources/Paths/GetQueryFiltersAPI.swift b/Sources/Paths/GetQueryFiltersAPI.swift new file mode 100644 index 000000000..86a5f3077 --- /dev/null +++ b/Sources/Paths/GetQueryFiltersAPI.swift @@ -0,0 +1,70 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets query filters. + static func getQueryFilters(parameters: GetQueryFiltersParameters? = nil) -> Request { + Request(method: "GET", url: "/Items/Filters2", query: parameters?.asQuery, id: "GetQueryFilters") + } + + struct GetQueryFiltersParameters { + public var userID: String? + public var parentID: String? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var isAiring: Bool? + public var isMovie: Bool? + public var isSports: Bool? + public var isKids: Bool? + public var isNews: Bool? + public var isSeries: Bool? + public var isRecursive: Bool? + + public init( + userID: String? = nil, + parentID: String? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + isAiring: Bool? = nil, + isMovie: Bool? = nil, + isSports: Bool? = nil, + isKids: Bool? = nil, + isNews: Bool? = nil, + isSeries: Bool? = nil, + isRecursive: Bool? = nil + ) { + self.userID = userID + self.parentID = parentID + self.includeItemTypes = includeItemTypes + self.isAiring = isAiring + self.isMovie = isMovie + self.isSports = isSports + self.isKids = isKids + self.isNews = isNews + self.isSeries = isSeries + self.isRecursive = isRecursive + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(isAiring, forKey: "isAiring") + encoder.encode(isMovie, forKey: "isMovie") + encoder.encode(isSports, forKey: "isSports") + encoder.encode(isKids, forKey: "isKids") + encoder.encode(isNews, forKey: "isNews") + encoder.encode(isSeries, forKey: "isSeries") + encoder.encode(isRecursive, forKey: "recursive") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetQueryFiltersLegacyAPI.swift b/Sources/Paths/GetQueryFiltersLegacyAPI.swift new file mode 100644 index 000000000..f7771e015 --- /dev/null +++ b/Sources/Paths/GetQueryFiltersLegacyAPI.swift @@ -0,0 +1,46 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets legacy query filters. + static func getQueryFiltersLegacy(parameters: GetQueryFiltersLegacyParameters? = nil) -> Request { + Request(method: "GET", url: "/Items/Filters", query: parameters?.asQuery, id: "GetQueryFiltersLegacy") + } + + struct GetQueryFiltersLegacyParameters { + public var userID: String? + public var parentID: String? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var mediaTypes: [String]? + + public init( + userID: String? = nil, + parentID: String? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + mediaTypes: [String]? = nil + ) { + self.userID = userID + self.parentID = parentID + self.includeItemTypes = includeItemTypes + self.mediaTypes = mediaTypes + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(mediaTypes, forKey: "mediaTypes") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetRatingImageAPI.swift b/Sources/Paths/GetRatingImageAPI.swift new file mode 100644 index 000000000..c82c9349d --- /dev/null +++ b/Sources/Paths/GetRatingImageAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get rating image. + static func getRatingImage(theme: String, name: String) -> Request { + Request(method: "GET", url: "/Images/Ratings/\(theme)/\(name)", id: "GetRatingImage") + } +} diff --git a/Sources/Paths/GetRatingImagesAPI.swift b/Sources/Paths/GetRatingImagesAPI.swift new file mode 100644 index 000000000..63b0c579e --- /dev/null +++ b/Sources/Paths/GetRatingImagesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get all general images. + static var getRatingImages: Request<[JellyfinAPI.ImageByNameInfo]> { + Request(method: "GET", url: "/Images/Ratings", id: "GetRatingImages") + } +} diff --git a/Sources/Paths/GetRecommendedProgramsAPI.swift b/Sources/Paths/GetRecommendedProgramsAPI.swift new file mode 100644 index 000000000..b17f27269 --- /dev/null +++ b/Sources/Paths/GetRecommendedProgramsAPI.swift @@ -0,0 +1,94 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets recommended live tv epgs. + static func getRecommendedPrograms(parameters: GetRecommendedProgramsParameters? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Programs/Recommended", query: parameters?.asQuery, id: "GetRecommendedPrograms") + } + + struct GetRecommendedProgramsParameters { + public var userID: String? + public var limit: Int32? + public var isAiring: Bool? + public var hasAired: Bool? + public var isSeries: Bool? + public var isMovie: Bool? + public var isNews: Bool? + public var isKids: Bool? + public var isSports: Bool? + public var enableImages: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var genreIDs: [String]? + public var fields: [JellyfinAPI.ItemFields]? + public var enableUserData: Bool? + public var enableTotalRecordCount: Bool? + + public init( + userID: String? = nil, + limit: Int32? = nil, + isAiring: Bool? = nil, + hasAired: Bool? = nil, + isSeries: Bool? = nil, + isMovie: Bool? = nil, + isNews: Bool? = nil, + isKids: Bool? = nil, + isSports: Bool? = nil, + enableImages: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + genreIDs: [String]? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableUserData: Bool? = nil, + enableTotalRecordCount: Bool? = nil + ) { + self.userID = userID + self.limit = limit + self.isAiring = isAiring + self.hasAired = hasAired + self.isSeries = isSeries + self.isMovie = isMovie + self.isNews = isNews + self.isKids = isKids + self.isSports = isSports + self.enableImages = enableImages + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.genreIDs = genreIDs + self.fields = fields + self.enableUserData = enableUserData + self.enableTotalRecordCount = enableTotalRecordCount + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(isAiring, forKey: "isAiring") + encoder.encode(hasAired, forKey: "hasAired") + encoder.encode(isSeries, forKey: "isSeries") + encoder.encode(isMovie, forKey: "isMovie") + encoder.encode(isNews, forKey: "isNews") + encoder.encode(isKids, forKey: "isKids") + encoder.encode(isSports, forKey: "isSports") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(genreIDs, forKey: "genreIds") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetRecordingAPI.swift b/Sources/Paths/GetRecordingAPI.swift new file mode 100644 index 000000000..5604ffa1b --- /dev/null +++ b/Sources/Paths/GetRecordingAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets a live tv recording. + public static func getRecording(recordingID: String, userID: String? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Recordings/\(recordingID)", query: makeGetRecordingQuery(userID), id: "GetRecording") + } + + private static func makeGetRecordingQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetRecordingFoldersAPI.swift b/Sources/Paths/GetRecordingFoldersAPI.swift new file mode 100644 index 000000000..941b52dc7 --- /dev/null +++ b/Sources/Paths/GetRecordingFoldersAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets recording folders. + public static func getRecordingFolders(userID: String? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Recordings/Folders", query: makeGetRecordingFoldersQuery(userID), id: "GetRecordingFolders") + } + + private static func makeGetRecordingFoldersQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetRecordingGroupAPI.swift b/Sources/Paths/GetRecordingGroupAPI.swift new file mode 100644 index 000000000..3c65634eb --- /dev/null +++ b/Sources/Paths/GetRecordingGroupAPI.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get recording group. + @available(*, deprecated, message: "Deprecated") + static func getRecordingGroup(groupID: String) -> Request { + Request(method: "GET", url: "/LiveTv/Recordings/Groups/\(groupID)", id: "GetRecordingGroup") + } +} diff --git a/Sources/Paths/GetRecordingGroupsAPI.swift b/Sources/Paths/GetRecordingGroupsAPI.swift new file mode 100644 index 000000000..9f929c359 --- /dev/null +++ b/Sources/Paths/GetRecordingGroupsAPI.swift @@ -0,0 +1,25 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets live tv recording groups. + @available(*, deprecated, message: "Deprecated") + public static func getRecordingGroups(userID: String? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Recordings/Groups", query: makeGetRecordingGroupsQuery(userID), id: "GetRecordingGroups") + } + + private static func makeGetRecordingGroupsQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetRecordingsAPI.swift b/Sources/Paths/GetRecordingsAPI.swift new file mode 100644 index 000000000..974ececf6 --- /dev/null +++ b/Sources/Paths/GetRecordingsAPI.swift @@ -0,0 +1,108 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets live tv recordings. + static func getRecordings(parameters: GetRecordingsParameters? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Recordings", query: parameters?.asQuery, id: "GetRecordings") + } + + struct GetRecordingsParameters { + public var channelID: String? + public var userID: String? + public var startIndex: Int32? + public var limit: Int32? + public var status: Status? + public var isInProgress: Bool? + public var seriesTimerID: String? + public var enableImages: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var fields: [JellyfinAPI.ItemFields]? + public var enableUserData: Bool? + public var isMovie: Bool? + public var isSeries: Bool? + public var isKids: Bool? + public var isSports: Bool? + public var isNews: Bool? + public var isLibraryItem: Bool? + public var enableTotalRecordCount: Bool? + + public typealias Status = JellyfinAPI.RecordingStatus + + public init( + channelID: String? = nil, + userID: String? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + status: Status? = nil, + isInProgress: Bool? = nil, + seriesTimerID: String? = nil, + enableImages: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableUserData: Bool? = nil, + isMovie: Bool? = nil, + isSeries: Bool? = nil, + isKids: Bool? = nil, + isSports: Bool? = nil, + isNews: Bool? = nil, + isLibraryItem: Bool? = nil, + enableTotalRecordCount: Bool? = nil + ) { + self.channelID = channelID + self.userID = userID + self.startIndex = startIndex + self.limit = limit + self.status = status + self.isInProgress = isInProgress + self.seriesTimerID = seriesTimerID + self.enableImages = enableImages + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.fields = fields + self.enableUserData = enableUserData + self.isMovie = isMovie + self.isSeries = isSeries + self.isKids = isKids + self.isSports = isSports + self.isNews = isNews + self.isLibraryItem = isLibraryItem + self.enableTotalRecordCount = enableTotalRecordCount + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(channelID, forKey: "channelId") + encoder.encode(userID, forKey: "userId") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(status, forKey: "status") + encoder.encode(isInProgress, forKey: "isInProgress") + encoder.encode(seriesTimerID, forKey: "seriesTimerId") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(isMovie, forKey: "isMovie") + encoder.encode(isSeries, forKey: "isSeries") + encoder.encode(isKids, forKey: "isKids") + encoder.encode(isSports, forKey: "isSports") + encoder.encode(isNews, forKey: "isNews") + encoder.encode(isLibraryItem, forKey: "isLibraryItem") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetRecordingsSeriesAPI.swift b/Sources/Paths/GetRecordingsSeriesAPI.swift new file mode 100644 index 000000000..3c8ae416f --- /dev/null +++ b/Sources/Paths/GetRecordingsSeriesAPI.swift @@ -0,0 +1,89 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets live tv recording series. + @available(*, deprecated, message: "Deprecated") + static func getRecordingsSeries(parameters: GetRecordingsSeriesParameters? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Recordings/Series", query: parameters?.asQuery, id: "GetRecordingsSeries") + } + + struct GetRecordingsSeriesParameters { + public var channelID: String? + public var userID: String? + public var groupID: String? + public var startIndex: Int32? + public var limit: Int32? + public var status: Status? + public var isInProgress: Bool? + public var seriesTimerID: String? + public var enableImages: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var fields: [JellyfinAPI.ItemFields]? + public var enableUserData: Bool? + public var enableTotalRecordCount: Bool? + + public typealias Status = JellyfinAPI.RecordingStatus + + public init( + channelID: String? = nil, + userID: String? = nil, + groupID: String? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + status: Status? = nil, + isInProgress: Bool? = nil, + seriesTimerID: String? = nil, + enableImages: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + enableUserData: Bool? = nil, + enableTotalRecordCount: Bool? = nil + ) { + self.channelID = channelID + self.userID = userID + self.groupID = groupID + self.startIndex = startIndex + self.limit = limit + self.status = status + self.isInProgress = isInProgress + self.seriesTimerID = seriesTimerID + self.enableImages = enableImages + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.fields = fields + self.enableUserData = enableUserData + self.enableTotalRecordCount = enableTotalRecordCount + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(channelID, forKey: "channelId") + encoder.encode(userID, forKey: "userId") + encoder.encode(groupID, forKey: "groupId") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(status, forKey: "status") + encoder.encode(isInProgress, forKey: "isInProgress") + encoder.encode(seriesTimerID, forKey: "seriesTimerId") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(fields, forKey: "fields") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetRemoteImageProvidersAPI.swift b/Sources/Paths/GetRemoteImageProvidersAPI.swift new file mode 100644 index 000000000..4798fb1d8 --- /dev/null +++ b/Sources/Paths/GetRemoteImageProvidersAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available remote image providers for an item. + static func getRemoteImageProviders(itemID: String) -> Request<[JellyfinAPI.ImageProviderInfo]> { + Request(method: "GET", url: "/Items/\(itemID)/RemoteImages/Providers", id: "GetRemoteImageProviders") + } +} diff --git a/Sources/Paths/GetRemoteImagesAPI.swift b/Sources/Paths/GetRemoteImagesAPI.swift new file mode 100644 index 000000000..c8b60e648 --- /dev/null +++ b/Sources/Paths/GetRemoteImagesAPI.swift @@ -0,0 +1,52 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available remote images for an item. + static func getRemoteImages(itemID: String, parameters: GetRemoteImagesParameters? = nil) -> Request { + Request(method: "GET", url: "/Items/\(itemID)/RemoteImages", query: parameters?.asQuery, id: "GetRemoteImages") + } + + struct GetRemoteImagesParameters { + public var type: `Type`? + public var startIndex: Int32? + public var limit: Int32? + public var providerName: String? + public var isIncludeAllLanguages: Bool? + + public typealias `Type` = JellyfinAPI.ImageType + + public init( + type: Type? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + providerName: String? = nil, + isIncludeAllLanguages: Bool? = nil + ) { + self.type = type + self.startIndex = startIndex + self.limit = limit + self.providerName = providerName + self.isIncludeAllLanguages = isIncludeAllLanguages + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(type, forKey: "type") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(providerName, forKey: "providerName") + encoder.encode(isIncludeAllLanguages, forKey: "includeAllLanguages") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetRemoteSubtitlesAPI.swift b/Sources/Paths/GetRemoteSubtitlesAPI.swift new file mode 100644 index 000000000..c6d009beb --- /dev/null +++ b/Sources/Paths/GetRemoteSubtitlesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the remote subtitles. + static func getRemoteSubtitles(id: String) -> Request { + Request(method: "GET", url: "/Providers/Subtitles/Subtitles/\(id)", id: "GetRemoteSubtitles") + } +} diff --git a/Sources/Paths/GetRepositoriesAPI.swift b/Sources/Paths/GetRepositoriesAPI.swift new file mode 100644 index 000000000..dfc05614e --- /dev/null +++ b/Sources/Paths/GetRepositoriesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets all package repositories. + static var getRepositories: Request<[JellyfinAPI.RepositoryInfo]> { + Request(method: "GET", url: "/Repositories", id: "GetRepositories") + } +} diff --git a/Sources/Paths/GetResumeItemsAPI.swift b/Sources/Paths/GetResumeItemsAPI.swift new file mode 100644 index 000000000..3640dd2e0 --- /dev/null +++ b/Sources/Paths/GetResumeItemsAPI.swift @@ -0,0 +1,86 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets items based on a query. + static func getResumeItems(userID: String, parameters: GetResumeItemsParameters? = nil) -> Request { + Request(method: "GET", url: "/Users/\(userID)/Items/Resume", query: parameters?.asQuery, id: "GetResumeItems") + } + + struct GetResumeItemsParameters { + public var startIndex: Int32? + public var limit: Int32? + public var searchTerm: String? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var mediaTypes: [String]? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var enableTotalRecordCount: Bool? + public var enableImages: Bool? + public var excludeActiveSessions: Bool? + + public init( + startIndex: Int32? = nil, + limit: Int32? = nil, + searchTerm: String? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + mediaTypes: [String]? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + enableTotalRecordCount: Bool? = nil, + enableImages: Bool? = nil, + excludeActiveSessions: Bool? = nil + ) { + self.startIndex = startIndex + self.limit = limit + self.searchTerm = searchTerm + self.parentID = parentID + self.fields = fields + self.mediaTypes = mediaTypes + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.excludeItemTypes = excludeItemTypes + self.includeItemTypes = includeItemTypes + self.enableTotalRecordCount = enableTotalRecordCount + self.enableImages = enableImages + self.excludeActiveSessions = excludeActiveSessions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(mediaTypes, forKey: "mediaTypes") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(excludeActiveSessions, forKey: "excludeActiveSessions") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetRootFolderAPI.swift b/Sources/Paths/GetRootFolderAPI.swift new file mode 100644 index 000000000..afb389e10 --- /dev/null +++ b/Sources/Paths/GetRootFolderAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the root folder from a user's library. + static func getRootFolder(userID: String) -> Request { + Request(method: "GET", url: "/Users/\(userID)/Items/Root", id: "GetRootFolder") + } +} diff --git a/Sources/Paths/GetSchedulesDirectCountriesAPI.swift b/Sources/Paths/GetSchedulesDirectCountriesAPI.swift new file mode 100644 index 000000000..66eb89878 --- /dev/null +++ b/Sources/Paths/GetSchedulesDirectCountriesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets available countries. + static var getSchedulesDirectCountries: Request { + Request(method: "GET", url: "/LiveTv/ListingProviders/SchedulesDirect/Countries", id: "GetSchedulesDirectCountries") + } +} diff --git a/Sources/Paths/GetSeasonsAPI.swift b/Sources/Paths/GetSeasonsAPI.swift new file mode 100644 index 000000000..a5b8fbfae --- /dev/null +++ b/Sources/Paths/GetSeasonsAPI.swift @@ -0,0 +1,66 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets seasons for a tv series. + static func getSeasons(seriesID: String, parameters: GetSeasonsParameters? = nil) -> Request { + Request(method: "GET", url: "/Shows/\(seriesID)/Seasons", query: parameters?.asQuery, id: "GetSeasons") + } + + struct GetSeasonsParameters { + public var userID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var isSpecialSeason: Bool? + public var isMissing: Bool? + public var adjacentTo: String? + public var enableImages: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var enableUserData: Bool? + + public init( + userID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + isSpecialSeason: Bool? = nil, + isMissing: Bool? = nil, + adjacentTo: String? = nil, + enableImages: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + enableUserData: Bool? = nil + ) { + self.userID = userID + self.fields = fields + self.isSpecialSeason = isSpecialSeason + self.isMissing = isMissing + self.adjacentTo = adjacentTo + self.enableImages = enableImages + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.enableUserData = enableUserData + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(fields, forKey: "fields") + encoder.encode(isSpecialSeason, forKey: "isSpecialSeason") + encoder.encode(isMissing, forKey: "isMissing") + encoder.encode(adjacentTo, forKey: "adjacentTo") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(enableUserData, forKey: "enableUserData") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSeriesRemoteSearchResultsAPI.swift b/Sources/Paths/GetSeriesRemoteSearchResultsAPI.swift new file mode 100644 index 000000000..e16c7a94a --- /dev/null +++ b/Sources/Paths/GetSeriesRemoteSearchResultsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get series remote search. + static func getSeriesRemoteSearchResults(_ body: JellyfinAPI.SeriesInfoRemoteSearchQuery) -> Request<[JellyfinAPI.RemoteSearchResult]> { + Request(method: "POST", url: "/Items/RemoteSearch/Series", body: body, id: "GetSeriesRemoteSearchResults") + } +} diff --git a/Sources/Paths/GetSeriesTimerAPI.swift b/Sources/Paths/GetSeriesTimerAPI.swift new file mode 100644 index 000000000..13a5dfe28 --- /dev/null +++ b/Sources/Paths/GetSeriesTimerAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a live tv series timer. + static func getSeriesTimer(timerID: String) -> Request { + Request(method: "GET", url: "/LiveTv/SeriesTimers/\(timerID)", id: "GetSeriesTimer") + } +} diff --git a/Sources/Paths/GetSeriesTimersAPI.swift b/Sources/Paths/GetSeriesTimersAPI.swift new file mode 100644 index 000000000..d75e900fc --- /dev/null +++ b/Sources/Paths/GetSeriesTimersAPI.swift @@ -0,0 +1,37 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets live tv series timers. + static func getSeriesTimers(parameters: GetSeriesTimersParameters? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/SeriesTimers", query: parameters?.asQuery, id: "GetSeriesTimers") + } + + struct GetSeriesTimersParameters { + public var sortBy: String? + public var sortOrder: SortOrder? + + public typealias SortOrder = JellyfinAPI.SortOrder + + public init(sortBy: String? = nil, sortOrder: SortOrder? = nil) { + self.sortBy = sortBy + self.sortOrder = sortOrder + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(sortOrder, forKey: "sortOrder") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetServerLogsAPI.swift b/Sources/Paths/GetServerLogsAPI.swift new file mode 100644 index 000000000..66682fb4d --- /dev/null +++ b/Sources/Paths/GetServerLogsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a list of available server log files. + static var getServerLogs: Request<[JellyfinAPI.LogFile]> { + Request(method: "GET", url: "/System/Logs", id: "GetServerLogs") + } +} diff --git a/Sources/Paths/GetSessionsAPI.swift b/Sources/Paths/GetSessionsAPI.swift new file mode 100644 index 000000000..187ea43ea --- /dev/null +++ b/Sources/Paths/GetSessionsAPI.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a list of sessions. + static func getSessions(parameters: GetSessionsParameters? = nil) -> Request<[JellyfinAPI.SessionInfo]> { + Request(method: "GET", url: "/Sessions", query: parameters?.asQuery, id: "GetSessions") + } + + struct GetSessionsParameters { + public var controllableByUserID: String? + public var deviceID: String? + public var activeWithinSeconds: Int32? + + public init(controllableByUserID: String? = nil, deviceID: String? = nil, activeWithinSeconds: Int32? = nil) { + self.controllableByUserID = controllableByUserID + self.deviceID = deviceID + self.activeWithinSeconds = activeWithinSeconds + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(controllableByUserID, forKey: "controllableByUserId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(activeWithinSeconds, forKey: "activeWithinSeconds") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSimilarAlbumsAPI.swift b/Sources/Paths/GetSimilarAlbumsAPI.swift new file mode 100644 index 000000000..7f61603ea --- /dev/null +++ b/Sources/Paths/GetSimilarAlbumsAPI.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets similar items. + static func getSimilarAlbums( + itemID: String, + parameters: GetSimilarAlbumsParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Albums/\(itemID)/Similar", query: parameters?.asQuery, id: "GetSimilarAlbums") + } + + struct GetSimilarAlbumsParameters { + public var excludeArtistIDs: [String]? + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + + public init( + excludeArtistIDs: [String]? = nil, + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil + ) { + self.excludeArtistIDs = excludeArtistIDs + self.userID = userID + self.limit = limit + self.fields = fields + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(excludeArtistIDs, forKey: "excludeArtistIds") + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSimilarArtistsAPI.swift b/Sources/Paths/GetSimilarArtistsAPI.swift new file mode 100644 index 000000000..72d6d2e1e --- /dev/null +++ b/Sources/Paths/GetSimilarArtistsAPI.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets similar items. + static func getSimilarArtists( + itemID: String, + parameters: GetSimilarArtistsParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Artists/\(itemID)/Similar", query: parameters?.asQuery, id: "GetSimilarArtists") + } + + struct GetSimilarArtistsParameters { + public var excludeArtistIDs: [String]? + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + + public init( + excludeArtistIDs: [String]? = nil, + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil + ) { + self.excludeArtistIDs = excludeArtistIDs + self.userID = userID + self.limit = limit + self.fields = fields + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(excludeArtistIDs, forKey: "excludeArtistIds") + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSimilarItemsAPI.swift b/Sources/Paths/GetSimilarItemsAPI.swift new file mode 100644 index 000000000..cd09a816a --- /dev/null +++ b/Sources/Paths/GetSimilarItemsAPI.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets similar items. + static func getSimilarItems( + itemID: String, + parameters: GetSimilarItemsParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Items/\(itemID)/Similar", query: parameters?.asQuery, id: "GetSimilarItems") + } + + struct GetSimilarItemsParameters { + public var excludeArtistIDs: [String]? + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + + public init( + excludeArtistIDs: [String]? = nil, + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil + ) { + self.excludeArtistIDs = excludeArtistIDs + self.userID = userID + self.limit = limit + self.fields = fields + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(excludeArtistIDs, forKey: "excludeArtistIds") + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSimilarMoviesAPI.swift b/Sources/Paths/GetSimilarMoviesAPI.swift new file mode 100644 index 000000000..cf325de1b --- /dev/null +++ b/Sources/Paths/GetSimilarMoviesAPI.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets similar items. + static func getSimilarMovies( + itemID: String, + parameters: GetSimilarMoviesParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Movies/\(itemID)/Similar", query: parameters?.asQuery, id: "GetSimilarMovies") + } + + struct GetSimilarMoviesParameters { + public var excludeArtistIDs: [String]? + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + + public init( + excludeArtistIDs: [String]? = nil, + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil + ) { + self.excludeArtistIDs = excludeArtistIDs + self.userID = userID + self.limit = limit + self.fields = fields + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(excludeArtistIDs, forKey: "excludeArtistIds") + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSimilarShowsAPI.swift b/Sources/Paths/GetSimilarShowsAPI.swift new file mode 100644 index 000000000..3df45fc2d --- /dev/null +++ b/Sources/Paths/GetSimilarShowsAPI.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets similar items. + static func getSimilarShows( + itemID: String, + parameters: GetSimilarShowsParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Shows/\(itemID)/Similar", query: parameters?.asQuery, id: "GetSimilarShows") + } + + struct GetSimilarShowsParameters { + public var excludeArtistIDs: [String]? + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + + public init( + excludeArtistIDs: [String]? = nil, + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil + ) { + self.excludeArtistIDs = excludeArtistIDs + self.userID = userID + self.limit = limit + self.fields = fields + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(excludeArtistIDs, forKey: "excludeArtistIds") + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSimilarTrailersAPI.swift b/Sources/Paths/GetSimilarTrailersAPI.swift new file mode 100644 index 000000000..36c18c5a5 --- /dev/null +++ b/Sources/Paths/GetSimilarTrailersAPI.swift @@ -0,0 +1,49 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets similar items. + static func getSimilarTrailers( + itemID: String, + parameters: GetSimilarTrailersParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Trailers/\(itemID)/Similar", query: parameters?.asQuery, id: "GetSimilarTrailers") + } + + struct GetSimilarTrailersParameters { + public var excludeArtistIDs: [String]? + public var userID: String? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + + public init( + excludeArtistIDs: [String]? = nil, + userID: String? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil + ) { + self.excludeArtistIDs = excludeArtistIDs + self.userID = userID + self.limit = limit + self.fields = fields + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(excludeArtistIDs, forKey: "excludeArtistIds") + encoder.encode(userID, forKey: "userId") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSpecialFeaturesAPI.swift b/Sources/Paths/GetSpecialFeaturesAPI.swift new file mode 100644 index 000000000..fde6a05e2 --- /dev/null +++ b/Sources/Paths/GetSpecialFeaturesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets special features for an item. + static func getSpecialFeatures(userID: String, itemID: String) -> Request<[JellyfinAPI.BaseItemDto]> { + Request(method: "GET", url: "/Users/\(userID)/Items/\(itemID)/SpecialFeatures", id: "GetSpecialFeatures") + } +} diff --git a/Sources/Paths/GetSplashscreenAPI.swift b/Sources/Paths/GetSplashscreenAPI.swift new file mode 100644 index 000000000..68592fb8f --- /dev/null +++ b/Sources/Paths/GetSplashscreenAPI.swift @@ -0,0 +1,80 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Generates or gets the splashscreen. + static func getSplashscreen(parameters: GetSplashscreenParameters? = nil) -> Request { + Request(method: "GET", url: "/Branding/Splashscreen", query: parameters?.asQuery, id: "GetSplashscreen") + } + + struct GetSplashscreenParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var width: Int32? + public var height: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var quality: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + quality: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.width = width + self.height = height + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.quality = quality + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(quality, forKey: "quality") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetStartupConfigurationAPI.swift b/Sources/Paths/GetStartupConfigurationAPI.swift new file mode 100644 index 000000000..f55c3772f --- /dev/null +++ b/Sources/Paths/GetStartupConfigurationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the initial startup wizard configuration. + static var getStartupConfiguration: Request { + Request(method: "GET", url: "/Startup/Configuration", id: "GetStartupConfiguration") + } +} diff --git a/Sources/Paths/GetStudioAPI.swift b/Sources/Paths/GetStudioAPI.swift new file mode 100644 index 000000000..5a7be4a46 --- /dev/null +++ b/Sources/Paths/GetStudioAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets a studio by name. + public static func getStudio(name: String, userID: String? = nil) -> Request { + Request(method: "GET", url: "/Studios/\(name)", query: makeGetStudioQuery(userID), id: "GetStudio") + } + + private static func makeGetStudioQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetStudioImageAPI.swift b/Sources/Paths/GetStudioImageAPI.swift new file mode 100644 index 000000000..1508433f3 --- /dev/null +++ b/Sources/Paths/GetStudioImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get studio image by name. + static func getStudioImage(name: String, imageType: String, parameters: GetStudioImageParameters? = nil) -> Request { + Request(method: "GET", url: "/Studios/\(name)/Images/\(imageType)", query: parameters?.asQuery, id: "GetStudioImage") + } + + struct GetStudioImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetStudioImageByIndexAPI.swift b/Sources/Paths/GetStudioImageByIndexAPI.swift new file mode 100644 index 000000000..9146bdbbb --- /dev/null +++ b/Sources/Paths/GetStudioImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get studio image by name. + static func getStudioImageByIndex( + name: String, + imageType: String, + imageIndex: Int, + parameters: GetStudioImageByIndexParameters? = nil + ) -> Request { + Request( + method: "GET", + url: "/Studios/\(name)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "GetStudioImageByIndex" + ) + } + + struct GetStudioImageByIndexParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetStudiosAPI.swift b/Sources/Paths/GetStudiosAPI.swift new file mode 100644 index 000000000..3ba8e4907 --- /dev/null +++ b/Sources/Paths/GetStudiosAPI.swift @@ -0,0 +1,98 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets all studios from a given item, folder, or the entire library. + static func getStudios(parameters: GetStudiosParameters? = nil) -> Request { + Request(method: "GET", url: "/Studios", query: parameters?.asQuery, id: "GetStudios") + } + + struct GetStudiosParameters { + public var startIndex: Int32? + public var limit: Int32? + public var searchTerm: String? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var isFavorite: Bool? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var userID: String? + public var nameStartsWithOrGreater: String? + public var nameStartsWith: String? + public var nameLessThan: String? + public var enableImages: Bool? + public var enableTotalRecordCount: Bool? + + public init( + startIndex: Int32? = nil, + limit: Int32? = nil, + searchTerm: String? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + isFavorite: Bool? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + userID: String? = nil, + nameStartsWithOrGreater: String? = nil, + nameStartsWith: String? = nil, + nameLessThan: String? = nil, + enableImages: Bool? = nil, + enableTotalRecordCount: Bool? = nil + ) { + self.startIndex = startIndex + self.limit = limit + self.searchTerm = searchTerm + self.parentID = parentID + self.fields = fields + self.excludeItemTypes = excludeItemTypes + self.includeItemTypes = includeItemTypes + self.isFavorite = isFavorite + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.userID = userID + self.nameStartsWithOrGreater = nameStartsWithOrGreater + self.nameStartsWith = nameStartsWith + self.nameLessThan = nameLessThan + self.enableImages = enableImages + self.enableTotalRecordCount = enableTotalRecordCount + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(isFavorite, forKey: "isFavorite") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(userID, forKey: "userId") + encoder.encode(nameStartsWithOrGreater, forKey: "nameStartsWithOrGreater") + encoder.encode(nameStartsWith, forKey: "nameStartsWith") + encoder.encode(nameLessThan, forKey: "nameLessThan") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSubtitleAPI.swift b/Sources/Paths/GetSubtitleAPI.swift new file mode 100644 index 000000000..925e8cb66 --- /dev/null +++ b/Sources/Paths/GetSubtitleAPI.swift @@ -0,0 +1,73 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets subtitles in a specified format. + static func getSubtitle( + routeItemID: String, + routeMediaSourceID: String, + routeIndex: Int, + routeFormat: String, + parameters: GetSubtitleParameters? = nil + ) -> Request { + Request( + method: "GET", + url: "/Videos/\(routeItemID)/\(routeMediaSourceID)/Subtitles/\(routeIndex)/Stream.\(routeFormat)", + query: parameters?.asQuery, + id: "GetSubtitle" + ) + } + + struct GetSubtitleParameters { + public var itemID: String? + public var mediaSourceID: String? + public var index: Int32? + public var format: String? + public var endPositionTicks: Int64? + public var isCopyTimestamps: Bool? + public var isAddVttTimeMap: Bool? + public var startPositionTicks: Int64? + + public init( + itemID: String? = nil, + mediaSourceID: String? = nil, + index: Int32? = nil, + format: String? = nil, + endPositionTicks: Int64? = nil, + isCopyTimestamps: Bool? = nil, + isAddVttTimeMap: Bool? = nil, + startPositionTicks: Int64? = nil + ) { + self.itemID = itemID + self.mediaSourceID = mediaSourceID + self.index = index + self.format = format + self.endPositionTicks = endPositionTicks + self.isCopyTimestamps = isCopyTimestamps + self.isAddVttTimeMap = isAddVttTimeMap + self.startPositionTicks = startPositionTicks + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(itemID, forKey: "itemId") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(index, forKey: "index") + encoder.encode(format, forKey: "format") + encoder.encode(endPositionTicks, forKey: "endPositionTicks") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(isAddVttTimeMap, forKey: "addVttTimeMap") + encoder.encode(startPositionTicks, forKey: "startPositionTicks") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSubtitlePlaylistAPI.swift b/Sources/Paths/GetSubtitlePlaylistAPI.swift new file mode 100644 index 000000000..81a62aa72 --- /dev/null +++ b/Sources/Paths/GetSubtitlePlaylistAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets an HLS subtitle playlist. + public static func getSubtitlePlaylist(itemID: String, index: Int, mediaSourceID: String, segmentLength: Int32) -> Request { + Request( + method: "GET", + url: "/Videos/\(itemID)/\(mediaSourceID)/Subtitles/\(index)/subtitles.m3u8", + query: makeGetSubtitlePlaylistQuery(segmentLength), + id: "GetSubtitlePlaylist" + ) + } + + private static func makeGetSubtitlePlaylistQuery(_ segmentLength: Int32) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(segmentLength, forKey: "segmentLength") + return encoder.items + } +} diff --git a/Sources/Paths/GetSubtitleWithTicksAPI.swift b/Sources/Paths/GetSubtitleWithTicksAPI.swift new file mode 100644 index 000000000..0111a1444 --- /dev/null +++ b/Sources/Paths/GetSubtitleWithTicksAPI.swift @@ -0,0 +1,74 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets subtitles in a specified format. + static func getSubtitleWithTicks( + routeItemID: String, + routeMediaSourceID: String, + routeIndex: Int, + routeStartPositionTicks: Int, + routeFormat: String, + parameters: GetSubtitleWithTicksParameters? = nil + ) -> Request { + Request( + method: "GET", + url: "/Videos/\(routeItemID)/\(routeMediaSourceID)/Subtitles/\(routeIndex)/\(routeStartPositionTicks)/Stream.\(routeFormat)", + query: parameters?.asQuery, + id: "GetSubtitleWithTicks" + ) + } + + struct GetSubtitleWithTicksParameters { + public var itemID: String? + public var mediaSourceID: String? + public var index: Int32? + public var startPositionTicks: Int64? + public var format: String? + public var endPositionTicks: Int64? + public var isCopyTimestamps: Bool? + public var isAddVttTimeMap: Bool? + + public init( + itemID: String? = nil, + mediaSourceID: String? = nil, + index: Int32? = nil, + startPositionTicks: Int64? = nil, + format: String? = nil, + endPositionTicks: Int64? = nil, + isCopyTimestamps: Bool? = nil, + isAddVttTimeMap: Bool? = nil + ) { + self.itemID = itemID + self.mediaSourceID = mediaSourceID + self.index = index + self.startPositionTicks = startPositionTicks + self.format = format + self.endPositionTicks = endPositionTicks + self.isCopyTimestamps = isCopyTimestamps + self.isAddVttTimeMap = isAddVttTimeMap + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(itemID, forKey: "itemId") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(index, forKey: "index") + encoder.encode(startPositionTicks, forKey: "startPositionTicks") + encoder.encode(format, forKey: "format") + encoder.encode(endPositionTicks, forKey: "endPositionTicks") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(isAddVttTimeMap, forKey: "addVttTimeMap") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSuggestionsAPI.swift b/Sources/Paths/GetSuggestionsAPI.swift new file mode 100644 index 000000000..8d5a97b9f --- /dev/null +++ b/Sources/Paths/GetSuggestionsAPI.swift @@ -0,0 +1,50 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets suggestions. + static func getSuggestions(userID: String, parameters: GetSuggestionsParameters? = nil) -> Request { + Request(method: "GET", url: "/Users/\(userID)/Suggestions", query: parameters?.asQuery, id: "GetSuggestions") + } + + struct GetSuggestionsParameters { + public var mediaType: [String]? + public var type: [JellyfinAPI.BaseItemKind]? + public var startIndex: Int32? + public var limit: Int32? + public var enableTotalRecordCount: Bool? + + public init( + mediaType: [String]? = nil, + type: [JellyfinAPI.BaseItemKind]? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + enableTotalRecordCount: Bool? = nil + ) { + self.mediaType = mediaType + self.type = type + self.startIndex = startIndex + self.limit = limit + self.enableTotalRecordCount = enableTotalRecordCount + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(mediaType, forKey: "mediaType") + encoder.encode(type, forKey: "type") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetSystemInfoAPI.swift b/Sources/Paths/GetSystemInfoAPI.swift new file mode 100644 index 000000000..953750d0a --- /dev/null +++ b/Sources/Paths/GetSystemInfoAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets information about the server. + static var getSystemInfo: Request { + Request(method: "GET", url: "/System/Info", id: "GetSystemInfo") + } +} diff --git a/Sources/Paths/GetTaskAPI.swift b/Sources/Paths/GetTaskAPI.swift new file mode 100644 index 000000000..53eb9cd66 --- /dev/null +++ b/Sources/Paths/GetTaskAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get task by id. + static func getTask(taskID: String) -> Request { + Request(method: "GET", url: "/ScheduledTasks/\(taskID)", id: "GetTask") + } +} diff --git a/Sources/Paths/GetTasksAPI.swift b/Sources/Paths/GetTasksAPI.swift new file mode 100644 index 000000000..87c613831 --- /dev/null +++ b/Sources/Paths/GetTasksAPI.swift @@ -0,0 +1,25 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Get tasks. + public static func getTasks(isHidden: Bool? = nil, isEnabled: Bool? = nil) -> Request<[JellyfinAPI.TaskInfo]> { + Request(method: "GET", url: "/ScheduledTasks", query: makeGetTasksQuery(isHidden, isEnabled), id: "GetTasks") + } + + private static func makeGetTasksQuery(_ isHidden: Bool?, _ isEnabled: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isHidden, forKey: "isHidden") + encoder.encode(isEnabled, forKey: "isEnabled") + return encoder.items + } +} diff --git a/Sources/Paths/GetThemeMediaAPI.swift b/Sources/Paths/GetThemeMediaAPI.swift new file mode 100644 index 000000000..4903c00d9 --- /dev/null +++ b/Sources/Paths/GetThemeMediaAPI.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Get theme songs and videos for an item. + public static func getThemeMedia( + itemID: String, + userID: String? = nil, + isInheritFromParent: Bool? = nil + ) -> Request { + Request( + method: "GET", + url: "/Items/\(itemID)/ThemeMedia", + query: makeGetThemeMediaQuery(userID, isInheritFromParent), + id: "GetThemeMedia" + ) + } + + private static func makeGetThemeMediaQuery(_ userID: String?, _ isInheritFromParent: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(isInheritFromParent, forKey: "inheritFromParent") + return encoder.items + } +} diff --git a/Sources/Paths/GetThemeSongsAPI.swift b/Sources/Paths/GetThemeSongsAPI.swift new file mode 100644 index 000000000..b7a96549e --- /dev/null +++ b/Sources/Paths/GetThemeSongsAPI.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Get theme songs for an item. + public static func getThemeSongs( + itemID: String, + userID: String? = nil, + isInheritFromParent: Bool? = nil + ) -> Request { + Request( + method: "GET", + url: "/Items/\(itemID)/ThemeSongs", + query: makeGetThemeSongsQuery(userID, isInheritFromParent), + id: "GetThemeSongs" + ) + } + + private static func makeGetThemeSongsQuery(_ userID: String?, _ isInheritFromParent: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(isInheritFromParent, forKey: "inheritFromParent") + return encoder.items + } +} diff --git a/Sources/Paths/GetThemeVideosAPI.swift b/Sources/Paths/GetThemeVideosAPI.swift new file mode 100644 index 000000000..9daca1b1c --- /dev/null +++ b/Sources/Paths/GetThemeVideosAPI.swift @@ -0,0 +1,34 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Get theme videos for an item. + public static func getThemeVideos( + itemID: String, + userID: String? = nil, + isInheritFromParent: Bool? = nil + ) -> Request { + Request( + method: "GET", + url: "/Items/\(itemID)/ThemeVideos", + query: makeGetThemeVideosQuery(userID, isInheritFromParent), + id: "GetThemeVideos" + ) + } + + private static func makeGetThemeVideosQuery(_ userID: String?, _ isInheritFromParent: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(isInheritFromParent, forKey: "inheritFromParent") + return encoder.items + } +} diff --git a/Sources/Paths/GetTimerAPI.swift b/Sources/Paths/GetTimerAPI.swift new file mode 100644 index 000000000..d68ff3d07 --- /dev/null +++ b/Sources/Paths/GetTimerAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a timer. + static func getTimer(timerID: String) -> Request { + Request(method: "GET", url: "/LiveTv/Timers/\(timerID)", id: "GetTimer") + } +} diff --git a/Sources/Paths/GetTimersAPI.swift b/Sources/Paths/GetTimersAPI.swift new file mode 100644 index 000000000..b906ca6bc --- /dev/null +++ b/Sources/Paths/GetTimersAPI.swift @@ -0,0 +1,41 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the live tv timers. + static func getTimers(parameters: GetTimersParameters? = nil) -> Request { + Request(method: "GET", url: "/LiveTv/Timers", query: parameters?.asQuery, id: "GetTimers") + } + + struct GetTimersParameters { + public var channelID: String? + public var seriesTimerID: String? + public var isActive: Bool? + public var isScheduled: Bool? + + public init(channelID: String? = nil, seriesTimerID: String? = nil, isActive: Bool? = nil, isScheduled: Bool? = nil) { + self.channelID = channelID + self.seriesTimerID = seriesTimerID + self.isActive = isActive + self.isScheduled = isScheduled + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(channelID, forKey: "channelId") + encoder.encode(seriesTimerID, forKey: "seriesTimerId") + encoder.encode(isActive, forKey: "isActive") + encoder.encode(isScheduled, forKey: "isScheduled") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetTrailerRemoteSearchResultsAPI.swift b/Sources/Paths/GetTrailerRemoteSearchResultsAPI.swift new file mode 100644 index 000000000..f65b9943b --- /dev/null +++ b/Sources/Paths/GetTrailerRemoteSearchResultsAPI.swift @@ -0,0 +1,21 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get trailer remote search. + static func getTrailerRemoteSearchResults( + _ body: JellyfinAPI + .TrailerInfoRemoteSearchQuery + ) -> Request<[JellyfinAPI.RemoteSearchResult]> { + Request(method: "POST", url: "/Items/RemoteSearch/Trailer", body: body, id: "GetTrailerRemoteSearchResults") + } +} diff --git a/Sources/Paths/GetTrailersAPI.swift b/Sources/Paths/GetTrailersAPI.swift new file mode 100644 index 000000000..4126a1b61 --- /dev/null +++ b/Sources/Paths/GetTrailersAPI.swift @@ -0,0 +1,366 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Finds movies and trailers similar to a given trailer. + static func getTrailers(parameters: GetTrailersParameters? = nil) -> Request { + Request(method: "GET", url: "/Trailers", query: parameters?.asQuery, id: "GetTrailers") + } + + struct GetTrailersParameters { + public var userID: String? + public var maxOfficialRating: String? + public var hasThemeSong: Bool? + public var hasThemeVideo: Bool? + public var hasSubtitles: Bool? + public var hasSpecialFeature: Bool? + public var hasTrailer: Bool? + public var adjacentTo: String? + public var parentIndexNumber: Int32? + public var hasParentalRating: Bool? + public var isHd: Bool? + public var isIs4K: Bool? + public var locationTypes: [JellyfinAPI.LocationType]? + public var excludeLocationTypes: [JellyfinAPI.LocationType]? + public var isMissing: Bool? + public var isUnaired: Bool? + public var minCommunityRating: Double? + public var minCriticRating: Double? + public var minPremiereDate: Date? + public var minDateLastSaved: Date? + public var minDateLastSavedForUser: Date? + public var maxPremiereDate: Date? + public var hasOverview: Bool? + public var hasImdbID: Bool? + public var hasTmdbID: Bool? + public var hasTvdbID: Bool? + public var isMovie: Bool? + public var isSeries: Bool? + public var isNews: Bool? + public var isKids: Bool? + public var isSports: Bool? + public var excludeItemIDs: [String]? + public var startIndex: Int32? + public var limit: Int32? + public var isRecursive: Bool? + public var searchTerm: String? + public var sortOrder: [JellyfinAPI.SortOrder]? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var filters: [JellyfinAPI.ItemFilter]? + public var isFavorite: Bool? + public var mediaTypes: [String]? + public var imageTypes: [JellyfinAPI.ImageType]? + public var sortBy: [String]? + public var isPlayed: Bool? + public var genres: [String]? + public var officialRatings: [String]? + public var tags: [String]? + public var years: [Int32]? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var person: String? + public var personIDs: [String]? + public var personTypes: [String]? + public var studios: [String]? + public var artists: [String]? + public var excludeArtistIDs: [String]? + public var artistIDs: [String]? + public var albumArtistIDs: [String]? + public var contributingArtistIDs: [String]? + public var albums: [String]? + public var albumIDs: [String]? + public var ids: [String]? + public var videoTypes: [JellyfinAPI.VideoType]? + public var minOfficialRating: String? + public var isLocked: Bool? + public var isPlaceHolder: Bool? + public var hasOfficialRating: Bool? + public var isCollapseBoxSetItems: Bool? + public var minWidth: Int32? + public var minHeight: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var isIs3D: Bool? + public var seriesStatus: [JellyfinAPI.SeriesStatus]? + public var nameStartsWithOrGreater: String? + public var nameStartsWith: String? + public var nameLessThan: String? + public var studioIDs: [String]? + public var genreIDs: [String]? + public var enableTotalRecordCount: Bool? + public var enableImages: Bool? + + public init( + userID: String? = nil, + maxOfficialRating: String? = nil, + hasThemeSong: Bool? = nil, + hasThemeVideo: Bool? = nil, + hasSubtitles: Bool? = nil, + hasSpecialFeature: Bool? = nil, + hasTrailer: Bool? = nil, + adjacentTo: String? = nil, + parentIndexNumber: Int32? = nil, + hasParentalRating: Bool? = nil, + isHd: Bool? = nil, + isIs4K: Bool? = nil, + locationTypes: [JellyfinAPI.LocationType]? = nil, + excludeLocationTypes: [JellyfinAPI.LocationType]? = nil, + isMissing: Bool? = nil, + isUnaired: Bool? = nil, + minCommunityRating: Double? = nil, + minCriticRating: Double? = nil, + minPremiereDate: Date? = nil, + minDateLastSaved: Date? = nil, + minDateLastSavedForUser: Date? = nil, + maxPremiereDate: Date? = nil, + hasOverview: Bool? = nil, + hasImdbID: Bool? = nil, + hasTmdbID: Bool? = nil, + hasTvdbID: Bool? = nil, + isMovie: Bool? = nil, + isSeries: Bool? = nil, + isNews: Bool? = nil, + isKids: Bool? = nil, + isSports: Bool? = nil, + excludeItemIDs: [String]? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + isRecursive: Bool? = nil, + searchTerm: String? = nil, + sortOrder: [JellyfinAPI.SortOrder]? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + filters: [JellyfinAPI.ItemFilter]? = nil, + isFavorite: Bool? = nil, + mediaTypes: [String]? = nil, + imageTypes: [JellyfinAPI.ImageType]? = nil, + sortBy: [String]? = nil, + isPlayed: Bool? = nil, + genres: [String]? = nil, + officialRatings: [String]? = nil, + tags: [String]? = nil, + years: [Int32]? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + person: String? = nil, + personIDs: [String]? = nil, + personTypes: [String]? = nil, + studios: [String]? = nil, + artists: [String]? = nil, + excludeArtistIDs: [String]? = nil, + artistIDs: [String]? = nil, + albumArtistIDs: [String]? = nil, + contributingArtistIDs: [String]? = nil, + albums: [String]? = nil, + albumIDs: [String]? = nil, + ids: [String]? = nil, + videoTypes: [JellyfinAPI.VideoType]? = nil, + minOfficialRating: String? = nil, + isLocked: Bool? = nil, + isPlaceHolder: Bool? = nil, + hasOfficialRating: Bool? = nil, + isCollapseBoxSetItems: Bool? = nil, + minWidth: Int32? = nil, + minHeight: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + isIs3D: Bool? = nil, + seriesStatus: [JellyfinAPI.SeriesStatus]? = nil, + nameStartsWithOrGreater: String? = nil, + nameStartsWith: String? = nil, + nameLessThan: String? = nil, + studioIDs: [String]? = nil, + genreIDs: [String]? = nil, + enableTotalRecordCount: Bool? = nil, + enableImages: Bool? = nil + ) { + self.userID = userID + self.maxOfficialRating = maxOfficialRating + self.hasThemeSong = hasThemeSong + self.hasThemeVideo = hasThemeVideo + self.hasSubtitles = hasSubtitles + self.hasSpecialFeature = hasSpecialFeature + self.hasTrailer = hasTrailer + self.adjacentTo = adjacentTo + self.parentIndexNumber = parentIndexNumber + self.hasParentalRating = hasParentalRating + self.isHd = isHd + self.isIs4K = isIs4K + self.locationTypes = locationTypes + self.excludeLocationTypes = excludeLocationTypes + self.isMissing = isMissing + self.isUnaired = isUnaired + self.minCommunityRating = minCommunityRating + self.minCriticRating = minCriticRating + self.minPremiereDate = minPremiereDate + self.minDateLastSaved = minDateLastSaved + self.minDateLastSavedForUser = minDateLastSavedForUser + self.maxPremiereDate = maxPremiereDate + self.hasOverview = hasOverview + self.hasImdbID = hasImdbID + self.hasTmdbID = hasTmdbID + self.hasTvdbID = hasTvdbID + self.isMovie = isMovie + self.isSeries = isSeries + self.isNews = isNews + self.isKids = isKids + self.isSports = isSports + self.excludeItemIDs = excludeItemIDs + self.startIndex = startIndex + self.limit = limit + self.isRecursive = isRecursive + self.searchTerm = searchTerm + self.sortOrder = sortOrder + self.parentID = parentID + self.fields = fields + self.excludeItemTypes = excludeItemTypes + self.filters = filters + self.isFavorite = isFavorite + self.mediaTypes = mediaTypes + self.imageTypes = imageTypes + self.sortBy = sortBy + self.isPlayed = isPlayed + self.genres = genres + self.officialRatings = officialRatings + self.tags = tags + self.years = years + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.person = person + self.personIDs = personIDs + self.personTypes = personTypes + self.studios = studios + self.artists = artists + self.excludeArtistIDs = excludeArtistIDs + self.artistIDs = artistIDs + self.albumArtistIDs = albumArtistIDs + self.contributingArtistIDs = contributingArtistIDs + self.albums = albums + self.albumIDs = albumIDs + self.ids = ids + self.videoTypes = videoTypes + self.minOfficialRating = minOfficialRating + self.isLocked = isLocked + self.isPlaceHolder = isPlaceHolder + self.hasOfficialRating = hasOfficialRating + self.isCollapseBoxSetItems = isCollapseBoxSetItems + self.minWidth = minWidth + self.minHeight = minHeight + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.isIs3D = isIs3D + self.seriesStatus = seriesStatus + self.nameStartsWithOrGreater = nameStartsWithOrGreater + self.nameStartsWith = nameStartsWith + self.nameLessThan = nameLessThan + self.studioIDs = studioIDs + self.genreIDs = genreIDs + self.enableTotalRecordCount = enableTotalRecordCount + self.enableImages = enableImages + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(maxOfficialRating, forKey: "maxOfficialRating") + encoder.encode(hasThemeSong, forKey: "hasThemeSong") + encoder.encode(hasThemeVideo, forKey: "hasThemeVideo") + encoder.encode(hasSubtitles, forKey: "hasSubtitles") + encoder.encode(hasSpecialFeature, forKey: "hasSpecialFeature") + encoder.encode(hasTrailer, forKey: "hasTrailer") + encoder.encode(adjacentTo, forKey: "adjacentTo") + encoder.encode(parentIndexNumber, forKey: "parentIndexNumber") + encoder.encode(hasParentalRating, forKey: "hasParentalRating") + encoder.encode(isHd, forKey: "isHd") + encoder.encode(isIs4K, forKey: "is4K") + encoder.encode(locationTypes, forKey: "locationTypes") + encoder.encode(excludeLocationTypes, forKey: "excludeLocationTypes") + encoder.encode(isMissing, forKey: "isMissing") + encoder.encode(isUnaired, forKey: "isUnaired") + encoder.encode(minCommunityRating, forKey: "minCommunityRating") + encoder.encode(minCriticRating, forKey: "minCriticRating") + encoder.encode(minPremiereDate, forKey: "minPremiereDate") + encoder.encode(minDateLastSaved, forKey: "minDateLastSaved") + encoder.encode(minDateLastSavedForUser, forKey: "minDateLastSavedForUser") + encoder.encode(maxPremiereDate, forKey: "maxPremiereDate") + encoder.encode(hasOverview, forKey: "hasOverview") + encoder.encode(hasImdbID, forKey: "hasImdbId") + encoder.encode(hasTmdbID, forKey: "hasTmdbId") + encoder.encode(hasTvdbID, forKey: "hasTvdbId") + encoder.encode(isMovie, forKey: "isMovie") + encoder.encode(isSeries, forKey: "isSeries") + encoder.encode(isNews, forKey: "isNews") + encoder.encode(isKids, forKey: "isKids") + encoder.encode(isSports, forKey: "isSports") + encoder.encode(excludeItemIDs, forKey: "excludeItemIds") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(isRecursive, forKey: "recursive") + encoder.encode(searchTerm, forKey: "searchTerm") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(filters, forKey: "filters") + encoder.encode(isFavorite, forKey: "isFavorite") + encoder.encode(mediaTypes, forKey: "mediaTypes") + encoder.encode(imageTypes, forKey: "imageTypes") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(isPlayed, forKey: "isPlayed") + encoder.encode(genres, forKey: "genres") + encoder.encode(officialRatings, forKey: "officialRatings") + encoder.encode(tags, forKey: "tags") + encoder.encode(years, forKey: "years") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(person, forKey: "person") + encoder.encode(personIDs, forKey: "personIds") + encoder.encode(personTypes, forKey: "personTypes") + encoder.encode(studios, forKey: "studios") + encoder.encode(artists, forKey: "artists") + encoder.encode(excludeArtistIDs, forKey: "excludeArtistIds") + encoder.encode(artistIDs, forKey: "artistIds") + encoder.encode(albumArtistIDs, forKey: "albumArtistIds") + encoder.encode(contributingArtistIDs, forKey: "contributingArtistIds") + encoder.encode(albums, forKey: "albums") + encoder.encode(albumIDs, forKey: "albumIds") + encoder.encode(ids, forKey: "ids") + encoder.encode(videoTypes, forKey: "videoTypes") + encoder.encode(minOfficialRating, forKey: "minOfficialRating") + encoder.encode(isLocked, forKey: "isLocked") + encoder.encode(isPlaceHolder, forKey: "isPlaceHolder") + encoder.encode(hasOfficialRating, forKey: "hasOfficialRating") + encoder.encode(isCollapseBoxSetItems, forKey: "collapseBoxSetItems") + encoder.encode(minWidth, forKey: "minWidth") + encoder.encode(minHeight, forKey: "minHeight") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(isIs3D, forKey: "is3D") + encoder.encode(seriesStatus, forKey: "seriesStatus") + encoder.encode(nameStartsWithOrGreater, forKey: "nameStartsWithOrGreater") + encoder.encode(nameStartsWith, forKey: "nameStartsWith") + encoder.encode(nameLessThan, forKey: "nameLessThan") + encoder.encode(studioIDs, forKey: "studioIds") + encoder.encode(genreIDs, forKey: "genreIds") + encoder.encode(enableTotalRecordCount, forKey: "enableTotalRecordCount") + encoder.encode(enableImages, forKey: "enableImages") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetTunerHostTypesAPI.swift b/Sources/Paths/GetTunerHostTypesAPI.swift new file mode 100644 index 000000000..e6bfa28dc --- /dev/null +++ b/Sources/Paths/GetTunerHostTypesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get tuner host types. + static var getTunerHostTypes: Request<[JellyfinAPI.NameIDPair]> { + Request(method: "GET", url: "/LiveTv/TunerHosts/Types", id: "GetTunerHostTypes") + } +} diff --git a/Sources/Paths/GetUniversalAudioStreamAPI.swift b/Sources/Paths/GetUniversalAudioStreamAPI.swift new file mode 100644 index 000000000..79bb46fdf --- /dev/null +++ b/Sources/Paths/GetUniversalAudioStreamAPI.swift @@ -0,0 +1,98 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets an audio stream. + static func getUniversalAudioStream(itemID: String, parameters: GetUniversalAudioStreamParameters? = nil) -> Request { + Request(method: "GET", url: "/Audio/\(itemID)/universal", query: parameters?.asQuery, id: "GetUniversalAudioStream") + } + + struct GetUniversalAudioStreamParameters { + public var container: [String]? + public var mediaSourceID: String? + public var deviceID: String? + public var userID: String? + public var audioCodec: String? + public var maxAudioChannels: Int32? + public var transcodingAudioChannels: Int32? + public var maxStreamingBitrate: Int32? + public var audioBitRate: Int32? + public var startTimeTicks: Int64? + public var transcodingContainer: String? + public var transcodingProtocol: String? + public var maxAudioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var enableRemoteMedia: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var enableRedirection: Bool? + + public init( + container: [String]? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + userID: String? = nil, + audioCodec: String? = nil, + maxAudioChannels: Int32? = nil, + transcodingAudioChannels: Int32? = nil, + maxStreamingBitrate: Int32? = nil, + audioBitRate: Int32? = nil, + startTimeTicks: Int64? = nil, + transcodingContainer: String? = nil, + transcodingProtocol: String? = nil, + maxAudioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + enableRemoteMedia: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + enableRedirection: Bool? = nil + ) { + self.container = container + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.userID = userID + self.audioCodec = audioCodec + self.maxAudioChannels = maxAudioChannels + self.transcodingAudioChannels = transcodingAudioChannels + self.maxStreamingBitrate = maxStreamingBitrate + self.audioBitRate = audioBitRate + self.startTimeTicks = startTimeTicks + self.transcodingContainer = transcodingContainer + self.transcodingProtocol = transcodingProtocol + self.maxAudioSampleRate = maxAudioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.enableRemoteMedia = enableRemoteMedia + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.enableRedirection = enableRedirection + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(container, forKey: "container") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(userID, forKey: "userId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(transcodingAudioChannels, forKey: "transcodingAudioChannels") + encoder.encode(maxStreamingBitrate, forKey: "maxStreamingBitrate") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(transcodingContainer, forKey: "transcodingContainer") + encoder.encode(transcodingProtocol, forKey: "transcodingProtocol") + encoder.encode(maxAudioSampleRate, forKey: "maxAudioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(enableRemoteMedia, forKey: "enableRemoteMedia") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(enableRedirection, forKey: "enableRedirection") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetUpcomingEpisodesAPI.swift b/Sources/Paths/GetUpcomingEpisodesAPI.swift new file mode 100644 index 000000000..e99dcb0e3 --- /dev/null +++ b/Sources/Paths/GetUpcomingEpisodesAPI.swift @@ -0,0 +1,66 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a list of upcoming episodes. + static func getUpcomingEpisodes(parameters: GetUpcomingEpisodesParameters? = nil) -> Request { + Request(method: "GET", url: "/Shows/Upcoming", query: parameters?.asQuery, id: "GetUpcomingEpisodes") + } + + struct GetUpcomingEpisodesParameters { + public var userID: String? + public var startIndex: Int32? + public var limit: Int32? + public var fields: [JellyfinAPI.ItemFields]? + public var parentID: String? + public var enableImages: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var enableUserData: Bool? + + public init( + userID: String? = nil, + startIndex: Int32? = nil, + limit: Int32? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + parentID: String? = nil, + enableImages: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + enableUserData: Bool? = nil + ) { + self.userID = userID + self.startIndex = startIndex + self.limit = limit + self.fields = fields + self.parentID = parentID + self.enableImages = enableImages + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.enableUserData = enableUserData + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(fields, forKey: "fields") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(enableImages, forKey: "enableImages") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(enableUserData, forKey: "enableUserData") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetUserByIDAPI.swift b/Sources/Paths/GetUserByIDAPI.swift new file mode 100644 index 000000000..b09ba548e --- /dev/null +++ b/Sources/Paths/GetUserByIDAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a user by Id. + static func getUserByID(userID: String) -> Request { + Request(method: "GET", url: "/Users/\(userID)", id: "GetUserById") + } +} diff --git a/Sources/Paths/GetUserImageAPI.swift b/Sources/Paths/GetUserImageAPI.swift new file mode 100644 index 000000000..80d98cebc --- /dev/null +++ b/Sources/Paths/GetUserImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get user profile image. + static func getUserImage(userID: String, imageType: String, parameters: GetUserImageParameters? = nil) -> Request { + Request(method: "GET", url: "/Users/\(userID)/Images/\(imageType)", query: parameters?.asQuery, id: "GetUserImage") + } + + struct GetUserImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetUserImageByIndexAPI.swift b/Sources/Paths/GetUserImageByIndexAPI.swift new file mode 100644 index 000000000..b755b20b7 --- /dev/null +++ b/Sources/Paths/GetUserImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get user profile image. + static func getUserImageByIndex( + userID: String, + imageType: String, + imageIndex: Int, + parameters: GetUserImageByIndexParameters? = nil + ) -> Request { + Request( + method: "GET", + url: "/Users/\(userID)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "GetUserImageByIndex" + ) + } + + struct GetUserImageByIndexParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetUserViewsAPI.swift b/Sources/Paths/GetUserViewsAPI.swift new file mode 100644 index 000000000..6bb4bb910 --- /dev/null +++ b/Sources/Paths/GetUserViewsAPI.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get user views. + static func getUserViews(userID: String, parameters: GetUserViewsParameters? = nil) -> Request { + Request(method: "GET", url: "/Users/\(userID)/Views", query: parameters?.asQuery, id: "GetUserViews") + } + + struct GetUserViewsParameters { + public var isIncludeExternalContent: Bool? + public var presetViews: [String]? + public var isIncludeHidden: Bool? + + public init(isIncludeExternalContent: Bool? = nil, presetViews: [String]? = nil, isIncludeHidden: Bool? = nil) { + self.isIncludeExternalContent = isIncludeExternalContent + self.presetViews = presetViews + self.isIncludeHidden = isIncludeHidden + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isIncludeExternalContent, forKey: "includeExternalContent") + encoder.encode(presetViews, forKey: "presetViews") + encoder.encode(isIncludeHidden, forKey: "includeHidden") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetUsersAPI.swift b/Sources/Paths/GetUsersAPI.swift new file mode 100644 index 000000000..4385654c4 --- /dev/null +++ b/Sources/Paths/GetUsersAPI.swift @@ -0,0 +1,25 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets a list of users. + public static func getUsers(isHidden: Bool? = nil, isDisabled: Bool? = nil) -> Request<[JellyfinAPI.UserDto]> { + Request(method: "GET", url: "/Users", query: makeGetUsersQuery(isHidden, isDisabled), id: "GetUsers") + } + + private static func makeGetUsersQuery(_ isHidden: Bool?, _ isDisabled: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isHidden, forKey: "isHidden") + encoder.encode(isDisabled, forKey: "isDisabled") + return encoder.items + } +} diff --git a/Sources/Paths/GetUtcTimeAPI.swift b/Sources/Paths/GetUtcTimeAPI.swift new file mode 100644 index 000000000..b07479c73 --- /dev/null +++ b/Sources/Paths/GetUtcTimeAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the current UTC time. + static var getUtcTime: Request { + Request(method: "GET", url: "/GetUtcTime", id: "GetUtcTime") + } +} diff --git a/Sources/Paths/GetVariantHlsAudioPlaylistAPI.swift b/Sources/Paths/GetVariantHlsAudioPlaylistAPI.swift new file mode 100644 index 000000000..ebf3261a3 --- /dev/null +++ b/Sources/Paths/GetVariantHlsAudioPlaylistAPI.swift @@ -0,0 +1,228 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets an audio stream using HTTP live streaming. + static func getVariantHlsAudioPlaylist(itemID: String, parameters: GetVariantHlsAudioPlaylistParameters? = nil) -> Request { + Request(method: "GET", url: "/Audio/\(itemID)/main.m3u8", query: parameters?.asQuery, id: "GetVariantHlsAudioPlaylist") + } + + struct GetVariantHlsAudioPlaylistParameters { + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var maxStreamingBitrate: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + maxStreamingBitrate: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.maxStreamingBitrate = maxStreamingBitrate + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(maxStreamingBitrate, forKey: "maxStreamingBitrate") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetVariantHlsVideoPlaylistAPI.swift b/Sources/Paths/GetVariantHlsVideoPlaylistAPI.swift new file mode 100644 index 000000000..d36befb63 --- /dev/null +++ b/Sources/Paths/GetVariantHlsVideoPlaylistAPI.swift @@ -0,0 +1,232 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a video stream using HTTP live streaming. + static func getVariantHlsVideoPlaylist(itemID: String, parameters: GetVariantHlsVideoPlaylistParameters? = nil) -> Request { + Request(method: "GET", url: "/Videos/\(itemID)/main.m3u8", query: parameters?.asQuery, id: "GetVariantHlsVideoPlaylist") + } + + struct GetVariantHlsVideoPlaylistParameters { + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetVideoStreamAPI.swift b/Sources/Paths/GetVideoStreamAPI.swift new file mode 100644 index 000000000..cf7db5670 --- /dev/null +++ b/Sources/Paths/GetVideoStreamAPI.swift @@ -0,0 +1,236 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a video stream. + static func getVideoStream(itemID: String, parameters: GetVideoStreamParameters? = nil) -> Request { + Request(method: "GET", url: "/Videos/\(itemID)/stream", query: parameters?.asQuery, id: "GetVideoStream") + } + + struct GetVideoStreamParameters { + public var container: String? + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + container: String? = nil, + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.container = container + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(container, forKey: "container") + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetVideoStreamByContainerAPI.swift b/Sources/Paths/GetVideoStreamByContainerAPI.swift new file mode 100644 index 000000000..badaee3f9 --- /dev/null +++ b/Sources/Paths/GetVideoStreamByContainerAPI.swift @@ -0,0 +1,236 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a video stream. + static func getVideoStreamByContainer( + itemID: String, + container: String, + parameters: GetVideoStreamByContainerParameters? = nil + ) -> Request { + Request(method: "GET", url: "/Videos/\(itemID)/stream.\(container)", query: parameters?.asQuery, id: "GetVideoStreamByContainer") + } + + struct GetVideoStreamByContainerParameters { + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/GetVirtualFoldersAPI.swift b/Sources/Paths/GetVirtualFoldersAPI.swift new file mode 100644 index 000000000..c9467be93 --- /dev/null +++ b/Sources/Paths/GetVirtualFoldersAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets all virtual folders. + static var getVirtualFolders: Request<[JellyfinAPI.VirtualFolderInfo]> { + Request(method: "GET", url: "/Library/VirtualFolders", id: "GetVirtualFolders") + } +} diff --git a/Sources/Paths/GetWakeOnLanInfoAPI.swift b/Sources/Paths/GetWakeOnLanInfoAPI.swift new file mode 100644 index 000000000..4ed090160 --- /dev/null +++ b/Sources/Paths/GetWakeOnLanInfoAPI.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets wake on lan information. + @available(*, deprecated, message: "Deprecated") + static var getWakeOnLanInfo: Request<[JellyfinAPI.WakeOnLanInfo]> { + Request(method: "GET", url: "/System/WakeOnLanInfo", id: "GetWakeOnLanInfo") + } +} diff --git a/Sources/Paths/GetYearAPI.swift b/Sources/Paths/GetYearAPI.swift new file mode 100644 index 000000000..940779190 --- /dev/null +++ b/Sources/Paths/GetYearAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Gets a year. + public static func getYear(year: Int, userID: String? = nil) -> Request { + Request(method: "GET", url: "/Years/\(year)", query: makeGetYearQuery(userID), id: "GetYear") + } + + private static func makeGetYearQuery(_ userID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(userID, forKey: "userId") + return encoder.items + } +} diff --git a/Sources/Paths/GetYearsAPI.swift b/Sources/Paths/GetYearsAPI.swift new file mode 100644 index 000000000..d7ba97cb5 --- /dev/null +++ b/Sources/Paths/GetYearsAPI.swift @@ -0,0 +1,90 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get years. + static func getYears(parameters: GetYearsParameters? = nil) -> Request { + Request(method: "GET", url: "/Years", query: parameters?.asQuery, id: "GetYears") + } + + struct GetYearsParameters { + public var startIndex: Int32? + public var limit: Int32? + public var sortOrder: [JellyfinAPI.SortOrder]? + public var parentID: String? + public var fields: [JellyfinAPI.ItemFields]? + public var excludeItemTypes: [JellyfinAPI.BaseItemKind]? + public var includeItemTypes: [JellyfinAPI.BaseItemKind]? + public var mediaTypes: [String]? + public var sortBy: [String]? + public var enableUserData: Bool? + public var imageTypeLimit: Int32? + public var enableImageTypes: [JellyfinAPI.ImageType]? + public var userID: String? + public var isRecursive: Bool? + public var enableImages: Bool? + + public init( + startIndex: Int32? = nil, + limit: Int32? = nil, + sortOrder: [JellyfinAPI.SortOrder]? = nil, + parentID: String? = nil, + fields: [JellyfinAPI.ItemFields]? = nil, + excludeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + includeItemTypes: [JellyfinAPI.BaseItemKind]? = nil, + mediaTypes: [String]? = nil, + sortBy: [String]? = nil, + enableUserData: Bool? = nil, + imageTypeLimit: Int32? = nil, + enableImageTypes: [JellyfinAPI.ImageType]? = nil, + userID: String? = nil, + isRecursive: Bool? = nil, + enableImages: Bool? = nil + ) { + self.startIndex = startIndex + self.limit = limit + self.sortOrder = sortOrder + self.parentID = parentID + self.fields = fields + self.excludeItemTypes = excludeItemTypes + self.includeItemTypes = includeItemTypes + self.mediaTypes = mediaTypes + self.sortBy = sortBy + self.enableUserData = enableUserData + self.imageTypeLimit = imageTypeLimit + self.enableImageTypes = enableImageTypes + self.userID = userID + self.isRecursive = isRecursive + self.enableImages = enableImages + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(startIndex, forKey: "startIndex") + encoder.encode(limit, forKey: "limit") + encoder.encode(sortOrder, forKey: "sortOrder") + encoder.encode(parentID, forKey: "parentId") + encoder.encode(fields, forKey: "fields") + encoder.encode(excludeItemTypes, forKey: "excludeItemTypes") + encoder.encode(includeItemTypes, forKey: "includeItemTypes") + encoder.encode(mediaTypes, forKey: "mediaTypes") + encoder.encode(sortBy, forKey: "sortBy") + encoder.encode(enableUserData, forKey: "enableUserData") + encoder.encode(imageTypeLimit, forKey: "imageTypeLimit") + encoder.encode(enableImageTypes, forKey: "enableImageTypes") + encoder.encode(userID, forKey: "userId") + encoder.encode(isRecursive, forKey: "recursive") + encoder.encode(enableImages, forKey: "enableImages") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadArtistImageAPI.swift b/Sources/Paths/HeadArtistImageAPI.swift new file mode 100644 index 000000000..fbe985836 --- /dev/null +++ b/Sources/Paths/HeadArtistImageAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get artist image by name. + static func headArtistImage( + name: String, + imageType: String, + imageIndex: Int, + parameters: HeadArtistImageParameters? = nil + ) -> Request { + Request( + method: "HEAD", + url: "/Artists/\(name)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "HeadArtistImage" + ) + } + + struct HeadArtistImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadAudioStreamAPI.swift b/Sources/Paths/HeadAudioStreamAPI.swift new file mode 100644 index 000000000..46f801c0a --- /dev/null +++ b/Sources/Paths/HeadAudioStreamAPI.swift @@ -0,0 +1,228 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets an audio stream. + static func headAudioStream(itemID: String, parameters: HeadAudioStreamParameters? = nil) -> Request { + Request(method: "HEAD", url: "/Audio/\(itemID)/stream", query: parameters?.asQuery, id: "HeadAudioStream") + } + + struct HeadAudioStreamParameters { + public var container: String? + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + container: String? = nil, + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.container = container + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(container, forKey: "container") + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadAudioStreamByContainerAPI.swift b/Sources/Paths/HeadAudioStreamByContainerAPI.swift new file mode 100644 index 000000000..58a3e2f46 --- /dev/null +++ b/Sources/Paths/HeadAudioStreamByContainerAPI.swift @@ -0,0 +1,228 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets an audio stream. + static func headAudioStreamByContainer( + itemID: String, + container: String, + parameters: HeadAudioStreamByContainerParameters? = nil + ) -> Request { + Request(method: "HEAD", url: "/Audio/\(itemID)/stream.\(container)", query: parameters?.asQuery, id: "HeadAudioStreamByContainer") + } + + struct HeadAudioStreamByContainerParameters { + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadGenreImageAPI.swift b/Sources/Paths/HeadGenreImageAPI.swift new file mode 100644 index 000000000..f6f8c83a9 --- /dev/null +++ b/Sources/Paths/HeadGenreImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get genre image by name. + static func headGenreImage(name: String, imageType: String, parameters: HeadGenreImageParameters? = nil) -> Request { + Request(method: "HEAD", url: "/Genres/\(name)/Images/\(imageType)", query: parameters?.asQuery, id: "HeadGenreImage") + } + + struct HeadGenreImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadGenreImageByIndexAPI.swift b/Sources/Paths/HeadGenreImageByIndexAPI.swift new file mode 100644 index 000000000..3da6f8daf --- /dev/null +++ b/Sources/Paths/HeadGenreImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get genre image by name. + static func headGenreImageByIndex( + name: String, + imageType: String, + imageIndex: Int, + parameters: HeadGenreImageByIndexParameters? = nil + ) -> Request { + Request( + method: "HEAD", + url: "/Genres/\(name)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "HeadGenreImageByIndex" + ) + } + + struct HeadGenreImageByIndexParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadItemImage2API.swift b/Sources/Paths/HeadItemImage2API.swift new file mode 100644 index 000000000..4d06179e8 --- /dev/null +++ b/Sources/Paths/HeadItemImage2API.swift @@ -0,0 +1,86 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the item's image. + static func headItemImage2( + itemID: String, + imageType: String, + maxWidth: Int, + maxHeight: Int, + tag: String, + format: String, + percentPlayed: String, + unplayedCount: Int, + imageIndex: Int, + parameters: HeadItemImage2Parameters? = nil + ) -> Request { + Request( + method: "HEAD", + url: "/Items/\(itemID)/Images/\(imageType)/\(imageIndex)/\(tag)/\(format)/\(maxWidth)/\(maxHeight)/\(percentPlayed)/\(unplayedCount)", + query: parameters?.asQuery, + id: "HeadItemImage2" + ) + } + + struct HeadItemImage2Parameters { + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public init( + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadItemImageAPI.swift b/Sources/Paths/HeadItemImageAPI.swift new file mode 100644 index 000000000..aa4ce17f7 --- /dev/null +++ b/Sources/Paths/HeadItemImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the item's image. + static func headItemImage(itemID: String, imageType: String, parameters: HeadItemImageParameters? = nil) -> Request { + Request(method: "HEAD", url: "/Items/\(itemID)/Images/\(imageType)", query: parameters?.asQuery, id: "HeadItemImage") + } + + struct HeadItemImageParameters { + public var maxWidth: Int32? + public var maxHeight: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var tag: String? + public var isCropWhitespace: Bool? + public var format: Format? + public var isAddPlayedIndicator: Bool? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + tag: String? = nil, + isCropWhitespace: Bool? = nil, + format: Format? = nil, + isAddPlayedIndicator: Bool? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.tag = tag + self.isCropWhitespace = isCropWhitespace + self.format = format + self.isAddPlayedIndicator = isAddPlayedIndicator + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(tag, forKey: "tag") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(format, forKey: "format") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadItemImageByIndexAPI.swift b/Sources/Paths/HeadItemImageByIndexAPI.swift new file mode 100644 index 000000000..40cd6ad76 --- /dev/null +++ b/Sources/Paths/HeadItemImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the item's image. + static func headItemImageByIndex( + itemID: String, + imageType: String, + imageIndex: Int, + parameters: HeadItemImageByIndexParameters? = nil + ) -> Request { + Request( + method: "HEAD", + url: "/Items/\(itemID)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "HeadItemImageByIndex" + ) + } + + struct HeadItemImageByIndexParameters { + public var maxWidth: Int32? + public var maxHeight: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var tag: String? + public var isCropWhitespace: Bool? + public var format: Format? + public var isAddPlayedIndicator: Bool? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + tag: String? = nil, + isCropWhitespace: Bool? = nil, + format: Format? = nil, + isAddPlayedIndicator: Bool? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.tag = tag + self.isCropWhitespace = isCropWhitespace + self.format = format + self.isAddPlayedIndicator = isAddPlayedIndicator + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(tag, forKey: "tag") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(format, forKey: "format") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadMasterHlsAudioPlaylistAPI.swift b/Sources/Paths/HeadMasterHlsAudioPlaylistAPI.swift new file mode 100644 index 000000000..ff8c3435f --- /dev/null +++ b/Sources/Paths/HeadMasterHlsAudioPlaylistAPI.swift @@ -0,0 +1,232 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets an audio hls playlist stream. + static func headMasterHlsAudioPlaylist(itemID: String, parameters: HeadMasterHlsAudioPlaylistParameters) -> Request { + Request(method: "HEAD", url: "/Audio/\(itemID)/master.m3u8", query: parameters.asQuery, id: "HeadMasterHlsAudioPlaylist") + } + + struct HeadMasterHlsAudioPlaylistParameters { + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var maxStreamingBitrate: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + public var enableAdaptiveBitrateStreaming: Bool? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + maxStreamingBitrate: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil, + enableAdaptiveBitrateStreaming: Bool? = nil + ) { + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.maxStreamingBitrate = maxStreamingBitrate + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + self.enableAdaptiveBitrateStreaming = enableAdaptiveBitrateStreaming + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(maxStreamingBitrate, forKey: "maxStreamingBitrate") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + encoder.encode(enableAdaptiveBitrateStreaming, forKey: "enableAdaptiveBitrateStreaming") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadMasterHlsVideoPlaylistAPI.swift b/Sources/Paths/HeadMasterHlsVideoPlaylistAPI.swift new file mode 100644 index 000000000..06db7d69c --- /dev/null +++ b/Sources/Paths/HeadMasterHlsVideoPlaylistAPI.swift @@ -0,0 +1,236 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a video hls playlist stream. + static func headMasterHlsVideoPlaylist(itemID: String, parameters: HeadMasterHlsVideoPlaylistParameters) -> Request { + Request(method: "HEAD", url: "/Videos/\(itemID)/master.m3u8", query: parameters.asQuery, id: "HeadMasterHlsVideoPlaylist") + } + + struct HeadMasterHlsVideoPlaylistParameters { + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + public var enableAdaptiveBitrateStreaming: Bool? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil, + enableAdaptiveBitrateStreaming: Bool? = nil + ) { + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + self.enableAdaptiveBitrateStreaming = enableAdaptiveBitrateStreaming + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + encoder.encode(enableAdaptiveBitrateStreaming, forKey: "enableAdaptiveBitrateStreaming") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadMusicGenreImageAPI.swift b/Sources/Paths/HeadMusicGenreImageAPI.swift new file mode 100644 index 000000000..89f7c98b5 --- /dev/null +++ b/Sources/Paths/HeadMusicGenreImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get music genre image by name. + static func headMusicGenreImage(name: String, imageType: String, parameters: HeadMusicGenreImageParameters? = nil) -> Request { + Request(method: "HEAD", url: "/MusicGenres/\(name)/Images/\(imageType)", query: parameters?.asQuery, id: "HeadMusicGenreImage") + } + + struct HeadMusicGenreImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadMusicGenreImageByIndexAPI.swift b/Sources/Paths/HeadMusicGenreImageByIndexAPI.swift new file mode 100644 index 000000000..b9ba0c3fc --- /dev/null +++ b/Sources/Paths/HeadMusicGenreImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get music genre image by name. + static func headMusicGenreImageByIndex( + name: String, + imageType: String, + imageIndex: Int, + parameters: HeadMusicGenreImageByIndexParameters? = nil + ) -> Request { + Request( + method: "HEAD", + url: "/MusicGenres/\(name)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "HeadMusicGenreImageByIndex" + ) + } + + struct HeadMusicGenreImageByIndexParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadPersonImageAPI.swift b/Sources/Paths/HeadPersonImageAPI.swift new file mode 100644 index 000000000..a06e5e962 --- /dev/null +++ b/Sources/Paths/HeadPersonImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get person image by name. + static func headPersonImage(name: String, imageType: String, parameters: HeadPersonImageParameters? = nil) -> Request { + Request(method: "HEAD", url: "/Persons/\(name)/Images/\(imageType)", query: parameters?.asQuery, id: "HeadPersonImage") + } + + struct HeadPersonImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadPersonImageByIndexAPI.swift b/Sources/Paths/HeadPersonImageByIndexAPI.swift new file mode 100644 index 000000000..384e09c33 --- /dev/null +++ b/Sources/Paths/HeadPersonImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get person image by name. + static func headPersonImageByIndex( + name: String, + imageType: String, + imageIndex: Int, + parameters: HeadPersonImageByIndexParameters? = nil + ) -> Request { + Request( + method: "HEAD", + url: "/Persons/\(name)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "HeadPersonImageByIndex" + ) + } + + struct HeadPersonImageByIndexParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadStudioImageAPI.swift b/Sources/Paths/HeadStudioImageAPI.swift new file mode 100644 index 000000000..132183b34 --- /dev/null +++ b/Sources/Paths/HeadStudioImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get studio image by name. + static func headStudioImage(name: String, imageType: String, parameters: HeadStudioImageParameters? = nil) -> Request { + Request(method: "HEAD", url: "/Studios/\(name)/Images/\(imageType)", query: parameters?.asQuery, id: "HeadStudioImage") + } + + struct HeadStudioImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadStudioImageByIndexAPI.swift b/Sources/Paths/HeadStudioImageByIndexAPI.swift new file mode 100644 index 000000000..51267ad7c --- /dev/null +++ b/Sources/Paths/HeadStudioImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get studio image by name. + static func headStudioImageByIndex( + name: String, + imageType: String, + imageIndex: Int, + parameters: HeadStudioImageByIndexParameters? = nil + ) -> Request { + Request( + method: "HEAD", + url: "/Studios/\(name)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "HeadStudioImageByIndex" + ) + } + + struct HeadStudioImageByIndexParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadUniversalAudioStreamAPI.swift b/Sources/Paths/HeadUniversalAudioStreamAPI.swift new file mode 100644 index 000000000..0759d57f3 --- /dev/null +++ b/Sources/Paths/HeadUniversalAudioStreamAPI.swift @@ -0,0 +1,98 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets an audio stream. + static func headUniversalAudioStream(itemID: String, parameters: HeadUniversalAudioStreamParameters? = nil) -> Request { + Request(method: "HEAD", url: "/Audio/\(itemID)/universal", query: parameters?.asQuery, id: "HeadUniversalAudioStream") + } + + struct HeadUniversalAudioStreamParameters { + public var container: [String]? + public var mediaSourceID: String? + public var deviceID: String? + public var userID: String? + public var audioCodec: String? + public var maxAudioChannels: Int32? + public var transcodingAudioChannels: Int32? + public var maxStreamingBitrate: Int32? + public var audioBitRate: Int32? + public var startTimeTicks: Int64? + public var transcodingContainer: String? + public var transcodingProtocol: String? + public var maxAudioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var enableRemoteMedia: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var enableRedirection: Bool? + + public init( + container: [String]? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + userID: String? = nil, + audioCodec: String? = nil, + maxAudioChannels: Int32? = nil, + transcodingAudioChannels: Int32? = nil, + maxStreamingBitrate: Int32? = nil, + audioBitRate: Int32? = nil, + startTimeTicks: Int64? = nil, + transcodingContainer: String? = nil, + transcodingProtocol: String? = nil, + maxAudioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + enableRemoteMedia: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + enableRedirection: Bool? = nil + ) { + self.container = container + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.userID = userID + self.audioCodec = audioCodec + self.maxAudioChannels = maxAudioChannels + self.transcodingAudioChannels = transcodingAudioChannels + self.maxStreamingBitrate = maxStreamingBitrate + self.audioBitRate = audioBitRate + self.startTimeTicks = startTimeTicks + self.transcodingContainer = transcodingContainer + self.transcodingProtocol = transcodingProtocol + self.maxAudioSampleRate = maxAudioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.enableRemoteMedia = enableRemoteMedia + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.enableRedirection = enableRedirection + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(container, forKey: "container") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(userID, forKey: "userId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(transcodingAudioChannels, forKey: "transcodingAudioChannels") + encoder.encode(maxStreamingBitrate, forKey: "maxStreamingBitrate") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(transcodingContainer, forKey: "transcodingContainer") + encoder.encode(transcodingProtocol, forKey: "transcodingProtocol") + encoder.encode(maxAudioSampleRate, forKey: "maxAudioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(enableRemoteMedia, forKey: "enableRemoteMedia") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(enableRedirection, forKey: "enableRedirection") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadUserImageAPI.swift b/Sources/Paths/HeadUserImageAPI.swift new file mode 100644 index 000000000..f86224d90 --- /dev/null +++ b/Sources/Paths/HeadUserImageAPI.swift @@ -0,0 +1,100 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get user profile image. + static func headUserImage(userID: String, imageType: String, parameters: HeadUserImageParameters? = nil) -> Request { + Request(method: "HEAD", url: "/Users/\(userID)/Images/\(imageType)", query: parameters?.asQuery, id: "HeadUserImage") + } + + struct HeadUserImageParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + public var imageIndex: Int32? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil, + imageIndex: Int32? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + self.imageIndex = imageIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + encoder.encode(imageIndex, forKey: "imageIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadUserImageByIndexAPI.swift b/Sources/Paths/HeadUserImageByIndexAPI.swift new file mode 100644 index 000000000..ce0e6a0ff --- /dev/null +++ b/Sources/Paths/HeadUserImageByIndexAPI.swift @@ -0,0 +1,106 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Get user profile image. + static func headUserImageByIndex( + userID: String, + imageType: String, + imageIndex: Int, + parameters: HeadUserImageByIndexParameters? = nil + ) -> Request { + Request( + method: "HEAD", + url: "/Users/\(userID)/Images/\(imageType)/\(imageIndex)", + query: parameters?.asQuery, + id: "HeadUserImageByIndex" + ) + } + + struct HeadUserImageByIndexParameters { + public var tag: String? + public var format: Format? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var percentPlayed: Double? + public var unplayedCount: Int32? + public var width: Int32? + public var height: Int32? + public var quality: Int32? + public var fillWidth: Int32? + public var fillHeight: Int32? + public var isCropWhitespace: Bool? + public var isAddPlayedIndicator: Bool? + public var blur: Int32? + public var backgroundColor: String? + public var foregroundLayer: String? + + public typealias Format = JellyfinAPI.ImageFormat + + public init( + tag: String? = nil, + format: Format? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + percentPlayed: Double? = nil, + unplayedCount: Int32? = nil, + width: Int32? = nil, + height: Int32? = nil, + quality: Int32? = nil, + fillWidth: Int32? = nil, + fillHeight: Int32? = nil, + isCropWhitespace: Bool? = nil, + isAddPlayedIndicator: Bool? = nil, + blur: Int32? = nil, + backgroundColor: String? = nil, + foregroundLayer: String? = nil + ) { + self.tag = tag + self.format = format + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.percentPlayed = percentPlayed + self.unplayedCount = unplayedCount + self.width = width + self.height = height + self.quality = quality + self.fillWidth = fillWidth + self.fillHeight = fillHeight + self.isCropWhitespace = isCropWhitespace + self.isAddPlayedIndicator = isAddPlayedIndicator + self.blur = blur + self.backgroundColor = backgroundColor + self.foregroundLayer = foregroundLayer + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tag, forKey: "tag") + encoder.encode(format, forKey: "format") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(percentPlayed, forKey: "percentPlayed") + encoder.encode(unplayedCount, forKey: "unplayedCount") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(quality, forKey: "quality") + encoder.encode(fillWidth, forKey: "fillWidth") + encoder.encode(fillHeight, forKey: "fillHeight") + encoder.encode(isCropWhitespace, forKey: "cropWhitespace") + encoder.encode(isAddPlayedIndicator, forKey: "addPlayedIndicator") + encoder.encode(blur, forKey: "blur") + encoder.encode(backgroundColor, forKey: "backgroundColor") + encoder.encode(foregroundLayer, forKey: "foregroundLayer") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadVideoStreamAPI.swift b/Sources/Paths/HeadVideoStreamAPI.swift new file mode 100644 index 000000000..7e26a2b97 --- /dev/null +++ b/Sources/Paths/HeadVideoStreamAPI.swift @@ -0,0 +1,236 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a video stream. + static func headVideoStream(itemID: String, parameters: HeadVideoStreamParameters? = nil) -> Request { + Request(method: "HEAD", url: "/Videos/\(itemID)/stream", query: parameters?.asQuery, id: "HeadVideoStream") + } + + struct HeadVideoStreamParameters { + public var container: String? + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + container: String? = nil, + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.container = container + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(container, forKey: "container") + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/HeadVideoStreamByContainerAPI.swift b/Sources/Paths/HeadVideoStreamByContainerAPI.swift new file mode 100644 index 000000000..1b2fdf0df --- /dev/null +++ b/Sources/Paths/HeadVideoStreamByContainerAPI.swift @@ -0,0 +1,236 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets a video stream. + static func headVideoStreamByContainer( + itemID: String, + container: String, + parameters: HeadVideoStreamByContainerParameters? = nil + ) -> Request { + Request(method: "HEAD", url: "/Videos/\(itemID)/stream.\(container)", query: parameters?.asQuery, id: "HeadVideoStreamByContainer") + } + + struct HeadVideoStreamByContainerParameters { + public var isStatic: Bool? + public var params: String? + public var tag: String? + public var deviceProfileID: String? + public var playSessionID: String? + public var segmentContainer: String? + public var segmentLength: Int32? + public var minSegments: Int32? + public var mediaSourceID: String? + public var deviceID: String? + public var audioCodec: String? + public var enableAutoStreamCopy: Bool? + public var allowVideoStreamCopy: Bool? + public var allowAudioStreamCopy: Bool? + public var isBreakOnNonKeyFrames: Bool? + public var audioSampleRate: Int32? + public var maxAudioBitDepth: Int32? + public var audioBitRate: Int32? + public var audioChannels: Int32? + public var maxAudioChannels: Int32? + public var profile: String? + public var level: String? + public var framerate: Float? + public var maxFramerate: Float? + public var isCopyTimestamps: Bool? + public var startTimeTicks: Int64? + public var width: Int32? + public var height: Int32? + public var maxWidth: Int32? + public var maxHeight: Int32? + public var videoBitRate: Int32? + public var subtitleStreamIndex: Int32? + public var subtitleMethod: SubtitleMethod? + public var maxRefFrames: Int32? + public var maxVideoBitDepth: Int32? + public var requireAvc: Bool? + public var isDeInterlace: Bool? + public var requireNonAnamorphic: Bool? + public var transcodingMaxAudioChannels: Int32? + public var cpuCoreLimit: Int32? + public var liveStreamID: String? + public var enableMpegtsM2TsMode: Bool? + public var videoCodec: String? + public var subtitleCodec: String? + public var transcodeReasons: String? + public var audioStreamIndex: Int32? + public var videoStreamIndex: Int32? + public var context: Context? + public var streamOptions: StreamOptions? + + public typealias SubtitleMethod = JellyfinAPI.SubtitleDeliveryMethod + + public typealias Context = JellyfinAPI.EncodingContext + + public typealias StreamOptions = [String: String] + + public init( + isStatic: Bool? = nil, + params: String? = nil, + tag: String? = nil, + deviceProfileID: String? = nil, + playSessionID: String? = nil, + segmentContainer: String? = nil, + segmentLength: Int32? = nil, + minSegments: Int32? = nil, + mediaSourceID: String? = nil, + deviceID: String? = nil, + audioCodec: String? = nil, + enableAutoStreamCopy: Bool? = nil, + allowVideoStreamCopy: Bool? = nil, + allowAudioStreamCopy: Bool? = nil, + isBreakOnNonKeyFrames: Bool? = nil, + audioSampleRate: Int32? = nil, + maxAudioBitDepth: Int32? = nil, + audioBitRate: Int32? = nil, + audioChannels: Int32? = nil, + maxAudioChannels: Int32? = nil, + profile: String? = nil, + level: String? = nil, + framerate: Float? = nil, + maxFramerate: Float? = nil, + isCopyTimestamps: Bool? = nil, + startTimeTicks: Int64? = nil, + width: Int32? = nil, + height: Int32? = nil, + maxWidth: Int32? = nil, + maxHeight: Int32? = nil, + videoBitRate: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + subtitleMethod: SubtitleMethod? = nil, + maxRefFrames: Int32? = nil, + maxVideoBitDepth: Int32? = nil, + requireAvc: Bool? = nil, + isDeInterlace: Bool? = nil, + requireNonAnamorphic: Bool? = nil, + transcodingMaxAudioChannels: Int32? = nil, + cpuCoreLimit: Int32? = nil, + liveStreamID: String? = nil, + enableMpegtsM2TsMode: Bool? = nil, + videoCodec: String? = nil, + subtitleCodec: String? = nil, + transcodeReasons: String? = nil, + audioStreamIndex: Int32? = nil, + videoStreamIndex: Int32? = nil, + context: Context? = nil, + streamOptions: StreamOptions? = nil + ) { + self.isStatic = isStatic + self.params = params + self.tag = tag + self.deviceProfileID = deviceProfileID + self.playSessionID = playSessionID + self.segmentContainer = segmentContainer + self.segmentLength = segmentLength + self.minSegments = minSegments + self.mediaSourceID = mediaSourceID + self.deviceID = deviceID + self.audioCodec = audioCodec + self.enableAutoStreamCopy = enableAutoStreamCopy + self.allowVideoStreamCopy = allowVideoStreamCopy + self.allowAudioStreamCopy = allowAudioStreamCopy + self.isBreakOnNonKeyFrames = isBreakOnNonKeyFrames + self.audioSampleRate = audioSampleRate + self.maxAudioBitDepth = maxAudioBitDepth + self.audioBitRate = audioBitRate + self.audioChannels = audioChannels + self.maxAudioChannels = maxAudioChannels + self.profile = profile + self.level = level + self.framerate = framerate + self.maxFramerate = maxFramerate + self.isCopyTimestamps = isCopyTimestamps + self.startTimeTicks = startTimeTicks + self.width = width + self.height = height + self.maxWidth = maxWidth + self.maxHeight = maxHeight + self.videoBitRate = videoBitRate + self.subtitleStreamIndex = subtitleStreamIndex + self.subtitleMethod = subtitleMethod + self.maxRefFrames = maxRefFrames + self.maxVideoBitDepth = maxVideoBitDepth + self.requireAvc = requireAvc + self.isDeInterlace = isDeInterlace + self.requireNonAnamorphic = requireNonAnamorphic + self.transcodingMaxAudioChannels = transcodingMaxAudioChannels + self.cpuCoreLimit = cpuCoreLimit + self.liveStreamID = liveStreamID + self.enableMpegtsM2TsMode = enableMpegtsM2TsMode + self.videoCodec = videoCodec + self.subtitleCodec = subtitleCodec + self.transcodeReasons = transcodeReasons + self.audioStreamIndex = audioStreamIndex + self.videoStreamIndex = videoStreamIndex + self.context = context + self.streamOptions = streamOptions + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isStatic, forKey: "static") + encoder.encode(params, forKey: "params") + encoder.encode(tag, forKey: "tag") + encoder.encode(deviceProfileID, forKey: "deviceProfileId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(segmentContainer, forKey: "segmentContainer") + encoder.encode(segmentLength, forKey: "segmentLength") + encoder.encode(minSegments, forKey: "minSegments") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(deviceID, forKey: "deviceId") + encoder.encode(audioCodec, forKey: "audioCodec") + encoder.encode(enableAutoStreamCopy, forKey: "enableAutoStreamCopy") + encoder.encode(allowVideoStreamCopy, forKey: "allowVideoStreamCopy") + encoder.encode(allowAudioStreamCopy, forKey: "allowAudioStreamCopy") + encoder.encode(isBreakOnNonKeyFrames, forKey: "breakOnNonKeyFrames") + encoder.encode(audioSampleRate, forKey: "audioSampleRate") + encoder.encode(maxAudioBitDepth, forKey: "maxAudioBitDepth") + encoder.encode(audioBitRate, forKey: "audioBitRate") + encoder.encode(audioChannels, forKey: "audioChannels") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(profile, forKey: "profile") + encoder.encode(level, forKey: "level") + encoder.encode(framerate, forKey: "framerate") + encoder.encode(maxFramerate, forKey: "maxFramerate") + encoder.encode(isCopyTimestamps, forKey: "copyTimestamps") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(width, forKey: "width") + encoder.encode(height, forKey: "height") + encoder.encode(maxWidth, forKey: "maxWidth") + encoder.encode(maxHeight, forKey: "maxHeight") + encoder.encode(videoBitRate, forKey: "videoBitRate") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(subtitleMethod, forKey: "subtitleMethod") + encoder.encode(maxRefFrames, forKey: "maxRefFrames") + encoder.encode(maxVideoBitDepth, forKey: "maxVideoBitDepth") + encoder.encode(requireAvc, forKey: "requireAvc") + encoder.encode(isDeInterlace, forKey: "deInterlace") + encoder.encode(requireNonAnamorphic, forKey: "requireNonAnamorphic") + encoder.encode(transcodingMaxAudioChannels, forKey: "transcodingMaxAudioChannels") + encoder.encode(cpuCoreLimit, forKey: "cpuCoreLimit") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(enableMpegtsM2TsMode, forKey: "enableMpegtsM2TsMode") + encoder.encode(videoCodec, forKey: "videoCodec") + encoder.encode(subtitleCodec, forKey: "subtitleCodec") + encoder.encode(transcodeReasons, forKey: "transcodeReasons") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(videoStreamIndex, forKey: "videoStreamIndex") + encoder.encode(context, forKey: "context") + encoder.encode(streamOptions, forKey: "streamOptions") + return encoder.items + } + } +} diff --git a/Sources/Paths/InitiateAPI.swift b/Sources/Paths/InitiateAPI.swift new file mode 100644 index 000000000..5252d799f --- /dev/null +++ b/Sources/Paths/InitiateAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Initiate a new quick connect request. + static var initiate: Request { + Request(method: "GET", url: "/QuickConnect/Initiate", id: "Initiate") + } +} diff --git a/Sources/Paths/InstallPackageAPI.swift b/Sources/Paths/InstallPackageAPI.swift new file mode 100644 index 000000000..7f7723f56 --- /dev/null +++ b/Sources/Paths/InstallPackageAPI.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Installs a package. + static func installPackage(name: String, parameters: InstallPackageParameters? = nil) -> Request { + Request(method: "POST", url: "/Packages/Installed/\(name)", query: parameters?.asQuery, id: "InstallPackage") + } + + struct InstallPackageParameters { + public var assemblyGuid: String? + public var version: String? + public var repositoryURL: String? + + public init(assemblyGuid: String? = nil, version: String? = nil, repositoryURL: String? = nil) { + self.assemblyGuid = assemblyGuid + self.version = version + self.repositoryURL = repositoryURL + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(assemblyGuid, forKey: "assemblyGuid") + encoder.encode(version, forKey: "version") + encoder.encode(repositoryURL, forKey: "repositoryUrl") + return encoder.items + } + } +} diff --git a/Sources/Paths/LogFileAPI.swift b/Sources/Paths/LogFileAPI.swift new file mode 100644 index 000000000..9134eca6e --- /dev/null +++ b/Sources/Paths/LogFileAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Upload a document. + static func logFile(_ body: String? = nil) -> Request { + Request(method: "POST", url: "/ClientLog/Document", body: body, id: "LogFile") + } +} diff --git a/Sources/Paths/MarkFavoriteItemAPI.swift b/Sources/Paths/MarkFavoriteItemAPI.swift new file mode 100644 index 000000000..305336543 --- /dev/null +++ b/Sources/Paths/MarkFavoriteItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Marks an item as a favorite. + static func markFavoriteItem(userID: String, itemID: String) -> Request { + Request(method: "POST", url: "/Users/\(userID)/FavoriteItems/\(itemID)", id: "MarkFavoriteItem") + } +} diff --git a/Sources/Paths/MarkPlayedItemAPI.swift b/Sources/Paths/MarkPlayedItemAPI.swift new file mode 100644 index 000000000..ef591f6b6 --- /dev/null +++ b/Sources/Paths/MarkPlayedItemAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Marks an item as played for user. + public static func markPlayedItem(userID: String, itemID: String, datePlayed: Date? = nil) -> Request { + Request( + method: "POST", + url: "/Users/\(userID)/PlayedItems/\(itemID)", + query: makeMarkPlayedItemQuery(datePlayed), + id: "MarkPlayedItem" + ) + } + + private static func makeMarkPlayedItemQuery(_ datePlayed: Date?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(datePlayed, forKey: "datePlayed") + return encoder.items + } +} diff --git a/Sources/Paths/MarkUnplayedItemAPI.swift b/Sources/Paths/MarkUnplayedItemAPI.swift new file mode 100644 index 000000000..341258350 --- /dev/null +++ b/Sources/Paths/MarkUnplayedItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Marks an item as unplayed for user. + static func markUnplayedItem(userID: String, itemID: String) -> Request { + Request(method: "DELETE", url: "/Users/\(userID)/PlayedItems/\(itemID)", id: "MarkUnplayedItem") + } +} diff --git a/Sources/Paths/MergeVersionsAPI.swift b/Sources/Paths/MergeVersionsAPI.swift new file mode 100644 index 000000000..31f174a7f --- /dev/null +++ b/Sources/Paths/MergeVersionsAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Merges videos into a single record. + public static func mergeVersions(ids: [String]) -> Request { + Request(method: "POST", url: "/Videos/MergeVersions", query: makeMergeVersionsQuery(ids), id: "MergeVersions") + } + + private static func makeMergeVersionsQuery(_ ids: [String]) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(ids, forKey: "ids") + return encoder.items + } +} diff --git a/Sources/Paths/MoveItemAPI.swift b/Sources/Paths/MoveItemAPI.swift new file mode 100644 index 000000000..15ff81212 --- /dev/null +++ b/Sources/Paths/MoveItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Moves a playlist item. + static func moveItem(playlistID: String, itemID: String, newIndex: Int) -> Request { + Request(method: "POST", url: "/Playlists/\(playlistID)/Items/\(itemID)/Move/\(newIndex)", id: "MoveItem") + } +} diff --git a/Sources/Paths/OnPlaybackProgressAPI.swift b/Sources/Paths/OnPlaybackProgressAPI.swift new file mode 100644 index 000000000..ff26c4b9c --- /dev/null +++ b/Sources/Paths/OnPlaybackProgressAPI.swift @@ -0,0 +1,83 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Reports a user's playback progress. + static func onPlaybackProgress(userID: String, itemID: String, parameters: OnPlaybackProgressParameters? = nil) -> Request { + Request( + method: "POST", + url: "/Users/\(userID)/PlayingItems/\(itemID)/Progress", + query: parameters?.asQuery, + id: "OnPlaybackProgress" + ) + } + + struct OnPlaybackProgressParameters { + public var mediaSourceID: String? + public var positionTicks: Int64? + public var audioStreamIndex: Int32? + public var subtitleStreamIndex: Int32? + public var volumeLevel: Int32? + public var playMethod: PlayMethod? + public var liveStreamID: String? + public var playSessionID: String? + public var repeatMode: RepeatMode? + public var isPaused: Bool? + public var isMuted: Bool? + + public typealias PlayMethod = JellyfinAPI.PlayMethod + + public typealias RepeatMode = JellyfinAPI.RepeatMode + + public init( + mediaSourceID: String? = nil, + positionTicks: Int64? = nil, + audioStreamIndex: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + volumeLevel: Int32? = nil, + playMethod: PlayMethod? = nil, + liveStreamID: String? = nil, + playSessionID: String? = nil, + repeatMode: RepeatMode? = nil, + isPaused: Bool? = nil, + isMuted: Bool? = nil + ) { + self.mediaSourceID = mediaSourceID + self.positionTicks = positionTicks + self.audioStreamIndex = audioStreamIndex + self.subtitleStreamIndex = subtitleStreamIndex + self.volumeLevel = volumeLevel + self.playMethod = playMethod + self.liveStreamID = liveStreamID + self.playSessionID = playSessionID + self.repeatMode = repeatMode + self.isPaused = isPaused + self.isMuted = isMuted + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(positionTicks, forKey: "positionTicks") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(volumeLevel, forKey: "volumeLevel") + encoder.encode(playMethod, forKey: "playMethod") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(repeatMode, forKey: "repeatMode") + encoder.encode(isPaused, forKey: "isPaused") + encoder.encode(isMuted, forKey: "isMuted") + return encoder.items + } + } +} diff --git a/Sources/Paths/OnPlaybackStartAPI.swift b/Sources/Paths/OnPlaybackStartAPI.swift new file mode 100644 index 000000000..7ea62f612 --- /dev/null +++ b/Sources/Paths/OnPlaybackStartAPI.swift @@ -0,0 +1,60 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Reports that a user has begun playing an item. + static func onPlaybackStart(userID: String, itemID: String, parameters: OnPlaybackStartParameters? = nil) -> Request { + Request(method: "POST", url: "/Users/\(userID)/PlayingItems/\(itemID)", query: parameters?.asQuery, id: "OnPlaybackStart") + } + + struct OnPlaybackStartParameters { + public var mediaSourceID: String? + public var audioStreamIndex: Int32? + public var subtitleStreamIndex: Int32? + public var playMethod: PlayMethod? + public var liveStreamID: String? + public var playSessionID: String? + public var canSeek: Bool? + + public typealias PlayMethod = JellyfinAPI.PlayMethod + + public init( + mediaSourceID: String? = nil, + audioStreamIndex: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + playMethod: PlayMethod? = nil, + liveStreamID: String? = nil, + playSessionID: String? = nil, + canSeek: Bool? = nil + ) { + self.mediaSourceID = mediaSourceID + self.audioStreamIndex = audioStreamIndex + self.subtitleStreamIndex = subtitleStreamIndex + self.playMethod = playMethod + self.liveStreamID = liveStreamID + self.playSessionID = playSessionID + self.canSeek = canSeek + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(playMethod, forKey: "playMethod") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(canSeek, forKey: "canSeek") + return encoder.items + } + } +} diff --git a/Sources/Paths/OnPlaybackStoppedAPI.swift b/Sources/Paths/OnPlaybackStoppedAPI.swift new file mode 100644 index 000000000..609aa0c7c --- /dev/null +++ b/Sources/Paths/OnPlaybackStoppedAPI.swift @@ -0,0 +1,50 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Reports that a user has stopped playing an item. + static func onPlaybackStopped(userID: String, itemID: String, parameters: OnPlaybackStoppedParameters? = nil) -> Request { + Request(method: "DELETE", url: "/Users/\(userID)/PlayingItems/\(itemID)", query: parameters?.asQuery, id: "OnPlaybackStopped") + } + + struct OnPlaybackStoppedParameters { + public var mediaSourceID: String? + public var nextMediaType: String? + public var positionTicks: Int64? + public var liveStreamID: String? + public var playSessionID: String? + + public init( + mediaSourceID: String? = nil, + nextMediaType: String? = nil, + positionTicks: Int64? = nil, + liveStreamID: String? = nil, + playSessionID: String? = nil + ) { + self.mediaSourceID = mediaSourceID + self.nextMediaType = nextMediaType + self.positionTicks = positionTicks + self.liveStreamID = liveStreamID + self.playSessionID = playSessionID + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(nextMediaType, forKey: "nextMediaType") + encoder.encode(positionTicks, forKey: "positionTicks") + encoder.encode(liveStreamID, forKey: "liveStreamId") + encoder.encode(playSessionID, forKey: "playSessionId") + return encoder.items + } + } +} diff --git a/Sources/Paths/OpenLiveStreamAPI.swift b/Sources/Paths/OpenLiveStreamAPI.swift new file mode 100644 index 000000000..792770eea --- /dev/null +++ b/Sources/Paths/OpenLiveStreamAPI.swift @@ -0,0 +1,77 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Opens a media source. + static func openLiveStream( + parameters: OpenLiveStreamParameters? = nil, + _ body: JellyfinAPI.OpenLiveStreamDto? = nil + ) -> Request { + Request(method: "POST", url: "/LiveStreams/Open", query: parameters?.asQuery, body: body, id: "OpenLiveStream") + } + + struct OpenLiveStreamParameters { + public var openToken: String? + public var userID: String? + public var playSessionID: String? + public var maxStreamingBitrate: Int32? + public var startTimeTicks: Int64? + public var audioStreamIndex: Int32? + public var subtitleStreamIndex: Int32? + public var maxAudioChannels: Int32? + public var itemID: String? + public var enableDirectPlay: Bool? + public var enableDirectStream: Bool? + + public init( + openToken: String? = nil, + userID: String? = nil, + playSessionID: String? = nil, + maxStreamingBitrate: Int32? = nil, + startTimeTicks: Int64? = nil, + audioStreamIndex: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + maxAudioChannels: Int32? = nil, + itemID: String? = nil, + enableDirectPlay: Bool? = nil, + enableDirectStream: Bool? = nil + ) { + self.openToken = openToken + self.userID = userID + self.playSessionID = playSessionID + self.maxStreamingBitrate = maxStreamingBitrate + self.startTimeTicks = startTimeTicks + self.audioStreamIndex = audioStreamIndex + self.subtitleStreamIndex = subtitleStreamIndex + self.maxAudioChannels = maxAudioChannels + self.itemID = itemID + self.enableDirectPlay = enableDirectPlay + self.enableDirectStream = enableDirectStream + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(openToken, forKey: "openToken") + encoder.encode(userID, forKey: "userId") + encoder.encode(playSessionID, forKey: "playSessionId") + encoder.encode(maxStreamingBitrate, forKey: "maxStreamingBitrate") + encoder.encode(startTimeTicks, forKey: "startTimeTicks") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(maxAudioChannels, forKey: "maxAudioChannels") + encoder.encode(itemID, forKey: "itemId") + encoder.encode(enableDirectPlay, forKey: "enableDirectPlay") + encoder.encode(enableDirectStream, forKey: "enableDirectStream") + return encoder.items + } + } +} diff --git a/Sources/Paths/PingPlaybackSessionAPI.swift b/Sources/Paths/PingPlaybackSessionAPI.swift new file mode 100644 index 000000000..3009cf08c --- /dev/null +++ b/Sources/Paths/PingPlaybackSessionAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Pings a playback session. + static func pingPlaybackSession(playSessionID: String) -> Request { + Request(method: "POST", url: "/Sessions/Playing/Ping", query: [("playSessionId", playSessionID)], id: "PingPlaybackSession") + } +} diff --git a/Sources/Paths/PlayAPI.swift b/Sources/Paths/PlayAPI.swift new file mode 100644 index 000000000..5252270bf --- /dev/null +++ b/Sources/Paths/PlayAPI.swift @@ -0,0 +1,61 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Instructs a session to play an item. + static func play(sessionID: String, parameters: PlayParameters) -> Request { + Request(method: "POST", url: "/Sessions/\(sessionID)/Playing", query: parameters.asQuery, id: "Play") + } + + struct PlayParameters { + /// Enum PlayCommand. + public var playCommand: PlayCommand + public var itemIDs: [String] + public var startPositionTicks: Int64? + public var mediaSourceID: String? + public var audioStreamIndex: Int32? + public var subtitleStreamIndex: Int32? + public var startIndex: Int32? + + public typealias PlayCommand = JellyfinAPI.PlayCommand + + public init( + playCommand: PlayCommand, + itemIDs: [String], + startPositionTicks: Int64? = nil, + mediaSourceID: String? = nil, + audioStreamIndex: Int32? = nil, + subtitleStreamIndex: Int32? = nil, + startIndex: Int32? = nil + ) { + self.playCommand = playCommand + self.itemIDs = itemIDs + self.startPositionTicks = startPositionTicks + self.mediaSourceID = mediaSourceID + self.audioStreamIndex = audioStreamIndex + self.subtitleStreamIndex = subtitleStreamIndex + self.startIndex = startIndex + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(playCommand, forKey: "playCommand") + encoder.encode(itemIDs, forKey: "itemIds") + encoder.encode(startPositionTicks, forKey: "startPositionTicks") + encoder.encode(mediaSourceID, forKey: "mediaSourceId") + encoder.encode(audioStreamIndex, forKey: "audioStreamIndex") + encoder.encode(subtitleStreamIndex, forKey: "subtitleStreamIndex") + encoder.encode(startIndex, forKey: "startIndex") + return encoder.items + } + } +} diff --git a/Sources/Paths/PostAddedMoviesAPI.swift b/Sources/Paths/PostAddedMoviesAPI.swift new file mode 100644 index 000000000..da7cc3c11 --- /dev/null +++ b/Sources/Paths/PostAddedMoviesAPI.swift @@ -0,0 +1,25 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Reports that new movies have been added by an external source. + public static func postAddedMovies(tmdbID: String? = nil, imdbID: String? = nil) -> Request { + Request(method: "POST", url: "/Library/Movies/Added", query: makePostAddedMoviesQuery(tmdbID, imdbID), id: "PostAddedMovies") + } + + private static func makePostAddedMoviesQuery(_ tmdbID: String?, _ imdbID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tmdbID, forKey: "tmdbId") + encoder.encode(imdbID, forKey: "imdbId") + return encoder.items + } +} diff --git a/Sources/Paths/PostAddedSeriesAPI.swift b/Sources/Paths/PostAddedSeriesAPI.swift new file mode 100644 index 000000000..180ccbedd --- /dev/null +++ b/Sources/Paths/PostAddedSeriesAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Reports that new episodes of a series have been added by an external source. + public static func postAddedSeries(tvdbID: String? = nil) -> Request { + Request(method: "POST", url: "/Library/Series/Added", query: makePostAddedSeriesQuery(tvdbID), id: "PostAddedSeries") + } + + private static func makePostAddedSeriesQuery(_ tvdbID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tvdbID, forKey: "tvdbId") + return encoder.items + } +} diff --git a/Sources/Paths/PostCapabilitiesAPI.swift b/Sources/Paths/PostCapabilitiesAPI.swift new file mode 100644 index 000000000..7c9d06a9e --- /dev/null +++ b/Sources/Paths/PostCapabilitiesAPI.swift @@ -0,0 +1,54 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates capabilities for a device. + static func postCapabilities(parameters: PostCapabilitiesParameters? = nil) -> Request { + Request(method: "POST", url: "/Sessions/Capabilities", query: parameters?.asQuery, id: "PostCapabilities") + } + + struct PostCapabilitiesParameters { + public var id: String? + public var playableMediaTypes: [String]? + public var supportedCommands: [JellyfinAPI.GeneralCommandType]? + public var isSupportsMediaControl: Bool? + public var isSupportsSync: Bool? + public var isSupportsPersistentIdentifier: Bool? + + public init( + id: String? = nil, + playableMediaTypes: [String]? = nil, + supportedCommands: [JellyfinAPI.GeneralCommandType]? = nil, + isSupportsMediaControl: Bool? = nil, + isSupportsSync: Bool? = nil, + isSupportsPersistentIdentifier: Bool? = nil + ) { + self.id = id + self.playableMediaTypes = playableMediaTypes + self.supportedCommands = supportedCommands + self.isSupportsMediaControl = isSupportsMediaControl + self.isSupportsSync = isSupportsSync + self.isSupportsPersistentIdentifier = isSupportsPersistentIdentifier + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(id, forKey: "id") + encoder.encode(playableMediaTypes, forKey: "playableMediaTypes") + encoder.encode(supportedCommands, forKey: "supportedCommands") + encoder.encode(isSupportsMediaControl, forKey: "supportsMediaControl") + encoder.encode(isSupportsSync, forKey: "supportsSync") + encoder.encode(isSupportsPersistentIdentifier, forKey: "supportsPersistentIdentifier") + return encoder.items + } + } +} diff --git a/Sources/Paths/PostFullCapabilitiesAPI.swift b/Sources/Paths/PostFullCapabilitiesAPI.swift new file mode 100644 index 000000000..53d1475b9 --- /dev/null +++ b/Sources/Paths/PostFullCapabilitiesAPI.swift @@ -0,0 +1,30 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Updates capabilities for a device. + public static func postFullCapabilities(id: String? = nil, _ body: JellyfinAPI.ClientCapabilitiesDto) -> Request { + Request( + method: "POST", + url: "/Sessions/Capabilities/Full", + query: makePostFullCapabilitiesQuery(id), + body: body, + id: "PostFullCapabilities" + ) + } + + private static func makePostFullCapabilitiesQuery(_ id: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(id, forKey: "id") + return encoder.items + } +} diff --git a/Sources/Paths/PostPingSystemAPI.swift b/Sources/Paths/PostPingSystemAPI.swift new file mode 100644 index 000000000..83035e337 --- /dev/null +++ b/Sources/Paths/PostPingSystemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Pings the system. + static var postPingSystem: Request { + Request(method: "POST", url: "/System/Ping", id: "PostPingSystem") + } +} diff --git a/Sources/Paths/PostUpdatedMediaAPI.swift b/Sources/Paths/PostUpdatedMediaAPI.swift new file mode 100644 index 000000000..1dc976e7f --- /dev/null +++ b/Sources/Paths/PostUpdatedMediaAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Reports that new movies have been added by an external source. + static func postUpdatedMedia(_ body: JellyfinAPI.MediaUpdateInfoDto) -> Request { + Request(method: "POST", url: "/Library/Media/Updated", body: body, id: "PostUpdatedMedia") + } +} diff --git a/Sources/Paths/PostUpdatedMoviesAPI.swift b/Sources/Paths/PostUpdatedMoviesAPI.swift new file mode 100644 index 000000000..7a7a3575b --- /dev/null +++ b/Sources/Paths/PostUpdatedMoviesAPI.swift @@ -0,0 +1,25 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Reports that new movies have been added by an external source. + public static func postUpdatedMovies(tmdbID: String? = nil, imdbID: String? = nil) -> Request { + Request(method: "POST", url: "/Library/Movies/Updated", query: makePostUpdatedMoviesQuery(tmdbID, imdbID), id: "PostUpdatedMovies") + } + + private static func makePostUpdatedMoviesQuery(_ tmdbID: String?, _ imdbID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tmdbID, forKey: "tmdbId") + encoder.encode(imdbID, forKey: "imdbId") + return encoder.items + } +} diff --git a/Sources/Paths/PostUpdatedSeriesAPI.swift b/Sources/Paths/PostUpdatedSeriesAPI.swift new file mode 100644 index 000000000..9a46dfa49 --- /dev/null +++ b/Sources/Paths/PostUpdatedSeriesAPI.swift @@ -0,0 +1,24 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Reports that new episodes of a series have been added by an external source. + public static func postUpdatedSeries(tvdbID: String? = nil) -> Request { + Request(method: "POST", url: "/Library/Series/Updated", query: makePostUpdatedSeriesQuery(tvdbID), id: "PostUpdatedSeries") + } + + private static func makePostUpdatedSeriesQuery(_ tvdbID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(tvdbID, forKey: "tvdbId") + return encoder.items + } +} diff --git a/Sources/Paths/PostUserImageAPI.swift b/Sources/Paths/PostUserImageAPI.swift new file mode 100644 index 000000000..e9bbf106e --- /dev/null +++ b/Sources/Paths/PostUserImageAPI.swift @@ -0,0 +1,30 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Sets the user image. + public static func postUserImage(userID: String, imageType: String, index: Int32? = nil, _ body: Data? = nil) -> Request { + Request( + method: "POST", + url: "/Users/\(userID)/Images/\(imageType)", + query: makePostUserImageQuery(index), + body: body, + id: "PostUserImage" + ) + } + + private static func makePostUserImageQuery(_ index: Int32?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(index, forKey: "index") + return encoder.items + } +} diff --git a/Sources/Paths/PostUserImageByIndexAPI.swift b/Sources/Paths/PostUserImageByIndexAPI.swift new file mode 100644 index 000000000..b23cf02e8 --- /dev/null +++ b/Sources/Paths/PostUserImageByIndexAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Sets the user image. + static func postUserImageByIndex(userID: String, imageType: String, index: Int, _ body: Data? = nil) -> Request { + Request(method: "POST", url: "/Users/\(userID)/Images/\(imageType)/\(index)", body: body, id: "PostUserImageByIndex") + } +} diff --git a/Sources/Paths/ProcessConnectionManagerControlRequestAPI.swift b/Sources/Paths/ProcessConnectionManagerControlRequestAPI.swift new file mode 100644 index 000000000..83b9b9173 --- /dev/null +++ b/Sources/Paths/ProcessConnectionManagerControlRequestAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Process a connection manager control request. + static func processConnectionManagerControlRequest(serverID: String) -> Request { + Request(method: "POST", url: "/Dlna/\(serverID)/ConnectionManager/Control", id: "ProcessConnectionManagerControlRequest") + } +} diff --git a/Sources/Paths/ProcessContentDirectoryControlRequestAPI.swift b/Sources/Paths/ProcessContentDirectoryControlRequestAPI.swift new file mode 100644 index 000000000..752a6e7a7 --- /dev/null +++ b/Sources/Paths/ProcessContentDirectoryControlRequestAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Process a content directory control request. + static func processContentDirectoryControlRequest(serverID: String) -> Request { + Request(method: "POST", url: "/Dlna/\(serverID)/ContentDirectory/Control", id: "ProcessContentDirectoryControlRequest") + } +} diff --git a/Sources/Paths/ProcessMediaReceiverRegistrarControlRequestAPI.swift b/Sources/Paths/ProcessMediaReceiverRegistrarControlRequestAPI.swift new file mode 100644 index 000000000..161fb3f4c --- /dev/null +++ b/Sources/Paths/ProcessMediaReceiverRegistrarControlRequestAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Process a media receiver registrar control request. + static func processMediaReceiverRegistrarControlRequest(serverID: String) -> Request { + Request(method: "POST", url: "/Dlna/\(serverID)/MediaReceiverRegistrar/Control", id: "ProcessMediaReceiverRegistrarControlRequest") + } +} diff --git a/Sources/Paths/RefreshItemAPI.swift b/Sources/Paths/RefreshItemAPI.swift new file mode 100644 index 000000000..11677b61a --- /dev/null +++ b/Sources/Paths/RefreshItemAPI.swift @@ -0,0 +1,50 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Refreshes metadata for an item. + static func refreshItem(itemID: String, parameters: RefreshItemParameters? = nil) -> Request { + Request(method: "POST", url: "/Items/\(itemID)/Refresh", query: parameters?.asQuery, id: "RefreshItem") + } + + struct RefreshItemParameters { + public var metadataRefreshMode: MetadataRefreshMode? + public var imageRefreshMode: ImageRefreshMode? + public var isReplaceAllMetadata: Bool? + public var isReplaceAllImages: Bool? + + public typealias MetadataRefreshMode = JellyfinAPI.MetadataRefreshMode + + public typealias ImageRefreshMode = JellyfinAPI.MetadataRefreshMode + + public init( + metadataRefreshMode: MetadataRefreshMode? = nil, + imageRefreshMode: ImageRefreshMode? = nil, + isReplaceAllMetadata: Bool? = nil, + isReplaceAllImages: Bool? = nil + ) { + self.metadataRefreshMode = metadataRefreshMode + self.imageRefreshMode = imageRefreshMode + self.isReplaceAllMetadata = isReplaceAllMetadata + self.isReplaceAllImages = isReplaceAllImages + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(metadataRefreshMode, forKey: "metadataRefreshMode") + encoder.encode(imageRefreshMode, forKey: "imageRefreshMode") + encoder.encode(isReplaceAllMetadata, forKey: "replaceAllMetadata") + encoder.encode(isReplaceAllImages, forKey: "replaceAllImages") + return encoder.items + } + } +} diff --git a/Sources/Paths/RefreshLibraryAPI.swift b/Sources/Paths/RefreshLibraryAPI.swift new file mode 100644 index 000000000..669ebaf75 --- /dev/null +++ b/Sources/Paths/RefreshLibraryAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Starts a library scan. + static var refreshLibrary: Request { + Request(method: "POST", url: "/Library/Refresh", id: "RefreshLibrary") + } +} diff --git a/Sources/Paths/RemoveFromCollectionAPI.swift b/Sources/Paths/RemoveFromCollectionAPI.swift new file mode 100644 index 000000000..f9eef5564 --- /dev/null +++ b/Sources/Paths/RemoveFromCollectionAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Removes items from a collection. + public static func removeFromCollection(collectionID: String, ids: [String]) -> Request { + Request( + method: "DELETE", + url: "/Collections/\(collectionID)/Items", + query: makeRemoveFromCollectionQuery(ids), + id: "RemoveFromCollection" + ) + } + + private static func makeRemoveFromCollectionQuery(_ ids: [String]) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(ids, forKey: "ids") + return encoder.items + } +} diff --git a/Sources/Paths/RemoveFromPlaylistAPI.swift b/Sources/Paths/RemoveFromPlaylistAPI.swift new file mode 100644 index 000000000..46ea21de1 --- /dev/null +++ b/Sources/Paths/RemoveFromPlaylistAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Removes items from a playlist. + public static func removeFromPlaylist(playlistID: String, entryIDs: [String]? = nil) -> Request { + Request( + method: "DELETE", + url: "/Playlists/\(playlistID)/Items", + query: makeRemoveFromPlaylistQuery(entryIDs), + id: "RemoveFromPlaylist" + ) + } + + private static func makeRemoveFromPlaylistQuery(_ entryIDs: [String]?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(entryIDs, forKey: "entryIds") + return encoder.items + } +} diff --git a/Sources/Paths/RemoveMediaPathAPI.swift b/Sources/Paths/RemoveMediaPathAPI.swift new file mode 100644 index 000000000..ecf839830 --- /dev/null +++ b/Sources/Paths/RemoveMediaPathAPI.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Remove a media path. + static func removeMediaPath(parameters: RemoveMediaPathParameters? = nil) -> Request { + Request(method: "DELETE", url: "/Library/VirtualFolders/Paths", query: parameters?.asQuery, id: "RemoveMediaPath") + } + + struct RemoveMediaPathParameters { + public var name: String? + public var path: String? + public var isRefreshLibrary: Bool? + + public init(name: String? = nil, path: String? = nil, isRefreshLibrary: Bool? = nil) { + self.name = name + self.path = path + self.isRefreshLibrary = isRefreshLibrary + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(name, forKey: "name") + encoder.encode(path, forKey: "path") + encoder.encode(isRefreshLibrary, forKey: "refreshLibrary") + return encoder.items + } + } +} diff --git a/Sources/Paths/RemoveUserFromSessionAPI.swift b/Sources/Paths/RemoveUserFromSessionAPI.swift new file mode 100644 index 000000000..64cb93720 --- /dev/null +++ b/Sources/Paths/RemoveUserFromSessionAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Removes an additional user from a session. + static func removeUserFromSession(sessionID: String, userID: String) -> Request { + Request(method: "DELETE", url: "/Sessions/\(sessionID)/User/\(userID)", id: "RemoveUserFromSession") + } +} diff --git a/Sources/Paths/RemoveVirtualFolderAPI.swift b/Sources/Paths/RemoveVirtualFolderAPI.swift new file mode 100644 index 000000000..2bafb0fac --- /dev/null +++ b/Sources/Paths/RemoveVirtualFolderAPI.swift @@ -0,0 +1,30 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Removes a virtual folder. + public static func removeVirtualFolder(name: String? = nil, isRefreshLibrary: Bool? = nil) -> Request { + Request( + method: "DELETE", + url: "/Library/VirtualFolders", + query: makeRemoveVirtualFolderQuery(name, isRefreshLibrary), + id: "RemoveVirtualFolder" + ) + } + + private static func makeRemoveVirtualFolderQuery(_ name: String?, _ isRefreshLibrary: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(name, forKey: "name") + encoder.encode(isRefreshLibrary, forKey: "refreshLibrary") + return encoder.items + } +} diff --git a/Sources/Paths/RenameVirtualFolderAPI.swift b/Sources/Paths/RenameVirtualFolderAPI.swift new file mode 100644 index 000000000..f281cf596 --- /dev/null +++ b/Sources/Paths/RenameVirtualFolderAPI.swift @@ -0,0 +1,38 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Renames a virtual folder. + static func renameVirtualFolder(parameters: RenameVirtualFolderParameters? = nil) -> Request { + Request(method: "POST", url: "/Library/VirtualFolders/Name", query: parameters?.asQuery, id: "RenameVirtualFolder") + } + + struct RenameVirtualFolderParameters { + public var name: String? + public var newName: String? + public var isRefreshLibrary: Bool? + + public init(name: String? = nil, newName: String? = nil, isRefreshLibrary: Bool? = nil) { + self.name = name + self.newName = newName + self.isRefreshLibrary = isRefreshLibrary + } + + public var asQuery: [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(name, forKey: "name") + encoder.encode(newName, forKey: "newName") + encoder.encode(isRefreshLibrary, forKey: "refreshLibrary") + return encoder.items + } + } +} diff --git a/Sources/Paths/ReportPlaybackProgressAPI.swift b/Sources/Paths/ReportPlaybackProgressAPI.swift new file mode 100644 index 000000000..3d19633d7 --- /dev/null +++ b/Sources/Paths/ReportPlaybackProgressAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Reports playback progress within a session. + static func reportPlaybackProgress(_ body: JellyfinAPI.PlaybackProgressInfo? = nil) -> Request { + Request(method: "POST", url: "/Sessions/Playing/Progress", body: body, id: "ReportPlaybackProgress") + } +} diff --git a/Sources/Paths/ReportPlaybackStartAPI.swift b/Sources/Paths/ReportPlaybackStartAPI.swift new file mode 100644 index 000000000..38a46a02b --- /dev/null +++ b/Sources/Paths/ReportPlaybackStartAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Reports playback has started within a session. + static func reportPlaybackStart(_ body: JellyfinAPI.PlaybackStartInfo? = nil) -> Request { + Request(method: "POST", url: "/Sessions/Playing", body: body, id: "ReportPlaybackStart") + } +} diff --git a/Sources/Paths/ReportPlaybackStoppedAPI.swift b/Sources/Paths/ReportPlaybackStoppedAPI.swift new file mode 100644 index 000000000..ffc5ec1d1 --- /dev/null +++ b/Sources/Paths/ReportPlaybackStoppedAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Reports playback has stopped within a session. + static func reportPlaybackStopped(_ body: JellyfinAPI.PlaybackStopInfo? = nil) -> Request { + Request(method: "POST", url: "/Sessions/Playing/Stopped", body: body, id: "ReportPlaybackStopped") + } +} diff --git a/Sources/Paths/ReportSessionEndedAPI.swift b/Sources/Paths/ReportSessionEndedAPI.swift new file mode 100644 index 000000000..ff15b3a18 --- /dev/null +++ b/Sources/Paths/ReportSessionEndedAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Reports that a session has ended. + static var reportSessionEnded: Request { + Request(method: "POST", url: "/Sessions/Logout", id: "ReportSessionEnded") + } +} diff --git a/Sources/Paths/ReportViewingAPI.swift b/Sources/Paths/ReportViewingAPI.swift new file mode 100644 index 000000000..10ee4c571 --- /dev/null +++ b/Sources/Paths/ReportViewingAPI.swift @@ -0,0 +1,25 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Reports that a session is viewing an item. + public static func reportViewing(sessionID: String? = nil, itemID: String) -> Request { + Request(method: "POST", url: "/Sessions/Viewing", query: makeReportViewingQuery(sessionID, itemID), id: "ReportViewing") + } + + private static func makeReportViewingQuery(_ sessionID: String?, _ itemID: String) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(sessionID, forKey: "sessionId") + encoder.encode(itemID, forKey: "itemId") + return encoder.items + } +} diff --git a/Sources/Paths/ResetTunerAPI.swift b/Sources/Paths/ResetTunerAPI.swift new file mode 100644 index 000000000..c764aa840 --- /dev/null +++ b/Sources/Paths/ResetTunerAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Resets a tv tuner. + static func resetTuner(tunerID: String) -> Request { + Request(method: "POST", url: "/LiveTv/Tuners/\(tunerID)/Reset", id: "ResetTuner") + } +} diff --git a/Sources/Paths/RestartApplicationAPI.swift b/Sources/Paths/RestartApplicationAPI.swift new file mode 100644 index 000000000..9d985cad5 --- /dev/null +++ b/Sources/Paths/RestartApplicationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Restarts the application. + static var restartApplication: Request { + Request(method: "POST", url: "/System/Restart", id: "RestartApplication") + } +} diff --git a/Sources/Paths/RevokeKeyAPI.swift b/Sources/Paths/RevokeKeyAPI.swift new file mode 100644 index 000000000..271f05d4e --- /dev/null +++ b/Sources/Paths/RevokeKeyAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Remove an api key. + static func revokeKey(key: String) -> Request { + Request(method: "DELETE", url: "/Auth/Keys/\(key)", id: "RevokeKey") + } +} diff --git a/Sources/Paths/SearchRemoteSubtitlesAPI.swift b/Sources/Paths/SearchRemoteSubtitlesAPI.swift new file mode 100644 index 000000000..d9fd6a8b4 --- /dev/null +++ b/Sources/Paths/SearchRemoteSubtitlesAPI.swift @@ -0,0 +1,33 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Search remote subtitles. + public static func searchRemoteSubtitles( + itemID: String, + language: String, + isPerfectMatch: Bool? = nil + ) -> Request<[JellyfinAPI.RemoteSubtitleInfo]> { + Request( + method: "GET", + url: "/Items/\(itemID)/RemoteSearch/Subtitles/\(language)", + query: makeSearchRemoteSubtitlesQuery(isPerfectMatch), + id: "SearchRemoteSubtitles" + ) + } + + private static func makeSearchRemoteSubtitlesQuery(_ isPerfectMatch: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isPerfectMatch, forKey: "isPerfectMatch") + return encoder.items + } +} diff --git a/Sources/Paths/SendFullGeneralCommandAPI.swift b/Sources/Paths/SendFullGeneralCommandAPI.swift new file mode 100644 index 000000000..444def52f --- /dev/null +++ b/Sources/Paths/SendFullGeneralCommandAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Issues a full general command to a client. + static func sendFullGeneralCommand(sessionID: String, _ body: JellyfinAPI.GeneralCommand) -> Request { + Request(method: "POST", url: "/Sessions/\(sessionID)/Command", body: body, id: "SendFullGeneralCommand") + } +} diff --git a/Sources/Paths/SendGeneralCommandAPI.swift b/Sources/Paths/SendGeneralCommandAPI.swift new file mode 100644 index 000000000..5d7a3b48d --- /dev/null +++ b/Sources/Paths/SendGeneralCommandAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Issues a general command to a client. + static func sendGeneralCommand(sessionID: String, command: String) -> Request { + Request(method: "POST", url: "/Sessions/\(sessionID)/Command/\(command)", id: "SendGeneralCommand") + } +} diff --git a/Sources/Paths/SendMessageCommandAPI.swift b/Sources/Paths/SendMessageCommandAPI.swift new file mode 100644 index 000000000..86ec50443 --- /dev/null +++ b/Sources/Paths/SendMessageCommandAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Issues a command to a client to display a message to the user. + static func sendMessageCommand(sessionID: String, _ body: JellyfinAPI.MessageCommand) -> Request { + Request(method: "POST", url: "/Sessions/\(sessionID)/Message", body: body, id: "SendMessageCommand") + } +} diff --git a/Sources/Paths/SendPlaystateCommandAPI.swift b/Sources/Paths/SendPlaystateCommandAPI.swift new file mode 100644 index 000000000..4a40ae5a5 --- /dev/null +++ b/Sources/Paths/SendPlaystateCommandAPI.swift @@ -0,0 +1,35 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Issues a playstate command to a client. + public static func sendPlaystateCommand( + sessionID: String, + command: String, + seekPositionTicks: Int64? = nil, + controllingUserID: String? = nil + ) -> Request { + Request( + method: "POST", + url: "/Sessions/\(sessionID)/Playing/\(command)", + query: makeSendPlaystateCommandQuery(seekPositionTicks, controllingUserID), + id: "SendPlaystateCommand" + ) + } + + private static func makeSendPlaystateCommandQuery(_ seekPositionTicks: Int64?, _ controllingUserID: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(seekPositionTicks, forKey: "seekPositionTicks") + encoder.encode(controllingUserID, forKey: "controllingUserId") + return encoder.items + } +} diff --git a/Sources/Paths/SendSystemCommandAPI.swift b/Sources/Paths/SendSystemCommandAPI.swift new file mode 100644 index 000000000..1856708ff --- /dev/null +++ b/Sources/Paths/SendSystemCommandAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Issues a system command to a client. + static func sendSystemCommand(sessionID: String, command: String) -> Request { + Request(method: "POST", url: "/Sessions/\(sessionID)/System/\(command)", id: "SendSystemCommand") + } +} diff --git a/Sources/Paths/SetChannelMappingAPI.swift b/Sources/Paths/SetChannelMappingAPI.swift new file mode 100644 index 000000000..8bb335a19 --- /dev/null +++ b/Sources/Paths/SetChannelMappingAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Set channel mappings. + static func setChannelMapping(_ body: JellyfinAPI.SetChannelMappingDto) -> Request { + Request(method: "POST", url: "/LiveTv/ChannelMappings", body: body, id: "SetChannelMapping") + } +} diff --git a/Sources/Paths/SetItemImageAPI.swift b/Sources/Paths/SetItemImageAPI.swift new file mode 100644 index 000000000..f49e5d66a --- /dev/null +++ b/Sources/Paths/SetItemImageAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Set item image. + static func setItemImage(itemID: String, imageType: String, _ body: Data? = nil) -> Request { + Request(method: "POST", url: "/Items/\(itemID)/Images/\(imageType)", body: body, id: "SetItemImage") + } +} diff --git a/Sources/Paths/SetItemImageByIndexAPI.swift b/Sources/Paths/SetItemImageByIndexAPI.swift new file mode 100644 index 000000000..ae9badc55 --- /dev/null +++ b/Sources/Paths/SetItemImageByIndexAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Set item image. + static func setItemImageByIndex(itemID: String, imageType: String, imageIndex: Int, _ body: Data? = nil) -> Request { + Request(method: "POST", url: "/Items/\(itemID)/Images/\(imageType)/\(imageIndex)", body: body, id: "SetItemImageByIndex") + } +} diff --git a/Sources/Paths/SetReadAPI.swift b/Sources/Paths/SetReadAPI.swift new file mode 100644 index 000000000..54f9e44b7 --- /dev/null +++ b/Sources/Paths/SetReadAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Sets notifications as read. + static func setRead(userID: String) -> Request { + Request(method: "POST", url: "/Notifications/\(userID)/Read", id: "SetRead") + } +} diff --git a/Sources/Paths/SetRemoteAccessAPI.swift b/Sources/Paths/SetRemoteAccessAPI.swift new file mode 100644 index 000000000..c58b1f0f9 --- /dev/null +++ b/Sources/Paths/SetRemoteAccessAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Sets remote access and UPnP. + static func setRemoteAccess(_ body: JellyfinAPI.StartupRemoteAccessDto) -> Request { + Request(method: "POST", url: "/Startup/RemoteAccess", body: body, id: "SetRemoteAccess") + } +} diff --git a/Sources/Paths/SetRepositoriesAPI.swift b/Sources/Paths/SetRepositoriesAPI.swift new file mode 100644 index 000000000..427426c19 --- /dev/null +++ b/Sources/Paths/SetRepositoriesAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Sets the enabled and existing package repositories. + static func setRepositories(_ body: [JellyfinAPI.RepositoryInfo]) -> Request { + Request(method: "POST", url: "/Repositories", body: body, id: "SetRepositories") + } +} diff --git a/Sources/Paths/SetUnreadAPI.swift b/Sources/Paths/SetUnreadAPI.swift new file mode 100644 index 000000000..72e12139a --- /dev/null +++ b/Sources/Paths/SetUnreadAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Sets notifications as unread. + static func setUnread(userID: String) -> Request { + Request(method: "POST", url: "/Notifications/\(userID)/Unread", id: "SetUnread") + } +} diff --git a/Sources/Paths/ShutdownApplicationAPI.swift b/Sources/Paths/ShutdownApplicationAPI.swift new file mode 100644 index 000000000..390979ce2 --- /dev/null +++ b/Sources/Paths/ShutdownApplicationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Shuts down the application. + static var shutdownApplication: Request { + Request(method: "POST", url: "/System/Shutdown", id: "ShutdownApplication") + } +} diff --git a/Sources/Paths/StartTaskAPI.swift b/Sources/Paths/StartTaskAPI.swift new file mode 100644 index 000000000..188e3ffac --- /dev/null +++ b/Sources/Paths/StartTaskAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Start specified task. + static func startTask(taskID: String) -> Request { + Request(method: "POST", url: "/ScheduledTasks/Running/\(taskID)", id: "StartTask") + } +} diff --git a/Sources/Paths/StopEncodingProcessAPI.swift b/Sources/Paths/StopEncodingProcessAPI.swift new file mode 100644 index 000000000..5927a9173 --- /dev/null +++ b/Sources/Paths/StopEncodingProcessAPI.swift @@ -0,0 +1,23 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Stops an active encoding. + static func stopEncodingProcess(deviceID: String, playSessionID: String) -> Request { + Request( + method: "DELETE", + url: "/Videos/ActiveEncodings", + query: [("deviceId", deviceID), ("playSessionId", playSessionID)], + id: "StopEncodingProcess" + ) + } +} diff --git a/Sources/Paths/StopTaskAPI.swift b/Sources/Paths/StopTaskAPI.swift new file mode 100644 index 000000000..9bce2908d --- /dev/null +++ b/Sources/Paths/StopTaskAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Stop specified task. + static func stopTask(taskID: String) -> Request { + Request(method: "DELETE", url: "/ScheduledTasks/Running/\(taskID)", id: "StopTask") + } +} diff --git a/Sources/Paths/SyncPlayBufferingAPI.swift b/Sources/Paths/SyncPlayBufferingAPI.swift new file mode 100644 index 000000000..6fe2f24cc --- /dev/null +++ b/Sources/Paths/SyncPlayBufferingAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Notify SyncPlay group that member is buffering. + static func syncPlayBuffering(_ body: JellyfinAPI.BufferRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/Buffering", body: body, id: "SyncPlayBuffering") + } +} diff --git a/Sources/Paths/SyncPlayCreateGroupAPI.swift b/Sources/Paths/SyncPlayCreateGroupAPI.swift new file mode 100644 index 000000000..283375125 --- /dev/null +++ b/Sources/Paths/SyncPlayCreateGroupAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Create a new SyncPlay group. + static func syncPlayCreateGroup(_ body: JellyfinAPI.NewGroupRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/New", body: body, id: "SyncPlayCreateGroup") + } +} diff --git a/Sources/Paths/SyncPlayGetGroupsAPI.swift b/Sources/Paths/SyncPlayGetGroupsAPI.swift new file mode 100644 index 000000000..7f4a79cf8 --- /dev/null +++ b/Sources/Paths/SyncPlayGetGroupsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets all SyncPlay groups. + static var syncPlayGetGroups: Request<[JellyfinAPI.GroupInfoDto]> { + Request(method: "GET", url: "/SyncPlay/List", id: "SyncPlayGetGroups") + } +} diff --git a/Sources/Paths/SyncPlayJoinGroupAPI.swift b/Sources/Paths/SyncPlayJoinGroupAPI.swift new file mode 100644 index 000000000..3d7f56361 --- /dev/null +++ b/Sources/Paths/SyncPlayJoinGroupAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Join an existing SyncPlay group. + static func syncPlayJoinGroup(_ body: JellyfinAPI.JoinGroupRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/Join", body: body, id: "SyncPlayJoinGroup") + } +} diff --git a/Sources/Paths/SyncPlayLeaveGroupAPI.swift b/Sources/Paths/SyncPlayLeaveGroupAPI.swift new file mode 100644 index 000000000..43bc87bcd --- /dev/null +++ b/Sources/Paths/SyncPlayLeaveGroupAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Leave the joined SyncPlay group. + static var syncPlayLeaveGroup: Request { + Request(method: "POST", url: "/SyncPlay/Leave", id: "SyncPlayLeaveGroup") + } +} diff --git a/Sources/Paths/SyncPlayMovePlaylistItemAPI.swift b/Sources/Paths/SyncPlayMovePlaylistItemAPI.swift new file mode 100644 index 000000000..bd0483c6f --- /dev/null +++ b/Sources/Paths/SyncPlayMovePlaylistItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request to move an item in the playlist in SyncPlay group. + static func syncPlayMovePlaylistItem(_ body: JellyfinAPI.MovePlaylistItemRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/MovePlaylistItem", body: body, id: "SyncPlayMovePlaylistItem") + } +} diff --git a/Sources/Paths/SyncPlayNextItemAPI.swift b/Sources/Paths/SyncPlayNextItemAPI.swift new file mode 100644 index 000000000..7e9afa65a --- /dev/null +++ b/Sources/Paths/SyncPlayNextItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request next item in SyncPlay group. + static func syncPlayNextItem(_ body: JellyfinAPI.NextItemRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/NextItem", body: body, id: "SyncPlayNextItem") + } +} diff --git a/Sources/Paths/SyncPlayPauseAPI.swift b/Sources/Paths/SyncPlayPauseAPI.swift new file mode 100644 index 000000000..172f66944 --- /dev/null +++ b/Sources/Paths/SyncPlayPauseAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request pause in SyncPlay group. + static var syncPlayPause: Request { + Request(method: "POST", url: "/SyncPlay/Pause", id: "SyncPlayPause") + } +} diff --git a/Sources/Paths/SyncPlayPingAPI.swift b/Sources/Paths/SyncPlayPingAPI.swift new file mode 100644 index 000000000..8682c7e87 --- /dev/null +++ b/Sources/Paths/SyncPlayPingAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Update session ping. + static func syncPlayPing(_ body: JellyfinAPI.PingRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/Ping", body: body, id: "SyncPlayPing") + } +} diff --git a/Sources/Paths/SyncPlayPreviousItemAPI.swift b/Sources/Paths/SyncPlayPreviousItemAPI.swift new file mode 100644 index 000000000..565e5eef0 --- /dev/null +++ b/Sources/Paths/SyncPlayPreviousItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request previous item in SyncPlay group. + static func syncPlayPreviousItem(_ body: JellyfinAPI.PreviousItemRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/PreviousItem", body: body, id: "SyncPlayPreviousItem") + } +} diff --git a/Sources/Paths/SyncPlayQueueAPI.swift b/Sources/Paths/SyncPlayQueueAPI.swift new file mode 100644 index 000000000..e282f25eb --- /dev/null +++ b/Sources/Paths/SyncPlayQueueAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request to queue items to the playlist of a SyncPlay group. + static func syncPlayQueue(_ body: JellyfinAPI.QueueRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/Queue", body: body, id: "SyncPlayQueue") + } +} diff --git a/Sources/Paths/SyncPlayReadyAPI.swift b/Sources/Paths/SyncPlayReadyAPI.swift new file mode 100644 index 000000000..a640923d3 --- /dev/null +++ b/Sources/Paths/SyncPlayReadyAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Notify SyncPlay group that member is ready for playback. + static func syncPlayReady(_ body: JellyfinAPI.ReadyRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/Ready", body: body, id: "SyncPlayReady") + } +} diff --git a/Sources/Paths/SyncPlayRemoveFromPlaylistAPI.swift b/Sources/Paths/SyncPlayRemoveFromPlaylistAPI.swift new file mode 100644 index 000000000..18381a115 --- /dev/null +++ b/Sources/Paths/SyncPlayRemoveFromPlaylistAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request to remove items from the playlist in SyncPlay group. + static func syncPlayRemoveFromPlaylist(_ body: JellyfinAPI.RemoveFromPlaylistRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/RemoveFromPlaylist", body: body, id: "SyncPlayRemoveFromPlaylist") + } +} diff --git a/Sources/Paths/SyncPlaySeekAPI.swift b/Sources/Paths/SyncPlaySeekAPI.swift new file mode 100644 index 000000000..147979e98 --- /dev/null +++ b/Sources/Paths/SyncPlaySeekAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request seek in SyncPlay group. + static func syncPlaySeek(_ body: JellyfinAPI.SeekRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/Seek", body: body, id: "SyncPlaySeek") + } +} diff --git a/Sources/Paths/SyncPlaySetIgnoreWaitAPI.swift b/Sources/Paths/SyncPlaySetIgnoreWaitAPI.swift new file mode 100644 index 000000000..822e2f0e7 --- /dev/null +++ b/Sources/Paths/SyncPlaySetIgnoreWaitAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request SyncPlay group to ignore member during group-wait. + static func syncPlaySetIgnoreWait(_ body: JellyfinAPI.IgnoreWaitRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/SetIgnoreWait", body: body, id: "SyncPlaySetIgnoreWait") + } +} diff --git a/Sources/Paths/SyncPlaySetNewQueueAPI.swift b/Sources/Paths/SyncPlaySetNewQueueAPI.swift new file mode 100644 index 000000000..f03e96dc2 --- /dev/null +++ b/Sources/Paths/SyncPlaySetNewQueueAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request to set new playlist in SyncPlay group. + static func syncPlaySetNewQueue(_ body: JellyfinAPI.PlayRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/SetNewQueue", body: body, id: "SyncPlaySetNewQueue") + } +} diff --git a/Sources/Paths/SyncPlaySetPlaylistItemAPI.swift b/Sources/Paths/SyncPlaySetPlaylistItemAPI.swift new file mode 100644 index 000000000..4b0cd48ef --- /dev/null +++ b/Sources/Paths/SyncPlaySetPlaylistItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request to change playlist item in SyncPlay group. + static func syncPlaySetPlaylistItem(_ body: JellyfinAPI.SetPlaylistItemRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/SetPlaylistItem", body: body, id: "SyncPlaySetPlaylistItem") + } +} diff --git a/Sources/Paths/SyncPlaySetRepeatModeAPI.swift b/Sources/Paths/SyncPlaySetRepeatModeAPI.swift new file mode 100644 index 000000000..8975b988b --- /dev/null +++ b/Sources/Paths/SyncPlaySetRepeatModeAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request to set repeat mode in SyncPlay group. + static func syncPlaySetRepeatMode(_ body: JellyfinAPI.SetRepeatModeRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/SetRepeatMode", body: body, id: "SyncPlaySetRepeatMode") + } +} diff --git a/Sources/Paths/SyncPlaySetShuffleModeAPI.swift b/Sources/Paths/SyncPlaySetShuffleModeAPI.swift new file mode 100644 index 000000000..548a77d0f --- /dev/null +++ b/Sources/Paths/SyncPlaySetShuffleModeAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request to set shuffle mode in SyncPlay group. + static func syncPlaySetShuffleMode(_ body: JellyfinAPI.SetShuffleModeRequestDto) -> Request { + Request(method: "POST", url: "/SyncPlay/SetShuffleMode", body: body, id: "SyncPlaySetShuffleMode") + } +} diff --git a/Sources/Paths/SyncPlayStopAPI.swift b/Sources/Paths/SyncPlayStopAPI.swift new file mode 100644 index 000000000..d7fc63882 --- /dev/null +++ b/Sources/Paths/SyncPlayStopAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request stop in SyncPlay group. + static var syncPlayStop: Request { + Request(method: "POST", url: "/SyncPlay/Stop", id: "SyncPlayStop") + } +} diff --git a/Sources/Paths/SyncPlayUnpauseAPI.swift b/Sources/Paths/SyncPlayUnpauseAPI.swift new file mode 100644 index 000000000..175de757c --- /dev/null +++ b/Sources/Paths/SyncPlayUnpauseAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Request unpause in SyncPlay group. + static var syncPlayUnpause: Request { + Request(method: "POST", url: "/SyncPlay/Unpause", id: "SyncPlayUnpause") + } +} diff --git a/Sources/Paths/TmdbClientConfigurationAPI.swift b/Sources/Paths/TmdbClientConfigurationAPI.swift new file mode 100644 index 000000000..f6b75ccc6 --- /dev/null +++ b/Sources/Paths/TmdbClientConfigurationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Gets the TMDb image configuration options. + static var tmdbClientConfiguration: Request { + Request(method: "GET", url: "/Tmdb/ClientConfiguration", id: "TmdbClientConfiguration") + } +} diff --git a/Sources/Paths/UninstallPluginAPI.swift b/Sources/Paths/UninstallPluginAPI.swift new file mode 100644 index 000000000..d4e22b34a --- /dev/null +++ b/Sources/Paths/UninstallPluginAPI.swift @@ -0,0 +1,19 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Uninstalls a plugin. + @available(*, deprecated, message: "Deprecated") + static func uninstallPlugin(pluginID: String) -> Request { + Request(method: "DELETE", url: "/Plugins/\(pluginID)", id: "UninstallPlugin") + } +} diff --git a/Sources/Paths/UninstallPluginByVersionAPI.swift b/Sources/Paths/UninstallPluginByVersionAPI.swift new file mode 100644 index 000000000..31e1e816d --- /dev/null +++ b/Sources/Paths/UninstallPluginByVersionAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Uninstalls a plugin by version. + static func uninstallPluginByVersion(pluginID: String, version: String) -> Request { + Request(method: "DELETE", url: "/Plugins/\(pluginID)/\(version)", id: "UninstallPluginByVersion") + } +} diff --git a/Sources/Paths/UnmarkFavoriteItemAPI.swift b/Sources/Paths/UnmarkFavoriteItemAPI.swift new file mode 100644 index 000000000..3a419fb18 --- /dev/null +++ b/Sources/Paths/UnmarkFavoriteItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Unmarks item as a favorite. + static func unmarkFavoriteItem(userID: String, itemID: String) -> Request { + Request(method: "DELETE", url: "/Users/\(userID)/FavoriteItems/\(itemID)", id: "UnmarkFavoriteItem") + } +} diff --git a/Sources/Paths/UpdateConfigurationAPI.swift b/Sources/Paths/UpdateConfigurationAPI.swift new file mode 100644 index 000000000..bae2f7b0f --- /dev/null +++ b/Sources/Paths/UpdateConfigurationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates application configuration. + static func updateConfiguration(_ body: JellyfinAPI.ServerConfiguration) -> Request { + Request(method: "POST", url: "/System/Configuration", body: body, id: "UpdateConfiguration") + } +} diff --git a/Sources/Paths/UpdateDeviceOptionsAPI.swift b/Sources/Paths/UpdateDeviceOptionsAPI.swift new file mode 100644 index 000000000..586128ddd --- /dev/null +++ b/Sources/Paths/UpdateDeviceOptionsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Update device options. + static func updateDeviceOptions(id: String, _ body: JellyfinAPI.DeviceOptionsDto) -> Request { + Request(method: "POST", url: "/Devices/Options", query: [("id", id)], body: body, id: "UpdateDeviceOptions") + } +} diff --git a/Sources/Paths/UpdateDisplayPreferencesAPI.swift b/Sources/Paths/UpdateDisplayPreferencesAPI.swift new file mode 100644 index 000000000..66f2b8ea5 --- /dev/null +++ b/Sources/Paths/UpdateDisplayPreferencesAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Update Display Preferences. + static func updateDisplayPreferences( + displayPreferencesID: String, + userID: String, + client: String, + _ body: JellyfinAPI.DisplayPreferencesDto + ) -> Request { + Request( + method: "POST", + url: "/DisplayPreferences/\(displayPreferencesID)", + query: [("userId", userID), ("client", client)], + body: body, + id: "UpdateDisplayPreferences" + ) + } +} diff --git a/Sources/Paths/UpdateInitialConfigurationAPI.swift b/Sources/Paths/UpdateInitialConfigurationAPI.swift new file mode 100644 index 000000000..3625b6401 --- /dev/null +++ b/Sources/Paths/UpdateInitialConfigurationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Sets the initial startup wizard configuration. + static func updateInitialConfiguration(_ body: JellyfinAPI.StartupConfigurationDto) -> Request { + Request(method: "POST", url: "/Startup/Configuration", body: body, id: "UpdateInitialConfiguration") + } +} diff --git a/Sources/Paths/UpdateItemAPI.swift b/Sources/Paths/UpdateItemAPI.swift new file mode 100644 index 000000000..f804d12a9 --- /dev/null +++ b/Sources/Paths/UpdateItemAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates an item. + static func updateItem(itemID: String, _ body: JellyfinAPI.BaseItemDto) -> Request { + Request(method: "POST", url: "/Items/\(itemID)", body: body, id: "UpdateItem") + } +} diff --git a/Sources/Paths/UpdateItemContentTypeAPI.swift b/Sources/Paths/UpdateItemContentTypeAPI.swift new file mode 100644 index 000000000..a9521dd7f --- /dev/null +++ b/Sources/Paths/UpdateItemContentTypeAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Updates an item's content type. + public static func updateItemContentType(itemID: String, contentType: String? = nil) -> Request { + Request( + method: "POST", + url: "/Items/\(itemID)/ContentType", + query: makeUpdateItemContentTypeQuery(contentType), + id: "UpdateItemContentType" + ) + } + + private static func makeUpdateItemContentTypeQuery(_ contentType: String?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(contentType, forKey: "contentType") + return encoder.items + } +} diff --git a/Sources/Paths/UpdateItemImageIndexAPI.swift b/Sources/Paths/UpdateItemImageIndexAPI.swift new file mode 100644 index 000000000..19a993835 --- /dev/null +++ b/Sources/Paths/UpdateItemImageIndexAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Updates the index for an item image. + public static func updateItemImageIndex(itemID: String, imageType: String, imageIndex: Int, newIndex: Int32) -> Request { + Request( + method: "POST", + url: "/Items/\(itemID)/Images/\(imageType)/\(imageIndex)/Index", + query: makeUpdateItemImageIndexQuery(newIndex), + id: "UpdateItemImageIndex" + ) + } + + private static func makeUpdateItemImageIndexQuery(_ newIndex: Int32) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(newIndex, forKey: "newIndex") + return encoder.items + } +} diff --git a/Sources/Paths/UpdateLibraryOptionsAPI.swift b/Sources/Paths/UpdateLibraryOptionsAPI.swift new file mode 100644 index 000000000..6da58ed99 --- /dev/null +++ b/Sources/Paths/UpdateLibraryOptionsAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Update library options. + static func updateLibraryOptions(_ body: JellyfinAPI.UpdateLibraryOptionsDto? = nil) -> Request { + Request(method: "POST", url: "/Library/VirtualFolders/LibraryOptions", body: body, id: "UpdateLibraryOptions") + } +} diff --git a/Sources/Paths/UpdateMediaEncoderPathAPI.swift b/Sources/Paths/UpdateMediaEncoderPathAPI.swift new file mode 100644 index 000000000..df15188a4 --- /dev/null +++ b/Sources/Paths/UpdateMediaEncoderPathAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates the path to the media encoder. + static func updateMediaEncoderPath(_ body: JellyfinAPI.MediaEncoderPathDto) -> Request { + Request(method: "POST", url: "/System/MediaEncoder/Path", body: body, id: "UpdateMediaEncoderPath") + } +} diff --git a/Sources/Paths/UpdateMediaPathAPI.swift b/Sources/Paths/UpdateMediaPathAPI.swift new file mode 100644 index 000000000..c19dfa07a --- /dev/null +++ b/Sources/Paths/UpdateMediaPathAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates a media path. + static func updateMediaPath(_ body: JellyfinAPI.UpdateMediaPathRequestDto) -> Request { + Request(method: "POST", url: "/Library/VirtualFolders/Paths/Update", body: body, id: "UpdateMediaPath") + } +} diff --git a/Sources/Paths/UpdateNamedConfigurationAPI.swift b/Sources/Paths/UpdateNamedConfigurationAPI.swift new file mode 100644 index 000000000..1dfc38415 --- /dev/null +++ b/Sources/Paths/UpdateNamedConfigurationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates named configuration. + static func updateNamedConfiguration(key: String, _ body: AnyJSON) -> Request { + Request(method: "POST", url: "/System/Configuration/\(key)", body: body, id: "UpdateNamedConfiguration") + } +} diff --git a/Sources/Paths/UpdatePluginConfigurationAPI.swift b/Sources/Paths/UpdatePluginConfigurationAPI.swift new file mode 100644 index 000000000..a667febdf --- /dev/null +++ b/Sources/Paths/UpdatePluginConfigurationAPI.swift @@ -0,0 +1,20 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates plugin configuration. + /// + /// Accepts plugin configuration as JSON body. + static func updatePluginConfiguration(pluginID: String) -> Request { + Request(method: "POST", url: "/Plugins/\(pluginID)/Configuration", id: "UpdatePluginConfiguration") + } +} diff --git a/Sources/Paths/UpdateProfileAPI.swift b/Sources/Paths/UpdateProfileAPI.swift new file mode 100644 index 000000000..c88bb5027 --- /dev/null +++ b/Sources/Paths/UpdateProfileAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates a profile. + static func updateProfile(profileID: String, _ body: JellyfinAPI.DeviceProfile? = nil) -> Request { + Request(method: "POST", url: "/Dlna/Profiles/\(profileID)", body: body, id: "UpdateProfile") + } +} diff --git a/Sources/Paths/UpdateSeriesTimerAPI.swift b/Sources/Paths/UpdateSeriesTimerAPI.swift new file mode 100644 index 000000000..63fbd38a9 --- /dev/null +++ b/Sources/Paths/UpdateSeriesTimerAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates a live tv series timer. + static func updateSeriesTimer(timerID: String, _ body: JellyfinAPI.SeriesTimerInfoDto? = nil) -> Request { + Request(method: "POST", url: "/LiveTv/SeriesTimers/\(timerID)", body: body, id: "UpdateSeriesTimer") + } +} diff --git a/Sources/Paths/UpdateStartupUserAPI.swift b/Sources/Paths/UpdateStartupUserAPI.swift new file mode 100644 index 000000000..e15df0d3e --- /dev/null +++ b/Sources/Paths/UpdateStartupUserAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Sets the user name and password. + static func updateStartupUser(_ body: JellyfinAPI.StartupUserDto? = nil) -> Request { + Request(method: "POST", url: "/Startup/User", body: body, id: "UpdateStartupUser") + } +} diff --git a/Sources/Paths/UpdateTaskAPI.swift b/Sources/Paths/UpdateTaskAPI.swift new file mode 100644 index 000000000..fb705333a --- /dev/null +++ b/Sources/Paths/UpdateTaskAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Update specified task triggers. + static func updateTask(taskID: String, _ body: [JellyfinAPI.TaskTriggerInfo]) -> Request { + Request(method: "POST", url: "/ScheduledTasks/\(taskID)/Triggers", body: body, id: "UpdateTask") + } +} diff --git a/Sources/Paths/UpdateTimerAPI.swift b/Sources/Paths/UpdateTimerAPI.swift new file mode 100644 index 000000000..df0f2a31c --- /dev/null +++ b/Sources/Paths/UpdateTimerAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates a live tv timer. + static func updateTimer(timerID: String, _ body: JellyfinAPI.TimerInfoDto? = nil) -> Request { + Request(method: "POST", url: "/LiveTv/Timers/\(timerID)", body: body, id: "UpdateTimer") + } +} diff --git a/Sources/Paths/UpdateUserAPI.swift b/Sources/Paths/UpdateUserAPI.swift new file mode 100644 index 000000000..fa78db666 --- /dev/null +++ b/Sources/Paths/UpdateUserAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates a user. + static func updateUser(userID: String, _ body: JellyfinAPI.UserDto) -> Request { + Request(method: "POST", url: "/Users/\(userID)", body: body, id: "UpdateUser") + } +} diff --git a/Sources/Paths/UpdateUserConfigurationAPI.swift b/Sources/Paths/UpdateUserConfigurationAPI.swift new file mode 100644 index 000000000..c0856e867 --- /dev/null +++ b/Sources/Paths/UpdateUserConfigurationAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates a user configuration. + static func updateUserConfiguration(userID: String, _ body: JellyfinAPI.UserConfiguration) -> Request { + Request(method: "POST", url: "/Users/\(userID)/Configuration", body: body, id: "UpdateUserConfiguration") + } +} diff --git a/Sources/Paths/UpdateUserEasyPasswordAPI.swift b/Sources/Paths/UpdateUserEasyPasswordAPI.swift new file mode 100644 index 000000000..a520e3bcc --- /dev/null +++ b/Sources/Paths/UpdateUserEasyPasswordAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates a user's easy password. + static func updateUserEasyPassword(userID: String, _ body: JellyfinAPI.UpdateUserEasyPassword) -> Request { + Request(method: "POST", url: "/Users/\(userID)/EasyPassword", body: body, id: "UpdateUserEasyPassword") + } +} diff --git a/Sources/Paths/UpdateUserItemRatingAPI.swift b/Sources/Paths/UpdateUserItemRatingAPI.swift new file mode 100644 index 000000000..b19bcdd71 --- /dev/null +++ b/Sources/Paths/UpdateUserItemRatingAPI.swift @@ -0,0 +1,29 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +extension Paths { + /// Updates a user's rating for an item. + public static func updateUserItemRating(userID: String, itemID: String, isLikes: Bool? = nil) -> Request { + Request( + method: "POST", + url: "/Users/\(userID)/Items/\(itemID)/Rating", + query: makeUpdateUserItemRatingQuery(isLikes), + id: "UpdateUserItemRating" + ) + } + + private static func makeUpdateUserItemRatingQuery(_ isLikes: Bool?) -> [(String, String?)] { + let encoder = URLQueryEncoder() + encoder.encode(isLikes, forKey: "likes") + return encoder.items + } +} diff --git a/Sources/Paths/UpdateUserPasswordAPI.swift b/Sources/Paths/UpdateUserPasswordAPI.swift new file mode 100644 index 000000000..860ad8425 --- /dev/null +++ b/Sources/Paths/UpdateUserPasswordAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates a user's password. + static func updateUserPassword(userID: String, _ body: JellyfinAPI.UpdateUserPassword) -> Request { + Request(method: "POST", url: "/Users/\(userID)/Password", body: body, id: "UpdateUserPassword") + } +} diff --git a/Sources/Paths/UpdateUserPolicyAPI.swift b/Sources/Paths/UpdateUserPolicyAPI.swift new file mode 100644 index 000000000..f6dcf8ab1 --- /dev/null +++ b/Sources/Paths/UpdateUserPolicyAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Updates a user policy. + static func updateUserPolicy(userID: String, _ body: JellyfinAPI.UserPolicy) -> Request { + Request(method: "POST", url: "/Users/\(userID)/Policy", body: body, id: "UpdateUserPolicy") + } +} diff --git a/Sources/Paths/UploadCustomSplashscreenAPI.swift b/Sources/Paths/UploadCustomSplashscreenAPI.swift new file mode 100644 index 000000000..ec16ba923 --- /dev/null +++ b/Sources/Paths/UploadCustomSplashscreenAPI.swift @@ -0,0 +1,20 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Uploads a custom splashscreen. + /// + /// The body is expected to the image contents base64 encoded. + static func uploadCustomSplashscreen(_ body: Data? = nil) -> Request { + Request(method: "POST", url: "/Branding/Splashscreen", body: body, id: "UploadCustomSplashscreen") + } +} diff --git a/Sources/Paths/UploadSubtitleAPI.swift b/Sources/Paths/UploadSubtitleAPI.swift new file mode 100644 index 000000000..ea16dcc30 --- /dev/null +++ b/Sources/Paths/UploadSubtitleAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Upload an external subtitle file. + static func uploadSubtitle(itemID: String, _ body: JellyfinAPI.UploadSubtitleDto) -> Request { + Request(method: "POST", url: "/Videos/\(itemID)/Subtitles", body: body, id: "UploadSubtitle") + } +} diff --git a/Sources/Paths/ValidatePathAPI.swift b/Sources/Paths/ValidatePathAPI.swift new file mode 100644 index 000000000..c835e0e8f --- /dev/null +++ b/Sources/Paths/ValidatePathAPI.swift @@ -0,0 +1,18 @@ +// +// jellyfin-sdk-swift is subject to the terms of the Mozilla Public +// License, v2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at https://mozilla.org/MPL/2.0/. +// +// Copyright (c) 2022 Jellyfin & Jellyfin Contributors +// + +import Foundation +import Get +import URLQueryEncoder + +public extension Paths { + /// Validates path. + static func validatePath(_ body: JellyfinAPI.ValidatePathDto) -> Request { + Request(method: "POST", url: "/Environment/ValidatePath", body: body, id: "ValidatePath") + } +} diff --git a/Sources/create-api-config.yaml b/Sources/create-api-config.yaml new file mode 100644 index 000000000..4cbf643d2 --- /dev/null +++ b/Sources/create-api-config.yaml @@ -0,0 +1,24 @@ +module: JellyfinAPI +generate: +- entities +- paths +- enums +fileHeaderComment: | + // + // jellyfin-sdk-swift is subject to the terms of the Mozilla Public + // License, v2.0. If a copy of the MPL was not distributed with this + // file, you can obtain one at https://mozilla.org/MPL/2.0/. + // + // Copyright (c) 2022 Jellyfin & Jellyfin Contributors + // +dataTypes: + string: + uuid: String +entities: + includeIdentifiableConformance: true + sortPropertiesAlphabetically: true + exclude: + - BaseItemDto.CurrentProgram # removed due to circular references for struct conformance +paths: + style: operations + filenameTemplate: "%0API.swift" diff --git a/Sources/jellyfin-openapi-stable.json b/Sources/jellyfin-openapi-stable.json new file mode 100644 index 000000000..a6f9454a7 --- /dev/null +++ b/Sources/jellyfin-openapi-stable.json @@ -0,0 +1,55400 @@ +{ + "openapi": "3.0.1", + "info": { + "title": "Jellyfin API", + "version": "10.8.4", + "x-jellyfin-version": "10.8.4" + }, + "servers": [ + { + "url": "http://localhost" + } + ], + "paths": { + "/System/ActivityLog/Entries": { + "get": { + "tags": [ + "ActivityLog" + ], + "summary": "Gets activity log entries.", + "operationId": "GetLogEntries", + "parameters": [ + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minDate", + "in": "query", + "description": "Optional. The minimum date. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "hasUserId", + "in": "query", + "description": "Optional. Filter log entries if it has user id, or not.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Activity log returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ActivityLogEntryQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ActivityLogEntryQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ActivityLogEntryQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Auth/Keys": { + "get": { + "tags": [ + "ApiKey" + ], + "summary": "Get all keys.", + "operationId": "GetKeys", + "responses": { + "200": { + "description": "Api keys retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/AuthenticationInfoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/AuthenticationInfoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/AuthenticationInfoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "post": { + "tags": [ + "ApiKey" + ], + "summary": "Create a new api key.", + "operationId": "CreateKey", + "parameters": [ + { + "name": "app", + "in": "query", + "description": "Name of the app using the authentication key.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Api key created." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Auth/Keys/{key}": { + "delete": { + "tags": [ + "ApiKey" + ], + "summary": "Remove an api key.", + "operationId": "RevokeKey", + "parameters": [ + { + "name": "key", + "in": "path", + "description": "The access token to delete.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Api key deleted." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Artists": { + "get": { + "tags": [ + "Artists" + ], + "summary": "Gets all artists from a given item, folder, or the entire library.", + "operationId": "GetArtists", + "parameters": [ + { + "name": "minCommunityRating", + "in": "query", + "description": "Optional filter by minimum community rating.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "Optional. Search term.", + "schema": { + "type": "string" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "filters", + "in": "query", + "description": "Optional. Specify additional filters to apply.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFilter" + } + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional filter by items that are marked as favorite, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "mediaTypes", + "in": "query", + "description": "Optional filter by MediaType. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "genres", + "in": "query", + "description": "Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "genreIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "officialRatings", + "in": "query", + "description": "Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "tags", + "in": "query", + "description": "Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "years", + "in": "query", + "description": "Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "integer", + "format": "int32" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional, include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional, the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "person", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified person.", + "schema": { + "type": "string" + } + }, + { + "name": "personIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified person ids.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "personTypes", + "in": "query", + "description": "Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "studios", + "in": "query", + "description": "Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "studioIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "User id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "nameStartsWithOrGreater", + "in": "query", + "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameStartsWith", + "in": "query", + "description": "Optional filter by items whose name is sorted equally than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameLessThan", + "in": "query", + "description": "Optional filter by items whose name is equally or lesser than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Sort Order - Ascending,Descending.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional, include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Total record count.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Artists returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Artists/{name}": { + "get": { + "tags": [ + "Artists" + ], + "summary": "Gets an artist by name.", + "operationId": "GetArtistByName", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Studio name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Artist returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Artists/AlbumArtists": { + "get": { + "tags": [ + "Artists" + ], + "summary": "Gets all album artists from a given item, folder, or the entire library.", + "operationId": "GetAlbumArtists", + "parameters": [ + { + "name": "minCommunityRating", + "in": "query", + "description": "Optional filter by minimum community rating.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "Optional. Search term.", + "schema": { + "type": "string" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "filters", + "in": "query", + "description": "Optional. Specify additional filters to apply.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFilter" + } + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional filter by items that are marked as favorite, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "mediaTypes", + "in": "query", + "description": "Optional filter by MediaType. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "genres", + "in": "query", + "description": "Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "genreIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "officialRatings", + "in": "query", + "description": "Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "tags", + "in": "query", + "description": "Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "years", + "in": "query", + "description": "Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "integer", + "format": "int32" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional, include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional, the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "person", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified person.", + "schema": { + "type": "string" + } + }, + { + "name": "personIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified person ids.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "personTypes", + "in": "query", + "description": "Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "studios", + "in": "query", + "description": "Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "studioIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "User id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "nameStartsWithOrGreater", + "in": "query", + "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameStartsWith", + "in": "query", + "description": "Optional filter by items whose name is sorted equally than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameLessThan", + "in": "query", + "description": "Optional filter by items whose name is equally or lesser than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Sort Order - Ascending,Descending.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional, include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Total record count.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Album artists returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Audio/{itemId}/stream": { + "get": { + "tags": [ + "Audio" + ], + "summary": "Gets an audio stream.", + "operationId": "GetAudioStream", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "query", + "description": "The audio container.", + "schema": { + "type": "string" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Audio stream returned.", + "content": { + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + }, + "head": { + "tags": [ + "Audio" + ], + "summary": "Gets an audio stream.", + "operationId": "HeadAudioStream", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "query", + "description": "The audio container.", + "schema": { + "type": "string" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Audio stream returned.", + "content": { + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/Audio/{itemId}/stream.{container}": { + "get": { + "tags": [ + "Audio" + ], + "summary": "Gets an audio stream.", + "operationId": "GetAudioStreamByContainer", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "path", + "description": "The audio container.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment lenght.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamporphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Audio stream returned.", + "content": { + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + }, + "head": { + "tags": [ + "Audio" + ], + "summary": "Gets an audio stream.", + "operationId": "HeadAudioStreamByContainer", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "path", + "description": "The audio container.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment lenght.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamporphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Audio stream returned.", + "content": { + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/Branding/Configuration": { + "get": { + "tags": [ + "Branding" + ], + "summary": "Gets branding configuration.", + "operationId": "GetBrandingOptions", + "responses": { + "200": { + "description": "Branding configuration returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BrandingOptions" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BrandingOptions" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BrandingOptions" + } + } + } + } + } + } + }, + "/Branding/Css": { + "get": { + "tags": [ + "Branding" + ], + "summary": "Gets branding css.", + "operationId": "GetBrandingCss", + "responses": { + "200": { + "description": "Branding css returned.", + "content": { + "text/css": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "string" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "string" + } + } + } + }, + "204": { + "description": "No branding css configured." + } + } + } + }, + "/Branding/Css.css": { + "get": { + "tags": [ + "Branding" + ], + "summary": "Gets branding css.", + "operationId": "GetBrandingCss_2", + "responses": { + "200": { + "description": "Branding css returned.", + "content": { + "text/css": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "string" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "string" + } + } + } + }, + "204": { + "description": "No branding css configured." + } + } + } + }, + "/Channels": { + "get": { + "tags": [ + "Channels" + ], + "summary": "Gets available channels.", + "operationId": "GetChannels", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "User Id to filter by. Use System.Guid.Empty to not filter by user.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "supportsLatestItems", + "in": "query", + "description": "Optional. Filter by channels that support getting latest items.", + "schema": { + "type": "boolean" + } + }, + { + "name": "supportsMediaDeletion", + "in": "query", + "description": "Optional. Filter by channels that support media deletion.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional. Filter by channels that are favorite.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Channels returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Channels/{channelId}/Features": { + "get": { + "tags": [ + "Channels" + ], + "summary": "Get channel features.", + "operationId": "GetChannelFeatures", + "parameters": [ + { + "name": "channelId", + "in": "path", + "description": "Channel id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Channel features returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChannelFeatures" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ChannelFeatures" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ChannelFeatures" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Channels/{channelId}/Items": { + "get": { + "tags": [ + "Channels" + ], + "summary": "Get channel items.", + "operationId": "GetChannelItems", + "parameters": [ + { + "name": "channelId", + "in": "path", + "description": "Channel Id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "folderId", + "in": "query", + "description": "Optional. Folder Id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. User Id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Optional. Sort Order - Ascending,Descending.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + } + } + }, + { + "name": "filters", + "in": "query", + "description": "Optional. Specify additional filters to apply.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFilter" + } + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + } + ], + "responses": { + "200": { + "description": "Channel items returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Channels/Features": { + "get": { + "tags": [ + "Channels" + ], + "summary": "Get all channel features.", + "operationId": "GetAllChannelFeatures", + "responses": { + "200": { + "description": "All channel features returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChannelFeatures" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChannelFeatures" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChannelFeatures" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Channels/Items/Latest": { + "get": { + "tags": [ + "Channels" + ], + "summary": "Gets latest channel items.", + "operationId": "GetLatestChannelItems", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "Optional. User Id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "filters", + "in": "query", + "description": "Optional. Specify additional filters to apply.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFilter" + } + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "channelIds", + "in": "query", + "description": "Optional. Specify one or more channel id's, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + } + ], + "responses": { + "200": { + "description": "Latest channel items returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/ClientLog/Document": { + "post": { + "tags": [ + "ClientLog" + ], + "summary": "Upload a document.", + "operationId": "LogFile", + "requestBody": { + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "responses": { + "200": { + "description": "Document saved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClientLogDocumentResponseDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ClientLogDocumentResponseDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ClientLogDocumentResponseDto" + } + } + } + }, + "403": { + "description": "Event logging disabled.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "413": { + "description": "Upload size too large.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Collections": { + "post": { + "tags": [ + "Collection" + ], + "summary": "Creates a new collection.", + "operationId": "CreateCollection", + "parameters": [ + { + "name": "name", + "in": "query", + "description": "The name of the collection.", + "schema": { + "type": "string" + } + }, + { + "name": "ids", + "in": "query", + "description": "Item Ids to add to the collection.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "parentId", + "in": "query", + "description": "Optional. Create the collection within a specific folder.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "isLocked", + "in": "query", + "description": "Whether or not to lock the new collection.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Collection created.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CollectionCreationResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/CollectionCreationResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/CollectionCreationResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Collections/{collectionId}/Items": { + "post": { + "tags": [ + "Collection" + ], + "summary": "Adds items to a collection.", + "operationId": "AddToCollection", + "parameters": [ + { + "name": "collectionId", + "in": "path", + "description": "The collection id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "ids", + "in": "query", + "description": "Item ids, comma delimited.", + "required": true, + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + } + ], + "responses": { + "204": { + "description": "Items added to collection." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "Collection" + ], + "summary": "Removes items from a collection.", + "operationId": "RemoveFromCollection", + "parameters": [ + { + "name": "collectionId", + "in": "path", + "description": "The collection id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "ids", + "in": "query", + "description": "Item ids, comma delimited.", + "required": true, + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + } + ], + "responses": { + "204": { + "description": "Items removed from collection." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/System/Configuration": { + "get": { + "tags": [ + "Configuration" + ], + "summary": "Gets application configuration.", + "operationId": "GetConfiguration", + "responses": { + "200": { + "description": "Application configuration returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ServerConfiguration" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ServerConfiguration" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ServerConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "Configuration" + ], + "summary": "Updates application configuration.", + "operationId": "UpdateConfiguration", + "requestBody": { + "description": "Configuration.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ServerConfiguration" + } + ], + "description": "Represents the server configuration." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ServerConfiguration" + } + ], + "description": "Represents the server configuration." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ServerConfiguration" + } + ], + "description": "Represents the server configuration." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Configuration updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/System/Configuration/{key}": { + "get": { + "tags": [ + "Configuration" + ], + "summary": "Gets a named configuration.", + "operationId": "GetNamedConfiguration", + "parameters": [ + { + "name": "key", + "in": "path", + "description": "Configuration key.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Configuration returned.", + "content": { + "application/json": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "Configuration" + ], + "summary": "Updates named configuration.", + "operationId": "UpdateNamedConfiguration", + "parameters": [ + { + "name": "key", + "in": "path", + "description": "Configuration key.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "Configuration.", + "content": { + "application/json": { + "schema": { } + }, + "text/json": { + "schema": { } + }, + "application/*+json": { + "schema": { } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Named configuration updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/System/Configuration/MetadataOptions/Default": { + "get": { + "tags": [ + "Configuration" + ], + "summary": "Gets a default MetadataOptions object.", + "operationId": "GetDefaultMetadataOptions", + "responses": { + "200": { + "description": "Metadata options returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/MetadataOptions" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/MetadataOptions" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/MetadataOptions" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/System/MediaEncoder/Path": { + "post": { + "tags": [ + "Configuration" + ], + "summary": "Updates the path to the media encoder.", + "operationId": "UpdateMediaEncoderPath", + "requestBody": { + "description": "Media encoder path form body.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaEncoderPathDto" + } + ], + "description": "Media Encoder Path Dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaEncoderPathDto" + } + ], + "description": "Media Encoder Path Dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaEncoderPathDto" + } + ], + "description": "Media Encoder Path Dto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Media encoder path updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated", + "DefaultAuthorization" + ] + } + ] + } + }, + "/web/ConfigurationPage": { + "get": { + "tags": [ + "Dashboard" + ], + "summary": "Gets a dashboard configuration page.", + "operationId": "GetDashboardConfigurationPage", + "parameters": [ + { + "name": "name", + "in": "query", + "description": "The name of the page.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "ConfigurationPage returned.", + "content": { + "text/html": { + "schema": { + "type": "string", + "format": "binary" + } + }, + "application/x-javascript": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Plugin configuration page not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/web/ConfigurationPages": { + "get": { + "tags": [ + "Dashboard" + ], + "summary": "Gets the configuration pages.", + "operationId": "GetConfigurationPages", + "parameters": [ + { + "name": "enableInMainMenu", + "in": "query", + "description": "Whether to enable in the main menu.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "ConfigurationPages returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ConfigurationPageInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ConfigurationPageInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ConfigurationPageInfo" + } + } + } + } + }, + "404": { + "description": "Server still loading.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Devices": { + "get": { + "tags": [ + "Devices" + ], + "summary": "Get Devices.", + "operationId": "GetDevices", + "parameters": [ + { + "name": "supportsSync", + "in": "query", + "description": "Gets or sets a value indicating whether [supports synchronize].", + "schema": { + "type": "boolean" + } + }, + { + "name": "userId", + "in": "query", + "description": "Gets or sets the user identifier.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Devices retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeviceInfoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/DeviceInfoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/DeviceInfoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "delete": { + "tags": [ + "Devices" + ], + "summary": "Deletes a device.", + "operationId": "DeleteDevice", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "Device Id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Device deleted." + }, + "404": { + "description": "Device not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Devices/Info": { + "get": { + "tags": [ + "Devices" + ], + "summary": "Get info for a device.", + "operationId": "GetDeviceInfo", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "Device Id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Device info retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeviceInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/DeviceInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/DeviceInfo" + } + } + } + }, + "404": { + "description": "Device not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Devices/Options": { + "get": { + "tags": [ + "Devices" + ], + "summary": "Get options for a device.", + "operationId": "GetDeviceOptions", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "Device Id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Device options retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeviceOptions" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/DeviceOptions" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/DeviceOptions" + } + } + } + }, + "404": { + "description": "Device not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "post": { + "tags": [ + "Devices" + ], + "summary": "Update device options.", + "operationId": "UpdateDeviceOptions", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "Device Id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "Device Options.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceOptionsDto" + } + ], + "description": "A dto representing custom options for a device." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceOptionsDto" + } + ], + "description": "A dto representing custom options for a device." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceOptionsDto" + } + ], + "description": "A dto representing custom options for a device." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Device options updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/DisplayPreferences/{displayPreferencesId}": { + "get": { + "tags": [ + "DisplayPreferences" + ], + "summary": "Get Display Preferences.", + "operationId": "GetDisplayPreferences", + "parameters": [ + { + "name": "displayPreferencesId", + "in": "path", + "description": "Display preferences id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "client", + "in": "query", + "description": "Client.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Display preferences retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DisplayPreferencesDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/DisplayPreferencesDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/DisplayPreferencesDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "DisplayPreferences" + ], + "summary": "Update Display Preferences.", + "operationId": "UpdateDisplayPreferences", + "parameters": [ + { + "name": "displayPreferencesId", + "in": "path", + "description": "Display preferences id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "User Id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "client", + "in": "query", + "description": "Client.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "New Display Preferences object.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DisplayPreferencesDto" + } + ], + "description": "Defines the display preferences for any item that supports them (usually Folders)." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DisplayPreferencesDto" + } + ], + "description": "Defines the display preferences for any item that supports them (usually Folders)." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DisplayPreferencesDto" + } + ], + "description": "Defines the display preferences for any item that supports them (usually Folders)." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Display preferences updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Dlna/ProfileInfos": { + "get": { + "tags": [ + "Dlna" + ], + "summary": "Get profile infos.", + "operationId": "GetProfileInfos", + "responses": { + "200": { + "description": "Device profile infos returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/DeviceProfileInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/DeviceProfileInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/DeviceProfileInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Dlna/Profiles": { + "post": { + "tags": [ + "Dlna" + ], + "summary": "Creates a profile.", + "operationId": "CreateProfile", + "requestBody": { + "description": "Device profile.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfile" + } + ], + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfile" + } + ], + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfile" + } + ], + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." + } + } + } + }, + "responses": { + "204": { + "description": "Device profile created." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Dlna/Profiles/{profileId}": { + "get": { + "tags": [ + "Dlna" + ], + "summary": "Gets a single profile.", + "operationId": "GetProfile", + "parameters": [ + { + "name": "profileId", + "in": "path", + "description": "Profile Id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Device profile returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeviceProfile" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/DeviceProfile" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/DeviceProfile" + } + } + } + }, + "404": { + "description": "Device profile not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "delete": { + "tags": [ + "Dlna" + ], + "summary": "Deletes a profile.", + "operationId": "DeleteProfile", + "parameters": [ + { + "name": "profileId", + "in": "path", + "description": "Profile id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Device profile deleted." + }, + "404": { + "description": "Device profile not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "post": { + "tags": [ + "Dlna" + ], + "summary": "Updates a profile.", + "operationId": "UpdateProfile", + "parameters": [ + { + "name": "profileId", + "in": "path", + "description": "Profile id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "Device profile.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfile" + } + ], + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfile" + } + ], + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfile" + } + ], + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." + } + } + } + }, + "responses": { + "204": { + "description": "Device profile updated." + }, + "404": { + "description": "Device profile not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Dlna/Profiles/Default": { + "get": { + "tags": [ + "Dlna" + ], + "summary": "Gets the default profile.", + "operationId": "GetDefaultProfile", + "responses": { + "200": { + "description": "Default device profile returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeviceProfile" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/DeviceProfile" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/DeviceProfile" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Dlna/{serverId}/ConnectionManager": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets Dlna media receiver registrar xml.", + "operationId": "GetConnectionManager", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Dlna media receiver registrar xml returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/ConnectionManager/ConnectionManager": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets Dlna media receiver registrar xml.", + "operationId": "GetConnectionManager_2", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Dlna media receiver registrar xml returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/ConnectionManager/ConnectionManager.xml": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets Dlna media receiver registrar xml.", + "operationId": "GetConnectionManager_3", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Dlna media receiver registrar xml returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/ConnectionManager/Control": { + "post": { + "tags": [ + "DlnaServer" + ], + "summary": "Process a connection manager control request.", + "operationId": "ProcessConnectionManagerControlRequest", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Request processed.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/ContentDirectory": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets Dlna content directory xml.", + "operationId": "GetContentDirectory", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Dlna content directory returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/ContentDirectory/ContentDirectory": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets Dlna content directory xml.", + "operationId": "GetContentDirectory_2", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Dlna content directory returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/ContentDirectory/ContentDirectory.xml": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets Dlna content directory xml.", + "operationId": "GetContentDirectory_3", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Dlna content directory returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/ContentDirectory/Control": { + "post": { + "tags": [ + "DlnaServer" + ], + "summary": "Process a content directory control request.", + "operationId": "ProcessContentDirectoryControlRequest", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Request processed.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/description": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Get Description Xml.", + "operationId": "GetDescriptionXml", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Description xml returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/description.xml": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Get Description Xml.", + "operationId": "GetDescriptionXml_2", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Description xml returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/icons/{fileName}": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets a server icon.", + "operationId": "GetIconId", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "fileName", + "in": "path", + "description": "The icon filename.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Request processed.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Not Found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/MediaReceiverRegistrar": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets Dlna media receiver registrar xml.", + "operationId": "GetMediaReceiverRegistrar", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Dlna media receiver registrar xml returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/MediaReceiverRegistrar/Control": { + "post": { + "tags": [ + "DlnaServer" + ], + "summary": "Process a media receiver registrar control request.", + "operationId": "ProcessMediaReceiverRegistrarControlRequest", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Request processed.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets Dlna media receiver registrar xml.", + "operationId": "GetMediaReceiverRegistrar_2", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Dlna media receiver registrar xml returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar.xml": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets Dlna media receiver registrar xml.", + "operationId": "GetMediaReceiverRegistrar_3", + "parameters": [ + { + "name": "serverId", + "in": "path", + "description": "Server UUID.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Dlna media receiver registrar xml returned.", + "content": { + "text/xml": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Dlna/icons/{fileName}": { + "get": { + "tags": [ + "DlnaServer" + ], + "summary": "Gets a server icon.", + "operationId": "GetIcon", + "parameters": [ + { + "name": "fileName", + "in": "path", + "description": "The icon filename.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Request processed.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Not Found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "503": { + "description": "DLNA is disabled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "AnonymousLanAccessPolicy" + ] + } + ] + } + }, + "/Audio/{itemId}/hls1/{playlistId}/{segmentId}.{container}": { + "get": { + "tags": [ + "DynamicHls" + ], + "summary": "Gets a video stream using HTTP live streaming.", + "operationId": "GetHlsAudioSegment", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "playlistId", + "in": "path", + "description": "The playlist id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "segmentId", + "in": "path", + "description": "The segment id.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "container", + "in": "path", + "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "runtimeTicks", + "in": "query", + "description": "The position of the requested segment in ticks.", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "actualSegmentLengthTicks", + "in": "query", + "description": "The length of the requested segment in ticks.", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxStreamingBitrate", + "in": "query", + "description": "Optional. The maximum streaming bitrate.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Video stream returned.", + "content": { + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Audio/{itemId}/main.m3u8": { + "get": { + "tags": [ + "DynamicHls" + ], + "summary": "Gets an audio stream using HTTP live streaming.", + "operationId": "GetVariantHlsAudioPlaylist", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxStreamingBitrate", + "in": "query", + "description": "Optional. The maximum streaming bitrate.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Audio stream returned.", + "content": { + "application/x-mpegURL": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Audio/{itemId}/master.m3u8": { + "get": { + "tags": [ + "DynamicHls" + ], + "summary": "Gets an audio hls playlist stream.", + "operationId": "GetMasterHlsAudioPlaylist", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxStreamingBitrate", + "in": "query", + "description": "Optional. The maximum streaming bitrate.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + }, + { + "name": "enableAdaptiveBitrateStreaming", + "in": "query", + "description": "Enable adaptive bitrate streaming.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Audio stream returned.", + "content": { + "application/x-mpegURL": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "head": { + "tags": [ + "DynamicHls" + ], + "summary": "Gets an audio hls playlist stream.", + "operationId": "HeadMasterHlsAudioPlaylist", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxStreamingBitrate", + "in": "query", + "description": "Optional. The maximum streaming bitrate.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + }, + { + "name": "enableAdaptiveBitrateStreaming", + "in": "query", + "description": "Enable adaptive bitrate streaming.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Audio stream returned.", + "content": { + "application/x-mpegURL": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Videos/{itemId}/hls1/{playlistId}/{segmentId}.{container}": { + "get": { + "tags": [ + "DynamicHls" + ], + "summary": "Gets a video stream using HTTP live streaming.", + "operationId": "GetHlsVideoSegment", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "playlistId", + "in": "path", + "description": "The playlist id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "segmentId", + "in": "path", + "description": "The segment id.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "container", + "in": "path", + "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "runtimeTicks", + "in": "query", + "description": "The position of the requested segment in ticks.", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "actualSegmentLengthTicks", + "in": "query", + "description": "The length of the requested segment in ticks.", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The desired segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. The maximum horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. The maximum vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Video stream returned.", + "content": { + "video/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Videos/{itemId}/live.m3u8": { + "get": { + "tags": [ + "DynamicHls" + ], + "summary": "Gets a hls live stream.", + "operationId": "GetLiveHlsStream", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "query", + "description": "The audio container.", + "schema": { + "type": "string" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment lenght.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. The max width.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. The max height.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableSubtitlesInManifest", + "in": "query", + "description": "Optional. Whether to enable subtitles in the manifest.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Hls live stream retrieved.", + "content": { + "application/x-mpegURL": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Videos/{itemId}/main.m3u8": { + "get": { + "tags": [ + "DynamicHls" + ], + "summary": "Gets a video stream using HTTP live streaming.", + "operationId": "GetVariantHlsVideoPlaylist", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. The maximum horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. The maximum vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Video stream returned.", + "content": { + "application/x-mpegURL": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Videos/{itemId}/master.m3u8": { + "get": { + "tags": [ + "DynamicHls" + ], + "summary": "Gets a video hls playlist stream.", + "operationId": "GetMasterHlsVideoPlaylist", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. The maximum horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. The maximum vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + }, + { + "name": "enableAdaptiveBitrateStreaming", + "in": "query", + "description": "Enable adaptive bitrate streaming.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Video stream returned.", + "content": { + "application/x-mpegURL": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "head": { + "tags": [ + "DynamicHls" + ], + "summary": "Gets a video hls playlist stream.", + "operationId": "HeadMasterHlsVideoPlaylist", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. The maximum horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. The maximum vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + }, + { + "name": "enableAdaptiveBitrateStreaming", + "in": "query", + "description": "Enable adaptive bitrate streaming.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Video stream returned.", + "content": { + "application/x-mpegURL": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Environment/DefaultDirectoryBrowser": { + "get": { + "tags": [ + "Environment" + ], + "summary": "Get Default directory browser.", + "operationId": "GetDefaultDirectoryBrowser", + "responses": { + "200": { + "description": "Default directory browser returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DefaultDirectoryBrowserInfoDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/DefaultDirectoryBrowserInfoDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/DefaultDirectoryBrowserInfoDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Environment/DirectoryContents": { + "get": { + "tags": [ + "Environment" + ], + "summary": "Gets the contents of a given directory in the file system.", + "operationId": "GetDirectoryContents", + "parameters": [ + { + "name": "path", + "in": "query", + "description": "The path.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "includeFiles", + "in": "query", + "description": "An optional filter to include or exclude files from the results. true/false.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "includeDirectories", + "in": "query", + "description": "An optional filter to include or exclude folders from the results. true/false.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Directory contents returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FileSystemEntryInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FileSystemEntryInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FileSystemEntryInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Environment/Drives": { + "get": { + "tags": [ + "Environment" + ], + "summary": "Gets available drives from the server's file system.", + "operationId": "GetDrives", + "responses": { + "200": { + "description": "List of entries returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FileSystemEntryInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FileSystemEntryInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FileSystemEntryInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Environment/NetworkShares": { + "get": { + "tags": [ + "Environment" + ], + "summary": "Gets network paths.", + "operationId": "GetNetworkShares", + "responses": { + "200": { + "description": "Empty array returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FileSystemEntryInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FileSystemEntryInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FileSystemEntryInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "deprecated": true, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Environment/ParentPath": { + "get": { + "tags": [ + "Environment" + ], + "summary": "Gets the parent path of a given path.", + "operationId": "GetParentPath", + "parameters": [ + { + "name": "path", + "in": "query", + "description": "The path.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "string" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Environment/ValidatePath": { + "post": { + "tags": [ + "Environment" + ], + "summary": "Validates path.", + "operationId": "ValidatePath", + "requestBody": { + "description": "Validate request object.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ValidatePathDto" + } + ], + "description": "Validate path object." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ValidatePathDto" + } + ], + "description": "Validate path object." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ValidatePathDto" + } + ], + "description": "Validate path object." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Path validated." + }, + "404": { + "description": "Path not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Items/Filters": { + "get": { + "tags": [ + "Filter" + ], + "summary": "Gets legacy query filters.", + "operationId": "GetQueryFiltersLegacy", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "Optional. User id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Optional. Parent id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "mediaTypes", + "in": "query", + "description": "Optional. Filter by MediaType. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Legacy filters retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/QueryFiltersLegacy" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/QueryFiltersLegacy" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/QueryFiltersLegacy" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/Filters2": { + "get": { + "tags": [ + "Filter" + ], + "summary": "Gets query filters.", + "operationId": "GetQueryFilters", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "Optional. User id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Optional. Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "isAiring", + "in": "query", + "description": "Optional. Is item airing.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isMovie", + "in": "query", + "description": "Optional. Is item movie.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSports", + "in": "query", + "description": "Optional. Is item sports.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isKids", + "in": "query", + "description": "Optional. Is item kids.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isNews", + "in": "query", + "description": "Optional. Is item news.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSeries", + "in": "query", + "description": "Optional. Is item series.", + "schema": { + "type": "boolean" + } + }, + { + "name": "recursive", + "in": "query", + "description": "Optional. Search recursive.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Filters retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/QueryFilters" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/QueryFilters" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/QueryFilters" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Genres": { + "get": { + "tags": [ + "Genres" + ], + "summary": "Gets all genres from a given item, folder, or the entire library.", + "operationId": "GetGenres", + "parameters": [ + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "The search term.", + "schema": { + "type": "string" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional filter by items that are marked as favorite, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional, the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "User id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "nameStartsWithOrGreater", + "in": "query", + "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameStartsWith", + "in": "query", + "description": "Optional filter by items whose name is sorted equally than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameLessThan", + "in": "query", + "description": "Optional filter by items whose name is equally or lesser than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Sort Order - Ascending,Descending.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional, include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Optional. Include total record count.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Genres returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Genres/{genreName}": { + "get": { + "tags": [ + "Genres" + ], + "summary": "Gets a genre, by name.", + "operationId": "GetGenre", + "parameters": [ + { + "name": "genreName", + "in": "path", + "description": "The genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "The user id.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Genres returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Audio/{itemId}/hls/{segmentId}/stream.aac": { + "get": { + "tags": [ + "HlsSegment" + ], + "summary": "Gets the specified audio segment for an audio item.", + "operationId": "GetHlsAudioSegmentLegacyAac", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "segmentId", + "in": "path", + "description": "The segment id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Hls audio segment returned.", + "content": { + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/Audio/{itemId}/hls/{segmentId}/stream.mp3": { + "get": { + "tags": [ + "HlsSegment" + ], + "summary": "Gets the specified audio segment for an audio item.", + "operationId": "GetHlsAudioSegmentLegacyMp3", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "segmentId", + "in": "path", + "description": "The segment id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Hls audio segment returned.", + "content": { + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/Videos/{itemId}/hls/{playlistId}/{segmentId}.{segmentContainer}": { + "get": { + "tags": [ + "HlsSegment" + ], + "summary": "Gets a hls video segment.", + "operationId": "GetHlsVideoSegmentLegacy", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "playlistId", + "in": "path", + "description": "The playlist id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "segmentId", + "in": "path", + "description": "The segment id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "path", + "description": "The segment container.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Hls video segment returned.", + "content": { + "video/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Hls segment not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Videos/{itemId}/hls/{playlistId}/stream.m3u8": { + "get": { + "tags": [ + "HlsSegment" + ], + "summary": "Gets a hls video playlist.", + "operationId": "GetHlsPlaylistLegacy", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The video id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "playlistId", + "in": "path", + "description": "The playlist id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Hls video playlist returned.", + "content": { + "application/x-mpegURL": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Videos/ActiveEncodings": { + "delete": { + "tags": [ + "HlsSegment" + ], + "summary": "Stops an active encoding.", + "operationId": "StopEncodingProcess", + "parameters": [ + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Encoding stopped successfully." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Artists/{name}/Images/{imageType}/{imageIndex}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get artist image by name.", + "operationId": "GetArtistImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Artist name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get artist image by name.", + "operationId": "HeadArtistImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Artist name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Branding/Splashscreen": { + "get": { + "tags": [ + "Image" + ], + "summary": "Generates or gets the splashscreen.", + "operationId": "GetSplashscreen", + "parameters": [ + { + "name": "tag", + "in": "query", + "description": "Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "blur", + "in": "query", + "description": "Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "quality", + "in": "query", + "description": "Quality setting, from 0-100.", + "schema": { + "maximum": 100, + "minimum": 0, + "type": "integer", + "format": "int32", + "default": 90 + } + } + ], + "responses": { + "200": { + "description": "Splashscreen returned successfully.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + }, + "post": { + "tags": [ + "Image" + ], + "summary": "Uploads a custom splashscreen.\r\nThe body is expected to the image contents base64 encoded.", + "operationId": "UploadCustomSplashscreen", + "requestBody": { + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "responses": { + "204": { + "description": "Successfully uploaded new splashscreen." + }, + "400": { + "description": "Error reading MimeType from uploaded image.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "403": { + "description": "User does not have permission to upload splashscreen..", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "delete": { + "tags": [ + "Image" + ], + "summary": "Delete a custom splashscreen.", + "operationId": "DeleteCustomSplashscreen", + "responses": { + "204": { + "description": "Successfully deleted the custom splashscreen." + }, + "403": { + "description": "User does not have permission to delete splashscreen.." + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Genres/{name}/Images/{imageType}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get genre image by name.", + "operationId": "GetGenreImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get genre image by name.", + "operationId": "HeadGenreImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Genres/{name}/Images/{imageType}/{imageIndex}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get genre image by name.", + "operationId": "GetGenreImageByIndex", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get genre image by name.", + "operationId": "HeadGenreImageByIndex", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Items/{itemId}/Images": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get item image infos.", + "operationId": "GetItemImageInfos", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Item images returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageInfo" + } + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/Images/{imageType}": { + "delete": { + "tags": [ + "Image" + ], + "summary": "Delete an item's image.", + "operationId": "DeleteItemImage", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "The image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "204": { + "description": "Image deleted." + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "post": { + "tags": [ + "Image" + ], + "summary": "Set item image.", + "operationId": "SetItemImage", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + } + ], + "requestBody": { + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "responses": { + "204": { + "description": "Image saved." + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "get": { + "tags": [ + "Image" + ], + "summary": "Gets the item's image.", + "operationId": "GetItemImage", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "format", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Gets the item's image.", + "operationId": "HeadItemImage", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "format", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Items/{itemId}/Images/{imageType}/{imageIndex}": { + "delete": { + "tags": [ + "Image" + ], + "summary": "Delete an item's image.", + "operationId": "DeleteItemImageByIndex", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "The image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "204": { + "description": "Image deleted." + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "post": { + "tags": [ + "Image" + ], + "summary": "Set item image.", + "operationId": "SetItemImageByIndex", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "(Unused) Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "requestBody": { + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "responses": { + "204": { + "description": "Image saved." + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "get": { + "tags": [ + "Image" + ], + "summary": "Gets the item's image.", + "operationId": "GetItemImageByIndex", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "format", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Gets the item's image.", + "operationId": "HeadItemImageByIndex", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "format", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Gets the item's image.", + "operationId": "GetItemImage2", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "maxWidth", + "in": "path", + "description": "The maximum image width to return.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "path", + "description": "The maximum image height to return.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "path", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "format", + "in": "path", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ], + "description": "Enum ImageOutputFormat." + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "percentPlayed", + "in": "path", + "description": "Optional. Percent to render for the percent played overlay.", + "required": true, + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "path", + "description": "Optional. Unplayed count overlay to render.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Gets the item's image.", + "operationId": "HeadItemImage2", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "maxWidth", + "in": "path", + "description": "The maximum image width to return.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "path", + "description": "The maximum image height to return.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "path", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "format", + "in": "path", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ], + "description": "Enum ImageOutputFormat." + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "percentPlayed", + "in": "path", + "description": "Optional. Percent to render for the percent played overlay.", + "required": true, + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "path", + "description": "Optional. Unplayed count overlay to render.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Items/{itemId}/Images/{imageType}/{imageIndex}/Index": { + "post": { + "tags": [ + "Image" + ], + "summary": "Updates the index for an item image.", + "operationId": "UpdateItemImageIndex", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Old image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "newIndex", + "in": "query", + "description": "New image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "204": { + "description": "Image index updated." + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/MusicGenres/{name}/Images/{imageType}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get music genre image by name.", + "operationId": "GetMusicGenreImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Music genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get music genre image by name.", + "operationId": "HeadMusicGenreImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Music genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/MusicGenres/{name}/Images/{imageType}/{imageIndex}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get music genre image by name.", + "operationId": "GetMusicGenreImageByIndex", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Music genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get music genre image by name.", + "operationId": "HeadMusicGenreImageByIndex", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Music genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Persons/{name}/Images/{imageType}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get person image by name.", + "operationId": "GetPersonImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Person name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get person image by name.", + "operationId": "HeadPersonImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Person name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Persons/{name}/Images/{imageType}/{imageIndex}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get person image by name.", + "operationId": "GetPersonImageByIndex", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Person name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get person image by name.", + "operationId": "HeadPersonImageByIndex", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Person name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Studios/{name}/Images/{imageType}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get studio image by name.", + "operationId": "GetStudioImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Studio name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get studio image by name.", + "operationId": "HeadStudioImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Studio name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Studios/{name}/Images/{imageType}/{imageIndex}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get studio image by name.", + "operationId": "GetStudioImageByIndex", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Studio name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get studio image by name.", + "operationId": "HeadStudioImageByIndex", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Studio name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Users/{userId}/Images/{imageType}": { + "post": { + "tags": [ + "Image" + ], + "summary": "Sets the user image.", + "operationId": "PostUserImage", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User Id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "(Unused) Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "index", + "in": "query", + "description": "(Unused) Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "requestBody": { + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "responses": { + "204": { + "description": "Image updated." + }, + "403": { + "description": "User does not have permission to delete the image.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "Image" + ], + "summary": "Delete the user's image.", + "operationId": "DeleteUserImage", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User Id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "(Unused) Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "index", + "in": "query", + "description": "(Unused) Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "204": { + "description": "Image deleted." + }, + "403": { + "description": "User does not have permission to delete the image.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "get": { + "tags": [ + "Image" + ], + "summary": "Get user profile image.", + "operationId": "GetUserImage", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get user profile image.", + "operationId": "HeadUserImage", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + }, + { + "name": "imageIndex", + "in": "query", + "description": "Image index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Users/{userId}/Images/{imageType}/{imageIndex}": { + "get": { + "tags": [ + "Image" + ], + "summary": "Get user profile image.", + "operationId": "GetUserImageByIndex", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + }, + "head": { + "tags": [ + "Image" + ], + "summary": "Get user profile image.", + "operationId": "HeadUserImageByIndex", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageIndex", + "in": "path", + "description": "Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "tag", + "in": "query", + "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", + "schema": { + "type": "string" + } + }, + { + "name": "format", + "in": "query", + "description": "Determines the output format of the image - original,gif,jpg,png.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageFormat" + } + ] + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "The maximum image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "The maximum image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "percentPlayed", + "in": "query", + "description": "Optional. Percent to render for the percent played overlay.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "unplayedCount", + "in": "query", + "description": "Optional. Unplayed count overlay to render.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "width", + "in": "query", + "description": "The fixed image width to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "The fixed image height to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "quality", + "in": "query", + "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillWidth", + "in": "query", + "description": "Width of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fillHeight", + "in": "query", + "description": "Height of box to fill.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cropWhitespace", + "in": "query", + "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "addPlayedIndicator", + "in": "query", + "description": "Optional. Add a played indicator.", + "schema": { + "type": "boolean" + } + }, + { + "name": "blur", + "in": "query", + "description": "Optional. Blur image.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "backgroundColor", + "in": "query", + "description": "Optional. Apply a background color for transparent images.", + "schema": { + "type": "string" + } + }, + { + "name": "foregroundLayer", + "in": "query", + "description": "Optional. Apply a foreground layer on top of the image.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Users/{userId}/Images/{imageType}/{index}": { + "post": { + "tags": [ + "Image" + ], + "summary": "Sets the user image.", + "operationId": "PostUserImageByIndex", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User Id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "(Unused) Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "index", + "in": "path", + "description": "(Unused) Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "requestBody": { + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "responses": { + "204": { + "description": "Image updated." + }, + "403": { + "description": "User does not have permission to delete the image.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "Image" + ], + "summary": "Delete the user's image.", + "operationId": "DeleteUserImageByIndex", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User Id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "imageType", + "in": "path", + "description": "(Unused) Image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "index", + "in": "path", + "description": "(Unused) Image index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "204": { + "description": "Image deleted." + }, + "403": { + "description": "User does not have permission to delete the image.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Images/General": { + "get": { + "tags": [ + "ImageByName" + ], + "summary": "Get all general images.", + "operationId": "GetGeneralImages", + "responses": { + "200": { + "description": "Retrieved list of images.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageByNameInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageByNameInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageByNameInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Images/General/{name}/{type}": { + "get": { + "tags": [ + "ImageByName" + ], + "summary": "Get General Image.", + "operationId": "GetGeneralImage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "The name of the image.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "type", + "in": "path", + "description": "Image Type (primary, backdrop, logo, etc).", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream retrieved.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Image not found.", + "content": { + "application/octet-stream": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Images/MediaInfo": { + "get": { + "tags": [ + "ImageByName" + ], + "summary": "Get all media info images.", + "operationId": "GetMediaInfoImages", + "responses": { + "200": { + "description": "Image list retrieved.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageByNameInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageByNameInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageByNameInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Images/MediaInfo/{theme}/{name}": { + "get": { + "tags": [ + "ImageByName" + ], + "summary": "Get media info image.", + "operationId": "GetMediaInfoImage", + "parameters": [ + { + "name": "theme", + "in": "path", + "description": "The theme to get the image from.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "name", + "in": "path", + "description": "The name of the image.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream retrieved.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Image not found.", + "content": { + "application/octet-stream": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Images/Ratings": { + "get": { + "tags": [ + "ImageByName" + ], + "summary": "Get all general images.", + "operationId": "GetRatingImages", + "responses": { + "200": { + "description": "Retrieved list of images.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageByNameInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageByNameInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageByNameInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Images/Ratings/{theme}/{name}": { + "get": { + "tags": [ + "ImageByName" + ], + "summary": "Get rating image.", + "operationId": "GetRatingImage", + "parameters": [ + { + "name": "theme", + "in": "path", + "description": "The theme to get the image from.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "name", + "in": "path", + "description": "The name of the image.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Image stream retrieved.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Image not found.", + "content": { + "application/octet-stream": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Albums/{id}/InstantMix": { + "get": { + "tags": [ + "InstantMix" + ], + "summary": "Creates an instant playlist based on a given album.", + "operationId": "GetInstantMixFromAlbum", + "parameters": [ + { + "name": "id", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + } + ], + "responses": { + "200": { + "description": "Instant playlist returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Artists/{id}/InstantMix": { + "get": { + "tags": [ + "InstantMix" + ], + "summary": "Creates an instant playlist based on a given artist.", + "operationId": "GetInstantMixFromArtists", + "parameters": [ + { + "name": "id", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + } + ], + "responses": { + "200": { + "description": "Instant playlist returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Artists/InstantMix": { + "get": { + "tags": [ + "InstantMix" + ], + "summary": "Creates an instant playlist based on a given artist.", + "operationId": "GetInstantMixFromArtists2", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + } + ], + "responses": { + "200": { + "description": "Instant playlist returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "deprecated": true, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{id}/InstantMix": { + "get": { + "tags": [ + "InstantMix" + ], + "summary": "Creates an instant playlist based on a given item.", + "operationId": "GetInstantMixFromItem", + "parameters": [ + { + "name": "id", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + } + ], + "responses": { + "200": { + "description": "Instant playlist returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/MusicGenres/{name}/InstantMix": { + "get": { + "tags": [ + "InstantMix" + ], + "summary": "Creates an instant playlist based on a given genre.", + "operationId": "GetInstantMixFromMusicGenreByName", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "The genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + } + ], + "responses": { + "200": { + "description": "Instant playlist returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/MusicGenres/InstantMix": { + "get": { + "tags": [ + "InstantMix" + ], + "summary": "Creates an instant playlist based on a given genre.", + "operationId": "GetInstantMixFromMusicGenreById", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + } + ], + "responses": { + "200": { + "description": "Instant playlist returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Playlists/{id}/InstantMix": { + "get": { + "tags": [ + "InstantMix" + ], + "summary": "Creates an instant playlist based on a given playlist.", + "operationId": "GetInstantMixFromPlaylist", + "parameters": [ + { + "name": "id", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + } + ], + "responses": { + "200": { + "description": "Instant playlist returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Songs/{id}/InstantMix": { + "get": { + "tags": [ + "InstantMix" + ], + "summary": "Creates an instant playlist based on a given song.", + "operationId": "GetInstantMixFromSong", + "parameters": [ + { + "name": "id", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + } + ], + "responses": { + "200": { + "description": "Instant playlist returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/ExternalIdInfos": { + "get": { + "tags": [ + "ItemLookup" + ], + "summary": "Get the item's external id info.", + "operationId": "GetExternalIdInfos", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "External id info retrieved.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalIdInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalIdInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalIdInfo" + } + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/RemoteSearch/Apply/{itemId}": { + "post": { + "tags": [ + "ItemLookup" + ], + "summary": "Applies search criteria to an item and refreshes metadata.", + "operationId": "ApplySearchCriteria", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "replaceAllImages", + "in": "query", + "description": "Optional. Whether or not to replace all images. Default: True.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "requestBody": { + "description": "The remote search result.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/RemoteSearchResult" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/RemoteSearchResult" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/RemoteSearchResult" + } + ] + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Item metadata refreshed." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/RemoteSearch/Book": { + "post": { + "tags": [ + "ItemLookup" + ], + "summary": "Get book remote search.", + "operationId": "GetBookRemoteSearchResults", + "requestBody": { + "description": "Remote search query.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BookInfoRemoteSearchQuery" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BookInfoRemoteSearchQuery" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BookInfoRemoteSearchQuery" + } + ] + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Book remote search executed.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/RemoteSearch/BoxSet": { + "post": { + "tags": [ + "ItemLookup" + ], + "summary": "Get box set remote search.", + "operationId": "GetBoxSetRemoteSearchResults", + "requestBody": { + "description": "Remote search query.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BoxSetInfoRemoteSearchQuery" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BoxSetInfoRemoteSearchQuery" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BoxSetInfoRemoteSearchQuery" + } + ] + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Box set remote search executed.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/RemoteSearch/Movie": { + "post": { + "tags": [ + "ItemLookup" + ], + "summary": "Get movie remote search.", + "operationId": "GetMovieRemoteSearchResults", + "requestBody": { + "description": "Remote search query.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MovieInfoRemoteSearchQuery" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MovieInfoRemoteSearchQuery" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MovieInfoRemoteSearchQuery" + } + ] + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Movie remote search executed.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/RemoteSearch/MusicAlbum": { + "post": { + "tags": [ + "ItemLookup" + ], + "summary": "Get music album remote search.", + "operationId": "GetMusicAlbumRemoteSearchResults", + "requestBody": { + "description": "Remote search query.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AlbumInfoRemoteSearchQuery" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AlbumInfoRemoteSearchQuery" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AlbumInfoRemoteSearchQuery" + } + ] + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Music album remote search executed.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/RemoteSearch/MusicArtist": { + "post": { + "tags": [ + "ItemLookup" + ], + "summary": "Get music artist remote search.", + "operationId": "GetMusicArtistRemoteSearchResults", + "requestBody": { + "description": "Remote search query.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ArtistInfoRemoteSearchQuery" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ArtistInfoRemoteSearchQuery" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ArtistInfoRemoteSearchQuery" + } + ] + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Music artist remote search executed.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/RemoteSearch/MusicVideo": { + "post": { + "tags": [ + "ItemLookup" + ], + "summary": "Get music video remote search.", + "operationId": "GetMusicVideoRemoteSearchResults", + "requestBody": { + "description": "Remote search query.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MusicVideoInfoRemoteSearchQuery" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MusicVideoInfoRemoteSearchQuery" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MusicVideoInfoRemoteSearchQuery" + } + ] + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Music video remote search executed.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/RemoteSearch/Person": { + "post": { + "tags": [ + "ItemLookup" + ], + "summary": "Get person remote search.", + "operationId": "GetPersonRemoteSearchResults", + "requestBody": { + "description": "Remote search query.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PersonLookupInfoRemoteSearchQuery" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PersonLookupInfoRemoteSearchQuery" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PersonLookupInfoRemoteSearchQuery" + } + ] + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Person remote search executed.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/RemoteSearch/Series": { + "post": { + "tags": [ + "ItemLookup" + ], + "summary": "Get series remote search.", + "operationId": "GetSeriesRemoteSearchResults", + "requestBody": { + "description": "Remote search query.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeriesInfoRemoteSearchQuery" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeriesInfoRemoteSearchQuery" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeriesInfoRemoteSearchQuery" + } + ] + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Series remote search executed.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/RemoteSearch/Trailer": { + "post": { + "tags": [ + "ItemLookup" + ], + "summary": "Get trailer remote search.", + "operationId": "GetTrailerRemoteSearchResults", + "requestBody": { + "description": "Remote search query.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TrailerInfoRemoteSearchQuery" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TrailerInfoRemoteSearchQuery" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TrailerInfoRemoteSearchQuery" + } + ] + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Trailer remote search executed.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/Refresh": { + "post": { + "tags": [ + "ItemRefresh" + ], + "summary": "Refreshes metadata for an item.", + "operationId": "RefreshItem", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "metadataRefreshMode", + "in": "query", + "description": "(Optional) Specifies the metadata refresh mode.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MetadataRefreshMode" + } + ], + "default": "None" + } + }, + { + "name": "imageRefreshMode", + "in": "query", + "description": "(Optional) Specifies the image refresh mode.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MetadataRefreshMode" + } + ], + "default": "None" + } + }, + { + "name": "replaceAllMetadata", + "in": "query", + "description": "(Optional) Determines if metadata should be replaced. Only applicable if mode is FullRefresh.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "replaceAllImages", + "in": "query", + "description": "(Optional) Determines if images should be replaced. Only applicable if mode is FullRefresh.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "204": { + "description": "Item metadata refresh queued." + }, + "404": { + "description": "Item to refresh not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Items": { + "get": { + "tags": [ + "Items" + ], + "summary": "Gets items based on a query.", + "operationId": "GetItems", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "The user id supplied as query parameter.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "maxOfficialRating", + "in": "query", + "description": "Optional filter by maximum official rating (PG, PG-13, TV-MA, etc).", + "schema": { + "type": "string" + } + }, + { + "name": "hasThemeSong", + "in": "query", + "description": "Optional filter by items with theme songs.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasThemeVideo", + "in": "query", + "description": "Optional filter by items with theme videos.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasSubtitles", + "in": "query", + "description": "Optional filter by items with subtitles.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasSpecialFeature", + "in": "query", + "description": "Optional filter by items with special features.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasTrailer", + "in": "query", + "description": "Optional filter by items with trailers.", + "schema": { + "type": "boolean" + } + }, + { + "name": "adjacentTo", + "in": "query", + "description": "Optional. Return items that are siblings of a supplied item.", + "schema": { + "type": "string" + } + }, + { + "name": "parentIndexNumber", + "in": "query", + "description": "Optional filter by parent index number.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "hasParentalRating", + "in": "query", + "description": "Optional filter by items that have or do not have a parental rating.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isHd", + "in": "query", + "description": "Optional filter by items that are HD or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "is4K", + "in": "query", + "description": "Optional filter by items that are 4K or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "locationTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocationType" + } + } + }, + { + "name": "excludeLocationTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocationType" + } + } + }, + { + "name": "isMissing", + "in": "query", + "description": "Optional filter by items that are missing episodes or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isUnaired", + "in": "query", + "description": "Optional filter by items that are unaired episodes or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "minCommunityRating", + "in": "query", + "description": "Optional filter by minimum community rating.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "minCriticRating", + "in": "query", + "description": "Optional filter by minimum critic rating.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "minPremiereDate", + "in": "query", + "description": "Optional. The minimum premiere date. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "minDateLastSaved", + "in": "query", + "description": "Optional. The minimum last saved date. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "minDateLastSavedForUser", + "in": "query", + "description": "Optional. The minimum last saved date for the current user. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "maxPremiereDate", + "in": "query", + "description": "Optional. The maximum premiere date. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "hasOverview", + "in": "query", + "description": "Optional filter by items that have an overview or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasImdbId", + "in": "query", + "description": "Optional filter by items that have an imdb id or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasTmdbId", + "in": "query", + "description": "Optional filter by items that have a tmdb id or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasTvdbId", + "in": "query", + "description": "Optional filter by items that have a tvdb id or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isMovie", + "in": "query", + "description": "Optional filter for live tv movies.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSeries", + "in": "query", + "description": "Optional filter for live tv series.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isNews", + "in": "query", + "description": "Optional filter for live tv news.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isKids", + "in": "query", + "description": "Optional filter for live tv kids.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSports", + "in": "query", + "description": "Optional filter for live tv sports.", + "schema": { + "type": "boolean" + } + }, + { + "name": "excludeItemIds", + "in": "query", + "description": "Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "recursive", + "in": "query", + "description": "When searching within folders, this determines whether or not the search will be recursive. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "Optional. Filter based on a search term.", + "schema": { + "type": "string" + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Sort Order - Ascending,Descending.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + } + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "filters", + "in": "query", + "description": "Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFilter" + } + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional filter by items that are marked as favorite, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "mediaTypes", + "in": "query", + "description": "Optional filter by MediaType. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "imageTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "isPlayed", + "in": "query", + "description": "Optional filter by items that are played, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "genres", + "in": "query", + "description": "Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "officialRatings", + "in": "query", + "description": "Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "tags", + "in": "query", + "description": "Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "years", + "in": "query", + "description": "Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "integer", + "format": "int32" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional, include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional, the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "person", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified person.", + "schema": { + "type": "string" + } + }, + { + "name": "personIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified person id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "personTypes", + "in": "query", + "description": "Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "studios", + "in": "query", + "description": "Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "artists", + "in": "query", + "description": "Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "excludeArtistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "artistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified artist id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "albumArtistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified album artist id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "contributingArtistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified contributing artist id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "albums", + "in": "query", + "description": "Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "albumIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "ids", + "in": "query", + "description": "Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "videoTypes", + "in": "query", + "description": "Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VideoType" + } + } + }, + { + "name": "minOfficialRating", + "in": "query", + "description": "Optional filter by minimum official rating (PG, PG-13, TV-MA, etc).", + "schema": { + "type": "string" + } + }, + { + "name": "isLocked", + "in": "query", + "description": "Optional filter by items that are locked.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isPlaceHolder", + "in": "query", + "description": "Optional filter by items that are placeholders.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasOfficialRating", + "in": "query", + "description": "Optional filter by items that have official ratings.", + "schema": { + "type": "boolean" + } + }, + { + "name": "collapseBoxSetItems", + "in": "query", + "description": "Whether or not to hide items behind their boxsets.", + "schema": { + "type": "boolean" + } + }, + { + "name": "minWidth", + "in": "query", + "description": "Optional. Filter by the minimum width of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minHeight", + "in": "query", + "description": "Optional. Filter by the minimum height of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. Filter by the maximum width of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. Filter by the maximum height of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "is3D", + "in": "query", + "description": "Optional filter by items that are 3D, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "seriesStatus", + "in": "query", + "description": "Optional filter by Series Status. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SeriesStatus" + } + } + }, + { + "name": "nameStartsWithOrGreater", + "in": "query", + "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameStartsWith", + "in": "query", + "description": "Optional filter by items whose name is sorted equally than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameLessThan", + "in": "query", + "description": "Optional filter by items whose name is equally or lesser than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "studioIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "genreIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Optional. Enable the total record count.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional, include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "Library" + ], + "summary": "Deletes items from the library and filesystem.", + "operationId": "DeleteItems", + "parameters": [ + { + "name": "ids", + "in": "query", + "description": "The item ids.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + } + ], + "responses": { + "204": { + "description": "Items deleted." + }, + "401": { + "description": "Unauthorized access.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Items": { + "get": { + "tags": [ + "Items" + ], + "summary": "Gets items based on a query.", + "operationId": "GetItemsByUserId", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id supplied as query parameter.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "maxOfficialRating", + "in": "query", + "description": "Optional filter by maximum official rating (PG, PG-13, TV-MA, etc).", + "schema": { + "type": "string" + } + }, + { + "name": "hasThemeSong", + "in": "query", + "description": "Optional filter by items with theme songs.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasThemeVideo", + "in": "query", + "description": "Optional filter by items with theme videos.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasSubtitles", + "in": "query", + "description": "Optional filter by items with subtitles.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasSpecialFeature", + "in": "query", + "description": "Optional filter by items with special features.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasTrailer", + "in": "query", + "description": "Optional filter by items with trailers.", + "schema": { + "type": "boolean" + } + }, + { + "name": "adjacentTo", + "in": "query", + "description": "Optional. Return items that are siblings of a supplied item.", + "schema": { + "type": "string" + } + }, + { + "name": "parentIndexNumber", + "in": "query", + "description": "Optional filter by parent index number.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "hasParentalRating", + "in": "query", + "description": "Optional filter by items that have or do not have a parental rating.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isHd", + "in": "query", + "description": "Optional filter by items that are HD or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "is4K", + "in": "query", + "description": "Optional filter by items that are 4K or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "locationTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocationType" + } + } + }, + { + "name": "excludeLocationTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocationType" + } + } + }, + { + "name": "isMissing", + "in": "query", + "description": "Optional filter by items that are missing episodes or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isUnaired", + "in": "query", + "description": "Optional filter by items that are unaired episodes or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "minCommunityRating", + "in": "query", + "description": "Optional filter by minimum community rating.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "minCriticRating", + "in": "query", + "description": "Optional filter by minimum critic rating.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "minPremiereDate", + "in": "query", + "description": "Optional. The minimum premiere date. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "minDateLastSaved", + "in": "query", + "description": "Optional. The minimum last saved date. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "minDateLastSavedForUser", + "in": "query", + "description": "Optional. The minimum last saved date for the current user. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "maxPremiereDate", + "in": "query", + "description": "Optional. The maximum premiere date. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "hasOverview", + "in": "query", + "description": "Optional filter by items that have an overview or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasImdbId", + "in": "query", + "description": "Optional filter by items that have an imdb id or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasTmdbId", + "in": "query", + "description": "Optional filter by items that have a tmdb id or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasTvdbId", + "in": "query", + "description": "Optional filter by items that have a tvdb id or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isMovie", + "in": "query", + "description": "Optional filter for live tv movies.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSeries", + "in": "query", + "description": "Optional filter for live tv series.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isNews", + "in": "query", + "description": "Optional filter for live tv news.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isKids", + "in": "query", + "description": "Optional filter for live tv kids.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSports", + "in": "query", + "description": "Optional filter for live tv sports.", + "schema": { + "type": "boolean" + } + }, + { + "name": "excludeItemIds", + "in": "query", + "description": "Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "recursive", + "in": "query", + "description": "When searching within folders, this determines whether or not the search will be recursive. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "Optional. Filter based on a search term.", + "schema": { + "type": "string" + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Sort Order - Ascending,Descending.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + } + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "filters", + "in": "query", + "description": "Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFilter" + } + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional filter by items that are marked as favorite, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "mediaTypes", + "in": "query", + "description": "Optional filter by MediaType. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "imageTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "isPlayed", + "in": "query", + "description": "Optional filter by items that are played, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "genres", + "in": "query", + "description": "Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "officialRatings", + "in": "query", + "description": "Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "tags", + "in": "query", + "description": "Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "years", + "in": "query", + "description": "Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "integer", + "format": "int32" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional, include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional, the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "person", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified person.", + "schema": { + "type": "string" + } + }, + { + "name": "personIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified person id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "personTypes", + "in": "query", + "description": "Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "studios", + "in": "query", + "description": "Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "artists", + "in": "query", + "description": "Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "excludeArtistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "artistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified artist id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "albumArtistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified album artist id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "contributingArtistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified contributing artist id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "albums", + "in": "query", + "description": "Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "albumIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "ids", + "in": "query", + "description": "Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "videoTypes", + "in": "query", + "description": "Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VideoType" + } + } + }, + { + "name": "minOfficialRating", + "in": "query", + "description": "Optional filter by minimum official rating (PG, PG-13, TV-MA, etc).", + "schema": { + "type": "string" + } + }, + { + "name": "isLocked", + "in": "query", + "description": "Optional filter by items that are locked.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isPlaceHolder", + "in": "query", + "description": "Optional filter by items that are placeholders.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasOfficialRating", + "in": "query", + "description": "Optional filter by items that have official ratings.", + "schema": { + "type": "boolean" + } + }, + { + "name": "collapseBoxSetItems", + "in": "query", + "description": "Whether or not to hide items behind their boxsets.", + "schema": { + "type": "boolean" + } + }, + { + "name": "minWidth", + "in": "query", + "description": "Optional. Filter by the minimum width of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minHeight", + "in": "query", + "description": "Optional. Filter by the minimum height of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. Filter by the maximum width of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. Filter by the maximum height of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "is3D", + "in": "query", + "description": "Optional filter by items that are 3D, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "seriesStatus", + "in": "query", + "description": "Optional filter by Series Status. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SeriesStatus" + } + } + }, + { + "name": "nameStartsWithOrGreater", + "in": "query", + "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameStartsWith", + "in": "query", + "description": "Optional filter by items whose name is sorted equally than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameLessThan", + "in": "query", + "description": "Optional filter by items whose name is equally or lesser than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "studioIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "genreIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Optional. Enable the total record count.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional, include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Items/Resume": { + "get": { + "tags": [ + "Items" + ], + "summary": "Gets items based on a query.", + "operationId": "GetResumeItems", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "The start index.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "The item limit.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "The search term.", + "schema": { + "type": "string" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "mediaTypes", + "in": "query", + "description": "Optional. Filter by MediaType. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Optional. Enable the total record count.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "excludeActiveSessions", + "in": "query", + "description": "Optional. Whether to exclude the currently active sessions.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Items returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}": { + "post": { + "tags": [ + "ItemUpdate" + ], + "summary": "Updates an item.", + "operationId": "UpdateItem", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "requestBody": { + "description": "The new item properties.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemDto" + } + ], + "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemDto" + } + ], + "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemDto" + } + ], + "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Item updated." + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "delete": { + "tags": [ + "Library" + ], + "summary": "Deletes an item from the library and filesystem.", + "operationId": "DeleteItem", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "Item deleted." + }, + "401": { + "description": "Unauthorized access.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/ContentType": { + "post": { + "tags": [ + "ItemUpdate" + ], + "summary": "Updates an item's content type.", + "operationId": "UpdateItemContentType", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "contentType", + "in": "query", + "description": "The content type of the item.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Item content type updated." + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Items/{itemId}/MetadataEditor": { + "get": { + "tags": [ + "ItemUpdate" + ], + "summary": "Gets metadata editor info for an item.", + "operationId": "GetMetadataEditorInfo", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Item metadata editor returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/MetadataEditorInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/MetadataEditorInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/MetadataEditorInfo" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Albums/{itemId}/Similar": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets similar items.", + "operationId": "GetSimilarAlbums", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "excludeArtistIds", + "in": "query", + "description": "Exclude artist ids.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + } + ], + "responses": { + "200": { + "description": "Similar items returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Artists/{itemId}/Similar": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets similar items.", + "operationId": "GetSimilarArtists", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "excludeArtistIds", + "in": "query", + "description": "Exclude artist ids.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + } + ], + "responses": { + "200": { + "description": "Similar items returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/Ancestors": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets all parents of an item.", + "operationId": "GetAncestors", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Item parents returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/CriticReviews": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets critic review for an item.", + "operationId": "GetCriticReviews", + "parameters": [ + { + "name": "itemId", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Critic reviews returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "deprecated": true, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/Download": { + "get": { + "tags": [ + "Library" + ], + "summary": "Downloads item media.", + "operationId": "GetDownload", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Media downloaded.", + "content": { + "video/*": { + "schema": { + "type": "string", + "format": "binary" + } + }, + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "Download" + ] + } + ] + } + }, + "/Items/{itemId}/File": { + "get": { + "tags": [ + "Library" + ], + "summary": "Get the original file of an item.", + "operationId": "GetFile", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "File stream returned.", + "content": { + "video/*": { + "schema": { + "type": "string", + "format": "binary" + } + }, + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/Similar": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets similar items.", + "operationId": "GetSimilarItems", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "excludeArtistIds", + "in": "query", + "description": "Exclude artist ids.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + } + ], + "responses": { + "200": { + "description": "Similar items returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/ThemeMedia": { + "get": { + "tags": [ + "Library" + ], + "summary": "Get theme songs and videos for an item.", + "operationId": "GetThemeMedia", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "inheritFromParent", + "in": "query", + "description": "Optional. Determines whether or not parent items should be searched for theme media.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Theme songs and videos returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/AllThemeMediaResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/AllThemeMediaResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/AllThemeMediaResult" + } + } + } + }, + "404": { + "description": "Item not found." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/ThemeSongs": { + "get": { + "tags": [ + "Library" + ], + "summary": "Get theme songs for an item.", + "operationId": "GetThemeSongs", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "inheritFromParent", + "in": "query", + "description": "Optional. Determines whether or not parent items should be searched for theme media.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Theme songs returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ThemeMediaResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ThemeMediaResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ThemeMediaResult" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/ThemeVideos": { + "get": { + "tags": [ + "Library" + ], + "summary": "Get theme videos for an item.", + "operationId": "GetThemeVideos", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "inheritFromParent", + "in": "query", + "description": "Optional. Determines whether or not parent items should be searched for theme media.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Theme videos returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ThemeMediaResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ThemeMediaResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ThemeMediaResult" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/Counts": { + "get": { + "tags": [ + "Library" + ], + "summary": "Get item counts.", + "operationId": "GetItemCounts", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "Optional. Get counts from a specific user's library.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional. Get counts of favorite items.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Item counts returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ItemCounts" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ItemCounts" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ItemCounts" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Libraries/AvailableOptions": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets the library options info.", + "operationId": "GetLibraryOptionsInfo", + "parameters": [ + { + "name": "libraryContentType", + "in": "query", + "description": "Library content type.", + "schema": { + "type": "string" + } + }, + { + "name": "isNewLibrary", + "in": "query", + "description": "Whether this is a new library.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Library options info returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/LibraryOptionsResultDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/LibraryOptionsResultDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/LibraryOptionsResultDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrDefault" + ] + } + ] + } + }, + "/Library/Media/Updated": { + "post": { + "tags": [ + "Library" + ], + "summary": "Reports that new movies have been added by an external source.", + "operationId": "PostUpdatedMedia", + "requestBody": { + "description": "The update paths.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaUpdateInfoDto" + } + ], + "description": "Media Update Info Dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaUpdateInfoDto" + } + ], + "description": "Media Update Info Dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaUpdateInfoDto" + } + ], + "description": "Media Update Info Dto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Report success." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Library/MediaFolders": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets all user media folders.", + "operationId": "GetMediaFolders", + "parameters": [ + { + "name": "isHidden", + "in": "query", + "description": "Optional. Filter by folders that are marked hidden, or not.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Media folders returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Library/Movies/Added": { + "post": { + "tags": [ + "Library" + ], + "summary": "Reports that new movies have been added by an external source.", + "operationId": "PostAddedMovies", + "parameters": [ + { + "name": "tmdbId", + "in": "query", + "description": "The tmdbId.", + "schema": { + "type": "string" + } + }, + { + "name": "imdbId", + "in": "query", + "description": "The imdbId.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Report success." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Library/Movies/Updated": { + "post": { + "tags": [ + "Library" + ], + "summary": "Reports that new movies have been added by an external source.", + "operationId": "PostUpdatedMovies", + "parameters": [ + { + "name": "tmdbId", + "in": "query", + "description": "The tmdbId.", + "schema": { + "type": "string" + } + }, + { + "name": "imdbId", + "in": "query", + "description": "The imdbId.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Report success." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Library/PhysicalPaths": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets a list of physical paths from virtual folders.", + "operationId": "GetPhysicalPaths", + "responses": { + "200": { + "description": "Physical paths returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Library/Refresh": { + "post": { + "tags": [ + "Library" + ], + "summary": "Starts a library scan.", + "operationId": "RefreshLibrary", + "responses": { + "204": { + "description": "Library scan started." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Library/Series/Added": { + "post": { + "tags": [ + "Library" + ], + "summary": "Reports that new episodes of a series have been added by an external source.", + "operationId": "PostAddedSeries", + "parameters": [ + { + "name": "tvdbId", + "in": "query", + "description": "The tvdbId.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Report success." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Library/Series/Updated": { + "post": { + "tags": [ + "Library" + ], + "summary": "Reports that new episodes of a series have been added by an external source.", + "operationId": "PostUpdatedSeries", + "parameters": [ + { + "name": "tvdbId", + "in": "query", + "description": "The tvdbId.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Report success." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Movies/{itemId}/Similar": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets similar items.", + "operationId": "GetSimilarMovies", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "excludeArtistIds", + "in": "query", + "description": "Exclude artist ids.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + } + ], + "responses": { + "200": { + "description": "Similar items returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Shows/{itemId}/Similar": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets similar items.", + "operationId": "GetSimilarShows", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "excludeArtistIds", + "in": "query", + "description": "Exclude artist ids.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + } + ], + "responses": { + "200": { + "description": "Similar items returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Trailers/{itemId}/Similar": { + "get": { + "tags": [ + "Library" + ], + "summary": "Gets similar items.", + "operationId": "GetSimilarTrailers", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "excludeArtistIds", + "in": "query", + "description": "Exclude artist ids.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + } + ], + "responses": { + "200": { + "description": "Similar items returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Library/VirtualFolders": { + "get": { + "tags": [ + "LibraryStructure" + ], + "summary": "Gets all virtual folders.", + "operationId": "GetVirtualFolders", + "responses": { + "200": { + "description": "Virtual folders retrieved.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VirtualFolderInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VirtualFolderInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VirtualFolderInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + }, + "post": { + "tags": [ + "LibraryStructure" + ], + "summary": "Adds a virtual folder.", + "operationId": "AddVirtualFolder", + "parameters": [ + { + "name": "name", + "in": "query", + "description": "The name of the virtual folder.", + "schema": { + "type": "string" + } + }, + { + "name": "collectionType", + "in": "query", + "description": "The type of the collection.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/CollectionTypeOptions" + } + ] + } + }, + { + "name": "paths", + "in": "query", + "description": "The paths of the virtual folder.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "refreshLibrary", + "in": "query", + "description": "Whether to refresh the library.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "requestBody": { + "description": "The library options.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AddVirtualFolderDto" + } + ], + "description": "Add virtual folder dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AddVirtualFolderDto" + } + ], + "description": "Add virtual folder dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AddVirtualFolderDto" + } + ], + "description": "Add virtual folder dto." + } + } + } + }, + "responses": { + "204": { + "description": "Folder added." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + }, + "delete": { + "tags": [ + "LibraryStructure" + ], + "summary": "Removes a virtual folder.", + "operationId": "RemoveVirtualFolder", + "parameters": [ + { + "name": "name", + "in": "query", + "description": "The name of the folder.", + "schema": { + "type": "string" + } + }, + { + "name": "refreshLibrary", + "in": "query", + "description": "Whether to refresh the library.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "204": { + "description": "Folder removed." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Library/VirtualFolders/LibraryOptions": { + "post": { + "tags": [ + "LibraryStructure" + ], + "summary": "Update library options.", + "operationId": "UpdateLibraryOptions", + "requestBody": { + "description": "The library name and options.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateLibraryOptionsDto" + } + ], + "description": "Update library options dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateLibraryOptionsDto" + } + ], + "description": "Update library options dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateLibraryOptionsDto" + } + ], + "description": "Update library options dto." + } + } + } + }, + "responses": { + "204": { + "description": "Library updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Library/VirtualFolders/Name": { + "post": { + "tags": [ + "LibraryStructure" + ], + "summary": "Renames a virtual folder.", + "operationId": "RenameVirtualFolder", + "parameters": [ + { + "name": "name", + "in": "query", + "description": "The name of the virtual folder.", + "schema": { + "type": "string" + } + }, + { + "name": "newName", + "in": "query", + "description": "The new name.", + "schema": { + "type": "string" + } + }, + { + "name": "refreshLibrary", + "in": "query", + "description": "Whether to refresh the library.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "204": { + "description": "Folder renamed." + }, + "404": { + "description": "Library doesn't exist.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "409": { + "description": "Library already exists.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Library/VirtualFolders/Paths": { + "post": { + "tags": [ + "LibraryStructure" + ], + "summary": "Add a media path to a library.", + "operationId": "AddMediaPath", + "parameters": [ + { + "name": "refreshLibrary", + "in": "query", + "description": "Whether to refresh the library.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "requestBody": { + "description": "The media path dto.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaPathDto" + } + ], + "description": "Media Path dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaPathDto" + } + ], + "description": "Media Path dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaPathDto" + } + ], + "description": "Media Path dto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Media path added." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + }, + "delete": { + "tags": [ + "LibraryStructure" + ], + "summary": "Remove a media path.", + "operationId": "RemoveMediaPath", + "parameters": [ + { + "name": "name", + "in": "query", + "description": "The name of the library.", + "schema": { + "type": "string" + } + }, + { + "name": "path", + "in": "query", + "description": "The path to remove.", + "schema": { + "type": "string" + } + }, + { + "name": "refreshLibrary", + "in": "query", + "description": "Whether to refresh the library.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "204": { + "description": "Media path removed." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Library/VirtualFolders/Paths/Update": { + "post": { + "tags": [ + "LibraryStructure" + ], + "summary": "Updates a media path.", + "operationId": "UpdateMediaPath", + "requestBody": { + "description": "The name of the library and path infos.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateMediaPathRequestDto" + } + ], + "description": "Update library options dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateMediaPathRequestDto" + } + ], + "description": "Update library options dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateMediaPathRequestDto" + } + ], + "description": "Update library options dto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Media path updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/LiveTv/ChannelMappingOptions": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Get channel mapping options.", + "operationId": "GetChannelMappingOptions", + "parameters": [ + { + "name": "providerId", + "in": "query", + "description": "Provider id.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Channel mapping options returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChannelMappingOptionsDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ChannelMappingOptionsDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ChannelMappingOptionsDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/ChannelMappings": { + "post": { + "tags": [ + "LiveTv" + ], + "summary": "Set channel mappings.", + "operationId": "SetChannelMapping", + "requestBody": { + "description": "The set channel mapping dto.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetChannelMappingDto" + } + ], + "description": "Set channel mapping dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetChannelMappingDto" + } + ], + "description": "Set channel mapping dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetChannelMappingDto" + } + ], + "description": "Set channel mapping dto." + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Created channel mapping returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TunerChannelMapping" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/TunerChannelMapping" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/TunerChannelMapping" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Channels": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets available live tv channels.", + "operationId": "GetLiveTvChannels", + "parameters": [ + { + "name": "type", + "in": "query", + "description": "Optional. Filter by channel type.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ChannelType" + } + ] + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "isMovie", + "in": "query", + "description": "Optional. Filter for movies.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSeries", + "in": "query", + "description": "Optional. Filter for series.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isNews", + "in": "query", + "description": "Optional. Filter for news.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isKids", + "in": "query", + "description": "Optional. Filter for kids.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSports", + "in": "query", + "description": "Optional. Filter for sports.", + "schema": { + "type": "boolean" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional. Filter by channels that are favorites, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isLiked", + "in": "query", + "description": "Optional. Filter by channels that are liked, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isDisliked", + "in": "query", + "description": "Optional. Filter by channels that are disliked, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "\"Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Key to sort by.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Optional. Sort order.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SortOrder" + } + ] + } + }, + { + "name": "enableFavoriteSorting", + "in": "query", + "description": "Optional. Incorporate favorite and like status into channel sorting.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "addCurrentProgram", + "in": "query", + "description": "Optional. Adds current program info to each channel.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Available live tv channels returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Channels/{channelId}": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets a live tv channel.", + "operationId": "GetChannel", + "parameters": [ + { + "name": "channelId", + "in": "path", + "description": "Channel id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Live tv channel returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/GuideInfo": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Get guid info.", + "operationId": "GetGuideInfo", + "responses": { + "200": { + "description": "Guid info returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GuideInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/GuideInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/GuideInfo" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Info": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets available live tv services.", + "operationId": "GetLiveTvInfo", + "responses": { + "200": { + "description": "Available live tv services returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/LiveTvInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/LiveTvInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/LiveTvInfo" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/ListingProviders": { + "post": { + "tags": [ + "LiveTv" + ], + "summary": "Adds a listings provider.", + "operationId": "AddListingProvider", + "parameters": [ + { + "name": "pw", + "in": "query", + "description": "Password.", + "schema": { + "type": "string" + } + }, + { + "name": "validateListings", + "in": "query", + "description": "Validate listings.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "validateLogin", + "in": "query", + "description": "Validate login.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "requestBody": { + "description": "New listings info.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ListingsProviderInfo" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ListingsProviderInfo" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ListingsProviderInfo" + } + ] + } + } + } + }, + "responses": { + "200": { + "description": "Created listings provider returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListingsProviderInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ListingsProviderInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ListingsProviderInfo" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "LiveTv" + ], + "summary": "Delete listing provider.", + "operationId": "DeleteListingProvider", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "Listing provider id.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Listing provider deleted." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/ListingProviders/Default": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets default listings provider info.", + "operationId": "GetDefaultListingProvider", + "responses": { + "200": { + "description": "Default listings provider info returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListingsProviderInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ListingsProviderInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ListingsProviderInfo" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/ListingProviders/Lineups": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets available lineups.", + "operationId": "GetLineups", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "Provider id.", + "schema": { + "type": "string" + } + }, + { + "name": "type", + "in": "query", + "description": "Provider type.", + "schema": { + "type": "string" + } + }, + { + "name": "location", + "in": "query", + "description": "Location.", + "schema": { + "type": "string" + } + }, + { + "name": "country", + "in": "query", + "description": "Country.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Available lineups returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/ListingProviders/SchedulesDirect/Countries": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets available countries.", + "operationId": "GetSchedulesDirectCountries", + "responses": { + "200": { + "description": "Available countries returned.", + "content": { + "application/json": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/LiveRecordings/{recordingId}/stream": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets a live tv recording stream.", + "operationId": "GetLiveRecordingFile", + "parameters": [ + { + "name": "recordingId", + "in": "path", + "description": "Recording id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Recording stream returned.", + "content": { + "video/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Recording not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/LiveTv/LiveStreamFiles/{streamId}/stream.{container}": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets a live tv channel stream.", + "operationId": "GetLiveStreamFile", + "parameters": [ + { + "name": "streamId", + "in": "path", + "description": "Stream id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "container", + "in": "path", + "description": "Container type.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Stream returned.", + "content": { + "video/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Stream not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/LiveTv/Programs": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets available live tv epgs.", + "operationId": "GetLiveTvPrograms", + "parameters": [ + { + "name": "channelIds", + "in": "query", + "description": "The channels to return guide information for.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "minStartDate", + "in": "query", + "description": "Optional. The minimum premiere start date.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "hasAired", + "in": "query", + "description": "Optional. Filter by programs that have completed airing, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isAiring", + "in": "query", + "description": "Optional. Filter by programs that are currently airing, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "maxStartDate", + "in": "query", + "description": "Optional. The maximum premiere start date.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "minEndDate", + "in": "query", + "description": "Optional. The minimum premiere end date.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "maxEndDate", + "in": "query", + "description": "Optional. The maximum premiere end date.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "isMovie", + "in": "query", + "description": "Optional. Filter for movies.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSeries", + "in": "query", + "description": "Optional. Filter for series.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isNews", + "in": "query", + "description": "Optional. Filter for news.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isKids", + "in": "query", + "description": "Optional. Filter for kids.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSports", + "in": "query", + "description": "Optional. Filter for sports.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited. Options: Name, StartDate.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Sort Order - Ascending,Descending.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + } + } + }, + { + "name": "genres", + "in": "query", + "description": "The genres to return guide information for.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "genreIds", + "in": "query", + "description": "The genre ids to return guide information for.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "seriesTimerId", + "in": "query", + "description": "Optional. Filter by series timer id.", + "schema": { + "type": "string" + } + }, + { + "name": "librarySeriesId", + "in": "query", + "description": "Optional. Filter by library series id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Retrieve total record count.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Live tv epgs returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "LiveTv" + ], + "summary": "Gets available live tv epgs.", + "operationId": "GetPrograms", + "requestBody": { + "description": "Request body.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/GetProgramsDto" + } + ], + "description": "Get programs dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/GetProgramsDto" + } + ], + "description": "Get programs dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/GetProgramsDto" + } + ], + "description": "Get programs dto." + } + } + } + }, + "responses": { + "200": { + "description": "Live tv epgs returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Programs/{programId}": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets a live tv program.", + "operationId": "GetProgram", + "parameters": [ + { + "name": "programId", + "in": "path", + "description": "Program id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Program returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Programs/Recommended": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets recommended live tv epgs.", + "operationId": "GetRecommendedPrograms", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "Optional. filter by user id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "isAiring", + "in": "query", + "description": "Optional. Filter by programs that are currently airing, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasAired", + "in": "query", + "description": "Optional. Filter by programs that have completed airing, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSeries", + "in": "query", + "description": "Optional. Filter for series.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isMovie", + "in": "query", + "description": "Optional. Filter for movies.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isNews", + "in": "query", + "description": "Optional. Filter for news.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isKids", + "in": "query", + "description": "Optional. Filter for kids.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSports", + "in": "query", + "description": "Optional. Filter for sports.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "genreIds", + "in": "query", + "description": "The genres to return guide information for.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Retrieve total record count.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Recommended epgs returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Recordings": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets live tv recordings.", + "operationId": "GetRecordings", + "parameters": [ + { + "name": "channelId", + "in": "query", + "description": "Optional. Filter by channel id.", + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "status", + "in": "query", + "description": "Optional. Filter by recording status.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/RecordingStatus" + } + ] + } + }, + { + "name": "isInProgress", + "in": "query", + "description": "Optional. Filter by recordings that are in progress, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "seriesTimerId", + "in": "query", + "description": "Optional. Filter by recordings belonging to a series timer.", + "schema": { + "type": "string" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isMovie", + "in": "query", + "description": "Optional. Filter for movies.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSeries", + "in": "query", + "description": "Optional. Filter for series.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isKids", + "in": "query", + "description": "Optional. Filter for kids.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSports", + "in": "query", + "description": "Optional. Filter for sports.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isNews", + "in": "query", + "description": "Optional. Filter for news.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isLibraryItem", + "in": "query", + "description": "Optional. Filter for is library item.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Optional. Return total record count.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Live tv recordings returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Recordings/{recordingId}": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets a live tv recording.", + "operationId": "GetRecording", + "parameters": [ + { + "name": "recordingId", + "in": "path", + "description": "Recording id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Recording returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "LiveTv" + ], + "summary": "Deletes a live tv recording.", + "operationId": "DeleteRecording", + "parameters": [ + { + "name": "recordingId", + "in": "path", + "description": "Recording id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "Recording deleted." + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Recordings/Folders": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets recording folders.", + "operationId": "GetRecordingFolders", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Recording folders returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Recordings/Groups": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets live tv recording groups.", + "operationId": "GetRecordingGroups", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Recording groups returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "deprecated": true, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Recordings/Groups/{groupId}": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Get recording group.", + "operationId": "GetRecordingGroup", + "parameters": [ + { + "name": "groupId", + "in": "path", + "description": "Group id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "deprecated": true, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Recordings/Series": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets live tv recording series.", + "operationId": "GetRecordingsSeries", + "parameters": [ + { + "name": "channelId", + "in": "query", + "description": "Optional. Filter by channel id.", + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "groupId", + "in": "query", + "description": "Optional. Filter by recording group.", + "schema": { + "type": "string" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "status", + "in": "query", + "description": "Optional. Filter by recording status.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/RecordingStatus" + } + ] + } + }, + { + "name": "isInProgress", + "in": "query", + "description": "Optional. Filter by recordings that are in progress, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "seriesTimerId", + "in": "query", + "description": "Optional. Filter by recordings belonging to a series timer.", + "schema": { + "type": "string" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Optional. Return total record count.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Live tv recordings returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "deprecated": true, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/SeriesTimers": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets live tv series timers.", + "operationId": "GetSeriesTimers", + "parameters": [ + { + "name": "sortBy", + "in": "query", + "description": "Optional. Sort by SortName or Priority.", + "schema": { + "type": "string" + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Optional. Sort in Ascending or Descending order.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SortOrder" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Timers returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SeriesTimerInfoDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/SeriesTimerInfoDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/SeriesTimerInfoDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "LiveTv" + ], + "summary": "Creates a live tv series timer.", + "operationId": "CreateSeriesTimer", + "requestBody": { + "description": "New series timer info.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + ], + "description": "Class SeriesTimerInfoDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + ], + "description": "Class SeriesTimerInfoDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + ], + "description": "Class SeriesTimerInfoDto." + } + } + } + }, + "responses": { + "204": { + "description": "Series timer info created." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/SeriesTimers/{timerId}": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets a live tv series timer.", + "operationId": "GetSeriesTimer", + "parameters": [ + { + "name": "timerId", + "in": "path", + "description": "Timer id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Series timer returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + } + } + }, + "404": { + "description": "Series timer not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "LiveTv" + ], + "summary": "Cancels a live tv series timer.", + "operationId": "CancelSeriesTimer", + "parameters": [ + { + "name": "timerId", + "in": "path", + "description": "Timer id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Timer cancelled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "LiveTv" + ], + "summary": "Updates a live tv series timer.", + "operationId": "UpdateSeriesTimer", + "parameters": [ + { + "name": "timerId", + "in": "path", + "description": "Timer id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "New series timer info.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + ], + "description": "Class SeriesTimerInfoDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + ], + "description": "Class SeriesTimerInfoDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + ], + "description": "Class SeriesTimerInfoDto." + } + } + } + }, + "responses": { + "204": { + "description": "Series timer updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Timers": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets the live tv timers.", + "operationId": "GetTimers", + "parameters": [ + { + "name": "channelId", + "in": "query", + "description": "Optional. Filter by channel id.", + "schema": { + "type": "string" + } + }, + { + "name": "seriesTimerId", + "in": "query", + "description": "Optional. Filter by timers belonging to a series timer.", + "schema": { + "type": "string" + } + }, + { + "name": "isActive", + "in": "query", + "description": "Optional. Filter by timers that are active.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isScheduled", + "in": "query", + "description": "Optional. Filter by timers that are scheduled.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TimerInfoDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/TimerInfoDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/TimerInfoDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "LiveTv" + ], + "summary": "Creates a live tv timer.", + "operationId": "CreateTimer", + "requestBody": { + "description": "New timer info.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TimerInfoDto" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TimerInfoDto" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TimerInfoDto" + } + ] + } + } + } + }, + "responses": { + "204": { + "description": "Timer created." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Timers/{timerId}": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets a timer.", + "operationId": "GetTimer", + "parameters": [ + { + "name": "timerId", + "in": "path", + "description": "Timer id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Timer returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TimerInfoDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/TimerInfoDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/TimerInfoDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "LiveTv" + ], + "summary": "Cancels a live tv timer.", + "operationId": "CancelTimer", + "parameters": [ + { + "name": "timerId", + "in": "path", + "description": "Timer id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Timer deleted." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "LiveTv" + ], + "summary": "Updates a live tv timer.", + "operationId": "UpdateTimer", + "parameters": [ + { + "name": "timerId", + "in": "path", + "description": "Timer id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "New timer info.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TimerInfoDto" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TimerInfoDto" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TimerInfoDto" + } + ] + } + } + } + }, + "responses": { + "204": { + "description": "Timer updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Timers/Defaults": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Gets the default values for a new timer.", + "operationId": "GetDefaultTimer", + "parameters": [ + { + "name": "programId", + "in": "query", + "description": "Optional. To attach default values based on a program.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Default values returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/TunerHosts": { + "post": { + "tags": [ + "LiveTv" + ], + "summary": "Adds a tuner host.", + "operationId": "AddTunerHost", + "requestBody": { + "description": "New tuner host.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TunerHostInfo" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TunerHostInfo" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/TunerHostInfo" + } + ] + } + } + } + }, + "responses": { + "200": { + "description": "Created tuner host returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TunerHostInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/TunerHostInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/TunerHostInfo" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "LiveTv" + ], + "summary": "Deletes a tuner host.", + "operationId": "DeleteTunerHost", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "Tuner host id.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Tuner host deleted." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/TunerHosts/Types": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Get tuner host types.", + "operationId": "GetTunerHostTypes", + "responses": { + "200": { + "description": "Tuner host types returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Tuners/{tunerId}/Reset": { + "post": { + "tags": [ + "LiveTv" + ], + "summary": "Resets a tv tuner.", + "operationId": "ResetTuner", + "parameters": [ + { + "name": "tunerId", + "in": "path", + "description": "Tuner id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Tuner reset." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Tuners/Discover": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Discover tuners.", + "operationId": "DiscoverTuners", + "parameters": [ + { + "name": "newDevicesOnly", + "in": "query", + "description": "Only discover new tuners.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Tuners returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TunerHostInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TunerHostInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TunerHostInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveTv/Tuners/Discvover": { + "get": { + "tags": [ + "LiveTv" + ], + "summary": "Discover tuners.", + "operationId": "DiscvoverTuners", + "parameters": [ + { + "name": "newDevicesOnly", + "in": "query", + "description": "Only discover new tuners.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Tuners returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TunerHostInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TunerHostInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TunerHostInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Localization/Countries": { + "get": { + "tags": [ + "Localization" + ], + "summary": "Gets known countries.", + "operationId": "GetCountries", + "responses": { + "200": { + "description": "Known countries returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CountryInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CountryInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CountryInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrDefault" + ] + } + ] + } + }, + "/Localization/Cultures": { + "get": { + "tags": [ + "Localization" + ], + "summary": "Gets known cultures.", + "operationId": "GetCultures", + "responses": { + "200": { + "description": "Known cultures returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CultureDto" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CultureDto" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CultureDto" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrDefault" + ] + } + ] + } + }, + "/Localization/Options": { + "get": { + "tags": [ + "Localization" + ], + "summary": "Gets localization options.", + "operationId": "GetLocalizationOptions", + "responses": { + "200": { + "description": "Localization options returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocalizationOption" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocalizationOption" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocalizationOption" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrDefault" + ] + } + ] + } + }, + "/Localization/ParentalRatings": { + "get": { + "tags": [ + "Localization" + ], + "summary": "Gets known parental ratings.", + "operationId": "GetParentalRatings", + "responses": { + "200": { + "description": "Known parental ratings returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentalRating" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentalRating" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentalRating" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrDefault" + ] + } + ] + } + }, + "/Items/{itemId}/PlaybackInfo": { + "get": { + "tags": [ + "MediaInfo" + ], + "summary": "Gets live playback media info for an item.", + "operationId": "GetPlaybackInfo", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Playback info returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PlaybackInfoResponse" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/PlaybackInfoResponse" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/PlaybackInfoResponse" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "MediaInfo" + ], + "summary": "Gets live playback media info for an item.", + "description": "For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence.\r\nQuery parameters are obsolete.", + "operationId": "GetPostedPlaybackInfo", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "The user id.", + "deprecated": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "maxStreamingBitrate", + "in": "query", + "description": "The maximum streaming bitrate.", + "deprecated": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "The start time in ticks.", + "deprecated": true, + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "The audio stream index.", + "deprecated": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "The subtitle stream index.", + "deprecated": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "The maximum number of audio channels.", + "deprecated": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media source id.", + "deprecated": true, + "schema": { + "type": "string" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The livestream id.", + "deprecated": true, + "schema": { + "type": "string" + } + }, + { + "name": "autoOpenLiveStream", + "in": "query", + "description": "Whether to auto open the livestream.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "enableDirectPlay", + "in": "query", + "description": "Whether to enable direct play. Default: true.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "enableDirectStream", + "in": "query", + "description": "Whether to enable direct stream. Default: true.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "enableTranscoding", + "in": "query", + "description": "Whether to enable transcoding. Default: true.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether to allow to copy the video stream. Default: true.", + "deprecated": true, + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether to allow to copy the audio stream. Default: true.", + "deprecated": true, + "schema": { + "type": "boolean" + } + } + ], + "requestBody": { + "description": "The playback info.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackInfoDto" + } + ], + "description": "Plabyback info dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackInfoDto" + } + ], + "description": "Plabyback info dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackInfoDto" + } + ], + "description": "Plabyback info dto." + } + } + } + }, + "responses": { + "200": { + "description": "Playback info returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PlaybackInfoResponse" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/PlaybackInfoResponse" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/PlaybackInfoResponse" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveStreams/Close": { + "post": { + "tags": [ + "MediaInfo" + ], + "summary": "Closes a media source.", + "operationId": "CloseLiveStream", + "parameters": [ + { + "name": "liveStreamId", + "in": "query", + "description": "The livestream id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Livestream closed." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/LiveStreams/Open": { + "post": { + "tags": [ + "MediaInfo" + ], + "summary": "Opens a media source.", + "operationId": "OpenLiveStream", + "parameters": [ + { + "name": "openToken", + "in": "query", + "description": "The open token.", + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "The user id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "maxStreamingBitrate", + "in": "query", + "description": "The maximum streaming bitrate.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "The start time in ticks.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "The audio stream index.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "The subtitle stream index.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "The maximum number of audio channels.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "itemId", + "in": "query", + "description": "The item id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "enableDirectPlay", + "in": "query", + "description": "Whether to enable direct play. Default: true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableDirectStream", + "in": "query", + "description": "Whether to enable direct stream. Default: true.", + "schema": { + "type": "boolean" + } + } + ], + "requestBody": { + "description": "The open live stream dto.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/OpenLiveStreamDto" + } + ], + "description": "Open live stream dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/OpenLiveStreamDto" + } + ], + "description": "Open live stream dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/OpenLiveStreamDto" + } + ], + "description": "Open live stream dto." + } + } + } + }, + "responses": { + "200": { + "description": "Media source opened.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/LiveStreamResponse" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/LiveStreamResponse" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/LiveStreamResponse" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Playback/BitrateTest": { + "get": { + "tags": [ + "MediaInfo" + ], + "summary": "Tests the network with a request with the size of the bitrate.", + "operationId": "GetBitrateTestBytes", + "parameters": [ + { + "name": "size", + "in": "query", + "description": "The bitrate. Defaults to 102400.", + "schema": { + "maximum": 100000000, + "minimum": 1, + "type": "integer", + "format": "int32", + "default": 102400 + } + } + ], + "responses": { + "200": { + "description": "Test buffer returned.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Movies/Recommendations": { + "get": { + "tags": [ + "Movies" + ], + "summary": "Gets movie recommendations.", + "operationId": "GetMovieRecommendations", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. The fields to return.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "categoryLimit", + "in": "query", + "description": "The max number of categories to return.", + "schema": { + "type": "integer", + "format": "int32", + "default": 5 + } + }, + { + "name": "itemLimit", + "in": "query", + "description": "The max number of items to return per category.", + "schema": { + "type": "integer", + "format": "int32", + "default": 8 + } + } + ], + "responses": { + "200": { + "description": "Movie recommendations returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RecommendationDto" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RecommendationDto" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RecommendationDto" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/MusicGenres": { + "get": { + "tags": [ + "MusicGenres" + ], + "summary": "Gets all music genres from a given item, folder, or the entire library.", + "operationId": "GetMusicGenres", + "parameters": [ + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "The search term.", + "schema": { + "type": "string" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional filter by items that are marked as favorite, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional, the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "User id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "nameStartsWithOrGreater", + "in": "query", + "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameStartsWith", + "in": "query", + "description": "Optional filter by items whose name is sorted equally than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameLessThan", + "in": "query", + "description": "Optional filter by items whose name is equally or lesser than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Sort Order - Ascending,Descending.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional, include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Optional. Include total record count.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Music genres returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "deprecated": true, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/MusicGenres/{genreName}": { + "get": { + "tags": [ + "MusicGenres" + ], + "summary": "Gets a music genre, by name.", + "operationId": "GetMusicGenre", + "parameters": [ + { + "name": "genreName", + "in": "path", + "description": "The genre name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Notifications/{userId}": { + "get": { + "tags": [ + "Notifications" + ], + "summary": "Gets a user's notifications.", + "operationId": "GetNotifications", + "parameters": [ + { + "name": "userId", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Notifications returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NotificationResultDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/NotificationResultDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/NotificationResultDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Notifications/{userId}/Read": { + "post": { + "tags": [ + "Notifications" + ], + "summary": "Sets notifications as read.", + "operationId": "SetRead", + "parameters": [ + { + "name": "userId", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Notifications set as read." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Notifications/{userId}/Summary": { + "get": { + "tags": [ + "Notifications" + ], + "summary": "Gets a user's notification summary.", + "operationId": "GetNotificationsSummary", + "parameters": [ + { + "name": "userId", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Summary of user's notifications returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NotificationsSummaryDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/NotificationsSummaryDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/NotificationsSummaryDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Notifications/{userId}/Unread": { + "post": { + "tags": [ + "Notifications" + ], + "summary": "Sets notifications as unread.", + "operationId": "SetUnread", + "parameters": [ + { + "name": "userId", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Notifications set as unread." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Notifications/Admin": { + "post": { + "tags": [ + "Notifications" + ], + "summary": "Sends a notification to all admins.", + "operationId": "CreateAdminNotification", + "requestBody": { + "description": "The notification request.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AdminNotificationDto" + } + ], + "description": "The admin notification dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AdminNotificationDto" + } + ], + "description": "The admin notification dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AdminNotificationDto" + } + ], + "description": "The admin notification dto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Notification sent." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Notifications/Services": { + "get": { + "tags": [ + "Notifications" + ], + "summary": "Gets notification services.", + "operationId": "GetNotificationServices", + "responses": { + "200": { + "description": "All notification services returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Notifications/Types": { + "get": { + "tags": [ + "Notifications" + ], + "summary": "Gets notification types.", + "operationId": "GetNotificationTypes", + "responses": { + "200": { + "description": "All notification types returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NotificationTypeInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NotificationTypeInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NotificationTypeInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Packages": { + "get": { + "tags": [ + "Package" + ], + "summary": "Gets available packages.", + "operationId": "GetPackages", + "responses": { + "200": { + "description": "Available packages returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PackageInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PackageInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PackageInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Packages/{name}": { + "get": { + "tags": [ + "Package" + ], + "summary": "Gets a package by name or assembly GUID.", + "operationId": "GetPackageInfo", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "The name of the package.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "assemblyGuid", + "in": "query", + "description": "The GUID of the associated assembly.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Package retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PackageInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/PackageInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/PackageInfo" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Packages/Installed/{name}": { + "post": { + "tags": [ + "Package" + ], + "summary": "Installs a package.", + "operationId": "InstallPackage", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Package name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "assemblyGuid", + "in": "query", + "description": "GUID of the associated assembly.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "version", + "in": "query", + "description": "Optional version. Defaults to latest version.", + "schema": { + "type": "string" + } + }, + { + "name": "repositoryUrl", + "in": "query", + "description": "Optional. Specify the repository to install from.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Package found." + }, + "404": { + "description": "Package not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/Packages/Installing/{packageId}": { + "delete": { + "tags": [ + "Package" + ], + "summary": "Cancels a package installation.", + "operationId": "CancelPackageInstallation", + "parameters": [ + { + "name": "packageId", + "in": "path", + "description": "Installation Id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "Installation cancelled." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/Repositories": { + "get": { + "tags": [ + "Package" + ], + "summary": "Gets all package repositories.", + "operationId": "GetRepositories", + "responses": { + "200": { + "description": "Package repositories returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RepositoryInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RepositoryInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RepositoryInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "Package" + ], + "summary": "Sets the enabled and existing package repositories.", + "operationId": "SetRepositories", + "requestBody": { + "description": "The list of package repositories.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RepositoryInfo" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RepositoryInfo" + } + } + }, + "application/*+json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RepositoryInfo" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Package repositories saved." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/Persons": { + "get": { + "tags": [ + "Persons" + ], + "summary": "Gets all persons.", + "operationId": "GetPersons", + "parameters": [ + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "The search term.", + "schema": { + "type": "string" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "filters", + "in": "query", + "description": "Optional. Specify additional filters to apply.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFilter" + } + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional filter by items that are marked as favorite, or not. userId is required.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional, include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional, the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "excludePersonTypes", + "in": "query", + "description": "Optional. If specified results will be filtered to exclude those containing the specified PersonType. Allows multiple, comma-delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "personTypes", + "in": "query", + "description": "Optional. If specified results will be filtered to include only those containing the specified PersonType. Allows multiple, comma-delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "appearsInItemId", + "in": "query", + "description": "Optional. If specified, person results will be filtered on items related to said persons.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "User id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional, include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Persons returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Persons/{name}": { + "get": { + "tags": [ + "Persons" + ], + "summary": "Get person by name.", + "operationId": "GetPerson", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Person name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Person returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "404": { + "description": "Person not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Playlists": { + "post": { + "tags": [ + "Playlists" + ], + "summary": "Creates a new playlist.", + "description": "For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence.\r\nQuery parameters are obsolete.", + "operationId": "CreatePlaylist", + "parameters": [ + { + "name": "name", + "in": "query", + "description": "The playlist name.", + "deprecated": true, + "schema": { + "type": "string" + } + }, + { + "name": "ids", + "in": "query", + "description": "The item ids.", + "deprecated": true, + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "The user id.", + "deprecated": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "mediaType", + "in": "query", + "description": "The media type.", + "deprecated": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "The create playlist payload.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/CreatePlaylistDto" + } + ], + "description": "Create new playlist dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/CreatePlaylistDto" + } + ], + "description": "Create new playlist dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/CreatePlaylistDto" + } + ], + "description": "Create new playlist dto." + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PlaylistCreationResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/PlaylistCreationResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/PlaylistCreationResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Playlists/{playlistId}/Items": { + "post": { + "tags": [ + "Playlists" + ], + "summary": "Adds items to a playlist.", + "operationId": "AddToPlaylist", + "parameters": [ + { + "name": "playlistId", + "in": "path", + "description": "The playlist id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "ids", + "in": "query", + "description": "Item id, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "The userId.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "Items added to playlist." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "Playlists" + ], + "summary": "Removes items from a playlist.", + "operationId": "RemoveFromPlaylist", + "parameters": [ + { + "name": "playlistId", + "in": "path", + "description": "The playlist id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "entryIds", + "in": "query", + "description": "The item ids, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + ], + "responses": { + "204": { + "description": "Items removed." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "get": { + "tags": [ + "Playlists" + ], + "summary": "Gets the original items of a playlist.", + "operationId": "GetPlaylistItems", + "parameters": [ + { + "name": "playlistId", + "in": "path", + "description": "The playlist id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + } + ], + "responses": { + "200": { + "description": "Original playlist returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "404": { + "description": "Playlist not found." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Playlists/{playlistId}/Items/{itemId}/Move/{newIndex}": { + "post": { + "tags": [ + "Playlists" + ], + "summary": "Moves a playlist item.", + "operationId": "MoveItem", + "parameters": [ + { + "name": "playlistId", + "in": "path", + "description": "The playlist id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "newIndex", + "in": "path", + "description": "The new index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "204": { + "description": "Item moved to new index." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/Playing": { + "post": { + "tags": [ + "Playstate" + ], + "summary": "Reports playback has started within a session.", + "operationId": "ReportPlaybackStart", + "requestBody": { + "description": "The playback start info.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackStartInfo" + } + ], + "description": "Class PlaybackStartInfo." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackStartInfo" + } + ], + "description": "Class PlaybackStartInfo." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackStartInfo" + } + ], + "description": "Class PlaybackStartInfo." + } + } + } + }, + "responses": { + "204": { + "description": "Playback start recorded." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/Playing/Ping": { + "post": { + "tags": [ + "Playstate" + ], + "summary": "Pings a playback session.", + "operationId": "PingPlaybackSession", + "parameters": [ + { + "name": "playSessionId", + "in": "query", + "description": "Playback session id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Playback session pinged." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/Playing/Progress": { + "post": { + "tags": [ + "Playstate" + ], + "summary": "Reports playback progress within a session.", + "operationId": "ReportPlaybackProgress", + "requestBody": { + "description": "The playback progress info.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackProgressInfo" + } + ], + "description": "Class PlaybackProgressInfo." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackProgressInfo" + } + ], + "description": "Class PlaybackProgressInfo." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackProgressInfo" + } + ], + "description": "Class PlaybackProgressInfo." + } + } + } + }, + "responses": { + "204": { + "description": "Playback progress recorded." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/Playing/Stopped": { + "post": { + "tags": [ + "Playstate" + ], + "summary": "Reports playback has stopped within a session.", + "operationId": "ReportPlaybackStopped", + "requestBody": { + "description": "The playback stop info.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackStopInfo" + } + ], + "description": "Class PlaybackStopInfo." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackStopInfo" + } + ], + "description": "Class PlaybackStopInfo." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackStopInfo" + } + ], + "description": "Class PlaybackStopInfo." + } + } + } + }, + "responses": { + "204": { + "description": "Playback stop recorded." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/PlayedItems/{itemId}": { + "post": { + "tags": [ + "Playstate" + ], + "summary": "Marks an item as played for user.", + "operationId": "MarkPlayedItem", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "datePlayed", + "in": "query", + "description": "Optional. The date the item was played.", + "schema": { + "type": "string", + "format": "date-time" + } + } + ], + "responses": { + "200": { + "description": "Item marked as played.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "Playstate" + ], + "summary": "Marks an item as unplayed for user.", + "operationId": "MarkUnplayedItem", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Item marked as unplayed.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/PlayingItems/{itemId}": { + "post": { + "tags": [ + "Playstate" + ], + "summary": "Reports that a user has begun playing an item.", + "operationId": "OnPlaybackStart", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The id of the MediaSource.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "The audio stream index.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "The subtitle stream index.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "playMethod", + "in": "query", + "description": "The play method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayMethod" + } + ] + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "canSeek", + "in": "query", + "description": "Indicates if the client can seek.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "204": { + "description": "Play start recorded." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "Playstate" + ], + "summary": "Reports that a user has stopped playing an item.", + "operationId": "OnPlaybackStopped", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The id of the MediaSource.", + "schema": { + "type": "string" + } + }, + { + "name": "nextMediaType", + "in": "query", + "description": "The next media type that will play.", + "schema": { + "type": "string" + } + }, + { + "name": "positionTicks", + "in": "query", + "description": "Optional. The position, in ticks, where playback stopped. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Playback stop recorded." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/PlayingItems/{itemId}/Progress": { + "post": { + "tags": [ + "Playstate" + ], + "summary": "Reports a user's playback progress.", + "operationId": "OnPlaybackProgress", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The id of the MediaSource.", + "schema": { + "type": "string" + } + }, + { + "name": "positionTicks", + "in": "query", + "description": "Optional. The current position, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "The audio stream index.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "The subtitle stream index.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "volumeLevel", + "in": "query", + "description": "Scale of 0-100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "playMethod", + "in": "query", + "description": "The play method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayMethod" + } + ] + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "repeatMode", + "in": "query", + "description": "The repeat mode.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/RepeatMode" + } + ] + } + }, + { + "name": "isPaused", + "in": "query", + "description": "Indicates if the player is paused.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "isMuted", + "in": "query", + "description": "Indicates if the player is muted.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "204": { + "description": "Play progress recorded." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Plugins": { + "get": { + "tags": [ + "Plugins" + ], + "summary": "Gets a list of currently installed plugins.", + "operationId": "GetPlugins", + "responses": { + "200": { + "description": "Installed plugins returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PluginInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PluginInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PluginInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Plugins/{pluginId}": { + "delete": { + "tags": [ + "Plugins" + ], + "summary": "Uninstalls a plugin.", + "operationId": "UninstallPlugin", + "parameters": [ + { + "name": "pluginId", + "in": "path", + "description": "Plugin id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "Plugin uninstalled." + }, + "404": { + "description": "Plugin not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "deprecated": true, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/Plugins/{pluginId}/{version}": { + "delete": { + "tags": [ + "Plugins" + ], + "summary": "Uninstalls a plugin by version.", + "operationId": "UninstallPluginByVersion", + "parameters": [ + { + "name": "pluginId", + "in": "path", + "description": "Plugin id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "version", + "in": "path", + "description": "Plugin version.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Plugin uninstalled." + }, + "404": { + "description": "Plugin not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/Plugins/{pluginId}/{version}/Disable": { + "post": { + "tags": [ + "Plugins" + ], + "summary": "Disable a plugin.", + "operationId": "DisablePlugin", + "parameters": [ + { + "name": "pluginId", + "in": "path", + "description": "Plugin id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "version", + "in": "path", + "description": "Plugin version.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Plugin disabled." + }, + "404": { + "description": "Plugin not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/Plugins/{pluginId}/{version}/Enable": { + "post": { + "tags": [ + "Plugins" + ], + "summary": "Enables a disabled plugin.", + "operationId": "EnablePlugin", + "parameters": [ + { + "name": "pluginId", + "in": "path", + "description": "Plugin id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "version", + "in": "path", + "description": "Plugin version.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Plugin enabled." + }, + "404": { + "description": "Plugin not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation", + "DefaultAuthorization" + ] + } + ] + } + }, + "/Plugins/{pluginId}/{version}/Image": { + "get": { + "tags": [ + "Plugins" + ], + "summary": "Gets a plugin's image.", + "operationId": "GetPluginImage", + "parameters": [ + { + "name": "pluginId", + "in": "path", + "description": "Plugin id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "version", + "in": "path", + "description": "Plugin version.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Plugin image returned.", + "content": { + "image/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Plugins/{pluginId}/Configuration": { + "get": { + "tags": [ + "Plugins" + ], + "summary": "Gets plugin configuration.", + "operationId": "GetPluginConfiguration", + "parameters": [ + { + "name": "pluginId", + "in": "path", + "description": "Plugin id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Plugin configuration returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BasePluginConfiguration" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BasePluginConfiguration" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BasePluginConfiguration" + } + } + } + }, + "404": { + "description": "Plugin not found or plugin configuration not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "Plugins" + ], + "summary": "Updates plugin configuration.", + "description": "Accepts plugin configuration as JSON body.", + "operationId": "UpdatePluginConfiguration", + "parameters": [ + { + "name": "pluginId", + "in": "path", + "description": "Plugin id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "Plugin configuration updated." + }, + "404": { + "description": "Plugin not found or plugin does not have configuration.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Plugins/{pluginId}/Manifest": { + "post": { + "tags": [ + "Plugins" + ], + "summary": "Gets a plugin's manifest.", + "operationId": "GetPluginManifest", + "parameters": [ + { + "name": "pluginId", + "in": "path", + "description": "Plugin id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "Plugin manifest returned." + }, + "404": { + "description": "Plugin not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/QuickConnect/Authorize": { + "post": { + "tags": [ + "QuickConnect" + ], + "summary": "Authorizes a pending quick connect request.", + "operationId": "Authorize", + "parameters": [ + { + "name": "code", + "in": "query", + "description": "Quick connect code to authorize.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Quick connect result authorized successfully.", + "content": { + "application/json": { + "schema": { + "type": "boolean" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "boolean" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "boolean" + } + } + } + }, + "403": { + "description": "Unknown user id.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/QuickConnect/Connect": { + "get": { + "tags": [ + "QuickConnect" + ], + "summary": "Attempts to retrieve authentication information.", + "operationId": "Connect", + "parameters": [ + { + "name": "secret", + "in": "query", + "description": "Secret previously returned from the Initiate endpoint.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Quick connect result returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/QuickConnectResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/QuickConnectResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/QuickConnectResult" + } + } + } + }, + "404": { + "description": "Unknown quick connect secret.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/QuickConnect/Enabled": { + "get": { + "tags": [ + "QuickConnect" + ], + "summary": "Gets the current quick connect state.", + "operationId": "GetEnabled", + "responses": { + "200": { + "description": "Quick connect state returned.", + "content": { + "application/json": { + "schema": { + "type": "boolean" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "boolean" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "boolean" + } + } + } + } + } + } + }, + "/QuickConnect/Initiate": { + "get": { + "tags": [ + "QuickConnect" + ], + "summary": "Initiate a new quick connect request.", + "operationId": "Initiate", + "responses": { + "200": { + "description": "Quick connect request successfully created.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/QuickConnectResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/QuickConnectResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/QuickConnectResult" + } + } + } + }, + "401": { + "description": "Quick connect is not active on this server." + } + } + } + }, + "/Items/{itemId}/RemoteImages": { + "get": { + "tags": [ + "RemoteImage" + ], + "summary": "Gets available remote images for an item.", + "operationId": "GetRemoteImages", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item Id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "type", + "in": "query", + "description": "The image type.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ] + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "providerName", + "in": "query", + "description": "Optional. The image provider to use.", + "schema": { + "type": "string" + } + }, + { + "name": "includeAllLanguages", + "in": "query", + "description": "Optional. Include all languages.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Remote Images returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RemoteImageResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/RemoteImageResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/RemoteImageResult" + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/RemoteImages/Download": { + "post": { + "tags": [ + "RemoteImage" + ], + "summary": "Downloads a remote image for an item.", + "operationId": "DownloadRemoteImage", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item Id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "type", + "in": "query", + "description": "The image type.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Enum ImageType." + } + }, + { + "name": "imageUrl", + "in": "query", + "description": "The image url.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Remote image downloaded." + }, + "404": { + "description": "Remote image not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Items/{itemId}/RemoteImages/Providers": { + "get": { + "tags": [ + "RemoteImage" + ], + "summary": "Gets available remote image providers for an item.", + "operationId": "GetRemoteImageProviders", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "Item Id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Returned remote image providers.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageProviderInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageProviderInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageProviderInfo" + } + } + } + } + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/ScheduledTasks": { + "get": { + "tags": [ + "ScheduledTasks" + ], + "summary": "Get tasks.", + "operationId": "GetTasks", + "parameters": [ + { + "name": "isHidden", + "in": "query", + "description": "Optional filter tasks that are hidden, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isEnabled", + "in": "query", + "description": "Optional filter tasks that are enabled, or not.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Scheduled tasks retrieved.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/ScheduledTasks/{taskId}": { + "get": { + "tags": [ + "ScheduledTasks" + ], + "summary": "Get task by id.", + "operationId": "GetTask", + "parameters": [ + { + "name": "taskId", + "in": "path", + "description": "Task Id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Task retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TaskInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/TaskInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/TaskInfo" + } + } + } + }, + "404": { + "description": "Task not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/ScheduledTasks/{taskId}/Triggers": { + "post": { + "tags": [ + "ScheduledTasks" + ], + "summary": "Update specified task triggers.", + "operationId": "UpdateTask", + "parameters": [ + { + "name": "taskId", + "in": "path", + "description": "Task Id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "Triggers.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskTriggerInfo" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskTriggerInfo" + } + } + }, + "application/*+json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskTriggerInfo" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Task triggers updated." + }, + "404": { + "description": "Task not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/ScheduledTasks/Running/{taskId}": { + "post": { + "tags": [ + "ScheduledTasks" + ], + "summary": "Start specified task.", + "operationId": "StartTask", + "parameters": [ + { + "name": "taskId", + "in": "path", + "description": "Task Id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Task started." + }, + "404": { + "description": "Task not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "delete": { + "tags": [ + "ScheduledTasks" + ], + "summary": "Stop specified task.", + "operationId": "StopTask", + "parameters": [ + { + "name": "taskId", + "in": "path", + "description": "Task Id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Task stopped." + }, + "404": { + "description": "Task not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Search/Hints": { + "get": { + "tags": [ + "Search" + ], + "summary": "Gets the search hint result.", + "operationId": "Get", + "parameters": [ + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Supply a user id to search within a user's library or omit to search all.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "The search term to filter on.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "If specified, only results with the specified item types are returned. This allows multiple, comma delimeted.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "If specified, results with these item types are filtered out. This allows multiple, comma delimeted.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "mediaTypes", + "in": "query", + "description": "If specified, only results with the specified media types are returned. This allows multiple, comma delimeted.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "parentId", + "in": "query", + "description": "If specified, only children of the parent are returned.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "isMovie", + "in": "query", + "description": "Optional filter for movies.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSeries", + "in": "query", + "description": "Optional filter for series.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isNews", + "in": "query", + "description": "Optional filter for news.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isKids", + "in": "query", + "description": "Optional filter for kids.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSports", + "in": "query", + "description": "Optional filter for sports.", + "schema": { + "type": "boolean" + } + }, + { + "name": "includePeople", + "in": "query", + "description": "Optional filter whether to include people.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "includeMedia", + "in": "query", + "description": "Optional filter whether to include media.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "includeGenres", + "in": "query", + "description": "Optional filter whether to include genres.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "includeStudios", + "in": "query", + "description": "Optional filter whether to include studios.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "includeArtists", + "in": "query", + "description": "Optional filter whether to include artists.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Search hint returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SearchHintResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/SearchHintResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/SearchHintResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Auth/PasswordResetProviders": { + "get": { + "tags": [ + "Session" + ], + "summary": "Get all password reset providers.", + "operationId": "GetPasswordResetProviders", + "responses": { + "200": { + "description": "Password reset providers retrieved.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Auth/Providers": { + "get": { + "tags": [ + "Session" + ], + "summary": "Get all auth providers.", + "operationId": "GetAuthProviders", + "responses": { + "200": { + "description": "Auth providers retrieved.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Sessions": { + "get": { + "tags": [ + "Session" + ], + "summary": "Gets a list of sessions.", + "operationId": "GetSessions", + "parameters": [ + { + "name": "controllableByUserId", + "in": "query", + "description": "Filter by sessions that a given user is allowed to remote control.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "Filter by device Id.", + "schema": { + "type": "string" + } + }, + { + "name": "activeWithinSeconds", + "in": "query", + "description": "Optional. Filter by sessions that were active in the last n seconds.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "List of sessions returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SessionInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SessionInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SessionInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/{sessionId}/Command": { + "post": { + "tags": [ + "Session" + ], + "summary": "Issues a full general command to a client.", + "operationId": "SendFullGeneralCommand", + "parameters": [ + { + "name": "sessionId", + "in": "path", + "description": "The session id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "The MediaBrowser.Model.Session.GeneralCommand.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/GeneralCommand" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/GeneralCommand" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/GeneralCommand" + } + ] + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Full general command sent to session." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/{sessionId}/Command/{command}": { + "post": { + "tags": [ + "Session" + ], + "summary": "Issues a general command to a client.", + "operationId": "SendGeneralCommand", + "parameters": [ + { + "name": "sessionId", + "in": "path", + "description": "The session id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "command", + "in": "path", + "description": "The command to send.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/GeneralCommandType" + } + ], + "description": "This exists simply to identify a set of known commands." + } + } + ], + "responses": { + "204": { + "description": "General command sent to session." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/{sessionId}/Message": { + "post": { + "tags": [ + "Session" + ], + "summary": "Issues a command to a client to display a message to the user.", + "operationId": "SendMessageCommand", + "parameters": [ + { + "name": "sessionId", + "in": "path", + "description": "The session id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "The MediaBrowser.Model.Session.MessageCommand object containing Header, Message Text, and TimeoutMs.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MessageCommand" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MessageCommand" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MessageCommand" + } + ] + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Message sent." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/{sessionId}/Playing": { + "post": { + "tags": [ + "Session" + ], + "summary": "Instructs a session to play an item.", + "operationId": "Play", + "parameters": [ + { + "name": "sessionId", + "in": "path", + "description": "The session id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "playCommand", + "in": "query", + "description": "The type of play command to issue (PlayNow, PlayNext, PlayLast). Clients who have not yet implemented play next and play last may play now.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayCommand" + } + ], + "description": "Enum PlayCommand." + } + }, + { + "name": "itemIds", + "in": "query", + "description": "The ids of the items to play, comma delimited.", + "required": true, + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "startPositionTicks", + "in": "query", + "description": "The starting position of the first item.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "Optional. The media source id.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to play.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to play.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The start index.", + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "204": { + "description": "Instruction sent to session." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/{sessionId}/Playing/{command}": { + "post": { + "tags": [ + "Session" + ], + "summary": "Issues a playstate command to a client.", + "operationId": "SendPlaystateCommand", + "parameters": [ + { + "name": "sessionId", + "in": "path", + "description": "The session id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "command", + "in": "path", + "description": "The MediaBrowser.Model.Session.PlaystateCommand.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaystateCommand" + } + ], + "description": "Enum PlaystateCommand." + } + }, + { + "name": "seekPositionTicks", + "in": "query", + "description": "The optional position ticks.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "controllingUserId", + "in": "query", + "description": "The optional controlling user id.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Playstate command sent to session." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/{sessionId}/System/{command}": { + "post": { + "tags": [ + "Session" + ], + "summary": "Issues a system command to a client.", + "operationId": "SendSystemCommand", + "parameters": [ + { + "name": "sessionId", + "in": "path", + "description": "The session id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "command", + "in": "path", + "description": "The command to send.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/GeneralCommandType" + } + ], + "description": "This exists simply to identify a set of known commands." + } + } + ], + "responses": { + "204": { + "description": "System command sent to session." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/{sessionId}/User/{userId}": { + "post": { + "tags": [ + "Session" + ], + "summary": "Adds an additional user to a session.", + "operationId": "AddUserToSession", + "parameters": [ + { + "name": "sessionId", + "in": "path", + "description": "The session id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "User added to session." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "Session" + ], + "summary": "Removes an additional user from a session.", + "operationId": "RemoveUserFromSession", + "parameters": [ + { + "name": "sessionId", + "in": "path", + "description": "The session id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "User removed from session." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/{sessionId}/Viewing": { + "post": { + "tags": [ + "Session" + ], + "summary": "Instructs a session to browse to an item or view.", + "operationId": "DisplayContent", + "parameters": [ + { + "name": "sessionId", + "in": "path", + "description": "The session Id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "itemType", + "in": "query", + "description": "The type of item to browse to.", + "required": true, + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemKind" + } + ], + "description": "The base item kind." + } + }, + { + "name": "itemId", + "in": "query", + "description": "The Id of the item.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "itemName", + "in": "query", + "description": "The name of the item.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Instruction sent to session." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/Capabilities": { + "post": { + "tags": [ + "Session" + ], + "summary": "Updates capabilities for a device.", + "operationId": "PostCapabilities", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "The session id.", + "schema": { + "type": "string" + } + }, + { + "name": "playableMediaTypes", + "in": "query", + "description": "A list of playable media types, comma delimited. Audio, Video, Book, Photo.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "supportedCommands", + "in": "query", + "description": "A list of supported remote control commands, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GeneralCommandType" + } + } + }, + { + "name": "supportsMediaControl", + "in": "query", + "description": "Determines whether media can be played remotely..", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "supportsSync", + "in": "query", + "description": "Determines whether sync is supported.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "supportsPersistentIdentifier", + "in": "query", + "description": "Determines whether the device supports a unique identifier.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "204": { + "description": "Capabilities posted." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/Capabilities/Full": { + "post": { + "tags": [ + "Session" + ], + "summary": "Updates capabilities for a device.", + "operationId": "PostFullCapabilities", + "parameters": [ + { + "name": "id", + "in": "query", + "description": "The session id.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "The MediaBrowser.Model.Session.ClientCapabilities.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ClientCapabilitiesDto" + } + ], + "description": "Client capabilities dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ClientCapabilitiesDto" + } + ], + "description": "Client capabilities dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ClientCapabilitiesDto" + } + ], + "description": "Client capabilities dto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Capabilities updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/Logout": { + "post": { + "tags": [ + "Session" + ], + "summary": "Reports that a session has ended.", + "operationId": "ReportSessionEnded", + "responses": { + "204": { + "description": "Session end reported to server." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Sessions/Viewing": { + "post": { + "tags": [ + "Session" + ], + "summary": "Reports that a session is viewing an item.", + "operationId": "ReportViewing", + "parameters": [ + { + "name": "sessionId", + "in": "query", + "description": "The session id.", + "schema": { + "type": "string" + } + }, + { + "name": "itemId", + "in": "query", + "description": "The item id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Session reported to server." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Startup/Complete": { + "post": { + "tags": [ + "Startup" + ], + "summary": "Completes the startup wizard.", + "operationId": "CompleteWizard", + "responses": { + "204": { + "description": "Startup wizard completed." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Startup/Configuration": { + "get": { + "tags": [ + "Startup" + ], + "summary": "Gets the initial startup wizard configuration.", + "operationId": "GetStartupConfiguration", + "responses": { + "200": { + "description": "Initial startup wizard configuration retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/StartupConfigurationDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/StartupConfigurationDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/StartupConfigurationDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + }, + "post": { + "tags": [ + "Startup" + ], + "summary": "Sets the initial startup wizard configuration.", + "operationId": "UpdateInitialConfiguration", + "requestBody": { + "description": "The updated startup configuration.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/StartupConfigurationDto" + } + ], + "description": "The startup configuration DTO." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/StartupConfigurationDto" + } + ], + "description": "The startup configuration DTO." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/StartupConfigurationDto" + } + ], + "description": "The startup configuration DTO." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Configuration saved." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Startup/FirstUser": { + "get": { + "tags": [ + "Startup" + ], + "summary": "Gets the first user.", + "operationId": "GetFirstUser_2", + "responses": { + "200": { + "description": "Initial user retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/StartupUserDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/StartupUserDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/StartupUserDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Startup/RemoteAccess": { + "post": { + "tags": [ + "Startup" + ], + "summary": "Sets remote access and UPnP.", + "operationId": "SetRemoteAccess", + "requestBody": { + "description": "The startup remote access dto.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/StartupRemoteAccessDto" + } + ], + "description": "Startup remote access dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/StartupRemoteAccessDto" + } + ], + "description": "Startup remote access dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/StartupRemoteAccessDto" + } + ], + "description": "Startup remote access dto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Configuration saved." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Startup/User": { + "get": { + "tags": [ + "Startup" + ], + "summary": "Gets the first user.", + "operationId": "GetFirstUser", + "responses": { + "200": { + "description": "Initial user retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/StartupUserDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/StartupUserDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/StartupUserDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + }, + "post": { + "tags": [ + "Startup" + ], + "summary": "Sets the user name and password.", + "operationId": "UpdateStartupUser", + "requestBody": { + "description": "The DTO containing username and password.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/StartupUserDto" + } + ], + "description": "The startup user DTO." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/StartupUserDto" + } + ], + "description": "The startup user DTO." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/StartupUserDto" + } + ], + "description": "The startup user DTO." + } + } + } + }, + "responses": { + "204": { + "description": "Updated user name and password." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrElevated" + ] + } + ] + } + }, + "/Studios": { + "get": { + "tags": [ + "Studios" + ], + "summary": "Gets all studios from a given item, folder, or the entire library.", + "operationId": "GetStudios", + "parameters": [ + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "Optional. Search term.", + "schema": { + "type": "string" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional filter by items that are marked as favorite, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional, include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional, the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "User id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "nameStartsWithOrGreater", + "in": "query", + "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameStartsWith", + "in": "query", + "description": "Optional filter by items whose name is sorted equally than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameLessThan", + "in": "query", + "description": "Optional filter by items whose name is equally or lesser than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional, include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Total record count.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Studios returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Studios/{name}": { + "get": { + "tags": [ + "Studios" + ], + "summary": "Gets a studio by name.", + "operationId": "GetStudio", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "Studio name.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Studio returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/FallbackFont/Fonts": { + "get": { + "tags": [ + "Subtitle" + ], + "summary": "Gets a list of available fallback font files.", + "operationId": "GetFallbackFontList", + "responses": { + "200": { + "description": "Information retrieved.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FontFile" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FontFile" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FontFile" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/FallbackFont/Fonts/{name}": { + "get": { + "tags": [ + "Subtitle" + ], + "summary": "Gets a fallback font file.", + "operationId": "GetFallbackFont", + "parameters": [ + { + "name": "name", + "in": "path", + "description": "The name of the fallback font file to get.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Fallback font file retrieved.", + "content": { + "font/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/RemoteSearch/Subtitles/{language}": { + "get": { + "tags": [ + "Subtitle" + ], + "summary": "Search remote subtitles.", + "operationId": "SearchRemoteSubtitles", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "language", + "in": "path", + "description": "The language of the subtitles.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "isPerfectMatch", + "in": "query", + "description": "Optional. Only show subtitles which are a perfect match.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Subtitles retrieved.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSubtitleInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSubtitleInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSubtitleInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Items/{itemId}/RemoteSearch/Subtitles/{subtitleId}": { + "post": { + "tags": [ + "Subtitle" + ], + "summary": "Downloads a remote subtitle.", + "operationId": "DownloadRemoteSubtitles", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "subtitleId", + "in": "path", + "description": "The subtitle id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Subtitle downloaded." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Providers/Subtitles/Subtitles/{id}": { + "get": { + "tags": [ + "Subtitle" + ], + "summary": "Gets the remote subtitles.", + "operationId": "GetRemoteSubtitles", + "parameters": [ + { + "name": "id", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "File returned.", + "content": { + "text/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Videos/{itemId}/{mediaSourceId}/Subtitles/{index}/subtitles.m3u8": { + "get": { + "tags": [ + "Subtitle" + ], + "summary": "Gets an HLS subtitle playlist.", + "operationId": "GetSubtitlePlaylist", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "index", + "in": "path", + "description": "The subtitle stream index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "path", + "description": "The media source id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The subtitle segment length.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Subtitle playlist retrieved.", + "content": { + "application/x-mpegURL": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Videos/{itemId}/Subtitles": { + "post": { + "tags": [ + "Subtitle" + ], + "summary": "Upload an external subtitle file.", + "operationId": "UploadSubtitle", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item the subtitle belongs to.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "requestBody": { + "description": "The request body.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UploadSubtitleDto" + } + ], + "description": "Upload subtitles dto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UploadSubtitleDto" + } + ], + "description": "Upload subtitles dto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UploadSubtitleDto" + } + ], + "description": "Upload subtitles dto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Subtitle uploaded." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Videos/{itemId}/Subtitles/{index}": { + "delete": { + "tags": [ + "Subtitle" + ], + "summary": "Deletes an external subtitle file.", + "operationId": "DeleteSubtitle", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "index", + "in": "path", + "description": "The index of the subtitle file.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "204": { + "description": "Subtitle deleted." + }, + "404": { + "description": "Item not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/{routeStartPositionTicks}/Stream.{routeFormat}": { + "get": { + "tags": [ + "Subtitle" + ], + "summary": "Gets subtitles in a specified format.", + "operationId": "GetSubtitleWithTicks", + "parameters": [ + { + "name": "routeItemId", + "in": "path", + "description": "The (route) item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "routeMediaSourceId", + "in": "path", + "description": "The (route) media source id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "routeIndex", + "in": "path", + "description": "The (route) subtitle stream index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "routeStartPositionTicks", + "in": "path", + "description": "The (route) start position of the subtitle in ticks.", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "routeFormat", + "in": "path", + "description": "The (route) format of the returned subtitle.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "itemId", + "in": "query", + "description": "The item id.", + "deprecated": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media source id.", + "deprecated": true, + "schema": { + "type": "string" + } + }, + { + "name": "index", + "in": "query", + "description": "The subtitle stream index.", + "deprecated": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "startPositionTicks", + "in": "query", + "description": "The start position of the subtitle in ticks.", + "deprecated": true, + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "format", + "in": "query", + "description": "The format of the returned subtitle.", + "deprecated": true, + "schema": { + "type": "string" + } + }, + { + "name": "endPositionTicks", + "in": "query", + "description": "Optional. The end position of the subtitle in ticks.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Optional. Whether to copy the timestamps.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "addVttTimeMap", + "in": "query", + "description": "Optional. Whether to add a VTT time map.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "File returned.", + "content": { + "text/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/Stream.{routeFormat}": { + "get": { + "tags": [ + "Subtitle" + ], + "summary": "Gets subtitles in a specified format.", + "operationId": "GetSubtitle", + "parameters": [ + { + "name": "routeItemId", + "in": "path", + "description": "The (route) item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "routeMediaSourceId", + "in": "path", + "description": "The (route) media source id.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "routeIndex", + "in": "path", + "description": "The (route) subtitle stream index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "routeFormat", + "in": "path", + "description": "The (route) format of the returned subtitle.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "itemId", + "in": "query", + "description": "The item id.", + "deprecated": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media source id.", + "deprecated": true, + "schema": { + "type": "string" + } + }, + { + "name": "index", + "in": "query", + "description": "The subtitle stream index.", + "deprecated": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "format", + "in": "query", + "description": "The format of the returned subtitle.", + "deprecated": true, + "schema": { + "type": "string" + } + }, + { + "name": "endPositionTicks", + "in": "query", + "description": "Optional. The end position of the subtitle in ticks.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Optional. Whether to copy the timestamps.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "addVttTimeMap", + "in": "query", + "description": "Optional. Whether to add a VTT time map.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "startPositionTicks", + "in": "query", + "description": "The start position of the subtitle in ticks.", + "schema": { + "type": "integer", + "format": "int64", + "default": 0 + } + } + ], + "responses": { + "200": { + "description": "File returned.", + "content": { + "text/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/Users/{userId}/Suggestions": { + "get": { + "tags": [ + "Suggestions" + ], + "summary": "Gets suggestions.", + "operationId": "GetSuggestions", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "mediaType", + "in": "query", + "description": "The media types.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "type", + "in": "query", + "description": "The type.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The start index.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The limit.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Whether to enable the total record count.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Suggestions returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/SyncPlay/Buffering": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Notify SyncPlay group that member is buffering.", + "operationId": "SyncPlayBuffering", + "requestBody": { + "description": "The player status.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BufferRequestDto" + } + ], + "description": "Class BufferRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BufferRequestDto" + } + ], + "description": "Class BufferRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/BufferRequestDto" + } + ], + "description": "Class BufferRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Group state update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/Join": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Join an existing SyncPlay group.", + "operationId": "SyncPlayJoinGroup", + "requestBody": { + "description": "The group to join.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/JoinGroupRequestDto" + } + ], + "description": "Class JoinGroupRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/JoinGroupRequestDto" + } + ], + "description": "Class JoinGroupRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/JoinGroupRequestDto" + } + ], + "description": "Class JoinGroupRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Group join successful." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayJoinGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/Leave": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Leave the joined SyncPlay group.", + "operationId": "SyncPlayLeaveGroup", + "responses": { + "204": { + "description": "Group leave successful." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/List": { + "get": { + "tags": [ + "SyncPlay" + ], + "summary": "Gets all SyncPlay groups.", + "operationId": "SyncPlayGetGroups", + "responses": { + "200": { + "description": "Groups returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GroupInfoDto" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GroupInfoDto" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GroupInfoDto" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayJoinGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/MovePlaylistItem": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request to move an item in the playlist in SyncPlay group.", + "operationId": "SyncPlayMovePlaylistItem", + "requestBody": { + "description": "The new position for the item.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MovePlaylistItemRequestDto" + } + ], + "description": "Class MovePlaylistItemRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MovePlaylistItemRequestDto" + } + ], + "description": "Class MovePlaylistItemRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/MovePlaylistItemRequestDto" + } + ], + "description": "Class MovePlaylistItemRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Queue update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/New": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Create a new SyncPlay group.", + "operationId": "SyncPlayCreateGroup", + "requestBody": { + "description": "The settings of the new group.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/NewGroupRequestDto" + } + ], + "description": "Class NewGroupRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/NewGroupRequestDto" + } + ], + "description": "Class NewGroupRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/NewGroupRequestDto" + } + ], + "description": "Class NewGroupRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "New group created." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayCreateGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/NextItem": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request next item in SyncPlay group.", + "operationId": "SyncPlayNextItem", + "requestBody": { + "description": "The current item information.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/NextItemRequestDto" + } + ], + "description": "Class NextItemRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/NextItemRequestDto" + } + ], + "description": "Class NextItemRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/NextItemRequestDto" + } + ], + "description": "Class NextItemRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Next item update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/Pause": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request pause in SyncPlay group.", + "operationId": "SyncPlayPause", + "responses": { + "204": { + "description": "Pause update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/Ping": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Update session ping.", + "operationId": "SyncPlayPing", + "requestBody": { + "description": "The new ping.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PingRequestDto" + } + ], + "description": "Class PingRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PingRequestDto" + } + ], + "description": "Class PingRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PingRequestDto" + } + ], + "description": "Class PingRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Ping updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/PreviousItem": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request previous item in SyncPlay group.", + "operationId": "SyncPlayPreviousItem", + "requestBody": { + "description": "The current item information.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PreviousItemRequestDto" + } + ], + "description": "Class PreviousItemRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PreviousItemRequestDto" + } + ], + "description": "Class PreviousItemRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PreviousItemRequestDto" + } + ], + "description": "Class PreviousItemRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Previous item update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/Queue": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request to queue items to the playlist of a SyncPlay group.", + "operationId": "SyncPlayQueue", + "requestBody": { + "description": "The items to add.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/QueueRequestDto" + } + ], + "description": "Class QueueRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/QueueRequestDto" + } + ], + "description": "Class QueueRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/QueueRequestDto" + } + ], + "description": "Class QueueRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Queue update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/Ready": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Notify SyncPlay group that member is ready for playback.", + "operationId": "SyncPlayReady", + "requestBody": { + "description": "The player status.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ReadyRequestDto" + } + ], + "description": "Class ReadyRequest." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ReadyRequestDto" + } + ], + "description": "Class ReadyRequest." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ReadyRequestDto" + } + ], + "description": "Class ReadyRequest." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Group state update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/RemoveFromPlaylist": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request to remove items from the playlist in SyncPlay group.", + "operationId": "SyncPlayRemoveFromPlaylist", + "requestBody": { + "description": "The items to remove.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/RemoveFromPlaylistRequestDto" + } + ], + "description": "Class RemoveFromPlaylistRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/RemoveFromPlaylistRequestDto" + } + ], + "description": "Class RemoveFromPlaylistRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/RemoveFromPlaylistRequestDto" + } + ], + "description": "Class RemoveFromPlaylistRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Queue update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/Seek": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request seek in SyncPlay group.", + "operationId": "SyncPlaySeek", + "requestBody": { + "description": "The new playback position.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeekRequestDto" + } + ], + "description": "Class SeekRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeekRequestDto" + } + ], + "description": "Class SeekRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SeekRequestDto" + } + ], + "description": "Class SeekRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Seek update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/SetIgnoreWait": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request SyncPlay group to ignore member during group-wait.", + "operationId": "SyncPlaySetIgnoreWait", + "requestBody": { + "description": "The settings to set.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/IgnoreWaitRequestDto" + } + ], + "description": "Class IgnoreWaitRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/IgnoreWaitRequestDto" + } + ], + "description": "Class IgnoreWaitRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/IgnoreWaitRequestDto" + } + ], + "description": "Class IgnoreWaitRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Member state updated." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/SetNewQueue": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request to set new playlist in SyncPlay group.", + "operationId": "SyncPlaySetNewQueue", + "requestBody": { + "description": "The new playlist to play in the group.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayRequestDto" + } + ], + "description": "Class PlayRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayRequestDto" + } + ], + "description": "Class PlayRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayRequestDto" + } + ], + "description": "Class PlayRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Queue update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/SetPlaylistItem": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request to change playlist item in SyncPlay group.", + "operationId": "SyncPlaySetPlaylistItem", + "requestBody": { + "description": "The new item to play.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetPlaylistItemRequestDto" + } + ], + "description": "Class SetPlaylistItemRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetPlaylistItemRequestDto" + } + ], + "description": "Class SetPlaylistItemRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetPlaylistItemRequestDto" + } + ], + "description": "Class SetPlaylistItemRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Queue update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/SetRepeatMode": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request to set repeat mode in SyncPlay group.", + "operationId": "SyncPlaySetRepeatMode", + "requestBody": { + "description": "The new repeat mode.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetRepeatModeRequestDto" + } + ], + "description": "Class SetRepeatModeRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetRepeatModeRequestDto" + } + ], + "description": "Class SetRepeatModeRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetRepeatModeRequestDto" + } + ], + "description": "Class SetRepeatModeRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Play queue update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/SetShuffleMode": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request to set shuffle mode in SyncPlay group.", + "operationId": "SyncPlaySetShuffleMode", + "requestBody": { + "description": "The new shuffle mode.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetShuffleModeRequestDto" + } + ], + "description": "Class SetShuffleModeRequestDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetShuffleModeRequestDto" + } + ], + "description": "Class SetShuffleModeRequestDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SetShuffleModeRequestDto" + } + ], + "description": "Class SetShuffleModeRequestDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Play queue update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/Stop": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request stop in SyncPlay group.", + "operationId": "SyncPlayStop", + "responses": { + "204": { + "description": "Stop update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/SyncPlay/Unpause": { + "post": { + "tags": [ + "SyncPlay" + ], + "summary": "Request unpause in SyncPlay group.", + "operationId": "SyncPlayUnpause", + "responses": { + "204": { + "description": "Unpause update sent to all group members." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "SyncPlayIsInGroup", + "SyncPlayHasAccess" + ] + } + ] + } + }, + "/System/Endpoint": { + "get": { + "tags": [ + "System" + ], + "summary": "Gets information about the request endpoint.", + "operationId": "GetEndpointInfo", + "responses": { + "200": { + "description": "Information retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/EndPointInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/EndPointInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/EndPointInfo" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/System/Info": { + "get": { + "tags": [ + "System" + ], + "summary": "Gets information about the server.", + "operationId": "GetSystemInfo", + "responses": { + "200": { + "description": "Information retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SystemInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/SystemInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/SystemInfo" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "FirstTimeSetupOrIgnoreParentalControl" + ] + } + ] + } + }, + "/System/Info/Public": { + "get": { + "tags": [ + "System" + ], + "summary": "Gets public information about the server.", + "operationId": "GetPublicSystemInfo", + "responses": { + "200": { + "description": "Information retrieved.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PublicSystemInfo" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/PublicSystemInfo" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/PublicSystemInfo" + } + } + } + } + } + } + }, + "/System/Logs": { + "get": { + "tags": [ + "System" + ], + "summary": "Gets a list of available server log files.", + "operationId": "GetServerLogs", + "responses": { + "200": { + "description": "Information retrieved.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LogFile" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LogFile" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LogFile" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/System/Logs/Log": { + "get": { + "tags": [ + "System" + ], + "summary": "Gets a log file.", + "operationId": "GetLogFile", + "parameters": [ + { + "name": "name", + "in": "query", + "description": "The name of the log file to get.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Log file retrieved.", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/System/Ping": { + "get": { + "tags": [ + "System" + ], + "summary": "Pings the system.", + "operationId": "GetPingSystem", + "responses": { + "200": { + "description": "Information retrieved.", + "content": { + "application/json": { + "schema": { + "type": "string" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "string" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "string" + } + } + } + } + } + }, + "post": { + "tags": [ + "System" + ], + "summary": "Pings the system.", + "operationId": "PostPingSystem", + "responses": { + "200": { + "description": "Information retrieved.", + "content": { + "application/json": { + "schema": { + "type": "string" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "string" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/System/Restart": { + "post": { + "tags": [ + "System" + ], + "summary": "Restarts the application.", + "operationId": "RestartApplication", + "responses": { + "204": { + "description": "Server restarted." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "LocalAccessOrRequiresElevation" + ] + } + ] + } + }, + "/System/Shutdown": { + "post": { + "tags": [ + "System" + ], + "summary": "Shuts down the application.", + "operationId": "ShutdownApplication", + "responses": { + "204": { + "description": "Server shut down." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/System/WakeOnLanInfo": { + "get": { + "tags": [ + "System" + ], + "summary": "Gets wake on lan information.", + "operationId": "GetWakeOnLanInfo", + "responses": { + "200": { + "description": "Information retrieved.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WakeOnLanInfo" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WakeOnLanInfo" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WakeOnLanInfo" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "deprecated": true, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/GetUtcTime": { + "get": { + "tags": [ + "TimeSync" + ], + "summary": "Gets the current UTC time.", + "operationId": "GetUtcTime", + "responses": { + "200": { + "description": "Time returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UtcTimeResponse" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/UtcTimeResponse" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/UtcTimeResponse" + } + } + } + } + } + } + }, + "/Tmdb/ClientConfiguration": { + "get": { + "tags": [ + "Tmdb" + ], + "summary": "Gets the TMDb image configuration options.", + "operationId": "TmdbClientConfiguration", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ConfigImageTypes" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Trailers": { + "get": { + "tags": [ + "Trailers" + ], + "summary": "Finds movies and trailers similar to a given trailer.", + "operationId": "GetTrailers", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "The user id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "maxOfficialRating", + "in": "query", + "description": "Optional filter by maximum official rating (PG, PG-13, TV-MA, etc).", + "schema": { + "type": "string" + } + }, + { + "name": "hasThemeSong", + "in": "query", + "description": "Optional filter by items with theme songs.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasThemeVideo", + "in": "query", + "description": "Optional filter by items with theme videos.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasSubtitles", + "in": "query", + "description": "Optional filter by items with subtitles.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasSpecialFeature", + "in": "query", + "description": "Optional filter by items with special features.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasTrailer", + "in": "query", + "description": "Optional filter by items with trailers.", + "schema": { + "type": "boolean" + } + }, + { + "name": "adjacentTo", + "in": "query", + "description": "Optional. Return items that are siblings of a supplied item.", + "schema": { + "type": "string" + } + }, + { + "name": "parentIndexNumber", + "in": "query", + "description": "Optional filter by parent index number.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "hasParentalRating", + "in": "query", + "description": "Optional filter by items that have or do not have a parental rating.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isHd", + "in": "query", + "description": "Optional filter by items that are HD or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "is4K", + "in": "query", + "description": "Optional filter by items that are 4K or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "locationTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocationType" + } + } + }, + { + "name": "excludeLocationTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LocationType" + } + } + }, + { + "name": "isMissing", + "in": "query", + "description": "Optional filter by items that are missing episodes or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isUnaired", + "in": "query", + "description": "Optional filter by items that are unaired episodes or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "minCommunityRating", + "in": "query", + "description": "Optional filter by minimum community rating.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "minCriticRating", + "in": "query", + "description": "Optional filter by minimum critic rating.", + "schema": { + "type": "number", + "format": "double" + } + }, + { + "name": "minPremiereDate", + "in": "query", + "description": "Optional. The minimum premiere date. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "minDateLastSaved", + "in": "query", + "description": "Optional. The minimum last saved date. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "minDateLastSavedForUser", + "in": "query", + "description": "Optional. The minimum last saved date for the current user. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "maxPremiereDate", + "in": "query", + "description": "Optional. The maximum premiere date. Format = ISO.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "hasOverview", + "in": "query", + "description": "Optional filter by items that have an overview or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasImdbId", + "in": "query", + "description": "Optional filter by items that have an imdb id or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasTmdbId", + "in": "query", + "description": "Optional filter by items that have a tmdb id or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasTvdbId", + "in": "query", + "description": "Optional filter by items that have a tvdb id or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isMovie", + "in": "query", + "description": "Optional filter for live tv movies.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSeries", + "in": "query", + "description": "Optional filter for live tv series.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isNews", + "in": "query", + "description": "Optional filter for live tv news.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isKids", + "in": "query", + "description": "Optional filter for live tv kids.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isSports", + "in": "query", + "description": "Optional filter for live tv sports.", + "schema": { + "type": "boolean" + } + }, + { + "name": "excludeItemIds", + "in": "query", + "description": "Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "recursive", + "in": "query", + "description": "When searching within folders, this determines whether or not the search will be recursive. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "searchTerm", + "in": "query", + "description": "Optional. Filter based on a search term.", + "schema": { + "type": "string" + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Sort Order - Ascending,Descending.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + } + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "filters", + "in": "query", + "description": "Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFilter" + } + } + }, + { + "name": "isFavorite", + "in": "query", + "description": "Optional filter by items that are marked as favorite, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "mediaTypes", + "in": "query", + "description": "Optional filter by MediaType. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "imageTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "isPlayed", + "in": "query", + "description": "Optional filter by items that are played, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "genres", + "in": "query", + "description": "Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "officialRatings", + "in": "query", + "description": "Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "tags", + "in": "query", + "description": "Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "years", + "in": "query", + "description": "Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "integer", + "format": "int32" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional, include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional, the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "person", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified person.", + "schema": { + "type": "string" + } + }, + { + "name": "personIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified person id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "personTypes", + "in": "query", + "description": "Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "studios", + "in": "query", + "description": "Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "artists", + "in": "query", + "description": "Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "excludeArtistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "artistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified artist id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "albumArtistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified album artist id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "contributingArtistIds", + "in": "query", + "description": "Optional. If specified, results will be filtered to include only those containing the specified contributing artist id.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "albums", + "in": "query", + "description": "Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "albumIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "ids", + "in": "query", + "description": "Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "videoTypes", + "in": "query", + "description": "Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VideoType" + } + } + }, + { + "name": "minOfficialRating", + "in": "query", + "description": "Optional filter by minimum official rating (PG, PG-13, TV-MA, etc).", + "schema": { + "type": "string" + } + }, + { + "name": "isLocked", + "in": "query", + "description": "Optional filter by items that are locked.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isPlaceHolder", + "in": "query", + "description": "Optional filter by items that are placeholders.", + "schema": { + "type": "boolean" + } + }, + { + "name": "hasOfficialRating", + "in": "query", + "description": "Optional filter by items that have official ratings.", + "schema": { + "type": "boolean" + } + }, + { + "name": "collapseBoxSetItems", + "in": "query", + "description": "Whether or not to hide items behind their boxsets.", + "schema": { + "type": "boolean" + } + }, + { + "name": "minWidth", + "in": "query", + "description": "Optional. Filter by the minimum width of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minHeight", + "in": "query", + "description": "Optional. Filter by the minimum height of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. Filter by the maximum width of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. Filter by the maximum height of the item.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "is3D", + "in": "query", + "description": "Optional filter by items that are 3D, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "seriesStatus", + "in": "query", + "description": "Optional filter by Series Status. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SeriesStatus" + } + } + }, + { + "name": "nameStartsWithOrGreater", + "in": "query", + "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameStartsWith", + "in": "query", + "description": "Optional filter by items whose name is sorted equally than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "nameLessThan", + "in": "query", + "description": "Optional filter by items whose name is equally or lesser than a given input string.", + "schema": { + "type": "string" + } + }, + { + "name": "studioIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "genreIds", + "in": "query", + "description": "Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited.", + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Optional. Enable the total record count.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional, include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Shows/{seriesId}/Episodes": { + "get": { + "tags": [ + "TvShows" + ], + "summary": "Gets episodes for a tv season.", + "operationId": "GetEpisodes", + "parameters": [ + { + "name": "seriesId", + "in": "path", + "description": "The series id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "The user id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "season", + "in": "query", + "description": "Optional filter by season number.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "seasonId", + "in": "query", + "description": "Optional. Filter by season id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "isMissing", + "in": "query", + "description": "Optional. Filter by items that are missing episodes or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "adjacentTo", + "in": "query", + "description": "Optional. Return items that are siblings of a supplied item.", + "schema": { + "type": "string" + } + }, + { + "name": "startItemId", + "in": "query", + "description": "Optional. Skip through the list until a given item is found.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional, include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional, the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Shows/{seriesId}/Seasons": { + "get": { + "tags": [ + "TvShows" + ], + "summary": "Gets seasons for a tv series.", + "operationId": "GetSeasons", + "parameters": [ + { + "name": "seriesId", + "in": "path", + "description": "The series id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "The user id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "isSpecialSeason", + "in": "query", + "description": "Optional. Filter by special season.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isMissing", + "in": "query", + "description": "Optional. Filter by items that are missing episodes or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "adjacentTo", + "in": "query", + "description": "Optional. Return items that are siblings of a supplied item.", + "schema": { + "type": "string" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Shows/NextUp": { + "get": { + "tags": [ + "TvShows" + ], + "summary": "Gets a list of next up episodes.", + "operationId": "GetNextUp", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "The user id of the user to get the next up episodes for.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "seriesId", + "in": "query", + "description": "Optional. Filter by series id.", + "schema": { + "type": "string" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Optional. Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "nextUpDateCutoff", + "in": "query", + "description": "Optional. Starting date of shows to show in Next Up section.", + "schema": { + "type": "string", + "format": "date-time" + } + }, + { + "name": "enableTotalRecordCount", + "in": "query", + "description": "Whether to enable the total records count. Defaults to true.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "disableFirstEpisode", + "in": "query", + "description": "Whether to disable sending the first episode in a series as next up.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "enableRewatching", + "in": "query", + "description": "Whether to include watched episode in next up results.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Shows/Upcoming": { + "get": { + "tags": [ + "TvShows" + ], + "summary": "Gets a list of upcoming episodes.", + "operationId": "GetUpcomingEpisodes", + "parameters": [ + { + "name": "userId", + "in": "query", + "description": "The user id of the user to get the upcoming episodes for.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "startIndex", + "in": "query", + "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "parentId", + "in": "query", + "description": "Optional. Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Audio/{itemId}/universal": { + "get": { + "tags": [ + "UniversalAudio" + ], + "summary": "Gets an audio stream.", + "operationId": "GetUniversalAudioStream", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "query", + "description": "Optional. The audio container.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. The user id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. The audio codec to transcode to.", + "schema": { + "type": "string" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "transcodingAudioChannels", + "in": "query", + "description": "Optional. The number of how many audio channels to transcode to.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxStreamingBitrate", + "in": "query", + "description": "Optional. The maximum streaming bitrate.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "transcodingContainer", + "in": "query", + "description": "Optional. The container to transcode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodingProtocol", + "in": "query", + "description": "Optional. The transcoding protocol.", + "schema": { + "type": "string" + } + }, + { + "name": "maxAudioSampleRate", + "in": "query", + "description": "Optional. The maximum audio sample rate.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableRemoteMedia", + "in": "query", + "description": "Optional. Whether to enable remote media.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "enableRedirection", + "in": "query", + "description": "Whether to enable redirection. Defaults to true.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Audio stream returned.", + "content": { + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "302": { + "description": "Redirected to remote audio stream." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "head": { + "tags": [ + "UniversalAudio" + ], + "summary": "Gets an audio stream.", + "operationId": "HeadUniversalAudioStream", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "query", + "description": "Optional. The audio container.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. The user id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. The audio codec to transcode to.", + "schema": { + "type": "string" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "transcodingAudioChannels", + "in": "query", + "description": "Optional. The number of how many audio channels to transcode to.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxStreamingBitrate", + "in": "query", + "description": "Optional. The maximum streaming bitrate.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "transcodingContainer", + "in": "query", + "description": "Optional. The container to transcode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodingProtocol", + "in": "query", + "description": "Optional. The transcoding protocol.", + "schema": { + "type": "string" + } + }, + { + "name": "maxAudioSampleRate", + "in": "query", + "description": "Optional. The maximum audio sample rate.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableRemoteMedia", + "in": "query", + "description": "Optional. Whether to enable remote media.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "enableRedirection", + "in": "query", + "description": "Whether to enable redirection. Defaults to true.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Audio stream returned.", + "content": { + "audio/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "302": { + "description": "Redirected to remote audio stream." + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users": { + "get": { + "tags": [ + "User" + ], + "summary": "Gets a list of users.", + "operationId": "GetUsers", + "parameters": [ + { + "name": "isHidden", + "in": "query", + "description": "Optional filter by IsHidden=true or false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "isDisabled", + "in": "query", + "description": "Optional filter by IsDisabled=true or false.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Users returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/UserDto" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/UserDto" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/UserDto" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}": { + "get": { + "tags": [ + "User" + ], + "summary": "Gets a user by Id.", + "operationId": "GetUserById", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "User returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/UserDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/UserDto" + } + } + } + }, + "404": { + "description": "User not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "IgnoreParentalControl" + ] + } + ] + }, + "delete": { + "tags": [ + "User" + ], + "summary": "Deletes a user.", + "operationId": "DeleteUser", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "User deleted." + }, + "404": { + "description": "User not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + }, + "post": { + "tags": [ + "User" + ], + "summary": "Updates a user.", + "operationId": "UpdateUser", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "requestBody": { + "description": "The updated user model.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UserDto" + } + ], + "description": "Class UserDto." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UserDto" + } + ], + "description": "Class UserDto." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UserDto" + } + ], + "description": "Class UserDto." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "User updated." + }, + "400": { + "description": "User information was not supplied.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "403": { + "description": "User update forbidden.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Authenticate": { + "post": { + "tags": [ + "User" + ], + "summary": "Authenticates a user.", + "operationId": "AuthenticateUser", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "pw", + "in": "query", + "description": "The password as plain text.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "password", + "in": "query", + "description": "The password sha1-hash.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "User authenticated.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/AuthenticationResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/AuthenticationResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/AuthenticationResult" + } + } + } + }, + "403": { + "description": "Sha1-hashed password only is not allowed.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "404": { + "description": "User not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Users/{userId}/Configuration": { + "post": { + "tags": [ + "User" + ], + "summary": "Updates a user configuration.", + "operationId": "UpdateUserConfiguration", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "requestBody": { + "description": "The new user configuration.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UserConfiguration" + } + ], + "description": "Class UserConfiguration." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UserConfiguration" + } + ], + "description": "Class UserConfiguration." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UserConfiguration" + } + ], + "description": "Class UserConfiguration." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "User configuration updated." + }, + "403": { + "description": "User configuration update forbidden.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/EasyPassword": { + "post": { + "tags": [ + "User" + ], + "summary": "Updates a user's easy password.", + "operationId": "UpdateUserEasyPassword", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "requestBody": { + "description": "The M:Jellyfin.Api.Controllers.UserController.UpdateUserEasyPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserEasyPassword) request.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateUserEasyPassword" + } + ], + "description": "The update user easy password request body." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateUserEasyPassword" + } + ], + "description": "The update user easy password request body." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateUserEasyPassword" + } + ], + "description": "The update user easy password request body." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Password successfully reset." + }, + "403": { + "description": "User is not allowed to update the password.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "404": { + "description": "User not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Password": { + "post": { + "tags": [ + "User" + ], + "summary": "Updates a user's password.", + "operationId": "UpdateUserPassword", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "requestBody": { + "description": "The M:Jellyfin.Api.Controllers.UserController.UpdateUserPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserPassword) request.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateUserPassword" + } + ], + "description": "The update user password request body." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateUserPassword" + } + ], + "description": "The update user password request body." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UpdateUserPassword" + } + ], + "description": "The update user password request body." + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Password successfully reset." + }, + "403": { + "description": "User is not allowed to update the password.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "404": { + "description": "User not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Policy": { + "post": { + "tags": [ + "User" + ], + "summary": "Updates a user policy.", + "operationId": "UpdateUserPolicy", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "The user id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "requestBody": { + "description": "The new user policy.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UserPolicy" + } + ] + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UserPolicy" + } + ] + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/UserPolicy" + } + ] + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "User policy updated." + }, + "400": { + "description": "User policy was not supplied.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "403": { + "description": "User policy update forbidden.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Users/AuthenticateByName": { + "post": { + "tags": [ + "User" + ], + "summary": "Authenticates a user by name.", + "operationId": "AuthenticateUserByName", + "requestBody": { + "description": "The M:Jellyfin.Api.Controllers.UserController.AuthenticateUserByName(Jellyfin.Api.Models.UserDtos.AuthenticateUserByName) request.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AuthenticateUserByName" + } + ], + "description": "The authenticate user by name request body." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AuthenticateUserByName" + } + ], + "description": "The authenticate user by name request body." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/AuthenticateUserByName" + } + ], + "description": "The authenticate user by name request body." + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "User authenticated.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/AuthenticationResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/AuthenticationResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/AuthenticationResult" + } + } + } + } + } + } + }, + "/Users/AuthenticateWithQuickConnect": { + "post": { + "tags": [ + "User" + ], + "summary": "Authenticates a user with quick connect.", + "operationId": "AuthenticateWithQuickConnect", + "requestBody": { + "description": "The Jellyfin.Api.Models.UserDtos.QuickConnectDto request.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/QuickConnectDto" + } + ], + "description": "The quick connect request body." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/QuickConnectDto" + } + ], + "description": "The quick connect request body." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/QuickConnectDto" + } + ], + "description": "The quick connect request body." + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "User authenticated.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/AuthenticationResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/AuthenticationResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/AuthenticationResult" + } + } + } + }, + "400": { + "description": "Missing token." + } + } + } + }, + "/Users/ForgotPassword": { + "post": { + "tags": [ + "User" + ], + "summary": "Initiates the forgot password process for a local user.", + "operationId": "ForgotPassword", + "requestBody": { + "description": "The forgot password request containing the entered username.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ForgotPasswordDto" + } + ], + "description": "Forgot Password request body DTO." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ForgotPasswordDto" + } + ], + "description": "Forgot Password request body DTO." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ForgotPasswordDto" + } + ], + "description": "Forgot Password request body DTO." + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Password reset process started.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ForgotPasswordResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ForgotPasswordResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ForgotPasswordResult" + } + } + } + } + } + } + }, + "/Users/ForgotPassword/Pin": { + "post": { + "tags": [ + "User" + ], + "summary": "Redeems a forgot password pin.", + "operationId": "ForgotPasswordPin", + "requestBody": { + "description": "The forgot password pin request containing the entered pin.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ForgotPasswordPinDto" + } + ], + "description": "Forgot Password Pin enter request body DTO." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ForgotPasswordPinDto" + } + ], + "description": "Forgot Password Pin enter request body DTO." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/ForgotPasswordPinDto" + } + ], + "description": "Forgot Password Pin enter request body DTO." + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Pin reset process started.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PinRedeemResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/PinRedeemResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/PinRedeemResult" + } + } + } + } + } + } + }, + "/Users/Me": { + "get": { + "tags": [ + "User" + ], + "summary": "Gets the user based on auth token.", + "operationId": "GetCurrentUser", + "responses": { + "200": { + "description": "User returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/UserDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/UserDto" + } + } + } + }, + "400": { + "description": "Token is not owned by a user.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/New": { + "post": { + "tags": [ + "User" + ], + "summary": "Creates a user.", + "operationId": "CreateUserByName", + "requestBody": { + "description": "The create user by name request body.", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/CreateUserByName" + } + ], + "description": "The create user by name request body." + } + }, + "text/json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/CreateUserByName" + } + ], + "description": "The create user by name request body." + } + }, + "application/*+json": { + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/CreateUserByName" + } + ], + "description": "The create user by name request body." + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "User created.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/UserDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/UserDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Users/Public": { + "get": { + "tags": [ + "User" + ], + "summary": "Gets a list of publicly visible users for display on a login screen.", + "operationId": "GetPublicUsers", + "responses": { + "200": { + "description": "Public users returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/UserDto" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/UserDto" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/UserDto" + } + } + } + } + } + } + } + }, + "/Users/{userId}/FavoriteItems/{itemId}": { + "post": { + "tags": [ + "UserLibrary" + ], + "summary": "Marks an item as a favorite.", + "operationId": "MarkFavoriteItem", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Item marked as favorite.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "delete": { + "tags": [ + "UserLibrary" + ], + "summary": "Unmarks item as a favorite.", + "operationId": "UnmarkFavoriteItem", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Item unmarked as favorite.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Items/{itemId}": { + "get": { + "tags": [ + "UserLibrary" + ], + "summary": "Gets an item from a user's library.", + "operationId": "GetItem", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Item returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Items/{itemId}/Intros": { + "get": { + "tags": [ + "UserLibrary" + ], + "summary": "Gets intros to play before the main media item plays.", + "operationId": "GetIntros", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Intros returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Items/{itemId}/LocalTrailers": { + "get": { + "tags": [ + "UserLibrary" + ], + "summary": "Gets local trailers for an item.", + "operationId": "GetLocalTrailers", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "An Microsoft.AspNetCore.Mvc.OkResult containing the item's local trailers.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Items/{itemId}/Rating": { + "delete": { + "tags": [ + "UserLibrary" + ], + "summary": "Deletes a user's saved personal rating for an item.", + "operationId": "DeleteUserItemRating", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Personal rating removed.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + }, + "post": { + "tags": [ + "UserLibrary" + ], + "summary": "Updates a user's rating for an item.", + "operationId": "UpdateUserItemRating", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "likes", + "in": "query", + "description": "Whether this M:Jellyfin.Api.Controllers.UserLibraryController.UpdateUserItemRating(System.Guid,System.Guid,System.Nullable{System.Boolean}) is likes.", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "description": "Item rating updated.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/UserItemDataDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Items/{itemId}/SpecialFeatures": { + "get": { + "tags": [ + "UserLibrary" + ], + "summary": "Gets special features for an item.", + "operationId": "GetSpecialFeatures", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "itemId", + "in": "path", + "description": "Item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Special features returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Items/Latest": { + "get": { + "tags": [ + "UserLibrary" + ], + "summary": "Gets latest media.", + "operationId": "GetLatestMedia", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "isPlayed", + "in": "query", + "description": "Filter by items that are played, or not.", + "schema": { + "type": "boolean" + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. include image information in output.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. the max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "limit", + "in": "query", + "description": "Return item limit.", + "schema": { + "type": "integer", + "format": "int32", + "default": 20 + } + }, + { + "name": "groupItems", + "in": "query", + "description": "Whether or not to group items into a parent container.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Latest media returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Items/Root": { + "get": { + "tags": [ + "UserLibrary" + ], + "summary": "Gets the root folder from a user's library.", + "operationId": "GetRootFolder", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Root folder returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/GroupingOptions": { + "get": { + "tags": [ + "UserViews" + ], + "summary": "Get user view grouping options.", + "operationId": "GetGroupingOptions", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "User view grouping options returned.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SpecialViewOptionDto" + } + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SpecialViewOptionDto" + } + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SpecialViewOptionDto" + } + } + } + } + }, + "404": { + "description": "User not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Users/{userId}/Views": { + "get": { + "tags": [ + "UserViews" + ], + "summary": "Get user views.", + "operationId": "GetUserViews", + "parameters": [ + { + "name": "userId", + "in": "path", + "description": "User id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "includeExternalContent", + "in": "query", + "description": "Whether or not to include external views such as channels or live tv.", + "schema": { + "type": "boolean" + } + }, + { + "name": "presetViews", + "in": "query", + "description": "Preset views.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "includeHidden", + "in": "query", + "description": "Whether or not to include hidden content.", + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "User views returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Videos/{videoId}/{mediaSourceId}/Attachments/{index}": { + "get": { + "tags": [ + "VideoAttachments" + ], + "summary": "Get video attachment.", + "operationId": "GetAttachment", + "parameters": [ + { + "name": "videoId", + "in": "path", + "description": "Video ID.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "mediaSourceId", + "in": "path", + "description": "Media Source ID.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "index", + "in": "path", + "description": "Attachment Index.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + } + ], + "responses": { + "200": { + "description": "Attachment retrieved.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "404": { + "description": "Video or attachment not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/Videos/{itemId}/AdditionalParts": { + "get": { + "tags": [ + "Videos" + ], + "summary": "Gets additional parts for a video.", + "operationId": "GetAdditionalPart", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Additional parts returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Videos/{itemId}/AlternateSources": { + "delete": { + "tags": [ + "Videos" + ], + "summary": "Removes alternate video sources.", + "operationId": "DeleteAlternateSources", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "Alternate sources deleted." + }, + "404": { + "description": "Video not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Videos/{itemId}/stream": { + "get": { + "tags": [ + "Videos" + ], + "summary": "Gets a video stream.", + "operationId": "GetVideoStream", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "query", + "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", + "schema": { + "type": "string" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. The maximum horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. The maximum vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Video stream returned.", + "content": { + "video/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + }, + "head": { + "tags": [ + "Videos" + ], + "summary": "Gets a video stream.", + "operationId": "HeadVideoStream", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "query", + "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", + "schema": { + "type": "string" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. The maximum horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. The maximum vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Video stream returned.", + "content": { + "video/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/Videos/{itemId}/stream.{container}": { + "get": { + "tags": [ + "Videos" + ], + "summary": "Gets a video stream.", + "operationId": "GetVideoStreamByContainer", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "path", + "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. The maximum horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. The maximum vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Video stream returned.", + "content": { + "video/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + }, + "head": { + "tags": [ + "Videos" + ], + "summary": "Gets a video stream.", + "operationId": "HeadVideoStreamByContainer", + "parameters": [ + { + "name": "itemId", + "in": "path", + "description": "The item id.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "container", + "in": "path", + "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "static", + "in": "query", + "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "params", + "in": "query", + "description": "The streaming parameters.", + "schema": { + "type": "string" + } + }, + { + "name": "tag", + "in": "query", + "description": "The tag.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceProfileId", + "in": "query", + "description": "Optional. The dlna device profile id to utilize.", + "schema": { + "type": "string" + } + }, + { + "name": "playSessionId", + "in": "query", + "description": "The play session id.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentContainer", + "in": "query", + "description": "The segment container.", + "schema": { + "type": "string" + } + }, + { + "name": "segmentLength", + "in": "query", + "description": "The segment length.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "minSegments", + "in": "query", + "description": "The minimum number of segments.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "mediaSourceId", + "in": "query", + "description": "The media version id, if playing an alternate version.", + "schema": { + "type": "string" + } + }, + { + "name": "deviceId", + "in": "query", + "description": "The device id of the client requesting. Used to stop encoding processes when needed.", + "schema": { + "type": "string" + } + }, + { + "name": "audioCodec", + "in": "query", + "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", + "schema": { + "type": "string" + } + }, + { + "name": "enableAutoStreamCopy", + "in": "query", + "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowVideoStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the video stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "allowAudioStreamCopy", + "in": "query", + "description": "Whether or not to allow copying of the audio stream url.", + "schema": { + "type": "boolean" + } + }, + { + "name": "breakOnNonKeyFrames", + "in": "query", + "description": "Optional. Whether to break on non key frames.", + "schema": { + "type": "boolean" + } + }, + { + "name": "audioSampleRate", + "in": "query", + "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioBitDepth", + "in": "query", + "description": "Optional. The maximum audio bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioBitRate", + "in": "query", + "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "audioChannels", + "in": "query", + "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxAudioChannels", + "in": "query", + "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "profile", + "in": "query", + "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", + "schema": { + "type": "string" + } + }, + { + "name": "level", + "in": "query", + "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", + "schema": { + "type": "string" + } + }, + { + "name": "framerate", + "in": "query", + "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "maxFramerate", + "in": "query", + "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", + "schema": { + "type": "number", + "format": "float" + } + }, + { + "name": "copyTimestamps", + "in": "query", + "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", + "schema": { + "type": "boolean" + } + }, + { + "name": "startTimeTicks", + "in": "query", + "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", + "schema": { + "type": "integer", + "format": "int64" + } + }, + { + "name": "width", + "in": "query", + "description": "Optional. The fixed horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "height", + "in": "query", + "description": "Optional. The fixed vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxWidth", + "in": "query", + "description": "Optional. The maximum horizontal resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxHeight", + "in": "query", + "description": "Optional. The maximum vertical resolution of the encoded video.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoBitRate", + "in": "query", + "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleStreamIndex", + "in": "query", + "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "subtitleMethod", + "in": "query", + "description": "Optional. Specify the subtitle delivery method.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ] + } + }, + { + "name": "maxRefFrames", + "in": "query", + "description": "Optional.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "maxVideoBitDepth", + "in": "query", + "description": "Optional. The maximum video bit depth.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "requireAvc", + "in": "query", + "description": "Optional. Whether to require avc.", + "schema": { + "type": "boolean" + } + }, + { + "name": "deInterlace", + "in": "query", + "description": "Optional. Whether to deinterlace the video.", + "schema": { + "type": "boolean" + } + }, + { + "name": "requireNonAnamorphic", + "in": "query", + "description": "Optional. Whether to require a non anamorphic stream.", + "schema": { + "type": "boolean" + } + }, + { + "name": "transcodingMaxAudioChannels", + "in": "query", + "description": "Optional. The maximum number of audio channels to transcode.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "cpuCoreLimit", + "in": "query", + "description": "Optional. The limit of how many cpu cores to use.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "liveStreamId", + "in": "query", + "description": "The live stream id.", + "schema": { + "type": "string" + } + }, + { + "name": "enableMpegtsM2TsMode", + "in": "query", + "description": "Optional. Whether to enable the MpegtsM2Ts mode.", + "schema": { + "type": "boolean" + } + }, + { + "name": "videoCodec", + "in": "query", + "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", + "schema": { + "type": "string" + } + }, + { + "name": "subtitleCodec", + "in": "query", + "description": "Optional. Specify a subtitle codec to encode to.", + "schema": { + "type": "string" + } + }, + { + "name": "transcodeReasons", + "in": "query", + "description": "Optional. The transcoding reason.", + "schema": { + "type": "string" + } + }, + { + "name": "audioStreamIndex", + "in": "query", + "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "videoStreamIndex", + "in": "query", + "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "context", + "in": "query", + "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", + "schema": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ] + } + }, + { + "name": "streamOptions", + "in": "query", + "description": "Optional. The streaming options.", + "schema": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + } + ], + "responses": { + "200": { + "description": "Video stream returned.", + "content": { + "video/*": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + } + }, + "/Videos/MergeVersions": { + "post": { + "tags": [ + "Videos" + ], + "summary": "Merges videos into a single record.", + "operationId": "MergeVersions", + "parameters": [ + { + "name": "ids", + "in": "query", + "description": "Item id list. This allows multiple, comma delimited.", + "required": true, + "schema": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + } + ], + "responses": { + "204": { + "description": "Videos merged." + }, + "400": { + "description": "Supply at least 2 video ids.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "RequiresElevation" + ] + } + ] + } + }, + "/Years": { + "get": { + "tags": [ + "Years" + ], + "summary": "Get years.", + "operationId": "GetYears", + "parameters": [ + { + "name": "startIndex", + "in": "query", + "description": "Skips over a given number of items within the results. Use for paging.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "limit", + "in": "query", + "description": "Optional. The maximum number of records to return.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "sortOrder", + "in": "query", + "description": "Sort Order - Ascending,Descending.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + } + } + }, + { + "name": "parentId", + "in": "query", + "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "fields", + "in": "query", + "description": "Optional. Specify additional fields of information to return in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + } + } + }, + { + "name": "excludeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be excluded based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "includeItemTypes", + "in": "query", + "description": "Optional. If specified, results will be included based on item type. This allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemKind" + } + } + }, + { + "name": "mediaTypes", + "in": "query", + "description": "Optional. Filter by MediaType. Allows multiple, comma delimited.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "sortBy", + "in": "query", + "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "enableUserData", + "in": "query", + "description": "Optional. Include user data.", + "schema": { + "type": "boolean" + } + }, + { + "name": "imageTypeLimit", + "in": "query", + "description": "Optional. The max number of images to return, per image type.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "enableImageTypes", + "in": "query", + "description": "Optional. The image types to include in the output.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + } + } + }, + { + "name": "userId", + "in": "query", + "description": "User Id.", + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "recursive", + "in": "query", + "description": "Search recursively.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableImages", + "in": "query", + "description": "Optional. Include image information in output.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Year query returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDtoQueryResult" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + }, + "/Years/{year}": { + "get": { + "tags": [ + "Years" + ], + "summary": "Gets a year.", + "operationId": "GetYear", + "parameters": [ + { + "name": "year", + "in": "path", + "description": "The year.", + "required": true, + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "userId", + "in": "query", + "description": "Optional. Filter by user id, and attach user data.", + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Year returned.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/BaseItemDto" + } + } + } + }, + "404": { + "description": "Year not found.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"CamelCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + }, + "application/json; profile=\"PascalCase\"": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "CustomAuthentication": [ + "DefaultAuthorization" + ] + } + ] + } + } + }, + "components": { + "schemas": { + "AccessSchedule": { + "type": "object", + "properties": { + "Id": { + "type": "integer", + "description": "Gets the id of this instance.", + "format": "int32", + "readOnly": true + }, + "UserId": { + "type": "string", + "description": "Gets the id of the associated user.", + "format": "uuid" + }, + "DayOfWeek": { + "allOf": [ + { + "$ref": "#/components/schemas/DynamicDayOfWeek" + } + ], + "description": "Gets or sets the day of week." + }, + "StartHour": { + "type": "number", + "description": "Gets or sets the start hour.", + "format": "double" + }, + "EndHour": { + "type": "number", + "description": "Gets or sets the end hour.", + "format": "double" + } + }, + "additionalProperties": false, + "description": "An entity representing a user's access schedule." + }, + "ActivityLogEntry": { + "type": "object", + "properties": { + "Id": { + "type": "integer", + "description": "Gets or sets the identifier.", + "format": "int64" + }, + "Name": { + "type": "string", + "description": "Gets or sets the name." + }, + "Overview": { + "type": "string", + "description": "Gets or sets the overview.", + "nullable": true + }, + "ShortOverview": { + "type": "string", + "description": "Gets or sets the short overview.", + "nullable": true + }, + "Type": { + "type": "string", + "description": "Gets or sets the type." + }, + "ItemId": { + "type": "string", + "description": "Gets or sets the item identifier.", + "nullable": true + }, + "Date": { + "type": "string", + "description": "Gets or sets the date.", + "format": "date-time" + }, + "UserId": { + "type": "string", + "description": "Gets or sets the user identifier.", + "format": "uuid" + }, + "UserPrimaryImageTag": { + "type": "string", + "description": "Gets or sets the user primary image tag.", + "nullable": true, + "deprecated": true + }, + "Severity": { + "allOf": [ + { + "$ref": "#/components/schemas/LogLevel" + } + ], + "description": "Gets or sets the log severity." + } + }, + "additionalProperties": false, + "description": "An activity log entry." + }, + "ActivityLogEntryQueryResult": { + "type": "object", + "properties": { + "Items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ActivityLogEntry" + }, + "description": "Gets or sets the items.", + "nullable": true + }, + "TotalRecordCount": { + "type": "integer", + "description": "Gets or sets the total number of records available.", + "format": "int32" + }, + "StartIndex": { + "type": "integer", + "description": "Gets or sets the index of the first record in Items.", + "format": "int32" + } + }, + "additionalProperties": false + }, + "AddVirtualFolderDto": { + "type": "object", + "properties": { + "LibraryOptions": { + "allOf": [ + { + "$ref": "#/components/schemas/LibraryOptions" + } + ], + "description": "Gets or sets library options.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Add virtual folder dto." + }, + "AdminNotificationDto": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the notification name.", + "nullable": true + }, + "Description": { + "type": "string", + "description": "Gets or sets the notification description.", + "nullable": true + }, + "NotificationLevel": { + "allOf": [ + { + "$ref": "#/components/schemas/NotificationLevel" + } + ], + "description": "Gets or sets the notification level.", + "nullable": true + }, + "Url": { + "type": "string", + "description": "Gets or sets the notification url.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "The admin notification dto." + }, + "AlbumInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "description": "Gets or sets the original title.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "MetadataLanguage": { + "type": "string", + "description": "Gets or sets the metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "Year": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "IsAutomated": { + "type": "boolean" + }, + "AlbumArtists": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the album artist." + }, + "ArtistProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the artist provider ids." + }, + "SongInfos": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SongInfo" + } + } + }, + "additionalProperties": false + }, + "AlbumInfoRemoteSearchQuery": { + "type": "object", + "properties": { + "SearchInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/AlbumInfo" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "format": "uuid" + }, + "SearchProviderName": { + "type": "string", + "description": "Gets or sets the provider name to search within if set.", + "nullable": true + }, + "IncludeDisabledProviders": { + "type": "boolean", + "description": "Gets or sets a value indicating whether disabled providers should be included." + } + }, + "additionalProperties": false + }, + "AllThemeMediaResult": { + "type": "object", + "properties": { + "ThemeVideosResult": { + "allOf": [ + { + "$ref": "#/components/schemas/ThemeMediaResult" + } + ], + "description": "Class ThemeMediaResult.", + "nullable": true + }, + "ThemeSongsResult": { + "allOf": [ + { + "$ref": "#/components/schemas/ThemeMediaResult" + } + ], + "description": "Class ThemeMediaResult.", + "nullable": true + }, + "SoundtrackSongsResult": { + "allOf": [ + { + "$ref": "#/components/schemas/ThemeMediaResult" + } + ], + "description": "Class ThemeMediaResult.", + "nullable": true + } + }, + "additionalProperties": false + }, + "Architecture": { + "enum": [ + "X86", + "X64", + "Arm", + "Arm64", + "Wasm", + "S390x" + ], + "type": "string" + }, + "ArtistInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "description": "Gets or sets the original title.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "MetadataLanguage": { + "type": "string", + "description": "Gets or sets the metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "Year": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "IsAutomated": { + "type": "boolean" + }, + "SongInfos": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SongInfo" + } + } + }, + "additionalProperties": false + }, + "ArtistInfoRemoteSearchQuery": { + "type": "object", + "properties": { + "SearchInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/ArtistInfo" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "format": "uuid" + }, + "SearchProviderName": { + "type": "string", + "description": "Gets or sets the provider name to search within if set.", + "nullable": true + }, + "IncludeDisabledProviders": { + "type": "boolean", + "description": "Gets or sets a value indicating whether disabled providers should be included." + } + }, + "additionalProperties": false + }, + "AuthenticateUserByName": { + "type": "object", + "properties": { + "Username": { + "type": "string", + "description": "Gets or sets the username.", + "nullable": true + }, + "Pw": { + "type": "string", + "description": "Gets or sets the plain text password.", + "nullable": true + }, + "Password": { + "type": "string", + "description": "Gets or sets the sha1-hashed password.", + "nullable": true, + "deprecated": true + } + }, + "additionalProperties": false, + "description": "The authenticate user by name request body." + }, + "AuthenticationInfo": { + "type": "object", + "properties": { + "Id": { + "type": "integer", + "description": "Gets or sets the identifier.", + "format": "int64" + }, + "AccessToken": { + "type": "string", + "description": "Gets or sets the access token.", + "nullable": true + }, + "DeviceId": { + "type": "string", + "description": "Gets or sets the device identifier.", + "nullable": true + }, + "AppName": { + "type": "string", + "description": "Gets or sets the name of the application.", + "nullable": true + }, + "AppVersion": { + "type": "string", + "description": "Gets or sets the application version.", + "nullable": true + }, + "DeviceName": { + "type": "string", + "description": "Gets or sets the name of the device.", + "nullable": true + }, + "UserId": { + "type": "string", + "description": "Gets or sets the user identifier.", + "format": "uuid" + }, + "IsActive": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is active." + }, + "DateCreated": { + "type": "string", + "description": "Gets or sets the date created.", + "format": "date-time" + }, + "DateRevoked": { + "type": "string", + "description": "Gets or sets the date revoked.", + "format": "date-time", + "nullable": true + }, + "DateLastActivity": { + "type": "string", + "format": "date-time" + }, + "UserName": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AuthenticationInfoQueryResult": { + "type": "object", + "properties": { + "Items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AuthenticationInfo" + }, + "description": "Gets or sets the items.", + "nullable": true + }, + "TotalRecordCount": { + "type": "integer", + "description": "Gets or sets the total number of records available.", + "format": "int32" + }, + "StartIndex": { + "type": "integer", + "description": "Gets or sets the index of the first record in Items.", + "format": "int32" + } + }, + "additionalProperties": false + }, + "AuthenticationResult": { + "type": "object", + "properties": { + "User": { + "allOf": [ + { + "$ref": "#/components/schemas/UserDto" + } + ], + "description": "Class UserDto.", + "nullable": true + }, + "SessionInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/SessionInfo" + } + ], + "description": "Class SessionInfo.", + "nullable": true + }, + "AccessToken": { + "type": "string", + "nullable": true + }, + "ServerId": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "BaseItem": { + "type": "object", + "properties": { + "Size": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "Container": { + "type": "string", + "nullable": true + }, + "IsHD": { + "type": "boolean", + "readOnly": true + }, + "IsShortcut": { + "type": "boolean" + }, + "ShortcutPath": { + "type": "string", + "nullable": true + }, + "Width": { + "type": "integer", + "format": "int32" + }, + "Height": { + "type": "integer", + "format": "int32" + }, + "ExtraIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "DateLastSaved": { + "type": "string", + "format": "date-time" + }, + "RemoteTrailers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MediaUrl" + }, + "description": "Gets or sets the remote trailers.", + "nullable": true + }, + "SupportsExternalTransfer": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false, + "description": "Class BaseItem." + }, + "BaseItemDto": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "nullable": true + }, + "ServerId": { + "type": "string", + "description": "Gets or sets the server identifier.", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the id.", + "format": "uuid" + }, + "Etag": { + "type": "string", + "description": "Gets or sets the etag.", + "nullable": true + }, + "SourceType": { + "type": "string", + "description": "Gets or sets the type of the source.", + "nullable": true + }, + "PlaylistItemId": { + "type": "string", + "description": "Gets or sets the playlist item identifier.", + "nullable": true + }, + "DateCreated": { + "type": "string", + "description": "Gets or sets the date created.", + "format": "date-time", + "nullable": true + }, + "DateLastMediaAdded": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "ExtraType": { + "type": "string", + "nullable": true + }, + "AirsBeforeSeasonNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "AirsAfterSeasonNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "AirsBeforeEpisodeNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "CanDelete": { + "type": "boolean", + "nullable": true + }, + "CanDownload": { + "type": "boolean", + "nullable": true + }, + "HasSubtitles": { + "type": "boolean", + "nullable": true + }, + "PreferredMetadataLanguage": { + "type": "string", + "nullable": true + }, + "PreferredMetadataCountryCode": { + "type": "string", + "nullable": true + }, + "SupportsSync": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [supports synchronize].", + "nullable": true + }, + "Container": { + "type": "string", + "nullable": true + }, + "SortName": { + "type": "string", + "description": "Gets or sets the name of the sort.", + "nullable": true + }, + "ForcedSortName": { + "type": "string", + "nullable": true + }, + "Video3DFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Video3DFormat" + } + ], + "description": "Gets or sets the video3 D format.", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "description": "Gets or sets the premiere date.", + "format": "date-time", + "nullable": true + }, + "ExternalUrls": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalUrl" + }, + "description": "Gets or sets the external urls.", + "nullable": true + }, + "MediaSources": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MediaSourceInfo" + }, + "description": "Gets or sets the media versions.", + "nullable": true + }, + "CriticRating": { + "type": "number", + "description": "Gets or sets the critic rating.", + "format": "float", + "nullable": true + }, + "ProductionLocations": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "EnableMediaSourceDisplay": { + "type": "boolean", + "nullable": true + }, + "OfficialRating": { + "type": "string", + "description": "Gets or sets the official rating.", + "nullable": true + }, + "CustomRating": { + "type": "string", + "description": "Gets or sets the custom rating.", + "nullable": true + }, + "ChannelId": { + "type": "string", + "description": "Gets or sets the channel identifier.", + "format": "uuid", + "nullable": true + }, + "ChannelName": { + "type": "string", + "nullable": true + }, + "Overview": { + "type": "string", + "description": "Gets or sets the overview.", + "nullable": true + }, + "Taglines": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the taglines.", + "nullable": true + }, + "Genres": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the genres.", + "nullable": true + }, + "CommunityRating": { + "type": "number", + "description": "Gets or sets the community rating.", + "format": "float", + "nullable": true + }, + "CumulativeRunTimeTicks": { + "type": "integer", + "description": "Gets or sets the cumulative run time ticks.", + "format": "int64", + "nullable": true + }, + "RunTimeTicks": { + "type": "integer", + "description": "Gets or sets the run time ticks.", + "format": "int64", + "nullable": true + }, + "PlayAccess": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayAccess" + } + ], + "description": "Gets or sets the play access.", + "nullable": true + }, + "AspectRatio": { + "type": "string", + "description": "Gets or sets the aspect ratio.", + "nullable": true + }, + "ProductionYear": { + "type": "integer", + "description": "Gets or sets the production year.", + "format": "int32", + "nullable": true + }, + "IsPlaceHolder": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is place holder.", + "nullable": true + }, + "Number": { + "type": "string", + "description": "Gets or sets the number.", + "nullable": true + }, + "ChannelNumber": { + "type": "string", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "description": "Gets or sets the index number.", + "format": "int32", + "nullable": true + }, + "IndexNumberEnd": { + "type": "integer", + "description": "Gets or sets the index number end.", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "description": "Gets or sets the parent index number.", + "format": "int32", + "nullable": true + }, + "RemoteTrailers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MediaUrl" + }, + "description": "Gets or sets the trailer urls.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "IsHD": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is HD.", + "nullable": true + }, + "IsFolder": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is folder.", + "nullable": true + }, + "ParentId": { + "type": "string", + "description": "Gets or sets the parent id.", + "format": "uuid", + "nullable": true + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemKind" + } + ], + "description": "Gets or sets the type." + }, + "People": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemPerson" + }, + "description": "Gets or sets the people.", + "nullable": true + }, + "Studios": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameGuidPair" + }, + "description": "Gets or sets the studios.", + "nullable": true + }, + "GenreItems": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameGuidPair" + }, + "nullable": true + }, + "ParentLogoItemId": { + "type": "string", + "description": "Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one.", + "format": "uuid", + "nullable": true + }, + "ParentBackdropItemId": { + "type": "string", + "description": "Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one.", + "format": "uuid", + "nullable": true + }, + "ParentBackdropImageTags": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the parent backdrop image tags.", + "nullable": true + }, + "LocalTrailerCount": { + "type": "integer", + "description": "Gets or sets the local trailer count.", + "format": "int32", + "nullable": true + }, + "UserData": { + "allOf": [ + { + "$ref": "#/components/schemas/UserItemDataDto" + } + ], + "description": "Gets or sets the user data for this item based on the user it's being requested for.", + "nullable": true + }, + "RecursiveItemCount": { + "type": "integer", + "description": "Gets or sets the recursive item count.", + "format": "int32", + "nullable": true + }, + "ChildCount": { + "type": "integer", + "description": "Gets or sets the child count.", + "format": "int32", + "nullable": true + }, + "SeriesName": { + "type": "string", + "description": "Gets or sets the name of the series.", + "nullable": true + }, + "SeriesId": { + "type": "string", + "description": "Gets or sets the series id.", + "format": "uuid", + "nullable": true + }, + "SeasonId": { + "type": "string", + "description": "Gets or sets the season identifier.", + "format": "uuid", + "nullable": true + }, + "SpecialFeatureCount": { + "type": "integer", + "description": "Gets or sets the special feature count.", + "format": "int32", + "nullable": true + }, + "DisplayPreferencesId": { + "type": "string", + "description": "Gets or sets the display preferences id.", + "nullable": true + }, + "Status": { + "type": "string", + "description": "Gets or sets the status.", + "nullable": true + }, + "AirTime": { + "type": "string", + "description": "Gets or sets the air time.", + "nullable": true + }, + "AirDays": { + "type": "array", + "items": { + "$ref": "#/components/schemas/DayOfWeek" + }, + "description": "Gets or sets the air days.", + "nullable": true + }, + "Tags": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the tags.", + "nullable": true + }, + "PrimaryImageAspectRatio": { + "type": "number", + "description": "Gets or sets the primary image aspect ratio, after image enhancements.", + "format": "double", + "nullable": true + }, + "Artists": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the artists.", + "nullable": true + }, + "ArtistItems": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameGuidPair" + }, + "description": "Gets or sets the artist items.", + "nullable": true + }, + "Album": { + "type": "string", + "description": "Gets or sets the album.", + "nullable": true + }, + "CollectionType": { + "type": "string", + "description": "Gets or sets the type of the collection.", + "nullable": true + }, + "DisplayOrder": { + "type": "string", + "description": "Gets or sets the display order.", + "nullable": true + }, + "AlbumId": { + "type": "string", + "description": "Gets or sets the album id.", + "format": "uuid", + "nullable": true + }, + "AlbumPrimaryImageTag": { + "type": "string", + "description": "Gets or sets the album image tag.", + "nullable": true + }, + "SeriesPrimaryImageTag": { + "type": "string", + "description": "Gets or sets the series primary image tag.", + "nullable": true + }, + "AlbumArtist": { + "type": "string", + "description": "Gets or sets the album artist.", + "nullable": true + }, + "AlbumArtists": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameGuidPair" + }, + "description": "Gets or sets the album artists.", + "nullable": true + }, + "SeasonName": { + "type": "string", + "description": "Gets or sets the name of the season.", + "nullable": true + }, + "MediaStreams": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MediaStream" + }, + "description": "Gets or sets the media streams.", + "nullable": true + }, + "VideoType": { + "allOf": [ + { + "$ref": "#/components/schemas/VideoType" + } + ], + "description": "Gets or sets the type of the video.", + "nullable": true + }, + "PartCount": { + "type": "integer", + "description": "Gets or sets the part count.", + "format": "int32", + "nullable": true + }, + "MediaSourceCount": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ImageTags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Gets or sets the image tags.", + "nullable": true + }, + "BackdropImageTags": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the backdrop image tags.", + "nullable": true + }, + "ScreenshotImageTags": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the screenshot image tags.", + "nullable": true + }, + "ParentLogoImageTag": { + "type": "string", + "description": "Gets or sets the parent logo image tag.", + "nullable": true + }, + "ParentArtItemId": { + "type": "string", + "description": "Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one.", + "format": "uuid", + "nullable": true + }, + "ParentArtImageTag": { + "type": "string", + "description": "Gets or sets the parent art image tag.", + "nullable": true + }, + "SeriesThumbImageTag": { + "type": "string", + "description": "Gets or sets the series thumb image tag.", + "nullable": true + }, + "ImageBlurHashes": { + "type": "object", + "properties": { + "Primary": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Art": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Backdrop": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Banner": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Logo": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Thumb": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Disc": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Box": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Screenshot": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Menu": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Chapter": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "BoxRear": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Profile": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "description": "Gets or sets the blurhashes for the image tags.\r\nMaps image type to dictionary mapping image tag to blurhash value.", + "nullable": true + }, + "SeriesStudio": { + "type": "string", + "description": "Gets or sets the series studio.", + "nullable": true + }, + "ParentThumbItemId": { + "type": "string", + "description": "Gets or sets the parent thumb item id.", + "format": "uuid", + "nullable": true + }, + "ParentThumbImageTag": { + "type": "string", + "description": "Gets or sets the parent thumb image tag.", + "nullable": true + }, + "ParentPrimaryImageItemId": { + "type": "string", + "description": "Gets or sets the parent primary image item identifier.", + "nullable": true + }, + "ParentPrimaryImageTag": { + "type": "string", + "description": "Gets or sets the parent primary image tag.", + "nullable": true + }, + "Chapters": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChapterInfo" + }, + "description": "Gets or sets the chapters.", + "nullable": true + }, + "LocationType": { + "allOf": [ + { + "$ref": "#/components/schemas/LocationType" + } + ], + "description": "Gets or sets the type of the location.", + "nullable": true + }, + "IsoType": { + "allOf": [ + { + "$ref": "#/components/schemas/IsoType" + } + ], + "description": "Gets or sets the type of the iso.", + "nullable": true + }, + "MediaType": { + "type": "string", + "description": "Gets or sets the type of the media.", + "nullable": true + }, + "EndDate": { + "type": "string", + "description": "Gets or sets the end date.", + "format": "date-time", + "nullable": true + }, + "LockedFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MetadataField" + }, + "description": "Gets or sets the locked fields.", + "nullable": true + }, + "TrailerCount": { + "type": "integer", + "description": "Gets or sets the trailer count.", + "format": "int32", + "nullable": true + }, + "MovieCount": { + "type": "integer", + "description": "Gets or sets the movie count.", + "format": "int32", + "nullable": true + }, + "SeriesCount": { + "type": "integer", + "description": "Gets or sets the series count.", + "format": "int32", + "nullable": true + }, + "ProgramCount": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "EpisodeCount": { + "type": "integer", + "description": "Gets or sets the episode count.", + "format": "int32", + "nullable": true + }, + "SongCount": { + "type": "integer", + "description": "Gets or sets the song count.", + "format": "int32", + "nullable": true + }, + "AlbumCount": { + "type": "integer", + "description": "Gets or sets the album count.", + "format": "int32", + "nullable": true + }, + "ArtistCount": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "MusicVideoCount": { + "type": "integer", + "description": "Gets or sets the music video count.", + "format": "int32", + "nullable": true + }, + "LockData": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [enable internet providers].", + "nullable": true + }, + "Width": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "Height": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "CameraMake": { + "type": "string", + "nullable": true + }, + "CameraModel": { + "type": "string", + "nullable": true + }, + "Software": { + "type": "string", + "nullable": true + }, + "ExposureTime": { + "type": "number", + "format": "double", + "nullable": true + }, + "FocalLength": { + "type": "number", + "format": "double", + "nullable": true + }, + "ImageOrientation": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageOrientation" + } + ], + "nullable": true + }, + "Aperture": { + "type": "number", + "format": "double", + "nullable": true + }, + "ShutterSpeed": { + "type": "number", + "format": "double", + "nullable": true + }, + "Latitude": { + "type": "number", + "format": "double", + "nullable": true + }, + "Longitude": { + "type": "number", + "format": "double", + "nullable": true + }, + "Altitude": { + "type": "number", + "format": "double", + "nullable": true + }, + "IsoSpeedRating": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "SeriesTimerId": { + "type": "string", + "description": "Gets or sets the series timer identifier.", + "nullable": true + }, + "ProgramId": { + "type": "string", + "description": "Gets or sets the program identifier.", + "nullable": true + }, + "ChannelPrimaryImageTag": { + "type": "string", + "description": "Gets or sets the channel primary image tag.", + "nullable": true + }, + "StartDate": { + "type": "string", + "description": "Gets or sets the start date of the recording, in UTC.", + "format": "date-time", + "nullable": true + }, + "CompletionPercentage": { + "type": "number", + "description": "Gets or sets the completion percentage.", + "format": "double", + "nullable": true + }, + "IsRepeat": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is repeat.", + "nullable": true + }, + "EpisodeTitle": { + "type": "string", + "description": "Gets or sets the episode title.", + "nullable": true + }, + "ChannelType": { + "allOf": [ + { + "$ref": "#/components/schemas/ChannelType" + } + ], + "description": "Gets or sets the type of the channel.", + "nullable": true + }, + "Audio": { + "allOf": [ + { + "$ref": "#/components/schemas/ProgramAudio" + } + ], + "description": "Gets or sets the audio.", + "nullable": true + }, + "IsMovie": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is movie.", + "nullable": true + }, + "IsSports": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is sports.", + "nullable": true + }, + "IsSeries": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is series.", + "nullable": true + }, + "IsLive": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is live.", + "nullable": true + }, + "IsNews": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is news.", + "nullable": true + }, + "IsKids": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is kids.", + "nullable": true + }, + "IsPremiere": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is premiere.", + "nullable": true + }, + "TimerId": { + "type": "string", + "description": "Gets or sets the timer identifier.", + "nullable": true + }, + "CurrentProgram": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemDto" + } + ], + "description": "Gets or sets the current program.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client." + }, + "BaseItemDtoQueryResult": { + "type": "object", + "properties": { + "Items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + }, + "description": "Gets or sets the items.", + "nullable": true + }, + "TotalRecordCount": { + "type": "integer", + "description": "Gets or sets the total number of records available.", + "format": "int32" + }, + "StartIndex": { + "type": "integer", + "description": "Gets or sets the index of the first record in Items.", + "format": "int32" + } + }, + "additionalProperties": false + }, + "BaseItemKind": { + "enum": [ + "AggregateFolder", + "Audio", + "AudioBook", + "BasePluginFolder", + "Book", + "BoxSet", + "Channel", + "ChannelFolderItem", + "CollectionFolder", + "Episode", + "Folder", + "Genre", + "ManualPlaylistsFolder", + "Movie", + "LiveTvChannel", + "LiveTvProgram", + "MusicAlbum", + "MusicArtist", + "MusicGenre", + "MusicVideo", + "Person", + "Photo", + "PhotoAlbum", + "Playlist", + "PlaylistsFolder", + "Program", + "Recording", + "Season", + "Series", + "Studio", + "Trailer", + "TvChannel", + "TvProgram", + "UserRootFolder", + "UserView", + "Video", + "Year" + ], + "type": "string", + "description": "The base item kind." + }, + "BaseItemPerson": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the identifier.", + "format": "uuid" + }, + "Role": { + "type": "string", + "description": "Gets or sets the role.", + "nullable": true + }, + "Type": { + "type": "string", + "description": "Gets or sets the type.", + "nullable": true + }, + "PrimaryImageTag": { + "type": "string", + "description": "Gets or sets the primary image tag.", + "nullable": true + }, + "ImageBlurHashes": { + "type": "object", + "properties": { + "Primary": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Art": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Backdrop": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Banner": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Logo": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Thumb": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Disc": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Box": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Screenshot": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Menu": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Chapter": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "BoxRear": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "Profile": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "description": "Gets or sets the primary image blurhash.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "This is used by the api to get information about a Person within a BaseItem." + }, + "BasePluginConfiguration": { + "type": "object", + "additionalProperties": false, + "description": "Class BasePluginConfiguration." + }, + "BookInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "description": "Gets or sets the original title.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "MetadataLanguage": { + "type": "string", + "description": "Gets or sets the metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "Year": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "IsAutomated": { + "type": "boolean" + }, + "SeriesName": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "BookInfoRemoteSearchQuery": { + "type": "object", + "properties": { + "SearchInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/BookInfo" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "format": "uuid" + }, + "SearchProviderName": { + "type": "string", + "description": "Gets or sets the provider name to search within if set.", + "nullable": true + }, + "IncludeDisabledProviders": { + "type": "boolean", + "description": "Gets or sets a value indicating whether disabled providers should be included." + } + }, + "additionalProperties": false + }, + "BoxSetInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "description": "Gets or sets the original title.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "MetadataLanguage": { + "type": "string", + "description": "Gets or sets the metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "Year": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "IsAutomated": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "BoxSetInfoRemoteSearchQuery": { + "type": "object", + "properties": { + "SearchInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/BoxSetInfo" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "format": "uuid" + }, + "SearchProviderName": { + "type": "string", + "description": "Gets or sets the provider name to search within if set.", + "nullable": true + }, + "IncludeDisabledProviders": { + "type": "boolean", + "description": "Gets or sets a value indicating whether disabled providers should be included." + } + }, + "additionalProperties": false + }, + "BrandingOptions": { + "type": "object", + "properties": { + "LoginDisclaimer": { + "type": "string", + "description": "Gets or sets the login disclaimer.", + "nullable": true + }, + "CustomCss": { + "type": "string", + "description": "Gets or sets the custom CSS.", + "nullable": true + }, + "SplashscreenEnabled": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to enable the splashscreen." + } + }, + "additionalProperties": false, + "description": "The branding options." + }, + "BufferRequestDto": { + "type": "object", + "properties": { + "When": { + "type": "string", + "description": "Gets or sets when the request has been made by the client.", + "format": "date-time" + }, + "PositionTicks": { + "type": "integer", + "description": "Gets or sets the position ticks.", + "format": "int64" + }, + "IsPlaying": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the client playback is unpaused." + }, + "PlaylistItemId": { + "type": "string", + "description": "Gets or sets the playlist item identifier of the playing item.", + "format": "uuid" + } + }, + "additionalProperties": false, + "description": "Class BufferRequestDto." + }, + "ChannelFeatures": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name." + }, + "Id": { + "type": "string", + "description": "Gets or sets the identifier.", + "format": "uuid" + }, + "CanSearch": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance can search." + }, + "MediaTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChannelMediaType" + }, + "description": "Gets or sets the media types." + }, + "ContentTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChannelMediaContentType" + }, + "description": "Gets or sets the content types." + }, + "MaxPageSize": { + "type": "integer", + "description": "Gets or sets the maximum number of records the channel allows retrieving at a time.", + "format": "int32", + "nullable": true + }, + "AutoRefreshLevels": { + "type": "integer", + "description": "Gets or sets the automatic refresh levels.", + "format": "int32", + "nullable": true + }, + "DefaultSortFields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChannelItemSortField" + }, + "description": "Gets or sets the default sort orders." + }, + "SupportsSortOrderToggle": { + "type": "boolean", + "description": "Gets or sets a value indicating whether a sort ascending/descending toggle is supported." + }, + "SupportsLatestMedia": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [supports latest media]." + }, + "CanFilter": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance can filter." + }, + "SupportsContentDownloading": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [supports content downloading]." + } + }, + "additionalProperties": false + }, + "ChannelItemSortField": { + "enum": [ + "Name", + "CommunityRating", + "PremiereDate", + "DateCreated", + "Runtime", + "PlayCount", + "CommunityPlayCount" + ], + "type": "string" + }, + "ChannelMappingOptionsDto": { + "type": "object", + "properties": { + "TunerChannels": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TunerChannelMapping" + }, + "description": "Gets or sets list of tuner channels." + }, + "ProviderChannels": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameIdPair" + }, + "description": "Gets or sets list of provider channels." + }, + "Mappings": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameValuePair" + }, + "description": "Gets or sets list of mappings." + }, + "ProviderName": { + "type": "string", + "description": "Gets or sets provider name.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Channel mapping options dto." + }, + "ChannelMediaContentType": { + "enum": [ + "Clip", + "Podcast", + "Trailer", + "Movie", + "Episode", + "Song", + "MovieExtra", + "TvExtra" + ], + "type": "string" + }, + "ChannelMediaType": { + "enum": [ + "Audio", + "Video", + "Photo" + ], + "type": "string" + }, + "ChannelType": { + "enum": [ + "TV", + "Radio" + ], + "type": "string", + "description": "Enum ChannelType." + }, + "ChapterInfo": { + "type": "object", + "properties": { + "StartPositionTicks": { + "type": "integer", + "description": "Gets or sets the start position ticks.", + "format": "int64" + }, + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "ImagePath": { + "type": "string", + "description": "Gets or sets the image path.", + "nullable": true + }, + "ImageDateModified": { + "type": "string", + "format": "date-time" + }, + "ImageTag": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class ChapterInfo." + }, + "ClientCapabilities": { + "type": "object", + "properties": { + "PlayableMediaTypes": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "SupportedCommands": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GeneralCommandType" + }, + "nullable": true + }, + "SupportsMediaControl": { + "type": "boolean" + }, + "SupportsContentUploading": { + "type": "boolean" + }, + "MessageCallbackUrl": { + "type": "string", + "nullable": true + }, + "SupportsPersistentIdentifier": { + "type": "boolean" + }, + "SupportsSync": { + "type": "boolean" + }, + "DeviceProfile": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfile" + } + ], + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't.", + "nullable": true + }, + "AppStoreUrl": { + "type": "string", + "nullable": true + }, + "IconUrl": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ClientCapabilitiesDto": { + "type": "object", + "properties": { + "PlayableMediaTypes": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the list of playable media types." + }, + "SupportedCommands": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GeneralCommandType" + }, + "description": "Gets or sets the list of supported commands." + }, + "SupportsMediaControl": { + "type": "boolean", + "description": "Gets or sets a value indicating whether session supports media control." + }, + "SupportsContentUploading": { + "type": "boolean", + "description": "Gets or sets a value indicating whether session supports content uploading." + }, + "MessageCallbackUrl": { + "type": "string", + "description": "Gets or sets the message callback url.", + "nullable": true + }, + "SupportsPersistentIdentifier": { + "type": "boolean", + "description": "Gets or sets a value indicating whether session supports a persistent identifier." + }, + "SupportsSync": { + "type": "boolean", + "description": "Gets or sets a value indicating whether session supports sync." + }, + "DeviceProfile": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfile" + } + ], + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't.", + "nullable": true + }, + "AppStoreUrl": { + "type": "string", + "description": "Gets or sets the app store url.", + "nullable": true + }, + "IconUrl": { + "type": "string", + "description": "Gets or sets the icon url.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Client capabilities dto." + }, + "ClientLogDocumentResponseDto": { + "type": "object", + "properties": { + "FileName": { + "type": "string", + "description": "Gets the resulting filename." + } + }, + "additionalProperties": false, + "description": "Client log document response dto." + }, + "CodecProfile": { + "type": "object", + "properties": { + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/CodecType" + } + ] + }, + "Conditions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ProfileCondition" + }, + "nullable": true + }, + "ApplyConditions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ProfileCondition" + }, + "nullable": true + }, + "Codec": { + "type": "string", + "nullable": true + }, + "Container": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "CodecType": { + "enum": [ + "Video", + "VideoAudio", + "Audio" + ], + "type": "string" + }, + "CollectionCreationResult": { + "type": "object", + "properties": { + "Id": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "CollectionTypeOptions": { + "enum": [ + "Movies", + "TvShows", + "Music", + "MusicVideos", + "HomeVideos", + "BoxSets", + "Books", + "Mixed" + ], + "type": "string" + }, + "ConfigImageTypes": { + "type": "object", + "properties": { + "BackdropSizes": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "BaseUrl": { + "type": "string", + "nullable": true + }, + "LogoSizes": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "PosterSizes": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "ProfileSizes": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "SecureBaseUrl": { + "type": "string", + "nullable": true + }, + "StillSizes": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ConfigurationPageInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name." + }, + "EnableInMainMenu": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the configurations page is enabled in the main menu." + }, + "MenuSection": { + "type": "string", + "description": "Gets or sets the menu section.", + "nullable": true + }, + "MenuIcon": { + "type": "string", + "description": "Gets or sets the menu icon.", + "nullable": true + }, + "DisplayName": { + "type": "string", + "description": "Gets or sets the display name.", + "nullable": true + }, + "PluginId": { + "type": "string", + "description": "Gets or sets the plugin id.", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false, + "description": "The configuration page info." + }, + "ContainerProfile": { + "type": "object", + "properties": { + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/DlnaProfileType" + } + ] + }, + "Conditions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ProfileCondition" + }, + "nullable": true + }, + "Container": { + "type": "string" + } + }, + "additionalProperties": false + }, + "ControlResponse": { + "type": "object", + "properties": { + "Headers": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "readOnly": true + }, + "Xml": { + "type": "string" + }, + "IsSuccessful": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "CountryInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "DisplayName": { + "type": "string", + "description": "Gets or sets the display name.", + "nullable": true + }, + "TwoLetterISORegionName": { + "type": "string", + "description": "Gets or sets the name of the two letter ISO region.", + "nullable": true + }, + "ThreeLetterISORegionName": { + "type": "string", + "description": "Gets or sets the name of the three letter ISO region.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class CountryInfo." + }, + "CreatePlaylistDto": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name of the new playlist.", + "nullable": true + }, + "Ids": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "description": "Gets or sets item ids to add to the playlist." + }, + "UserId": { + "type": "string", + "description": "Gets or sets the user id.", + "format": "uuid", + "nullable": true + }, + "MediaType": { + "type": "string", + "description": "Gets or sets the media type.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Create new playlist dto." + }, + "CreateUserByName": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the username.", + "nullable": true + }, + "Password": { + "type": "string", + "description": "Gets or sets the password.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "The create user by name request body." + }, + "CultureDto": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets the name." + }, + "DisplayName": { + "type": "string", + "description": "Gets the display name." + }, + "TwoLetterISOLanguageName": { + "type": "string", + "description": "Gets the name of the two letter ISO language." + }, + "ThreeLetterISOLanguageName": { + "type": "string", + "description": "Gets the name of the three letter ISO language.", + "nullable": true, + "readOnly": true + }, + "ThreeLetterISOLanguageNames": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "additionalProperties": false, + "description": "Class CultureDto." + }, + "DayOfWeek": { + "enum": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "type": "string" + }, + "DayPattern": { + "enum": [ + "Daily", + "Weekdays", + "Weekends" + ], + "type": "string" + }, + "DefaultDirectoryBrowserInfoDto": { + "type": "object", + "properties": { + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Default directory browser info." + }, + "DeviceIdentification": { + "type": "object", + "properties": { + "FriendlyName": { + "type": "string", + "description": "Gets or sets the name of the friendly." + }, + "ModelNumber": { + "type": "string", + "description": "Gets or sets the model number." + }, + "SerialNumber": { + "type": "string", + "description": "Gets or sets the serial number." + }, + "ModelName": { + "type": "string", + "description": "Gets or sets the name of the model." + }, + "ModelDescription": { + "type": "string", + "description": "Gets or sets the model description." + }, + "ModelUrl": { + "type": "string", + "description": "Gets or sets the model URL." + }, + "Manufacturer": { + "type": "string", + "description": "Gets or sets the manufacturer." + }, + "ManufacturerUrl": { + "type": "string", + "description": "Gets or sets the manufacturer URL." + }, + "Headers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/HttpHeaderInfo" + }, + "description": "Gets or sets the headers." + } + }, + "additionalProperties": false + }, + "DeviceInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "nullable": true + }, + "AccessToken": { + "type": "string", + "description": "Gets or sets the access token.", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the identifier.", + "nullable": true + }, + "LastUserName": { + "type": "string", + "description": "Gets or sets the last name of the user.", + "nullable": true + }, + "AppName": { + "type": "string", + "description": "Gets or sets the name of the application.", + "nullable": true + }, + "AppVersion": { + "type": "string", + "description": "Gets or sets the application version.", + "nullable": true + }, + "LastUserId": { + "type": "string", + "description": "Gets or sets the last user identifier.", + "format": "uuid" + }, + "DateLastActivity": { + "type": "string", + "description": "Gets or sets the date last modified.", + "format": "date-time" + }, + "Capabilities": { + "allOf": [ + { + "$ref": "#/components/schemas/ClientCapabilities" + } + ], + "description": "Gets or sets the capabilities.", + "nullable": true + }, + "IconUrl": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "DeviceInfoQueryResult": { + "type": "object", + "properties": { + "Items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/DeviceInfo" + }, + "description": "Gets or sets the items.", + "nullable": true + }, + "TotalRecordCount": { + "type": "integer", + "description": "Gets or sets the total number of records available.", + "format": "int32" + }, + "StartIndex": { + "type": "integer", + "description": "Gets or sets the index of the first record in Items.", + "format": "int32" + } + }, + "additionalProperties": false + }, + "DeviceOptions": { + "type": "object", + "properties": { + "Id": { + "type": "integer", + "description": "Gets the id.", + "format": "int32", + "readOnly": true + }, + "DeviceId": { + "type": "string", + "description": "Gets the device id." + }, + "CustomName": { + "type": "string", + "description": "Gets or sets the custom name.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "An entity representing custom options for a device." + }, + "DeviceOptionsDto": { + "type": "object", + "properties": { + "Id": { + "type": "integer", + "description": "Gets or sets the id.", + "format": "int32" + }, + "DeviceId": { + "type": "string", + "description": "Gets or sets the device id.", + "nullable": true + }, + "CustomName": { + "type": "string", + "description": "Gets or sets the custom name.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "A dto representing custom options for a device." + }, + "DeviceProfile": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name of this device profile.", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the Id.", + "nullable": true + }, + "Identification": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceIdentification" + } + ], + "description": "Gets or sets the Identification.", + "nullable": true + }, + "FriendlyName": { + "type": "string", + "description": "Gets or sets the friendly name of the device profile, which can be shown to users.", + "nullable": true + }, + "Manufacturer": { + "type": "string", + "description": "Gets or sets the manufacturer of the device which this profile represents.", + "nullable": true + }, + "ManufacturerUrl": { + "type": "string", + "description": "Gets or sets an url for the manufacturer of the device which this profile represents.", + "nullable": true + }, + "ModelName": { + "type": "string", + "description": "Gets or sets the model name of the device which this profile represents.", + "nullable": true + }, + "ModelDescription": { + "type": "string", + "description": "Gets or sets the model description of the device which this profile represents.", + "nullable": true + }, + "ModelNumber": { + "type": "string", + "description": "Gets or sets the model number of the device which this profile represents.", + "nullable": true + }, + "ModelUrl": { + "type": "string", + "description": "Gets or sets the ModelUrl.", + "nullable": true + }, + "SerialNumber": { + "type": "string", + "description": "Gets or sets the serial number of the device which this profile represents.", + "nullable": true + }, + "EnableAlbumArtInDidl": { + "type": "boolean", + "description": "Gets or sets a value indicating whether EnableAlbumArtInDidl.", + "default": false + }, + "EnableSingleAlbumArtLimit": { + "type": "boolean", + "description": "Gets or sets a value indicating whether EnableSingleAlbumArtLimit.", + "default": false + }, + "EnableSingleSubtitleLimit": { + "type": "boolean", + "description": "Gets or sets a value indicating whether EnableSingleSubtitleLimit.", + "default": false + }, + "SupportedMediaTypes": { + "type": "string", + "description": "Gets or sets the SupportedMediaTypes." + }, + "UserId": { + "type": "string", + "description": "Gets or sets the UserId.", + "nullable": true + }, + "AlbumArtPn": { + "type": "string", + "description": "Gets or sets the AlbumArtPn.", + "nullable": true + }, + "MaxAlbumArtWidth": { + "type": "integer", + "description": "Gets or sets the MaxAlbumArtWidth.", + "format": "int32", + "nullable": true + }, + "MaxAlbumArtHeight": { + "type": "integer", + "description": "Gets or sets the MaxAlbumArtHeight.", + "format": "int32", + "nullable": true + }, + "MaxIconWidth": { + "type": "integer", + "description": "Gets or sets the maximum allowed width of embedded icons.", + "format": "int32", + "nullable": true + }, + "MaxIconHeight": { + "type": "integer", + "description": "Gets or sets the maximum allowed height of embedded icons.", + "format": "int32", + "nullable": true + }, + "MaxStreamingBitrate": { + "type": "integer", + "description": "Gets or sets the maximum allowed bitrate for all streamed content.", + "format": "int32", + "nullable": true + }, + "MaxStaticBitrate": { + "type": "integer", + "description": "Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files).", + "format": "int32", + "nullable": true + }, + "MusicStreamingTranscodingBitrate": { + "type": "integer", + "description": "Gets or sets the maximum allowed bitrate for transcoded music streams.", + "format": "int32", + "nullable": true + }, + "MaxStaticMusicBitrate": { + "type": "integer", + "description": "Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files.", + "format": "int32", + "nullable": true + }, + "SonyAggregationFlags": { + "type": "string", + "description": "Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", + "nullable": true + }, + "ProtocolInfo": { + "type": "string", + "description": "Gets or sets the ProtocolInfo.", + "nullable": true + }, + "TimelineOffsetSeconds": { + "type": "integer", + "description": "Gets or sets the TimelineOffsetSeconds.", + "format": "int32", + "default": 0 + }, + "RequiresPlainVideoItems": { + "type": "boolean", + "description": "Gets or sets a value indicating whether RequiresPlainVideoItems.", + "default": false + }, + "RequiresPlainFolders": { + "type": "boolean", + "description": "Gets or sets a value indicating whether RequiresPlainFolders.", + "default": false + }, + "EnableMSMediaReceiverRegistrar": { + "type": "boolean", + "description": "Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar.", + "default": false + }, + "IgnoreTranscodeByteRangeRequests": { + "type": "boolean", + "description": "Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests.", + "default": false + }, + "XmlRootAttributes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/XmlAttribute" + }, + "description": "Gets or sets the XmlRootAttributes." + }, + "DirectPlayProfiles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/DirectPlayProfile" + }, + "description": "Gets or sets the direct play profiles." + }, + "TranscodingProfiles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TranscodingProfile" + }, + "description": "Gets or sets the transcoding profiles." + }, + "ContainerProfiles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ContainerProfile" + }, + "description": "Gets or sets the container profiles." + }, + "CodecProfiles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CodecProfile" + }, + "description": "Gets or sets the codec profiles." + }, + "ResponseProfiles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ResponseProfile" + }, + "description": "Gets or sets the ResponseProfiles." + }, + "SubtitleProfiles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SubtitleProfile" + }, + "description": "Gets or sets the subtitle profiles." + } + }, + "additionalProperties": false, + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." + }, + "DeviceProfileInfo": { + "type": "object", + "properties": { + "Id": { + "type": "string", + "description": "Gets or sets the identifier.", + "nullable": true + }, + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfileType" + } + ], + "description": "Gets or sets the type." + } + }, + "additionalProperties": false + }, + "DeviceProfileType": { + "enum": [ + "System", + "User" + ], + "type": "string" + }, + "DirectPlayProfile": { + "type": "object", + "properties": { + "Container": { + "type": "string", + "nullable": true + }, + "AudioCodec": { + "type": "string", + "nullable": true + }, + "VideoCodec": { + "type": "string", + "nullable": true + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/DlnaProfileType" + } + ] + } + }, + "additionalProperties": false + }, + "DisplayPreferencesDto": { + "type": "object", + "properties": { + "Id": { + "type": "string", + "description": "Gets or sets the user id.", + "nullable": true + }, + "ViewType": { + "type": "string", + "description": "Gets or sets the type of the view.", + "nullable": true + }, + "SortBy": { + "type": "string", + "description": "Gets or sets the sort by.", + "nullable": true + }, + "IndexBy": { + "type": "string", + "description": "Gets or sets the index by.", + "nullable": true + }, + "RememberIndexing": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [remember indexing]." + }, + "PrimaryImageHeight": { + "type": "integer", + "description": "Gets or sets the height of the primary image.", + "format": "int32" + }, + "PrimaryImageWidth": { + "type": "integer", + "description": "Gets or sets the width of the primary image.", + "format": "int32" + }, + "CustomPrefs": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the custom prefs." + }, + "ScrollDirection": { + "allOf": [ + { + "$ref": "#/components/schemas/ScrollDirection" + } + ], + "description": "Gets or sets the scroll direction." + }, + "ShowBackdrop": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to show backdrops on this item." + }, + "RememberSorting": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [remember sorting]." + }, + "SortOrder": { + "allOf": [ + { + "$ref": "#/components/schemas/SortOrder" + } + ], + "description": "Gets or sets the sort order." + }, + "ShowSidebar": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [show sidebar]." + }, + "Client": { + "type": "string", + "description": "Gets or sets the client.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Defines the display preferences for any item that supports them (usually Folders)." + }, + "DlnaOptions": { + "type": "object", + "properties": { + "EnablePlayTo": { + "type": "boolean", + "description": "Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna playTo subsystem." + }, + "EnableServer": { + "type": "boolean", + "description": "Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna server subsystem." + }, + "EnableDebugLog": { + "type": "boolean", + "description": "Gets or sets a value indicating whether detailed dlna server logs are sent to the console/log.\r\nIf the setting \"Emby.Dlna\": \"Debug\" msut be set in logging.default.json for this property to work." + }, + "EnablePlayToTracing": { + "type": "boolean", + "description": "Gets or sets a value indicating whether whether detailed playTo debug logs are sent to the console/log.\r\nIf the setting \"Emby.Dlna.PlayTo\": \"Debug\" msut be set in logging.default.json for this property to work." + }, + "ClientDiscoveryIntervalSeconds": { + "type": "integer", + "description": "Gets or sets the ssdp client discovery interval time (in seconds).\r\nThis is the time after which the server will send a ssdp search request.", + "format": "int32" + }, + "AliveMessageIntervalSeconds": { + "type": "integer", + "description": "Gets or sets the frequency at which ssdp alive notifications are transmitted.", + "format": "int32" + }, + "BlastAliveMessageIntervalSeconds": { + "type": "integer", + "description": "Gets or sets the frequency at which ssdp alive notifications are transmitted. MIGRATING - TO BE REMOVED ONCE WEB HAS BEEN ALTERED.", + "format": "int32" + }, + "DefaultUserId": { + "type": "string", + "description": "Gets or sets the default user account that the dlna server uses.", + "nullable": true + }, + "AutoCreatePlayToProfiles": { + "type": "boolean", + "description": "Gets or sets a value indicating whether playTo device profiles should be created." + }, + "BlastAliveMessages": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to blast alive messages." + }, + "SendOnlyMatchedHost": { + "type": "boolean", + "description": "gets or sets a value indicating whether to send only matched host." + } + }, + "additionalProperties": false, + "description": "The DlnaOptions class contains the user definable parameters for the dlna subsystems." + }, + "DlnaProfileType": { + "enum": [ + "Audio", + "Video", + "Photo", + "Subtitle" + ], + "type": "string" + }, + "DynamicDayOfWeek": { + "enum": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday", + "Everyday", + "Weekday", + "Weekend" + ], + "type": "string", + "description": "An enum that represents a day of the week, weekdays, weekends, or all days." + }, + "EmbeddedSubtitleOptions": { + "enum": [ + "AllowAll", + "AllowText", + "AllowImage", + "AllowNone" + ], + "type": "string", + "description": "An enum representing the options to disable embedded subs." + }, + "EncodingContext": { + "enum": [ + "Streaming", + "Static" + ], + "type": "string" + }, + "EncodingOptions": { + "type": "object", + "properties": { + "EncodingThreadCount": { + "type": "integer", + "format": "int32" + }, + "TranscodingTempPath": { + "type": "string", + "nullable": true + }, + "FallbackFontPath": { + "type": "string", + "nullable": true + }, + "EnableFallbackFont": { + "type": "boolean" + }, + "DownMixAudioBoost": { + "type": "number", + "format": "double" + }, + "MaxMuxingQueueSize": { + "type": "integer", + "format": "int32" + }, + "EnableThrottling": { + "type": "boolean" + }, + "ThrottleDelaySeconds": { + "type": "integer", + "format": "int32" + }, + "HardwareAccelerationType": { + "type": "string", + "nullable": true + }, + "EncoderAppPath": { + "type": "string", + "description": "Gets or sets the FFmpeg path as set by the user via the UI.", + "nullable": true + }, + "EncoderAppPathDisplay": { + "type": "string", + "description": "Gets or sets the current FFmpeg path being used by the system and displayed on the transcode page.", + "nullable": true + }, + "VaapiDevice": { + "type": "string", + "nullable": true + }, + "EnableTonemapping": { + "type": "boolean" + }, + "EnableVppTonemapping": { + "type": "boolean" + }, + "TonemappingAlgorithm": { + "type": "string", + "nullable": true + }, + "TonemappingRange": { + "type": "string", + "nullable": true + }, + "TonemappingDesat": { + "type": "number", + "format": "double" + }, + "TonemappingThreshold": { + "type": "number", + "format": "double" + }, + "TonemappingPeak": { + "type": "number", + "format": "double" + }, + "TonemappingParam": { + "type": "number", + "format": "double" + }, + "VppTonemappingBrightness": { + "type": "number", + "format": "double" + }, + "VppTonemappingContrast": { + "type": "number", + "format": "double" + }, + "H264Crf": { + "type": "integer", + "format": "int32" + }, + "H265Crf": { + "type": "integer", + "format": "int32" + }, + "EncoderPreset": { + "type": "string", + "nullable": true + }, + "DeinterlaceDoubleRate": { + "type": "boolean" + }, + "DeinterlaceMethod": { + "type": "string", + "nullable": true + }, + "EnableDecodingColorDepth10Hevc": { + "type": "boolean" + }, + "EnableDecodingColorDepth10Vp9": { + "type": "boolean" + }, + "EnableEnhancedNvdecDecoder": { + "type": "boolean" + }, + "PreferSystemNativeHwDecoder": { + "type": "boolean" + }, + "EnableIntelLowPowerH264HwEncoder": { + "type": "boolean" + }, + "EnableIntelLowPowerHevcHwEncoder": { + "type": "boolean" + }, + "EnableHardwareEncoding": { + "type": "boolean" + }, + "AllowHevcEncoding": { + "type": "boolean" + }, + "EnableSubtitleExtraction": { + "type": "boolean" + }, + "HardwareDecodingCodecs": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "AllowOnDemandMetadataBasedKeyframeExtractionForExtensions": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "EndPointInfo": { + "type": "object", + "properties": { + "IsLocal": { + "type": "boolean" + }, + "IsInNetwork": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "ExternalIdInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc)." + }, + "Key": { + "type": "string", + "description": "Gets or sets the unique key for this id. This key should be unique across all providers." + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/ExternalIdMediaType" + } + ], + "description": "Gets or sets the specific media type for this id. This is used to distinguish between the different\r\nexternal id types for providers with multiple ids.\r\nA null value indicates there is no specific media type associated with the external id, or this is the\r\ndefault id for the external provider so there is no need to specify a type.", + "nullable": true + }, + "UrlFormatString": { + "type": "string", + "description": "Gets or sets the URL format string.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Represents the external id information for serialization to the client." + }, + "ExternalIdMediaType": { + "enum": [ + "Album", + "AlbumArtist", + "Artist", + "BoxSet", + "Episode", + "Movie", + "OtherArtist", + "Person", + "ReleaseGroup", + "Season", + "Series", + "Track" + ], + "type": "string", + "description": "The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo." + }, + "ExternalUrl": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Url": { + "type": "string", + "description": "Gets or sets the type of the item.", + "nullable": true + } + }, + "additionalProperties": false + }, + "FFmpegLocation": { + "enum": [ + "NotFound", + "SetByArgument", + "Custom", + "System" + ], + "type": "string", + "description": "Enum describing the location of the FFmpeg tool." + }, + "FileSystemEntryInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets the name." + }, + "Path": { + "type": "string", + "description": "Gets the path." + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/FileSystemEntryType" + } + ], + "description": "Gets the type." + } + }, + "additionalProperties": false, + "description": "Class FileSystemEntryInfo." + }, + "FileSystemEntryType": { + "enum": [ + "File", + "Directory", + "NetworkComputer", + "NetworkShare" + ], + "type": "string", + "description": "Enum FileSystemEntryType." + }, + "FontFile": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Size": { + "type": "integer", + "description": "Gets or sets the size.", + "format": "int64" + }, + "DateCreated": { + "type": "string", + "description": "Gets or sets the date created.", + "format": "date-time" + }, + "DateModified": { + "type": "string", + "description": "Gets or sets the date modified.", + "format": "date-time" + } + }, + "additionalProperties": false, + "description": "Class FontFile." + }, + "ForgotPasswordAction": { + "enum": [ + "ContactAdmin", + "PinCode", + "InNetworkRequired" + ], + "type": "string" + }, + "ForgotPasswordDto": { + "required": [ + "EnteredUsername" + ], + "type": "object", + "properties": { + "EnteredUsername": { + "type": "string", + "description": "Gets or sets the entered username to have its password reset." + } + }, + "additionalProperties": false, + "description": "Forgot Password request body DTO." + }, + "ForgotPasswordPinDto": { + "required": [ + "Pin" + ], + "type": "object", + "properties": { + "Pin": { + "type": "string", + "description": "Gets or sets the entered pin to have the password reset." + } + }, + "additionalProperties": false, + "description": "Forgot Password Pin enter request body DTO." + }, + "ForgotPasswordResult": { + "type": "object", + "properties": { + "Action": { + "allOf": [ + { + "$ref": "#/components/schemas/ForgotPasswordAction" + } + ], + "description": "Gets or sets the action." + }, + "PinFile": { + "type": "string", + "description": "Gets or sets the pin file.", + "nullable": true + }, + "PinExpirationDate": { + "type": "string", + "description": "Gets or sets the pin expiration date.", + "format": "date-time", + "nullable": true + } + }, + "additionalProperties": false + }, + "GeneralCommand": { + "type": "object", + "properties": { + "Name": { + "allOf": [ + { + "$ref": "#/components/schemas/GeneralCommandType" + } + ], + "description": "This exists simply to identify a set of known commands." + }, + "ControllingUserId": { + "type": "string", + "format": "uuid" + }, + "Arguments": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + } + } + }, + "additionalProperties": false + }, + "GeneralCommandType": { + "enum": [ + "MoveUp", + "MoveDown", + "MoveLeft", + "MoveRight", + "PageUp", + "PageDown", + "PreviousLetter", + "NextLetter", + "ToggleOsd", + "ToggleContextMenu", + "Select", + "Back", + "TakeScreenshot", + "SendKey", + "SendString", + "GoHome", + "GoToSettings", + "VolumeUp", + "VolumeDown", + "Mute", + "Unmute", + "ToggleMute", + "SetVolume", + "SetAudioStreamIndex", + "SetSubtitleStreamIndex", + "ToggleFullscreen", + "DisplayContent", + "GoToSearch", + "DisplayMessage", + "SetRepeatMode", + "ChannelUp", + "ChannelDown", + "Guide", + "ToggleStats", + "PlayMediaSource", + "PlayTrailers", + "SetShuffleQueue", + "PlayState", + "PlayNext", + "ToggleOsdMenu", + "Play", + "SetMaxStreamingBitrate" + ], + "type": "string", + "description": "This exists simply to identify a set of known commands." + }, + "GetProgramsDto": { + "type": "object", + "properties": { + "ChannelIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "description": "Gets or sets the channels to return guide information for." + }, + "UserId": { + "type": "string", + "description": "Gets or sets optional. Filter by user id.", + "format": "uuid" + }, + "MinStartDate": { + "type": "string", + "description": "Gets or sets the minimum premiere start date.\r\nOptional.", + "format": "date-time", + "nullable": true + }, + "HasAired": { + "type": "boolean", + "description": "Gets or sets filter by programs that have completed airing, or not.\r\nOptional.", + "nullable": true + }, + "IsAiring": { + "type": "boolean", + "description": "Gets or sets filter by programs that are currently airing, or not.\r\nOptional.", + "nullable": true + }, + "MaxStartDate": { + "type": "string", + "description": "Gets or sets the maximum premiere start date.\r\nOptional.", + "format": "date-time", + "nullable": true + }, + "MinEndDate": { + "type": "string", + "description": "Gets or sets the minimum premiere end date.\r\nOptional.", + "format": "date-time", + "nullable": true + }, + "MaxEndDate": { + "type": "string", + "description": "Gets or sets the maximum premiere end date.\r\nOptional.", + "format": "date-time", + "nullable": true + }, + "IsMovie": { + "type": "boolean", + "description": "Gets or sets filter for movies.\r\nOptional.", + "nullable": true + }, + "IsSeries": { + "type": "boolean", + "description": "Gets or sets filter for series.\r\nOptional.", + "nullable": true + }, + "IsNews": { + "type": "boolean", + "description": "Gets or sets filter for news.\r\nOptional.", + "nullable": true + }, + "IsKids": { + "type": "boolean", + "description": "Gets or sets filter for kids.\r\nOptional.", + "nullable": true + }, + "IsSports": { + "type": "boolean", + "description": "Gets or sets filter for sports.\r\nOptional.", + "nullable": true + }, + "StartIndex": { + "type": "integer", + "description": "Gets or sets the record index to start at. All items with a lower index will be dropped from the results.\r\nOptional.", + "format": "int32", + "nullable": true + }, + "Limit": { + "type": "integer", + "description": "Gets or sets the maximum number of records to return.\r\nOptional.", + "format": "int32", + "nullable": true + }, + "SortBy": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate.\r\nOptional." + }, + "SortOrder": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SortOrder" + }, + "description": "Gets or sets sort Order - Ascending,Descending." + }, + "Genres": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the genres to return guide information for." + }, + "GenreIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "description": "Gets or sets the genre ids to return guide information for." + }, + "EnableImages": { + "type": "boolean", + "description": "Gets or sets include image information in output.\r\nOptional.", + "nullable": true + }, + "EnableTotalRecordCount": { + "type": "boolean", + "description": "Gets or sets a value indicating whether retrieve total record count." + }, + "ImageTypeLimit": { + "type": "integer", + "description": "Gets or sets the max number of images to return, per image type.\r\nOptional.", + "format": "int32", + "nullable": true + }, + "EnableImageTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + }, + "description": "Gets or sets the image types to include in the output.\r\nOptional." + }, + "EnableUserData": { + "type": "boolean", + "description": "Gets or sets include user data.\r\nOptional.", + "nullable": true + }, + "SeriesTimerId": { + "type": "string", + "description": "Gets or sets filter by series timer id.\r\nOptional.", + "nullable": true + }, + "LibrarySeriesId": { + "type": "string", + "description": "Gets or sets filter by library series id.\r\nOptional.", + "format": "uuid" + }, + "Fields": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ItemFields" + }, + "description": "Gets or sets specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines.\r\nOptional." + } + }, + "additionalProperties": false, + "description": "Get programs dto." + }, + "GroupInfoDto": { + "type": "object", + "properties": { + "GroupId": { + "type": "string", + "description": "Gets the group identifier.", + "format": "uuid" + }, + "GroupName": { + "type": "string", + "description": "Gets the group name." + }, + "State": { + "allOf": [ + { + "$ref": "#/components/schemas/GroupStateType" + } + ], + "description": "Gets the group state." + }, + "Participants": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets the participants." + }, + "LastUpdatedAt": { + "type": "string", + "description": "Gets the date when this DTO has been created.", + "format": "date-time" + } + }, + "additionalProperties": false, + "description": "Class GroupInfoDto." + }, + "GroupQueueMode": { + "enum": [ + "Queue", + "QueueNext" + ], + "type": "string", + "description": "Enum GroupQueueMode." + }, + "GroupRepeatMode": { + "enum": [ + "RepeatOne", + "RepeatAll", + "RepeatNone" + ], + "type": "string", + "description": "Enum GroupRepeatMode." + }, + "GroupShuffleMode": { + "enum": [ + "Sorted", + "Shuffle" + ], + "type": "string", + "description": "Enum GroupShuffleMode." + }, + "GroupStateType": { + "enum": [ + "Idle", + "Waiting", + "Paused", + "Playing" + ], + "type": "string", + "description": "Enum GroupState." + }, + "GroupUpdateType": { + "enum": [ + "UserJoined", + "UserLeft", + "GroupJoined", + "GroupLeft", + "StateUpdate", + "PlayQueue", + "NotInGroup", + "GroupDoesNotExist", + "CreateGroupDenied", + "JoinGroupDenied", + "LibraryAccessDenied" + ], + "type": "string", + "description": "Enum GroupUpdateType." + }, + "GuideInfo": { + "type": "object", + "properties": { + "StartDate": { + "type": "string", + "description": "Gets or sets the start date.", + "format": "date-time" + }, + "EndDate": { + "type": "string", + "description": "Gets or sets the end date.", + "format": "date-time" + } + }, + "additionalProperties": false + }, + "HardwareEncodingType": { + "enum": [ + "AMF", + "QSV", + "NVENC", + "V4L2M2M", + "VAAPI", + "VideoToolBox" + ], + "type": "string", + "description": "Enum HardwareEncodingType." + }, + "HeaderMatchType": { + "enum": [ + "Equals", + "Regex", + "Substring" + ], + "type": "string" + }, + "HttpHeaderInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "nullable": true + }, + "Value": { + "type": "string", + "nullable": true + }, + "Match": { + "allOf": [ + { + "$ref": "#/components/schemas/HeaderMatchType" + } + ] + } + }, + "additionalProperties": false + }, + "IgnoreWaitRequestDto": { + "type": "object", + "properties": { + "IgnoreWait": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the client should be ignored." + } + }, + "additionalProperties": false, + "description": "Class IgnoreWaitRequestDto." + }, + "ImageByNameInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Theme": { + "type": "string", + "description": "Gets or sets the theme.", + "nullable": true + }, + "Context": { + "type": "string", + "description": "Gets or sets the context.", + "nullable": true + }, + "FileLength": { + "type": "integer", + "description": "Gets or sets the length of the file.", + "format": "int64" + }, + "Format": { + "type": "string", + "description": "Gets or sets the format.", + "nullable": true + } + }, + "additionalProperties": false + }, + "ImageFormat": { + "enum": [ + "Bmp", + "Gif", + "Jpg", + "Png", + "Webp" + ], + "type": "string", + "description": "Enum ImageOutputFormat." + }, + "ImageInfo": { + "type": "object", + "properties": { + "ImageType": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Gets or sets the type of the image." + }, + "ImageIndex": { + "type": "integer", + "description": "Gets or sets the index of the image.", + "format": "int32", + "nullable": true + }, + "ImageTag": { + "type": "string", + "description": "Gets or sets the image tag.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "BlurHash": { + "type": "string", + "description": "Gets or sets the blurhash.", + "nullable": true + }, + "Height": { + "type": "integer", + "description": "Gets or sets the height.", + "format": "int32", + "nullable": true + }, + "Width": { + "type": "integer", + "description": "Gets or sets the width.", + "format": "int32", + "nullable": true + }, + "Size": { + "type": "integer", + "description": "Gets or sets the size.", + "format": "int64" + } + }, + "additionalProperties": false, + "description": "Class ImageInfo." + }, + "ImageOption": { + "type": "object", + "properties": { + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Gets or sets the type." + }, + "Limit": { + "type": "integer", + "description": "Gets or sets the limit.", + "format": "int32" + }, + "MinWidth": { + "type": "integer", + "description": "Gets or sets the minimum width.", + "format": "int32" + } + }, + "additionalProperties": false + }, + "ImageOrientation": { + "enum": [ + "TopLeft", + "TopRight", + "BottomRight", + "BottomLeft", + "LeftTop", + "RightTop", + "RightBottom", + "LeftBottom" + ], + "type": "string" + }, + "ImageProviderInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets the name." + }, + "SupportedImages": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + }, + "description": "Gets the supported image types." + } + }, + "additionalProperties": false, + "description": "Class ImageProviderInfo." + }, + "ImageSavingConvention": { + "enum": [ + "Legacy", + "Compatible" + ], + "type": "string" + }, + "ImageType": { + "enum": [ + "Primary", + "Art", + "Backdrop", + "Banner", + "Logo", + "Thumb", + "Disc", + "Box", + "Screenshot", + "Menu", + "Chapter", + "BoxRear", + "Profile" + ], + "type": "string", + "description": "Enum ImageType." + }, + "InstallationInfo": { + "type": "object", + "properties": { + "Guid": { + "type": "string", + "description": "Gets or sets the Id.", + "format": "uuid" + }, + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Version": { + "type": "string", + "description": "Gets or sets the version.", + "nullable": true + }, + "Changelog": { + "type": "string", + "description": "Gets or sets the changelog for this version.", + "nullable": true + }, + "SourceUrl": { + "type": "string", + "description": "Gets or sets the source URL.", + "nullable": true + }, + "Checksum": { + "type": "string", + "description": "Gets or sets a checksum for the binary.", + "nullable": true + }, + "PackageInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/PackageInfo" + } + ], + "description": "Gets or sets package information for the installation.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class InstallationInfo." + }, + "IPlugin": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets the name of the plugin.", + "nullable": true, + "readOnly": true + }, + "Description": { + "type": "string", + "description": "Gets the Description.", + "nullable": true, + "readOnly": true + }, + "Id": { + "type": "string", + "description": "Gets the unique id.", + "format": "uuid", + "readOnly": true + }, + "Version": { + "type": "string", + "description": "Gets the plugin version.", + "nullable": true, + "readOnly": true + }, + "AssemblyFilePath": { + "type": "string", + "description": "Gets the path to the assembly file.", + "nullable": true, + "readOnly": true + }, + "CanUninstall": { + "type": "boolean", + "description": "Gets a value indicating whether the plugin can be uninstalled.", + "readOnly": true + }, + "DataFolderPath": { + "type": "string", + "description": "Gets the full path to the data folder, where the plugin can store any miscellaneous files needed.", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false, + "description": "Defines the MediaBrowser.Common.Plugins.IPlugin." + }, + "IsoType": { + "enum": [ + "Dvd", + "BluRay" + ], + "type": "string", + "description": "Enum IsoType." + }, + "ItemCounts": { + "type": "object", + "properties": { + "MovieCount": { + "type": "integer", + "description": "Gets or sets the movie count.", + "format": "int32" + }, + "SeriesCount": { + "type": "integer", + "description": "Gets or sets the series count.", + "format": "int32" + }, + "EpisodeCount": { + "type": "integer", + "description": "Gets or sets the episode count.", + "format": "int32" + }, + "ArtistCount": { + "type": "integer", + "description": "Gets or sets the artist count.", + "format": "int32" + }, + "ProgramCount": { + "type": "integer", + "description": "Gets or sets the program count.", + "format": "int32" + }, + "TrailerCount": { + "type": "integer", + "description": "Gets or sets the trailer count.", + "format": "int32" + }, + "SongCount": { + "type": "integer", + "description": "Gets or sets the song count.", + "format": "int32" + }, + "AlbumCount": { + "type": "integer", + "description": "Gets or sets the album count.", + "format": "int32" + }, + "MusicVideoCount": { + "type": "integer", + "description": "Gets or sets the music video count.", + "format": "int32" + }, + "BoxSetCount": { + "type": "integer", + "description": "Gets or sets the box set count.", + "format": "int32" + }, + "BookCount": { + "type": "integer", + "description": "Gets or sets the book count.", + "format": "int32" + }, + "ItemCount": { + "type": "integer", + "description": "Gets or sets the item count.", + "format": "int32" + } + }, + "additionalProperties": false, + "description": "Class LibrarySummary." + }, + "ItemFields": { + "enum": [ + "AirTime", + "CanDelete", + "CanDownload", + "ChannelInfo", + "Chapters", + "ChildCount", + "CumulativeRunTimeTicks", + "CustomRating", + "DateCreated", + "DateLastMediaAdded", + "DisplayPreferencesId", + "Etag", + "ExternalUrls", + "Genres", + "HomePageUrl", + "ItemCounts", + "MediaSourceCount", + "MediaSources", + "OriginalTitle", + "Overview", + "ParentId", + "Path", + "People", + "PlayAccess", + "ProductionLocations", + "ProviderIds", + "PrimaryImageAspectRatio", + "RecursiveItemCount", + "Settings", + "ScreenshotImageTags", + "SeriesPrimaryImage", + "SeriesStudio", + "SortName", + "SpecialEpisodeNumbers", + "Studios", + "BasicSyncInfo", + "SyncInfo", + "Taglines", + "Tags", + "RemoteTrailers", + "MediaStreams", + "SeasonUserData", + "ServiceName", + "ThemeSongIds", + "ThemeVideoIds", + "ExternalEtag", + "PresentationUniqueKey", + "InheritedParentalRatingValue", + "ExternalSeriesId", + "SeriesPresentationUniqueKey", + "DateLastRefreshed", + "DateLastSaved", + "RefreshState", + "ChannelImage", + "EnableMediaSourceDisplay", + "Width", + "Height", + "ExtraIds", + "LocalTrailerCount", + "IsHD", + "SpecialFeatureCount" + ], + "type": "string", + "description": "Used to control the data that gets attached to DtoBaseItems." + }, + "ItemFilter": { + "enum": [ + "IsFolder", + "IsNotFolder", + "IsUnplayed", + "IsPlayed", + "IsFavorite", + "IsResumable", + "Likes", + "Dislikes", + "IsFavoriteOrLikes" + ], + "type": "string", + "description": "Enum ItemFilter." + }, + "JoinGroupRequestDto": { + "type": "object", + "properties": { + "GroupId": { + "type": "string", + "description": "Gets or sets the group identifier.", + "format": "uuid" + } + }, + "additionalProperties": false, + "description": "Class JoinGroupRequestDto." + }, + "KeepUntil": { + "enum": [ + "UntilDeleted", + "UntilSpaceNeeded", + "UntilWatched", + "UntilDate" + ], + "type": "string" + }, + "LibraryOptionInfoDto": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets name.", + "nullable": true + }, + "DefaultEnabled": { + "type": "boolean", + "description": "Gets or sets a value indicating whether default enabled." + } + }, + "additionalProperties": false, + "description": "Library option info dto." + }, + "LibraryOptions": { + "type": "object", + "properties": { + "EnablePhotos": { + "type": "boolean" + }, + "EnableRealtimeMonitor": { + "type": "boolean" + }, + "EnableChapterImageExtraction": { + "type": "boolean" + }, + "ExtractChapterImagesDuringLibraryScan": { + "type": "boolean" + }, + "PathInfos": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MediaPathInfo" + } + }, + "SaveLocalMetadata": { + "type": "boolean" + }, + "EnableInternetProviders": { + "type": "boolean", + "deprecated": true + }, + "EnableAutomaticSeriesGrouping": { + "type": "boolean" + }, + "EnableEmbeddedTitles": { + "type": "boolean" + }, + "EnableEmbeddedEpisodeInfos": { + "type": "boolean" + }, + "AutomaticRefreshIntervalDays": { + "type": "integer", + "format": "int32" + }, + "PreferredMetadataLanguage": { + "type": "string", + "description": "Gets or sets the preferred metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "SeasonZeroDisplayName": { + "type": "string" + }, + "MetadataSavers": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "DisabledLocalMetadataReaders": { + "type": "array", + "items": { + "type": "string" + } + }, + "LocalMetadataReaderOrder": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "DisabledSubtitleFetchers": { + "type": "array", + "items": { + "type": "string" + } + }, + "SubtitleFetcherOrder": { + "type": "array", + "items": { + "type": "string" + } + }, + "SkipSubtitlesIfEmbeddedSubtitlesPresent": { + "type": "boolean" + }, + "SkipSubtitlesIfAudioTrackMatches": { + "type": "boolean" + }, + "SubtitleDownloadLanguages": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "RequirePerfectSubtitleMatch": { + "type": "boolean" + }, + "SaveSubtitlesWithMedia": { + "type": "boolean" + }, + "AutomaticallyAddToCollection": { + "type": "boolean" + }, + "AllowEmbeddedSubtitles": { + "allOf": [ + { + "$ref": "#/components/schemas/EmbeddedSubtitleOptions" + } + ], + "description": "An enum representing the options to disable embedded subs." + }, + "TypeOptions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TypeOptions" + } + } + }, + "additionalProperties": false + }, + "LibraryOptionsResultDto": { + "type": "object", + "properties": { + "MetadataSavers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LibraryOptionInfoDto" + }, + "description": "Gets or sets the metadata savers." + }, + "MetadataReaders": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LibraryOptionInfoDto" + }, + "description": "Gets or sets the metadata readers." + }, + "SubtitleFetchers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LibraryOptionInfoDto" + }, + "description": "Gets or sets the subtitle fetchers." + }, + "TypeOptions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LibraryTypeOptionsDto" + }, + "description": "Gets or sets the type options." + } + }, + "additionalProperties": false, + "description": "Library options result dto." + }, + "LibraryTypeOptionsDto": { + "type": "object", + "properties": { + "Type": { + "type": "string", + "description": "Gets or sets the type.", + "nullable": true + }, + "MetadataFetchers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LibraryOptionInfoDto" + }, + "description": "Gets or sets the metadata fetchers." + }, + "ImageFetchers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LibraryOptionInfoDto" + }, + "description": "Gets or sets the image fetchers." + }, + "SupportedImageTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageType" + }, + "description": "Gets or sets the supported image types." + }, + "DefaultImageOptions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageOption" + }, + "description": "Gets or sets the default image options." + } + }, + "additionalProperties": false, + "description": "Library type options dto." + }, + "LibraryUpdateInfo": { + "type": "object", + "properties": { + "FoldersAddedTo": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the folders added to." + }, + "FoldersRemovedFrom": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the folders removed from." + }, + "ItemsAdded": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the items added." + }, + "ItemsRemoved": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the items removed." + }, + "ItemsUpdated": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the items updated." + }, + "CollectionFolders": { + "type": "array", + "items": { + "type": "string" + } + }, + "IsEmpty": { + "type": "boolean", + "readOnly": true + } + }, + "additionalProperties": false, + "description": "Class LibraryUpdateInfo." + }, + "ListingsProviderInfo": { + "type": "object", + "properties": { + "Id": { + "type": "string", + "nullable": true + }, + "Type": { + "type": "string", + "nullable": true + }, + "Username": { + "type": "string", + "nullable": true + }, + "Password": { + "type": "string", + "nullable": true + }, + "ListingsId": { + "type": "string", + "nullable": true + }, + "ZipCode": { + "type": "string", + "nullable": true + }, + "Country": { + "type": "string", + "nullable": true + }, + "Path": { + "type": "string", + "nullable": true + }, + "EnabledTuners": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "EnableAllTuners": { + "type": "boolean" + }, + "NewsCategories": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "SportsCategories": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "KidsCategories": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "MovieCategories": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "ChannelMappings": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameValuePair" + }, + "nullable": true + }, + "MoviePrefix": { + "type": "string", + "nullable": true + }, + "PreferredLanguage": { + "type": "string", + "nullable": true + }, + "UserAgent": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "LiveStreamResponse": { + "type": "object", + "properties": { + "MediaSource": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaSourceInfo" + } + ] + } + }, + "additionalProperties": false + }, + "LiveTvInfo": { + "type": "object", + "properties": { + "Services": { + "type": "array", + "items": { + "$ref": "#/components/schemas/LiveTvServiceInfo" + }, + "description": "Gets or sets the services." + }, + "IsEnabled": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is enabled." + }, + "EnabledUsers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the enabled users." + } + }, + "additionalProperties": false + }, + "LiveTvOptions": { + "type": "object", + "properties": { + "GuideDays": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "RecordingPath": { + "type": "string", + "nullable": true + }, + "MovieRecordingPath": { + "type": "string", + "nullable": true + }, + "SeriesRecordingPath": { + "type": "string", + "nullable": true + }, + "EnableRecordingSubfolders": { + "type": "boolean" + }, + "EnableOriginalAudioWithEncodedRecordings": { + "type": "boolean" + }, + "TunerHosts": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TunerHostInfo" + }, + "nullable": true + }, + "ListingProviders": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ListingsProviderInfo" + }, + "nullable": true + }, + "PrePaddingSeconds": { + "type": "integer", + "format": "int32" + }, + "PostPaddingSeconds": { + "type": "integer", + "format": "int32" + }, + "MediaLocationsCreated": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "RecordingPostProcessor": { + "type": "string", + "nullable": true + }, + "RecordingPostProcessorArguments": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "LiveTvServiceInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "HomePageUrl": { + "type": "string", + "description": "Gets or sets the home page URL.", + "nullable": true + }, + "Status": { + "allOf": [ + { + "$ref": "#/components/schemas/LiveTvServiceStatus" + } + ], + "description": "Gets or sets the status." + }, + "StatusMessage": { + "type": "string", + "description": "Gets or sets the status message.", + "nullable": true + }, + "Version": { + "type": "string", + "description": "Gets or sets the version.", + "nullable": true + }, + "HasUpdateAvailable": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance has update available." + }, + "IsVisible": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is visible." + }, + "Tuners": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class ServiceInfo." + }, + "LiveTvServiceStatus": { + "enum": [ + "Ok", + "Unavailable" + ], + "type": "string" + }, + "LocalizationOption": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "nullable": true + }, + "Value": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "LocationType": { + "enum": [ + "FileSystem", + "Remote", + "Virtual", + "Offline" + ], + "type": "string", + "description": "Enum LocationType." + }, + "LogFile": { + "type": "object", + "properties": { + "DateCreated": { + "type": "string", + "description": "Gets or sets the date created.", + "format": "date-time" + }, + "DateModified": { + "type": "string", + "description": "Gets or sets the date modified.", + "format": "date-time" + }, + "Size": { + "type": "integer", + "description": "Gets or sets the size.", + "format": "int64" + }, + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + } + }, + "additionalProperties": false + }, + "LogLevel": { + "enum": [ + "Trace", + "Debug", + "Information", + "Warning", + "Error", + "Critical", + "None" + ], + "type": "string" + }, + "MediaAttachment": { + "type": "object", + "properties": { + "Codec": { + "type": "string", + "description": "Gets or sets the codec.", + "nullable": true + }, + "CodecTag": { + "type": "string", + "description": "Gets or sets the codec tag.", + "nullable": true + }, + "Comment": { + "type": "string", + "description": "Gets or sets the comment.", + "nullable": true + }, + "Index": { + "type": "integer", + "description": "Gets or sets the index.", + "format": "int32" + }, + "FileName": { + "type": "string", + "description": "Gets or sets the filename.", + "nullable": true + }, + "MimeType": { + "type": "string", + "description": "Gets or sets the MIME type.", + "nullable": true + }, + "DeliveryUrl": { + "type": "string", + "description": "Gets or sets the delivery URL.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class MediaAttachment." + }, + "MediaEncoderPathDto": { + "type": "object", + "properties": { + "Path": { + "type": "string", + "description": "Gets or sets media encoder path." + }, + "PathType": { + "type": "string", + "description": "Gets or sets media encoder path type." + } + }, + "additionalProperties": false, + "description": "Media Encoder Path Dto." + }, + "MediaPathDto": { + "required": [ + "Name" + ], + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name of the library." + }, + "Path": { + "type": "string", + "description": "Gets or sets the path to add.", + "nullable": true + }, + "PathInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaPathInfo" + } + ], + "description": "Gets or sets the path info.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Media Path dto." + }, + "MediaPathInfo": { + "type": "object", + "properties": { + "Path": { + "type": "string" + }, + "NetworkPath": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "MediaProtocol": { + "enum": [ + "File", + "Http", + "Rtmp", + "Rtsp", + "Udp", + "Rtp", + "Ftp" + ], + "type": "string" + }, + "MediaSourceInfo": { + "type": "object", + "properties": { + "Protocol": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaProtocol" + } + ] + }, + "Id": { + "type": "string", + "nullable": true + }, + "Path": { + "type": "string", + "nullable": true + }, + "EncoderPath": { + "type": "string", + "nullable": true + }, + "EncoderProtocol": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaProtocol" + } + ], + "nullable": true + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaSourceType" + } + ] + }, + "Container": { + "type": "string", + "nullable": true + }, + "Size": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "Name": { + "type": "string", + "nullable": true + }, + "IsRemote": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the media is remote.\r\nDifferentiate internet url vs local network." + }, + "ETag": { + "type": "string", + "nullable": true + }, + "RunTimeTicks": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "ReadAtNativeFramerate": { + "type": "boolean" + }, + "IgnoreDts": { + "type": "boolean" + }, + "IgnoreIndex": { + "type": "boolean" + }, + "GenPtsInput": { + "type": "boolean" + }, + "SupportsTranscoding": { + "type": "boolean" + }, + "SupportsDirectStream": { + "type": "boolean" + }, + "SupportsDirectPlay": { + "type": "boolean" + }, + "IsInfiniteStream": { + "type": "boolean" + }, + "RequiresOpening": { + "type": "boolean" + }, + "OpenToken": { + "type": "string", + "nullable": true + }, + "RequiresClosing": { + "type": "boolean" + }, + "LiveStreamId": { + "type": "string", + "nullable": true + }, + "BufferMs": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "RequiresLooping": { + "type": "boolean" + }, + "SupportsProbing": { + "type": "boolean" + }, + "VideoType": { + "allOf": [ + { + "$ref": "#/components/schemas/VideoType" + } + ], + "nullable": true + }, + "IsoType": { + "allOf": [ + { + "$ref": "#/components/schemas/IsoType" + } + ], + "nullable": true + }, + "Video3DFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Video3DFormat" + } + ], + "nullable": true + }, + "MediaStreams": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MediaStream" + }, + "nullable": true + }, + "MediaAttachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MediaAttachment" + }, + "nullable": true + }, + "Formats": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "Bitrate": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "Timestamp": { + "allOf": [ + { + "$ref": "#/components/schemas/TransportStreamTimestamp" + } + ], + "nullable": true + }, + "RequiredHttpHeaders": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "nullable": true + }, + "TranscodingUrl": { + "type": "string", + "nullable": true + }, + "TranscodingSubProtocol": { + "type": "string", + "nullable": true + }, + "TranscodingContainer": { + "type": "string", + "nullable": true + }, + "AnalyzeDurationMs": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "DefaultAudioStreamIndex": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "DefaultSubtitleStreamIndex": { + "type": "integer", + "format": "int32", + "nullable": true + } + }, + "additionalProperties": false + }, + "MediaSourceType": { + "enum": [ + "Default", + "Grouping", + "Placeholder" + ], + "type": "string" + }, + "MediaStream": { + "type": "object", + "properties": { + "Codec": { + "type": "string", + "description": "Gets or sets the codec.", + "nullable": true + }, + "CodecTag": { + "type": "string", + "description": "Gets or sets the codec tag.", + "nullable": true + }, + "Language": { + "type": "string", + "description": "Gets or sets the language.", + "nullable": true + }, + "ColorRange": { + "type": "string", + "description": "Gets or sets the color range.", + "nullable": true + }, + "ColorSpace": { + "type": "string", + "description": "Gets or sets the color space.", + "nullable": true + }, + "ColorTransfer": { + "type": "string", + "description": "Gets or sets the color transfer.", + "nullable": true + }, + "ColorPrimaries": { + "type": "string", + "description": "Gets or sets the color primaries.", + "nullable": true + }, + "DvVersionMajor": { + "type": "integer", + "description": "Gets or sets the Dolby Vision version major.", + "format": "int32", + "nullable": true + }, + "DvVersionMinor": { + "type": "integer", + "description": "Gets or sets the Dolby Vision version minor.", + "format": "int32", + "nullable": true + }, + "DvProfile": { + "type": "integer", + "description": "Gets or sets the Dolby Vision profile.", + "format": "int32", + "nullable": true + }, + "DvLevel": { + "type": "integer", + "description": "Gets or sets the Dolby Vision level.", + "format": "int32", + "nullable": true + }, + "RpuPresentFlag": { + "type": "integer", + "description": "Gets or sets the Dolby Vision rpu present flag.", + "format": "int32", + "nullable": true + }, + "ElPresentFlag": { + "type": "integer", + "description": "Gets or sets the Dolby Vision el present flag.", + "format": "int32", + "nullable": true + }, + "BlPresentFlag": { + "type": "integer", + "description": "Gets or sets the Dolby Vision bl present flag.", + "format": "int32", + "nullable": true + }, + "DvBlSignalCompatibilityId": { + "type": "integer", + "description": "Gets or sets the Dolby Vision bl signal compatibility id.", + "format": "int32", + "nullable": true + }, + "Comment": { + "type": "string", + "description": "Gets or sets the comment.", + "nullable": true + }, + "TimeBase": { + "type": "string", + "description": "Gets or sets the time base.", + "nullable": true + }, + "CodecTimeBase": { + "type": "string", + "description": "Gets or sets the codec time base.", + "nullable": true + }, + "Title": { + "type": "string", + "description": "Gets or sets the title.", + "nullable": true + }, + "VideoRange": { + "type": "string", + "description": "Gets the video range.", + "nullable": true, + "readOnly": true + }, + "VideoRangeType": { + "type": "string", + "description": "Gets the video range type.", + "nullable": true, + "readOnly": true + }, + "VideoDoViTitle": { + "type": "string", + "description": "Gets the video dovi title.", + "nullable": true, + "readOnly": true + }, + "LocalizedUndefined": { + "type": "string", + "nullable": true + }, + "LocalizedDefault": { + "type": "string", + "nullable": true + }, + "LocalizedForced": { + "type": "string", + "nullable": true + }, + "LocalizedExternal": { + "type": "string", + "nullable": true + }, + "DisplayTitle": { + "type": "string", + "nullable": true, + "readOnly": true + }, + "NalLengthSize": { + "type": "string", + "nullable": true + }, + "IsInterlaced": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is interlaced." + }, + "IsAVC": { + "type": "boolean", + "nullable": true + }, + "ChannelLayout": { + "type": "string", + "description": "Gets or sets the channel layout.", + "nullable": true + }, + "BitRate": { + "type": "integer", + "description": "Gets or sets the bit rate.", + "format": "int32", + "nullable": true + }, + "BitDepth": { + "type": "integer", + "description": "Gets or sets the bit depth.", + "format": "int32", + "nullable": true + }, + "RefFrames": { + "type": "integer", + "description": "Gets or sets the reference frames.", + "format": "int32", + "nullable": true + }, + "PacketLength": { + "type": "integer", + "description": "Gets or sets the length of the packet.", + "format": "int32", + "nullable": true + }, + "Channels": { + "type": "integer", + "description": "Gets or sets the channels.", + "format": "int32", + "nullable": true + }, + "SampleRate": { + "type": "integer", + "description": "Gets or sets the sample rate.", + "format": "int32", + "nullable": true + }, + "IsDefault": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is default." + }, + "IsForced": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is forced." + }, + "Height": { + "type": "integer", + "description": "Gets or sets the height.", + "format": "int32", + "nullable": true + }, + "Width": { + "type": "integer", + "description": "Gets or sets the width.", + "format": "int32", + "nullable": true + }, + "AverageFrameRate": { + "type": "number", + "description": "Gets or sets the average frame rate.", + "format": "float", + "nullable": true + }, + "RealFrameRate": { + "type": "number", + "description": "Gets or sets the real frame rate.", + "format": "float", + "nullable": true + }, + "Profile": { + "type": "string", + "description": "Gets or sets the profile.", + "nullable": true + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaStreamType" + } + ], + "description": "Gets or sets the type." + }, + "AspectRatio": { + "type": "string", + "description": "Gets or sets the aspect ratio.", + "nullable": true + }, + "Index": { + "type": "integer", + "description": "Gets or sets the index.", + "format": "int32" + }, + "Score": { + "type": "integer", + "description": "Gets or sets the score.", + "format": "int32", + "nullable": true + }, + "IsExternal": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is external." + }, + "DeliveryMethod": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ], + "description": "Gets or sets the method.", + "nullable": true + }, + "DeliveryUrl": { + "type": "string", + "description": "Gets or sets the delivery URL.", + "nullable": true + }, + "IsExternalUrl": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is external URL.", + "nullable": true + }, + "IsTextSubtitleStream": { + "type": "boolean", + "readOnly": true + }, + "SupportsExternalStream": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [supports external stream]." + }, + "Path": { + "type": "string", + "description": "Gets or sets the filename.", + "nullable": true + }, + "PixelFormat": { + "type": "string", + "description": "Gets or sets the pixel format.", + "nullable": true + }, + "Level": { + "type": "number", + "description": "Gets or sets the level.", + "format": "double", + "nullable": true + }, + "IsAnamorphic": { + "type": "boolean", + "description": "Gets or sets whether this instance is anamorphic.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class MediaStream." + }, + "MediaStreamType": { + "enum": [ + "Audio", + "Video", + "Subtitle", + "EmbeddedImage" + ], + "type": "string", + "description": "Enum MediaStreamType." + }, + "MediaUpdateInfoDto": { + "type": "object", + "properties": { + "Updates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MediaUpdateInfoPathDto" + }, + "description": "Gets or sets the list of updates." + } + }, + "additionalProperties": false, + "description": "Media Update Info Dto." + }, + "MediaUpdateInfoPathDto": { + "type": "object", + "properties": { + "Path": { + "type": "string", + "description": "Gets or sets media path.", + "nullable": true + }, + "UpdateType": { + "type": "string", + "description": "Gets or sets media update type.\r\nCreated, Modified, Deleted.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "The media update info path." + }, + "MediaUrl": { + "type": "object", + "properties": { + "Url": { + "type": "string", + "nullable": true + }, + "Name": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "MessageCommand": { + "required": [ + "Text" + ], + "type": "object", + "properties": { + "Header": { + "type": "string", + "nullable": true + }, + "Text": { + "type": "string" + }, + "TimeoutMs": { + "type": "integer", + "format": "int64", + "nullable": true + } + }, + "additionalProperties": false + }, + "MetadataConfiguration": { + "type": "object", + "properties": { + "UseFileCreationTimeForDateAdded": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "MetadataEditorInfo": { + "type": "object", + "properties": { + "ParentalRatingOptions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ParentalRating" + } + }, + "Countries": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CountryInfo" + } + }, + "Cultures": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CultureDto" + } + }, + "ExternalIdInfos": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalIdInfo" + } + }, + "ContentType": { + "type": "string", + "nullable": true + }, + "ContentTypeOptions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameValuePair" + } + } + }, + "additionalProperties": false + }, + "MetadataField": { + "enum": [ + "Cast", + "Genres", + "ProductionLocations", + "Studios", + "Tags", + "Name", + "Overview", + "Runtime", + "OfficialRating" + ], + "type": "string", + "description": "Enum MetadataFields." + }, + "MetadataOptions": { + "type": "object", + "properties": { + "ItemType": { + "type": "string", + "nullable": true + }, + "DisabledMetadataSavers": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "LocalMetadataReaderOrder": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "DisabledMetadataFetchers": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "MetadataFetcherOrder": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "DisabledImageFetchers": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "ImageFetcherOrder": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class MetadataOptions." + }, + "MetadataRefreshMode": { + "enum": [ + "None", + "ValidationOnly", + "Default", + "FullRefresh" + ], + "type": "string" + }, + "MovePlaylistItemRequestDto": { + "type": "object", + "properties": { + "PlaylistItemId": { + "type": "string", + "description": "Gets or sets the playlist identifier of the item.", + "format": "uuid" + }, + "NewIndex": { + "type": "integer", + "description": "Gets or sets the new position.", + "format": "int32" + } + }, + "additionalProperties": false, + "description": "Class MovePlaylistItemRequestDto." + }, + "MovieInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "description": "Gets or sets the original title.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "MetadataLanguage": { + "type": "string", + "description": "Gets or sets the metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "Year": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "IsAutomated": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "MovieInfoRemoteSearchQuery": { + "type": "object", + "properties": { + "SearchInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/MovieInfo" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "format": "uuid" + }, + "SearchProviderName": { + "type": "string", + "description": "Gets or sets the provider name to search within if set.", + "nullable": true + }, + "IncludeDisabledProviders": { + "type": "boolean", + "description": "Gets or sets a value indicating whether disabled providers should be included." + } + }, + "additionalProperties": false + }, + "MusicVideoInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "description": "Gets or sets the original title.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "MetadataLanguage": { + "type": "string", + "description": "Gets or sets the metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "Year": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "IsAutomated": { + "type": "boolean" + }, + "Artists": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "MusicVideoInfoRemoteSearchQuery": { + "type": "object", + "properties": { + "SearchInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/MusicVideoInfo" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "format": "uuid" + }, + "SearchProviderName": { + "type": "string", + "description": "Gets or sets the provider name to search within if set.", + "nullable": true + }, + "IncludeDisabledProviders": { + "type": "boolean", + "description": "Gets or sets a value indicating whether disabled providers should be included." + } + }, + "additionalProperties": false + }, + "NameGuidPair": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "nullable": true + }, + "Id": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "NameIdPair": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the identifier.", + "nullable": true + } + }, + "additionalProperties": false + }, + "NameValuePair": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Value": { + "type": "string", + "description": "Gets or sets the value.", + "nullable": true + } + }, + "additionalProperties": false + }, + "NetworkConfiguration": { + "type": "object", + "properties": { + "RequireHttps": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the server should force connections over HTTPS." + }, + "CertificatePath": { + "type": "string", + "description": "Gets or sets the filesystem path of an X.509 certificate to use for SSL." + }, + "CertificatePassword": { + "type": "string", + "description": "Gets or sets the password required to access the X.509 certificate data in the file specified by Jellyfin.Networking.Configuration.NetworkConfiguration.CertificatePath." + }, + "BaseUrl": { + "type": "string", + "description": "Gets or sets a value used to specify the URL prefix that your Jellyfin instance can be accessed at." + }, + "PublicHttpsPort": { + "type": "integer", + "description": "Gets or sets the public HTTPS port.", + "format": "int32" + }, + "HttpServerPortNumber": { + "type": "integer", + "description": "Gets or sets the HTTP server port number.", + "format": "int32" + }, + "HttpsPortNumber": { + "type": "integer", + "description": "Gets or sets the HTTPS server port number.", + "format": "int32" + }, + "EnableHttps": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to use HTTPS." + }, + "PublicPort": { + "type": "integer", + "description": "Gets or sets the public mapped port.", + "format": "int32" + }, + "UPnPCreateHttpPortMap": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the http port should be mapped as part of UPnP automatic port forwarding." + }, + "UDPPortRange": { + "type": "string", + "description": "Gets or sets the UDPPortRange." + }, + "EnableIPV6": { + "type": "boolean", + "description": "Gets or sets a value indicating whether gets or sets IPV6 capability." + }, + "EnableIPV4": { + "type": "boolean", + "description": "Gets or sets a value indicating whether gets or sets IPV4 capability." + }, + "EnableSSDPTracing": { + "type": "boolean", + "description": "Gets or sets a value indicating whether detailed SSDP logs are sent to the console/log.\r\n\"Emby.Dlna\": \"Debug\" must be set in logging.default.json for this property to have any effect." + }, + "SSDPTracingFilter": { + "type": "string", + "description": "Gets or sets the SSDPTracingFilter\r\nGets or sets a value indicating whether an IP address is to be used to filter the detailed ssdp logs that are being sent to the console/log.\r\nIf the setting \"Emby.Dlna\": \"Debug\" msut be set in logging.default.json for this property to work." + }, + "UDPSendCount": { + "type": "integer", + "description": "Gets or sets the number of times SSDP UDP messages are sent.", + "format": "int32" + }, + "UDPSendDelay": { + "type": "integer", + "description": "Gets or sets the delay between each groups of SSDP messages (in ms).", + "format": "int32" + }, + "IgnoreVirtualInterfaces": { + "type": "boolean", + "description": "Gets or sets a value indicating whether address names that match Jellyfin.Networking.Configuration.NetworkConfiguration.VirtualInterfaceNames should be Ignore for the purposes of binding." + }, + "VirtualInterfaceNames": { + "type": "string", + "description": "Gets or sets a value indicating the interfaces that should be ignored. The list can be comma separated. ." + }, + "GatewayMonitorPeriod": { + "type": "integer", + "description": "Gets or sets the time (in seconds) between the pings of SSDP gateway monitor.", + "format": "int32" + }, + "EnableMultiSocketBinding": { + "type": "boolean", + "description": "Gets a value indicating whether multi-socket binding is available.", + "readOnly": true + }, + "TrustAllIP6Interfaces": { + "type": "boolean", + "description": "Gets or sets a value indicating whether all IPv6 interfaces should be treated as on the internal network.\r\nDepending on the address range implemented ULA ranges might not be used." + }, + "HDHomerunPortRange": { + "type": "string", + "description": "Gets or sets the ports that HDHomerun uses." + }, + "PublishedServerUriBySubnet": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the PublishedServerUriBySubnet\r\nGets or sets PublishedServerUri to advertise for specific subnets." + }, + "AutoDiscoveryTracing": { + "type": "boolean", + "description": "Gets or sets a value indicating whether Autodiscovery tracing is enabled." + }, + "AutoDiscovery": { + "type": "boolean", + "description": "Gets or sets a value indicating whether Autodiscovery is enabled." + }, + "RemoteIPFilter": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the filter for remote IP connectivity. Used in conjuntion with ." + }, + "IsRemoteIPFilterBlacklist": { + "type": "boolean", + "description": "Gets or sets a value indicating whether contains a blacklist or a whitelist. Default is a whitelist." + }, + "EnableUPnP": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to enable automatic port forwarding." + }, + "EnableRemoteAccess": { + "type": "boolean", + "description": "Gets or sets a value indicating whether access outside of the LAN is permitted." + }, + "LocalNetworkSubnets": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the subnets that are deemed to make up the LAN." + }, + "LocalNetworkAddresses": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the interface addresses which Jellyfin will bind to. If empty, all interfaces will be used." + }, + "KnownProxies": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the known proxies. If the proxy is a network, it's added to the KnownNetworks." + }, + "EnablePublishedServerUriByRequest": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the published server uri is based on information in HTTP requests." + } + }, + "additionalProperties": false, + "description": "Defines the Jellyfin.Networking.Configuration.NetworkConfiguration." + }, + "NewGroupRequestDto": { + "type": "object", + "properties": { + "GroupName": { + "type": "string", + "description": "Gets or sets the group name." + } + }, + "additionalProperties": false, + "description": "Class NewGroupRequestDto." + }, + "NextItemRequestDto": { + "type": "object", + "properties": { + "PlaylistItemId": { + "type": "string", + "description": "Gets or sets the playing item identifier.", + "format": "uuid" + } + }, + "additionalProperties": false, + "description": "Class NextItemRequestDto." + }, + "NotificationDto": { + "type": "object", + "properties": { + "Id": { + "type": "string", + "description": "Gets or sets the notification ID. Defaults to an empty string." + }, + "UserId": { + "type": "string", + "description": "Gets or sets the notification's user ID. Defaults to an empty string." + }, + "Date": { + "type": "string", + "description": "Gets or sets the notification date.", + "format": "date-time" + }, + "IsRead": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the notification has been read. Defaults to false." + }, + "Name": { + "type": "string", + "description": "Gets or sets the notification's name. Defaults to an empty string." + }, + "Description": { + "type": "string", + "description": "Gets or sets the notification's description. Defaults to an empty string." + }, + "Url": { + "type": "string", + "description": "Gets or sets the notification's URL. Defaults to an empty string." + }, + "Level": { + "allOf": [ + { + "$ref": "#/components/schemas/NotificationLevel" + } + ], + "description": "Gets or sets the notification level." + } + }, + "additionalProperties": false, + "description": "The notification DTO." + }, + "NotificationLevel": { + "enum": [ + "Normal", + "Warning", + "Error" + ], + "type": "string" + }, + "NotificationOption": { + "type": "object", + "properties": { + "Type": { + "type": "string", + "nullable": true + }, + "DisabledMonitorUsers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets user Ids to not monitor (it's opt out)." + }, + "SendToUsers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets user Ids to send to (if SendToUserMode == Custom)." + }, + "Enabled": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this MediaBrowser.Model.Notifications.NotificationOption is enabled." + }, + "DisabledServices": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the disabled services." + }, + "SendToUserMode": { + "allOf": [ + { + "$ref": "#/components/schemas/SendToUserType" + } + ], + "description": "Gets or sets the send to user mode." + } + }, + "additionalProperties": false + }, + "NotificationOptions": { + "type": "object", + "properties": { + "Options": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NotificationOption" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "NotificationResultDto": { + "type": "object", + "properties": { + "Notifications": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NotificationDto" + }, + "description": "Gets or sets the current page of notifications." + }, + "TotalRecordCount": { + "type": "integer", + "description": "Gets or sets the total number of notifications.", + "format": "int32" + } + }, + "additionalProperties": false, + "description": "A list of notifications with the total record count for pagination." + }, + "NotificationsSummaryDto": { + "type": "object", + "properties": { + "UnreadCount": { + "type": "integer", + "description": "Gets or sets the number of unread notifications.", + "format": "int32" + }, + "MaxUnreadNotificationLevel": { + "allOf": [ + { + "$ref": "#/components/schemas/NotificationLevel" + } + ], + "description": "Gets or sets the maximum unread notification level.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "The notification summary DTO." + }, + "NotificationTypeInfo": { + "type": "object", + "properties": { + "Type": { + "type": "string", + "nullable": true + }, + "Name": { + "type": "string", + "nullable": true + }, + "Enabled": { + "type": "boolean" + }, + "Category": { + "type": "string", + "nullable": true + }, + "IsBasedOnUserEvent": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "ObjectGroupUpdate": { + "type": "object", + "properties": { + "GroupId": { + "type": "string", + "description": "Gets the group identifier.", + "format": "uuid" + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/GroupUpdateType" + } + ], + "description": "Gets the update type." + }, + "Data": { + "description": "Gets the update data." + } + }, + "additionalProperties": false, + "description": "Class GroupUpdate." + }, + "OpenLiveStreamDto": { + "type": "object", + "properties": { + "OpenToken": { + "type": "string", + "description": "Gets or sets the open token.", + "nullable": true + }, + "UserId": { + "type": "string", + "description": "Gets or sets the user id.", + "format": "uuid", + "nullable": true + }, + "PlaySessionId": { + "type": "string", + "description": "Gets or sets the play session id.", + "nullable": true + }, + "MaxStreamingBitrate": { + "type": "integer", + "description": "Gets or sets the max streaming bitrate.", + "format": "int32", + "nullable": true + }, + "StartTimeTicks": { + "type": "integer", + "description": "Gets or sets the start time in ticks.", + "format": "int64", + "nullable": true + }, + "AudioStreamIndex": { + "type": "integer", + "description": "Gets or sets the audio stream index.", + "format": "int32", + "nullable": true + }, + "SubtitleStreamIndex": { + "type": "integer", + "description": "Gets or sets the subtitle stream index.", + "format": "int32", + "nullable": true + }, + "MaxAudioChannels": { + "type": "integer", + "description": "Gets or sets the max audio channels.", + "format": "int32", + "nullable": true + }, + "ItemId": { + "type": "string", + "description": "Gets or sets the item id.", + "format": "uuid", + "nullable": true + }, + "EnableDirectPlay": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to enable direct play.", + "nullable": true + }, + "EnableDirectStream": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to enale direct stream.", + "nullable": true + }, + "DeviceProfile": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfile" + } + ], + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't.", + "nullable": true + }, + "DirectPlayProtocols": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MediaProtocol" + }, + "description": "Gets or sets the device play protocols." + } + }, + "additionalProperties": false, + "description": "Open live stream dto." + }, + "PackageInfo": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Gets or sets the name." + }, + "description": { + "type": "string", + "description": "Gets or sets a long description of the plugin containing features or helpful explanations." + }, + "overview": { + "type": "string", + "description": "Gets or sets a short overview of what the plugin does." + }, + "owner": { + "type": "string", + "description": "Gets or sets the owner." + }, + "category": { + "type": "string", + "description": "Gets or sets the category." + }, + "guid": { + "type": "string", + "description": "Gets or sets the guid of the assembly associated with this plugin.\r\nThis is used to identify the proper item for automatic updates.", + "format": "uuid" + }, + "versions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VersionInfo" + }, + "description": "Gets or sets the versions." + }, + "imageUrl": { + "type": "string", + "description": "Gets or sets the image url for the package.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class PackageInfo." + }, + "ParentalRating": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Value": { + "type": "integer", + "description": "Gets or sets the value.", + "format": "int32" + } + }, + "additionalProperties": false, + "description": "Class ParentalRating." + }, + "PathSubstitution": { + "type": "object", + "properties": { + "From": { + "type": "string", + "description": "Gets or sets the value to substitute." + }, + "To": { + "type": "string", + "description": "Gets or sets the value to substitution with." + } + }, + "additionalProperties": false, + "description": "Defines the MediaBrowser.Model.Configuration.PathSubstitution." + }, + "PersonLookupInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "description": "Gets or sets the original title.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "MetadataLanguage": { + "type": "string", + "description": "Gets or sets the metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "Year": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "IsAutomated": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "PersonLookupInfoRemoteSearchQuery": { + "type": "object", + "properties": { + "SearchInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/PersonLookupInfo" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "format": "uuid" + }, + "SearchProviderName": { + "type": "string", + "description": "Gets or sets the provider name to search within if set.", + "nullable": true + }, + "IncludeDisabledProviders": { + "type": "boolean", + "description": "Gets or sets a value indicating whether disabled providers should be included." + } + }, + "additionalProperties": false + }, + "PingRequestDto": { + "type": "object", + "properties": { + "Ping": { + "type": "integer", + "description": "Gets or sets the ping time.", + "format": "int64" + } + }, + "additionalProperties": false, + "description": "Class PingRequestDto." + }, + "PinRedeemResult": { + "type": "object", + "properties": { + "Success": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this MediaBrowser.Model.Users.PinRedeemResult is success." + }, + "UsersReset": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the users reset." + } + }, + "additionalProperties": false + }, + "PlayAccess": { + "enum": [ + "Full", + "None" + ], + "type": "string" + }, + "PlaybackErrorCode": { + "enum": [ + "NotAllowed", + "NoCompatibleStream", + "RateLimitExceeded" + ], + "type": "string" + }, + "PlaybackInfoDto": { + "type": "object", + "properties": { + "UserId": { + "type": "string", + "description": "Gets or sets the playback userId.", + "format": "uuid", + "nullable": true + }, + "MaxStreamingBitrate": { + "type": "integer", + "description": "Gets or sets the max streaming bitrate.", + "format": "int32", + "nullable": true + }, + "StartTimeTicks": { + "type": "integer", + "description": "Gets or sets the start time in ticks.", + "format": "int64", + "nullable": true + }, + "AudioStreamIndex": { + "type": "integer", + "description": "Gets or sets the audio stream index.", + "format": "int32", + "nullable": true + }, + "SubtitleStreamIndex": { + "type": "integer", + "description": "Gets or sets the subtitle stream index.", + "format": "int32", + "nullable": true + }, + "MaxAudioChannels": { + "type": "integer", + "description": "Gets or sets the max audio channels.", + "format": "int32", + "nullable": true + }, + "MediaSourceId": { + "type": "string", + "description": "Gets or sets the media source id.", + "nullable": true + }, + "LiveStreamId": { + "type": "string", + "description": "Gets or sets the live stream id.", + "nullable": true + }, + "DeviceProfile": { + "allOf": [ + { + "$ref": "#/components/schemas/DeviceProfile" + } + ], + "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't.", + "nullable": true + }, + "EnableDirectPlay": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to enable direct play.", + "nullable": true + }, + "EnableDirectStream": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to enable direct stream.", + "nullable": true + }, + "EnableTranscoding": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to enable transcoding.", + "nullable": true + }, + "AllowVideoStreamCopy": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to enable video stream copy.", + "nullable": true + }, + "AllowAudioStreamCopy": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to allow audio stream copy.", + "nullable": true + }, + "AutoOpenLiveStream": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to auto open the live stream.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Plabyback info dto." + }, + "PlaybackInfoResponse": { + "type": "object", + "properties": { + "MediaSources": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MediaSourceInfo" + }, + "description": "Gets or sets the media sources." + }, + "PlaySessionId": { + "type": "string", + "description": "Gets or sets the play session identifier.", + "nullable": true + }, + "ErrorCode": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaybackErrorCode" + } + ], + "description": "Gets or sets the error code.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class PlaybackInfoResponse." + }, + "PlaybackProgressInfo": { + "type": "object", + "properties": { + "CanSeek": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance can seek." + }, + "Item": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemDto" + } + ], + "description": "Gets or sets the item.", + "nullable": true + }, + "ItemId": { + "type": "string", + "description": "Gets or sets the item identifier.", + "format": "uuid" + }, + "SessionId": { + "type": "string", + "description": "Gets or sets the session id.", + "nullable": true + }, + "MediaSourceId": { + "type": "string", + "description": "Gets or sets the media version identifier.", + "nullable": true + }, + "AudioStreamIndex": { + "type": "integer", + "description": "Gets or sets the index of the audio stream.", + "format": "int32", + "nullable": true + }, + "SubtitleStreamIndex": { + "type": "integer", + "description": "Gets or sets the index of the subtitle stream.", + "format": "int32", + "nullable": true + }, + "IsPaused": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is paused." + }, + "IsMuted": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is muted." + }, + "PositionTicks": { + "type": "integer", + "description": "Gets or sets the position ticks.", + "format": "int64", + "nullable": true + }, + "PlaybackStartTimeTicks": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "VolumeLevel": { + "type": "integer", + "description": "Gets or sets the volume level.", + "format": "int32", + "nullable": true + }, + "Brightness": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "AspectRatio": { + "type": "string", + "nullable": true + }, + "PlayMethod": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayMethod" + } + ], + "description": "Gets or sets the play method." + }, + "LiveStreamId": { + "type": "string", + "description": "Gets or sets the live stream identifier.", + "nullable": true + }, + "PlaySessionId": { + "type": "string", + "description": "Gets or sets the play session identifier.", + "nullable": true + }, + "RepeatMode": { + "allOf": [ + { + "$ref": "#/components/schemas/RepeatMode" + } + ], + "description": "Gets or sets the repeat mode." + }, + "NowPlayingQueue": { + "type": "array", + "items": { + "$ref": "#/components/schemas/QueueItem" + }, + "nullable": true + }, + "PlaylistItemId": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class PlaybackProgressInfo." + }, + "PlaybackStartInfo": { + "type": "object", + "properties": { + "CanSeek": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance can seek." + }, + "Item": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemDto" + } + ], + "description": "Gets or sets the item.", + "nullable": true + }, + "ItemId": { + "type": "string", + "description": "Gets or sets the item identifier.", + "format": "uuid" + }, + "SessionId": { + "type": "string", + "description": "Gets or sets the session id.", + "nullable": true + }, + "MediaSourceId": { + "type": "string", + "description": "Gets or sets the media version identifier.", + "nullable": true + }, + "AudioStreamIndex": { + "type": "integer", + "description": "Gets or sets the index of the audio stream.", + "format": "int32", + "nullable": true + }, + "SubtitleStreamIndex": { + "type": "integer", + "description": "Gets or sets the index of the subtitle stream.", + "format": "int32", + "nullable": true + }, + "IsPaused": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is paused." + }, + "IsMuted": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is muted." + }, + "PositionTicks": { + "type": "integer", + "description": "Gets or sets the position ticks.", + "format": "int64", + "nullable": true + }, + "PlaybackStartTimeTicks": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "VolumeLevel": { + "type": "integer", + "description": "Gets or sets the volume level.", + "format": "int32", + "nullable": true + }, + "Brightness": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "AspectRatio": { + "type": "string", + "nullable": true + }, + "PlayMethod": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayMethod" + } + ], + "description": "Gets or sets the play method." + }, + "LiveStreamId": { + "type": "string", + "description": "Gets or sets the live stream identifier.", + "nullable": true + }, + "PlaySessionId": { + "type": "string", + "description": "Gets or sets the play session identifier.", + "nullable": true + }, + "RepeatMode": { + "allOf": [ + { + "$ref": "#/components/schemas/RepeatMode" + } + ], + "description": "Gets or sets the repeat mode." + }, + "NowPlayingQueue": { + "type": "array", + "items": { + "$ref": "#/components/schemas/QueueItem" + }, + "nullable": true + }, + "PlaylistItemId": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class PlaybackStartInfo." + }, + "PlaybackStopInfo": { + "type": "object", + "properties": { + "Item": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemDto" + } + ], + "description": "Gets or sets the item.", + "nullable": true + }, + "ItemId": { + "type": "string", + "description": "Gets or sets the item identifier.", + "format": "uuid" + }, + "SessionId": { + "type": "string", + "description": "Gets or sets the session id.", + "nullable": true + }, + "MediaSourceId": { + "type": "string", + "description": "Gets or sets the media version identifier.", + "nullable": true + }, + "PositionTicks": { + "type": "integer", + "description": "Gets or sets the position ticks.", + "format": "int64", + "nullable": true + }, + "LiveStreamId": { + "type": "string", + "description": "Gets or sets the live stream identifier.", + "nullable": true + }, + "PlaySessionId": { + "type": "string", + "description": "Gets or sets the play session identifier.", + "nullable": true + }, + "Failed": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed." + }, + "NextMediaType": { + "type": "string", + "nullable": true + }, + "PlaylistItemId": { + "type": "string", + "nullable": true + }, + "NowPlayingQueue": { + "type": "array", + "items": { + "$ref": "#/components/schemas/QueueItem" + }, + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class PlaybackStopInfo." + }, + "PlayCommand": { + "enum": [ + "PlayNow", + "PlayNext", + "PlayLast", + "PlayInstantMix", + "PlayShuffle" + ], + "type": "string", + "description": "Enum PlayCommand." + }, + "PlayerStateInfo": { + "type": "object", + "properties": { + "PositionTicks": { + "type": "integer", + "description": "Gets or sets the now playing position ticks.", + "format": "int64", + "nullable": true + }, + "CanSeek": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance can seek." + }, + "IsPaused": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is paused." + }, + "IsMuted": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is muted." + }, + "VolumeLevel": { + "type": "integer", + "description": "Gets or sets the volume level.", + "format": "int32", + "nullable": true + }, + "AudioStreamIndex": { + "type": "integer", + "description": "Gets or sets the index of the now playing audio stream.", + "format": "int32", + "nullable": true + }, + "SubtitleStreamIndex": { + "type": "integer", + "description": "Gets or sets the index of the now playing subtitle stream.", + "format": "int32", + "nullable": true + }, + "MediaSourceId": { + "type": "string", + "description": "Gets or sets the now playing media version identifier.", + "nullable": true + }, + "PlayMethod": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayMethod" + } + ], + "description": "Gets or sets the play method.", + "nullable": true + }, + "RepeatMode": { + "allOf": [ + { + "$ref": "#/components/schemas/RepeatMode" + } + ], + "description": "Gets or sets the repeat mode." + }, + "LiveStreamId": { + "type": "string", + "description": "Gets or sets the now playing live stream identifier.", + "nullable": true + } + }, + "additionalProperties": false + }, + "PlaylistCreationResult": { + "type": "object", + "properties": { + "Id": { + "type": "string" + } + }, + "additionalProperties": false + }, + "PlayMethod": { + "enum": [ + "Transcode", + "DirectStream", + "DirectPlay" + ], + "type": "string" + }, + "PlayRequest": { + "type": "object", + "properties": { + "ItemIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "description": "Gets or sets the item ids.", + "nullable": true + }, + "StartPositionTicks": { + "type": "integer", + "description": "Gets or sets the start position ticks that the first item should be played at.", + "format": "int64", + "nullable": true + }, + "PlayCommand": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayCommand" + } + ], + "description": "Gets or sets the play command." + }, + "ControllingUserId": { + "type": "string", + "description": "Gets or sets the controlling user identifier.", + "format": "uuid" + }, + "SubtitleStreamIndex": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "AudioStreamIndex": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "MediaSourceId": { + "type": "string", + "nullable": true + }, + "StartIndex": { + "type": "integer", + "format": "int32", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class PlayRequest." + }, + "PlayRequestDto": { + "type": "object", + "properties": { + "PlayingQueue": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "description": "Gets or sets the playing queue." + }, + "PlayingItemPosition": { + "type": "integer", + "description": "Gets or sets the position of the playing item in the queue.", + "format": "int32" + }, + "StartPositionTicks": { + "type": "integer", + "description": "Gets or sets the start position ticks.", + "format": "int64" + } + }, + "additionalProperties": false, + "description": "Class PlayRequestDto." + }, + "PlaystateCommand": { + "enum": [ + "Stop", + "Pause", + "Unpause", + "NextTrack", + "PreviousTrack", + "Seek", + "Rewind", + "FastForward", + "PlayPause" + ], + "type": "string", + "description": "Enum PlaystateCommand." + }, + "PlaystateRequest": { + "type": "object", + "properties": { + "Command": { + "allOf": [ + { + "$ref": "#/components/schemas/PlaystateCommand" + } + ], + "description": "Enum PlaystateCommand." + }, + "SeekPositionTicks": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "ControllingUserId": { + "type": "string", + "description": "Gets or sets the controlling user identifier.", + "nullable": true + } + }, + "additionalProperties": false + }, + "PluginInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name." + }, + "Version": { + "type": "string", + "description": "Gets or sets the version." + }, + "ConfigurationFileName": { + "type": "string", + "description": "Gets or sets the name of the configuration file.", + "nullable": true + }, + "Description": { + "type": "string", + "description": "Gets or sets the description." + }, + "Id": { + "type": "string", + "description": "Gets or sets the unique id.", + "format": "uuid" + }, + "CanUninstall": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the plugin can be uninstalled." + }, + "HasImage": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this plugin has a valid image." + }, + "Status": { + "allOf": [ + { + "$ref": "#/components/schemas/PluginStatus" + } + ], + "description": "Gets or sets a value indicating the status of the plugin." + } + }, + "additionalProperties": false, + "description": "This is a serializable stub class that is used by the api to provide information about installed plugins." + }, + "PluginStatus": { + "enum": [ + "Active", + "Restart", + "Deleted", + "Superceded", + "Malfunctioned", + "NotSupported", + "Disabled" + ], + "type": "string", + "description": "Plugin load status." + }, + "PreviousItemRequestDto": { + "type": "object", + "properties": { + "PlaylistItemId": { + "type": "string", + "description": "Gets or sets the playing item identifier.", + "format": "uuid" + } + }, + "additionalProperties": false, + "description": "Class PreviousItemRequestDto." + }, + "ProblemDetails": { + "type": "object", + "properties": { + "type": { + "type": "string", + "nullable": true + }, + "title": { + "type": "string", + "nullable": true + }, + "status": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "detail": { + "type": "string", + "nullable": true + }, + "instance": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": { } + }, + "ProfileCondition": { + "type": "object", + "properties": { + "Condition": { + "allOf": [ + { + "$ref": "#/components/schemas/ProfileConditionType" + } + ] + }, + "Property": { + "allOf": [ + { + "$ref": "#/components/schemas/ProfileConditionValue" + } + ] + }, + "Value": { + "type": "string", + "nullable": true + }, + "IsRequired": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "ProfileConditionType": { + "enum": [ + "Equals", + "NotEquals", + "LessThanEqual", + "GreaterThanEqual", + "EqualsAny" + ], + "type": "string" + }, + "ProfileConditionValue": { + "enum": [ + "AudioChannels", + "AudioBitrate", + "AudioProfile", + "Width", + "Height", + "Has64BitOffsets", + "PacketLength", + "VideoBitDepth", + "VideoBitrate", + "VideoFramerate", + "VideoLevel", + "VideoProfile", + "VideoTimestamp", + "IsAnamorphic", + "RefFrames", + "NumAudioStreams", + "NumVideoStreams", + "IsSecondaryAudio", + "VideoCodecTag", + "IsAvc", + "IsInterlaced", + "AudioSampleRate", + "AudioBitDepth", + "VideoRangeType" + ], + "type": "string" + }, + "ProgramAudio": { + "enum": [ + "Mono", + "Stereo", + "Dolby", + "DolbyDigital", + "Thx", + "Atmos" + ], + "type": "string" + }, + "PublicSystemInfo": { + "type": "object", + "properties": { + "LocalAddress": { + "type": "string", + "description": "Gets or sets the local address.", + "nullable": true + }, + "ServerName": { + "type": "string", + "description": "Gets or sets the name of the server.", + "nullable": true + }, + "Version": { + "type": "string", + "description": "Gets or sets the server version.", + "nullable": true + }, + "ProductName": { + "type": "string", + "description": "Gets or sets the product name. This is the AssemblyProduct name.", + "nullable": true + }, + "OperatingSystem": { + "type": "string", + "description": "Gets or sets the operating system.", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the id.", + "nullable": true + }, + "StartupWizardCompleted": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the startup wizard is completed.", + "nullable": true + } + }, + "additionalProperties": false + }, + "QueryFilters": { + "type": "object", + "properties": { + "Genres": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameGuidPair" + }, + "nullable": true + }, + "Tags": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "QueryFiltersLegacy": { + "type": "object", + "properties": { + "Genres": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "Tags": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "OfficialRatings": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "Years": { + "type": "array", + "items": { + "type": "integer", + "format": "int32" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "QueueItem": { + "type": "object", + "properties": { + "Id": { + "type": "string", + "format": "uuid" + }, + "PlaylistItemId": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "QueueRequestDto": { + "type": "object", + "properties": { + "ItemIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "description": "Gets or sets the items to enqueue." + }, + "Mode": { + "allOf": [ + { + "$ref": "#/components/schemas/GroupQueueMode" + } + ], + "description": "Enum GroupQueueMode." + } + }, + "additionalProperties": false, + "description": "Class QueueRequestDto." + }, + "QuickConnectDto": { + "required": [ + "Secret" + ], + "type": "object", + "properties": { + "Secret": { + "type": "string", + "description": "Gets or sets the quick connect secret." + } + }, + "additionalProperties": false, + "description": "The quick connect request body." + }, + "QuickConnectResult": { + "type": "object", + "properties": { + "Authenticated": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this request is authorized." + }, + "Secret": { + "type": "string", + "description": "Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information." + }, + "Code": { + "type": "string", + "description": "Gets the user facing code used so the user can quickly differentiate this request from others." + }, + "DeviceId": { + "type": "string", + "description": "Gets the requesting device id." + }, + "DeviceName": { + "type": "string", + "description": "Gets the requesting device name." + }, + "AppName": { + "type": "string", + "description": "Gets the requesting app name." + }, + "AppVersion": { + "type": "string", + "description": "Gets the requesting app version." + }, + "DateAdded": { + "type": "string", + "description": "Gets or sets the DateTime that this request was created.", + "format": "date-time" + } + }, + "additionalProperties": false, + "description": "Stores the state of an quick connect request." + }, + "RatingType": { + "enum": [ + "Score", + "Likes" + ], + "type": "string" + }, + "ReadyRequestDto": { + "type": "object", + "properties": { + "When": { + "type": "string", + "description": "Gets or sets when the request has been made by the client.", + "format": "date-time" + }, + "PositionTicks": { + "type": "integer", + "description": "Gets or sets the position ticks.", + "format": "int64" + }, + "IsPlaying": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the client playback is unpaused." + }, + "PlaylistItemId": { + "type": "string", + "description": "Gets or sets the playlist item identifier of the playing item.", + "format": "uuid" + } + }, + "additionalProperties": false, + "description": "Class ReadyRequest." + }, + "RecommendationDto": { + "type": "object", + "properties": { + "Items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + }, + "nullable": true + }, + "RecommendationType": { + "allOf": [ + { + "$ref": "#/components/schemas/RecommendationType" + } + ] + }, + "BaselineItemName": { + "type": "string", + "nullable": true + }, + "CategoryId": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, + "RecommendationType": { + "enum": [ + "SimilarToRecentlyPlayed", + "SimilarToLikedItem", + "HasDirectorFromRecentlyPlayed", + "HasActorFromRecentlyPlayed", + "HasLikedDirector", + "HasLikedActor" + ], + "type": "string" + }, + "RecordingStatus": { + "enum": [ + "New", + "InProgress", + "Completed", + "Cancelled", + "ConflictedOk", + "ConflictedNotOk", + "Error" + ], + "type": "string" + }, + "RemoteImageInfo": { + "type": "object", + "properties": { + "ProviderName": { + "type": "string", + "description": "Gets or sets the name of the provider.", + "nullable": true + }, + "Url": { + "type": "string", + "description": "Gets or sets the URL.", + "nullable": true + }, + "ThumbnailUrl": { + "type": "string", + "description": "Gets or sets a url used for previewing a smaller version.", + "nullable": true + }, + "Height": { + "type": "integer", + "description": "Gets or sets the height.", + "format": "int32", + "nullable": true + }, + "Width": { + "type": "integer", + "description": "Gets or sets the width.", + "format": "int32", + "nullable": true + }, + "CommunityRating": { + "type": "number", + "description": "Gets or sets the community rating.", + "format": "double", + "nullable": true + }, + "VoteCount": { + "type": "integer", + "description": "Gets or sets the vote count.", + "format": "int32", + "nullable": true + }, + "Language": { + "type": "string", + "description": "Gets or sets the language.", + "nullable": true + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageType" + } + ], + "description": "Gets or sets the type." + }, + "RatingType": { + "allOf": [ + { + "$ref": "#/components/schemas/RatingType" + } + ], + "description": "Gets or sets the type of the rating." + } + }, + "additionalProperties": false, + "description": "Class RemoteImageInfo." + }, + "RemoteImageResult": { + "type": "object", + "properties": { + "Images": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteImageInfo" + }, + "description": "Gets or sets the images.", + "nullable": true + }, + "TotalRecordCount": { + "type": "integer", + "description": "Gets or sets the total record count.", + "format": "int32" + }, + "Providers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the providers.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class RemoteImageResult." + }, + "RemoteSearchResult": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "ProductionYear": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "IndexNumberEnd": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "ImageUrl": { + "type": "string", + "nullable": true + }, + "SearchProviderName": { + "type": "string", + "nullable": true + }, + "Overview": { + "type": "string", + "nullable": true + }, + "AlbumArtist": { + "allOf": [ + { + "$ref": "#/components/schemas/RemoteSearchResult" + } + ], + "nullable": true + }, + "Artists": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RemoteSearchResult" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "RemoteSubtitleInfo": { + "type": "object", + "properties": { + "ThreeLetterISOLanguageName": { + "type": "string", + "nullable": true + }, + "Id": { + "type": "string", + "nullable": true + }, + "ProviderName": { + "type": "string", + "nullable": true + }, + "Name": { + "type": "string", + "nullable": true + }, + "Format": { + "type": "string", + "nullable": true + }, + "Author": { + "type": "string", + "nullable": true + }, + "Comment": { + "type": "string", + "nullable": true + }, + "DateCreated": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "CommunityRating": { + "type": "number", + "format": "float", + "nullable": true + }, + "DownloadCount": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "IsHashMatch": { + "type": "boolean", + "nullable": true + } + }, + "additionalProperties": false + }, + "RemoveFromPlaylistRequestDto": { + "type": "object", + "properties": { + "PlaylistItemIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "description": "Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist." + }, + "ClearPlaylist": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the entire playlist should be cleared." + }, + "ClearPlayingItem": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist." + } + }, + "additionalProperties": false, + "description": "Class RemoveFromPlaylistRequestDto." + }, + "RepeatMode": { + "enum": [ + "RepeatNone", + "RepeatAll", + "RepeatOne" + ], + "type": "string" + }, + "RepositoryInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Url": { + "type": "string", + "description": "Gets or sets the URL.", + "nullable": true + }, + "Enabled": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the repository is enabled." + } + }, + "additionalProperties": false, + "description": "Class RepositoryInfo." + }, + "ResponseProfile": { + "type": "object", + "properties": { + "Container": { + "type": "string", + "nullable": true + }, + "AudioCodec": { + "type": "string", + "nullable": true + }, + "VideoCodec": { + "type": "string", + "nullable": true + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/DlnaProfileType" + } + ] + }, + "OrgPn": { + "type": "string", + "nullable": true + }, + "MimeType": { + "type": "string", + "nullable": true + }, + "Conditions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ProfileCondition" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ScrollDirection": { + "enum": [ + "Horizontal", + "Vertical" + ], + "type": "string", + "description": "An enum representing the axis that should be scrolled." + }, + "SearchHint": { + "type": "object", + "properties": { + "ItemId": { + "type": "string", + "description": "Gets or sets the item id.", + "format": "uuid" + }, + "Id": { + "type": "string", + "format": "uuid" + }, + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "MatchedTerm": { + "type": "string", + "description": "Gets or sets the matched term.", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "description": "Gets or sets the index number.", + "format": "int32", + "nullable": true + }, + "ProductionYear": { + "type": "integer", + "description": "Gets or sets the production year.", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "description": "Gets or sets the parent index number.", + "format": "int32", + "nullable": true + }, + "PrimaryImageTag": { + "type": "string", + "description": "Gets or sets the image tag.", + "nullable": true + }, + "ThumbImageTag": { + "type": "string", + "description": "Gets or sets the thumb image tag.", + "nullable": true + }, + "ThumbImageItemId": { + "type": "string", + "description": "Gets or sets the thumb image item identifier.", + "nullable": true + }, + "BackdropImageTag": { + "type": "string", + "description": "Gets or sets the backdrop image tag.", + "nullable": true + }, + "BackdropImageItemId": { + "type": "string", + "description": "Gets or sets the backdrop image item identifier.", + "nullable": true + }, + "Type": { + "type": "string", + "description": "Gets or sets the type.", + "nullable": true + }, + "IsFolder": { + "type": "boolean", + "nullable": true + }, + "RunTimeTicks": { + "type": "integer", + "description": "Gets or sets the run time ticks.", + "format": "int64", + "nullable": true + }, + "MediaType": { + "type": "string", + "description": "Gets or sets the type of the media.", + "nullable": true + }, + "StartDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "EndDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "Series": { + "type": "string", + "description": "Gets or sets the series.", + "nullable": true + }, + "Status": { + "type": "string", + "nullable": true + }, + "Album": { + "type": "string", + "description": "Gets or sets the album.", + "nullable": true + }, + "AlbumId": { + "type": "string", + "format": "uuid" + }, + "AlbumArtist": { + "type": "string", + "description": "Gets or sets the album artist.", + "nullable": true + }, + "Artists": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the artists.", + "nullable": true + }, + "SongCount": { + "type": "integer", + "description": "Gets or sets the song count.", + "format": "int32", + "nullable": true + }, + "EpisodeCount": { + "type": "integer", + "description": "Gets or sets the episode count.", + "format": "int32", + "nullable": true + }, + "ChannelId": { + "type": "string", + "description": "Gets or sets the channel identifier.", + "format": "uuid" + }, + "ChannelName": { + "type": "string", + "description": "Gets or sets the name of the channel.", + "nullable": true + }, + "PrimaryImageAspectRatio": { + "type": "number", + "description": "Gets or sets the primary image aspect ratio.", + "format": "double", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class SearchHintResult." + }, + "SearchHintResult": { + "type": "object", + "properties": { + "SearchHints": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SearchHint" + }, + "description": "Gets the search hints." + }, + "TotalRecordCount": { + "type": "integer", + "description": "Gets the total record count.", + "format": "int32" + } + }, + "additionalProperties": false, + "description": "Class SearchHintResult." + }, + "SeekRequestDto": { + "type": "object", + "properties": { + "PositionTicks": { + "type": "integer", + "description": "Gets or sets the position ticks.", + "format": "int64" + } + }, + "additionalProperties": false, + "description": "Class SeekRequestDto." + }, + "SendCommand": { + "type": "object", + "properties": { + "GroupId": { + "type": "string", + "description": "Gets the group identifier.", + "format": "uuid" + }, + "PlaylistItemId": { + "type": "string", + "description": "Gets the playlist identifier of the playing item.", + "format": "uuid" + }, + "When": { + "type": "string", + "description": "Gets or sets the UTC time when to execute the command.", + "format": "date-time" + }, + "PositionTicks": { + "type": "integer", + "description": "Gets the position ticks.", + "format": "int64", + "nullable": true + }, + "Command": { + "allOf": [ + { + "$ref": "#/components/schemas/SendCommandType" + } + ], + "description": "Gets the command." + }, + "EmittedAt": { + "type": "string", + "description": "Gets the UTC time when this command has been emitted.", + "format": "date-time" + } + }, + "additionalProperties": false, + "description": "Class SendCommand." + }, + "SendCommandType": { + "enum": [ + "Unpause", + "Pause", + "Stop", + "Seek" + ], + "type": "string", + "description": "Enum SendCommandType." + }, + "SendToUserType": { + "enum": [ + "All", + "Admins", + "Custom" + ], + "type": "string" + }, + "SeriesInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "description": "Gets or sets the original title.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "MetadataLanguage": { + "type": "string", + "description": "Gets or sets the metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "Year": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "IsAutomated": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "SeriesInfoRemoteSearchQuery": { + "type": "object", + "properties": { + "SearchInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/SeriesInfo" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "format": "uuid" + }, + "SearchProviderName": { + "type": "string", + "description": "Gets or sets the provider name to search within if set.", + "nullable": true + }, + "IncludeDisabledProviders": { + "type": "boolean", + "description": "Gets or sets a value indicating whether disabled providers should be included." + } + }, + "additionalProperties": false + }, + "SeriesStatus": { + "enum": [ + "Continuing", + "Ended" + ], + "type": "string", + "description": "Enum SeriesStatus." + }, + "SeriesTimerInfoDto": { + "type": "object", + "properties": { + "Id": { + "type": "string", + "description": "Gets or sets the Id of the recording.", + "nullable": true + }, + "Type": { + "type": "string", + "nullable": true + }, + "ServerId": { + "type": "string", + "description": "Gets or sets the server identifier.", + "nullable": true + }, + "ExternalId": { + "type": "string", + "description": "Gets or sets the external identifier.", + "nullable": true + }, + "ChannelId": { + "type": "string", + "description": "Gets or sets the channel id of the recording.", + "format": "uuid" + }, + "ExternalChannelId": { + "type": "string", + "description": "Gets or sets the external channel identifier.", + "nullable": true + }, + "ChannelName": { + "type": "string", + "description": "Gets or sets the channel name of the recording.", + "nullable": true + }, + "ChannelPrimaryImageTag": { + "type": "string", + "nullable": true + }, + "ProgramId": { + "type": "string", + "description": "Gets or sets the program identifier.", + "nullable": true + }, + "ExternalProgramId": { + "type": "string", + "description": "Gets or sets the external program identifier.", + "nullable": true + }, + "Name": { + "type": "string", + "description": "Gets or sets the name of the recording.", + "nullable": true + }, + "Overview": { + "type": "string", + "description": "Gets or sets the description of the recording.", + "nullable": true + }, + "StartDate": { + "type": "string", + "description": "Gets or sets the start date of the recording, in UTC.", + "format": "date-time" + }, + "EndDate": { + "type": "string", + "description": "Gets or sets the end date of the recording, in UTC.", + "format": "date-time" + }, + "ServiceName": { + "type": "string", + "description": "Gets or sets the name of the service.", + "nullable": true + }, + "Priority": { + "type": "integer", + "description": "Gets or sets the priority.", + "format": "int32" + }, + "PrePaddingSeconds": { + "type": "integer", + "description": "Gets or sets the pre padding seconds.", + "format": "int32" + }, + "PostPaddingSeconds": { + "type": "integer", + "description": "Gets or sets the post padding seconds.", + "format": "int32" + }, + "IsPrePaddingRequired": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is pre padding required." + }, + "ParentBackdropItemId": { + "type": "string", + "description": "Gets or sets the Id of the Parent that has a backdrop if the item does not have one.", + "nullable": true + }, + "ParentBackdropImageTags": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the parent backdrop image tags.", + "nullable": true + }, + "IsPostPaddingRequired": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is post padding required." + }, + "KeepUntil": { + "allOf": [ + { + "$ref": "#/components/schemas/KeepUntil" + } + ] + }, + "RecordAnyTime": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [record any time]." + }, + "SkipEpisodesInLibrary": { + "type": "boolean" + }, + "RecordAnyChannel": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [record any channel]." + }, + "KeepUpTo": { + "type": "integer", + "format": "int32" + }, + "RecordNewOnly": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [record new only]." + }, + "Days": { + "type": "array", + "items": { + "$ref": "#/components/schemas/DayOfWeek" + }, + "description": "Gets or sets the days.", + "nullable": true + }, + "DayPattern": { + "allOf": [ + { + "$ref": "#/components/schemas/DayPattern" + } + ], + "description": "Gets or sets the day pattern.", + "nullable": true + }, + "ImageTags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Gets or sets the image tags.", + "nullable": true + }, + "ParentThumbItemId": { + "type": "string", + "description": "Gets or sets the parent thumb item id.", + "nullable": true + }, + "ParentThumbImageTag": { + "type": "string", + "description": "Gets or sets the parent thumb image tag.", + "nullable": true + }, + "ParentPrimaryImageItemId": { + "type": "string", + "description": "Gets or sets the parent primary image item identifier.", + "nullable": true + }, + "ParentPrimaryImageTag": { + "type": "string", + "description": "Gets or sets the parent primary image tag.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class SeriesTimerInfoDto." + }, + "SeriesTimerInfoDtoQueryResult": { + "type": "object", + "properties": { + "Items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SeriesTimerInfoDto" + }, + "description": "Gets or sets the items.", + "nullable": true + }, + "TotalRecordCount": { + "type": "integer", + "description": "Gets or sets the total number of records available.", + "format": "int32" + }, + "StartIndex": { + "type": "integer", + "description": "Gets or sets the index of the first record in Items.", + "format": "int32" + } + }, + "additionalProperties": false + }, + "ServerConfiguration": { + "type": "object", + "properties": { + "LogFileRetentionDays": { + "type": "integer", + "description": "Gets or sets the number of days we should retain log files.", + "format": "int32" + }, + "IsStartupWizardCompleted": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is first run." + }, + "CachePath": { + "type": "string", + "description": "Gets or sets the cache path.", + "nullable": true + }, + "PreviousVersion": { + "type": "string", + "description": "Gets or sets the last known version that was ran using the configuration.", + "nullable": true + }, + "PreviousVersionStr": { + "type": "string", + "description": "Gets or sets the stringified PreviousVersion to be stored/loaded,\r\nbecause System.Version itself isn't xml-serializable.", + "nullable": true + }, + "EnableMetrics": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to enable prometheus metrics exporting." + }, + "EnableNormalizedItemByNameIds": { + "type": "boolean" + }, + "IsPortAuthorized": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is port authorized." + }, + "QuickConnectAvailable": { + "type": "boolean", + "description": "Gets or sets a value indicating whether quick connect is available for use on this server." + }, + "EnableCaseSensitiveItemIds": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [enable case sensitive item ids]." + }, + "DisableLiveTvChannelUserDataName": { + "type": "boolean" + }, + "MetadataPath": { + "type": "string", + "description": "Gets or sets the metadata path." + }, + "MetadataNetworkPath": { + "type": "string" + }, + "PreferredMetadataLanguage": { + "type": "string", + "description": "Gets or sets the preferred metadata language." + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code." + }, + "SortReplaceCharacters": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets characters to be replaced with a ' ' in strings to create a sort name." + }, + "SortRemoveCharacters": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets characters to be removed from strings to create a sort name." + }, + "SortRemoveWords": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets words to be removed from strings to create a sort name." + }, + "MinResumePct": { + "type": "integer", + "description": "Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated.", + "format": "int32" + }, + "MaxResumePct": { + "type": "integer", + "description": "Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched.", + "format": "int32" + }, + "MinResumeDurationSeconds": { + "type": "integer", + "description": "Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates..", + "format": "int32" + }, + "MinAudiobookResume": { + "type": "integer", + "description": "Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated.", + "format": "int32" + }, + "MaxAudiobookResume": { + "type": "integer", + "description": "Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched.", + "format": "int32" + }, + "LibraryMonitorDelay": { + "type": "integer", + "description": "Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added/removed\r\nSome delay is necessary with some items because their creation is not atomic. It involves the creation of several\r\ndifferent directories and files.", + "format": "int32" + }, + "ImageSavingConvention": { + "allOf": [ + { + "$ref": "#/components/schemas/ImageSavingConvention" + } + ], + "description": "Gets or sets the image saving convention." + }, + "MetadataOptions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MetadataOptions" + } + }, + "SkipDeserializationForBasicTypes": { + "type": "boolean" + }, + "ServerName": { + "type": "string" + }, + "UICulture": { + "type": "string" + }, + "SaveMetadataHidden": { + "type": "boolean" + }, + "ContentTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NameValuePair" + } + }, + "RemoteClientBitrateLimit": { + "type": "integer", + "format": "int32" + }, + "EnableFolderView": { + "type": "boolean" + }, + "EnableGroupingIntoCollections": { + "type": "boolean" + }, + "DisplaySpecialsWithinSeasons": { + "type": "boolean" + }, + "CodecsUsed": { + "type": "array", + "items": { + "type": "string" + } + }, + "PluginRepositories": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RepositoryInfo" + } + }, + "EnableExternalContentInSuggestions": { + "type": "boolean" + }, + "ImageExtractionTimeoutMs": { + "type": "integer", + "format": "int32" + }, + "PathSubstitutions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PathSubstitution" + } + }, + "EnableSlowResponseWarning": { + "type": "boolean", + "description": "Gets or sets a value indicating whether slow server responses should be logged as a warning." + }, + "SlowResponseThresholdMs": { + "type": "integer", + "description": "Gets or sets the threshold for the slow response time warning in ms.", + "format": "int64" + }, + "CorsHosts": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the cors hosts." + }, + "ActivityLogRetentionDays": { + "type": "integer", + "description": "Gets or sets the number of days we should retain activity logs.", + "format": "int32", + "nullable": true + }, + "LibraryScanFanoutConcurrency": { + "type": "integer", + "description": "Gets or sets the how the library scan fans out.", + "format": "int32" + }, + "LibraryMetadataRefreshConcurrency": { + "type": "integer", + "description": "Gets or sets the how many metadata refreshes can run concurrently.", + "format": "int32" + }, + "RemoveOldPlugins": { + "type": "boolean", + "description": "Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder." + }, + "AllowClientLogUpload": { + "type": "boolean", + "description": "Gets or sets a value indicating whether clients should be allowed to upload logs." + } + }, + "additionalProperties": false, + "description": "Represents the server configuration." + }, + "ServerDiscoveryInfo": { + "type": "object", + "properties": { + "Address": { + "type": "string", + "description": "Gets the address." + }, + "Id": { + "type": "string", + "description": "Gets the server identifier." + }, + "Name": { + "type": "string", + "description": "Gets the name." + }, + "EndpointAddress": { + "type": "string", + "description": "Gets the endpoint address.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "The server discovery info model." + }, + "SessionInfo": { + "type": "object", + "properties": { + "PlayState": { + "allOf": [ + { + "$ref": "#/components/schemas/PlayerStateInfo" + } + ], + "nullable": true + }, + "AdditionalUsers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SessionUserInfo" + }, + "nullable": true + }, + "Capabilities": { + "allOf": [ + { + "$ref": "#/components/schemas/ClientCapabilities" + } + ], + "nullable": true + }, + "RemoteEndPoint": { + "type": "string", + "description": "Gets or sets the remote end point.", + "nullable": true + }, + "PlayableMediaTypes": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets the playable media types.", + "nullable": true, + "readOnly": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the id.", + "nullable": true + }, + "UserId": { + "type": "string", + "description": "Gets or sets the user id.", + "format": "uuid" + }, + "UserName": { + "type": "string", + "description": "Gets or sets the username.", + "nullable": true + }, + "Client": { + "type": "string", + "description": "Gets or sets the type of the client.", + "nullable": true + }, + "LastActivityDate": { + "type": "string", + "description": "Gets or sets the last activity date.", + "format": "date-time" + }, + "LastPlaybackCheckIn": { + "type": "string", + "description": "Gets or sets the last playback check in.", + "format": "date-time" + }, + "DeviceName": { + "type": "string", + "description": "Gets or sets the name of the device.", + "nullable": true + }, + "DeviceType": { + "type": "string", + "description": "Gets or sets the type of the device.", + "nullable": true + }, + "NowPlayingItem": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemDto" + } + ], + "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client.", + "nullable": true + }, + "FullNowPlayingItem": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItem" + } + ], + "description": "Class BaseItem.", + "nullable": true + }, + "NowViewingItem": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemDto" + } + ], + "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client.", + "nullable": true + }, + "DeviceId": { + "type": "string", + "description": "Gets or sets the device id.", + "nullable": true + }, + "ApplicationVersion": { + "type": "string", + "description": "Gets or sets the application version.", + "nullable": true + }, + "TranscodingInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/TranscodingInfo" + } + ], + "nullable": true + }, + "IsActive": { + "type": "boolean", + "description": "Gets a value indicating whether this instance is active.", + "readOnly": true + }, + "SupportsMediaControl": { + "type": "boolean", + "readOnly": true + }, + "SupportsRemoteControl": { + "type": "boolean", + "readOnly": true + }, + "NowPlayingQueue": { + "type": "array", + "items": { + "$ref": "#/components/schemas/QueueItem" + }, + "nullable": true + }, + "NowPlayingQueueFullItems": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + }, + "nullable": true + }, + "HasCustomDeviceName": { + "type": "boolean" + }, + "PlaylistItemId": { + "type": "string", + "nullable": true + }, + "ServerId": { + "type": "string", + "nullable": true + }, + "UserPrimaryImageTag": { + "type": "string", + "nullable": true + }, + "SupportedCommands": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GeneralCommandType" + }, + "description": "Gets the supported commands.", + "nullable": true, + "readOnly": true + } + }, + "additionalProperties": false, + "description": "Class SessionInfo." + }, + "SessionMessageType": { + "enum": [ + "ForceKeepAlive", + "GeneralCommand", + "UserDataChanged", + "Sessions", + "Play", + "SyncPlayCommand", + "SyncPlayGroupUpdate", + "Playstate", + "RestartRequired", + "ServerShuttingDown", + "ServerRestarting", + "LibraryChanged", + "UserDeleted", + "UserUpdated", + "SeriesTimerCreated", + "TimerCreated", + "SeriesTimerCancelled", + "TimerCancelled", + "RefreshProgress", + "ScheduledTaskEnded", + "PackageInstallationCancelled", + "PackageInstallationFailed", + "PackageInstallationCompleted", + "PackageInstalling", + "PackageUninstalled", + "ActivityLogEntry", + "ScheduledTasksInfo", + "ActivityLogEntryStart", + "ActivityLogEntryStop", + "SessionsStart", + "SessionsStop", + "ScheduledTasksInfoStart", + "ScheduledTasksInfoStop", + "KeepAlive" + ], + "type": "string", + "description": "The different kinds of messages that are used in the WebSocket api." + }, + "SessionUserInfo": { + "type": "object", + "properties": { + "UserId": { + "type": "string", + "description": "Gets or sets the user identifier.", + "format": "uuid" + }, + "UserName": { + "type": "string", + "description": "Gets or sets the name of the user.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class SessionUserInfo." + }, + "SetChannelMappingDto": { + "required": [ + "ProviderChannelId", + "ProviderId", + "TunerChannelId" + ], + "type": "object", + "properties": { + "ProviderId": { + "type": "string", + "description": "Gets or sets the provider id." + }, + "TunerChannelId": { + "type": "string", + "description": "Gets or sets the tuner channel id." + }, + "ProviderChannelId": { + "type": "string", + "description": "Gets or sets the provider channel id." + } + }, + "additionalProperties": false, + "description": "Set channel mapping dto." + }, + "SetPlaylistItemRequestDto": { + "type": "object", + "properties": { + "PlaylistItemId": { + "type": "string", + "description": "Gets or sets the playlist identifier of the playing item.", + "format": "uuid" + } + }, + "additionalProperties": false, + "description": "Class SetPlaylistItemRequestDto." + }, + "SetRepeatModeRequestDto": { + "type": "object", + "properties": { + "Mode": { + "allOf": [ + { + "$ref": "#/components/schemas/GroupRepeatMode" + } + ], + "description": "Enum GroupRepeatMode." + } + }, + "additionalProperties": false, + "description": "Class SetRepeatModeRequestDto." + }, + "SetShuffleModeRequestDto": { + "type": "object", + "properties": { + "Mode": { + "allOf": [ + { + "$ref": "#/components/schemas/GroupShuffleMode" + } + ], + "description": "Enum GroupShuffleMode." + } + }, + "additionalProperties": false, + "description": "Class SetShuffleModeRequestDto." + }, + "SongInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "description": "Gets or sets the original title.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "MetadataLanguage": { + "type": "string", + "description": "Gets or sets the metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "Year": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "IsAutomated": { + "type": "boolean" + }, + "AlbumArtists": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "Album": { + "type": "string", + "nullable": true + }, + "Artists": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "SortOrder": { + "enum": [ + "Ascending", + "Descending" + ], + "type": "string", + "description": "An enum representing the sorting order." + }, + "SpecialViewOptionDto": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets view option name.", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets view option id.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Special view option dto." + }, + "StartupConfigurationDto": { + "type": "object", + "properties": { + "UICulture": { + "type": "string", + "description": "Gets or sets UI language culture.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "PreferredMetadataLanguage": { + "type": "string", + "description": "Gets or sets the preferred language for the metadata.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "The startup configuration DTO." + }, + "StartupRemoteAccessDto": { + "required": [ + "EnableAutomaticPortMapping", + "EnableRemoteAccess" + ], + "type": "object", + "properties": { + "EnableRemoteAccess": { + "type": "boolean", + "description": "Gets or sets a value indicating whether enable remote access." + }, + "EnableAutomaticPortMapping": { + "type": "boolean", + "description": "Gets or sets a value indicating whether enable automatic port mapping." + } + }, + "additionalProperties": false, + "description": "Startup remote access dto." + }, + "StartupUserDto": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the username.", + "nullable": true + }, + "Password": { + "type": "string", + "description": "Gets or sets the user's password.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "The startup user DTO." + }, + "SubtitleDeliveryMethod": { + "enum": [ + "Encode", + "Embed", + "External", + "Hls", + "Drop" + ], + "type": "string", + "description": "Delivery method to use during playback of a specific subtitle format." + }, + "SubtitleOptions": { + "type": "object", + "properties": { + "SkipIfEmbeddedSubtitlesPresent": { + "type": "boolean" + }, + "SkipIfAudioTrackMatches": { + "type": "boolean" + }, + "DownloadLanguages": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "DownloadMovieSubtitles": { + "type": "boolean" + }, + "DownloadEpisodeSubtitles": { + "type": "boolean" + }, + "OpenSubtitlesUsername": { + "type": "string", + "nullable": true + }, + "OpenSubtitlesPasswordHash": { + "type": "string", + "nullable": true + }, + "IsOpenSubtitleVipAccount": { + "type": "boolean" + }, + "RequirePerfectMatch": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "SubtitlePlaybackMode": { + "enum": [ + "Default", + "Always", + "OnlyForced", + "None", + "Smart" + ], + "type": "string", + "description": "An enum representing a subtitle playback mode." + }, + "SubtitleProfile": { + "type": "object", + "properties": { + "Format": { + "type": "string", + "nullable": true + }, + "Method": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitleDeliveryMethod" + } + ], + "description": "Delivery method to use during playback of a specific subtitle format." + }, + "DidlMode": { + "type": "string", + "nullable": true + }, + "Language": { + "type": "string", + "nullable": true + }, + "Container": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "SyncPlayUserAccessType": { + "enum": [ + "CreateAndJoinGroups", + "JoinGroups", + "None" + ], + "type": "string", + "description": "Enum SyncPlayUserAccessType." + }, + "SystemInfo": { + "type": "object", + "properties": { + "LocalAddress": { + "type": "string", + "description": "Gets or sets the local address.", + "nullable": true + }, + "ServerName": { + "type": "string", + "description": "Gets or sets the name of the server.", + "nullable": true + }, + "Version": { + "type": "string", + "description": "Gets or sets the server version.", + "nullable": true + }, + "ProductName": { + "type": "string", + "description": "Gets or sets the product name. This is the AssemblyProduct name.", + "nullable": true + }, + "OperatingSystem": { + "type": "string", + "description": "Gets or sets the operating system.", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the id.", + "nullable": true + }, + "StartupWizardCompleted": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the startup wizard is completed.", + "nullable": true + }, + "OperatingSystemDisplayName": { + "type": "string", + "description": "Gets or sets the display name of the operating system.", + "nullable": true + }, + "PackageName": { + "type": "string", + "description": "Gets or sets the package name.", + "nullable": true + }, + "HasPendingRestart": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance has pending restart." + }, + "IsShuttingDown": { + "type": "boolean" + }, + "SupportsLibraryMonitor": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [supports library monitor]." + }, + "WebSocketPortNumber": { + "type": "integer", + "description": "Gets or sets the web socket port number.", + "format": "int32" + }, + "CompletedInstallations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/InstallationInfo" + }, + "description": "Gets or sets the completed installations.", + "nullable": true + }, + "CanSelfRestart": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance can self restart." + }, + "CanLaunchWebBrowser": { + "type": "boolean" + }, + "ProgramDataPath": { + "type": "string", + "description": "Gets or sets the program data path.", + "nullable": true + }, + "WebPath": { + "type": "string", + "description": "Gets or sets the web UI resources path.", + "nullable": true + }, + "ItemsByNamePath": { + "type": "string", + "description": "Gets or sets the items by name path.", + "nullable": true + }, + "CachePath": { + "type": "string", + "description": "Gets or sets the cache path.", + "nullable": true + }, + "LogPath": { + "type": "string", + "description": "Gets or sets the log path.", + "nullable": true + }, + "InternalMetadataPath": { + "type": "string", + "description": "Gets or sets the internal metadata path.", + "nullable": true + }, + "TranscodingTempPath": { + "type": "string", + "description": "Gets or sets the transcode path.", + "nullable": true + }, + "HasUpdateAvailable": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance has update available.", + "deprecated": true + }, + "EncoderLocation": { + "allOf": [ + { + "$ref": "#/components/schemas/FFmpegLocation" + } + ], + "description": "Enum describing the location of the FFmpeg tool.", + "deprecated": true + }, + "SystemArchitecture": { + "allOf": [ + { + "$ref": "#/components/schemas/Architecture" + } + ] + } + }, + "additionalProperties": false, + "description": "Class SystemInfo." + }, + "TaskCompletionStatus": { + "enum": [ + "Completed", + "Failed", + "Cancelled", + "Aborted" + ], + "type": "string", + "description": "Enum TaskCompletionStatus." + }, + "TaskInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "State": { + "allOf": [ + { + "$ref": "#/components/schemas/TaskState" + } + ], + "description": "Gets or sets the state of the task." + }, + "CurrentProgressPercentage": { + "type": "number", + "description": "Gets or sets the progress.", + "format": "double", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the id.", + "nullable": true + }, + "LastExecutionResult": { + "allOf": [ + { + "$ref": "#/components/schemas/TaskResult" + } + ], + "description": "Gets or sets the last execution result.", + "nullable": true + }, + "Triggers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TaskTriggerInfo" + }, + "description": "Gets or sets the triggers.", + "nullable": true + }, + "Description": { + "type": "string", + "description": "Gets or sets the description.", + "nullable": true + }, + "Category": { + "type": "string", + "description": "Gets or sets the category.", + "nullable": true + }, + "IsHidden": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is hidden." + }, + "Key": { + "type": "string", + "description": "Gets or sets the key.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class TaskInfo." + }, + "TaskResult": { + "type": "object", + "properties": { + "StartTimeUtc": { + "type": "string", + "description": "Gets or sets the start time UTC.", + "format": "date-time" + }, + "EndTimeUtc": { + "type": "string", + "description": "Gets or sets the end time UTC.", + "format": "date-time" + }, + "Status": { + "allOf": [ + { + "$ref": "#/components/schemas/TaskCompletionStatus" + } + ], + "description": "Gets or sets the status." + }, + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Key": { + "type": "string", + "description": "Gets or sets the key.", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the id.", + "nullable": true + }, + "ErrorMessage": { + "type": "string", + "description": "Gets or sets the error message.", + "nullable": true + }, + "LongErrorMessage": { + "type": "string", + "description": "Gets or sets the long error message.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class TaskExecutionInfo." + }, + "TaskState": { + "enum": [ + "Idle", + "Cancelling", + "Running" + ], + "type": "string", + "description": "Enum TaskState." + }, + "TaskTriggerInfo": { + "type": "object", + "properties": { + "Type": { + "type": "string", + "description": "Gets or sets the type.", + "nullable": true + }, + "TimeOfDayTicks": { + "type": "integer", + "description": "Gets or sets the time of day.", + "format": "int64", + "nullable": true + }, + "IntervalTicks": { + "type": "integer", + "description": "Gets or sets the interval.", + "format": "int64", + "nullable": true + }, + "DayOfWeek": { + "allOf": [ + { + "$ref": "#/components/schemas/DayOfWeek" + } + ], + "description": "Gets or sets the day of week.", + "nullable": true + }, + "MaxRuntimeTicks": { + "type": "integer", + "description": "Gets or sets the maximum runtime ticks.", + "format": "int64", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class TaskTriggerInfo." + }, + "ThemeMediaResult": { + "type": "object", + "properties": { + "Items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/BaseItemDto" + }, + "description": "Gets or sets the items.", + "nullable": true + }, + "TotalRecordCount": { + "type": "integer", + "description": "Gets or sets the total number of records available.", + "format": "int32" + }, + "StartIndex": { + "type": "integer", + "description": "Gets or sets the index of the first record in Items.", + "format": "int32" + }, + "OwnerId": { + "type": "string", + "description": "Gets or sets the owner id.", + "format": "uuid" + } + }, + "additionalProperties": false, + "description": "Class ThemeMediaResult." + }, + "TimerEventInfo": { + "type": "object", + "properties": { + "Id": { + "type": "string" + }, + "ProgramId": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "TimerInfoDto": { + "type": "object", + "properties": { + "Id": { + "type": "string", + "description": "Gets or sets the Id of the recording.", + "nullable": true + }, + "Type": { + "type": "string", + "nullable": true + }, + "ServerId": { + "type": "string", + "description": "Gets or sets the server identifier.", + "nullable": true + }, + "ExternalId": { + "type": "string", + "description": "Gets or sets the external identifier.", + "nullable": true + }, + "ChannelId": { + "type": "string", + "description": "Gets or sets the channel id of the recording.", + "format": "uuid" + }, + "ExternalChannelId": { + "type": "string", + "description": "Gets or sets the external channel identifier.", + "nullable": true + }, + "ChannelName": { + "type": "string", + "description": "Gets or sets the channel name of the recording.", + "nullable": true + }, + "ChannelPrimaryImageTag": { + "type": "string", + "nullable": true + }, + "ProgramId": { + "type": "string", + "description": "Gets or sets the program identifier.", + "nullable": true + }, + "ExternalProgramId": { + "type": "string", + "description": "Gets or sets the external program identifier.", + "nullable": true + }, + "Name": { + "type": "string", + "description": "Gets or sets the name of the recording.", + "nullable": true + }, + "Overview": { + "type": "string", + "description": "Gets or sets the description of the recording.", + "nullable": true + }, + "StartDate": { + "type": "string", + "description": "Gets or sets the start date of the recording, in UTC.", + "format": "date-time" + }, + "EndDate": { + "type": "string", + "description": "Gets or sets the end date of the recording, in UTC.", + "format": "date-time" + }, + "ServiceName": { + "type": "string", + "description": "Gets or sets the name of the service.", + "nullable": true + }, + "Priority": { + "type": "integer", + "description": "Gets or sets the priority.", + "format": "int32" + }, + "PrePaddingSeconds": { + "type": "integer", + "description": "Gets or sets the pre padding seconds.", + "format": "int32" + }, + "PostPaddingSeconds": { + "type": "integer", + "description": "Gets or sets the post padding seconds.", + "format": "int32" + }, + "IsPrePaddingRequired": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is pre padding required." + }, + "ParentBackdropItemId": { + "type": "string", + "description": "Gets or sets the Id of the Parent that has a backdrop if the item does not have one.", + "nullable": true + }, + "ParentBackdropImageTags": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the parent backdrop image tags.", + "nullable": true + }, + "IsPostPaddingRequired": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is post padding required." + }, + "KeepUntil": { + "allOf": [ + { + "$ref": "#/components/schemas/KeepUntil" + } + ] + }, + "Status": { + "allOf": [ + { + "$ref": "#/components/schemas/RecordingStatus" + } + ], + "description": "Gets or sets the status." + }, + "SeriesTimerId": { + "type": "string", + "description": "Gets or sets the series timer identifier.", + "nullable": true + }, + "ExternalSeriesTimerId": { + "type": "string", + "description": "Gets or sets the external series timer identifier.", + "nullable": true + }, + "RunTimeTicks": { + "type": "integer", + "description": "Gets or sets the run time ticks.", + "format": "int64", + "nullable": true + }, + "ProgramInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/BaseItemDto" + } + ], + "description": "Gets or sets the program information.", + "nullable": true + } + }, + "additionalProperties": false + }, + "TimerInfoDtoQueryResult": { + "type": "object", + "properties": { + "Items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TimerInfoDto" + }, + "description": "Gets or sets the items.", + "nullable": true + }, + "TotalRecordCount": { + "type": "integer", + "description": "Gets or sets the total number of records available.", + "format": "int32" + }, + "StartIndex": { + "type": "integer", + "description": "Gets or sets the index of the first record in Items.", + "format": "int32" + } + }, + "additionalProperties": false + }, + "TrailerInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "OriginalTitle": { + "type": "string", + "description": "Gets or sets the original title.", + "nullable": true + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "MetadataLanguage": { + "type": "string", + "description": "Gets or sets the metadata language.", + "nullable": true + }, + "MetadataCountryCode": { + "type": "string", + "description": "Gets or sets the metadata country code.", + "nullable": true + }, + "ProviderIds": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "description": "Gets or sets the provider ids.", + "nullable": true + }, + "Year": { + "type": "integer", + "description": "Gets or sets the year.", + "format": "int32", + "nullable": true + }, + "IndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "ParentIndexNumber": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "PremiereDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "IsAutomated": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "TrailerInfoRemoteSearchQuery": { + "type": "object", + "properties": { + "SearchInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/TrailerInfo" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "format": "uuid" + }, + "SearchProviderName": { + "type": "string", + "description": "Gets or sets the provider name to search within if set.", + "nullable": true + }, + "IncludeDisabledProviders": { + "type": "boolean", + "description": "Gets or sets a value indicating whether disabled providers should be included." + } + }, + "additionalProperties": false + }, + "TranscodeSeekInfo": { + "enum": [ + "Auto", + "Bytes" + ], + "type": "string" + }, + "TranscodingInfo": { + "type": "object", + "properties": { + "AudioCodec": { + "type": "string", + "nullable": true + }, + "VideoCodec": { + "type": "string", + "nullable": true + }, + "Container": { + "type": "string", + "nullable": true + }, + "IsVideoDirect": { + "type": "boolean" + }, + "IsAudioDirect": { + "type": "boolean" + }, + "Bitrate": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "Framerate": { + "type": "number", + "format": "float", + "nullable": true + }, + "CompletionPercentage": { + "type": "number", + "format": "double", + "nullable": true + }, + "Width": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "Height": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "AudioChannels": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "HardwareAccelerationType": { + "allOf": [ + { + "$ref": "#/components/schemas/HardwareEncodingType" + } + ], + "nullable": true + }, + "TranscodeReasons": { + "enum": [ + "ContainerNotSupported", + "VideoCodecNotSupported", + "AudioCodecNotSupported", + "SubtitleCodecNotSupported", + "AudioIsExternal", + "SecondaryAudioNotSupported", + "VideoProfileNotSupported", + "VideoLevelNotSupported", + "VideoResolutionNotSupported", + "VideoBitDepthNotSupported", + "VideoFramerateNotSupported", + "RefFramesNotSupported", + "AnamorphicVideoNotSupported", + "InterlacedVideoNotSupported", + "AudioChannelsNotSupported", + "AudioProfileNotSupported", + "AudioSampleRateNotSupported", + "AudioBitDepthNotSupported", + "ContainerBitrateExceedsLimit", + "VideoBitrateNotSupported", + "AudioBitrateNotSupported", + "UnknownVideoStreamInfo", + "UnknownAudioStreamInfo", + "DirectPlayError", + "VideoRangeTypeNotSupported" + ], + "type": "string" + } + }, + "additionalProperties": false + }, + "TranscodingProfile": { + "type": "object", + "properties": { + "Container": { + "type": "string" + }, + "Type": { + "allOf": [ + { + "$ref": "#/components/schemas/DlnaProfileType" + } + ] + }, + "VideoCodec": { + "type": "string" + }, + "AudioCodec": { + "type": "string" + }, + "Protocol": { + "type": "string" + }, + "EstimateContentLength": { + "type": "boolean", + "default": false + }, + "EnableMpegtsM2TsMode": { + "type": "boolean", + "default": false + }, + "TranscodeSeekInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/TranscodeSeekInfo" + } + ], + "default": "Auto" + }, + "CopyTimestamps": { + "type": "boolean", + "default": false + }, + "Context": { + "allOf": [ + { + "$ref": "#/components/schemas/EncodingContext" + } + ], + "default": "Streaming" + }, + "EnableSubtitlesInManifest": { + "type": "boolean", + "default": false + }, + "MaxAudioChannels": { + "type": "string", + "nullable": true + }, + "MinSegments": { + "type": "integer", + "format": "int32", + "default": 0 + }, + "SegmentLength": { + "type": "integer", + "format": "int32", + "default": 0 + }, + "BreakOnNonKeyFrames": { + "type": "boolean", + "default": false + }, + "Conditions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ProfileCondition" + } + } + }, + "additionalProperties": false + }, + "TransportStreamTimestamp": { + "enum": [ + "None", + "Zero", + "Valid" + ], + "type": "string" + }, + "TunerChannelMapping": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "nullable": true + }, + "ProviderChannelName": { + "type": "string", + "nullable": true + }, + "ProviderChannelId": { + "type": "string", + "nullable": true + }, + "Id": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "TunerHostInfo": { + "type": "object", + "properties": { + "Id": { + "type": "string", + "nullable": true + }, + "Url": { + "type": "string", + "nullable": true + }, + "Type": { + "type": "string", + "nullable": true + }, + "DeviceId": { + "type": "string", + "nullable": true + }, + "FriendlyName": { + "type": "string", + "nullable": true + }, + "ImportFavoritesOnly": { + "type": "boolean" + }, + "AllowHWTranscoding": { + "type": "boolean" + }, + "EnableStreamLooping": { + "type": "boolean" + }, + "Source": { + "type": "string", + "nullable": true + }, + "TunerCount": { + "type": "integer", + "format": "int32" + }, + "UserAgent": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "TypeOptions": { + "type": "object", + "properties": { + "Type": { + "type": "string", + "nullable": true + }, + "MetadataFetchers": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "MetadataFetcherOrder": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "ImageFetchers": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "ImageFetcherOrder": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "ImageOptions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ImageOption" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "UnratedItem": { + "enum": [ + "Movie", + "Trailer", + "Series", + "Music", + "Book", + "LiveTvChannel", + "LiveTvProgram", + "ChannelContent", + "Other" + ], + "type": "string", + "description": "An enum representing an unrated item." + }, + "UpdateLibraryOptionsDto": { + "type": "object", + "properties": { + "Id": { + "type": "string", + "description": "Gets or sets the library item id.", + "format": "uuid" + }, + "LibraryOptions": { + "allOf": [ + { + "$ref": "#/components/schemas/LibraryOptions" + } + ], + "description": "Gets or sets library options.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Update library options dto." + }, + "UpdateMediaPathRequestDto": { + "required": [ + "Name", + "PathInfo" + ], + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the library name." + }, + "PathInfo": { + "allOf": [ + { + "$ref": "#/components/schemas/MediaPathInfo" + } + ], + "description": "Gets or sets library folder path information." + } + }, + "additionalProperties": false, + "description": "Update library options dto." + }, + "UpdateUserEasyPassword": { + "type": "object", + "properties": { + "NewPassword": { + "type": "string", + "description": "Gets or sets the new sha1-hashed password.", + "nullable": true + }, + "NewPw": { + "type": "string", + "description": "Gets or sets the new password.", + "nullable": true + }, + "ResetPassword": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to reset the password." + } + }, + "additionalProperties": false, + "description": "The update user easy password request body." + }, + "UpdateUserPassword": { + "type": "object", + "properties": { + "CurrentPassword": { + "type": "string", + "description": "Gets or sets the current sha1-hashed password.", + "nullable": true + }, + "CurrentPw": { + "type": "string", + "description": "Gets or sets the current plain text password.", + "nullable": true + }, + "NewPw": { + "type": "string", + "description": "Gets or sets the new plain text password.", + "nullable": true + }, + "ResetPassword": { + "type": "boolean", + "description": "Gets or sets a value indicating whether to reset the password." + } + }, + "additionalProperties": false, + "description": "The update user password request body." + }, + "UploadSubtitleDto": { + "required": [ + "Data", + "Format", + "IsForced", + "Language" + ], + "type": "object", + "properties": { + "Language": { + "type": "string", + "description": "Gets or sets the subtitle language." + }, + "Format": { + "type": "string", + "description": "Gets or sets the subtitle format." + }, + "IsForced": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the subtitle is forced." + }, + "Data": { + "type": "string", + "description": "Gets or sets the subtitle data." + } + }, + "additionalProperties": false, + "description": "Upload subtitles dto." + }, + "UserConfiguration": { + "type": "object", + "properties": { + "AudioLanguagePreference": { + "type": "string", + "description": "Gets or sets the audio language preference.", + "nullable": true + }, + "PlayDefaultAudioTrack": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [play default audio track]." + }, + "SubtitleLanguagePreference": { + "type": "string", + "description": "Gets or sets the subtitle language preference.", + "nullable": true + }, + "DisplayMissingEpisodes": { + "type": "boolean" + }, + "GroupedFolders": { + "type": "array", + "items": { + "type": "string" + } + }, + "SubtitleMode": { + "allOf": [ + { + "$ref": "#/components/schemas/SubtitlePlaybackMode" + } + ], + "description": "An enum representing a subtitle playback mode." + }, + "DisplayCollectionsView": { + "type": "boolean" + }, + "EnableLocalPassword": { + "type": "boolean" + }, + "OrderedViews": { + "type": "array", + "items": { + "type": "string" + } + }, + "LatestItemsExcludes": { + "type": "array", + "items": { + "type": "string" + } + }, + "MyMediaExcludes": { + "type": "array", + "items": { + "type": "string" + } + }, + "HidePlayedInLatest": { + "type": "boolean" + }, + "RememberAudioSelections": { + "type": "boolean" + }, + "RememberSubtitleSelections": { + "type": "boolean" + }, + "EnableNextEpisodeAutoPlay": { + "type": "boolean" + } + }, + "additionalProperties": false, + "description": "Class UserConfiguration." + }, + "UserDto": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "ServerId": { + "type": "string", + "description": "Gets or sets the server identifier.", + "nullable": true + }, + "ServerName": { + "type": "string", + "description": "Gets or sets the name of the server.\r\nThis is not used by the server and is for client-side usage only.", + "nullable": true + }, + "Id": { + "type": "string", + "description": "Gets or sets the id.", + "format": "uuid" + }, + "PrimaryImageTag": { + "type": "string", + "description": "Gets or sets the primary image tag.", + "nullable": true + }, + "HasPassword": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance has password." + }, + "HasConfiguredPassword": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance has configured password." + }, + "HasConfiguredEasyPassword": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance has configured easy password." + }, + "EnableAutoLogin": { + "type": "boolean", + "description": "Gets or sets whether async login is enabled or not.", + "nullable": true + }, + "LastLoginDate": { + "type": "string", + "description": "Gets or sets the last login date.", + "format": "date-time", + "nullable": true + }, + "LastActivityDate": { + "type": "string", + "description": "Gets or sets the last activity date.", + "format": "date-time", + "nullable": true + }, + "Configuration": { + "allOf": [ + { + "$ref": "#/components/schemas/UserConfiguration" + } + ], + "description": "Gets or sets the configuration.", + "nullable": true + }, + "Policy": { + "allOf": [ + { + "$ref": "#/components/schemas/UserPolicy" + } + ], + "description": "Gets or sets the policy.", + "nullable": true + }, + "PrimaryImageAspectRatio": { + "type": "number", + "description": "Gets or sets the primary image aspect ratio.", + "format": "double", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class UserDto." + }, + "UserItemDataDto": { + "type": "object", + "properties": { + "Rating": { + "type": "number", + "description": "Gets or sets the rating.", + "format": "double", + "nullable": true + }, + "PlayedPercentage": { + "type": "number", + "description": "Gets or sets the played percentage.", + "format": "double", + "nullable": true + }, + "UnplayedItemCount": { + "type": "integer", + "description": "Gets or sets the unplayed item count.", + "format": "int32", + "nullable": true + }, + "PlaybackPositionTicks": { + "type": "integer", + "description": "Gets or sets the playback position ticks.", + "format": "int64" + }, + "PlayCount": { + "type": "integer", + "description": "Gets or sets the play count.", + "format": "int32" + }, + "IsFavorite": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is favorite." + }, + "Likes": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes.", + "nullable": true + }, + "LastPlayedDate": { + "type": "string", + "description": "Gets or sets the last played date.", + "format": "date-time", + "nullable": true + }, + "Played": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played." + }, + "Key": { + "type": "string", + "description": "Gets or sets the key.", + "nullable": true + }, + "ItemId": { + "type": "string", + "description": "Gets or sets the item identifier.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Class UserItemDataDto." + }, + "UserPolicy": { + "type": "object", + "properties": { + "IsAdministrator": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is administrator." + }, + "IsHidden": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is hidden." + }, + "IsDisabled": { + "type": "boolean", + "description": "Gets or sets a value indicating whether this instance is disabled." + }, + "MaxParentalRating": { + "type": "integer", + "description": "Gets or sets the max parental rating.", + "format": "int32", + "nullable": true + }, + "BlockedTags": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "EnableUserPreferenceAccess": { + "type": "boolean" + }, + "AccessSchedules": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AccessSchedule" + }, + "nullable": true + }, + "BlockUnratedItems": { + "type": "array", + "items": { + "$ref": "#/components/schemas/UnratedItem" + }, + "nullable": true + }, + "EnableRemoteControlOfOtherUsers": { + "type": "boolean" + }, + "EnableSharedDeviceControl": { + "type": "boolean" + }, + "EnableRemoteAccess": { + "type": "boolean" + }, + "EnableLiveTvManagement": { + "type": "boolean" + }, + "EnableLiveTvAccess": { + "type": "boolean" + }, + "EnableMediaPlayback": { + "type": "boolean" + }, + "EnableAudioPlaybackTranscoding": { + "type": "boolean" + }, + "EnableVideoPlaybackTranscoding": { + "type": "boolean" + }, + "EnablePlaybackRemuxing": { + "type": "boolean" + }, + "ForceRemoteSourceTranscoding": { + "type": "boolean" + }, + "EnableContentDeletion": { + "type": "boolean" + }, + "EnableContentDeletionFromFolders": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "EnableContentDownloading": { + "type": "boolean" + }, + "EnableSyncTranscoding": { + "type": "boolean", + "description": "Gets or sets a value indicating whether [enable synchronize]." + }, + "EnableMediaConversion": { + "type": "boolean" + }, + "EnabledDevices": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "EnableAllDevices": { + "type": "boolean" + }, + "EnabledChannels": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "EnableAllChannels": { + "type": "boolean" + }, + "EnabledFolders": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "EnableAllFolders": { + "type": "boolean" + }, + "InvalidLoginAttemptCount": { + "type": "integer", + "format": "int32" + }, + "LoginAttemptsBeforeLockout": { + "type": "integer", + "format": "int32" + }, + "MaxActiveSessions": { + "type": "integer", + "format": "int32" + }, + "EnablePublicSharing": { + "type": "boolean" + }, + "BlockedMediaFolders": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "BlockedChannels": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "nullable": true + }, + "RemoteClientBitrateLimit": { + "type": "integer", + "format": "int32" + }, + "AuthenticationProviderId": { + "type": "string", + "nullable": true + }, + "PasswordResetProviderId": { + "type": "string", + "nullable": true + }, + "SyncPlayAccess": { + "allOf": [ + { + "$ref": "#/components/schemas/SyncPlayUserAccessType" + } + ], + "description": "Gets or sets a value indicating what SyncPlay features the user can access." + } + }, + "additionalProperties": false + }, + "UtcTimeResponse": { + "type": "object", + "properties": { + "RequestReceptionTime": { + "type": "string", + "description": "Gets the UTC time when request has been received.", + "format": "date-time" + }, + "ResponseTransmissionTime": { + "type": "string", + "description": "Gets the UTC time when response has been sent.", + "format": "date-time" + } + }, + "additionalProperties": false, + "description": "Class UtcTimeResponse." + }, + "ValidatePathDto": { + "type": "object", + "properties": { + "ValidateWritable": { + "type": "boolean", + "description": "Gets or sets a value indicating whether validate if path is writable." + }, + "Path": { + "type": "string", + "description": "Gets or sets the path.", + "nullable": true + }, + "IsFile": { + "type": "boolean", + "description": "Gets or sets is path file.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Validate path object." + }, + "VersionInfo": { + "type": "object", + "properties": { + "version": { + "type": "string", + "description": "Gets or sets the version." + }, + "VersionNumber": { + "type": "string", + "description": "Gets the version as a System.Version.", + "readOnly": true + }, + "changelog": { + "type": "string", + "description": "Gets or sets the changelog for this version.", + "nullable": true + }, + "targetAbi": { + "type": "string", + "description": "Gets or sets the ABI that this version was built against.", + "nullable": true + }, + "sourceUrl": { + "type": "string", + "description": "Gets or sets the source URL.", + "nullable": true + }, + "checksum": { + "type": "string", + "description": "Gets or sets a checksum for the binary.", + "nullable": true + }, + "timestamp": { + "type": "string", + "description": "Gets or sets a timestamp of when the binary was built.", + "nullable": true + }, + "repositoryName": { + "type": "string", + "description": "Gets or sets the repository name." + }, + "repositoryUrl": { + "type": "string", + "description": "Gets or sets the repository url." + } + }, + "additionalProperties": false, + "description": "Defines the MediaBrowser.Model.Updates.VersionInfo class." + }, + "Video3DFormat": { + "enum": [ + "HalfSideBySide", + "FullSideBySide", + "FullTopAndBottom", + "HalfTopAndBottom", + "MVC" + ], + "type": "string" + }, + "VideoType": { + "enum": [ + "VideoFile", + "Iso", + "Dvd", + "BluRay" + ], + "type": "string", + "description": "Enum VideoType." + }, + "VirtualFolderInfo": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name.", + "nullable": true + }, + "Locations": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Gets or sets the locations.", + "nullable": true + }, + "CollectionType": { + "allOf": [ + { + "$ref": "#/components/schemas/CollectionTypeOptions" + } + ], + "description": "Gets or sets the type of the collection.", + "nullable": true + }, + "LibraryOptions": { + "allOf": [ + { + "$ref": "#/components/schemas/LibraryOptions" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "description": "Gets or sets the item identifier.", + "nullable": true + }, + "PrimaryImageItemId": { + "type": "string", + "description": "Gets or sets the primary image item identifier.", + "nullable": true + }, + "RefreshProgress": { + "type": "number", + "format": "double", + "nullable": true + }, + "RefreshStatus": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Used to hold information about a user's list of configured virtual folders." + }, + "WakeOnLanInfo": { + "type": "object", + "properties": { + "MacAddress": { + "type": "string", + "description": "Gets the MAC address of the device.", + "nullable": true + }, + "Port": { + "type": "integer", + "description": "Gets or sets the wake-on-LAN port.", + "format": "int32" + } + }, + "additionalProperties": false, + "description": "Provides the MAC address and port for wake-on-LAN functionality." + }, + "XbmcMetadataOptions": { + "type": "object", + "properties": { + "UserId": { + "type": "string", + "nullable": true + }, + "ReleaseDateFormat": { + "type": "string" + }, + "SaveImagePathsInNfo": { + "type": "boolean" + }, + "EnablePathSubstitution": { + "type": "boolean" + }, + "EnableExtraThumbsDuplication": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "XmlAttribute": { + "type": "object", + "properties": { + "Name": { + "type": "string", + "description": "Gets or sets the name of the attribute.", + "nullable": true + }, + "Value": { + "type": "string", + "description": "Gets or sets the value of the attribute.", + "nullable": true + } + }, + "additionalProperties": false, + "description": "Defines the MediaBrowser.Model.Dlna.XmlAttribute." + } + }, + "securitySchemes": { + "CustomAuthentication": { + "type": "apiKey", + "description": "API key header parameter", + "name": "Authorization", + "in": "header" + } + } + } +} \ No newline at end of file diff --git a/docs/APISortOrder.md b/docs/APISortOrder.md deleted file mode 100644 index c90de1251..000000000 --- a/docs/APISortOrder.md +++ /dev/null @@ -1,9 +0,0 @@ -# APISortOrder - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AccessSchedule.md b/docs/AccessSchedule.md deleted file mode 100644 index bed01c29c..000000000 --- a/docs/AccessSchedule.md +++ /dev/null @@ -1,14 +0,0 @@ -# AccessSchedule - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **Int** | Gets the id of this instance. | [optional] [readonly] -**userId** | **String** | Gets the id of the associated user. | [optional] -**dayOfWeek** | [**DynamicDayOfWeek**](DynamicDayOfWeek.md) | Gets or sets the day of week. | [optional] -**startHour** | **Double** | Gets or sets the start hour. | [optional] -**endHour** | **Double** | Gets or sets the end hour. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ActivityLogAPI.md b/docs/ActivityLogAPI.md deleted file mode 100644 index a96b83c34..000000000 --- a/docs/ActivityLogAPI.md +++ /dev/null @@ -1,63 +0,0 @@ -# ActivityLogAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getLogEntries**](ActivityLogAPI.md#getlogentries) | **GET** /System/ActivityLog/Entries | Gets activity log entries. - - -# **getLogEntries** -```swift - open class func getLogEntries(startIndex: Int? = nil, limit: Int? = nil, minDate: Date? = nil, hasUserId: Bool? = nil, completion: @escaping (_ data: ActivityLogEntryQueryResult?, _ error: Error?) -> Void) -``` - -Gets activity log entries. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -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 minDate = Date() // Date | Optional. The minimum date. Format = ISO. (optional) -let hasUserId = true // Bool | Optional. Filter log entries if it has user id, or not. (optional) - -// Gets activity log entries. -ActivityLogAPI.getLogEntries(startIndex: startIndex, limit: limit, minDate: minDate, hasUserId: hasUserId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **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] - **minDate** | **Date** | Optional. The minimum date. Format = ISO. | [optional] - **hasUserId** | **Bool** | Optional. Filter log entries if it has user id, or not. | [optional] - -### Return type - -[**ActivityLogEntryQueryResult**](ActivityLogEntryQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ActivityLogEntry.md b/docs/ActivityLogEntry.md deleted file mode 100644 index 1ccf4c474..000000000 --- a/docs/ActivityLogEntry.md +++ /dev/null @@ -1,19 +0,0 @@ -# ActivityLogEntry - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **Int64** | Gets or sets the identifier. | [optional] -**name** | **String** | Gets or sets the name. | [optional] -**overview** | **String** | Gets or sets the overview. | [optional] -**shortOverview** | **String** | Gets or sets the short overview. | [optional] -**type** | **String** | Gets or sets the type. | [optional] -**itemId** | **String** | Gets or sets the item identifier. | [optional] -**date** | **Date** | Gets or sets the date. | [optional] -**userId** | **String** | Gets or sets the user identifier. | [optional] -**userPrimaryImageTag** | **String** | Gets or sets the user primary image tag. | [optional] -**severity** | [**LogLevel**](LogLevel.md) | Gets or sets the log severity. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ActivityLogEntryQueryResult.md b/docs/ActivityLogEntryQueryResult.md deleted file mode 100644 index fdd5f7483..000000000 --- a/docs/ActivityLogEntryQueryResult.md +++ /dev/null @@ -1,12 +0,0 @@ -# ActivityLogEntryQueryResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**items** | [ActivityLogEntry] | Gets or sets the items. | [optional] -**totalRecordCount** | **Int** | Gets or sets the total number of records available. | [optional] -**startIndex** | **Int** | Gets or sets the index of the first record in Items. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AddListingProviderRequest.md b/docs/AddListingProviderRequest.md deleted file mode 100644 index 65f5ea3d5..000000000 --- a/docs/AddListingProviderRequest.md +++ /dev/null @@ -1,27 +0,0 @@ -# AddListingProviderRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | | [optional] -**type** | **String** | | [optional] -**username** | **String** | | [optional] -**password** | **String** | | [optional] -**listingsId** | **String** | | [optional] -**zipCode** | **String** | | [optional] -**country** | **String** | | [optional] -**path** | **String** | | [optional] -**enabledTuners** | **[String]** | | [optional] -**enableAllTuners** | **Bool** | | [optional] -**newsCategories** | **[String]** | | [optional] -**sportsCategories** | **[String]** | | [optional] -**kidsCategories** | **[String]** | | [optional] -**movieCategories** | **[String]** | | [optional] -**channelMappings** | [NameValuePair] | | [optional] -**moviePrefix** | **String** | | [optional] -**preferredLanguage** | **String** | | [optional] -**userAgent** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AddMediaPathRequest.md b/docs/AddMediaPathRequest.md deleted file mode 100644 index 21e8bc520..000000000 --- a/docs/AddMediaPathRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# AddMediaPathRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name of the library. | -**path** | **String** | Gets or sets the path to add. | [optional] -**pathInfo** | [**MediaPathDtoPathInfo**](MediaPathDtoPathInfo.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AddTunerHostRequest.md b/docs/AddTunerHostRequest.md deleted file mode 100644 index e6ac44c6d..000000000 --- a/docs/AddTunerHostRequest.md +++ /dev/null @@ -1,20 +0,0 @@ -# AddTunerHostRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | | [optional] -**url** | **String** | | [optional] -**type** | **String** | | [optional] -**deviceId** | **String** | | [optional] -**friendlyName** | **String** | | [optional] -**importFavoritesOnly** | **Bool** | | [optional] -**allowHWTranscoding** | **Bool** | | [optional] -**enableStreamLooping** | **Bool** | | [optional] -**source** | **String** | | [optional] -**tunerCount** | **Int** | | [optional] -**userAgent** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AddVirtualFolderDto.md b/docs/AddVirtualFolderDto.md deleted file mode 100644 index fd9b719c9..000000000 --- a/docs/AddVirtualFolderDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# AddVirtualFolderDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**libraryOptions** | [**AddVirtualFolderDtoLibraryOptions**](AddVirtualFolderDtoLibraryOptions.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AddVirtualFolderDtoLibraryOptions.md b/docs/AddVirtualFolderDtoLibraryOptions.md deleted file mode 100644 index bdcbc1841..000000000 --- a/docs/AddVirtualFolderDtoLibraryOptions.md +++ /dev/null @@ -1,36 +0,0 @@ -# AddVirtualFolderDtoLibraryOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enablePhotos** | **Bool** | | [optional] -**enableRealtimeMonitor** | **Bool** | | [optional] -**enableChapterImageExtraction** | **Bool** | | [optional] -**extractChapterImagesDuringLibraryScan** | **Bool** | | [optional] -**pathInfos** | [MediaPathInfo] | | [optional] -**saveLocalMetadata** | **Bool** | | [optional] -**enableInternetProviders** | **Bool** | | [optional] -**enableAutomaticSeriesGrouping** | **Bool** | | [optional] -**enableEmbeddedTitles** | **Bool** | | [optional] -**enableEmbeddedEpisodeInfos** | **Bool** | | [optional] -**automaticRefreshIntervalDays** | **Int** | | [optional] -**preferredMetadataLanguage** | **String** | Gets or sets the preferred metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**seasonZeroDisplayName** | **String** | | [optional] -**metadataSavers** | **[String]** | | [optional] -**disabledLocalMetadataReaders** | **[String]** | | [optional] -**localMetadataReaderOrder** | **[String]** | | [optional] -**disabledSubtitleFetchers** | **[String]** | | [optional] -**subtitleFetcherOrder** | **[String]** | | [optional] -**skipSubtitlesIfEmbeddedSubtitlesPresent** | **Bool** | | [optional] -**skipSubtitlesIfAudioTrackMatches** | **Bool** | | [optional] -**subtitleDownloadLanguages** | **[String]** | | [optional] -**requirePerfectSubtitleMatch** | **Bool** | | [optional] -**saveSubtitlesWithMedia** | **Bool** | | [optional] -**automaticallyAddToCollection** | **Bool** | | [optional] -**allowEmbeddedSubtitles** | [**EmbeddedSubtitleOptions**](EmbeddedSubtitleOptions.md) | An enum representing the options to disable embedded subs. | [optional] -**typeOptions** | [TypeOptions] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AddVirtualFolderRequest.md b/docs/AddVirtualFolderRequest.md deleted file mode 100644 index ac099d663..000000000 --- a/docs/AddVirtualFolderRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# AddVirtualFolderRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**libraryOptions** | [**AddVirtualFolderDtoLibraryOptions**](AddVirtualFolderDtoLibraryOptions.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AdminNotificationDto.md b/docs/AdminNotificationDto.md deleted file mode 100644 index 151b209ba..000000000 --- a/docs/AdminNotificationDto.md +++ /dev/null @@ -1,13 +0,0 @@ -# AdminNotificationDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the notification name. | [optional] -**description** | **String** | Gets or sets the notification description. | [optional] -**notificationLevel** | [**NotificationLevel**](NotificationLevel.md) | Gets or sets the notification level. | [optional] -**url** | **String** | Gets or sets the notification url. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AlbumInfo.md b/docs/AlbumInfo.md deleted file mode 100644 index e5055f152..000000000 --- a/docs/AlbumInfo.md +++ /dev/null @@ -1,23 +0,0 @@ -# AlbumInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] -**albumArtists** | **[String]** | Gets or sets the album artist. | [optional] -**artistProviderIds** | **[String: String]** | Gets or sets the artist provider ids. | [optional] -**songInfos** | [SongInfo] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AlbumInfoRemoteSearchQuery.md b/docs/AlbumInfoRemoteSearchQuery.md deleted file mode 100644 index a7640f9ff..000000000 --- a/docs/AlbumInfoRemoteSearchQuery.md +++ /dev/null @@ -1,13 +0,0 @@ -# AlbumInfoRemoteSearchQuery - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**AlbumInfoRemoteSearchQuerySearchInfo**](AlbumInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AlbumInfoRemoteSearchQuerySearchInfo.md b/docs/AlbumInfoRemoteSearchQuerySearchInfo.md deleted file mode 100644 index 11a857fc0..000000000 --- a/docs/AlbumInfoRemoteSearchQuerySearchInfo.md +++ /dev/null @@ -1,23 +0,0 @@ -# AlbumInfoRemoteSearchQuerySearchInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] -**albumArtists** | **[String]** | Gets or sets the album artist. | [optional] -**artistProviderIds** | **[String: String]** | Gets or sets the artist provider ids. | [optional] -**songInfos** | [SongInfo] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AllThemeMediaResult.md b/docs/AllThemeMediaResult.md deleted file mode 100644 index 6b697ecd2..000000000 --- a/docs/AllThemeMediaResult.md +++ /dev/null @@ -1,12 +0,0 @@ -# AllThemeMediaResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**themeVideosResult** | [**AllThemeMediaResultThemeVideosResult**](AllThemeMediaResultThemeVideosResult.md) | | [optional] -**themeSongsResult** | [**AllThemeMediaResultThemeVideosResult**](AllThemeMediaResultThemeVideosResult.md) | | [optional] -**soundtrackSongsResult** | [**AllThemeMediaResultThemeVideosResult**](AllThemeMediaResultThemeVideosResult.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AllThemeMediaResultThemeVideosResult.md b/docs/AllThemeMediaResultThemeVideosResult.md deleted file mode 100644 index ced4286d2..000000000 --- a/docs/AllThemeMediaResultThemeVideosResult.md +++ /dev/null @@ -1,13 +0,0 @@ -# AllThemeMediaResultThemeVideosResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**items** | [BaseItemDto] | Gets or sets the items. | [optional] -**totalRecordCount** | **Int** | Gets or sets the total number of records available. | [optional] -**startIndex** | **Int** | Gets or sets the index of the first record in Items. | [optional] -**ownerId** | **String** | Gets or sets the owner id. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ApiKeyAPI.md b/docs/ApiKeyAPI.md deleted file mode 100644 index 1edd68c1d..000000000 --- a/docs/ApiKeyAPI.md +++ /dev/null @@ -1,151 +0,0 @@ -# ApiKeyAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**createKey**](ApiKeyAPI.md#createkey) | **POST** /Auth/Keys | Create a new api key. -[**getKeys**](ApiKeyAPI.md#getkeys) | **GET** /Auth/Keys | Get all keys. -[**revokeKey**](ApiKeyAPI.md#revokekey) | **DELETE** /Auth/Keys/{key} | Remove an api key. - - -# **createKey** -```swift - open class func createKey(app: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Create a new api key. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let app = "app_example" // String | Name of the app using the authentication key. - -// Create a new api key. -ApiKeyAPI.createKey(app: app) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **app** | **String** | Name of the app using the authentication key. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getKeys** -```swift - open class func getKeys(completion: @escaping (_ data: AuthenticationInfoQueryResult?, _ error: Error?) -> Void) -``` - -Get all keys. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get all keys. -ApiKeyAPI.getKeys() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**AuthenticationInfoQueryResult**](AuthenticationInfoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **revokeKey** -```swift - open class func revokeKey(key: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Remove an api key. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let key = "key_example" // String | The access token to delete. - -// Remove an api key. -ApiKeyAPI.revokeKey(key: key) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **key** | **String** | The access token to delete. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ApplySearchCriteriaRequest.md b/docs/ApplySearchCriteriaRequest.md deleted file mode 100644 index 796fe7cda..000000000 --- a/docs/ApplySearchCriteriaRequest.md +++ /dev/null @@ -1,19 +0,0 @@ -# ApplySearchCriteriaRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**productionYear** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**indexNumberEnd** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**imageUrl** | **String** | | [optional] -**searchProviderName** | **String** | | [optional] -**overview** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/Architecture.md b/docs/Architecture.md deleted file mode 100644 index 102c5907e..000000000 --- a/docs/Architecture.md +++ /dev/null @@ -1,9 +0,0 @@ -# Architecture - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ArtistInfo.md b/docs/ArtistInfo.md deleted file mode 100644 index fdb209014..000000000 --- a/docs/ArtistInfo.md +++ /dev/null @@ -1,21 +0,0 @@ -# ArtistInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] -**songInfos** | [SongInfo] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ArtistInfoRemoteSearchQuery.md b/docs/ArtistInfoRemoteSearchQuery.md deleted file mode 100644 index 61630dfa8..000000000 --- a/docs/ArtistInfoRemoteSearchQuery.md +++ /dev/null @@ -1,13 +0,0 @@ -# ArtistInfoRemoteSearchQuery - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**ArtistInfoRemoteSearchQuerySearchInfo**](ArtistInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ArtistInfoRemoteSearchQuerySearchInfo.md b/docs/ArtistInfoRemoteSearchQuerySearchInfo.md deleted file mode 100644 index 0153817d8..000000000 --- a/docs/ArtistInfoRemoteSearchQuerySearchInfo.md +++ /dev/null @@ -1,21 +0,0 @@ -# ArtistInfoRemoteSearchQuerySearchInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] -**songInfos** | [SongInfo] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ArtistsAPI.md b/docs/ArtistsAPI.md deleted file mode 100644 index 7a80aa4bf..000000000 --- a/docs/ArtistsAPI.md +++ /dev/null @@ -1,281 +0,0 @@ -# ArtistsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getAlbumArtists**](ArtistsAPI.md#getalbumartists) | **GET** /Artists/AlbumArtists | Gets all album artists from a given item, folder, or the entire library. -[**getArtistByName**](ArtistsAPI.md#getartistbyname) | **GET** /Artists/{name} | Gets an artist by name. -[**getArtists**](ArtistsAPI.md#getartists) | **GET** /Artists | Gets all artists from a given item, folder, or the entire library. - - -# **getAlbumArtists** -```swift - open class func getAlbumArtists(minCommunityRating: Double? = nil, startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, studioIds: [String]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets all album artists from a given item, folder, or the entire library. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let minCommunityRating = 987 // Double | Optional filter by minimum community rating. (optional) -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 searchTerm = "searchTerm_example" // String | Optional. Search term. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) -let filters = [ItemFilter()] // [ItemFilter] | Optional. Specify additional filters to apply. (optional) -let isFavorite = true // Bool | Optional filter by items that are marked as favorite, or not. (optional) -let mediaTypes = ["inner_example"] // [String] | Optional filter by MediaType. Allows multiple, comma delimited. (optional) -let genres = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) -let genreIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) -let officialRatings = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) -let tags = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) -let years = [123] // [Int] | Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) -let enableUserData = true // Bool | Optional, include user data. (optional) -let imageTypeLimit = 987 // Int | Optional, the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let person = "person_example" // String | Optional. If specified, results will be filtered to include only those containing the specified person. (optional) -let personIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified person ids. (optional) -let personTypes = ["inner_example"] // [String] | Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) -let studios = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) -let studioIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) -let userId = "userId_example" // String | User id. (optional) -let nameStartsWithOrGreater = "nameStartsWithOrGreater_example" // String | Optional filter by items whose name is sorted equally or greater than a given input string. (optional) -let nameStartsWith = "nameStartsWith_example" // String | Optional filter by items whose name is sorted equally than a given input string. (optional) -let nameLessThan = "nameLessThan_example" // String | Optional filter by items whose name is equally or lesser than a given input string. (optional) -let sortBy = ["inner_example"] // [String] | Optional. Specify one or more sort orders, comma delimited. (optional) -let sortOrder = [SortOrder()] // [SortOrder] | Sort Order - Ascending,Descending. (optional) -let enableImages = true // Bool | Optional, include image information in output. (optional) (default to true) -let enableTotalRecordCount = true // Bool | Total record count. (optional) (default to true) - -// Gets all album artists from a given item, folder, or the entire library. -ArtistsAPI.getAlbumArtists(minCommunityRating: minCommunityRating, startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, filters: filters, isFavorite: isFavorite, mediaTypes: mediaTypes, genres: genres, genreIds: genreIds, officialRatings: officialRatings, tags: tags, years: years, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, person: person, personIds: personIds, personTypes: personTypes, studios: studios, studioIds: studioIds, userId: userId, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, sortBy: sortBy, sortOrder: sortOrder, enableImages: enableImages, enableTotalRecordCount: enableTotalRecordCount) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **minCommunityRating** | **Double** | Optional filter by minimum community rating. | [optional] - **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] - **searchTerm** | **String** | Optional. Search term. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. | [optional] - **filters** | [**[ItemFilter]**](ItemFilter.md) | Optional. Specify additional filters to apply. | [optional] - **isFavorite** | **Bool** | Optional filter by items that are marked as favorite, or not. | [optional] - **mediaTypes** | [**[String]**](String.md) | Optional filter by MediaType. Allows multiple, comma delimited. | [optional] - **genres** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. | [optional] - **genreIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. | [optional] - **officialRatings** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. | [optional] - **tags** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. | [optional] - **years** | [**[Int]**](Int.md) | Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. | [optional] - **enableUserData** | **Bool** | Optional, include user data. | [optional] - **imageTypeLimit** | **Int** | Optional, the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **person** | **String** | Optional. If specified, results will be filtered to include only those containing the specified person. | [optional] - **personIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified person ids. | [optional] - **personTypes** | [**[String]**](String.md) | Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. | [optional] - **studios** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. | [optional] - **studioIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. | [optional] - **userId** | **String** | User id. | [optional] - **nameStartsWithOrGreater** | **String** | Optional filter by items whose name is sorted equally or greater than a given input string. | [optional] - **nameStartsWith** | **String** | Optional filter by items whose name is sorted equally than a given input string. | [optional] - **nameLessThan** | **String** | Optional filter by items whose name is equally or lesser than a given input string. | [optional] - **sortBy** | [**[String]**](String.md) | Optional. Specify one or more sort orders, comma delimited. | [optional] - **sortOrder** | [**[SortOrder]**](SortOrder.md) | Sort Order - Ascending,Descending. | [optional] - **enableImages** | **Bool** | Optional, include image information in output. | [optional] [default to true] - **enableTotalRecordCount** | **Bool** | Total record count. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getArtistByName** -```swift - open class func getArtistByName(name: String, userId: String? = nil, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Gets an artist by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Studio name. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) - -// Gets an artist by name. -ArtistsAPI.getArtistByName(name: name, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Studio name. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getArtists** -```swift - open class func getArtists(minCommunityRating: Double? = nil, startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, studioIds: [String]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets all artists from a given item, folder, or the entire library. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let minCommunityRating = 987 // Double | Optional filter by minimum community rating. (optional) -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 searchTerm = "searchTerm_example" // String | Optional. Search term. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) -let filters = [ItemFilter()] // [ItemFilter] | Optional. Specify additional filters to apply. (optional) -let isFavorite = true // Bool | Optional filter by items that are marked as favorite, or not. (optional) -let mediaTypes = ["inner_example"] // [String] | Optional filter by MediaType. Allows multiple, comma delimited. (optional) -let genres = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) -let genreIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) -let officialRatings = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) -let tags = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) -let years = [123] // [Int] | Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) -let enableUserData = true // Bool | Optional, include user data. (optional) -let imageTypeLimit = 987 // Int | Optional, the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let person = "person_example" // String | Optional. If specified, results will be filtered to include only those containing the specified person. (optional) -let personIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified person ids. (optional) -let personTypes = ["inner_example"] // [String] | Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) -let studios = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) -let studioIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) -let userId = "userId_example" // String | User id. (optional) -let nameStartsWithOrGreater = "nameStartsWithOrGreater_example" // String | Optional filter by items whose name is sorted equally or greater than a given input string. (optional) -let nameStartsWith = "nameStartsWith_example" // String | Optional filter by items whose name is sorted equally than a given input string. (optional) -let nameLessThan = "nameLessThan_example" // String | Optional filter by items whose name is equally or lesser than a given input string. (optional) -let sortBy = ["inner_example"] // [String] | Optional. Specify one or more sort orders, comma delimited. (optional) -let sortOrder = [SortOrder()] // [SortOrder] | Sort Order - Ascending,Descending. (optional) -let enableImages = true // Bool | Optional, include image information in output. (optional) (default to true) -let enableTotalRecordCount = true // Bool | Total record count. (optional) (default to true) - -// Gets all artists from a given item, folder, or the entire library. -ArtistsAPI.getArtists(minCommunityRating: minCommunityRating, startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, filters: filters, isFavorite: isFavorite, mediaTypes: mediaTypes, genres: genres, genreIds: genreIds, officialRatings: officialRatings, tags: tags, years: years, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, person: person, personIds: personIds, personTypes: personTypes, studios: studios, studioIds: studioIds, userId: userId, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, sortBy: sortBy, sortOrder: sortOrder, enableImages: enableImages, enableTotalRecordCount: enableTotalRecordCount) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **minCommunityRating** | **Double** | Optional filter by minimum community rating. | [optional] - **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] - **searchTerm** | **String** | Optional. Search term. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. | [optional] - **filters** | [**[ItemFilter]**](ItemFilter.md) | Optional. Specify additional filters to apply. | [optional] - **isFavorite** | **Bool** | Optional filter by items that are marked as favorite, or not. | [optional] - **mediaTypes** | [**[String]**](String.md) | Optional filter by MediaType. Allows multiple, comma delimited. | [optional] - **genres** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. | [optional] - **genreIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. | [optional] - **officialRatings** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. | [optional] - **tags** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. | [optional] - **years** | [**[Int]**](Int.md) | Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. | [optional] - **enableUserData** | **Bool** | Optional, include user data. | [optional] - **imageTypeLimit** | **Int** | Optional, the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **person** | **String** | Optional. If specified, results will be filtered to include only those containing the specified person. | [optional] - **personIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified person ids. | [optional] - **personTypes** | [**[String]**](String.md) | Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. | [optional] - **studios** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. | [optional] - **studioIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. | [optional] - **userId** | **String** | User id. | [optional] - **nameStartsWithOrGreater** | **String** | Optional filter by items whose name is sorted equally or greater than a given input string. | [optional] - **nameStartsWith** | **String** | Optional filter by items whose name is sorted equally than a given input string. | [optional] - **nameLessThan** | **String** | Optional filter by items whose name is equally or lesser than a given input string. | [optional] - **sortBy** | [**[String]**](String.md) | Optional. Specify one or more sort orders, comma delimited. | [optional] - **sortOrder** | [**[SortOrder]**](SortOrder.md) | Sort Order - Ascending,Descending. | [optional] - **enableImages** | **Bool** | Optional, include image information in output. | [optional] [default to true] - **enableTotalRecordCount** | **Bool** | Total record count. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/AudioAPI.md b/docs/AudioAPI.md deleted file mode 100644 index f156e82bf..000000000 --- a/docs/AudioAPI.md +++ /dev/null @@ -1,588 +0,0 @@ -# AudioAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getAudioStream**](AudioAPI.md#getaudiostream) | **GET** /Audio/{itemId}/stream | Gets an audio stream. -[**getAudioStreamByContainer**](AudioAPI.md#getaudiostreambycontainer) | **GET** /Audio/{itemId}/stream.{container} | Gets an audio stream. -[**headAudioStream**](AudioAPI.md#headaudiostream) | **HEAD** /Audio/{itemId}/stream | Gets an audio stream. -[**headAudioStreamByContainer**](AudioAPI.md#headaudiostreambycontainer) | **HEAD** /Audio/{itemId}/stream.{container} | Gets an audio stream. - - -# **getAudioStream** -```swift - open class func getAudioStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets an audio stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = "container_example" // String | The audio container. (optional) -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets an audio stream. -AudioAPI.getAudioStream(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | **String** | The audio container. | [optional] - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: audio/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getAudioStreamByContainer** -```swift - open class func getAudioStreamByContainer(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets an audio stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = "container_example" // String | The audio container. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment lenght. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamporphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets an audio stream. -AudioAPI.getAudioStreamByContainer(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | **String** | The audio container. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment lenght. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamporphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: audio/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headAudioStream** -```swift - open class func headAudioStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets an audio stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = "container_example" // String | The audio container. (optional) -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets an audio stream. -AudioAPI.headAudioStream(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | **String** | The audio container. | [optional] - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: audio/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headAudioStreamByContainer** -```swift - open class func headAudioStreamByContainer(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets an audio stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = "container_example" // String | The audio container. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment lenght. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamporphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets an audio stream. -AudioAPI.headAudioStreamByContainer(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | **String** | The audio container. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment lenght. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamporphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: audio/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/AuthenticateUserByName.md b/docs/AuthenticateUserByName.md deleted file mode 100644 index f8002e5c7..000000000 --- a/docs/AuthenticateUserByName.md +++ /dev/null @@ -1,12 +0,0 @@ -# AuthenticateUserByName - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**username** | **String** | Gets or sets the username. | [optional] -**pw** | **String** | Gets or sets the plain text password. | [optional] -**password** | **String** | Gets or sets the sha1-hashed password. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AuthenticateUserByNameRequest.md b/docs/AuthenticateUserByNameRequest.md deleted file mode 100644 index 5bd1e02b6..000000000 --- a/docs/AuthenticateUserByNameRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# AuthenticateUserByNameRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**username** | **String** | Gets or sets the username. | [optional] -**pw** | **String** | Gets or sets the plain text password. | [optional] -**password** | **String** | Gets or sets the sha1-hashed password. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AuthenticateWithQuickConnectRequest.md b/docs/AuthenticateWithQuickConnectRequest.md deleted file mode 100644 index 2f53f7e4d..000000000 --- a/docs/AuthenticateWithQuickConnectRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# AuthenticateWithQuickConnectRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**secret** | **String** | Gets or sets the quick connect secret. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AuthenticationInfo.md b/docs/AuthenticationInfo.md deleted file mode 100644 index 3417f73c8..000000000 --- a/docs/AuthenticationInfo.md +++ /dev/null @@ -1,21 +0,0 @@ -# AuthenticationInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **Int64** | Gets or sets the identifier. | [optional] -**accessToken** | **String** | Gets or sets the access token. | [optional] -**deviceId** | **String** | Gets or sets the device identifier. | [optional] -**appName** | **String** | Gets or sets the name of the application. | [optional] -**appVersion** | **String** | Gets or sets the application version. | [optional] -**deviceName** | **String** | Gets or sets the name of the device. | [optional] -**userId** | **String** | Gets or sets the user identifier. | [optional] -**isActive** | **Bool** | Gets or sets a value indicating whether this instance is active. | [optional] -**dateCreated** | **Date** | Gets or sets the date created. | [optional] -**dateRevoked** | **Date** | Gets or sets the date revoked. | [optional] -**dateLastActivity** | **Date** | | [optional] -**userName** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AuthenticationInfoQueryResult.md b/docs/AuthenticationInfoQueryResult.md deleted file mode 100644 index c712fe96d..000000000 --- a/docs/AuthenticationInfoQueryResult.md +++ /dev/null @@ -1,12 +0,0 @@ -# AuthenticationInfoQueryResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**items** | [AuthenticationInfo] | Gets or sets the items. | [optional] -**totalRecordCount** | **Int** | Gets or sets the total number of records available. | [optional] -**startIndex** | **Int** | Gets or sets the index of the first record in Items. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AuthenticationResult.md b/docs/AuthenticationResult.md deleted file mode 100644 index 4888f69ac..000000000 --- a/docs/AuthenticationResult.md +++ /dev/null @@ -1,13 +0,0 @@ -# AuthenticationResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**user** | [**AuthenticationResultUser**](AuthenticationResultUser.md) | | [optional] -**sessionInfo** | [**AuthenticationResultSessionInfo**](AuthenticationResultSessionInfo.md) | | [optional] -**accessToken** | **String** | | [optional] -**serverId** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AuthenticationResultSessionInfo.md b/docs/AuthenticationResultSessionInfo.md deleted file mode 100644 index 38163a06f..000000000 --- a/docs/AuthenticationResultSessionInfo.md +++ /dev/null @@ -1,38 +0,0 @@ -# AuthenticationResultSessionInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playState** | [**SessionInfoPlayState**](SessionInfoPlayState.md) | | [optional] -**additionalUsers** | [SessionUserInfo] | | [optional] -**capabilities** | [**SessionInfoCapabilities**](SessionInfoCapabilities.md) | | [optional] -**remoteEndPoint** | **String** | Gets or sets the remote end point. | [optional] -**playableMediaTypes** | **[String]** | Gets the playable media types. | [optional] [readonly] -**id** | **String** | Gets or sets the id. | [optional] -**userId** | **String** | Gets or sets the user id. | [optional] -**userName** | **String** | Gets or sets the username. | [optional] -**client** | **String** | Gets or sets the type of the client. | [optional] -**lastActivityDate** | **Date** | Gets or sets the last activity date. | [optional] -**lastPlaybackCheckIn** | **Date** | Gets or sets the last playback check in. | [optional] -**deviceName** | **String** | Gets or sets the name of the device. | [optional] -**deviceType** | **String** | Gets or sets the type of the device. | [optional] -**nowPlayingItem** | [**SessionInfoNowPlayingItem**](SessionInfoNowPlayingItem.md) | | [optional] -**fullNowPlayingItem** | [**SessionInfoFullNowPlayingItem**](SessionInfoFullNowPlayingItem.md) | | [optional] -**nowViewingItem** | [**SessionInfoNowViewingItem**](SessionInfoNowViewingItem.md) | | [optional] -**deviceId** | **String** | Gets or sets the device id. | [optional] -**applicationVersion** | **String** | Gets or sets the application version. | [optional] -**transcodingInfo** | [**SessionInfoTranscodingInfo**](SessionInfoTranscodingInfo.md) | | [optional] -**isActive** | **Bool** | Gets a value indicating whether this instance is active. | [optional] [readonly] -**supportsMediaControl** | **Bool** | | [optional] [readonly] -**supportsRemoteControl** | **Bool** | | [optional] [readonly] -**nowPlayingQueue** | [QueueItem] | | [optional] -**nowPlayingQueueFullItems** | [BaseItemDto] | | [optional] -**hasCustomDeviceName** | **Bool** | | [optional] -**playlistItemId** | **String** | | [optional] -**serverId** | **String** | | [optional] -**userPrimaryImageTag** | **String** | | [optional] -**supportedCommands** | [GeneralCommandType] | Gets the supported commands. | [optional] [readonly] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/AuthenticationResultUser.md b/docs/AuthenticationResultUser.md deleted file mode 100644 index 2b5cab45a..000000000 --- a/docs/AuthenticationResultUser.md +++ /dev/null @@ -1,23 +0,0 @@ -# AuthenticationResultUser - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**serverName** | **String** | Gets or sets the name of the server. This is not used by the server and is for client-side usage only. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**primaryImageTag** | **String** | Gets or sets the primary image tag. | [optional] -**hasPassword** | **Bool** | Gets or sets a value indicating whether this instance has password. | [optional] -**hasConfiguredPassword** | **Bool** | Gets or sets a value indicating whether this instance has configured password. | [optional] -**hasConfiguredEasyPassword** | **Bool** | Gets or sets a value indicating whether this instance has configured easy password. | [optional] -**enableAutoLogin** | **Bool** | Gets or sets whether async login is enabled or not. | [optional] -**lastLoginDate** | **Date** | Gets or sets the last login date. | [optional] -**lastActivityDate** | **Date** | Gets or sets the last activity date. | [optional] -**configuration** | [**UserDtoConfiguration**](UserDtoConfiguration.md) | | [optional] -**policy** | [**UserDtoPolicy**](UserDtoPolicy.md) | | [optional] -**primaryImageAspectRatio** | **Double** | Gets or sets the primary image aspect ratio. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BaseItem.md b/docs/BaseItem.md deleted file mode 100644 index 3defe4291..000000000 --- a/docs/BaseItem.md +++ /dev/null @@ -1,20 +0,0 @@ -# BaseItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**size** | **Int64** | | [optional] -**container** | **String** | | [optional] -**isHD** | **Bool** | | [optional] [readonly] -**isShortcut** | **Bool** | | [optional] -**shortcutPath** | **String** | | [optional] -**width** | **Int** | | [optional] -**height** | **Int** | | [optional] -**extraIds** | **[String]** | | [optional] -**dateLastSaved** | **Date** | | [optional] -**remoteTrailers** | [MediaUrl] | Gets or sets the remote trailers. | [optional] -**supportsExternalTransfer** | **Bool** | | [optional] [readonly] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BaseItemDto.md b/docs/BaseItemDto.md deleted file mode 100644 index 510c59c2e..000000000 --- a/docs/BaseItemDto.md +++ /dev/null @@ -1,159 +0,0 @@ -# BaseItemDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**etag** | **String** | Gets or sets the etag. | [optional] -**sourceType** | **String** | Gets or sets the type of the source. | [optional] -**playlistItemId** | **String** | Gets or sets the playlist item identifier. | [optional] -**dateCreated** | **Date** | Gets or sets the date created. | [optional] -**dateLastMediaAdded** | **Date** | | [optional] -**extraType** | **String** | | [optional] -**airsBeforeSeasonNumber** | **Int** | | [optional] -**airsAfterSeasonNumber** | **Int** | | [optional] -**airsBeforeEpisodeNumber** | **Int** | | [optional] -**canDelete** | **Bool** | | [optional] -**canDownload** | **Bool** | | [optional] -**hasSubtitles** | **Bool** | | [optional] -**preferredMetadataLanguage** | **String** | | [optional] -**preferredMetadataCountryCode** | **String** | | [optional] -**supportsSync** | **Bool** | Gets or sets a value indicating whether [supports synchronize]. | [optional] -**container** | **String** | | [optional] -**sortName** | **String** | Gets or sets the name of the sort. | [optional] -**forcedSortName** | **String** | | [optional] -**video3DFormat** | [**Video3DFormat**](Video3DFormat.md) | Gets or sets the video3 D format. | [optional] -**premiereDate** | **Date** | Gets or sets the premiere date. | [optional] -**externalUrls** | [ExternalUrl] | Gets or sets the external urls. | [optional] -**mediaSources** | [MediaSourceInfo] | Gets or sets the media versions. | [optional] -**criticRating** | **Float** | Gets or sets the critic rating. | [optional] -**productionLocations** | **[String]** | | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**enableMediaSourceDisplay** | **Bool** | | [optional] -**officialRating** | **String** | Gets or sets the official rating. | [optional] -**customRating** | **String** | Gets or sets the custom rating. | [optional] -**channelId** | **String** | Gets or sets the channel identifier. | [optional] -**channelName** | **String** | | [optional] -**overview** | **String** | Gets or sets the overview. | [optional] -**taglines** | **[String]** | Gets or sets the taglines. | [optional] -**genres** | **[String]** | Gets or sets the genres. | [optional] -**communityRating** | **Float** | Gets or sets the community rating. | [optional] -**cumulativeRunTimeTicks** | **Int64** | Gets or sets the cumulative run time ticks. | [optional] -**runTimeTicks** | **Int64** | Gets or sets the run time ticks. | [optional] -**playAccess** | [**PlayAccess**](PlayAccess.md) | Gets or sets the play access. | [optional] -**aspectRatio** | **String** | Gets or sets the aspect ratio. | [optional] -**productionYear** | **Int** | Gets or sets the production year. | [optional] -**isPlaceHolder** | **Bool** | Gets or sets a value indicating whether this instance is place holder. | [optional] -**number** | **String** | Gets or sets the number. | [optional] -**channelNumber** | **String** | | [optional] -**indexNumber** | **Int** | Gets or sets the index number. | [optional] -**indexNumberEnd** | **Int** | Gets or sets the index number end. | [optional] -**parentIndexNumber** | **Int** | Gets or sets the parent index number. | [optional] -**remoteTrailers** | [MediaUrl] | Gets or sets the trailer urls. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**isHD** | **Bool** | Gets or sets a value indicating whether this instance is HD. | [optional] -**isFolder** | **Bool** | Gets or sets a value indicating whether this instance is folder. | [optional] -**parentId** | **String** | Gets or sets the parent id. | [optional] -**type** | [**BaseItemKind**](BaseItemKind.md) | The base item kind. | [optional] -**people** | [BaseItemPerson] | Gets or sets the people. | [optional] -**studios** | [NameGuidPair] | Gets or sets the studios. | [optional] -**genreItems** | [NameGuidPair] | | [optional] -**parentLogoItemId** | **String** | Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropItemId** | **String** | Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropImageTags** | **[String]** | Gets or sets the parent backdrop image tags. | [optional] -**localTrailerCount** | **Int** | Gets or sets the local trailer count. | [optional] -**userData** | [**BaseItemDtoUserData**](BaseItemDtoUserData.md) | | [optional] -**recursiveItemCount** | **Int** | Gets or sets the recursive item count. | [optional] -**childCount** | **Int** | Gets or sets the child count. | [optional] -**seriesName** | **String** | Gets or sets the name of the series. | [optional] -**seriesId** | **String** | Gets or sets the series id. | [optional] -**seasonId** | **String** | Gets or sets the season identifier. | [optional] -**specialFeatureCount** | **Int** | Gets or sets the special feature count. | [optional] -**displayPreferencesId** | **String** | Gets or sets the display preferences id. | [optional] -**status** | **String** | Gets or sets the status. | [optional] -**airTime** | **String** | Gets or sets the air time. | [optional] -**airDays** | [DayOfWeek] | Gets or sets the air days. | [optional] -**tags** | **[String]** | Gets or sets the tags. | [optional] -**primaryImageAspectRatio** | **Double** | Gets or sets the primary image aspect ratio, after image enhancements. | [optional] -**artists** | **[String]** | Gets or sets the artists. | [optional] -**artistItems** | [NameGuidPair] | Gets or sets the artist items. | [optional] -**album** | **String** | Gets or sets the album. | [optional] -**collectionType** | **String** | Gets or sets the type of the collection. | [optional] -**displayOrder** | **String** | Gets or sets the display order. | [optional] -**albumId** | **String** | Gets or sets the album id. | [optional] -**albumPrimaryImageTag** | **String** | Gets or sets the album image tag. | [optional] -**seriesPrimaryImageTag** | **String** | Gets or sets the series primary image tag. | [optional] -**albumArtist** | **String** | Gets or sets the album artist. | [optional] -**albumArtists** | [NameGuidPair] | Gets or sets the album artists. | [optional] -**seasonName** | **String** | Gets or sets the name of the season. | [optional] -**mediaStreams** | [MediaStream] | Gets or sets the media streams. | [optional] -**videoType** | [**VideoType**](VideoType.md) | Gets or sets the type of the video. | [optional] -**partCount** | **Int** | Gets or sets the part count. | [optional] -**mediaSourceCount** | **Int** | | [optional] -**imageTags** | **[String: String]** | Gets or sets the image tags. | [optional] -**backdropImageTags** | **[String]** | Gets or sets the backdrop image tags. | [optional] -**screenshotImageTags** | **[String]** | Gets or sets the screenshot image tags. | [optional] -**parentLogoImageTag** | **String** | Gets or sets the parent logo image tag. | [optional] -**parentArtItemId** | **String** | Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. | [optional] -**parentArtImageTag** | **String** | Gets or sets the parent art image tag. | [optional] -**seriesThumbImageTag** | **String** | Gets or sets the series thumb image tag. | [optional] -**imageBlurHashes** | [**BaseItemDtoImageBlurHashes**](BaseItemDtoImageBlurHashes.md) | | [optional] -**seriesStudio** | **String** | Gets or sets the series studio. | [optional] -**parentThumbItemId** | **String** | Gets or sets the parent thumb item id. | [optional] -**parentThumbImageTag** | **String** | Gets or sets the parent thumb image tag. | [optional] -**parentPrimaryImageItemId** | **String** | Gets or sets the parent primary image item identifier. | [optional] -**parentPrimaryImageTag** | **String** | Gets or sets the parent primary image tag. | [optional] -**chapters** | [ChapterInfo] | Gets or sets the chapters. | [optional] -**locationType** | [**LocationType**](LocationType.md) | Gets or sets the type of the location. | [optional] -**isoType** | [**IsoType**](IsoType.md) | Gets or sets the type of the iso. | [optional] -**mediaType** | **String** | Gets or sets the type of the media. | [optional] -**endDate** | **Date** | Gets or sets the end date. | [optional] -**lockedFields** | [MetadataField] | Gets or sets the locked fields. | [optional] -**trailerCount** | **Int** | Gets or sets the trailer count. | [optional] -**movieCount** | **Int** | Gets or sets the movie count. | [optional] -**seriesCount** | **Int** | Gets or sets the series count. | [optional] -**programCount** | **Int** | | [optional] -**episodeCount** | **Int** | Gets or sets the episode count. | [optional] -**songCount** | **Int** | Gets or sets the song count. | [optional] -**albumCount** | **Int** | Gets or sets the album count. | [optional] -**artistCount** | **Int** | | [optional] -**musicVideoCount** | **Int** | Gets or sets the music video count. | [optional] -**lockData** | **Bool** | Gets or sets a value indicating whether [enable internet providers]. | [optional] -**width** | **Int** | | [optional] -**height** | **Int** | | [optional] -**cameraMake** | **String** | | [optional] -**cameraModel** | **String** | | [optional] -**software** | **String** | | [optional] -**exposureTime** | **Double** | | [optional] -**focalLength** | **Double** | | [optional] -**imageOrientation** | [**ImageOrientation**](ImageOrientation.md) | | [optional] -**aperture** | **Double** | | [optional] -**shutterSpeed** | **Double** | | [optional] -**latitude** | **Double** | | [optional] -**longitude** | **Double** | | [optional] -**altitude** | **Double** | | [optional] -**isoSpeedRating** | **Int** | | [optional] -**seriesTimerId** | **String** | Gets or sets the series timer identifier. | [optional] -**programId** | **String** | Gets or sets the program identifier. | [optional] -**channelPrimaryImageTag** | **String** | Gets or sets the channel primary image tag. | [optional] -**startDate** | **Date** | Gets or sets the start date of the recording, in UTC. | [optional] -**completionPercentage** | **Double** | Gets or sets the completion percentage. | [optional] -**isRepeat** | **Bool** | Gets or sets a value indicating whether this instance is repeat. | [optional] -**episodeTitle** | **String** | Gets or sets the episode title. | [optional] -**channelType** | [**ChannelType**](ChannelType.md) | Gets or sets the type of the channel. | [optional] -**audio** | [**ProgramAudio**](ProgramAudio.md) | Gets or sets the audio. | [optional] -**isMovie** | **Bool** | Gets or sets a value indicating whether this instance is movie. | [optional] -**isSports** | **Bool** | Gets or sets a value indicating whether this instance is sports. | [optional] -**isSeries** | **Bool** | Gets or sets a value indicating whether this instance is series. | [optional] -**isLive** | **Bool** | Gets or sets a value indicating whether this instance is live. | [optional] -**isNews** | **Bool** | Gets or sets a value indicating whether this instance is news. | [optional] -**isKids** | **Bool** | Gets or sets a value indicating whether this instance is kids. | [optional] -**isPremiere** | **Bool** | Gets or sets a value indicating whether this instance is premiere. | [optional] -**timerId** | **String** | Gets or sets the timer identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BaseItemDtoImageBlurHashes.md b/docs/BaseItemDtoImageBlurHashes.md deleted file mode 100644 index b467707fe..000000000 --- a/docs/BaseItemDtoImageBlurHashes.md +++ /dev/null @@ -1,22 +0,0 @@ -# BaseItemDtoImageBlurHashes - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**primary** | **[String: String]** | | [optional] -**art** | **[String: String]** | | [optional] -**backdrop** | **[String: String]** | | [optional] -**banner** | **[String: String]** | | [optional] -**logo** | **[String: String]** | | [optional] -**thumb** | **[String: String]** | | [optional] -**disc** | **[String: String]** | | [optional] -**box** | **[String: String]** | | [optional] -**screenshot** | **[String: String]** | | [optional] -**menu** | **[String: String]** | | [optional] -**chapter** | **[String: String]** | | [optional] -**boxRear** | **[String: String]** | | [optional] -**profile** | **[String: String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BaseItemDtoQueryResult.md b/docs/BaseItemDtoQueryResult.md deleted file mode 100644 index 61c03469f..000000000 --- a/docs/BaseItemDtoQueryResult.md +++ /dev/null @@ -1,12 +0,0 @@ -# BaseItemDtoQueryResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**items** | [BaseItemDto] | Gets or sets the items. | [optional] -**totalRecordCount** | **Int** | Gets or sets the total number of records available. | [optional] -**startIndex** | **Int** | Gets or sets the index of the first record in Items. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BaseItemDtoUserData.md b/docs/BaseItemDtoUserData.md deleted file mode 100644 index f03df14c7..000000000 --- a/docs/BaseItemDtoUserData.md +++ /dev/null @@ -1,20 +0,0 @@ -# BaseItemDtoUserData - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**rating** | **Double** | Gets or sets the rating. | [optional] -**playedPercentage** | **Double** | Gets or sets the played percentage. | [optional] -**unplayedItemCount** | **Int** | Gets or sets the unplayed item count. | [optional] -**playbackPositionTicks** | **Int64** | Gets or sets the playback position ticks. | [optional] -**playCount** | **Int** | Gets or sets the play count. | [optional] -**isFavorite** | **Bool** | Gets or sets a value indicating whether this instance is favorite. | [optional] -**likes** | **Bool** | Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes. | [optional] -**lastPlayedDate** | **Date** | Gets or sets the last played date. | [optional] -**played** | **Bool** | Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played. | [optional] -**key** | **String** | Gets or sets the key. | [optional] -**itemId** | **String** | Gets or sets the item identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BaseItemKind.md b/docs/BaseItemKind.md deleted file mode 100644 index e38f4292d..000000000 --- a/docs/BaseItemKind.md +++ /dev/null @@ -1,9 +0,0 @@ -# BaseItemKind - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BaseItemPerson.md b/docs/BaseItemPerson.md deleted file mode 100644 index 0e9d097ff..000000000 --- a/docs/BaseItemPerson.md +++ /dev/null @@ -1,15 +0,0 @@ -# BaseItemPerson - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**id** | **String** | Gets or sets the identifier. | [optional] -**role** | **String** | Gets or sets the role. | [optional] -**type** | **String** | Gets or sets the type. | [optional] -**primaryImageTag** | **String** | Gets or sets the primary image tag. | [optional] -**imageBlurHashes** | [**BaseItemPersonImageBlurHashes**](BaseItemPersonImageBlurHashes.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BaseItemPersonImageBlurHashes.md b/docs/BaseItemPersonImageBlurHashes.md deleted file mode 100644 index 85791db3b..000000000 --- a/docs/BaseItemPersonImageBlurHashes.md +++ /dev/null @@ -1,22 +0,0 @@ -# BaseItemPersonImageBlurHashes - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**primary** | **[String: String]** | | [optional] -**art** | **[String: String]** | | [optional] -**backdrop** | **[String: String]** | | [optional] -**banner** | **[String: String]** | | [optional] -**logo** | **[String: String]** | | [optional] -**thumb** | **[String: String]** | | [optional] -**disc** | **[String: String]** | | [optional] -**box** | **[String: String]** | | [optional] -**screenshot** | **[String: String]** | | [optional] -**menu** | **[String: String]** | | [optional] -**chapter** | **[String: String]** | | [optional] -**boxRear** | **[String: String]** | | [optional] -**profile** | **[String: String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BookInfo.md b/docs/BookInfo.md deleted file mode 100644 index 8e201ee60..000000000 --- a/docs/BookInfo.md +++ /dev/null @@ -1,21 +0,0 @@ -# BookInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] -**seriesName** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BookInfoRemoteSearchQuery.md b/docs/BookInfoRemoteSearchQuery.md deleted file mode 100644 index b84fe946e..000000000 --- a/docs/BookInfoRemoteSearchQuery.md +++ /dev/null @@ -1,13 +0,0 @@ -# BookInfoRemoteSearchQuery - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**BookInfoRemoteSearchQuerySearchInfo**](BookInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BookInfoRemoteSearchQuerySearchInfo.md b/docs/BookInfoRemoteSearchQuerySearchInfo.md deleted file mode 100644 index 37bb5a503..000000000 --- a/docs/BookInfoRemoteSearchQuerySearchInfo.md +++ /dev/null @@ -1,21 +0,0 @@ -# BookInfoRemoteSearchQuerySearchInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] -**seriesName** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BoxSetInfo.md b/docs/BoxSetInfo.md deleted file mode 100644 index 43800e7dc..000000000 --- a/docs/BoxSetInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# BoxSetInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BoxSetInfoRemoteSearchQuery.md b/docs/BoxSetInfoRemoteSearchQuery.md deleted file mode 100644 index d610377f5..000000000 --- a/docs/BoxSetInfoRemoteSearchQuery.md +++ /dev/null @@ -1,13 +0,0 @@ -# BoxSetInfoRemoteSearchQuery - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**BoxSetInfoRemoteSearchQuerySearchInfo**](BoxSetInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BoxSetInfoRemoteSearchQuerySearchInfo.md b/docs/BoxSetInfoRemoteSearchQuerySearchInfo.md deleted file mode 100644 index e816ded8e..000000000 --- a/docs/BoxSetInfoRemoteSearchQuerySearchInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# BoxSetInfoRemoteSearchQuerySearchInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BrandingAPI.md b/docs/BrandingAPI.md deleted file mode 100644 index bcbf87037..000000000 --- a/docs/BrandingAPI.md +++ /dev/null @@ -1,143 +0,0 @@ -# BrandingAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getBrandingCss**](BrandingAPI.md#getbrandingcss) | **GET** /Branding/Css | Gets branding css. -[**getBrandingCss2**](BrandingAPI.md#getbrandingcss2) | **GET** /Branding/Css.css | Gets branding css. -[**getBrandingOptions**](BrandingAPI.md#getbrandingoptions) | **GET** /Branding/Configuration | Gets branding configuration. - - -# **getBrandingCss** -```swift - open class func getBrandingCss(completion: @escaping (_ data: String?, _ error: Error?) -> Void) -``` - -Gets branding css. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets branding css. -BrandingAPI.getBrandingCss() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -**String** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/css, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getBrandingCss2** -```swift - open class func getBrandingCss2(completion: @escaping (_ data: String?, _ error: Error?) -> Void) -``` - -Gets branding css. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets branding css. -BrandingAPI.getBrandingCss2() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -**String** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/css, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getBrandingOptions** -```swift - open class func getBrandingOptions(completion: @escaping (_ data: BrandingOptions?, _ error: Error?) -> Void) -``` - -Gets branding configuration. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets branding configuration. -BrandingAPI.getBrandingOptions() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**BrandingOptions**](BrandingOptions.md) - -### Authorization - -No authorization required - -### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/BrandingOptions.md b/docs/BrandingOptions.md deleted file mode 100644 index bd0e0fa5a..000000000 --- a/docs/BrandingOptions.md +++ /dev/null @@ -1,11 +0,0 @@ -# BrandingOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**loginDisclaimer** | **String** | Gets or sets the login disclaimer. | [optional] -**customCss** | **String** | Gets or sets the custom CSS. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/BufferRequestDto.md b/docs/BufferRequestDto.md deleted file mode 100644 index 76dbf058a..000000000 --- a/docs/BufferRequestDto.md +++ /dev/null @@ -1,13 +0,0 @@ -# BufferRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**when** | **Date** | Gets or sets when the request has been made by the client. | [optional] -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] -**isPlaying** | **Bool** | Gets or sets a value indicating whether the client playback is unpaused. | [optional] -**playlistItemId** | **String** | Gets or sets the playlist item identifier of the playing item. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ChannelFeatures.md b/docs/ChannelFeatures.md deleted file mode 100644 index 90d7c10d4..000000000 --- a/docs/ChannelFeatures.md +++ /dev/null @@ -1,21 +0,0 @@ -# ChannelFeatures - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**id** | **String** | Gets or sets the identifier. | [optional] -**canSearch** | **Bool** | Gets or sets a value indicating whether this instance can search. | [optional] -**mediaTypes** | [ChannelMediaType] | Gets or sets the media types. | [optional] -**contentTypes** | [ChannelMediaContentType] | Gets or sets the content types. | [optional] -**maxPageSize** | **Int** | Gets or sets the maximum number of records the channel allows retrieving at a time. | [optional] -**autoRefreshLevels** | **Int** | Gets or sets the automatic refresh levels. | [optional] -**defaultSortFields** | [ChannelItemSortField] | Gets or sets the default sort orders. | [optional] -**supportsSortOrderToggle** | **Bool** | Gets or sets a value indicating whether a sort ascending/descending toggle is supported. | [optional] -**supportsLatestMedia** | **Bool** | Gets or sets a value indicating whether [supports latest media]. | [optional] -**canFilter** | **Bool** | Gets or sets a value indicating whether this instance can filter. | [optional] -**supportsContentDownloading** | **Bool** | Gets or sets a value indicating whether [supports content downloading]. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ChannelItemSortField.md b/docs/ChannelItemSortField.md deleted file mode 100644 index a2a5ce277..000000000 --- a/docs/ChannelItemSortField.md +++ /dev/null @@ -1,9 +0,0 @@ -# ChannelItemSortField - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ChannelMappingOptionsDto.md b/docs/ChannelMappingOptionsDto.md deleted file mode 100644 index 03531227d..000000000 --- a/docs/ChannelMappingOptionsDto.md +++ /dev/null @@ -1,13 +0,0 @@ -# ChannelMappingOptionsDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**tunerChannels** | [TunerChannelMapping] | Gets or sets list of tuner channels. | [optional] -**providerChannels** | [NameIdPair] | Gets or sets list of provider channels. | [optional] -**mappings** | [NameValuePair] | Gets or sets list of mappings. | [optional] -**providerName** | **String** | Gets or sets provider name. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ChannelMediaContentType.md b/docs/ChannelMediaContentType.md deleted file mode 100644 index 75a641738..000000000 --- a/docs/ChannelMediaContentType.md +++ /dev/null @@ -1,9 +0,0 @@ -# ChannelMediaContentType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ChannelMediaType.md b/docs/ChannelMediaType.md deleted file mode 100644 index c4b1a9d8c..000000000 --- a/docs/ChannelMediaType.md +++ /dev/null @@ -1,9 +0,0 @@ -# ChannelMediaType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ChannelType.md b/docs/ChannelType.md deleted file mode 100644 index 4933c2570..000000000 --- a/docs/ChannelType.md +++ /dev/null @@ -1,9 +0,0 @@ -# ChannelType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ChannelsAPI.md b/docs/ChannelsAPI.md deleted file mode 100644 index ac333b0b3..000000000 --- a/docs/ChannelsAPI.md +++ /dev/null @@ -1,285 +0,0 @@ -# ChannelsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getAllChannelFeatures**](ChannelsAPI.md#getallchannelfeatures) | **GET** /Channels/Features | Get all channel features. -[**getChannelFeatures**](ChannelsAPI.md#getchannelfeatures) | **GET** /Channels/{channelId}/Features | Get channel features. -[**getChannelItems**](ChannelsAPI.md#getchannelitems) | **GET** /Channels/{channelId}/Items | Get channel items. -[**getChannels**](ChannelsAPI.md#getchannels) | **GET** /Channels | Gets available channels. -[**getLatestChannelItems**](ChannelsAPI.md#getlatestchannelitems) | **GET** /Channels/Items/Latest | Gets latest channel items. - - -# **getAllChannelFeatures** -```swift - open class func getAllChannelFeatures(completion: @escaping (_ data: [ChannelFeatures]?, _ error: Error?) -> Void) -``` - -Get all channel features. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get all channel features. -ChannelsAPI.getAllChannelFeatures() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[ChannelFeatures]**](ChannelFeatures.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getChannelFeatures** -```swift - open class func getChannelFeatures(channelId: String, completion: @escaping (_ data: ChannelFeatures?, _ error: Error?) -> Void) -``` - -Get channel features. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let channelId = "channelId_example" // String | Channel id. - -// Get channel features. -ChannelsAPI.getChannelFeatures(channelId: channelId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **channelId** | **String** | Channel id. | - -### Return type - -[**ChannelFeatures**](ChannelFeatures.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getChannelItems** -```swift - open class func getChannelItems(channelId: String, folderId: String? = nil, userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, sortOrder: [SortOrder]? = nil, filters: [ItemFilter]? = nil, sortBy: [String]? = nil, fields: [ItemFields]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Get channel items. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let channelId = "channelId_example" // String | Channel Id. -let folderId = "folderId_example" // String | Optional. Folder Id. (optional) -let userId = "userId_example" // String | Optional. User Id. (optional) -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 sortOrder = [SortOrder()] // [SortOrder] | Optional. Sort Order - Ascending,Descending. (optional) -let filters = [ItemFilter()] // [ItemFilter] | Optional. Specify additional filters to apply. (optional) -let sortBy = ["inner_example"] // [String] | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) - -// Get channel items. -ChannelsAPI.getChannelItems(channelId: channelId, folderId: folderId, userId: userId, startIndex: startIndex, limit: limit, sortOrder: sortOrder, filters: filters, sortBy: sortBy, fields: fields) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **channelId** | **String** | Channel Id. | - **folderId** | **String** | Optional. Folder Id. | [optional] - **userId** | **String** | Optional. User Id. | [optional] - **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] - **sortOrder** | [**[SortOrder]**](SortOrder.md) | Optional. Sort Order - Ascending,Descending. | [optional] - **filters** | [**[ItemFilter]**](ItemFilter.md) | Optional. Specify additional filters to apply. | [optional] - **sortBy** | [**[String]**](String.md) | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getChannels** -```swift - open class func getChannels(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, supportsLatestItems: Bool? = nil, supportsMediaDeletion: Bool? = nil, isFavorite: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets available channels. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User Id to filter by. Use System.Guid.Empty to not filter by user. (optional) -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 supportsLatestItems = true // Bool | Optional. Filter by channels that support getting latest items. (optional) -let supportsMediaDeletion = true // Bool | Optional. Filter by channels that support media deletion. (optional) -let isFavorite = true // Bool | Optional. Filter by channels that are favorite. (optional) - -// Gets available channels. -ChannelsAPI.getChannels(userId: userId, startIndex: startIndex, limit: limit, supportsLatestItems: supportsLatestItems, supportsMediaDeletion: supportsMediaDeletion, isFavorite: isFavorite) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User Id to filter by. Use System.Guid.Empty to not filter by user. | [optional] - **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] - **supportsLatestItems** | **Bool** | Optional. Filter by channels that support getting latest items. | [optional] - **supportsMediaDeletion** | **Bool** | Optional. Filter by channels that support media deletion. | [optional] - **isFavorite** | **Bool** | Optional. Filter by channels that are favorite. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLatestChannelItems** -```swift - open class func getLatestChannelItems(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, filters: [ItemFilter]? = nil, fields: [ItemFields]? = nil, channelIds: [String]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets latest channel items. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | Optional. User Id. (optional) -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 filters = [ItemFilter()] // [ItemFilter] | Optional. Specify additional filters to apply. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let channelIds = ["inner_example"] // [String] | Optional. Specify one or more channel id's, comma delimited. (optional) - -// Gets latest channel items. -ChannelsAPI.getLatestChannelItems(userId: userId, startIndex: startIndex, limit: limit, filters: filters, fields: fields, channelIds: channelIds) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | Optional. User Id. | [optional] - **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] - **filters** | [**[ItemFilter]**](ItemFilter.md) | Optional. Specify additional filters to apply. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **channelIds** | [**[String]**](String.md) | Optional. Specify one or more channel id's, comma delimited. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ChapterInfo.md b/docs/ChapterInfo.md deleted file mode 100644 index 4b16fcc06..000000000 --- a/docs/ChapterInfo.md +++ /dev/null @@ -1,14 +0,0 @@ -# ChapterInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**startPositionTicks** | **Int64** | Gets or sets the start position ticks. | [optional] -**name** | **String** | Gets or sets the name. | [optional] -**imagePath** | **String** | Gets or sets the image path. | [optional] -**imageDateModified** | **Date** | | [optional] -**imageTag** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ClientCapabilities.md b/docs/ClientCapabilities.md deleted file mode 100644 index 900371f59..000000000 --- a/docs/ClientCapabilities.md +++ /dev/null @@ -1,19 +0,0 @@ -# ClientCapabilities - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playableMediaTypes** | **[String]** | | [optional] -**supportedCommands** | [GeneralCommandType] | | [optional] -**supportsMediaControl** | **Bool** | | [optional] -**supportsContentUploading** | **Bool** | | [optional] -**messageCallbackUrl** | **String** | | [optional] -**supportsPersistentIdentifier** | **Bool** | | [optional] -**supportsSync** | **Bool** | | [optional] -**deviceProfile** | [**ClientCapabilitiesDeviceProfile**](ClientCapabilitiesDeviceProfile.md) | | [optional] -**appStoreUrl** | **String** | | [optional] -**iconUrl** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ClientCapabilitiesDeviceProfile.md b/docs/ClientCapabilitiesDeviceProfile.md deleted file mode 100644 index 4e7d41faa..000000000 --- a/docs/ClientCapabilitiesDeviceProfile.md +++ /dev/null @@ -1,48 +0,0 @@ -# ClientCapabilitiesDeviceProfile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name of this device profile. | [optional] -**id** | **String** | Gets or sets the Id. | [optional] -**identification** | [**DeviceProfileIdentification**](DeviceProfileIdentification.md) | | [optional] -**friendlyName** | **String** | Gets or sets the friendly name of the device profile, which can be shown to users. | [optional] -**manufacturer** | **String** | Gets or sets the manufacturer of the device which this profile represents. | [optional] -**manufacturerUrl** | **String** | Gets or sets an url for the manufacturer of the device which this profile represents. | [optional] -**modelName** | **String** | Gets or sets the model name of the device which this profile represents. | [optional] -**modelDescription** | **String** | Gets or sets the model description of the device which this profile represents. | [optional] -**modelNumber** | **String** | Gets or sets the model number of the device which this profile represents. | [optional] -**modelUrl** | **String** | Gets or sets the ModelUrl. | [optional] -**serialNumber** | **String** | Gets or sets the serial number of the device which this profile represents. | [optional] -**enableAlbumArtInDidl** | **Bool** | Gets or sets a value indicating whether EnableAlbumArtInDidl. | [optional] [default to false] -**enableSingleAlbumArtLimit** | **Bool** | Gets or sets a value indicating whether EnableSingleAlbumArtLimit. | [optional] [default to false] -**enableSingleSubtitleLimit** | **Bool** | Gets or sets a value indicating whether EnableSingleSubtitleLimit. | [optional] [default to false] -**supportedMediaTypes** | **String** | Gets or sets the SupportedMediaTypes. | [optional] -**userId** | **String** | Gets or sets the UserId. | [optional] -**albumArtPn** | **String** | Gets or sets the AlbumArtPn. | [optional] -**maxAlbumArtWidth** | **Int** | Gets or sets the MaxAlbumArtWidth. | [optional] -**maxAlbumArtHeight** | **Int** | Gets or sets the MaxAlbumArtHeight. | [optional] -**maxIconWidth** | **Int** | Gets or sets the maximum allowed width of embedded icons. | [optional] -**maxIconHeight** | **Int** | Gets or sets the maximum allowed height of embedded icons. | [optional] -**maxStreamingBitrate** | **Int** | Gets or sets the maximum allowed bitrate for all streamed content. | [optional] -**maxStaticBitrate** | **Int** | Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files). | [optional] -**musicStreamingTranscodingBitrate** | **Int** | Gets or sets the maximum allowed bitrate for transcoded music streams. | [optional] -**maxStaticMusicBitrate** | **Int** | Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files. | [optional] -**sonyAggregationFlags** | **String** | Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace. | [optional] -**protocolInfo** | **String** | Gets or sets the ProtocolInfo. | [optional] -**timelineOffsetSeconds** | **Int** | Gets or sets the TimelineOffsetSeconds. | [optional] [default to 0] -**requiresPlainVideoItems** | **Bool** | Gets or sets a value indicating whether RequiresPlainVideoItems. | [optional] [default to false] -**requiresPlainFolders** | **Bool** | Gets or sets a value indicating whether RequiresPlainFolders. | [optional] [default to false] -**enableMSMediaReceiverRegistrar** | **Bool** | Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar. | [optional] [default to false] -**ignoreTranscodeByteRangeRequests** | **Bool** | Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests. | [optional] [default to false] -**xmlRootAttributes** | [XmlAttribute] | Gets or sets the XmlRootAttributes. | [optional] -**directPlayProfiles** | [DirectPlayProfile] | Gets or sets the direct play profiles. | [optional] -**transcodingProfiles** | [TranscodingProfile] | Gets or sets the transcoding profiles. | [optional] -**containerProfiles** | [ContainerProfile] | Gets or sets the container profiles. | [optional] -**codecProfiles** | [CodecProfile] | Gets or sets the codec profiles. | [optional] -**responseProfiles** | [ResponseProfile] | Gets or sets the ResponseProfiles. | [optional] -**subtitleProfiles** | [SubtitleProfile] | Gets or sets the subtitle profiles. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ClientCapabilitiesDto.md b/docs/ClientCapabilitiesDto.md deleted file mode 100644 index 6572c12d7..000000000 --- a/docs/ClientCapabilitiesDto.md +++ /dev/null @@ -1,19 +0,0 @@ -# ClientCapabilitiesDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playableMediaTypes** | **[String]** | Gets or sets the list of playable media types. | [optional] -**supportedCommands** | [GeneralCommandType] | Gets or sets the list of supported commands. | [optional] -**supportsMediaControl** | **Bool** | Gets or sets a value indicating whether session supports media control. | [optional] -**supportsContentUploading** | **Bool** | Gets or sets a value indicating whether session supports content uploading. | [optional] -**messageCallbackUrl** | **String** | Gets or sets the message callback url. | [optional] -**supportsPersistentIdentifier** | **Bool** | Gets or sets a value indicating whether session supports a persistent identifier. | [optional] -**supportsSync** | **Bool** | Gets or sets a value indicating whether session supports sync. | [optional] -**deviceProfile** | [**ClientCapabilitiesDeviceProfile**](ClientCapabilitiesDeviceProfile.md) | | [optional] -**appStoreUrl** | **String** | Gets or sets the app store url. | [optional] -**iconUrl** | **String** | Gets or sets the icon url. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ClientLogAPI.md b/docs/ClientLogAPI.md deleted file mode 100644 index 64c837447..000000000 --- a/docs/ClientLogAPI.md +++ /dev/null @@ -1,57 +0,0 @@ -# ClientLogAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**logFile**](ClientLogAPI.md#logfile) | **POST** /ClientLog/Document | Upload a document. - - -# **logFile** -```swift - open class func logFile(body: URL? = nil, completion: @escaping (_ data: ClientLogDocumentResponseDto?, _ error: Error?) -> Void) -``` - -Upload a document. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let body = URL(string: "https://example.com")! // URL | (optional) - -// Upload a document. -ClientLogAPI.logFile(body: body) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **body** | **URL** | | [optional] - -### Return type - -[**ClientLogDocumentResponseDto**](ClientLogDocumentResponseDto.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: text/plain - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ClientLogDocumentResponseDto.md b/docs/ClientLogDocumentResponseDto.md deleted file mode 100644 index 4b9186ae0..000000000 --- a/docs/ClientLogDocumentResponseDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# ClientLogDocumentResponseDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**fileName** | **String** | Gets the resulting filename. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CodecProfile.md b/docs/CodecProfile.md deleted file mode 100644 index 995cc69cf..000000000 --- a/docs/CodecProfile.md +++ /dev/null @@ -1,14 +0,0 @@ -# CodecProfile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**type** | [**CodecType**](CodecType.md) | | [optional] -**conditions** | [ProfileCondition] | | [optional] -**applyConditions** | [ProfileCondition] | | [optional] -**codec** | **String** | | [optional] -**container** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CodecType.md b/docs/CodecType.md deleted file mode 100644 index cbb56dc9c..000000000 --- a/docs/CodecType.md +++ /dev/null @@ -1,9 +0,0 @@ -# CodecType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CollectionAPI.md b/docs/CollectionAPI.md deleted file mode 100644 index 94ca0cfcc..000000000 --- a/docs/CollectionAPI.md +++ /dev/null @@ -1,165 +0,0 @@ -# CollectionAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**addToCollection**](CollectionAPI.md#addtocollection) | **POST** /Collections/{collectionId}/Items | Adds items to a collection. -[**createCollection**](CollectionAPI.md#createcollection) | **POST** /Collections | Creates a new collection. -[**removeFromCollection**](CollectionAPI.md#removefromcollection) | **DELETE** /Collections/{collectionId}/Items | Removes items from a collection. - - -# **addToCollection** -```swift - open class func addToCollection(collectionId: String, ids: [String], completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Adds items to a collection. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let collectionId = "collectionId_example" // String | The collection id. -let ids = ["inner_example"] // [String] | Item ids, comma delimited. - -// Adds items to a collection. -CollectionAPI.addToCollection(collectionId: collectionId, ids: ids) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **collectionId** | **String** | The collection id. | - **ids** | [**[String]**](String.md) | Item ids, comma delimited. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **createCollection** -```swift - open class func createCollection(name: String? = nil, ids: [String]? = nil, parentId: String? = nil, isLocked: Bool? = nil, completion: @escaping (_ data: CollectionCreationResult?, _ error: Error?) -> Void) -``` - -Creates a new collection. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The name of the collection. (optional) -let ids = ["inner_example"] // [String] | Item Ids to add to the collection. (optional) -let parentId = "parentId_example" // String | Optional. Create the collection within a specific folder. (optional) -let isLocked = true // Bool | Whether or not to lock the new collection. (optional) (default to false) - -// Creates a new collection. -CollectionAPI.createCollection(name: name, ids: ids, parentId: parentId, isLocked: isLocked) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The name of the collection. | [optional] - **ids** | [**[String]**](String.md) | Item Ids to add to the collection. | [optional] - **parentId** | **String** | Optional. Create the collection within a specific folder. | [optional] - **isLocked** | **Bool** | Whether or not to lock the new collection. | [optional] [default to false] - -### Return type - -[**CollectionCreationResult**](CollectionCreationResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **removeFromCollection** -```swift - open class func removeFromCollection(collectionId: String, ids: [String], completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Removes items from a collection. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let collectionId = "collectionId_example" // String | The collection id. -let ids = ["inner_example"] // [String] | Item ids, comma delimited. - -// Removes items from a collection. -CollectionAPI.removeFromCollection(collectionId: collectionId, ids: ids) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **collectionId** | **String** | The collection id. | - **ids** | [**[String]**](String.md) | Item ids, comma delimited. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/CollectionCreationResult.md b/docs/CollectionCreationResult.md deleted file mode 100644 index 2226fa7ad..000000000 --- a/docs/CollectionCreationResult.md +++ /dev/null @@ -1,10 +0,0 @@ -# CollectionCreationResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CollectionTypeOptions.md b/docs/CollectionTypeOptions.md deleted file mode 100644 index 9273fbfab..000000000 --- a/docs/CollectionTypeOptions.md +++ /dev/null @@ -1,9 +0,0 @@ -# CollectionTypeOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ConfigImageTypes.md b/docs/ConfigImageTypes.md deleted file mode 100644 index b1ee49327..000000000 --- a/docs/ConfigImageTypes.md +++ /dev/null @@ -1,16 +0,0 @@ -# ConfigImageTypes - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**backdropSizes** | **[String]** | | [optional] -**baseUrl** | **String** | | [optional] -**logoSizes** | **[String]** | | [optional] -**posterSizes** | **[String]** | | [optional] -**profileSizes** | **[String]** | | [optional] -**secureBaseUrl** | **String** | | [optional] -**stillSizes** | **[String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ConfigurationAPI.md b/docs/ConfigurationAPI.md deleted file mode 100644 index 2a66f34b1..000000000 --- a/docs/ConfigurationAPI.md +++ /dev/null @@ -1,296 +0,0 @@ -# ConfigurationAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getConfiguration**](ConfigurationAPI.md#getconfiguration) | **GET** /System/Configuration | Gets application configuration. -[**getDefaultMetadataOptions**](ConfigurationAPI.md#getdefaultmetadataoptions) | **GET** /System/Configuration/MetadataOptions/Default | Gets a default MetadataOptions object. -[**getNamedConfiguration**](ConfigurationAPI.md#getnamedconfiguration) | **GET** /System/Configuration/{key} | Gets a named configuration. -[**updateConfiguration**](ConfigurationAPI.md#updateconfiguration) | **POST** /System/Configuration | Updates application configuration. -[**updateMediaEncoderPath**](ConfigurationAPI.md#updatemediaencoderpath) | **POST** /System/MediaEncoder/Path | Updates the path to the media encoder. -[**updateNamedConfiguration**](ConfigurationAPI.md#updatenamedconfiguration) | **POST** /System/Configuration/{key} | Updates named configuration. - - -# **getConfiguration** -```swift - open class func getConfiguration(completion: @escaping (_ data: ServerConfiguration?, _ error: Error?) -> Void) -``` - -Gets application configuration. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets application configuration. -ConfigurationAPI.getConfiguration() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ServerConfiguration**](ServerConfiguration.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDefaultMetadataOptions** -```swift - open class func getDefaultMetadataOptions(completion: @escaping (_ data: MetadataOptions?, _ error: Error?) -> Void) -``` - -Gets a default MetadataOptions object. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets a default MetadataOptions object. -ConfigurationAPI.getDefaultMetadataOptions() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**MetadataOptions**](MetadataOptions.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getNamedConfiguration** -```swift - open class func getNamedConfiguration(key: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a named configuration. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let key = "key_example" // String | Configuration key. - -// Gets a named configuration. -ConfigurationAPI.getNamedConfiguration(key: key) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **key** | **String** | Configuration key. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateConfiguration** -```swift - open class func updateConfiguration(updateConfigurationRequest: UpdateConfigurationRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates application configuration. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let updateConfigurationRequest = UpdateConfiguration_request(logFileRetentionDays: 123, isStartupWizardCompleted: false, cachePath: "cachePath_example", previousVersion: "previousVersion_example", previousVersionStr: "previousVersionStr_example", enableMetrics: false, enableNormalizedItemByNameIds: false, isPortAuthorized: false, quickConnectAvailable: false, enableCaseSensitiveItemIds: false, disableLiveTvChannelUserDataName: false, metadataPath: "metadataPath_example", metadataNetworkPath: "metadataNetworkPath_example", preferredMetadataLanguage: "preferredMetadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", sortReplaceCharacters: ["sortReplaceCharacters_example"], sortRemoveCharacters: ["sortRemoveCharacters_example"], sortRemoveWords: ["sortRemoveWords_example"], minResumePct: 123, maxResumePct: 123, minResumeDurationSeconds: 123, minAudiobookResume: 123, maxAudiobookResume: 123, libraryMonitorDelay: 123, imageSavingConvention: ImageSavingConvention(), metadataOptions: [MetadataOptions(itemType: "itemType_example", disabledMetadataSavers: ["disabledMetadataSavers_example"], localMetadataReaderOrder: ["localMetadataReaderOrder_example"], disabledMetadataFetchers: ["disabledMetadataFetchers_example"], metadataFetcherOrder: ["metadataFetcherOrder_example"], disabledImageFetchers: ["disabledImageFetchers_example"], imageFetcherOrder: ["imageFetcherOrder_example"])], skipDeserializationForBasicTypes: false, serverName: "serverName_example", uICulture: "uICulture_example", saveMetadataHidden: false, contentTypes: [NameValuePair(name: "name_example", value: "value_example")], remoteClientBitrateLimit: 123, enableFolderView: false, enableGroupingIntoCollections: false, displaySpecialsWithinSeasons: false, codecsUsed: ["codecsUsed_example"], pluginRepositories: [RepositoryInfo(name: "name_example", url: "url_example", enabled: false)], enableExternalContentInSuggestions: false, imageExtractionTimeoutMs: 123, pathSubstitutions: [PathSubstitution(from: "from_example", to: "to_example")], enableSlowResponseWarning: false, slowResponseThresholdMs: 123, corsHosts: ["corsHosts_example"], activityLogRetentionDays: 123, libraryScanFanoutConcurrency: 123, libraryMetadataRefreshConcurrency: 123, removeOldPlugins: false, allowClientLogUpload: false) // UpdateConfigurationRequest | Configuration. - -// Updates application configuration. -ConfigurationAPI.updateConfiguration(updateConfigurationRequest: updateConfigurationRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **updateConfigurationRequest** | [**UpdateConfigurationRequest**](UpdateConfigurationRequest.md) | Configuration. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateMediaEncoderPath** -```swift - open class func updateMediaEncoderPath(updateMediaEncoderPathRequest: UpdateMediaEncoderPathRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates the path to the media encoder. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let updateMediaEncoderPathRequest = UpdateMediaEncoderPath_request(path: "path_example", pathType: "pathType_example") // UpdateMediaEncoderPathRequest | Media encoder path form body. - -// Updates the path to the media encoder. -ConfigurationAPI.updateMediaEncoderPath(updateMediaEncoderPathRequest: updateMediaEncoderPathRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **updateMediaEncoderPathRequest** | [**UpdateMediaEncoderPathRequest**](UpdateMediaEncoderPathRequest.md) | Media encoder path form body. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateNamedConfiguration** -```swift - open class func updateNamedConfiguration(key: String, body: AnyCodable, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates named configuration. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let key = "key_example" // String | Configuration key. -let body = TODO // AnyCodable | Configuration. - -// Updates named configuration. -ConfigurationAPI.updateNamedConfiguration(key: key, body: body) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **key** | **String** | Configuration key. | - **body** | **AnyCodable** | Configuration. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ConfigurationPageInfo.md b/docs/ConfigurationPageInfo.md deleted file mode 100644 index 8bc4bd4f9..000000000 --- a/docs/ConfigurationPageInfo.md +++ /dev/null @@ -1,15 +0,0 @@ -# ConfigurationPageInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**enableInMainMenu** | **Bool** | Gets or sets a value indicating whether the configurations page is enabled in the main menu. | [optional] -**menuSection** | **String** | Gets or sets the menu section. | [optional] -**menuIcon** | **String** | Gets or sets the menu icon. | [optional] -**displayName** | **String** | Gets or sets the display name. | [optional] -**pluginId** | **String** | Gets or sets the plugin id. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ConfigurationPageType.md b/docs/ConfigurationPageType.md deleted file mode 100644 index 3a59e2412..000000000 --- a/docs/ConfigurationPageType.md +++ /dev/null @@ -1,9 +0,0 @@ -# ConfigurationPageType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ContainerProfile.md b/docs/ContainerProfile.md deleted file mode 100644 index 52d87566b..000000000 --- a/docs/ContainerProfile.md +++ /dev/null @@ -1,12 +0,0 @@ -# ContainerProfile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**type** | [**DlnaProfileType**](DlnaProfileType.md) | | [optional] -**conditions** | [ProfileCondition] | | [optional] -**container** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ControlResponse.md b/docs/ControlResponse.md deleted file mode 100644 index a6b46977b..000000000 --- a/docs/ControlResponse.md +++ /dev/null @@ -1,12 +0,0 @@ -# ControlResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**headers** | **[String: String]** | | [optional] [readonly] -**xml** | **String** | | [optional] -**isSuccessful** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CountryInfo.md b/docs/CountryInfo.md deleted file mode 100644 index 0c919ece5..000000000 --- a/docs/CountryInfo.md +++ /dev/null @@ -1,13 +0,0 @@ -# CountryInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**displayName** | **String** | Gets or sets the display name. | [optional] -**twoLetterISORegionName** | **String** | Gets or sets the name of the two letter ISO region. | [optional] -**threeLetterISORegionName** | **String** | Gets or sets the name of the three letter ISO region. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CreateAdminNotificationRequest.md b/docs/CreateAdminNotificationRequest.md deleted file mode 100644 index dec79d8fb..000000000 --- a/docs/CreateAdminNotificationRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# CreateAdminNotificationRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the notification name. | [optional] -**description** | **String** | Gets or sets the notification description. | [optional] -**notificationLevel** | [**NotificationLevel**](NotificationLevel.md) | Gets or sets the notification level. | [optional] -**url** | **String** | Gets or sets the notification url. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CreatePlaylistDto.md b/docs/CreatePlaylistDto.md deleted file mode 100644 index 1a0af069e..000000000 --- a/docs/CreatePlaylistDto.md +++ /dev/null @@ -1,13 +0,0 @@ -# CreatePlaylistDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name of the new playlist. | [optional] -**ids** | **[String]** | Gets or sets item ids to add to the playlist. | [optional] -**userId** | **String** | Gets or sets the user id. | [optional] -**mediaType** | **String** | Gets or sets the media type. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CreatePlaylistRequest.md b/docs/CreatePlaylistRequest.md deleted file mode 100644 index c2e0d30e8..000000000 --- a/docs/CreatePlaylistRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# CreatePlaylistRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name of the new playlist. | [optional] -**ids** | **[String]** | Gets or sets item ids to add to the playlist. | [optional] -**userId** | **String** | Gets or sets the user id. | [optional] -**mediaType** | **String** | Gets or sets the media type. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CreateProfileRequest.md b/docs/CreateProfileRequest.md deleted file mode 100644 index 2d08bedd4..000000000 --- a/docs/CreateProfileRequest.md +++ /dev/null @@ -1,48 +0,0 @@ -# CreateProfileRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name of this device profile. | [optional] -**id** | **String** | Gets or sets the Id. | [optional] -**identification** | [**DeviceProfileIdentification**](DeviceProfileIdentification.md) | | [optional] -**friendlyName** | **String** | Gets or sets the friendly name of the device profile, which can be shown to users. | [optional] -**manufacturer** | **String** | Gets or sets the manufacturer of the device which this profile represents. | [optional] -**manufacturerUrl** | **String** | Gets or sets an url for the manufacturer of the device which this profile represents. | [optional] -**modelName** | **String** | Gets or sets the model name of the device which this profile represents. | [optional] -**modelDescription** | **String** | Gets or sets the model description of the device which this profile represents. | [optional] -**modelNumber** | **String** | Gets or sets the model number of the device which this profile represents. | [optional] -**modelUrl** | **String** | Gets or sets the ModelUrl. | [optional] -**serialNumber** | **String** | Gets or sets the serial number of the device which this profile represents. | [optional] -**enableAlbumArtInDidl** | **Bool** | Gets or sets a value indicating whether EnableAlbumArtInDidl. | [optional] [default to false] -**enableSingleAlbumArtLimit** | **Bool** | Gets or sets a value indicating whether EnableSingleAlbumArtLimit. | [optional] [default to false] -**enableSingleSubtitleLimit** | **Bool** | Gets or sets a value indicating whether EnableSingleSubtitleLimit. | [optional] [default to false] -**supportedMediaTypes** | **String** | Gets or sets the SupportedMediaTypes. | [optional] -**userId** | **String** | Gets or sets the UserId. | [optional] -**albumArtPn** | **String** | Gets or sets the AlbumArtPn. | [optional] -**maxAlbumArtWidth** | **Int** | Gets or sets the MaxAlbumArtWidth. | [optional] -**maxAlbumArtHeight** | **Int** | Gets or sets the MaxAlbumArtHeight. | [optional] -**maxIconWidth** | **Int** | Gets or sets the maximum allowed width of embedded icons. | [optional] -**maxIconHeight** | **Int** | Gets or sets the maximum allowed height of embedded icons. | [optional] -**maxStreamingBitrate** | **Int** | Gets or sets the maximum allowed bitrate for all streamed content. | [optional] -**maxStaticBitrate** | **Int** | Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files). | [optional] -**musicStreamingTranscodingBitrate** | **Int** | Gets or sets the maximum allowed bitrate for transcoded music streams. | [optional] -**maxStaticMusicBitrate** | **Int** | Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files. | [optional] -**sonyAggregationFlags** | **String** | Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace. | [optional] -**protocolInfo** | **String** | Gets or sets the ProtocolInfo. | [optional] -**timelineOffsetSeconds** | **Int** | Gets or sets the TimelineOffsetSeconds. | [optional] [default to 0] -**requiresPlainVideoItems** | **Bool** | Gets or sets a value indicating whether RequiresPlainVideoItems. | [optional] [default to false] -**requiresPlainFolders** | **Bool** | Gets or sets a value indicating whether RequiresPlainFolders. | [optional] [default to false] -**enableMSMediaReceiverRegistrar** | **Bool** | Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar. | [optional] [default to false] -**ignoreTranscodeByteRangeRequests** | **Bool** | Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests. | [optional] [default to false] -**xmlRootAttributes** | [XmlAttribute] | Gets or sets the XmlRootAttributes. | [optional] -**directPlayProfiles** | [DirectPlayProfile] | Gets or sets the direct play profiles. | [optional] -**transcodingProfiles** | [TranscodingProfile] | Gets or sets the transcoding profiles. | [optional] -**containerProfiles** | [ContainerProfile] | Gets or sets the container profiles. | [optional] -**codecProfiles** | [CodecProfile] | Gets or sets the codec profiles. | [optional] -**responseProfiles** | [ResponseProfile] | Gets or sets the ResponseProfiles. | [optional] -**subtitleProfiles** | [SubtitleProfile] | Gets or sets the subtitle profiles. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CreateSeriesTimerRequest.md b/docs/CreateSeriesTimerRequest.md deleted file mode 100644 index 91e003d23..000000000 --- a/docs/CreateSeriesTimerRequest.md +++ /dev/null @@ -1,44 +0,0 @@ -# CreateSeriesTimerRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | Gets or sets the Id of the recording. | [optional] -**type** | **String** | | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**externalId** | **String** | Gets or sets the external identifier. | [optional] -**channelId** | **String** | Gets or sets the channel id of the recording. | [optional] -**externalChannelId** | **String** | Gets or sets the external channel identifier. | [optional] -**channelName** | **String** | Gets or sets the channel name of the recording. | [optional] -**channelPrimaryImageTag** | **String** | | [optional] -**programId** | **String** | Gets or sets the program identifier. | [optional] -**externalProgramId** | **String** | Gets or sets the external program identifier. | [optional] -**name** | **String** | Gets or sets the name of the recording. | [optional] -**overview** | **String** | Gets or sets the description of the recording. | [optional] -**startDate** | **Date** | Gets or sets the start date of the recording, in UTC. | [optional] -**endDate** | **Date** | Gets or sets the end date of the recording, in UTC. | [optional] -**serviceName** | **String** | Gets or sets the name of the service. | [optional] -**priority** | **Int** | Gets or sets the priority. | [optional] -**prePaddingSeconds** | **Int** | Gets or sets the pre padding seconds. | [optional] -**postPaddingSeconds** | **Int** | Gets or sets the post padding seconds. | [optional] -**isPrePaddingRequired** | **Bool** | Gets or sets a value indicating whether this instance is pre padding required. | [optional] -**parentBackdropItemId** | **String** | Gets or sets the Id of the Parent that has a backdrop if the item does not have one. | [optional] -**parentBackdropImageTags** | **[String]** | Gets or sets the parent backdrop image tags. | [optional] -**isPostPaddingRequired** | **Bool** | Gets or sets a value indicating whether this instance is post padding required. | [optional] -**keepUntil** | [**KeepUntil**](KeepUntil.md) | | [optional] -**recordAnyTime** | **Bool** | Gets or sets a value indicating whether [record any time]. | [optional] -**skipEpisodesInLibrary** | **Bool** | | [optional] -**recordAnyChannel** | **Bool** | Gets or sets a value indicating whether [record any channel]. | [optional] -**keepUpTo** | **Int** | | [optional] -**recordNewOnly** | **Bool** | Gets or sets a value indicating whether [record new only]. | [optional] -**days** | [DayOfWeek] | Gets or sets the days. | [optional] -**dayPattern** | [**DayPattern**](DayPattern.md) | Gets or sets the day pattern. | [optional] -**imageTags** | **[String: String]** | Gets or sets the image tags. | [optional] -**parentThumbItemId** | **String** | Gets or sets the parent thumb item id. | [optional] -**parentThumbImageTag** | **String** | Gets or sets the parent thumb image tag. | [optional] -**parentPrimaryImageItemId** | **String** | Gets or sets the parent primary image item identifier. | [optional] -**parentPrimaryImageTag** | **String** | Gets or sets the parent primary image tag. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CreateTimerRequest.md b/docs/CreateTimerRequest.md deleted file mode 100644 index c011b48df..000000000 --- a/docs/CreateTimerRequest.md +++ /dev/null @@ -1,37 +0,0 @@ -# CreateTimerRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | Gets or sets the Id of the recording. | [optional] -**type** | **String** | | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**externalId** | **String** | Gets or sets the external identifier. | [optional] -**channelId** | **String** | Gets or sets the channel id of the recording. | [optional] -**externalChannelId** | **String** | Gets or sets the external channel identifier. | [optional] -**channelName** | **String** | Gets or sets the channel name of the recording. | [optional] -**channelPrimaryImageTag** | **String** | | [optional] -**programId** | **String** | Gets or sets the program identifier. | [optional] -**externalProgramId** | **String** | Gets or sets the external program identifier. | [optional] -**name** | **String** | Gets or sets the name of the recording. | [optional] -**overview** | **String** | Gets or sets the description of the recording. | [optional] -**startDate** | **Date** | Gets or sets the start date of the recording, in UTC. | [optional] -**endDate** | **Date** | Gets or sets the end date of the recording, in UTC. | [optional] -**serviceName** | **String** | Gets or sets the name of the service. | [optional] -**priority** | **Int** | Gets or sets the priority. | [optional] -**prePaddingSeconds** | **Int** | Gets or sets the pre padding seconds. | [optional] -**postPaddingSeconds** | **Int** | Gets or sets the post padding seconds. | [optional] -**isPrePaddingRequired** | **Bool** | Gets or sets a value indicating whether this instance is pre padding required. | [optional] -**parentBackdropItemId** | **String** | Gets or sets the Id of the Parent that has a backdrop if the item does not have one. | [optional] -**parentBackdropImageTags** | **[String]** | Gets or sets the parent backdrop image tags. | [optional] -**isPostPaddingRequired** | **Bool** | Gets or sets a value indicating whether this instance is post padding required. | [optional] -**keepUntil** | [**KeepUntil**](KeepUntil.md) | | [optional] -**status** | [**RecordingStatus**](RecordingStatus.md) | Gets or sets the status. | [optional] -**seriesTimerId** | **String** | Gets or sets the series timer identifier. | [optional] -**externalSeriesTimerId** | **String** | Gets or sets the external series timer identifier. | [optional] -**runTimeTicks** | **Int64** | Gets or sets the run time ticks. | [optional] -**programInfo** | [**TimerInfoDtoProgramInfo**](TimerInfoDtoProgramInfo.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CreateUserByName.md b/docs/CreateUserByName.md deleted file mode 100644 index d37aceac0..000000000 --- a/docs/CreateUserByName.md +++ /dev/null @@ -1,11 +0,0 @@ -# CreateUserByName - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the username. | [optional] -**password** | **String** | Gets or sets the password. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CreateUserByNameRequest.md b/docs/CreateUserByNameRequest.md deleted file mode 100644 index 40bef2e2e..000000000 --- a/docs/CreateUserByNameRequest.md +++ /dev/null @@ -1,11 +0,0 @@ -# CreateUserByNameRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the username. | [optional] -**password** | **String** | Gets or sets the password. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/CultureDto.md b/docs/CultureDto.md deleted file mode 100644 index f500df752..000000000 --- a/docs/CultureDto.md +++ /dev/null @@ -1,14 +0,0 @@ -# CultureDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets the name. | [optional] -**displayName** | **String** | Gets the display name. | [optional] -**twoLetterISOLanguageName** | **String** | Gets the name of the two letter ISO language. | [optional] -**threeLetterISOLanguageName** | **String** | Gets the name of the three letter ISO language. | [optional] [readonly] -**threeLetterISOLanguageNames** | **[String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DashboardAPI.md b/docs/DashboardAPI.md deleted file mode 100644 index 29ffb66c7..000000000 --- a/docs/DashboardAPI.md +++ /dev/null @@ -1,106 +0,0 @@ -# DashboardAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getConfigurationPages**](DashboardAPI.md#getconfigurationpages) | **GET** /web/ConfigurationPages | Gets the configuration pages. -[**getDashboardConfigurationPage**](DashboardAPI.md#getdashboardconfigurationpage) | **GET** /web/ConfigurationPage | Gets a dashboard configuration page. - - -# **getConfigurationPages** -```swift - open class func getConfigurationPages(enableInMainMenu: Bool? = nil, completion: @escaping (_ data: [ConfigurationPageInfo]?, _ error: Error?) -> Void) -``` - -Gets the configuration pages. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let enableInMainMenu = true // Bool | Whether to enable in the main menu. (optional) - -// Gets the configuration pages. -DashboardAPI.getConfigurationPages(enableInMainMenu: enableInMainMenu) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **enableInMainMenu** | **Bool** | Whether to enable in the main menu. | [optional] - -### Return type - -[**[ConfigurationPageInfo]**](ConfigurationPageInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDashboardConfigurationPage** -```swift - open class func getDashboardConfigurationPage(name: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a dashboard configuration page. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The name of the page. (optional) - -// Gets a dashboard configuration page. -DashboardAPI.getDashboardConfigurationPage(name: name) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The name of the page. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/html, application/x-javascript, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/DayOfWeek.md b/docs/DayOfWeek.md deleted file mode 100644 index f2a551c8b..000000000 --- a/docs/DayOfWeek.md +++ /dev/null @@ -1,9 +0,0 @@ -# DayOfWeek - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DayPattern.md b/docs/DayPattern.md deleted file mode 100644 index 7d0cba6e3..000000000 --- a/docs/DayPattern.md +++ /dev/null @@ -1,9 +0,0 @@ -# DayPattern - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DefaultDirectoryBrowserInfoDto.md b/docs/DefaultDirectoryBrowserInfoDto.md deleted file mode 100644 index d43a41928..000000000 --- a/docs/DefaultDirectoryBrowserInfoDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultDirectoryBrowserInfoDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**path** | **String** | Gets or sets the path. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DeviceIdentification.md b/docs/DeviceIdentification.md deleted file mode 100644 index 867a3ac55..000000000 --- a/docs/DeviceIdentification.md +++ /dev/null @@ -1,18 +0,0 @@ -# DeviceIdentification - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**friendlyName** | **String** | Gets or sets the name of the friendly. | [optional] -**modelNumber** | **String** | Gets or sets the model number. | [optional] -**serialNumber** | **String** | Gets or sets the serial number. | [optional] -**modelName** | **String** | Gets or sets the name of the model. | [optional] -**modelDescription** | **String** | Gets or sets the model description. | [optional] -**modelUrl** | **String** | Gets or sets the model URL. | [optional] -**manufacturer** | **String** | Gets or sets the manufacturer. | [optional] -**manufacturerUrl** | **String** | Gets or sets the manufacturer URL. | [optional] -**headers** | [HttpHeaderInfo] | Gets or sets the headers. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DeviceInfo.md b/docs/DeviceInfo.md deleted file mode 100644 index 91ee5e5de..000000000 --- a/docs/DeviceInfo.md +++ /dev/null @@ -1,19 +0,0 @@ -# DeviceInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | | [optional] -**accessToken** | **String** | Gets or sets the access token. | [optional] -**id** | **String** | Gets or sets the identifier. | [optional] -**lastUserName** | **String** | Gets or sets the last name of the user. | [optional] -**appName** | **String** | Gets or sets the name of the application. | [optional] -**appVersion** | **String** | Gets or sets the application version. | [optional] -**lastUserId** | **String** | Gets or sets the last user identifier. | [optional] -**dateLastActivity** | **Date** | Gets or sets the date last modified. | [optional] -**capabilities** | [**DeviceInfoCapabilities**](DeviceInfoCapabilities.md) | | [optional] -**iconUrl** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DeviceInfoCapabilities.md b/docs/DeviceInfoCapabilities.md deleted file mode 100644 index e5b897c6e..000000000 --- a/docs/DeviceInfoCapabilities.md +++ /dev/null @@ -1,19 +0,0 @@ -# DeviceInfoCapabilities - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playableMediaTypes** | **[String]** | | [optional] -**supportedCommands** | [GeneralCommandType] | | [optional] -**supportsMediaControl** | **Bool** | | [optional] -**supportsContentUploading** | **Bool** | | [optional] -**messageCallbackUrl** | **String** | | [optional] -**supportsPersistentIdentifier** | **Bool** | | [optional] -**supportsSync** | **Bool** | | [optional] -**deviceProfile** | [**ClientCapabilitiesDeviceProfile**](ClientCapabilitiesDeviceProfile.md) | | [optional] -**appStoreUrl** | **String** | | [optional] -**iconUrl** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DeviceInfoQueryResult.md b/docs/DeviceInfoQueryResult.md deleted file mode 100644 index c7ea2d869..000000000 --- a/docs/DeviceInfoQueryResult.md +++ /dev/null @@ -1,12 +0,0 @@ -# DeviceInfoQueryResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**items** | [DeviceInfo] | Gets or sets the items. | [optional] -**totalRecordCount** | **Int** | Gets or sets the total number of records available. | [optional] -**startIndex** | **Int** | Gets or sets the index of the first record in Items. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DeviceOptions.md b/docs/DeviceOptions.md deleted file mode 100644 index 3acf3620f..000000000 --- a/docs/DeviceOptions.md +++ /dev/null @@ -1,12 +0,0 @@ -# DeviceOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **Int** | Gets the id. | [optional] [readonly] -**deviceId** | **String** | Gets the device id. | [optional] -**customName** | **String** | Gets or sets the custom name. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DeviceOptionsDto.md b/docs/DeviceOptionsDto.md deleted file mode 100644 index 6b8f6a0c1..000000000 --- a/docs/DeviceOptionsDto.md +++ /dev/null @@ -1,12 +0,0 @@ -# DeviceOptionsDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **Int** | Gets or sets the id. | [optional] -**deviceId** | **String** | Gets or sets the device id. | [optional] -**customName** | **String** | Gets or sets the custom name. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DeviceProfile.md b/docs/DeviceProfile.md deleted file mode 100644 index 6fddd6931..000000000 --- a/docs/DeviceProfile.md +++ /dev/null @@ -1,48 +0,0 @@ -# DeviceProfile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name of this device profile. | [optional] -**id** | **String** | Gets or sets the Id. | [optional] -**identification** | [**DeviceProfileIdentification**](DeviceProfileIdentification.md) | | [optional] -**friendlyName** | **String** | Gets or sets the friendly name of the device profile, which can be shown to users. | [optional] -**manufacturer** | **String** | Gets or sets the manufacturer of the device which this profile represents. | [optional] -**manufacturerUrl** | **String** | Gets or sets an url for the manufacturer of the device which this profile represents. | [optional] -**modelName** | **String** | Gets or sets the model name of the device which this profile represents. | [optional] -**modelDescription** | **String** | Gets or sets the model description of the device which this profile represents. | [optional] -**modelNumber** | **String** | Gets or sets the model number of the device which this profile represents. | [optional] -**modelUrl** | **String** | Gets or sets the ModelUrl. | [optional] -**serialNumber** | **String** | Gets or sets the serial number of the device which this profile represents. | [optional] -**enableAlbumArtInDidl** | **Bool** | Gets or sets a value indicating whether EnableAlbumArtInDidl. | [optional] [default to false] -**enableSingleAlbumArtLimit** | **Bool** | Gets or sets a value indicating whether EnableSingleAlbumArtLimit. | [optional] [default to false] -**enableSingleSubtitleLimit** | **Bool** | Gets or sets a value indicating whether EnableSingleSubtitleLimit. | [optional] [default to false] -**supportedMediaTypes** | **String** | Gets or sets the SupportedMediaTypes. | [optional] -**userId** | **String** | Gets or sets the UserId. | [optional] -**albumArtPn** | **String** | Gets or sets the AlbumArtPn. | [optional] -**maxAlbumArtWidth** | **Int** | Gets or sets the MaxAlbumArtWidth. | [optional] -**maxAlbumArtHeight** | **Int** | Gets or sets the MaxAlbumArtHeight. | [optional] -**maxIconWidth** | **Int** | Gets or sets the maximum allowed width of embedded icons. | [optional] -**maxIconHeight** | **Int** | Gets or sets the maximum allowed height of embedded icons. | [optional] -**maxStreamingBitrate** | **Int** | Gets or sets the maximum allowed bitrate for all streamed content. | [optional] -**maxStaticBitrate** | **Int** | Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files). | [optional] -**musicStreamingTranscodingBitrate** | **Int** | Gets or sets the maximum allowed bitrate for transcoded music streams. | [optional] -**maxStaticMusicBitrate** | **Int** | Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files. | [optional] -**sonyAggregationFlags** | **String** | Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace. | [optional] -**protocolInfo** | **String** | Gets or sets the ProtocolInfo. | [optional] -**timelineOffsetSeconds** | **Int** | Gets or sets the TimelineOffsetSeconds. | [optional] [default to 0] -**requiresPlainVideoItems** | **Bool** | Gets or sets a value indicating whether RequiresPlainVideoItems. | [optional] [default to false] -**requiresPlainFolders** | **Bool** | Gets or sets a value indicating whether RequiresPlainFolders. | [optional] [default to false] -**enableMSMediaReceiverRegistrar** | **Bool** | Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar. | [optional] [default to false] -**ignoreTranscodeByteRangeRequests** | **Bool** | Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests. | [optional] [default to false] -**xmlRootAttributes** | [XmlAttribute] | Gets or sets the XmlRootAttributes. | [optional] -**directPlayProfiles** | [DirectPlayProfile] | Gets or sets the direct play profiles. | [optional] -**transcodingProfiles** | [TranscodingProfile] | Gets or sets the transcoding profiles. | [optional] -**containerProfiles** | [ContainerProfile] | Gets or sets the container profiles. | [optional] -**codecProfiles** | [CodecProfile] | Gets or sets the codec profiles. | [optional] -**responseProfiles** | [ResponseProfile] | Gets or sets the ResponseProfiles. | [optional] -**subtitleProfiles** | [SubtitleProfile] | Gets or sets the subtitle profiles. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DeviceProfileIdentification.md b/docs/DeviceProfileIdentification.md deleted file mode 100644 index 33a345786..000000000 --- a/docs/DeviceProfileIdentification.md +++ /dev/null @@ -1,18 +0,0 @@ -# DeviceProfileIdentification - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**friendlyName** | **String** | Gets or sets the name of the friendly. | [optional] -**modelNumber** | **String** | Gets or sets the model number. | [optional] -**serialNumber** | **String** | Gets or sets the serial number. | [optional] -**modelName** | **String** | Gets or sets the name of the model. | [optional] -**modelDescription** | **String** | Gets or sets the model description. | [optional] -**modelUrl** | **String** | Gets or sets the model URL. | [optional] -**manufacturer** | **String** | Gets or sets the manufacturer. | [optional] -**manufacturerUrl** | **String** | Gets or sets the manufacturer URL. | [optional] -**headers** | [HttpHeaderInfo] | Gets or sets the headers. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DeviceProfileInfo.md b/docs/DeviceProfileInfo.md deleted file mode 100644 index 5d4e27aca..000000000 --- a/docs/DeviceProfileInfo.md +++ /dev/null @@ -1,12 +0,0 @@ -# DeviceProfileInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | Gets or sets the identifier. | [optional] -**name** | **String** | Gets or sets the name. | [optional] -**type** | [**DeviceProfileType**](DeviceProfileType.md) | Gets or sets the type. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DeviceProfileType.md b/docs/DeviceProfileType.md deleted file mode 100644 index 4ef85c1cf..000000000 --- a/docs/DeviceProfileType.md +++ /dev/null @@ -1,9 +0,0 @@ -# DeviceProfileType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DevicesAPI.md b/docs/DevicesAPI.md deleted file mode 100644 index a822c72bf..000000000 --- a/docs/DevicesAPI.md +++ /dev/null @@ -1,257 +0,0 @@ -# DevicesAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**deleteDevice**](DevicesAPI.md#deletedevice) | **DELETE** /Devices | Deletes a device. -[**getDeviceInfo**](DevicesAPI.md#getdeviceinfo) | **GET** /Devices/Info | Get info for a device. -[**getDeviceOptions**](DevicesAPI.md#getdeviceoptions) | **GET** /Devices/Options | Get options for a device. -[**getDevices**](DevicesAPI.md#getdevices) | **GET** /Devices | Get Devices. -[**updateDeviceOptions**](DevicesAPI.md#updatedeviceoptions) | **POST** /Devices/Options | Update device options. - - -# **deleteDevice** -```swift - open class func deleteDevice(id: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Deletes a device. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | Device Id. - -// Deletes a device. -DevicesAPI.deleteDevice(id: id) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | Device Id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDeviceInfo** -```swift - open class func getDeviceInfo(id: String, completion: @escaping (_ data: DeviceInfo?, _ error: Error?) -> Void) -``` - -Get info for a device. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | Device Id. - -// Get info for a device. -DevicesAPI.getDeviceInfo(id: id) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | Device Id. | - -### Return type - -[**DeviceInfo**](DeviceInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDeviceOptions** -```swift - open class func getDeviceOptions(id: String, completion: @escaping (_ data: DeviceOptions?, _ error: Error?) -> Void) -``` - -Get options for a device. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | Device Id. - -// Get options for a device. -DevicesAPI.getDeviceOptions(id: id) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | Device Id. | - -### Return type - -[**DeviceOptions**](DeviceOptions.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDevices** -```swift - open class func getDevices(supportsSync: Bool? = nil, userId: String? = nil, completion: @escaping (_ data: DeviceInfoQueryResult?, _ error: Error?) -> Void) -``` - -Get Devices. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let supportsSync = true // Bool | Gets or sets a value indicating whether [supports synchronize]. (optional) -let userId = "userId_example" // String | Gets or sets the user identifier. (optional) - -// Get Devices. -DevicesAPI.getDevices(supportsSync: supportsSync, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **supportsSync** | **Bool** | Gets or sets a value indicating whether [supports synchronize]. | [optional] - **userId** | **String** | Gets or sets the user identifier. | [optional] - -### Return type - -[**DeviceInfoQueryResult**](DeviceInfoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateDeviceOptions** -```swift - open class func updateDeviceOptions(id: String, updateDeviceOptionsRequest: UpdateDeviceOptionsRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Update device options. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | Device Id. -let updateDeviceOptionsRequest = UpdateDeviceOptions_request(id: 123, deviceId: "deviceId_example", customName: "customName_example") // UpdateDeviceOptionsRequest | Device Options. - -// Update device options. -DevicesAPI.updateDeviceOptions(id: id, updateDeviceOptionsRequest: updateDeviceOptionsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | Device Id. | - **updateDeviceOptionsRequest** | [**UpdateDeviceOptionsRequest**](UpdateDeviceOptionsRequest.md) | Device Options. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/DirectPlayProfile.md b/docs/DirectPlayProfile.md deleted file mode 100644 index c5a0d0b74..000000000 --- a/docs/DirectPlayProfile.md +++ /dev/null @@ -1,13 +0,0 @@ -# DirectPlayProfile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**container** | **String** | | [optional] -**audioCodec** | **String** | | [optional] -**videoCodec** | **String** | | [optional] -**type** | [**DlnaProfileType**](DlnaProfileType.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DisplayPreferencesAPI.md b/docs/DisplayPreferencesAPI.md deleted file mode 100644 index d7e95126b..000000000 --- a/docs/DisplayPreferencesAPI.md +++ /dev/null @@ -1,116 +0,0 @@ -# DisplayPreferencesAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getDisplayPreferences**](DisplayPreferencesAPI.md#getdisplaypreferences) | **GET** /DisplayPreferences/{displayPreferencesId} | Get Display Preferences. -[**updateDisplayPreferences**](DisplayPreferencesAPI.md#updatedisplaypreferences) | **POST** /DisplayPreferences/{displayPreferencesId} | Update Display Preferences. - - -# **getDisplayPreferences** -```swift - open class func getDisplayPreferences(displayPreferencesId: String, userId: String, client: String, completion: @escaping (_ data: DisplayPreferencesDto?, _ error: Error?) -> Void) -``` - -Get Display Preferences. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let displayPreferencesId = "displayPreferencesId_example" // String | Display preferences id. -let userId = "userId_example" // String | User id. -let client = "client_example" // String | Client. - -// Get Display Preferences. -DisplayPreferencesAPI.getDisplayPreferences(displayPreferencesId: displayPreferencesId, userId: userId, client: client) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **displayPreferencesId** | **String** | Display preferences id. | - **userId** | **String** | User id. | - **client** | **String** | Client. | - -### Return type - -[**DisplayPreferencesDto**](DisplayPreferencesDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateDisplayPreferences** -```swift - open class func updateDisplayPreferences(displayPreferencesId: String, userId: String, client: String, updateDisplayPreferencesRequest: UpdateDisplayPreferencesRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Update Display Preferences. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let displayPreferencesId = "displayPreferencesId_example" // String | Display preferences id. -let userId = "userId_example" // String | User Id. -let client = "client_example" // String | Client. -let updateDisplayPreferencesRequest = UpdateDisplayPreferences_request(id: "id_example", viewType: "viewType_example", sortBy: "sortBy_example", indexBy: "indexBy_example", rememberIndexing: false, primaryImageHeight: 123, primaryImageWidth: 123, customPrefs: "TODO", scrollDirection: ScrollDirection(), showBackdrop: false, rememberSorting: false, sortOrder: SortOrder(), showSidebar: false, client: "client_example") // UpdateDisplayPreferencesRequest | New Display Preferences object. - -// Update Display Preferences. -DisplayPreferencesAPI.updateDisplayPreferences(displayPreferencesId: displayPreferencesId, userId: userId, client: client, updateDisplayPreferencesRequest: updateDisplayPreferencesRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **displayPreferencesId** | **String** | Display preferences id. | - **userId** | **String** | User Id. | - **client** | **String** | Client. | - **updateDisplayPreferencesRequest** | [**UpdateDisplayPreferencesRequest**](UpdateDisplayPreferencesRequest.md) | New Display Preferences object. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/DisplayPreferencesDto.md b/docs/DisplayPreferencesDto.md deleted file mode 100644 index 4ff697be3..000000000 --- a/docs/DisplayPreferencesDto.md +++ /dev/null @@ -1,23 +0,0 @@ -# DisplayPreferencesDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | Gets or sets the user id. | [optional] -**viewType** | **String** | Gets or sets the type of the view. | [optional] -**sortBy** | **String** | Gets or sets the sort by. | [optional] -**indexBy** | **String** | Gets or sets the index by. | [optional] -**rememberIndexing** | **Bool** | Gets or sets a value indicating whether [remember indexing]. | [optional] -**primaryImageHeight** | **Int** | Gets or sets the height of the primary image. | [optional] -**primaryImageWidth** | **Int** | Gets or sets the width of the primary image. | [optional] -**customPrefs** | **[String: String]** | Gets or sets the custom prefs. | [optional] -**scrollDirection** | [**ScrollDirection**](ScrollDirection.md) | An enum representing the axis that should be scrolled. | [optional] -**showBackdrop** | **Bool** | Gets or sets a value indicating whether to show backdrops on this item. | [optional] -**rememberSorting** | **Bool** | Gets or sets a value indicating whether [remember sorting]. | [optional] -**sortOrder** | [**SortOrder**](SortOrder.md) | An enum representing the sorting order. | [optional] -**showSidebar** | **Bool** | Gets or sets a value indicating whether [show sidebar]. | [optional] -**client** | **String** | Gets or sets the client. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DlnaAPI.md b/docs/DlnaAPI.md deleted file mode 100644 index 23f417d76..000000000 --- a/docs/DlnaAPI.md +++ /dev/null @@ -1,296 +0,0 @@ -# DlnaAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**createProfile**](DlnaAPI.md#createprofile) | **POST** /Dlna/Profiles | Creates a profile. -[**deleteProfile**](DlnaAPI.md#deleteprofile) | **DELETE** /Dlna/Profiles/{profileId} | Deletes a profile. -[**getDefaultProfile**](DlnaAPI.md#getdefaultprofile) | **GET** /Dlna/Profiles/Default | Gets the default profile. -[**getProfile**](DlnaAPI.md#getprofile) | **GET** /Dlna/Profiles/{profileId} | Gets a single profile. -[**getProfileInfos**](DlnaAPI.md#getprofileinfos) | **GET** /Dlna/ProfileInfos | Get profile infos. -[**updateProfile**](DlnaAPI.md#updateprofile) | **POST** /Dlna/Profiles/{profileId} | Updates a profile. - - -# **createProfile** -```swift - open class func createProfile(createProfileRequest: CreateProfileRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Creates a profile. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let createProfileRequest = CreateProfile_request(name: "name_example", id: "id_example", identification: DeviceProfile_Identification(friendlyName: "friendlyName_example", modelNumber: "modelNumber_example", serialNumber: "serialNumber_example", modelName: "modelName_example", modelDescription: "modelDescription_example", modelUrl: "modelUrl_example", manufacturer: "manufacturer_example", manufacturerUrl: "manufacturerUrl_example", headers: [HttpHeaderInfo(name: "name_example", value: "value_example", match: HeaderMatchType())]), friendlyName: "friendlyName_example", manufacturer: "manufacturer_example", manufacturerUrl: "manufacturerUrl_example", modelName: "modelName_example", modelDescription: "modelDescription_example", modelNumber: "modelNumber_example", modelUrl: "modelUrl_example", serialNumber: "serialNumber_example", enableAlbumArtInDidl: false, enableSingleAlbumArtLimit: false, enableSingleSubtitleLimit: false, supportedMediaTypes: "supportedMediaTypes_example", userId: "userId_example", albumArtPn: "albumArtPn_example", maxAlbumArtWidth: 123, maxAlbumArtHeight: 123, maxIconWidth: 123, maxIconHeight: 123, maxStreamingBitrate: 123, maxStaticBitrate: 123, musicStreamingTranscodingBitrate: 123, maxStaticMusicBitrate: 123, sonyAggregationFlags: "sonyAggregationFlags_example", protocolInfo: "protocolInfo_example", timelineOffsetSeconds: 123, requiresPlainVideoItems: false, requiresPlainFolders: false, enableMSMediaReceiverRegistrar: false, ignoreTranscodeByteRangeRequests: false, xmlRootAttributes: [XmlAttribute(name: "name_example", value: "value_example")], directPlayProfiles: [DirectPlayProfile(container: "container_example", audioCodec: "audioCodec_example", videoCodec: "videoCodec_example", type: DlnaProfileType())], transcodingProfiles: [TranscodingProfile(container: "container_example", type: nil, videoCodec: "videoCodec_example", audioCodec: "audioCodec_example", _protocol: "_protocol_example", estimateContentLength: false, enableMpegtsM2TsMode: false, transcodeSeekInfo: TranscodeSeekInfo(), copyTimestamps: false, context: EncodingContext(), enableSubtitlesInManifest: false, maxAudioChannels: "maxAudioChannels_example", minSegments: 123, segmentLength: 123, breakOnNonKeyFrames: false, conditions: [ProfileCondition(condition: ProfileConditionType(), property: ProfileConditionValue(), value: "value_example", isRequired: false)])], containerProfiles: [ContainerProfile(type: nil, conditions: [nil], container: "container_example")], codecProfiles: [CodecProfile(type: CodecType(), conditions: [nil], applyConditions: [nil], codec: "codec_example", container: "container_example")], responseProfiles: [ResponseProfile(container: "container_example", audioCodec: "audioCodec_example", videoCodec: "videoCodec_example", type: nil, orgPn: "orgPn_example", mimeType: "mimeType_example", conditions: [nil])], subtitleProfiles: [SubtitleProfile(format: "format_example", method: SubtitleDeliveryMethod(), didlMode: "didlMode_example", language: "language_example", container: "container_example")]) // CreateProfileRequest | Device profile. (optional) - -// Creates a profile. -DlnaAPI.createProfile(createProfileRequest: createProfileRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **createProfileRequest** | [**CreateProfileRequest**](CreateProfileRequest.md) | Device profile. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **deleteProfile** -```swift - open class func deleteProfile(profileId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Deletes a profile. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let profileId = "profileId_example" // String | Profile id. - -// Deletes a profile. -DlnaAPI.deleteProfile(profileId: profileId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **profileId** | **String** | Profile id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDefaultProfile** -```swift - open class func getDefaultProfile(completion: @escaping (_ data: DeviceProfile?, _ error: Error?) -> Void) -``` - -Gets the default profile. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets the default profile. -DlnaAPI.getDefaultProfile() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**DeviceProfile**](DeviceProfile.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getProfile** -```swift - open class func getProfile(profileId: String, completion: @escaping (_ data: DeviceProfile?, _ error: Error?) -> Void) -``` - -Gets a single profile. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let profileId = "profileId_example" // String | Profile Id. - -// Gets a single profile. -DlnaAPI.getProfile(profileId: profileId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **profileId** | **String** | Profile Id. | - -### Return type - -[**DeviceProfile**](DeviceProfile.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getProfileInfos** -```swift - open class func getProfileInfos(completion: @escaping (_ data: [DeviceProfileInfo]?, _ error: Error?) -> Void) -``` - -Get profile infos. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get profile infos. -DlnaAPI.getProfileInfos() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[DeviceProfileInfo]**](DeviceProfileInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateProfile** -```swift - open class func updateProfile(profileId: String, createProfileRequest: CreateProfileRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates a profile. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let profileId = "profileId_example" // String | Profile id. -let createProfileRequest = CreateProfile_request(name: "name_example", id: "id_example", identification: DeviceProfile_Identification(friendlyName: "friendlyName_example", modelNumber: "modelNumber_example", serialNumber: "serialNumber_example", modelName: "modelName_example", modelDescription: "modelDescription_example", modelUrl: "modelUrl_example", manufacturer: "manufacturer_example", manufacturerUrl: "manufacturerUrl_example", headers: [HttpHeaderInfo(name: "name_example", value: "value_example", match: HeaderMatchType())]), friendlyName: "friendlyName_example", manufacturer: "manufacturer_example", manufacturerUrl: "manufacturerUrl_example", modelName: "modelName_example", modelDescription: "modelDescription_example", modelNumber: "modelNumber_example", modelUrl: "modelUrl_example", serialNumber: "serialNumber_example", enableAlbumArtInDidl: false, enableSingleAlbumArtLimit: false, enableSingleSubtitleLimit: false, supportedMediaTypes: "supportedMediaTypes_example", userId: "userId_example", albumArtPn: "albumArtPn_example", maxAlbumArtWidth: 123, maxAlbumArtHeight: 123, maxIconWidth: 123, maxIconHeight: 123, maxStreamingBitrate: 123, maxStaticBitrate: 123, musicStreamingTranscodingBitrate: 123, maxStaticMusicBitrate: 123, sonyAggregationFlags: "sonyAggregationFlags_example", protocolInfo: "protocolInfo_example", timelineOffsetSeconds: 123, requiresPlainVideoItems: false, requiresPlainFolders: false, enableMSMediaReceiverRegistrar: false, ignoreTranscodeByteRangeRequests: false, xmlRootAttributes: [XmlAttribute(name: "name_example", value: "value_example")], directPlayProfiles: [DirectPlayProfile(container: "container_example", audioCodec: "audioCodec_example", videoCodec: "videoCodec_example", type: DlnaProfileType())], transcodingProfiles: [TranscodingProfile(container: "container_example", type: nil, videoCodec: "videoCodec_example", audioCodec: "audioCodec_example", _protocol: "_protocol_example", estimateContentLength: false, enableMpegtsM2TsMode: false, transcodeSeekInfo: TranscodeSeekInfo(), copyTimestamps: false, context: EncodingContext(), enableSubtitlesInManifest: false, maxAudioChannels: "maxAudioChannels_example", minSegments: 123, segmentLength: 123, breakOnNonKeyFrames: false, conditions: [ProfileCondition(condition: ProfileConditionType(), property: ProfileConditionValue(), value: "value_example", isRequired: false)])], containerProfiles: [ContainerProfile(type: nil, conditions: [nil], container: "container_example")], codecProfiles: [CodecProfile(type: CodecType(), conditions: [nil], applyConditions: [nil], codec: "codec_example", container: "container_example")], responseProfiles: [ResponseProfile(container: "container_example", audioCodec: "audioCodec_example", videoCodec: "videoCodec_example", type: nil, orgPn: "orgPn_example", mimeType: "mimeType_example", conditions: [nil])], subtitleProfiles: [SubtitleProfile(format: "format_example", method: SubtitleDeliveryMethod(), didlMode: "didlMode_example", language: "language_example", container: "container_example")]) // CreateProfileRequest | Device profile. (optional) - -// Updates a profile. -DlnaAPI.updateProfile(profileId: profileId, createProfileRequest: createProfileRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **profileId** | **String** | Profile id. | - **createProfileRequest** | [**CreateProfileRequest**](CreateProfileRequest.md) | Device profile. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/DlnaOptions.md b/docs/DlnaOptions.md deleted file mode 100644 index 6a0cb244a..000000000 --- a/docs/DlnaOptions.md +++ /dev/null @@ -1,20 +0,0 @@ -# DlnaOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enablePlayTo** | **Bool** | Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna playTo subsystem. | [optional] -**enableServer** | **Bool** | Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna server subsystem. | [optional] -**enableDebugLog** | **Bool** | Gets or sets a value indicating whether detailed dlna server logs are sent to the console/log. If the setting \"Emby.Dlna\": \"Debug\" msut be set in logging.default.json for this property to work. | [optional] -**enablePlayToTracing** | **Bool** | Gets or sets a value indicating whether whether detailed playTo debug logs are sent to the console/log. If the setting \"Emby.Dlna.PlayTo\": \"Debug\" msut be set in logging.default.json for this property to work. | [optional] -**clientDiscoveryIntervalSeconds** | **Int** | Gets or sets the ssdp client discovery interval time (in seconds). This is the time after which the server will send a ssdp search request. | [optional] -**aliveMessageIntervalSeconds** | **Int** | Gets or sets the frequency at which ssdp alive notifications are transmitted. | [optional] -**blastAliveMessageIntervalSeconds** | **Int** | Gets or sets the frequency at which ssdp alive notifications are transmitted. MIGRATING - TO BE REMOVED ONCE WEB HAS BEEN ALTERED. | [optional] -**defaultUserId** | **String** | Gets or sets the default user account that the dlna server uses. | [optional] -**autoCreatePlayToProfiles** | **Bool** | Gets or sets a value indicating whether playTo device profiles should be created. | [optional] -**blastAliveMessages** | **Bool** | Gets or sets a value indicating whether to blast alive messages. | [optional] -**sendOnlyMatchedHost** | **Bool** | gets or sets a value indicating whether to send only matched host. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DlnaProfileType.md b/docs/DlnaProfileType.md deleted file mode 100644 index 234b711a9..000000000 --- a/docs/DlnaProfileType.md +++ /dev/null @@ -1,9 +0,0 @@ -# DlnaProfileType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DlnaServerAPI.md b/docs/DlnaServerAPI.md deleted file mode 100644 index 429df8211..000000000 --- a/docs/DlnaServerAPI.md +++ /dev/null @@ -1,794 +0,0 @@ -# DlnaServerAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getConnectionManager**](DlnaServerAPI.md#getconnectionmanager) | **GET** /Dlna/{serverId}/ConnectionManager | Gets Dlna media receiver registrar xml. -[**getConnectionManager2**](DlnaServerAPI.md#getconnectionmanager2) | **GET** /Dlna/{serverId}/ConnectionManager/ConnectionManager | Gets Dlna media receiver registrar xml. -[**getConnectionManager3**](DlnaServerAPI.md#getconnectionmanager3) | **GET** /Dlna/{serverId}/ConnectionManager/ConnectionManager.xml | Gets Dlna media receiver registrar xml. -[**getContentDirectory**](DlnaServerAPI.md#getcontentdirectory) | **GET** /Dlna/{serverId}/ContentDirectory | Gets Dlna content directory xml. -[**getContentDirectory2**](DlnaServerAPI.md#getcontentdirectory2) | **GET** /Dlna/{serverId}/ContentDirectory/ContentDirectory | Gets Dlna content directory xml. -[**getContentDirectory3**](DlnaServerAPI.md#getcontentdirectory3) | **GET** /Dlna/{serverId}/ContentDirectory/ContentDirectory.xml | Gets Dlna content directory xml. -[**getDescriptionXml**](DlnaServerAPI.md#getdescriptionxml) | **GET** /Dlna/{serverId}/description | Get Description Xml. -[**getDescriptionXml2**](DlnaServerAPI.md#getdescriptionxml2) | **GET** /Dlna/{serverId}/description.xml | Get Description Xml. -[**getIcon**](DlnaServerAPI.md#geticon) | **GET** /Dlna/icons/{fileName} | Gets a server icon. -[**getIconId**](DlnaServerAPI.md#geticonid) | **GET** /Dlna/{serverId}/icons/{fileName} | Gets a server icon. -[**getMediaReceiverRegistrar**](DlnaServerAPI.md#getmediareceiverregistrar) | **GET** /Dlna/{serverId}/MediaReceiverRegistrar | Gets Dlna media receiver registrar xml. -[**getMediaReceiverRegistrar2**](DlnaServerAPI.md#getmediareceiverregistrar2) | **GET** /Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar | Gets Dlna media receiver registrar xml. -[**getMediaReceiverRegistrar3**](DlnaServerAPI.md#getmediareceiverregistrar3) | **GET** /Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar.xml | Gets Dlna media receiver registrar xml. -[**processConnectionManagerControlRequest**](DlnaServerAPI.md#processconnectionmanagercontrolrequest) | **POST** /Dlna/{serverId}/ConnectionManager/Control | Process a connection manager control request. -[**processContentDirectoryControlRequest**](DlnaServerAPI.md#processcontentdirectorycontrolrequest) | **POST** /Dlna/{serverId}/ContentDirectory/Control | Process a content directory control request. -[**processMediaReceiverRegistrarControlRequest**](DlnaServerAPI.md#processmediareceiverregistrarcontrolrequest) | **POST** /Dlna/{serverId}/MediaReceiverRegistrar/Control | Process a media receiver registrar control request. - - -# **getConnectionManager** -```swift - open class func getConnectionManager(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets Dlna media receiver registrar xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Gets Dlna media receiver registrar xml. -DlnaServerAPI.getConnectionManager(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getConnectionManager2** -```swift - open class func getConnectionManager2(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets Dlna media receiver registrar xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Gets Dlna media receiver registrar xml. -DlnaServerAPI.getConnectionManager2(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getConnectionManager3** -```swift - open class func getConnectionManager3(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets Dlna media receiver registrar xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Gets Dlna media receiver registrar xml. -DlnaServerAPI.getConnectionManager3(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getContentDirectory** -```swift - open class func getContentDirectory(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets Dlna content directory xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Gets Dlna content directory xml. -DlnaServerAPI.getContentDirectory(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getContentDirectory2** -```swift - open class func getContentDirectory2(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets Dlna content directory xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Gets Dlna content directory xml. -DlnaServerAPI.getContentDirectory2(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getContentDirectory3** -```swift - open class func getContentDirectory3(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets Dlna content directory xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Gets Dlna content directory xml. -DlnaServerAPI.getContentDirectory3(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDescriptionXml** -```swift - open class func getDescriptionXml(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get Description Xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Get Description Xml. -DlnaServerAPI.getDescriptionXml(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDescriptionXml2** -```swift - open class func getDescriptionXml2(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get Description Xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Get Description Xml. -DlnaServerAPI.getDescriptionXml2(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getIcon** -```swift - open class func getIcon(fileName: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a server icon. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let fileName = "fileName_example" // String | The icon filename. - -// Gets a server icon. -DlnaServerAPI.getIcon(fileName: fileName) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **fileName** | **String** | The icon filename. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getIconId** -```swift - open class func getIconId(serverId: String, fileName: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a server icon. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. -let fileName = "fileName_example" // String | The icon filename. - -// Gets a server icon. -DlnaServerAPI.getIconId(serverId: serverId, fileName: fileName) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - **fileName** | **String** | The icon filename. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMediaReceiverRegistrar** -```swift - open class func getMediaReceiverRegistrar(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets Dlna media receiver registrar xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Gets Dlna media receiver registrar xml. -DlnaServerAPI.getMediaReceiverRegistrar(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMediaReceiverRegistrar2** -```swift - open class func getMediaReceiverRegistrar2(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets Dlna media receiver registrar xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Gets Dlna media receiver registrar xml. -DlnaServerAPI.getMediaReceiverRegistrar2(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMediaReceiverRegistrar3** -```swift - open class func getMediaReceiverRegistrar3(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets Dlna media receiver registrar xml. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Gets Dlna media receiver registrar xml. -DlnaServerAPI.getMediaReceiverRegistrar3(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **processConnectionManagerControlRequest** -```swift - open class func processConnectionManagerControlRequest(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Process a connection manager control request. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Process a connection manager control request. -DlnaServerAPI.processConnectionManagerControlRequest(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **processContentDirectoryControlRequest** -```swift - open class func processContentDirectoryControlRequest(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Process a content directory control request. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Process a content directory control request. -DlnaServerAPI.processContentDirectoryControlRequest(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **processMediaReceiverRegistrarControlRequest** -```swift - open class func processMediaReceiverRegistrarControlRequest(serverId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Process a media receiver registrar control request. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let serverId = "serverId_example" // String | Server UUID. - -// Process a media receiver registrar control request. -DlnaServerAPI.processMediaReceiverRegistrarControlRequest(serverId: serverId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **serverId** | **String** | Server UUID. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/xml - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/DynamicDayOfWeek.md b/docs/DynamicDayOfWeek.md deleted file mode 100644 index 69f22187d..000000000 --- a/docs/DynamicDayOfWeek.md +++ /dev/null @@ -1,9 +0,0 @@ -# DynamicDayOfWeek - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/DynamicHlsAPI.md b/docs/DynamicHlsAPI.md deleted file mode 100644 index bf82e9f49..000000000 --- a/docs/DynamicHlsAPI.md +++ /dev/null @@ -1,1355 +0,0 @@ -# DynamicHlsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getHlsAudioSegment**](DynamicHlsAPI.md#gethlsaudiosegment) | **GET** /Audio/{itemId}/hls1/{playlistId}/{segmentId}.{container} | Gets a video stream using HTTP live streaming. -[**getHlsVideoSegment**](DynamicHlsAPI.md#gethlsvideosegment) | **GET** /Videos/{itemId}/hls1/{playlistId}/{segmentId}.{container} | Gets a video stream using HTTP live streaming. -[**getLiveHlsStream**](DynamicHlsAPI.md#getlivehlsstream) | **GET** /Videos/{itemId}/live.m3u8 | Gets a hls live stream. -[**getMasterHlsAudioPlaylist**](DynamicHlsAPI.md#getmasterhlsaudioplaylist) | **GET** /Audio/{itemId}/master.m3u8 | Gets an audio hls playlist stream. -[**getMasterHlsVideoPlaylist**](DynamicHlsAPI.md#getmasterhlsvideoplaylist) | **GET** /Videos/{itemId}/master.m3u8 | Gets a video hls playlist stream. -[**getVariantHlsAudioPlaylist**](DynamicHlsAPI.md#getvarianthlsaudioplaylist) | **GET** /Audio/{itemId}/main.m3u8 | Gets an audio stream using HTTP live streaming. -[**getVariantHlsVideoPlaylist**](DynamicHlsAPI.md#getvarianthlsvideoplaylist) | **GET** /Videos/{itemId}/main.m3u8 | Gets a video stream using HTTP live streaming. -[**headMasterHlsAudioPlaylist**](DynamicHlsAPI.md#headmasterhlsaudioplaylist) | **HEAD** /Audio/{itemId}/master.m3u8 | Gets an audio hls playlist stream. -[**headMasterHlsVideoPlaylist**](DynamicHlsAPI.md#headmasterhlsvideoplaylist) | **HEAD** /Videos/{itemId}/master.m3u8 | Gets a video hls playlist stream. - - -# **getHlsAudioSegment** -```swift - open class func getHlsAudioSegment(itemId: String, playlistId: String, segmentId: Int, container: String, runtimeTicks: Int64, actualSegmentLengthTicks: Int64, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a video stream using HTTP live streaming. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let playlistId = "playlistId_example" // String | The playlist id. -let segmentId = 987 // Int | The segment id. -let container = "container_example" // String | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. -let runtimeTicks = 987 // Int64 | The position of the requested segment in ticks. -let actualSegmentLengthTicks = 987 // Int64 | The length of the requested segment in ticks. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let maxStreamingBitrate = 987 // Int | Optional. The maximum streaming bitrate. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets a video stream using HTTP live streaming. -DynamicHlsAPI.getHlsAudioSegment(itemId: itemId, playlistId: playlistId, segmentId: segmentId, container: container, runtimeTicks: runtimeTicks, actualSegmentLengthTicks: actualSegmentLengthTicks, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **playlistId** | **String** | The playlist id. | - **segmentId** | **Int** | The segment id. | - **container** | **String** | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. | - **runtimeTicks** | **Int64** | The position of the requested segment in ticks. | - **actualSegmentLengthTicks** | **Int64** | The length of the requested segment in ticks. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **maxStreamingBitrate** | **Int** | Optional. The maximum streaming bitrate. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: audio/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getHlsVideoSegment** -```swift - open class func getHlsVideoSegment(itemId: String, playlistId: String, segmentId: Int, container: String, runtimeTicks: Int64, actualSegmentLengthTicks: Int64, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a video stream using HTTP live streaming. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let playlistId = "playlistId_example" // String | The playlist id. -let segmentId = 987 // Int | The segment id. -let container = "container_example" // String | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. -let runtimeTicks = 987 // Int64 | The position of the requested segment in ticks. -let actualSegmentLengthTicks = 987 // Int64 | The length of the requested segment in ticks. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The desired segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let maxWidth = 987 // Int | Optional. The maximum horizontal resolution of the encoded video. (optional) -let maxHeight = 987 // Int | Optional. The maximum vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets a video stream using HTTP live streaming. -DynamicHlsAPI.getHlsVideoSegment(itemId: itemId, playlistId: playlistId, segmentId: segmentId, container: container, runtimeTicks: runtimeTicks, actualSegmentLengthTicks: actualSegmentLengthTicks, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **playlistId** | **String** | The playlist id. | - **segmentId** | **Int** | The segment id. | - **container** | **String** | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. | - **runtimeTicks** | **Int64** | The position of the requested segment in ticks. | - **actualSegmentLengthTicks** | **Int64** | The length of the requested segment in ticks. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The desired segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **maxWidth** | **Int** | Optional. The maximum horizontal resolution of the encoded video. | [optional] - **maxHeight** | **Int** | Optional. The maximum vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: video/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLiveHlsStream** -```swift - open class func getLiveHlsStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, enableSubtitlesInManifest: Bool? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a hls live stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = "container_example" // String | The audio container. (optional) -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment lenght. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) -let maxWidth = 987 // Int | Optional. The max width. (optional) -let maxHeight = 987 // Int | Optional. The max height. (optional) -let enableSubtitlesInManifest = true // Bool | Optional. Whether to enable subtitles in the manifest. (optional) - -// Gets a hls live stream. -DynamicHlsAPI.getLiveHlsStream(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, maxWidth: maxWidth, maxHeight: maxHeight, enableSubtitlesInManifest: enableSubtitlesInManifest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | **String** | The audio container. | [optional] - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment lenght. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - **maxWidth** | **Int** | Optional. The max width. | [optional] - **maxHeight** | **Int** | Optional. The max height. | [optional] - **enableSubtitlesInManifest** | **Bool** | Optional. Whether to enable subtitles in the manifest. | [optional] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/x-mpegURL - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMasterHlsAudioPlaylist** -```swift - open class func getMasterHlsAudioPlaylist(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets an audio hls playlist stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let maxStreamingBitrate = 987 // Int | Optional. The maximum streaming bitrate. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) -let enableAdaptiveBitrateStreaming = true // Bool | Enable adaptive bitrate streaming. (optional) (default to true) - -// Gets an audio hls playlist stream. -DynamicHlsAPI.getMasterHlsAudioPlaylist(itemId: itemId, mediaSourceId: mediaSourceId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, enableAdaptiveBitrateStreaming: enableAdaptiveBitrateStreaming) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **maxStreamingBitrate** | **Int** | Optional. The maximum streaming bitrate. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - **enableAdaptiveBitrateStreaming** | **Bool** | Enable adaptive bitrate streaming. | [optional] [default to true] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/x-mpegURL - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMasterHlsVideoPlaylist** -```swift - open class func getMasterHlsVideoPlaylist(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a video hls playlist stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let maxWidth = 987 // Int | Optional. The maximum horizontal resolution of the encoded video. (optional) -let maxHeight = 987 // Int | Optional. The maximum vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) -let enableAdaptiveBitrateStreaming = true // Bool | Enable adaptive bitrate streaming. (optional) (default to true) - -// Gets a video hls playlist stream. -DynamicHlsAPI.getMasterHlsVideoPlaylist(itemId: itemId, mediaSourceId: mediaSourceId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, enableAdaptiveBitrateStreaming: enableAdaptiveBitrateStreaming) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **maxWidth** | **Int** | Optional. The maximum horizontal resolution of the encoded video. | [optional] - **maxHeight** | **Int** | Optional. The maximum vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - **enableAdaptiveBitrateStreaming** | **Bool** | Enable adaptive bitrate streaming. | [optional] [default to true] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/x-mpegURL - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getVariantHlsAudioPlaylist** -```swift - open class func getVariantHlsAudioPlaylist(itemId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets an audio stream using HTTP live streaming. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let maxStreamingBitrate = 987 // Int | Optional. The maximum streaming bitrate. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets an audio stream using HTTP live streaming. -DynamicHlsAPI.getVariantHlsAudioPlaylist(itemId: itemId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **maxStreamingBitrate** | **Int** | Optional. The maximum streaming bitrate. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/x-mpegURL - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getVariantHlsVideoPlaylist** -```swift - open class func getVariantHlsVideoPlaylist(itemId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a video stream using HTTP live streaming. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let maxWidth = 987 // Int | Optional. The maximum horizontal resolution of the encoded video. (optional) -let maxHeight = 987 // Int | Optional. The maximum vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets a video stream using HTTP live streaming. -DynamicHlsAPI.getVariantHlsVideoPlaylist(itemId: itemId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **maxWidth** | **Int** | Optional. The maximum horizontal resolution of the encoded video. | [optional] - **maxHeight** | **Int** | Optional. The maximum vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/x-mpegURL - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headMasterHlsAudioPlaylist** -```swift - open class func headMasterHlsAudioPlaylist(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets an audio hls playlist stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let maxStreamingBitrate = 987 // Int | Optional. The maximum streaming bitrate. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) -let enableAdaptiveBitrateStreaming = true // Bool | Enable adaptive bitrate streaming. (optional) (default to true) - -// Gets an audio hls playlist stream. -DynamicHlsAPI.headMasterHlsAudioPlaylist(itemId: itemId, mediaSourceId: mediaSourceId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, enableAdaptiveBitrateStreaming: enableAdaptiveBitrateStreaming) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **maxStreamingBitrate** | **Int** | Optional. The maximum streaming bitrate. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - **enableAdaptiveBitrateStreaming** | **Bool** | Enable adaptive bitrate streaming. | [optional] [default to true] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/x-mpegURL - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headMasterHlsVideoPlaylist** -```swift - open class func headMasterHlsVideoPlaylist(itemId: String, mediaSourceId: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, enableAdaptiveBitrateStreaming: Bool? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a video hls playlist stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let maxWidth = 987 // Int | Optional. The maximum horizontal resolution of the encoded video. (optional) -let maxHeight = 987 // Int | Optional. The maximum vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) -let enableAdaptiveBitrateStreaming = true // Bool | Enable adaptive bitrate streaming. (optional) (default to true) - -// Gets a video hls playlist stream. -DynamicHlsAPI.headMasterHlsVideoPlaylist(itemId: itemId, mediaSourceId: mediaSourceId, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, enableAdaptiveBitrateStreaming: enableAdaptiveBitrateStreaming) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **maxWidth** | **Int** | Optional. The maximum horizontal resolution of the encoded video. | [optional] - **maxHeight** | **Int** | Optional. The maximum vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - **enableAdaptiveBitrateStreaming** | **Bool** | Enable adaptive bitrate streaming. | [optional] [default to true] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/x-mpegURL - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/EmbeddedSubtitleOptions.md b/docs/EmbeddedSubtitleOptions.md deleted file mode 100644 index 2bb44173a..000000000 --- a/docs/EmbeddedSubtitleOptions.md +++ /dev/null @@ -1,9 +0,0 @@ -# EmbeddedSubtitleOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/EncodingContext.md b/docs/EncodingContext.md deleted file mode 100644 index 332bad48d..000000000 --- a/docs/EncodingContext.md +++ /dev/null @@ -1,9 +0,0 @@ -# EncodingContext - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/EncodingOptions.md b/docs/EncodingOptions.md deleted file mode 100644 index c785f7139..000000000 --- a/docs/EncodingOptions.md +++ /dev/null @@ -1,45 +0,0 @@ -# EncodingOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**encodingThreadCount** | **Int** | | [optional] -**transcodingTempPath** | **String** | | [optional] -**fallbackFontPath** | **String** | | [optional] -**enableFallbackFont** | **Bool** | | [optional] -**downMixAudioBoost** | **Double** | | [optional] -**maxMuxingQueueSize** | **Int** | | [optional] -**enableThrottling** | **Bool** | | [optional] -**throttleDelaySeconds** | **Int** | | [optional] -**hardwareAccelerationType** | **String** | | [optional] -**encoderAppPath** | **String** | Gets or sets the FFmpeg path as set by the user via the UI. | [optional] -**encoderAppPathDisplay** | **String** | Gets or sets the current FFmpeg path being used by the system and displayed on the transcode page. | [optional] -**vaapiDevice** | **String** | | [optional] -**enableTonemapping** | **Bool** | | [optional] -**enableVppTonemapping** | **Bool** | | [optional] -**tonemappingAlgorithm** | **String** | | [optional] -**tonemappingRange** | **String** | | [optional] -**tonemappingDesat** | **Double** | | [optional] -**tonemappingThreshold** | **Double** | | [optional] -**tonemappingPeak** | **Double** | | [optional] -**tonemappingParam** | **Double** | | [optional] -**h264Crf** | **Int** | | [optional] -**h265Crf** | **Int** | | [optional] -**encoderPreset** | **String** | | [optional] -**deinterlaceDoubleRate** | **Bool** | | [optional] -**deinterlaceMethod** | **String** | | [optional] -**enableDecodingColorDepth10Hevc** | **Bool** | | [optional] -**enableDecodingColorDepth10Vp9** | **Bool** | | [optional] -**enableEnhancedNvdecDecoder** | **Bool** | | [optional] -**preferSystemNativeHwDecoder** | **Bool** | | [optional] -**enableIntelLowPowerH264HwEncoder** | **Bool** | | [optional] -**enableIntelLowPowerHevcHwEncoder** | **Bool** | | [optional] -**enableHardwareEncoding** | **Bool** | | [optional] -**allowHevcEncoding** | **Bool** | | [optional] -**enableSubtitleExtraction** | **Bool** | | [optional] -**hardwareDecodingCodecs** | **[String]** | | [optional] -**allowOnDemandMetadataBasedKeyframeExtractionForExtensions** | **[String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/EndPointInfo.md b/docs/EndPointInfo.md deleted file mode 100644 index 825745908..000000000 --- a/docs/EndPointInfo.md +++ /dev/null @@ -1,11 +0,0 @@ -# EndPointInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**isLocal** | **Bool** | | [optional] -**isInNetwork** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/EnvironmentAPI.md b/docs/EnvironmentAPI.md deleted file mode 100644 index 3ca2e69d7..000000000 --- a/docs/EnvironmentAPI.md +++ /dev/null @@ -1,294 +0,0 @@ -# EnvironmentAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getDefaultDirectoryBrowser**](EnvironmentAPI.md#getdefaultdirectorybrowser) | **GET** /Environment/DefaultDirectoryBrowser | Get Default directory browser. -[**getDirectoryContents**](EnvironmentAPI.md#getdirectorycontents) | **GET** /Environment/DirectoryContents | Gets the contents of a given directory in the file system. -[**getDrives**](EnvironmentAPI.md#getdrives) | **GET** /Environment/Drives | Gets available drives from the server's file system. -[**getNetworkShares**](EnvironmentAPI.md#getnetworkshares) | **GET** /Environment/NetworkShares | Gets network paths. -[**getParentPath**](EnvironmentAPI.md#getparentpath) | **GET** /Environment/ParentPath | Gets the parent path of a given path. -[**validatePath**](EnvironmentAPI.md#validatepath) | **POST** /Environment/ValidatePath | Validates path. - - -# **getDefaultDirectoryBrowser** -```swift - open class func getDefaultDirectoryBrowser(completion: @escaping (_ data: DefaultDirectoryBrowserInfoDto?, _ error: Error?) -> Void) -``` - -Get Default directory browser. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get Default directory browser. -EnvironmentAPI.getDefaultDirectoryBrowser() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**DefaultDirectoryBrowserInfoDto**](DefaultDirectoryBrowserInfoDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDirectoryContents** -```swift - open class func getDirectoryContents(path: String, includeFiles: Bool? = nil, includeDirectories: Bool? = nil, completion: @escaping (_ data: [FileSystemEntryInfo]?, _ error: Error?) -> Void) -``` - -Gets the contents of a given directory in the file system. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let path = "path_example" // String | The path. -let includeFiles = true // Bool | An optional filter to include or exclude files from the results. true/false. (optional) (default to false) -let includeDirectories = true // Bool | An optional filter to include or exclude folders from the results. true/false. (optional) (default to false) - -// Gets the contents of a given directory in the file system. -EnvironmentAPI.getDirectoryContents(path: path, includeFiles: includeFiles, includeDirectories: includeDirectories) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **path** | **String** | The path. | - **includeFiles** | **Bool** | An optional filter to include or exclude files from the results. true/false. | [optional] [default to false] - **includeDirectories** | **Bool** | An optional filter to include or exclude folders from the results. true/false. | [optional] [default to false] - -### Return type - -[**[FileSystemEntryInfo]**](FileSystemEntryInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDrives** -```swift - open class func getDrives(completion: @escaping (_ data: [FileSystemEntryInfo]?, _ error: Error?) -> Void) -``` - -Gets available drives from the server's file system. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets available drives from the server's file system. -EnvironmentAPI.getDrives() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[FileSystemEntryInfo]**](FileSystemEntryInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getNetworkShares** -```swift - open class func getNetworkShares(completion: @escaping (_ data: [FileSystemEntryInfo]?, _ error: Error?) -> Void) -``` - -Gets network paths. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets network paths. -EnvironmentAPI.getNetworkShares() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[FileSystemEntryInfo]**](FileSystemEntryInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getParentPath** -```swift - open class func getParentPath(path: String, completion: @escaping (_ data: String?, _ error: Error?) -> Void) -``` - -Gets the parent path of a given path. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let path = "path_example" // String | The path. - -// Gets the parent path of a given path. -EnvironmentAPI.getParentPath(path: path) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **path** | **String** | The path. | - -### Return type - -**String** - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **validatePath** -```swift - open class func validatePath(validatePathRequest: ValidatePathRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Validates path. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let validatePathRequest = ValidatePath_request(validateWritable: false, path: "path_example", isFile: false) // ValidatePathRequest | Validate request object. - -// Validates path. -EnvironmentAPI.validatePath(validatePathRequest: validatePathRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **validatePathRequest** | [**ValidatePathRequest**](ValidatePathRequest.md) | Validate request object. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ExternalIdInfo.md b/docs/ExternalIdInfo.md deleted file mode 100644 index 5065e5129..000000000 --- a/docs/ExternalIdInfo.md +++ /dev/null @@ -1,13 +0,0 @@ -# ExternalIdInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc). | [optional] -**key** | **String** | Gets or sets the unique key for this id. This key should be unique across all providers. | [optional] -**type** | [**ExternalIdMediaType**](ExternalIdMediaType.md) | Gets or sets the specific media type for this id. This is used to distinguish between the different external id types for providers with multiple ids. A null value indicates there is no specific media type associated with the external id, or this is the default id for the external provider so there is no need to specify a type. | [optional] -**urlFormatString** | **String** | Gets or sets the URL format string. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ExternalIdMediaType.md b/docs/ExternalIdMediaType.md deleted file mode 100644 index f512c557f..000000000 --- a/docs/ExternalIdMediaType.md +++ /dev/null @@ -1,9 +0,0 @@ -# ExternalIdMediaType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ExternalUrl.md b/docs/ExternalUrl.md deleted file mode 100644 index bbc32b95d..000000000 --- a/docs/ExternalUrl.md +++ /dev/null @@ -1,11 +0,0 @@ -# ExternalUrl - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**url** | **String** | Gets or sets the type of the item. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/FFmpegLocation.md b/docs/FFmpegLocation.md deleted file mode 100644 index 6361fe0cd..000000000 --- a/docs/FFmpegLocation.md +++ /dev/null @@ -1,9 +0,0 @@ -# FFmpegLocation - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/FileSystemEntryInfo.md b/docs/FileSystemEntryInfo.md deleted file mode 100644 index 2b8fab464..000000000 --- a/docs/FileSystemEntryInfo.md +++ /dev/null @@ -1,12 +0,0 @@ -# FileSystemEntryInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets the name. | [optional] -**path** | **String** | Gets the path. | [optional] -**type** | [**FileSystemEntryType**](FileSystemEntryType.md) | Gets the type. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/FileSystemEntryType.md b/docs/FileSystemEntryType.md deleted file mode 100644 index edabd4c51..000000000 --- a/docs/FileSystemEntryType.md +++ /dev/null @@ -1,9 +0,0 @@ -# FileSystemEntryType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/FilterAPI.md b/docs/FilterAPI.md deleted file mode 100644 index 8a69df165..000000000 --- a/docs/FilterAPI.md +++ /dev/null @@ -1,130 +0,0 @@ -# FilterAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getQueryFilters**](FilterAPI.md#getqueryfilters) | **GET** /Items/Filters2 | Gets query filters. -[**getQueryFiltersLegacy**](FilterAPI.md#getqueryfilterslegacy) | **GET** /Items/Filters | Gets legacy query filters. - - -# **getQueryFilters** -```swift - open class func getQueryFilters(userId: String? = nil, parentId: String? = nil, includeItemTypes: [BaseItemKind]? = nil, isAiring: Bool? = nil, isMovie: Bool? = nil, isSports: Bool? = nil, isKids: Bool? = nil, isNews: Bool? = nil, isSeries: Bool? = nil, recursive: Bool? = nil, completion: @escaping (_ data: QueryFilters?, _ error: Error?) -> Void) -``` - -Gets query filters. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | Optional. User id. (optional) -let parentId = "parentId_example" // String | Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) -let isAiring = true // Bool | Optional. Is item airing. (optional) -let isMovie = true // Bool | Optional. Is item movie. (optional) -let isSports = true // Bool | Optional. Is item sports. (optional) -let isKids = true // Bool | Optional. Is item kids. (optional) -let isNews = true // Bool | Optional. Is item news. (optional) -let isSeries = true // Bool | Optional. Is item series. (optional) -let recursive = true // Bool | Optional. Search recursive. (optional) - -// Gets query filters. -FilterAPI.getQueryFilters(userId: userId, parentId: parentId, includeItemTypes: includeItemTypes, isAiring: isAiring, isMovie: isMovie, isSports: isSports, isKids: isKids, isNews: isNews, isSeries: isSeries, recursive: recursive) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | Optional. User id. | [optional] - **parentId** | **String** | Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. | [optional] - **isAiring** | **Bool** | Optional. Is item airing. | [optional] - **isMovie** | **Bool** | Optional. Is item movie. | [optional] - **isSports** | **Bool** | Optional. Is item sports. | [optional] - **isKids** | **Bool** | Optional. Is item kids. | [optional] - **isNews** | **Bool** | Optional. Is item news. | [optional] - **isSeries** | **Bool** | Optional. Is item series. | [optional] - **recursive** | **Bool** | Optional. Search recursive. | [optional] - -### Return type - -[**QueryFilters**](QueryFilters.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getQueryFiltersLegacy** -```swift - open class func getQueryFiltersLegacy(userId: String? = nil, parentId: String? = nil, includeItemTypes: [BaseItemKind]? = nil, mediaTypes: [String]? = nil, completion: @escaping (_ data: QueryFiltersLegacy?, _ error: Error?) -> Void) -``` - -Gets legacy query filters. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | Optional. User id. (optional) -let parentId = "parentId_example" // String | Optional. Parent id. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) -let mediaTypes = ["inner_example"] // [String] | Optional. Filter by MediaType. Allows multiple, comma delimited. (optional) - -// Gets legacy query filters. -FilterAPI.getQueryFiltersLegacy(userId: userId, parentId: parentId, includeItemTypes: includeItemTypes, mediaTypes: mediaTypes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | Optional. User id. | [optional] - **parentId** | **String** | Optional. Parent id. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. | [optional] - **mediaTypes** | [**[String]**](String.md) | Optional. Filter by MediaType. Allows multiple, comma delimited. | [optional] - -### Return type - -[**QueryFiltersLegacy**](QueryFiltersLegacy.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/FontFile.md b/docs/FontFile.md deleted file mode 100644 index 06b4ba223..000000000 --- a/docs/FontFile.md +++ /dev/null @@ -1,13 +0,0 @@ -# FontFile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**size** | **Int64** | Gets or sets the size. | [optional] -**dateCreated** | **Date** | Gets or sets the date created. | [optional] -**dateModified** | **Date** | Gets or sets the date modified. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ForgotPasswordAction.md b/docs/ForgotPasswordAction.md deleted file mode 100644 index 33a2ca3c5..000000000 --- a/docs/ForgotPasswordAction.md +++ /dev/null @@ -1,9 +0,0 @@ -# ForgotPasswordAction - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ForgotPasswordDto.md b/docs/ForgotPasswordDto.md deleted file mode 100644 index c97387ba9..000000000 --- a/docs/ForgotPasswordDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# ForgotPasswordDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enteredUsername** | **String** | Gets or sets the entered username to have its password reset. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ForgotPasswordPinDto.md b/docs/ForgotPasswordPinDto.md deleted file mode 100644 index 5ee47b898..000000000 --- a/docs/ForgotPasswordPinDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# ForgotPasswordPinDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**pin** | **String** | Gets or sets the entered pin to have the password reset. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ForgotPasswordPinRequest.md b/docs/ForgotPasswordPinRequest.md deleted file mode 100644 index 727f339a1..000000000 --- a/docs/ForgotPasswordPinRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# ForgotPasswordPinRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**pin** | **String** | Gets or sets the entered pin to have the password reset. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ForgotPasswordRequest.md b/docs/ForgotPasswordRequest.md deleted file mode 100644 index 4a1967ee3..000000000 --- a/docs/ForgotPasswordRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# ForgotPasswordRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enteredUsername** | **String** | Gets or sets the entered username to have its password reset. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ForgotPasswordResult.md b/docs/ForgotPasswordResult.md deleted file mode 100644 index 4d8f86b02..000000000 --- a/docs/ForgotPasswordResult.md +++ /dev/null @@ -1,12 +0,0 @@ -# ForgotPasswordResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action** | [**ForgotPasswordAction**](ForgotPasswordAction.md) | Gets or sets the action. | [optional] -**pinFile** | **String** | Gets or sets the pin file. | [optional] -**pinExpirationDate** | **Date** | Gets or sets the pin expiration date. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GeneralCommand.md b/docs/GeneralCommand.md deleted file mode 100644 index 31fef55f5..000000000 --- a/docs/GeneralCommand.md +++ /dev/null @@ -1,12 +0,0 @@ -# GeneralCommand - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | [**GeneralCommandType**](GeneralCommandType.md) | This exists simply to identify a set of known commands. | [optional] -**controllingUserId** | **String** | | [optional] -**arguments** | **[String: String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GeneralCommandType.md b/docs/GeneralCommandType.md deleted file mode 100644 index afd28017d..000000000 --- a/docs/GeneralCommandType.md +++ /dev/null @@ -1,9 +0,0 @@ -# GeneralCommandType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GenresAPI.md b/docs/GenresAPI.md deleted file mode 100644 index 385922bc1..000000000 --- a/docs/GenresAPI.md +++ /dev/null @@ -1,142 +0,0 @@ -# GenresAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getGenre**](GenresAPI.md#getgenre) | **GET** /Genres/{genreName} | Gets a genre, by name. -[**getGenres**](GenresAPI.md#getgenres) | **GET** /Genres | Gets all genres from a given item, folder, or the entire library. - - -# **getGenre** -```swift - open class func getGenre(genreName: String, userId: String? = nil, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Gets a genre, by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let genreName = "genreName_example" // String | The genre name. -let userId = "userId_example" // String | The user id. (optional) - -// Gets a genre, by name. -GenresAPI.getGenre(genreName: genreName, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **genreName** | **String** | The genre name. | - **userId** | **String** | The user id. | [optional] - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getGenres** -```swift - open class func getGenres(startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, isFavorite: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets all genres from a given item, folder, or the entire library. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -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 searchTerm = "searchTerm_example" // String | The search term. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited. (optional) -let isFavorite = true // Bool | Optional filter by items that are marked as favorite, or not. (optional) -let imageTypeLimit = 987 // Int | Optional, the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let userId = "userId_example" // String | User id. (optional) -let nameStartsWithOrGreater = "nameStartsWithOrGreater_example" // String | Optional filter by items whose name is sorted equally or greater than a given input string. (optional) -let nameStartsWith = "nameStartsWith_example" // String | Optional filter by items whose name is sorted equally than a given input string. (optional) -let nameLessThan = "nameLessThan_example" // String | Optional filter by items whose name is equally or lesser than a given input string. (optional) -let sortBy = ["inner_example"] // [String] | Optional. Specify one or more sort orders, comma delimited. (optional) -let sortOrder = [SortOrder()] // [SortOrder] | Sort Order - Ascending,Descending. (optional) -let enableImages = true // Bool | Optional, include image information in output. (optional) (default to true) -let enableTotalRecordCount = true // Bool | Optional. Include total record count. (optional) (default to true) - -// Gets all genres from a given item, folder, or the entire library. -GenresAPI.getGenres(startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, isFavorite: isFavorite, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, userId: userId, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, sortBy: sortBy, sortOrder: sortOrder, enableImages: enableImages, enableTotalRecordCount: enableTotalRecordCount) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **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] - **searchTerm** | **String** | The search term. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited. | [optional] - **isFavorite** | **Bool** | Optional filter by items that are marked as favorite, or not. | [optional] - **imageTypeLimit** | **Int** | Optional, the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **userId** | **String** | User id. | [optional] - **nameStartsWithOrGreater** | **String** | Optional filter by items whose name is sorted equally or greater than a given input string. | [optional] - **nameStartsWith** | **String** | Optional filter by items whose name is sorted equally than a given input string. | [optional] - **nameLessThan** | **String** | Optional filter by items whose name is equally or lesser than a given input string. | [optional] - **sortBy** | [**[String]**](String.md) | Optional. Specify one or more sort orders, comma delimited. | [optional] - **sortOrder** | [**[SortOrder]**](SortOrder.md) | Sort Order - Ascending,Descending. | [optional] - **enableImages** | **Bool** | Optional, include image information in output. | [optional] [default to true] - **enableTotalRecordCount** | **Bool** | Optional. Include total record count. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/GetBookRemoteSearchResultsRequest.md b/docs/GetBookRemoteSearchResultsRequest.md deleted file mode 100644 index 84c036757..000000000 --- a/docs/GetBookRemoteSearchResultsRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# GetBookRemoteSearchResultsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**BookInfoRemoteSearchQuerySearchInfo**](BookInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetBoxSetRemoteSearchResultsRequest.md b/docs/GetBoxSetRemoteSearchResultsRequest.md deleted file mode 100644 index d775159e7..000000000 --- a/docs/GetBoxSetRemoteSearchResultsRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# GetBoxSetRemoteSearchResultsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**BoxSetInfoRemoteSearchQuerySearchInfo**](BoxSetInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetMovieRemoteSearchResultsRequest.md b/docs/GetMovieRemoteSearchResultsRequest.md deleted file mode 100644 index 4c8e3bb15..000000000 --- a/docs/GetMovieRemoteSearchResultsRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# GetMovieRemoteSearchResultsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**MovieInfoRemoteSearchQuerySearchInfo**](MovieInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetMusicAlbumRemoteSearchResultsRequest.md b/docs/GetMusicAlbumRemoteSearchResultsRequest.md deleted file mode 100644 index 751fd0b7d..000000000 --- a/docs/GetMusicAlbumRemoteSearchResultsRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# GetMusicAlbumRemoteSearchResultsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**AlbumInfoRemoteSearchQuerySearchInfo**](AlbumInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetMusicArtistRemoteSearchResultsRequest.md b/docs/GetMusicArtistRemoteSearchResultsRequest.md deleted file mode 100644 index f46fc2bb8..000000000 --- a/docs/GetMusicArtistRemoteSearchResultsRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# GetMusicArtistRemoteSearchResultsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**ArtistInfoRemoteSearchQuerySearchInfo**](ArtistInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetMusicVideoRemoteSearchResultsRequest.md b/docs/GetMusicVideoRemoteSearchResultsRequest.md deleted file mode 100644 index e84902275..000000000 --- a/docs/GetMusicVideoRemoteSearchResultsRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# GetMusicVideoRemoteSearchResultsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**MusicVideoInfoRemoteSearchQuerySearchInfo**](MusicVideoInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetPersonRemoteSearchResultsRequest.md b/docs/GetPersonRemoteSearchResultsRequest.md deleted file mode 100644 index b460be86e..000000000 --- a/docs/GetPersonRemoteSearchResultsRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# GetPersonRemoteSearchResultsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**PersonLookupInfoRemoteSearchQuerySearchInfo**](PersonLookupInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetPostedPlaybackInfoRequest.md b/docs/GetPostedPlaybackInfoRequest.md deleted file mode 100644 index 59c159f75..000000000 --- a/docs/GetPostedPlaybackInfoRequest.md +++ /dev/null @@ -1,24 +0,0 @@ -# GetPostedPlaybackInfoRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**userId** | **String** | Gets or sets the playback userId. | [optional] -**maxStreamingBitrate** | **Int** | Gets or sets the max streaming bitrate. | [optional] -**startTimeTicks** | **Int64** | Gets or sets the start time in ticks. | [optional] -**audioStreamIndex** | **Int** | Gets or sets the audio stream index. | [optional] -**subtitleStreamIndex** | **Int** | Gets or sets the subtitle stream index. | [optional] -**maxAudioChannels** | **Int** | Gets or sets the max audio channels. | [optional] -**mediaSourceId** | **String** | Gets or sets the media source id. | [optional] -**liveStreamId** | **String** | Gets or sets the live stream id. | [optional] -**deviceProfile** | [**ClientCapabilitiesDeviceProfile**](ClientCapabilitiesDeviceProfile.md) | | [optional] -**enableDirectPlay** | **Bool** | Gets or sets a value indicating whether to enable direct play. | [optional] -**enableDirectStream** | **Bool** | Gets or sets a value indicating whether to enable direct stream. | [optional] -**enableTranscoding** | **Bool** | Gets or sets a value indicating whether to enable transcoding. | [optional] -**allowVideoStreamCopy** | **Bool** | Gets or sets a value indicating whether to enable video stream copy. | [optional] -**allowAudioStreamCopy** | **Bool** | Gets or sets a value indicating whether to allow audio stream copy. | [optional] -**autoOpenLiveStream** | **Bool** | Gets or sets a value indicating whether to auto open the live stream. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetProgramsDto.md b/docs/GetProgramsDto.md deleted file mode 100644 index 08540f1d7..000000000 --- a/docs/GetProgramsDto.md +++ /dev/null @@ -1,36 +0,0 @@ -# GetProgramsDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**channelIds** | **[String]** | Gets or sets the channels to return guide information for. | [optional] -**userId** | **String** | Gets or sets optional. Filter by user id. | [optional] -**minStartDate** | **Date** | Gets or sets the minimum premiere start date. Optional. | [optional] -**hasAired** | **Bool** | Gets or sets filter by programs that have completed airing, or not. Optional. | [optional] -**isAiring** | **Bool** | Gets or sets filter by programs that are currently airing, or not. Optional. | [optional] -**maxStartDate** | **Date** | Gets or sets the maximum premiere start date. Optional. | [optional] -**minEndDate** | **Date** | Gets or sets the minimum premiere end date. Optional. | [optional] -**maxEndDate** | **Date** | Gets or sets the maximum premiere end date. Optional. | [optional] -**isMovie** | **Bool** | Gets or sets filter for movies. Optional. | [optional] -**isSeries** | **Bool** | Gets or sets filter for series. Optional. | [optional] -**isNews** | **Bool** | Gets or sets filter for news. Optional. | [optional] -**isKids** | **Bool** | Gets or sets filter for kids. Optional. | [optional] -**isSports** | **Bool** | Gets or sets filter for sports. Optional. | [optional] -**startIndex** | **Int** | Gets or sets the record index to start at. All items with a lower index will be dropped from the results. Optional. | [optional] -**limit** | **Int** | Gets or sets the maximum number of records to return. Optional. | [optional] -**sortBy** | **[String]** | Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate. Optional. | [optional] -**sortOrder** | [SortOrder] | Gets or sets sort Order - Ascending,Descending. | [optional] -**genres** | **[String]** | Gets or sets the genres to return guide information for. | [optional] -**genreIds** | **[String]** | Gets or sets the genre ids to return guide information for. | [optional] -**enableImages** | **Bool** | Gets or sets include image information in output. Optional. | [optional] -**enableTotalRecordCount** | **Bool** | Gets or sets a value indicating whether retrieve total record count. | [optional] -**imageTypeLimit** | **Int** | Gets or sets the max number of images to return, per image type. Optional. | [optional] -**enableImageTypes** | [ImageType] | Gets or sets the image types to include in the output. Optional. | [optional] -**enableUserData** | **Bool** | Gets or sets include user data. Optional. | [optional] -**seriesTimerId** | **String** | Gets or sets filter by series timer id. Optional. | [optional] -**librarySeriesId** | **String** | Gets or sets filter by library series id. Optional. | [optional] -**fields** | [ItemFields] | Gets or sets specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. Optional. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetProgramsRequest.md b/docs/GetProgramsRequest.md deleted file mode 100644 index 8e8345bce..000000000 --- a/docs/GetProgramsRequest.md +++ /dev/null @@ -1,36 +0,0 @@ -# GetProgramsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**channelIds** | **[String]** | Gets or sets the channels to return guide information for. | [optional] -**userId** | **String** | Gets or sets optional. Filter by user id. | [optional] -**minStartDate** | **Date** | Gets or sets the minimum premiere start date. Optional. | [optional] -**hasAired** | **Bool** | Gets or sets filter by programs that have completed airing, or not. Optional. | [optional] -**isAiring** | **Bool** | Gets or sets filter by programs that are currently airing, or not. Optional. | [optional] -**maxStartDate** | **Date** | Gets or sets the maximum premiere start date. Optional. | [optional] -**minEndDate** | **Date** | Gets or sets the minimum premiere end date. Optional. | [optional] -**maxEndDate** | **Date** | Gets or sets the maximum premiere end date. Optional. | [optional] -**isMovie** | **Bool** | Gets or sets filter for movies. Optional. | [optional] -**isSeries** | **Bool** | Gets or sets filter for series. Optional. | [optional] -**isNews** | **Bool** | Gets or sets filter for news. Optional. | [optional] -**isKids** | **Bool** | Gets or sets filter for kids. Optional. | [optional] -**isSports** | **Bool** | Gets or sets filter for sports. Optional. | [optional] -**startIndex** | **Int** | Gets or sets the record index to start at. All items with a lower index will be dropped from the results. Optional. | [optional] -**limit** | **Int** | Gets or sets the maximum number of records to return. Optional. | [optional] -**sortBy** | **[String]** | Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate. Optional. | [optional] -**sortOrder** | [SortOrder] | Gets or sets sort Order - Ascending,Descending. | [optional] -**genres** | **[String]** | Gets or sets the genres to return guide information for. | [optional] -**genreIds** | **[String]** | Gets or sets the genre ids to return guide information for. | [optional] -**enableImages** | **Bool** | Gets or sets include image information in output. Optional. | [optional] -**enableTotalRecordCount** | **Bool** | Gets or sets a value indicating whether retrieve total record count. | [optional] -**imageTypeLimit** | **Int** | Gets or sets the max number of images to return, per image type. Optional. | [optional] -**enableImageTypes** | [ImageType] | Gets or sets the image types to include in the output. Optional. | [optional] -**enableUserData** | **Bool** | Gets or sets include user data. Optional. | [optional] -**seriesTimerId** | **String** | Gets or sets filter by series timer id. Optional. | [optional] -**librarySeriesId** | **String** | Gets or sets filter by library series id. Optional. | [optional] -**fields** | [ItemFields] | Gets or sets specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. Optional. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetSeriesRemoteSearchResultsRequest.md b/docs/GetSeriesRemoteSearchResultsRequest.md deleted file mode 100644 index 8eed4a749..000000000 --- a/docs/GetSeriesRemoteSearchResultsRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# GetSeriesRemoteSearchResultsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**SeriesInfoRemoteSearchQuerySearchInfo**](SeriesInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GetTrailerRemoteSearchResultsRequest.md b/docs/GetTrailerRemoteSearchResultsRequest.md deleted file mode 100644 index 0845d2d22..000000000 --- a/docs/GetTrailerRemoteSearchResultsRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# GetTrailerRemoteSearchResultsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**TrailerInfoRemoteSearchQuerySearchInfo**](TrailerInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GroupInfoDto.md b/docs/GroupInfoDto.md deleted file mode 100644 index fd1f757c3..000000000 --- a/docs/GroupInfoDto.md +++ /dev/null @@ -1,14 +0,0 @@ -# GroupInfoDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**groupId** | **String** | Gets the group identifier. | [optional] -**groupName** | **String** | Gets the group name. | [optional] -**state** | [**GroupStateType**](GroupStateType.md) | Gets the group state. | [optional] -**participants** | **[String]** | Gets the participants. | [optional] -**lastUpdatedAt** | **Date** | Gets the date when this DTO has been created. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GroupQueueMode.md b/docs/GroupQueueMode.md deleted file mode 100644 index cccb046b5..000000000 --- a/docs/GroupQueueMode.md +++ /dev/null @@ -1,9 +0,0 @@ -# GroupQueueMode - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GroupRepeatMode.md b/docs/GroupRepeatMode.md deleted file mode 100644 index 7f7fce000..000000000 --- a/docs/GroupRepeatMode.md +++ /dev/null @@ -1,9 +0,0 @@ -# GroupRepeatMode - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GroupShuffleMode.md b/docs/GroupShuffleMode.md deleted file mode 100644 index 26cea84e0..000000000 --- a/docs/GroupShuffleMode.md +++ /dev/null @@ -1,9 +0,0 @@ -# GroupShuffleMode - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GroupStateType.md b/docs/GroupStateType.md deleted file mode 100644 index 430b3759d..000000000 --- a/docs/GroupStateType.md +++ /dev/null @@ -1,9 +0,0 @@ -# GroupStateType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GroupUpdateType.md b/docs/GroupUpdateType.md deleted file mode 100644 index ba3f0bd03..000000000 --- a/docs/GroupUpdateType.md +++ /dev/null @@ -1,9 +0,0 @@ -# GroupUpdateType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/GuideInfo.md b/docs/GuideInfo.md deleted file mode 100644 index b9ba751b3..000000000 --- a/docs/GuideInfo.md +++ /dev/null @@ -1,11 +0,0 @@ -# GuideInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**startDate** | **Date** | Gets or sets the start date. | [optional] -**endDate** | **Date** | Gets or sets the end date. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/HardwareEncodingType.md b/docs/HardwareEncodingType.md deleted file mode 100644 index 56f29e6d6..000000000 --- a/docs/HardwareEncodingType.md +++ /dev/null @@ -1,9 +0,0 @@ -# HardwareEncodingType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/HeaderMatchType.md b/docs/HeaderMatchType.md deleted file mode 100644 index 2b663b403..000000000 --- a/docs/HeaderMatchType.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderMatchType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/HlsSegmentAPI.md b/docs/HlsSegmentAPI.md deleted file mode 100644 index eb7658cc8..000000000 --- a/docs/HlsSegmentAPI.md +++ /dev/null @@ -1,267 +0,0 @@ -# HlsSegmentAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getHlsAudioSegmentLegacyAac**](HlsSegmentAPI.md#gethlsaudiosegmentlegacyaac) | **GET** /Audio/{itemId}/hls/{segmentId}/stream.aac | Gets the specified audio segment for an audio item. -[**getHlsAudioSegmentLegacyMp3**](HlsSegmentAPI.md#gethlsaudiosegmentlegacymp3) | **GET** /Audio/{itemId}/hls/{segmentId}/stream.mp3 | Gets the specified audio segment for an audio item. -[**getHlsPlaylistLegacy**](HlsSegmentAPI.md#gethlsplaylistlegacy) | **GET** /Videos/{itemId}/hls/{playlistId}/stream.m3u8 | Gets a hls video playlist. -[**getHlsVideoSegmentLegacy**](HlsSegmentAPI.md#gethlsvideosegmentlegacy) | **GET** /Videos/{itemId}/hls/{playlistId}/{segmentId}.{segmentContainer} | Gets a hls video segment. -[**stopEncodingProcess**](HlsSegmentAPI.md#stopencodingprocess) | **DELETE** /Videos/ActiveEncodings | Stops an active encoding. - - -# **getHlsAudioSegmentLegacyAac** -```swift - open class func getHlsAudioSegmentLegacyAac(itemId: String, segmentId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets the specified audio segment for an audio item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let segmentId = "segmentId_example" // String | The segment id. - -// Gets the specified audio segment for an audio item. -HlsSegmentAPI.getHlsAudioSegmentLegacyAac(itemId: itemId, segmentId: segmentId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **segmentId** | **String** | The segment id. | - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: audio/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getHlsAudioSegmentLegacyMp3** -```swift - open class func getHlsAudioSegmentLegacyMp3(itemId: String, segmentId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets the specified audio segment for an audio item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let segmentId = "segmentId_example" // String | The segment id. - -// Gets the specified audio segment for an audio item. -HlsSegmentAPI.getHlsAudioSegmentLegacyMp3(itemId: itemId, segmentId: segmentId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **segmentId** | **String** | The segment id. | - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: audio/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getHlsPlaylistLegacy** -```swift - open class func getHlsPlaylistLegacy(itemId: String, playlistId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a hls video playlist. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The video id. -let playlistId = "playlistId_example" // String | The playlist id. - -// Gets a hls video playlist. -HlsSegmentAPI.getHlsPlaylistLegacy(itemId: itemId, playlistId: playlistId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The video id. | - **playlistId** | **String** | The playlist id. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/x-mpegURL - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getHlsVideoSegmentLegacy** -```swift - open class func getHlsVideoSegmentLegacy(itemId: String, playlistId: String, segmentId: String, segmentContainer: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a hls video segment. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let playlistId = "playlistId_example" // String | The playlist id. -let segmentId = "segmentId_example" // String | The segment id. -let segmentContainer = "segmentContainer_example" // String | The segment container. - -// Gets a hls video segment. -HlsSegmentAPI.getHlsVideoSegmentLegacy(itemId: itemId, playlistId: playlistId, segmentId: segmentId, segmentContainer: segmentContainer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **playlistId** | **String** | The playlist id. | - **segmentId** | **String** | The segment id. | - **segmentContainer** | **String** | The segment container. | - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: video/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **stopEncodingProcess** -```swift - open class func stopEncodingProcess(deviceId: String, playSessionId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Stops an active encoding. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. -let playSessionId = "playSessionId_example" // String | The play session id. - -// Stops an active encoding. -HlsSegmentAPI.stopEncodingProcess(deviceId: deviceId, playSessionId: playSessionId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | - **playSessionId** | **String** | The play session id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/HttpHeaderInfo.md b/docs/HttpHeaderInfo.md deleted file mode 100644 index 792958f6a..000000000 --- a/docs/HttpHeaderInfo.md +++ /dev/null @@ -1,12 +0,0 @@ -# HttpHeaderInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | | [optional] -**value** | **String** | | [optional] -**match** | [**HeaderMatchType**](HeaderMatchType.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/IPlugin.md b/docs/IPlugin.md deleted file mode 100644 index 16dd26270..000000000 --- a/docs/IPlugin.md +++ /dev/null @@ -1,16 +0,0 @@ -# IPlugin - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets the name of the plugin. | [optional] [readonly] -**description** | **String** | Gets the Description. | [optional] [readonly] -**id** | **String** | Gets the unique id. | [optional] [readonly] -**version** | **String** | Gets the plugin version. | [optional] [readonly] -**assemblyFilePath** | **String** | Gets the path to the assembly file. | [optional] [readonly] -**canUninstall** | **Bool** | Gets a value indicating whether the plugin can be uninstalled. | [optional] [readonly] -**dataFolderPath** | **String** | Gets the full path to the data folder, where the plugin can store any miscellaneous files needed. | [optional] [readonly] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/IgnoreWaitRequestDto.md b/docs/IgnoreWaitRequestDto.md deleted file mode 100644 index 64e771449..000000000 --- a/docs/IgnoreWaitRequestDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# IgnoreWaitRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ignoreWait** | **Bool** | Gets or sets a value indicating whether the client should be ignored. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ImageAPI.md b/docs/ImageAPI.md deleted file mode 100644 index e4e0a81bd..000000000 --- a/docs/ImageAPI.md +++ /dev/null @@ -1,3042 +0,0 @@ -# ImageAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**deleteItemImage**](ImageAPI.md#deleteitemimage) | **DELETE** /Items/{itemId}/Images/{imageType} | Delete an item's image. -[**deleteItemImageByIndex**](ImageAPI.md#deleteitemimagebyindex) | **DELETE** /Items/{itemId}/Images/{imageType}/{imageIndex} | Delete an item's image. -[**deleteUserImage**](ImageAPI.md#deleteuserimage) | **DELETE** /Users/{userId}/Images/{imageType} | Delete the user's image. -[**deleteUserImageByIndex**](ImageAPI.md#deleteuserimagebyindex) | **DELETE** /Users/{userId}/Images/{imageType}/{index} | Delete the user's image. -[**getArtistImage**](ImageAPI.md#getartistimage) | **GET** /Artists/{name}/Images/{imageType}/{imageIndex} | Get artist image by name. -[**getGenreImage**](ImageAPI.md#getgenreimage) | **GET** /Genres/{name}/Images/{imageType} | Get genre image by name. -[**getGenreImageByIndex**](ImageAPI.md#getgenreimagebyindex) | **GET** /Genres/{name}/Images/{imageType}/{imageIndex} | Get genre image by name. -[**getItemImage**](ImageAPI.md#getitemimage) | **GET** /Items/{itemId}/Images/{imageType} | Gets the item's image. -[**getItemImage2**](ImageAPI.md#getitemimage2) | **GET** /Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount} | Gets the item's image. -[**getItemImageByIndex**](ImageAPI.md#getitemimagebyindex) | **GET** /Items/{itemId}/Images/{imageType}/{imageIndex} | Gets the item's image. -[**getItemImageInfos**](ImageAPI.md#getitemimageinfos) | **GET** /Items/{itemId}/Images | Get item image infos. -[**getMusicGenreImage**](ImageAPI.md#getmusicgenreimage) | **GET** /MusicGenres/{name}/Images/{imageType} | Get music genre image by name. -[**getMusicGenreImageByIndex**](ImageAPI.md#getmusicgenreimagebyindex) | **GET** /MusicGenres/{name}/Images/{imageType}/{imageIndex} | Get music genre image by name. -[**getPersonImage**](ImageAPI.md#getpersonimage) | **GET** /Persons/{name}/Images/{imageType} | Get person image by name. -[**getPersonImageByIndex**](ImageAPI.md#getpersonimagebyindex) | **GET** /Persons/{name}/Images/{imageType}/{imageIndex} | Get person image by name. -[**getSplashscreen**](ImageAPI.md#getsplashscreen) | **GET** /Branding/Splashscreen | Generates or gets the splashscreen. -[**getStudioImage**](ImageAPI.md#getstudioimage) | **GET** /Studios/{name}/Images/{imageType} | Get studio image by name. -[**getStudioImageByIndex**](ImageAPI.md#getstudioimagebyindex) | **GET** /Studios/{name}/Images/{imageType}/{imageIndex} | Get studio image by name. -[**getUserImage**](ImageAPI.md#getuserimage) | **GET** /Users/{userId}/Images/{imageType} | Get user profile image. -[**getUserImageByIndex**](ImageAPI.md#getuserimagebyindex) | **GET** /Users/{userId}/Images/{imageType}/{imageIndex} | Get user profile image. -[**headArtistImage**](ImageAPI.md#headartistimage) | **HEAD** /Artists/{name}/Images/{imageType}/{imageIndex} | Get artist image by name. -[**headGenreImage**](ImageAPI.md#headgenreimage) | **HEAD** /Genres/{name}/Images/{imageType} | Get genre image by name. -[**headGenreImageByIndex**](ImageAPI.md#headgenreimagebyindex) | **HEAD** /Genres/{name}/Images/{imageType}/{imageIndex} | Get genre image by name. -[**headItemImage**](ImageAPI.md#headitemimage) | **HEAD** /Items/{itemId}/Images/{imageType} | Gets the item's image. -[**headItemImage2**](ImageAPI.md#headitemimage2) | **HEAD** /Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount} | Gets the item's image. -[**headItemImageByIndex**](ImageAPI.md#headitemimagebyindex) | **HEAD** /Items/{itemId}/Images/{imageType}/{imageIndex} | Gets the item's image. -[**headMusicGenreImage**](ImageAPI.md#headmusicgenreimage) | **HEAD** /MusicGenres/{name}/Images/{imageType} | Get music genre image by name. -[**headMusicGenreImageByIndex**](ImageAPI.md#headmusicgenreimagebyindex) | **HEAD** /MusicGenres/{name}/Images/{imageType}/{imageIndex} | Get music genre image by name. -[**headPersonImage**](ImageAPI.md#headpersonimage) | **HEAD** /Persons/{name}/Images/{imageType} | Get person image by name. -[**headPersonImageByIndex**](ImageAPI.md#headpersonimagebyindex) | **HEAD** /Persons/{name}/Images/{imageType}/{imageIndex} | Get person image by name. -[**headStudioImage**](ImageAPI.md#headstudioimage) | **HEAD** /Studios/{name}/Images/{imageType} | Get studio image by name. -[**headStudioImageByIndex**](ImageAPI.md#headstudioimagebyindex) | **HEAD** /Studios/{name}/Images/{imageType}/{imageIndex} | Get studio image by name. -[**headUserImage**](ImageAPI.md#headuserimage) | **HEAD** /Users/{userId}/Images/{imageType} | Get user profile image. -[**headUserImageByIndex**](ImageAPI.md#headuserimagebyindex) | **HEAD** /Users/{userId}/Images/{imageType}/{imageIndex} | Get user profile image. -[**postUserImage**](ImageAPI.md#postuserimage) | **POST** /Users/{userId}/Images/{imageType} | Sets the user image. -[**postUserImageByIndex**](ImageAPI.md#postuserimagebyindex) | **POST** /Users/{userId}/Images/{imageType}/{index} | Sets the user image. -[**setItemImage**](ImageAPI.md#setitemimage) | **POST** /Items/{itemId}/Images/{imageType} | Set item image. -[**setItemImageByIndex**](ImageAPI.md#setitemimagebyindex) | **POST** /Items/{itemId}/Images/{imageType}/{imageIndex} | Set item image. -[**updateItemImageIndex**](ImageAPI.md#updateitemimageindex) | **POST** /Items/{itemId}/Images/{imageType}/{imageIndex}/Index | Updates the index for an item image. -[**uploadCustomSplashscreen**](ImageAPI.md#uploadcustomsplashscreen) | **POST** /Branding/Splashscreen | Uploads a custom splashscreen. - - -# **deleteItemImage** -```swift - open class func deleteItemImage(itemId: String, imageType: ImageType, imageIndex: Int? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Delete an item's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | The image index. (optional) - -// Delete an item's image. -ImageAPI.deleteItemImage(itemId: itemId, imageType: imageType, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | The image index. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **deleteItemImageByIndex** -```swift - open class func deleteItemImageByIndex(itemId: String, imageType: ImageType, imageIndex: Int, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Delete an item's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | The image index. - -// Delete an item's image. -ImageAPI.deleteItemImageByIndex(itemId: itemId, imageType: imageType, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | The image index. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **deleteUserImage** -```swift - open class func deleteUserImage(userId: String, imageType: ImageType, index: Int? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Delete the user's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User Id. -let imageType = ImageType() // ImageType | (Unused) Image type. -let index = 987 // Int | (Unused) Image index. (optional) - -// Delete the user's image. -ImageAPI.deleteUserImage(userId: userId, imageType: imageType, index: index) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User Id. | - **imageType** | [**ImageType**](.md) | (Unused) Image type. | - **index** | **Int** | (Unused) Image index. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **deleteUserImageByIndex** -```swift - open class func deleteUserImageByIndex(userId: String, imageType: ImageType, index: Int, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Delete the user's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User Id. -let imageType = ImageType() // ImageType | (Unused) Image type. -let index = 987 // Int | (Unused) Image index. - -// Delete the user's image. -ImageAPI.deleteUserImageByIndex(userId: userId, imageType: imageType, index: index) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User Id. | - **imageType** | [**ImageType**](.md) | (Unused) Image type. | - **index** | **Int** | (Unused) Image index. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getArtistImage** -```swift - open class func getArtistImage(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get artist image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Artist name. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get artist image by name. -ImageAPI.getArtistImage(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Artist name. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getGenreImage** -```swift - open class func getGenreImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get genre image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Genre name. -let imageType = ImageType() // ImageType | Image type. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Get genre image by name. -ImageAPI.getGenreImage(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Genre name. | - **imageType** | [**ImageType**](.md) | Image type. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getGenreImageByIndex** -```swift - open class func getGenreImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get genre image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Genre name. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get genre image by name. -ImageAPI.getGenreImageByIndex(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Genre name. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getItemImage** -```swift - open class func getItemImage(itemId: String, imageType: ImageType, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets the item's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let format = ImageFormat() // ImageFormat | Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Gets the item's image. -ImageAPI.getItemImage(itemId: itemId, imageType: imageType, maxWidth: maxWidth, maxHeight: maxHeight, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, tag: tag, cropWhitespace: cropWhitespace, format: format, addPlayedIndicator: addPlayedIndicator, percentPlayed: percentPlayed, unplayedCount: unplayedCount, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **format** | [**ImageFormat**](.md) | Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getItemImage2** -```swift - open class func getItemImage2(itemId: String, imageType: ImageType, maxWidth: Int, maxHeight: Int, tag: String, format: ImageFormat, percentPlayed: Double, unplayedCount: Int, imageIndex: Int, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets the item's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let maxWidth = 987 // Int | The maximum image width to return. -let maxHeight = 987 // Int | The maximum image height to return. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. -let imageIndex = 987 // Int | Image index. -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Gets the item's image. -ImageAPI.getItemImage2(itemId: itemId, imageType: imageType, maxWidth: maxWidth, maxHeight: maxHeight, tag: tag, format: format, percentPlayed: percentPlayed, unplayedCount: unplayedCount, imageIndex: imageIndex, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **maxWidth** | **Int** | The maximum image width to return. | - **maxHeight** | **Int** | The maximum image height to return. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | - **imageIndex** | **Int** | Image index. | - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getItemImageByIndex** -```swift - open class func getItemImageByIndex(itemId: String, imageType: ImageType, imageIndex: Int, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets the item's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let format = ImageFormat() // ImageFormat | Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Gets the item's image. -ImageAPI.getItemImageByIndex(itemId: itemId, imageType: imageType, imageIndex: imageIndex, maxWidth: maxWidth, maxHeight: maxHeight, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, tag: tag, cropWhitespace: cropWhitespace, format: format, addPlayedIndicator: addPlayedIndicator, percentPlayed: percentPlayed, unplayedCount: unplayedCount, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **format** | [**ImageFormat**](.md) | Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getItemImageInfos** -```swift - open class func getItemImageInfos(itemId: String, completion: @escaping (_ data: [ImageInfo]?, _ error: Error?) -> Void) -``` - -Get item image infos. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. - -// Get item image infos. -ImageAPI.getItemImageInfos(itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - -### Return type - -[**[ImageInfo]**](ImageInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMusicGenreImage** -```swift - open class func getMusicGenreImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get music genre image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Music genre name. -let imageType = ImageType() // ImageType | Image type. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Get music genre image by name. -ImageAPI.getMusicGenreImage(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Music genre name. | - **imageType** | [**ImageType**](.md) | Image type. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMusicGenreImageByIndex** -```swift - open class func getMusicGenreImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get music genre image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Music genre name. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get music genre image by name. -ImageAPI.getMusicGenreImageByIndex(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Music genre name. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPersonImage** -```swift - open class func getPersonImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get person image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Person name. -let imageType = ImageType() // ImageType | Image type. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Get person image by name. -ImageAPI.getPersonImage(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Person name. | - **imageType** | [**ImageType**](.md) | Image type. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPersonImageByIndex** -```swift - open class func getPersonImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get person image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Person name. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get person image by name. -ImageAPI.getPersonImageByIndex(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Person name. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSplashscreen** -```swift - open class func getSplashscreen(tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, quality: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Generates or gets the splashscreen. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let tag = "tag_example" // String | Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let blur = 987 // Int | Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Apply a foreground layer on top of the image. (optional) -let quality = 987 // Int | Quality setting, from 0-100. (optional) (default to 90) - -// Generates or gets the splashscreen. -ImageAPI.getSplashscreen(tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, width: width, height: height, fillWidth: fillWidth, fillHeight: fillHeight, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, quality: quality) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **tag** | **String** | Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **blur** | **Int** | Blur image. | [optional] - **backgroundColor** | **String** | Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Apply a foreground layer on top of the image. | [optional] - **quality** | **Int** | Quality setting, from 0-100. | [optional] [default to 90] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getStudioImage** -```swift - open class func getStudioImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get studio image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Studio name. -let imageType = ImageType() // ImageType | Image type. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Get studio image by name. -ImageAPI.getStudioImage(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Studio name. | - **imageType** | [**ImageType**](.md) | Image type. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getStudioImageByIndex** -```swift - open class func getStudioImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get studio image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Studio name. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get studio image by name. -ImageAPI.getStudioImageByIndex(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Studio name. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getUserImage** -```swift - open class func getUserImage(userId: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get user profile image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let imageType = ImageType() // ImageType | Image type. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Get user profile image. -ImageAPI.getUserImage(userId: userId, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **imageType** | [**ImageType**](.md) | Image type. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getUserImageByIndex** -```swift - open class func getUserImageByIndex(userId: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get user profile image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get user profile image. -ImageAPI.getUserImageByIndex(userId: userId, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headArtistImage** -```swift - open class func headArtistImage(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get artist image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Artist name. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get artist image by name. -ImageAPI.headArtistImage(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Artist name. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headGenreImage** -```swift - open class func headGenreImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get genre image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Genre name. -let imageType = ImageType() // ImageType | Image type. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Get genre image by name. -ImageAPI.headGenreImage(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Genre name. | - **imageType** | [**ImageType**](.md) | Image type. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headGenreImageByIndex** -```swift - open class func headGenreImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get genre image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Genre name. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get genre image by name. -ImageAPI.headGenreImageByIndex(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Genre name. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headItemImage** -```swift - open class func headItemImage(itemId: String, imageType: ImageType, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets the item's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let format = ImageFormat() // ImageFormat | Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Gets the item's image. -ImageAPI.headItemImage(itemId: itemId, imageType: imageType, maxWidth: maxWidth, maxHeight: maxHeight, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, tag: tag, cropWhitespace: cropWhitespace, format: format, addPlayedIndicator: addPlayedIndicator, percentPlayed: percentPlayed, unplayedCount: unplayedCount, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **format** | [**ImageFormat**](.md) | Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headItemImage2** -```swift - open class func headItemImage2(itemId: String, imageType: ImageType, maxWidth: Int, maxHeight: Int, tag: String, format: ImageFormat, percentPlayed: Double, unplayedCount: Int, imageIndex: Int, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets the item's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let maxWidth = 987 // Int | The maximum image width to return. -let maxHeight = 987 // Int | The maximum image height to return. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. -let imageIndex = 987 // Int | Image index. -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Gets the item's image. -ImageAPI.headItemImage2(itemId: itemId, imageType: imageType, maxWidth: maxWidth, maxHeight: maxHeight, tag: tag, format: format, percentPlayed: percentPlayed, unplayedCount: unplayedCount, imageIndex: imageIndex, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **maxWidth** | **Int** | The maximum image width to return. | - **maxHeight** | **Int** | The maximum image height to return. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | - **imageIndex** | **Int** | Image index. | - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headItemImageByIndex** -```swift - open class func headItemImageByIndex(itemId: String, imageType: ImageType, imageIndex: Int, maxWidth: Int? = nil, maxHeight: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, tag: String? = nil, cropWhitespace: Bool? = nil, format: ImageFormat? = nil, addPlayedIndicator: Bool? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets the item's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let format = ImageFormat() // ImageFormat | Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Gets the item's image. -ImageAPI.headItemImageByIndex(itemId: itemId, imageType: imageType, imageIndex: imageIndex, maxWidth: maxWidth, maxHeight: maxHeight, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, tag: tag, cropWhitespace: cropWhitespace, format: format, addPlayedIndicator: addPlayedIndicator, percentPlayed: percentPlayed, unplayedCount: unplayedCount, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **format** | [**ImageFormat**](.md) | Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headMusicGenreImage** -```swift - open class func headMusicGenreImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get music genre image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Music genre name. -let imageType = ImageType() // ImageType | Image type. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Get music genre image by name. -ImageAPI.headMusicGenreImage(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Music genre name. | - **imageType** | [**ImageType**](.md) | Image type. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headMusicGenreImageByIndex** -```swift - open class func headMusicGenreImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get music genre image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Music genre name. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get music genre image by name. -ImageAPI.headMusicGenreImageByIndex(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Music genre name. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headPersonImage** -```swift - open class func headPersonImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get person image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Person name. -let imageType = ImageType() // ImageType | Image type. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Get person image by name. -ImageAPI.headPersonImage(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Person name. | - **imageType** | [**ImageType**](.md) | Image type. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headPersonImageByIndex** -```swift - open class func headPersonImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get person image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Person name. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get person image by name. -ImageAPI.headPersonImageByIndex(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Person name. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headStudioImage** -```swift - open class func headStudioImage(name: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get studio image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Studio name. -let imageType = ImageType() // ImageType | Image type. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Get studio image by name. -ImageAPI.headStudioImage(name: name, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Studio name. | - **imageType** | [**ImageType**](.md) | Image type. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headStudioImageByIndex** -```swift - open class func headStudioImageByIndex(name: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get studio image by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Studio name. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get studio image by name. -ImageAPI.headStudioImageByIndex(name: name, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Studio name. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headUserImage** -```swift - open class func headUserImage(userId: String, imageType: ImageType, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, imageIndex: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get user profile image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let imageType = ImageType() // ImageType | Image type. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) -let imageIndex = 987 // Int | Image index. (optional) - -// Get user profile image. -ImageAPI.headUserImage(userId: userId, imageType: imageType, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer, imageIndex: imageIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **imageType** | [**ImageType**](.md) | Image type. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - **imageIndex** | **Int** | Image index. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headUserImageByIndex** -```swift - open class func headUserImageByIndex(userId: String, imageType: ImageType, imageIndex: Int, tag: String? = nil, format: ImageFormat? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, percentPlayed: Double? = nil, unplayedCount: Int? = nil, width: Int? = nil, height: Int? = nil, quality: Int? = nil, fillWidth: Int? = nil, fillHeight: Int? = nil, cropWhitespace: Bool? = nil, addPlayedIndicator: Bool? = nil, blur: Int? = nil, backgroundColor: String? = nil, foregroundLayer: String? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get user profile image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Image index. -let tag = "tag_example" // String | Optional. Supply the cache tag from the item object to receive strong caching headers. (optional) -let format = ImageFormat() // ImageFormat | Determines the output format of the image - original,gif,jpg,png. (optional) -let maxWidth = 987 // Int | The maximum image width to return. (optional) -let maxHeight = 987 // Int | The maximum image height to return. (optional) -let percentPlayed = 987 // Double | Optional. Percent to render for the percent played overlay. (optional) -let unplayedCount = 987 // Int | Optional. Unplayed count overlay to render. (optional) -let width = 987 // Int | The fixed image width to return. (optional) -let height = 987 // Int | The fixed image height to return. (optional) -let quality = 987 // Int | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. (optional) -let fillWidth = 987 // Int | Width of box to fill. (optional) -let fillHeight = 987 // Int | Height of box to fill. (optional) -let cropWhitespace = true // Bool | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. (optional) -let addPlayedIndicator = true // Bool | Optional. Add a played indicator. (optional) -let blur = 987 // Int | Optional. Blur image. (optional) -let backgroundColor = "backgroundColor_example" // String | Optional. Apply a background color for transparent images. (optional) -let foregroundLayer = "foregroundLayer_example" // String | Optional. Apply a foreground layer on top of the image. (optional) - -// Get user profile image. -ImageAPI.headUserImageByIndex(userId: userId, imageType: imageType, imageIndex: imageIndex, tag: tag, format: format, maxWidth: maxWidth, maxHeight: maxHeight, percentPlayed: percentPlayed, unplayedCount: unplayedCount, width: width, height: height, quality: quality, fillWidth: fillWidth, fillHeight: fillHeight, cropWhitespace: cropWhitespace, addPlayedIndicator: addPlayedIndicator, blur: blur, backgroundColor: backgroundColor, foregroundLayer: foregroundLayer) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Image index. | - **tag** | **String** | Optional. Supply the cache tag from the item object to receive strong caching headers. | [optional] - **format** | [**ImageFormat**](.md) | Determines the output format of the image - original,gif,jpg,png. | [optional] - **maxWidth** | **Int** | The maximum image width to return. | [optional] - **maxHeight** | **Int** | The maximum image height to return. | [optional] - **percentPlayed** | **Double** | Optional. Percent to render for the percent played overlay. | [optional] - **unplayedCount** | **Int** | Optional. Unplayed count overlay to render. | [optional] - **width** | **Int** | The fixed image width to return. | [optional] - **height** | **Int** | The fixed image height to return. | [optional] - **quality** | **Int** | Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases. | [optional] - **fillWidth** | **Int** | Width of box to fill. | [optional] - **fillHeight** | **Int** | Height of box to fill. | [optional] - **cropWhitespace** | **Bool** | Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art. | [optional] - **addPlayedIndicator** | **Bool** | Optional. Add a played indicator. | [optional] - **blur** | **Int** | Optional. Blur image. | [optional] - **backgroundColor** | **String** | Optional. Apply a background color for transparent images. | [optional] - **foregroundLayer** | **String** | Optional. Apply a foreground layer on top of the image. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **postUserImage** -```swift - open class func postUserImage(userId: String, imageType: ImageType, index: Int? = nil, body: URL? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Sets the user image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User Id. -let imageType = ImageType() // ImageType | (Unused) Image type. -let index = 987 // Int | (Unused) Image index. (optional) -let body = URL(string: "https://example.com")! // URL | (optional) - -// Sets the user image. -ImageAPI.postUserImage(userId: userId, imageType: imageType, index: index, body: body) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User Id. | - **imageType** | [**ImageType**](.md) | (Unused) Image type. | - **index** | **Int** | (Unused) Image index. | [optional] - **body** | **URL** | | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: image/_* - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **postUserImageByIndex** -```swift - open class func postUserImageByIndex(userId: String, imageType: ImageType, index: Int, body: URL? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Sets the user image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User Id. -let imageType = ImageType() // ImageType | (Unused) Image type. -let index = 987 // Int | (Unused) Image index. -let body = URL(string: "https://example.com")! // URL | (optional) - -// Sets the user image. -ImageAPI.postUserImageByIndex(userId: userId, imageType: imageType, index: index, body: body) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User Id. | - **imageType** | [**ImageType**](.md) | (Unused) Image type. | - **index** | **Int** | (Unused) Image index. | - **body** | **URL** | | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: image/_* - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **setItemImage** -```swift - open class func setItemImage(itemId: String, imageType: ImageType, body: URL? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Set item image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let body = URL(string: "https://example.com")! // URL | (optional) - -// Set item image. -ImageAPI.setItemImage(itemId: itemId, imageType: imageType, body: body) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **body** | **URL** | | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: image/_* - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **setItemImageByIndex** -```swift - open class func setItemImageByIndex(itemId: String, imageType: ImageType, imageIndex: Int, body: URL? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Set item image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | (Unused) Image index. -let body = URL(string: "https://example.com")! // URL | (optional) - -// Set item image. -ImageAPI.setItemImageByIndex(itemId: itemId, imageType: imageType, imageIndex: imageIndex, body: body) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | (Unused) Image index. | - **body** | **URL** | | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: image/_* - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateItemImageIndex** -```swift - open class func updateItemImageIndex(itemId: String, imageType: ImageType, imageIndex: Int, newIndex: Int, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates the index for an item image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let imageType = ImageType() // ImageType | Image type. -let imageIndex = 987 // Int | Old image index. -let newIndex = 987 // Int | New image index. - -// Updates the index for an item image. -ImageAPI.updateItemImageIndex(itemId: itemId, imageType: imageType, imageIndex: imageIndex, newIndex: newIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **imageType** | [**ImageType**](.md) | Image type. | - **imageIndex** | **Int** | Old image index. | - **newIndex** | **Int** | New image index. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **uploadCustomSplashscreen** -```swift - open class func uploadCustomSplashscreen(body: URL? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Uploads a custom splashscreen. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let body = URL(string: "https://example.com")! // URL | (optional) - -// Uploads a custom splashscreen. -ImageAPI.uploadCustomSplashscreen(body: body) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **body** | **URL** | | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: image/_* - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ImageByNameAPI.md b/docs/ImageByNameAPI.md deleted file mode 100644 index 94d18e3a0..000000000 --- a/docs/ImageByNameAPI.md +++ /dev/null @@ -1,296 +0,0 @@ -# ImageByNameAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getGeneralImage**](ImageByNameAPI.md#getgeneralimage) | **GET** /Images/General/{name}/{type} | Get General Image. -[**getGeneralImages**](ImageByNameAPI.md#getgeneralimages) | **GET** /Images/General | Get all general images. -[**getMediaInfoImage**](ImageByNameAPI.md#getmediainfoimage) | **GET** /Images/MediaInfo/{theme}/{name} | Get media info image. -[**getMediaInfoImages**](ImageByNameAPI.md#getmediainfoimages) | **GET** /Images/MediaInfo | Get all media info images. -[**getRatingImage**](ImageByNameAPI.md#getratingimage) | **GET** /Images/Ratings/{theme}/{name} | Get rating image. -[**getRatingImages**](ImageByNameAPI.md#getratingimages) | **GET** /Images/Ratings | Get all general images. - - -# **getGeneralImage** -```swift - open class func getGeneralImage(name: String, type: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get General Image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The name of the image. -let type = "type_example" // String | Image Type (primary, backdrop, logo, etc). - -// Get General Image. -ImageByNameAPI.getGeneralImage(name: name, type: type) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The name of the image. | - **type** | **String** | Image Type (primary, backdrop, logo, etc). | - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/octet-stream, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getGeneralImages** -```swift - open class func getGeneralImages(completion: @escaping (_ data: [ImageByNameInfo]?, _ error: Error?) -> Void) -``` - -Get all general images. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get all general images. -ImageByNameAPI.getGeneralImages() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[ImageByNameInfo]**](ImageByNameInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMediaInfoImage** -```swift - open class func getMediaInfoImage(theme: String, name: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get media info image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let theme = "theme_example" // String | The theme to get the image from. -let name = "name_example" // String | The name of the image. - -// Get media info image. -ImageByNameAPI.getMediaInfoImage(theme: theme, name: name) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **theme** | **String** | The theme to get the image from. | - **name** | **String** | The name of the image. | - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/octet-stream, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMediaInfoImages** -```swift - open class func getMediaInfoImages(completion: @escaping (_ data: [ImageByNameInfo]?, _ error: Error?) -> Void) -``` - -Get all media info images. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get all media info images. -ImageByNameAPI.getMediaInfoImages() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[ImageByNameInfo]**](ImageByNameInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRatingImage** -```swift - open class func getRatingImage(theme: String, name: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get rating image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let theme = "theme_example" // String | The theme to get the image from. -let name = "name_example" // String | The name of the image. - -// Get rating image. -ImageByNameAPI.getRatingImage(theme: theme, name: name) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **theme** | **String** | The theme to get the image from. | - **name** | **String** | The name of the image. | - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/octet-stream, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRatingImages** -```swift - open class func getRatingImages(completion: @escaping (_ data: [ImageByNameInfo]?, _ error: Error?) -> Void) -``` - -Get all general images. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get all general images. -ImageByNameAPI.getRatingImages() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[ImageByNameInfo]**](ImageByNameInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ImageByNameInfo.md b/docs/ImageByNameInfo.md deleted file mode 100644 index 0f9a3ec92..000000000 --- a/docs/ImageByNameInfo.md +++ /dev/null @@ -1,14 +0,0 @@ -# ImageByNameInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**theme** | **String** | Gets or sets the theme. | [optional] -**context** | **String** | Gets or sets the context. | [optional] -**fileLength** | **Int64** | Gets or sets the length of the file. | [optional] -**format** | **String** | Gets or sets the format. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ImageFormat.md b/docs/ImageFormat.md deleted file mode 100644 index c9d655aff..000000000 --- a/docs/ImageFormat.md +++ /dev/null @@ -1,9 +0,0 @@ -# ImageFormat - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ImageInfo.md b/docs/ImageInfo.md deleted file mode 100644 index 6f4b71e5f..000000000 --- a/docs/ImageInfo.md +++ /dev/null @@ -1,17 +0,0 @@ -# ImageInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**imageType** | [**ImageType**](ImageType.md) | Gets or sets the type of the image. | [optional] -**imageIndex** | **Int** | Gets or sets the index of the image. | [optional] -**imageTag** | **String** | Gets or sets the image tag. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**blurHash** | **String** | Gets or sets the blurhash. | [optional] -**height** | **Int** | Gets or sets the height. | [optional] -**width** | **Int** | Gets or sets the width. | [optional] -**size** | **Int64** | Gets or sets the size. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ImageOption.md b/docs/ImageOption.md deleted file mode 100644 index 83d2a724e..000000000 --- a/docs/ImageOption.md +++ /dev/null @@ -1,12 +0,0 @@ -# ImageOption - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**type** | [**ImageType**](ImageType.md) | Gets or sets the type. | [optional] -**limit** | **Int** | Gets or sets the limit. | [optional] -**minWidth** | **Int** | Gets or sets the minimum width. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ImageOrientation.md b/docs/ImageOrientation.md deleted file mode 100644 index 00bbc4890..000000000 --- a/docs/ImageOrientation.md +++ /dev/null @@ -1,9 +0,0 @@ -# ImageOrientation - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ImageProviderInfo.md b/docs/ImageProviderInfo.md deleted file mode 100644 index d3fb63b12..000000000 --- a/docs/ImageProviderInfo.md +++ /dev/null @@ -1,11 +0,0 @@ -# ImageProviderInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets the name. | [optional] -**supportedImages** | [ImageType] | Gets the supported image types. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ImageSavingConvention.md b/docs/ImageSavingConvention.md deleted file mode 100644 index d94655644..000000000 --- a/docs/ImageSavingConvention.md +++ /dev/null @@ -1,9 +0,0 @@ -# ImageSavingConvention - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ImageType.md b/docs/ImageType.md deleted file mode 100644 index 9bf4cfd78..000000000 --- a/docs/ImageType.md +++ /dev/null @@ -1,9 +0,0 @@ -# ImageType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/InstallationInfo.md b/docs/InstallationInfo.md deleted file mode 100644 index fdaa505fb..000000000 --- a/docs/InstallationInfo.md +++ /dev/null @@ -1,16 +0,0 @@ -# InstallationInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**guid** | **String** | Gets or sets the Id. | [optional] -**name** | **String** | Gets or sets the name. | [optional] -**version** | **String** | Gets or sets the version. | [optional] -**changelog** | **String** | Gets or sets the changelog for this version. | [optional] -**sourceUrl** | **String** | Gets or sets the source URL. | [optional] -**checksum** | **String** | Gets or sets a checksum for the binary. | [optional] -**packageInfo** | [**InstallationInfoPackageInfo**](InstallationInfoPackageInfo.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/InstallationInfoPackageInfo.md b/docs/InstallationInfoPackageInfo.md deleted file mode 100644 index 05bf003e9..000000000 --- a/docs/InstallationInfoPackageInfo.md +++ /dev/null @@ -1,17 +0,0 @@ -# InstallationInfoPackageInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**description** | **String** | Gets or sets a long description of the plugin containing features or helpful explanations. | [optional] -**overview** | **String** | Gets or sets a short overview of what the plugin does. | [optional] -**owner** | **String** | Gets or sets the owner. | [optional] -**category** | **String** | Gets or sets the category. | [optional] -**guid** | **String** | Gets or sets the guid of the assembly associated with this plugin. This is used to identify the proper item for automatic updates. | [optional] -**versions** | [VersionInfo] | Gets or sets the versions. | [optional] -**imageUrl** | **String** | Gets or sets the image url for the package. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/InstantMixAPI.md b/docs/InstantMixAPI.md deleted file mode 100644 index 52e545bdd..000000000 --- a/docs/InstantMixAPI.md +++ /dev/null @@ -1,512 +0,0 @@ -# InstantMixAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getInstantMixFromAlbum**](InstantMixAPI.md#getinstantmixfromalbum) | **GET** /Albums/{id}/InstantMix | Creates an instant playlist based on a given album. -[**getInstantMixFromArtists**](InstantMixAPI.md#getinstantmixfromartists) | **GET** /Artists/{id}/InstantMix | Creates an instant playlist based on a given artist. -[**getInstantMixFromArtists2**](InstantMixAPI.md#getinstantmixfromartists2) | **GET** /Artists/InstantMix | Creates an instant playlist based on a given artist. -[**getInstantMixFromItem**](InstantMixAPI.md#getinstantmixfromitem) | **GET** /Items/{id}/InstantMix | Creates an instant playlist based on a given item. -[**getInstantMixFromMusicGenreById**](InstantMixAPI.md#getinstantmixfrommusicgenrebyid) | **GET** /MusicGenres/InstantMix | Creates an instant playlist based on a given genre. -[**getInstantMixFromMusicGenreByName**](InstantMixAPI.md#getinstantmixfrommusicgenrebyname) | **GET** /MusicGenres/{name}/InstantMix | Creates an instant playlist based on a given genre. -[**getInstantMixFromPlaylist**](InstantMixAPI.md#getinstantmixfromplaylist) | **GET** /Playlists/{id}/InstantMix | Creates an instant playlist based on a given playlist. -[**getInstantMixFromSong**](InstantMixAPI.md#getinstantmixfromsong) | **GET** /Songs/{id}/InstantMix | Creates an instant playlist based on a given song. - - -# **getInstantMixFromAlbum** -```swift - open class func getInstantMixFromAlbum(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Creates an instant playlist based on a given album. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) - -// Creates an instant playlist based on a given album. -InstantMixAPI.getInstantMixFromAlbum(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getInstantMixFromArtists** -```swift - open class func getInstantMixFromArtists(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Creates an instant playlist based on a given artist. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) - -// Creates an instant playlist based on a given artist. -InstantMixAPI.getInstantMixFromArtists(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getInstantMixFromArtists2** -```swift - open class func getInstantMixFromArtists2(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Creates an instant playlist based on a given artist. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) - -// Creates an instant playlist based on a given artist. -InstantMixAPI.getInstantMixFromArtists2(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getInstantMixFromItem** -```swift - open class func getInstantMixFromItem(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Creates an instant playlist based on a given item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) - -// Creates an instant playlist based on a given item. -InstantMixAPI.getInstantMixFromItem(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getInstantMixFromMusicGenreById** -```swift - open class func getInstantMixFromMusicGenreById(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Creates an instant playlist based on a given genre. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) - -// Creates an instant playlist based on a given genre. -InstantMixAPI.getInstantMixFromMusicGenreById(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getInstantMixFromMusicGenreByName** -```swift - open class func getInstantMixFromMusicGenreByName(name: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Creates an instant playlist based on a given genre. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The genre name. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) - -// Creates an instant playlist based on a given genre. -InstantMixAPI.getInstantMixFromMusicGenreByName(name: name, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The genre name. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getInstantMixFromPlaylist** -```swift - open class func getInstantMixFromPlaylist(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Creates an instant playlist based on a given playlist. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) - -// Creates an instant playlist based on a given playlist. -InstantMixAPI.getInstantMixFromPlaylist(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getInstantMixFromSong** -```swift - open class func getInstantMixFromSong(id: String, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Creates an instant playlist based on a given song. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) - -// Creates an instant playlist based on a given song. -InstantMixAPI.getInstantMixFromSong(id: id, userId: userId, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/IsoType.md b/docs/IsoType.md deleted file mode 100644 index c1243b0a2..000000000 --- a/docs/IsoType.md +++ /dev/null @@ -1,9 +0,0 @@ -# IsoType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ItemCounts.md b/docs/ItemCounts.md deleted file mode 100644 index 0b9dd729f..000000000 --- a/docs/ItemCounts.md +++ /dev/null @@ -1,21 +0,0 @@ -# ItemCounts - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**movieCount** | **Int** | Gets or sets the movie count. | [optional] -**seriesCount** | **Int** | Gets or sets the series count. | [optional] -**episodeCount** | **Int** | Gets or sets the episode count. | [optional] -**artistCount** | **Int** | Gets or sets the artist count. | [optional] -**programCount** | **Int** | Gets or sets the program count. | [optional] -**trailerCount** | **Int** | Gets or sets the trailer count. | [optional] -**songCount** | **Int** | Gets or sets the song count. | [optional] -**albumCount** | **Int** | Gets or sets the album count. | [optional] -**musicVideoCount** | **Int** | Gets or sets the music video count. | [optional] -**boxSetCount** | **Int** | Gets or sets the box set count. | [optional] -**bookCount** | **Int** | Gets or sets the book count. | [optional] -**itemCount** | **Int** | Gets or sets the item count. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ItemFields.md b/docs/ItemFields.md deleted file mode 100644 index 24f9f609b..000000000 --- a/docs/ItemFields.md +++ /dev/null @@ -1,9 +0,0 @@ -# ItemFields - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ItemFilter.md b/docs/ItemFilter.md deleted file mode 100644 index b465f692a..000000000 --- a/docs/ItemFilter.md +++ /dev/null @@ -1,9 +0,0 @@ -# ItemFilter - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ItemLookupAPI.md b/docs/ItemLookupAPI.md deleted file mode 100644 index 81c9ddf19..000000000 --- a/docs/ItemLookupAPI.md +++ /dev/null @@ -1,551 +0,0 @@ -# ItemLookupAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**applySearchCriteria**](ItemLookupAPI.md#applysearchcriteria) | **POST** /Items/RemoteSearch/Apply/{itemId} | Applies search criteria to an item and refreshes metadata. -[**getBookRemoteSearchResults**](ItemLookupAPI.md#getbookremotesearchresults) | **POST** /Items/RemoteSearch/Book | Get book remote search. -[**getBoxSetRemoteSearchResults**](ItemLookupAPI.md#getboxsetremotesearchresults) | **POST** /Items/RemoteSearch/BoxSet | Get box set remote search. -[**getExternalIdInfos**](ItemLookupAPI.md#getexternalidinfos) | **GET** /Items/{itemId}/ExternalIdInfos | Get the item's external id info. -[**getMovieRemoteSearchResults**](ItemLookupAPI.md#getmovieremotesearchresults) | **POST** /Items/RemoteSearch/Movie | Get movie remote search. -[**getMusicAlbumRemoteSearchResults**](ItemLookupAPI.md#getmusicalbumremotesearchresults) | **POST** /Items/RemoteSearch/MusicAlbum | Get music album remote search. -[**getMusicArtistRemoteSearchResults**](ItemLookupAPI.md#getmusicartistremotesearchresults) | **POST** /Items/RemoteSearch/MusicArtist | Get music artist remote search. -[**getMusicVideoRemoteSearchResults**](ItemLookupAPI.md#getmusicvideoremotesearchresults) | **POST** /Items/RemoteSearch/MusicVideo | Get music video remote search. -[**getPersonRemoteSearchResults**](ItemLookupAPI.md#getpersonremotesearchresults) | **POST** /Items/RemoteSearch/Person | Get person remote search. -[**getSeriesRemoteSearchResults**](ItemLookupAPI.md#getseriesremotesearchresults) | **POST** /Items/RemoteSearch/Series | Get series remote search. -[**getTrailerRemoteSearchResults**](ItemLookupAPI.md#gettrailerremotesearchresults) | **POST** /Items/RemoteSearch/Trailer | Get trailer remote search. - - -# **applySearchCriteria** -```swift - open class func applySearchCriteria(itemId: String, applySearchCriteriaRequest: ApplySearchCriteriaRequest, replaceAllImages: Bool? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Applies search criteria to an item and refreshes metadata. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let applySearchCriteriaRequest = ApplySearchCriteria_request(name: "name_example", providerIds: "TODO", productionYear: 123, indexNumber: 123, indexNumberEnd: 123, parentIndexNumber: 123, premiereDate: Date(), imageUrl: "imageUrl_example", searchProviderName: "searchProviderName_example", overview: "overview_example") // ApplySearchCriteriaRequest | The remote search result. -let replaceAllImages = true // Bool | Optional. Whether or not to replace all images. Default: True. (optional) (default to true) - -// Applies search criteria to an item and refreshes metadata. -ItemLookupAPI.applySearchCriteria(itemId: itemId, applySearchCriteriaRequest: applySearchCriteriaRequest, replaceAllImages: replaceAllImages) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **applySearchCriteriaRequest** | [**ApplySearchCriteriaRequest**](ApplySearchCriteriaRequest.md) | The remote search result. | - **replaceAllImages** | **Bool** | Optional. Whether or not to replace all images. Default: True. | [optional] [default to true] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getBookRemoteSearchResults** -```swift - open class func getBookRemoteSearchResults(getBookRemoteSearchResultsRequest: GetBookRemoteSearchResultsRequest, completion: @escaping (_ data: [RemoteSearchResult]?, _ error: Error?) -> Void) -``` - -Get book remote search. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let getBookRemoteSearchResultsRequest = GetBookRemoteSearchResults_request(searchInfo: BookInfoRemoteSearchQuery_SearchInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false, seriesName: "seriesName_example"), itemId: "itemId_example", searchProviderName: "searchProviderName_example", includeDisabledProviders: false) // GetBookRemoteSearchResultsRequest | Remote search query. - -// Get book remote search. -ItemLookupAPI.getBookRemoteSearchResults(getBookRemoteSearchResultsRequest: getBookRemoteSearchResultsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getBookRemoteSearchResultsRequest** | [**GetBookRemoteSearchResultsRequest**](GetBookRemoteSearchResultsRequest.md) | Remote search query. | - -### Return type - -[**[RemoteSearchResult]**](RemoteSearchResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getBoxSetRemoteSearchResults** -```swift - open class func getBoxSetRemoteSearchResults(getBoxSetRemoteSearchResultsRequest: GetBoxSetRemoteSearchResultsRequest, completion: @escaping (_ data: [RemoteSearchResult]?, _ error: Error?) -> Void) -``` - -Get box set remote search. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let getBoxSetRemoteSearchResultsRequest = GetBoxSetRemoteSearchResults_request(searchInfo: BoxSetInfoRemoteSearchQuery_SearchInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false), itemId: "itemId_example", searchProviderName: "searchProviderName_example", includeDisabledProviders: false) // GetBoxSetRemoteSearchResultsRequest | Remote search query. - -// Get box set remote search. -ItemLookupAPI.getBoxSetRemoteSearchResults(getBoxSetRemoteSearchResultsRequest: getBoxSetRemoteSearchResultsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getBoxSetRemoteSearchResultsRequest** | [**GetBoxSetRemoteSearchResultsRequest**](GetBoxSetRemoteSearchResultsRequest.md) | Remote search query. | - -### Return type - -[**[RemoteSearchResult]**](RemoteSearchResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getExternalIdInfos** -```swift - open class func getExternalIdInfos(itemId: String, completion: @escaping (_ data: [ExternalIdInfo]?, _ error: Error?) -> Void) -``` - -Get the item's external id info. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. - -// Get the item's external id info. -ItemLookupAPI.getExternalIdInfos(itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - -### Return type - -[**[ExternalIdInfo]**](ExternalIdInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMovieRemoteSearchResults** -```swift - open class func getMovieRemoteSearchResults(getMovieRemoteSearchResultsRequest: GetMovieRemoteSearchResultsRequest, completion: @escaping (_ data: [RemoteSearchResult]?, _ error: Error?) -> Void) -``` - -Get movie remote search. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let getMovieRemoteSearchResultsRequest = GetMovieRemoteSearchResults_request(searchInfo: MovieInfoRemoteSearchQuery_SearchInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false), itemId: "itemId_example", searchProviderName: "searchProviderName_example", includeDisabledProviders: false) // GetMovieRemoteSearchResultsRequest | Remote search query. - -// Get movie remote search. -ItemLookupAPI.getMovieRemoteSearchResults(getMovieRemoteSearchResultsRequest: getMovieRemoteSearchResultsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getMovieRemoteSearchResultsRequest** | [**GetMovieRemoteSearchResultsRequest**](GetMovieRemoteSearchResultsRequest.md) | Remote search query. | - -### Return type - -[**[RemoteSearchResult]**](RemoteSearchResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMusicAlbumRemoteSearchResults** -```swift - open class func getMusicAlbumRemoteSearchResults(getMusicAlbumRemoteSearchResultsRequest: GetMusicAlbumRemoteSearchResultsRequest, completion: @escaping (_ data: [RemoteSearchResult]?, _ error: Error?) -> Void) -``` - -Get music album remote search. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let getMusicAlbumRemoteSearchResultsRequest = GetMusicAlbumRemoteSearchResults_request(searchInfo: AlbumInfoRemoteSearchQuery_SearchInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false, albumArtists: ["albumArtists_example"], artistProviderIds: "TODO", songInfos: [SongInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false, albumArtists: ["albumArtists_example"], album: "album_example", artists: ["artists_example"])]), itemId: "itemId_example", searchProviderName: "searchProviderName_example", includeDisabledProviders: false) // GetMusicAlbumRemoteSearchResultsRequest | Remote search query. - -// Get music album remote search. -ItemLookupAPI.getMusicAlbumRemoteSearchResults(getMusicAlbumRemoteSearchResultsRequest: getMusicAlbumRemoteSearchResultsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getMusicAlbumRemoteSearchResultsRequest** | [**GetMusicAlbumRemoteSearchResultsRequest**](GetMusicAlbumRemoteSearchResultsRequest.md) | Remote search query. | - -### Return type - -[**[RemoteSearchResult]**](RemoteSearchResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMusicArtistRemoteSearchResults** -```swift - open class func getMusicArtistRemoteSearchResults(getMusicArtistRemoteSearchResultsRequest: GetMusicArtistRemoteSearchResultsRequest, completion: @escaping (_ data: [RemoteSearchResult]?, _ error: Error?) -> Void) -``` - -Get music artist remote search. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let getMusicArtistRemoteSearchResultsRequest = GetMusicArtistRemoteSearchResults_request(searchInfo: ArtistInfoRemoteSearchQuery_SearchInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false, songInfos: [SongInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false, albumArtists: ["albumArtists_example"], album: "album_example", artists: ["artists_example"])]), itemId: "itemId_example", searchProviderName: "searchProviderName_example", includeDisabledProviders: false) // GetMusicArtistRemoteSearchResultsRequest | Remote search query. - -// Get music artist remote search. -ItemLookupAPI.getMusicArtistRemoteSearchResults(getMusicArtistRemoteSearchResultsRequest: getMusicArtistRemoteSearchResultsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getMusicArtistRemoteSearchResultsRequest** | [**GetMusicArtistRemoteSearchResultsRequest**](GetMusicArtistRemoteSearchResultsRequest.md) | Remote search query. | - -### Return type - -[**[RemoteSearchResult]**](RemoteSearchResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMusicVideoRemoteSearchResults** -```swift - open class func getMusicVideoRemoteSearchResults(getMusicVideoRemoteSearchResultsRequest: GetMusicVideoRemoteSearchResultsRequest, completion: @escaping (_ data: [RemoteSearchResult]?, _ error: Error?) -> Void) -``` - -Get music video remote search. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let getMusicVideoRemoteSearchResultsRequest = GetMusicVideoRemoteSearchResults_request(searchInfo: MusicVideoInfoRemoteSearchQuery_SearchInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false, artists: ["artists_example"]), itemId: "itemId_example", searchProviderName: "searchProviderName_example", includeDisabledProviders: false) // GetMusicVideoRemoteSearchResultsRequest | Remote search query. - -// Get music video remote search. -ItemLookupAPI.getMusicVideoRemoteSearchResults(getMusicVideoRemoteSearchResultsRequest: getMusicVideoRemoteSearchResultsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getMusicVideoRemoteSearchResultsRequest** | [**GetMusicVideoRemoteSearchResultsRequest**](GetMusicVideoRemoteSearchResultsRequest.md) | Remote search query. | - -### Return type - -[**[RemoteSearchResult]**](RemoteSearchResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPersonRemoteSearchResults** -```swift - open class func getPersonRemoteSearchResults(getPersonRemoteSearchResultsRequest: GetPersonRemoteSearchResultsRequest, completion: @escaping (_ data: [RemoteSearchResult]?, _ error: Error?) -> Void) -``` - -Get person remote search. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let getPersonRemoteSearchResultsRequest = GetPersonRemoteSearchResults_request(searchInfo: PersonLookupInfoRemoteSearchQuery_SearchInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false), itemId: "itemId_example", searchProviderName: "searchProviderName_example", includeDisabledProviders: false) // GetPersonRemoteSearchResultsRequest | Remote search query. - -// Get person remote search. -ItemLookupAPI.getPersonRemoteSearchResults(getPersonRemoteSearchResultsRequest: getPersonRemoteSearchResultsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getPersonRemoteSearchResultsRequest** | [**GetPersonRemoteSearchResultsRequest**](GetPersonRemoteSearchResultsRequest.md) | Remote search query. | - -### Return type - -[**[RemoteSearchResult]**](RemoteSearchResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSeriesRemoteSearchResults** -```swift - open class func getSeriesRemoteSearchResults(getSeriesRemoteSearchResultsRequest: GetSeriesRemoteSearchResultsRequest, completion: @escaping (_ data: [RemoteSearchResult]?, _ error: Error?) -> Void) -``` - -Get series remote search. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let getSeriesRemoteSearchResultsRequest = GetSeriesRemoteSearchResults_request(searchInfo: SeriesInfoRemoteSearchQuery_SearchInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false), itemId: "itemId_example", searchProviderName: "searchProviderName_example", includeDisabledProviders: false) // GetSeriesRemoteSearchResultsRequest | Remote search query. - -// Get series remote search. -ItemLookupAPI.getSeriesRemoteSearchResults(getSeriesRemoteSearchResultsRequest: getSeriesRemoteSearchResultsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getSeriesRemoteSearchResultsRequest** | [**GetSeriesRemoteSearchResultsRequest**](GetSeriesRemoteSearchResultsRequest.md) | Remote search query. | - -### Return type - -[**[RemoteSearchResult]**](RemoteSearchResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getTrailerRemoteSearchResults** -```swift - open class func getTrailerRemoteSearchResults(getTrailerRemoteSearchResultsRequest: GetTrailerRemoteSearchResultsRequest, completion: @escaping (_ data: [RemoteSearchResult]?, _ error: Error?) -> Void) -``` - -Get trailer remote search. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let getTrailerRemoteSearchResultsRequest = GetTrailerRemoteSearchResults_request(searchInfo: TrailerInfoRemoteSearchQuery_SearchInfo(name: "name_example", originalTitle: "originalTitle_example", path: "path_example", metadataLanguage: "metadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", providerIds: "TODO", year: 123, indexNumber: 123, parentIndexNumber: 123, premiereDate: Date(), isAutomated: false), itemId: "itemId_example", searchProviderName: "searchProviderName_example", includeDisabledProviders: false) // GetTrailerRemoteSearchResultsRequest | Remote search query. - -// Get trailer remote search. -ItemLookupAPI.getTrailerRemoteSearchResults(getTrailerRemoteSearchResultsRequest: getTrailerRemoteSearchResultsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getTrailerRemoteSearchResultsRequest** | [**GetTrailerRemoteSearchResultsRequest**](GetTrailerRemoteSearchResultsRequest.md) | Remote search query. | - -### Return type - -[**[RemoteSearchResult]**](RemoteSearchResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ItemRefreshAPI.md b/docs/ItemRefreshAPI.md deleted file mode 100644 index c445d1424..000000000 --- a/docs/ItemRefreshAPI.md +++ /dev/null @@ -1,65 +0,0 @@ -# ItemRefreshAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**refreshItem**](ItemRefreshAPI.md#refreshitem) | **POST** /Items/{itemId}/Refresh | Refreshes metadata for an item. - - -# **refreshItem** -```swift - open class func refreshItem(itemId: String, metadataRefreshMode: MetadataRefreshMode? = nil, imageRefreshMode: MetadataRefreshMode? = nil, replaceAllMetadata: Bool? = nil, replaceAllImages: Bool? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Refreshes metadata for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item id. -let metadataRefreshMode = MetadataRefreshMode() // MetadataRefreshMode | (Optional) Specifies the metadata refresh mode. (optional) -let imageRefreshMode = MetadataRefreshMode() // MetadataRefreshMode | (Optional) Specifies the image refresh mode. (optional) -let replaceAllMetadata = true // Bool | (Optional) Determines if metadata should be replaced. Only applicable if mode is FullRefresh. (optional) (default to false) -let replaceAllImages = true // Bool | (Optional) Determines if images should be replaced. Only applicable if mode is FullRefresh. (optional) (default to false) - -// Refreshes metadata for an item. -ItemRefreshAPI.refreshItem(itemId: itemId, metadataRefreshMode: metadataRefreshMode, imageRefreshMode: imageRefreshMode, replaceAllMetadata: replaceAllMetadata, replaceAllImages: replaceAllImages) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item id. | - **metadataRefreshMode** | [**MetadataRefreshMode**](.md) | (Optional) Specifies the metadata refresh mode. | [optional] - **imageRefreshMode** | [**MetadataRefreshMode**](.md) | (Optional) Specifies the image refresh mode. | [optional] - **replaceAllMetadata** | **Bool** | (Optional) Determines if metadata should be replaced. Only applicable if mode is FullRefresh. | [optional] [default to false] - **replaceAllImages** | **Bool** | (Optional) Determines if images should be replaced. Only applicable if mode is FullRefresh. | [optional] [default to false] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ItemUpdateAPI.md b/docs/ItemUpdateAPI.md deleted file mode 100644 index cc33ff3a3..000000000 --- a/docs/ItemUpdateAPI.md +++ /dev/null @@ -1,159 +0,0 @@ -# ItemUpdateAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getMetadataEditorInfo**](ItemUpdateAPI.md#getmetadataeditorinfo) | **GET** /Items/{itemId}/MetadataEditor | Gets metadata editor info for an item. -[**updateItem**](ItemUpdateAPI.md#updateitem) | **POST** /Items/{itemId} | Updates an item. -[**updateItemContentType**](ItemUpdateAPI.md#updateitemcontenttype) | **POST** /Items/{itemId}/ContentType | Updates an item's content type. - - -# **getMetadataEditorInfo** -```swift - open class func getMetadataEditorInfo(itemId: String, completion: @escaping (_ data: MetadataEditorInfo?, _ error: Error?) -> Void) -``` - -Gets metadata editor info for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. - -// Gets metadata editor info for an item. -ItemUpdateAPI.getMetadataEditorInfo(itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - -### Return type - -[**MetadataEditorInfo**](MetadataEditorInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateItem** -```swift - open class func updateItem(itemId: String, updateItemRequest: UpdateItemRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let updateItemRequest = UpdateItem_request(name: "name_example", originalTitle: "originalTitle_example", serverId: "serverId_example", id: "id_example", etag: "etag_example", sourceType: "sourceType_example", playlistItemId: "playlistItemId_example", dateCreated: Date(), dateLastMediaAdded: Date(), extraType: "extraType_example", airsBeforeSeasonNumber: 123, airsAfterSeasonNumber: 123, airsBeforeEpisodeNumber: 123, canDelete: false, canDownload: false, hasSubtitles: false, preferredMetadataLanguage: "preferredMetadataLanguage_example", preferredMetadataCountryCode: "preferredMetadataCountryCode_example", supportsSync: false, container: "container_example", sortName: "sortName_example", forcedSortName: "forcedSortName_example", video3DFormat: Video3DFormat(), premiereDate: Date(), externalUrls: [ExternalUrl(name: "name_example", url: "url_example")], mediaSources: [MediaSourceInfo(_protocol: MediaProtocol(), id: "id_example", path: "path_example", encoderPath: "encoderPath_example", encoderProtocol: nil, type: MediaSourceType(), container: "container_example", size: 123, name: "name_example", isRemote: false, eTag: "eTag_example", runTimeTicks: 123, readAtNativeFramerate: false, ignoreDts: false, ignoreIndex: false, genPtsInput: false, supportsTranscoding: false, supportsDirectStream: false, supportsDirectPlay: false, isInfiniteStream: false, requiresOpening: false, openToken: "openToken_example", requiresClosing: false, liveStreamId: "liveStreamId_example", bufferMs: 123, requiresLooping: false, supportsProbing: false, videoType: VideoType(), isoType: IsoType(), video3DFormat: nil, mediaStreams: [MediaStream(codec: "codec_example", codecTag: "codecTag_example", language: "language_example", colorRange: "colorRange_example", colorSpace: "colorSpace_example", colorTransfer: "colorTransfer_example", colorPrimaries: "colorPrimaries_example", comment: "comment_example", timeBase: "timeBase_example", codecTimeBase: "codecTimeBase_example", title: "title_example", videoRange: "videoRange_example", localizedUndefined: "localizedUndefined_example", localizedDefault: "localizedDefault_example", localizedForced: "localizedForced_example", localizedExternal: "localizedExternal_example", displayTitle: "displayTitle_example", nalLengthSize: "nalLengthSize_example", isInterlaced: false, isAVC: false, channelLayout: "channelLayout_example", bitRate: 123, bitDepth: 123, refFrames: 123, packetLength: 123, channels: 123, sampleRate: 123, isDefault: false, isForced: false, height: 123, width: 123, averageFrameRate: 123, realFrameRate: 123, profile: "profile_example", type: MediaStreamType(), aspectRatio: "aspectRatio_example", index: 123, score: 123, isExternal: false, deliveryMethod: SubtitleDeliveryMethod(), deliveryUrl: "deliveryUrl_example", isExternalUrl: false, isTextSubtitleStream: false, supportsExternalStream: false, path: "path_example", pixelFormat: "pixelFormat_example", level: 123, isAnamorphic: false)], mediaAttachments: [MediaAttachment(codec: "codec_example", codecTag: "codecTag_example", comment: "comment_example", index: 123, fileName: "fileName_example", mimeType: "mimeType_example", deliveryUrl: "deliveryUrl_example")], formats: ["formats_example"], bitrate: 123, timestamp: TransportStreamTimestamp(), requiredHttpHeaders: "TODO", transcodingUrl: "transcodingUrl_example", transcodingSubProtocol: "transcodingSubProtocol_example", transcodingContainer: "transcodingContainer_example", analyzeDurationMs: 123, defaultAudioStreamIndex: 123, defaultSubtitleStreamIndex: 123)], criticRating: 123, productionLocations: ["productionLocations_example"], path: "path_example", enableMediaSourceDisplay: false, officialRating: "officialRating_example", customRating: "customRating_example", channelId: "channelId_example", channelName: "channelName_example", overview: "overview_example", taglines: ["taglines_example"], genres: ["genres_example"], communityRating: 123, cumulativeRunTimeTicks: 123, runTimeTicks: 123, playAccess: PlayAccess(), aspectRatio: "aspectRatio_example", productionYear: 123, isPlaceHolder: false, number: "number_example", channelNumber: "channelNumber_example", indexNumber: 123, indexNumberEnd: 123, parentIndexNumber: 123, remoteTrailers: [MediaUrl(url: "url_example", name: "name_example")], providerIds: "TODO", isHD: false, isFolder: false, parentId: "parentId_example", type: BaseItemKind(), people: [BaseItemPerson(name: "name_example", id: "id_example", role: "role_example", type: "type_example", primaryImageTag: "primaryImageTag_example", imageBlurHashes: BaseItemPerson_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"))], studios: [NameGuidPair(name: "name_example", id: "id_example")], genreItems: [nil], parentLogoItemId: "parentLogoItemId_example", parentBackdropItemId: "parentBackdropItemId_example", parentBackdropImageTags: ["parentBackdropImageTags_example"], localTrailerCount: 123, userData: BaseItemDto_UserData(rating: 123, playedPercentage: 123, unplayedItemCount: 123, playbackPositionTicks: 123, playCount: 123, isFavorite: false, likes: false, lastPlayedDate: Date(), played: false, key: "key_example", itemId: "itemId_example"), recursiveItemCount: 123, childCount: 123, seriesName: "seriesName_example", seriesId: "seriesId_example", seasonId: "seasonId_example", specialFeatureCount: 123, displayPreferencesId: "displayPreferencesId_example", status: "status_example", airTime: "airTime_example", airDays: [DayOfWeek()], tags: ["tags_example"], primaryImageAspectRatio: 123, artists: ["artists_example"], artistItems: [nil], album: "album_example", collectionType: "collectionType_example", displayOrder: "displayOrder_example", albumId: "albumId_example", albumPrimaryImageTag: "albumPrimaryImageTag_example", seriesPrimaryImageTag: "seriesPrimaryImageTag_example", albumArtist: "albumArtist_example", albumArtists: [nil], seasonName: "seasonName_example", mediaStreams: [nil], videoType: nil, partCount: 123, mediaSourceCount: 123, imageTags: "TODO", backdropImageTags: ["backdropImageTags_example"], screenshotImageTags: ["screenshotImageTags_example"], parentLogoImageTag: "parentLogoImageTag_example", parentArtItemId: "parentArtItemId_example", parentArtImageTag: "parentArtImageTag_example", seriesThumbImageTag: "seriesThumbImageTag_example", imageBlurHashes: BaseItemDto_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"), seriesStudio: "seriesStudio_example", parentThumbItemId: "parentThumbItemId_example", parentThumbImageTag: "parentThumbImageTag_example", parentPrimaryImageItemId: "parentPrimaryImageItemId_example", parentPrimaryImageTag: "parentPrimaryImageTag_example", chapters: [ChapterInfo(startPositionTicks: 123, name: "name_example", imagePath: "imagePath_example", imageDateModified: Date(), imageTag: "imageTag_example")], locationType: LocationType(), isoType: nil, mediaType: "mediaType_example", endDate: Date(), lockedFields: [MetadataField()], trailerCount: 123, movieCount: 123, seriesCount: 123, programCount: 123, episodeCount: 123, songCount: 123, albumCount: 123, artistCount: 123, musicVideoCount: 123, lockData: false, width: 123, height: 123, cameraMake: "cameraMake_example", cameraModel: "cameraModel_example", software: "software_example", exposureTime: 123, focalLength: 123, imageOrientation: ImageOrientation(), aperture: 123, shutterSpeed: 123, latitude: 123, longitude: 123, altitude: 123, isoSpeedRating: 123, seriesTimerId: "seriesTimerId_example", programId: "programId_example", channelPrimaryImageTag: "channelPrimaryImageTag_example", startDate: Date(), completionPercentage: 123, isRepeat: false, episodeTitle: "episodeTitle_example", channelType: ChannelType(), audio: ProgramAudio(), isMovie: false, isSports: false, isSeries: false, isLive: false, isNews: false, isKids: false, isPremiere: false, timerId: "timerId_example") // UpdateItemRequest | The new item properties. - -// Updates an item. -ItemUpdateAPI.updateItem(itemId: itemId, updateItemRequest: updateItemRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **updateItemRequest** | [**UpdateItemRequest**](UpdateItemRequest.md) | The new item properties. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateItemContentType** -```swift - open class func updateItemContentType(itemId: String, contentType: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates an item's content type. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let contentType = "contentType_example" // String | The content type of the item. (optional) - -// Updates an item's content type. -ItemUpdateAPI.updateItemContentType(itemId: itemId, contentType: contentType) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **contentType** | **String** | The content type of the item. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ItemsAPI.md b/docs/ItemsAPI.md deleted file mode 100644 index eb6b697b8..000000000 --- a/docs/ItemsAPI.md +++ /dev/null @@ -1,519 +0,0 @@ -# ItemsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getItems**](ItemsAPI.md#getitems) | **GET** /Items | Gets items based on a query. -[**getItemsByUserId**](ItemsAPI.md#getitemsbyuserid) | **GET** /Users/{userId}/Items | Gets items based on a query. -[**getResumeItems**](ItemsAPI.md#getresumeitems) | **GET** /Users/{userId}/Items/Resume | Gets items based on a query. - - -# **getItems** -```swift - open class func getItems(userId: String? = nil, maxOfficialRating: String? = nil, hasThemeSong: Bool? = nil, hasThemeVideo: Bool? = nil, hasSubtitles: Bool? = nil, hasSpecialFeature: Bool? = nil, hasTrailer: Bool? = nil, adjacentTo: String? = nil, parentIndexNumber: Int? = nil, hasParentalRating: Bool? = nil, isHd: Bool? = nil, is4K: Bool? = nil, locationTypes: [LocationType]? = nil, excludeLocationTypes: [LocationType]? = nil, isMissing: Bool? = nil, isUnaired: Bool? = nil, minCommunityRating: Double? = nil, minCriticRating: Double? = nil, minPremiereDate: Date? = nil, minDateLastSaved: Date? = nil, minDateLastSavedForUser: Date? = nil, maxPremiereDate: Date? = nil, hasOverview: Bool? = nil, hasImdbId: Bool? = nil, hasTmdbId: Bool? = nil, hasTvdbId: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, excludeItemIds: [String]? = nil, startIndex: Int? = nil, limit: Int? = nil, recursive: Bool? = nil, searchTerm: String? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, imageTypes: [ImageType]? = nil, sortBy: [String]? = nil, isPlayed: Bool? = nil, genres: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, artists: [String]? = nil, excludeArtistIds: [String]? = nil, artistIds: [String]? = nil, albumArtistIds: [String]? = nil, contributingArtistIds: [String]? = nil, albums: [String]? = nil, albumIds: [String]? = nil, ids: [String]? = nil, videoTypes: [VideoType]? = nil, minOfficialRating: String? = nil, isLocked: Bool? = nil, isPlaceHolder: Bool? = nil, hasOfficialRating: Bool? = nil, collapseBoxSetItems: Bool? = nil, minWidth: Int? = nil, minHeight: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, is3D: Bool? = nil, seriesStatus: [SeriesStatus]? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, studioIds: [String]? = nil, genreIds: [String]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets items based on a query. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id supplied as query parameter. (optional) -let maxOfficialRating = "maxOfficialRating_example" // String | Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). (optional) -let hasThemeSong = true // Bool | Optional filter by items with theme songs. (optional) -let hasThemeVideo = true // Bool | Optional filter by items with theme videos. (optional) -let hasSubtitles = true // Bool | Optional filter by items with subtitles. (optional) -let hasSpecialFeature = true // Bool | Optional filter by items with special features. (optional) -let hasTrailer = true // Bool | Optional filter by items with trailers. (optional) -let adjacentTo = "adjacentTo_example" // String | Optional. Return items that are siblings of a supplied item. (optional) -let parentIndexNumber = 987 // Int | Optional filter by parent index number. (optional) -let hasParentalRating = true // Bool | Optional filter by items that have or do not have a parental rating. (optional) -let isHd = true // Bool | Optional filter by items that are HD or not. (optional) -let is4K = true // Bool | Optional filter by items that are 4K or not. (optional) -let locationTypes = [LocationType()] // [LocationType] | Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. (optional) -let excludeLocationTypes = [LocationType()] // [LocationType] | Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. (optional) -let isMissing = true // Bool | Optional filter by items that are missing episodes or not. (optional) -let isUnaired = true // Bool | Optional filter by items that are unaired episodes or not. (optional) -let minCommunityRating = 987 // Double | Optional filter by minimum community rating. (optional) -let minCriticRating = 987 // Double | Optional filter by minimum critic rating. (optional) -let minPremiereDate = Date() // Date | Optional. The minimum premiere date. Format = ISO. (optional) -let minDateLastSaved = Date() // Date | Optional. The minimum last saved date. Format = ISO. (optional) -let minDateLastSavedForUser = Date() // Date | Optional. The minimum last saved date for the current user. Format = ISO. (optional) -let maxPremiereDate = Date() // Date | Optional. The maximum premiere date. Format = ISO. (optional) -let hasOverview = true // Bool | Optional filter by items that have an overview or not. (optional) -let hasImdbId = true // Bool | Optional filter by items that have an imdb id or not. (optional) -let hasTmdbId = true // Bool | Optional filter by items that have a tmdb id or not. (optional) -let hasTvdbId = true // Bool | Optional filter by items that have a tvdb id or not. (optional) -let isMovie = true // Bool | Optional filter for live tv movies. (optional) -let isSeries = true // Bool | Optional filter for live tv series. (optional) -let isNews = true // Bool | Optional filter for live tv news. (optional) -let isKids = true // Bool | Optional filter for live tv kids. (optional) -let isSports = true // Bool | Optional filter for live tv sports. (optional) -let excludeItemIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. (optional) -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 recursive = true // Bool | When searching within folders, this determines whether or not the search will be recursive. true/false. (optional) -let searchTerm = "searchTerm_example" // String | Optional. Filter based on a search term. (optional) -let sortOrder = [SortOrder()] // [SortOrder] | Sort Order - Ascending,Descending. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. (optional) -let filters = [ItemFilter()] // [ItemFilter] | Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. (optional) -let isFavorite = true // Bool | Optional filter by items that are marked as favorite, or not. (optional) -let mediaTypes = ["inner_example"] // [String] | Optional filter by MediaType. Allows multiple, comma delimited. (optional) -let imageTypes = [ImageType()] // [ImageType] | Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. (optional) -let sortBy = ["inner_example"] // [String] | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) -let isPlayed = true // Bool | Optional filter by items that are played, or not. (optional) -let genres = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) -let officialRatings = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) -let tags = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) -let years = [123] // [Int] | Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) -let enableUserData = true // Bool | Optional, include user data. (optional) -let imageTypeLimit = 987 // Int | Optional, the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let person = "person_example" // String | Optional. If specified, results will be filtered to include only those containing the specified person. (optional) -let personIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified person id. (optional) -let personTypes = ["inner_example"] // [String] | Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) -let studios = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) -let artists = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. (optional) -let excludeArtistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. (optional) -let artistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified artist id. (optional) -let albumArtistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified album artist id. (optional) -let contributingArtistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. (optional) -let albums = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. (optional) -let albumIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. (optional) -let ids = ["inner_example"] // [String] | Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. (optional) -let videoTypes = [VideoType()] // [VideoType] | Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. (optional) -let minOfficialRating = "minOfficialRating_example" // String | Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). (optional) -let isLocked = true // Bool | Optional filter by items that are locked. (optional) -let isPlaceHolder = true // Bool | Optional filter by items that are placeholders. (optional) -let hasOfficialRating = true // Bool | Optional filter by items that have official ratings. (optional) -let collapseBoxSetItems = true // Bool | Whether or not to hide items behind their boxsets. (optional) -let minWidth = 987 // Int | Optional. Filter by the minimum width of the item. (optional) -let minHeight = 987 // Int | Optional. Filter by the minimum height of the item. (optional) -let maxWidth = 987 // Int | Optional. Filter by the maximum width of the item. (optional) -let maxHeight = 987 // Int | Optional. Filter by the maximum height of the item. (optional) -let is3D = true // Bool | Optional filter by items that are 3D, or not. (optional) -let seriesStatus = [SeriesStatus()] // [SeriesStatus] | Optional filter by Series Status. Allows multiple, comma delimited. (optional) -let nameStartsWithOrGreater = "nameStartsWithOrGreater_example" // String | Optional filter by items whose name is sorted equally or greater than a given input string. (optional) -let nameStartsWith = "nameStartsWith_example" // String | Optional filter by items whose name is sorted equally than a given input string. (optional) -let nameLessThan = "nameLessThan_example" // String | Optional filter by items whose name is equally or lesser than a given input string. (optional) -let studioIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) -let genreIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) -let enableTotalRecordCount = true // Bool | Optional. Enable the total record count. (optional) (default to true) -let enableImages = true // Bool | Optional, include image information in output. (optional) (default to true) - -// Gets items based on a query. -ItemsAPI.getItems(userId: userId, maxOfficialRating: maxOfficialRating, hasThemeSong: hasThemeSong, hasThemeVideo: hasThemeVideo, hasSubtitles: hasSubtitles, hasSpecialFeature: hasSpecialFeature, hasTrailer: hasTrailer, adjacentTo: adjacentTo, parentIndexNumber: parentIndexNumber, hasParentalRating: hasParentalRating, isHd: isHd, is4K: is4K, locationTypes: locationTypes, excludeLocationTypes: excludeLocationTypes, isMissing: isMissing, isUnaired: isUnaired, minCommunityRating: minCommunityRating, minCriticRating: minCriticRating, minPremiereDate: minPremiereDate, minDateLastSaved: minDateLastSaved, minDateLastSavedForUser: minDateLastSavedForUser, maxPremiereDate: maxPremiereDate, hasOverview: hasOverview, hasImdbId: hasImdbId, hasTmdbId: hasTmdbId, hasTvdbId: hasTvdbId, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, excludeItemIds: excludeItemIds, startIndex: startIndex, limit: limit, recursive: recursive, searchTerm: searchTerm, sortOrder: sortOrder, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, filters: filters, isFavorite: isFavorite, mediaTypes: mediaTypes, imageTypes: imageTypes, sortBy: sortBy, isPlayed: isPlayed, genres: genres, officialRatings: officialRatings, tags: tags, years: years, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, person: person, personIds: personIds, personTypes: personTypes, studios: studios, artists: artists, excludeArtistIds: excludeArtistIds, artistIds: artistIds, albumArtistIds: albumArtistIds, contributingArtistIds: contributingArtistIds, albums: albums, albumIds: albumIds, ids: ids, videoTypes: videoTypes, minOfficialRating: minOfficialRating, isLocked: isLocked, isPlaceHolder: isPlaceHolder, hasOfficialRating: hasOfficialRating, collapseBoxSetItems: collapseBoxSetItems, minWidth: minWidth, minHeight: minHeight, maxWidth: maxWidth, maxHeight: maxHeight, is3D: is3D, seriesStatus: seriesStatus, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, studioIds: studioIds, genreIds: genreIds, enableTotalRecordCount: enableTotalRecordCount, enableImages: enableImages) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id supplied as query parameter. | [optional] - **maxOfficialRating** | **String** | Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). | [optional] - **hasThemeSong** | **Bool** | Optional filter by items with theme songs. | [optional] - **hasThemeVideo** | **Bool** | Optional filter by items with theme videos. | [optional] - **hasSubtitles** | **Bool** | Optional filter by items with subtitles. | [optional] - **hasSpecialFeature** | **Bool** | Optional filter by items with special features. | [optional] - **hasTrailer** | **Bool** | Optional filter by items with trailers. | [optional] - **adjacentTo** | **String** | Optional. Return items that are siblings of a supplied item. | [optional] - **parentIndexNumber** | **Int** | Optional filter by parent index number. | [optional] - **hasParentalRating** | **Bool** | Optional filter by items that have or do not have a parental rating. | [optional] - **isHd** | **Bool** | Optional filter by items that are HD or not. | [optional] - **is4K** | **Bool** | Optional filter by items that are 4K or not. | [optional] - **locationTypes** | [**[LocationType]**](LocationType.md) | Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. | [optional] - **excludeLocationTypes** | [**[LocationType]**](LocationType.md) | Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. | [optional] - **isMissing** | **Bool** | Optional filter by items that are missing episodes or not. | [optional] - **isUnaired** | **Bool** | Optional filter by items that are unaired episodes or not. | [optional] - **minCommunityRating** | **Double** | Optional filter by minimum community rating. | [optional] - **minCriticRating** | **Double** | Optional filter by minimum critic rating. | [optional] - **minPremiereDate** | **Date** | Optional. The minimum premiere date. Format = ISO. | [optional] - **minDateLastSaved** | **Date** | Optional. The minimum last saved date. Format = ISO. | [optional] - **minDateLastSavedForUser** | **Date** | Optional. The minimum last saved date for the current user. Format = ISO. | [optional] - **maxPremiereDate** | **Date** | Optional. The maximum premiere date. Format = ISO. | [optional] - **hasOverview** | **Bool** | Optional filter by items that have an overview or not. | [optional] - **hasImdbId** | **Bool** | Optional filter by items that have an imdb id or not. | [optional] - **hasTmdbId** | **Bool** | Optional filter by items that have a tmdb id or not. | [optional] - **hasTvdbId** | **Bool** | Optional filter by items that have a tvdb id or not. | [optional] - **isMovie** | **Bool** | Optional filter for live tv movies. | [optional] - **isSeries** | **Bool** | Optional filter for live tv series. | [optional] - **isNews** | **Bool** | Optional filter for live tv news. | [optional] - **isKids** | **Bool** | Optional filter for live tv kids. | [optional] - **isSports** | **Bool** | Optional filter for live tv sports. | [optional] - **excludeItemIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. | [optional] - **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] - **recursive** | **Bool** | When searching within folders, this determines whether or not the search will be recursive. true/false. | [optional] - **searchTerm** | **String** | Optional. Filter based on a search term. | [optional] - **sortOrder** | [**[SortOrder]**](SortOrder.md) | Sort Order - Ascending,Descending. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. | [optional] - **filters** | [**[ItemFilter]**](ItemFilter.md) | Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. | [optional] - **isFavorite** | **Bool** | Optional filter by items that are marked as favorite, or not. | [optional] - **mediaTypes** | [**[String]**](String.md) | Optional filter by MediaType. Allows multiple, comma delimited. | [optional] - **imageTypes** | [**[ImageType]**](ImageType.md) | Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. | [optional] - **sortBy** | [**[String]**](String.md) | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. | [optional] - **isPlayed** | **Bool** | Optional filter by items that are played, or not. | [optional] - **genres** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. | [optional] - **officialRatings** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. | [optional] - **tags** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. | [optional] - **years** | [**[Int]**](Int.md) | Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. | [optional] - **enableUserData** | **Bool** | Optional, include user data. | [optional] - **imageTypeLimit** | **Int** | Optional, the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **person** | **String** | Optional. If specified, results will be filtered to include only those containing the specified person. | [optional] - **personIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified person id. | [optional] - **personTypes** | [**[String]**](String.md) | Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. | [optional] - **studios** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. | [optional] - **artists** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. | [optional] - **excludeArtistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. | [optional] - **artistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified artist id. | [optional] - **albumArtistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified album artist id. | [optional] - **contributingArtistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. | [optional] - **albums** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. | [optional] - **albumIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. | [optional] - **ids** | [**[String]**](String.md) | Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. | [optional] - **videoTypes** | [**[VideoType]**](VideoType.md) | Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. | [optional] - **minOfficialRating** | **String** | Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). | [optional] - **isLocked** | **Bool** | Optional filter by items that are locked. | [optional] - **isPlaceHolder** | **Bool** | Optional filter by items that are placeholders. | [optional] - **hasOfficialRating** | **Bool** | Optional filter by items that have official ratings. | [optional] - **collapseBoxSetItems** | **Bool** | Whether or not to hide items behind their boxsets. | [optional] - **minWidth** | **Int** | Optional. Filter by the minimum width of the item. | [optional] - **minHeight** | **Int** | Optional. Filter by the minimum height of the item. | [optional] - **maxWidth** | **Int** | Optional. Filter by the maximum width of the item. | [optional] - **maxHeight** | **Int** | Optional. Filter by the maximum height of the item. | [optional] - **is3D** | **Bool** | Optional filter by items that are 3D, or not. | [optional] - **seriesStatus** | [**[SeriesStatus]**](SeriesStatus.md) | Optional filter by Series Status. Allows multiple, comma delimited. | [optional] - **nameStartsWithOrGreater** | **String** | Optional filter by items whose name is sorted equally or greater than a given input string. | [optional] - **nameStartsWith** | **String** | Optional filter by items whose name is sorted equally than a given input string. | [optional] - **nameLessThan** | **String** | Optional filter by items whose name is equally or lesser than a given input string. | [optional] - **studioIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. | [optional] - **genreIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. | [optional] - **enableTotalRecordCount** | **Bool** | Optional. Enable the total record count. | [optional] [default to true] - **enableImages** | **Bool** | Optional, include image information in output. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getItemsByUserId** -```swift - open class func getItemsByUserId(userId: String, maxOfficialRating: String? = nil, hasThemeSong: Bool? = nil, hasThemeVideo: Bool? = nil, hasSubtitles: Bool? = nil, hasSpecialFeature: Bool? = nil, hasTrailer: Bool? = nil, adjacentTo: String? = nil, parentIndexNumber: Int? = nil, hasParentalRating: Bool? = nil, isHd: Bool? = nil, is4K: Bool? = nil, locationTypes: [LocationType]? = nil, excludeLocationTypes: [LocationType]? = nil, isMissing: Bool? = nil, isUnaired: Bool? = nil, minCommunityRating: Double? = nil, minCriticRating: Double? = nil, minPremiereDate: Date? = nil, minDateLastSaved: Date? = nil, minDateLastSavedForUser: Date? = nil, maxPremiereDate: Date? = nil, hasOverview: Bool? = nil, hasImdbId: Bool? = nil, hasTmdbId: Bool? = nil, hasTvdbId: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, excludeItemIds: [String]? = nil, startIndex: Int? = nil, limit: Int? = nil, recursive: Bool? = nil, searchTerm: String? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, imageTypes: [ImageType]? = nil, sortBy: [String]? = nil, isPlayed: Bool? = nil, genres: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, artists: [String]? = nil, excludeArtistIds: [String]? = nil, artistIds: [String]? = nil, albumArtistIds: [String]? = nil, contributingArtistIds: [String]? = nil, albums: [String]? = nil, albumIds: [String]? = nil, ids: [String]? = nil, videoTypes: [VideoType]? = nil, minOfficialRating: String? = nil, isLocked: Bool? = nil, isPlaceHolder: Bool? = nil, hasOfficialRating: Bool? = nil, collapseBoxSetItems: Bool? = nil, minWidth: Int? = nil, minHeight: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, is3D: Bool? = nil, seriesStatus: [SeriesStatus]? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, studioIds: [String]? = nil, genreIds: [String]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets items based on a query. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id supplied as query parameter. -let maxOfficialRating = "maxOfficialRating_example" // String | Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). (optional) -let hasThemeSong = true // Bool | Optional filter by items with theme songs. (optional) -let hasThemeVideo = true // Bool | Optional filter by items with theme videos. (optional) -let hasSubtitles = true // Bool | Optional filter by items with subtitles. (optional) -let hasSpecialFeature = true // Bool | Optional filter by items with special features. (optional) -let hasTrailer = true // Bool | Optional filter by items with trailers. (optional) -let adjacentTo = "adjacentTo_example" // String | Optional. Return items that are siblings of a supplied item. (optional) -let parentIndexNumber = 987 // Int | Optional filter by parent index number. (optional) -let hasParentalRating = true // Bool | Optional filter by items that have or do not have a parental rating. (optional) -let isHd = true // Bool | Optional filter by items that are HD or not. (optional) -let is4K = true // Bool | Optional filter by items that are 4K or not. (optional) -let locationTypes = [LocationType()] // [LocationType] | Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. (optional) -let excludeLocationTypes = [LocationType()] // [LocationType] | Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. (optional) -let isMissing = true // Bool | Optional filter by items that are missing episodes or not. (optional) -let isUnaired = true // Bool | Optional filter by items that are unaired episodes or not. (optional) -let minCommunityRating = 987 // Double | Optional filter by minimum community rating. (optional) -let minCriticRating = 987 // Double | Optional filter by minimum critic rating. (optional) -let minPremiereDate = Date() // Date | Optional. The minimum premiere date. Format = ISO. (optional) -let minDateLastSaved = Date() // Date | Optional. The minimum last saved date. Format = ISO. (optional) -let minDateLastSavedForUser = Date() // Date | Optional. The minimum last saved date for the current user. Format = ISO. (optional) -let maxPremiereDate = Date() // Date | Optional. The maximum premiere date. Format = ISO. (optional) -let hasOverview = true // Bool | Optional filter by items that have an overview or not. (optional) -let hasImdbId = true // Bool | Optional filter by items that have an imdb id or not. (optional) -let hasTmdbId = true // Bool | Optional filter by items that have a tmdb id or not. (optional) -let hasTvdbId = true // Bool | Optional filter by items that have a tvdb id or not. (optional) -let isMovie = true // Bool | Optional filter for live tv movies. (optional) -let isSeries = true // Bool | Optional filter for live tv series. (optional) -let isNews = true // Bool | Optional filter for live tv news. (optional) -let isKids = true // Bool | Optional filter for live tv kids. (optional) -let isSports = true // Bool | Optional filter for live tv sports. (optional) -let excludeItemIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. (optional) -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 recursive = true // Bool | When searching within folders, this determines whether or not the search will be recursive. true/false. (optional) -let searchTerm = "searchTerm_example" // String | Optional. Filter based on a search term. (optional) -let sortOrder = [SortOrder()] // [SortOrder] | Sort Order - Ascending,Descending. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. (optional) -let filters = [ItemFilter()] // [ItemFilter] | Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. (optional) -let isFavorite = true // Bool | Optional filter by items that are marked as favorite, or not. (optional) -let mediaTypes = ["inner_example"] // [String] | Optional filter by MediaType. Allows multiple, comma delimited. (optional) -let imageTypes = [ImageType()] // [ImageType] | Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. (optional) -let sortBy = ["inner_example"] // [String] | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) -let isPlayed = true // Bool | Optional filter by items that are played, or not. (optional) -let genres = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) -let officialRatings = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) -let tags = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) -let years = [123] // [Int] | Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) -let enableUserData = true // Bool | Optional, include user data. (optional) -let imageTypeLimit = 987 // Int | Optional, the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let person = "person_example" // String | Optional. If specified, results will be filtered to include only those containing the specified person. (optional) -let personIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified person id. (optional) -let personTypes = ["inner_example"] // [String] | Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) -let studios = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) -let artists = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. (optional) -let excludeArtistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. (optional) -let artistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified artist id. (optional) -let albumArtistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified album artist id. (optional) -let contributingArtistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. (optional) -let albums = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. (optional) -let albumIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. (optional) -let ids = ["inner_example"] // [String] | Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. (optional) -let videoTypes = [VideoType()] // [VideoType] | Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. (optional) -let minOfficialRating = "minOfficialRating_example" // String | Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). (optional) -let isLocked = true // Bool | Optional filter by items that are locked. (optional) -let isPlaceHolder = true // Bool | Optional filter by items that are placeholders. (optional) -let hasOfficialRating = true // Bool | Optional filter by items that have official ratings. (optional) -let collapseBoxSetItems = true // Bool | Whether or not to hide items behind their boxsets. (optional) -let minWidth = 987 // Int | Optional. Filter by the minimum width of the item. (optional) -let minHeight = 987 // Int | Optional. Filter by the minimum height of the item. (optional) -let maxWidth = 987 // Int | Optional. Filter by the maximum width of the item. (optional) -let maxHeight = 987 // Int | Optional. Filter by the maximum height of the item. (optional) -let is3D = true // Bool | Optional filter by items that are 3D, or not. (optional) -let seriesStatus = [SeriesStatus()] // [SeriesStatus] | Optional filter by Series Status. Allows multiple, comma delimited. (optional) -let nameStartsWithOrGreater = "nameStartsWithOrGreater_example" // String | Optional filter by items whose name is sorted equally or greater than a given input string. (optional) -let nameStartsWith = "nameStartsWith_example" // String | Optional filter by items whose name is sorted equally than a given input string. (optional) -let nameLessThan = "nameLessThan_example" // String | Optional filter by items whose name is equally or lesser than a given input string. (optional) -let studioIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) -let genreIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) -let enableTotalRecordCount = true // Bool | Optional. Enable the total record count. (optional) (default to true) -let enableImages = true // Bool | Optional, include image information in output. (optional) (default to true) - -// Gets items based on a query. -ItemsAPI.getItemsByUserId(userId: userId, maxOfficialRating: maxOfficialRating, hasThemeSong: hasThemeSong, hasThemeVideo: hasThemeVideo, hasSubtitles: hasSubtitles, hasSpecialFeature: hasSpecialFeature, hasTrailer: hasTrailer, adjacentTo: adjacentTo, parentIndexNumber: parentIndexNumber, hasParentalRating: hasParentalRating, isHd: isHd, is4K: is4K, locationTypes: locationTypes, excludeLocationTypes: excludeLocationTypes, isMissing: isMissing, isUnaired: isUnaired, minCommunityRating: minCommunityRating, minCriticRating: minCriticRating, minPremiereDate: minPremiereDate, minDateLastSaved: minDateLastSaved, minDateLastSavedForUser: minDateLastSavedForUser, maxPremiereDate: maxPremiereDate, hasOverview: hasOverview, hasImdbId: hasImdbId, hasTmdbId: hasTmdbId, hasTvdbId: hasTvdbId, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, excludeItemIds: excludeItemIds, startIndex: startIndex, limit: limit, recursive: recursive, searchTerm: searchTerm, sortOrder: sortOrder, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, filters: filters, isFavorite: isFavorite, mediaTypes: mediaTypes, imageTypes: imageTypes, sortBy: sortBy, isPlayed: isPlayed, genres: genres, officialRatings: officialRatings, tags: tags, years: years, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, person: person, personIds: personIds, personTypes: personTypes, studios: studios, artists: artists, excludeArtistIds: excludeArtistIds, artistIds: artistIds, albumArtistIds: albumArtistIds, contributingArtistIds: contributingArtistIds, albums: albums, albumIds: albumIds, ids: ids, videoTypes: videoTypes, minOfficialRating: minOfficialRating, isLocked: isLocked, isPlaceHolder: isPlaceHolder, hasOfficialRating: hasOfficialRating, collapseBoxSetItems: collapseBoxSetItems, minWidth: minWidth, minHeight: minHeight, maxWidth: maxWidth, maxHeight: maxHeight, is3D: is3D, seriesStatus: seriesStatus, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, studioIds: studioIds, genreIds: genreIds, enableTotalRecordCount: enableTotalRecordCount, enableImages: enableImages) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id supplied as query parameter. | - **maxOfficialRating** | **String** | Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). | [optional] - **hasThemeSong** | **Bool** | Optional filter by items with theme songs. | [optional] - **hasThemeVideo** | **Bool** | Optional filter by items with theme videos. | [optional] - **hasSubtitles** | **Bool** | Optional filter by items with subtitles. | [optional] - **hasSpecialFeature** | **Bool** | Optional filter by items with special features. | [optional] - **hasTrailer** | **Bool** | Optional filter by items with trailers. | [optional] - **adjacentTo** | **String** | Optional. Return items that are siblings of a supplied item. | [optional] - **parentIndexNumber** | **Int** | Optional filter by parent index number. | [optional] - **hasParentalRating** | **Bool** | Optional filter by items that have or do not have a parental rating. | [optional] - **isHd** | **Bool** | Optional filter by items that are HD or not. | [optional] - **is4K** | **Bool** | Optional filter by items that are 4K or not. | [optional] - **locationTypes** | [**[LocationType]**](LocationType.md) | Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. | [optional] - **excludeLocationTypes** | [**[LocationType]**](LocationType.md) | Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. | [optional] - **isMissing** | **Bool** | Optional filter by items that are missing episodes or not. | [optional] - **isUnaired** | **Bool** | Optional filter by items that are unaired episodes or not. | [optional] - **minCommunityRating** | **Double** | Optional filter by minimum community rating. | [optional] - **minCriticRating** | **Double** | Optional filter by minimum critic rating. | [optional] - **minPremiereDate** | **Date** | Optional. The minimum premiere date. Format = ISO. | [optional] - **minDateLastSaved** | **Date** | Optional. The minimum last saved date. Format = ISO. | [optional] - **minDateLastSavedForUser** | **Date** | Optional. The minimum last saved date for the current user. Format = ISO. | [optional] - **maxPremiereDate** | **Date** | Optional. The maximum premiere date. Format = ISO. | [optional] - **hasOverview** | **Bool** | Optional filter by items that have an overview or not. | [optional] - **hasImdbId** | **Bool** | Optional filter by items that have an imdb id or not. | [optional] - **hasTmdbId** | **Bool** | Optional filter by items that have a tmdb id or not. | [optional] - **hasTvdbId** | **Bool** | Optional filter by items that have a tvdb id or not. | [optional] - **isMovie** | **Bool** | Optional filter for live tv movies. | [optional] - **isSeries** | **Bool** | Optional filter for live tv series. | [optional] - **isNews** | **Bool** | Optional filter for live tv news. | [optional] - **isKids** | **Bool** | Optional filter for live tv kids. | [optional] - **isSports** | **Bool** | Optional filter for live tv sports. | [optional] - **excludeItemIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. | [optional] - **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] - **recursive** | **Bool** | When searching within folders, this determines whether or not the search will be recursive. true/false. | [optional] - **searchTerm** | **String** | Optional. Filter based on a search term. | [optional] - **sortOrder** | [**[SortOrder]**](SortOrder.md) | Sort Order - Ascending,Descending. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. | [optional] - **filters** | [**[ItemFilter]**](ItemFilter.md) | Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. | [optional] - **isFavorite** | **Bool** | Optional filter by items that are marked as favorite, or not. | [optional] - **mediaTypes** | [**[String]**](String.md) | Optional filter by MediaType. Allows multiple, comma delimited. | [optional] - **imageTypes** | [**[ImageType]**](ImageType.md) | Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. | [optional] - **sortBy** | [**[String]**](String.md) | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. | [optional] - **isPlayed** | **Bool** | Optional filter by items that are played, or not. | [optional] - **genres** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. | [optional] - **officialRatings** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. | [optional] - **tags** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. | [optional] - **years** | [**[Int]**](Int.md) | Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. | [optional] - **enableUserData** | **Bool** | Optional, include user data. | [optional] - **imageTypeLimit** | **Int** | Optional, the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **person** | **String** | Optional. If specified, results will be filtered to include only those containing the specified person. | [optional] - **personIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified person id. | [optional] - **personTypes** | [**[String]**](String.md) | Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. | [optional] - **studios** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. | [optional] - **artists** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. | [optional] - **excludeArtistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. | [optional] - **artistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified artist id. | [optional] - **albumArtistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified album artist id. | [optional] - **contributingArtistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. | [optional] - **albums** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. | [optional] - **albumIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. | [optional] - **ids** | [**[String]**](String.md) | Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. | [optional] - **videoTypes** | [**[VideoType]**](VideoType.md) | Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. | [optional] - **minOfficialRating** | **String** | Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). | [optional] - **isLocked** | **Bool** | Optional filter by items that are locked. | [optional] - **isPlaceHolder** | **Bool** | Optional filter by items that are placeholders. | [optional] - **hasOfficialRating** | **Bool** | Optional filter by items that have official ratings. | [optional] - **collapseBoxSetItems** | **Bool** | Whether or not to hide items behind their boxsets. | [optional] - **minWidth** | **Int** | Optional. Filter by the minimum width of the item. | [optional] - **minHeight** | **Int** | Optional. Filter by the minimum height of the item. | [optional] - **maxWidth** | **Int** | Optional. Filter by the maximum width of the item. | [optional] - **maxHeight** | **Int** | Optional. Filter by the maximum height of the item. | [optional] - **is3D** | **Bool** | Optional filter by items that are 3D, or not. | [optional] - **seriesStatus** | [**[SeriesStatus]**](SeriesStatus.md) | Optional filter by Series Status. Allows multiple, comma delimited. | [optional] - **nameStartsWithOrGreater** | **String** | Optional filter by items whose name is sorted equally or greater than a given input string. | [optional] - **nameStartsWith** | **String** | Optional filter by items whose name is sorted equally than a given input string. | [optional] - **nameLessThan** | **String** | Optional filter by items whose name is equally or lesser than a given input string. | [optional] - **studioIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. | [optional] - **genreIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. | [optional] - **enableTotalRecordCount** | **Bool** | Optional. Enable the total record count. | [optional] [default to true] - **enableImages** | **Bool** | Optional, include image information in output. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getResumeItems** -```swift - open class func getResumeItems(userId: String, startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, mediaTypes: [String]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil, excludeActiveSessions: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets items based on a query. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. -let startIndex = 987 // Int | The start index. (optional) -let limit = 987 // Int | The item limit. (optional) -let searchTerm = "searchTerm_example" // String | The search term. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) -let mediaTypes = ["inner_example"] // [String] | Optional. Filter by MediaType. Allows multiple, comma delimited. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. (optional) -let enableTotalRecordCount = true // Bool | Optional. Enable the total record count. (optional) (default to true) -let enableImages = true // Bool | Optional. Include image information in output. (optional) (default to true) -let excludeActiveSessions = true // Bool | Optional. Whether to exclude the currently active sessions. (optional) (default to false) - -// Gets items based on a query. -ItemsAPI.getResumeItems(userId: userId, startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, mediaTypes: mediaTypes, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, enableTotalRecordCount: enableTotalRecordCount, enableImages: enableImages, excludeActiveSessions: excludeActiveSessions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | - **startIndex** | **Int** | The start index. | [optional] - **limit** | **Int** | The item limit. | [optional] - **searchTerm** | **String** | The search term. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. | [optional] - **mediaTypes** | [**[String]**](String.md) | Optional. Filter by MediaType. Allows multiple, comma delimited. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited. | [optional] - **enableTotalRecordCount** | **Bool** | Optional. Enable the total record count. | [optional] [default to true] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] [default to true] - **excludeActiveSessions** | **Bool** | Optional. Whether to exclude the currently active sessions. | [optional] [default to false] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/JoinGroupRequestDto.md b/docs/JoinGroupRequestDto.md deleted file mode 100644 index 05be508bc..000000000 --- a/docs/JoinGroupRequestDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# JoinGroupRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**groupId** | **String** | Gets or sets the group identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/KeepUntil.md b/docs/KeepUntil.md deleted file mode 100644 index fab6b2794..000000000 --- a/docs/KeepUntil.md +++ /dev/null @@ -1,9 +0,0 @@ -# KeepUntil - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LibraryAPI.md b/docs/LibraryAPI.md deleted file mode 100644 index ccdd5094a..000000000 --- a/docs/LibraryAPI.md +++ /dev/null @@ -1,1295 +0,0 @@ -# LibraryAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**deleteItem**](LibraryAPI.md#deleteitem) | **DELETE** /Items/{itemId} | Deletes an item from the library and filesystem. -[**deleteItems**](LibraryAPI.md#deleteitems) | **DELETE** /Items | Deletes items from the library and filesystem. -[**getAncestors**](LibraryAPI.md#getancestors) | **GET** /Items/{itemId}/Ancestors | Gets all parents of an item. -[**getCriticReviews**](LibraryAPI.md#getcriticreviews) | **GET** /Items/{itemId}/CriticReviews | Gets critic review for an item. -[**getDownload**](LibraryAPI.md#getdownload) | **GET** /Items/{itemId}/Download | Downloads item media. -[**getFile**](LibraryAPI.md#getfile) | **GET** /Items/{itemId}/File | Get the original file of an item. -[**getItemCounts**](LibraryAPI.md#getitemcounts) | **GET** /Items/Counts | Get item counts. -[**getLibraryOptionsInfo**](LibraryAPI.md#getlibraryoptionsinfo) | **GET** /Libraries/AvailableOptions | Gets the library options info. -[**getMediaFolders**](LibraryAPI.md#getmediafolders) | **GET** /Library/MediaFolders | Gets all user media folders. -[**getPhysicalPaths**](LibraryAPI.md#getphysicalpaths) | **GET** /Library/PhysicalPaths | Gets a list of physical paths from virtual folders. -[**getSimilarAlbums**](LibraryAPI.md#getsimilaralbums) | **GET** /Albums/{itemId}/Similar | Gets similar items. -[**getSimilarArtists**](LibraryAPI.md#getsimilarartists) | **GET** /Artists/{itemId}/Similar | Gets similar items. -[**getSimilarItems**](LibraryAPI.md#getsimilaritems) | **GET** /Items/{itemId}/Similar | Gets similar items. -[**getSimilarMovies**](LibraryAPI.md#getsimilarmovies) | **GET** /Movies/{itemId}/Similar | Gets similar items. -[**getSimilarShows**](LibraryAPI.md#getsimilarshows) | **GET** /Shows/{itemId}/Similar | Gets similar items. -[**getSimilarTrailers**](LibraryAPI.md#getsimilartrailers) | **GET** /Trailers/{itemId}/Similar | Gets similar items. -[**getThemeMedia**](LibraryAPI.md#getthememedia) | **GET** /Items/{itemId}/ThemeMedia | Get theme songs and videos for an item. -[**getThemeSongs**](LibraryAPI.md#getthemesongs) | **GET** /Items/{itemId}/ThemeSongs | Get theme songs for an item. -[**getThemeVideos**](LibraryAPI.md#getthemevideos) | **GET** /Items/{itemId}/ThemeVideos | Get theme videos for an item. -[**postAddedMovies**](LibraryAPI.md#postaddedmovies) | **POST** /Library/Movies/Added | Reports that new movies have been added by an external source. -[**postAddedSeries**](LibraryAPI.md#postaddedseries) | **POST** /Library/Series/Added | Reports that new episodes of a series have been added by an external source. -[**postUpdatedMedia**](LibraryAPI.md#postupdatedmedia) | **POST** /Library/Media/Updated | Reports that new movies have been added by an external source. -[**postUpdatedMovies**](LibraryAPI.md#postupdatedmovies) | **POST** /Library/Movies/Updated | Reports that new movies have been added by an external source. -[**postUpdatedSeries**](LibraryAPI.md#postupdatedseries) | **POST** /Library/Series/Updated | Reports that new episodes of a series have been added by an external source. -[**refreshLibrary**](LibraryAPI.md#refreshlibrary) | **POST** /Library/Refresh | Starts a library scan. - - -# **deleteItem** -```swift - open class func deleteItem(itemId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Deletes an item from the library and filesystem. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. - -// Deletes an item from the library and filesystem. -LibraryAPI.deleteItem(itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **deleteItems** -```swift - open class func deleteItems(ids: [String]? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Deletes items from the library and filesystem. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let ids = ["inner_example"] // [String] | The item ids. (optional) - -// Deletes items from the library and filesystem. -LibraryAPI.deleteItems(ids: ids) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **ids** | [**[String]**](String.md) | The item ids. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getAncestors** -```swift - open class func getAncestors(itemId: String, userId: String? = nil, completion: @escaping (_ data: [BaseItemDto]?, _ error: Error?) -> Void) -``` - -Gets all parents of an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) - -// Gets all parents of an item. -LibraryAPI.getAncestors(itemId: itemId, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - -### Return type - -[**[BaseItemDto]**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getCriticReviews** -```swift - open class func getCriticReviews(itemId: String, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets critic review for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | - -// Gets critic review for an item. -LibraryAPI.getCriticReviews(itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | | - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDownload** -```swift - open class func getDownload(itemId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Downloads item media. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. - -// Downloads item media. -LibraryAPI.getDownload(itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: video/_*, audio/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getFile** -```swift - open class func getFile(itemId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get the original file of an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. - -// Get the original file of an item. -LibraryAPI.getFile(itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: video/_*, audio/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getItemCounts** -```swift - open class func getItemCounts(userId: String? = nil, isFavorite: Bool? = nil, completion: @escaping (_ data: ItemCounts?, _ error: Error?) -> Void) -``` - -Get item counts. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | Optional. Get counts from a specific user's library. (optional) -let isFavorite = true // Bool | Optional. Get counts of favorite items. (optional) - -// Get item counts. -LibraryAPI.getItemCounts(userId: userId, isFavorite: isFavorite) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | Optional. Get counts from a specific user's library. | [optional] - **isFavorite** | **Bool** | Optional. Get counts of favorite items. | [optional] - -### Return type - -[**ItemCounts**](ItemCounts.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLibraryOptionsInfo** -```swift - open class func getLibraryOptionsInfo(libraryContentType: String? = nil, isNewLibrary: Bool? = nil, completion: @escaping (_ data: LibraryOptionsResultDto?, _ error: Error?) -> Void) -``` - -Gets the library options info. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let libraryContentType = "libraryContentType_example" // String | Library content type. (optional) -let isNewLibrary = true // Bool | Whether this is a new library. (optional) (default to false) - -// Gets the library options info. -LibraryAPI.getLibraryOptionsInfo(libraryContentType: libraryContentType, isNewLibrary: isNewLibrary) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **libraryContentType** | **String** | Library content type. | [optional] - **isNewLibrary** | **Bool** | Whether this is a new library. | [optional] [default to false] - -### Return type - -[**LibraryOptionsResultDto**](LibraryOptionsResultDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMediaFolders** -```swift - open class func getMediaFolders(isHidden: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets all user media folders. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let isHidden = true // Bool | Optional. Filter by folders that are marked hidden, or not. (optional) - -// Gets all user media folders. -LibraryAPI.getMediaFolders(isHidden: isHidden) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **isHidden** | **Bool** | Optional. Filter by folders that are marked hidden, or not. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPhysicalPaths** -```swift - open class func getPhysicalPaths(completion: @escaping (_ data: [String]?, _ error: Error?) -> Void) -``` - -Gets a list of physical paths from virtual folders. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets a list of physical paths from virtual folders. -LibraryAPI.getPhysicalPaths() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -**[String]** - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSimilarAlbums** -```swift - open class func getSimilarAlbums(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets similar items. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let excludeArtistIds = ["inner_example"] // [String] | Exclude artist ids. (optional) -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - -// Gets similar items. -LibraryAPI.getSimilarAlbums(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **excludeArtistIds** | [**[String]**](String.md) | Exclude artist ids. | [optional] - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSimilarArtists** -```swift - open class func getSimilarArtists(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets similar items. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let excludeArtistIds = ["inner_example"] // [String] | Exclude artist ids. (optional) -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - -// Gets similar items. -LibraryAPI.getSimilarArtists(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **excludeArtistIds** | [**[String]**](String.md) | Exclude artist ids. | [optional] - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSimilarItems** -```swift - open class func getSimilarItems(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets similar items. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let excludeArtistIds = ["inner_example"] // [String] | Exclude artist ids. (optional) -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - -// Gets similar items. -LibraryAPI.getSimilarItems(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **excludeArtistIds** | [**[String]**](String.md) | Exclude artist ids. | [optional] - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSimilarMovies** -```swift - open class func getSimilarMovies(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets similar items. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let excludeArtistIds = ["inner_example"] // [String] | Exclude artist ids. (optional) -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - -// Gets similar items. -LibraryAPI.getSimilarMovies(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **excludeArtistIds** | [**[String]**](String.md) | Exclude artist ids. | [optional] - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSimilarShows** -```swift - open class func getSimilarShows(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets similar items. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let excludeArtistIds = ["inner_example"] // [String] | Exclude artist ids. (optional) -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - -// Gets similar items. -LibraryAPI.getSimilarShows(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **excludeArtistIds** | [**[String]**](String.md) | Exclude artist ids. | [optional] - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSimilarTrailers** -```swift - open class func getSimilarTrailers(itemId: String, excludeArtistIds: [String]? = nil, userId: String? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets similar items. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let excludeArtistIds = ["inner_example"] // [String] | Exclude artist ids. (optional) -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) - -// Gets similar items. -LibraryAPI.getSimilarTrailers(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **excludeArtistIds** | [**[String]**](String.md) | Exclude artist ids. | [optional] - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getThemeMedia** -```swift - open class func getThemeMedia(itemId: String, userId: String? = nil, inheritFromParent: Bool? = nil, completion: @escaping (_ data: AllThemeMediaResult?, _ error: Error?) -> Void) -``` - -Get theme songs and videos for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let inheritFromParent = true // Bool | Optional. Determines whether or not parent items should be searched for theme media. (optional) (default to false) - -// Get theme songs and videos for an item. -LibraryAPI.getThemeMedia(itemId: itemId, userId: userId, inheritFromParent: inheritFromParent) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **inheritFromParent** | **Bool** | Optional. Determines whether or not parent items should be searched for theme media. | [optional] [default to false] - -### Return type - -[**AllThemeMediaResult**](AllThemeMediaResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getThemeSongs** -```swift - open class func getThemeSongs(itemId: String, userId: String? = nil, inheritFromParent: Bool? = nil, completion: @escaping (_ data: ThemeMediaResult?, _ error: Error?) -> Void) -``` - -Get theme songs for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let inheritFromParent = true // Bool | Optional. Determines whether or not parent items should be searched for theme media. (optional) (default to false) - -// Get theme songs for an item. -LibraryAPI.getThemeSongs(itemId: itemId, userId: userId, inheritFromParent: inheritFromParent) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **inheritFromParent** | **Bool** | Optional. Determines whether or not parent items should be searched for theme media. | [optional] [default to false] - -### Return type - -[**ThemeMediaResult**](ThemeMediaResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getThemeVideos** -```swift - open class func getThemeVideos(itemId: String, userId: String? = nil, inheritFromParent: Bool? = nil, completion: @escaping (_ data: ThemeMediaResult?, _ error: Error?) -> Void) -``` - -Get theme videos for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let inheritFromParent = true // Bool | Optional. Determines whether or not parent items should be searched for theme media. (optional) (default to false) - -// Get theme videos for an item. -LibraryAPI.getThemeVideos(itemId: itemId, userId: userId, inheritFromParent: inheritFromParent) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **inheritFromParent** | **Bool** | Optional. Determines whether or not parent items should be searched for theme media. | [optional] [default to false] - -### Return type - -[**ThemeMediaResult**](ThemeMediaResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **postAddedMovies** -```swift - open class func postAddedMovies(tmdbId: String? = nil, imdbId: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports that new movies have been added by an external source. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let tmdbId = "tmdbId_example" // String | The tmdbId. (optional) -let imdbId = "imdbId_example" // String | The imdbId. (optional) - -// Reports that new movies have been added by an external source. -LibraryAPI.postAddedMovies(tmdbId: tmdbId, imdbId: imdbId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **tmdbId** | **String** | The tmdbId. | [optional] - **imdbId** | **String** | The imdbId. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **postAddedSeries** -```swift - open class func postAddedSeries(tvdbId: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports that new episodes of a series have been added by an external source. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let tvdbId = "tvdbId_example" // String | The tvdbId. (optional) - -// Reports that new episodes of a series have been added by an external source. -LibraryAPI.postAddedSeries(tvdbId: tvdbId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **tvdbId** | **String** | The tvdbId. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **postUpdatedMedia** -```swift - open class func postUpdatedMedia(postUpdatedMediaRequest: PostUpdatedMediaRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports that new movies have been added by an external source. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let postUpdatedMediaRequest = PostUpdatedMedia_request(updates: [MediaUpdateInfoPathDto(path: "path_example", updateType: "updateType_example")]) // PostUpdatedMediaRequest | The update paths. - -// Reports that new movies have been added by an external source. -LibraryAPI.postUpdatedMedia(postUpdatedMediaRequest: postUpdatedMediaRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **postUpdatedMediaRequest** | [**PostUpdatedMediaRequest**](PostUpdatedMediaRequest.md) | The update paths. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **postUpdatedMovies** -```swift - open class func postUpdatedMovies(tmdbId: String? = nil, imdbId: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports that new movies have been added by an external source. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let tmdbId = "tmdbId_example" // String | The tmdbId. (optional) -let imdbId = "imdbId_example" // String | The imdbId. (optional) - -// Reports that new movies have been added by an external source. -LibraryAPI.postUpdatedMovies(tmdbId: tmdbId, imdbId: imdbId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **tmdbId** | **String** | The tmdbId. | [optional] - **imdbId** | **String** | The imdbId. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **postUpdatedSeries** -```swift - open class func postUpdatedSeries(tvdbId: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports that new episodes of a series have been added by an external source. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let tvdbId = "tvdbId_example" // String | The tvdbId. (optional) - -// Reports that new episodes of a series have been added by an external source. -LibraryAPI.postUpdatedSeries(tvdbId: tvdbId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **tvdbId** | **String** | The tvdbId. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **refreshLibrary** -```swift - open class func refreshLibrary(completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Starts a library scan. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Starts a library scan. -LibraryAPI.refreshLibrary() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/LibraryOptionInfoDto.md b/docs/LibraryOptionInfoDto.md deleted file mode 100644 index 8fac3f427..000000000 --- a/docs/LibraryOptionInfoDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# LibraryOptionInfoDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets name. | [optional] -**defaultEnabled** | **Bool** | Gets or sets a value indicating whether default enabled. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LibraryOptions.md b/docs/LibraryOptions.md deleted file mode 100644 index 56c93bcd1..000000000 --- a/docs/LibraryOptions.md +++ /dev/null @@ -1,36 +0,0 @@ -# LibraryOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enablePhotos** | **Bool** | | [optional] -**enableRealtimeMonitor** | **Bool** | | [optional] -**enableChapterImageExtraction** | **Bool** | | [optional] -**extractChapterImagesDuringLibraryScan** | **Bool** | | [optional] -**pathInfos** | [MediaPathInfo] | | [optional] -**saveLocalMetadata** | **Bool** | | [optional] -**enableInternetProviders** | **Bool** | | [optional] -**enableAutomaticSeriesGrouping** | **Bool** | | [optional] -**enableEmbeddedTitles** | **Bool** | | [optional] -**enableEmbeddedEpisodeInfos** | **Bool** | | [optional] -**automaticRefreshIntervalDays** | **Int** | | [optional] -**preferredMetadataLanguage** | **String** | Gets or sets the preferred metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**seasonZeroDisplayName** | **String** | | [optional] -**metadataSavers** | **[String]** | | [optional] -**disabledLocalMetadataReaders** | **[String]** | | [optional] -**localMetadataReaderOrder** | **[String]** | | [optional] -**disabledSubtitleFetchers** | **[String]** | | [optional] -**subtitleFetcherOrder** | **[String]** | | [optional] -**skipSubtitlesIfEmbeddedSubtitlesPresent** | **Bool** | | [optional] -**skipSubtitlesIfAudioTrackMatches** | **Bool** | | [optional] -**subtitleDownloadLanguages** | **[String]** | | [optional] -**requirePerfectSubtitleMatch** | **Bool** | | [optional] -**saveSubtitlesWithMedia** | **Bool** | | [optional] -**automaticallyAddToCollection** | **Bool** | | [optional] -**allowEmbeddedSubtitles** | [**EmbeddedSubtitleOptions**](EmbeddedSubtitleOptions.md) | An enum representing the options to disable embedded subs. | [optional] -**typeOptions** | [TypeOptions] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LibraryOptionsResultDto.md b/docs/LibraryOptionsResultDto.md deleted file mode 100644 index 2bdfa3d5a..000000000 --- a/docs/LibraryOptionsResultDto.md +++ /dev/null @@ -1,13 +0,0 @@ -# LibraryOptionsResultDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**metadataSavers** | [LibraryOptionInfoDto] | Gets or sets the metadata savers. | [optional] -**metadataReaders** | [LibraryOptionInfoDto] | Gets or sets the metadata readers. | [optional] -**subtitleFetchers** | [LibraryOptionInfoDto] | Gets or sets the subtitle fetchers. | [optional] -**typeOptions** | [LibraryTypeOptionsDto] | Gets or sets the type options. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LibraryStructureAPI.md b/docs/LibraryStructureAPI.md deleted file mode 100644 index cff0bec25..000000000 --- a/docs/LibraryStructureAPI.md +++ /dev/null @@ -1,416 +0,0 @@ -# LibraryStructureAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**addMediaPath**](LibraryStructureAPI.md#addmediapath) | **POST** /Library/VirtualFolders/Paths | Add a media path to a library. -[**addVirtualFolder**](LibraryStructureAPI.md#addvirtualfolder) | **POST** /Library/VirtualFolders | Adds a virtual folder. -[**getVirtualFolders**](LibraryStructureAPI.md#getvirtualfolders) | **GET** /Library/VirtualFolders | Gets all virtual folders. -[**removeMediaPath**](LibraryStructureAPI.md#removemediapath) | **DELETE** /Library/VirtualFolders/Paths | Remove a media path. -[**removeVirtualFolder**](LibraryStructureAPI.md#removevirtualfolder) | **DELETE** /Library/VirtualFolders | Removes a virtual folder. -[**renameVirtualFolder**](LibraryStructureAPI.md#renamevirtualfolder) | **POST** /Library/VirtualFolders/Name | Renames a virtual folder. -[**updateLibraryOptions**](LibraryStructureAPI.md#updatelibraryoptions) | **POST** /Library/VirtualFolders/LibraryOptions | Update library options. -[**updateMediaPath**](LibraryStructureAPI.md#updatemediapath) | **POST** /Library/VirtualFolders/Paths/Update | Updates a media path. - - -# **addMediaPath** -```swift - open class func addMediaPath(addMediaPathRequest: AddMediaPathRequest, refreshLibrary: Bool? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Add a media path to a library. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let addMediaPathRequest = AddMediaPath_request(name: "name_example", path: "path_example", pathInfo: MediaPathDto_PathInfo(path: "path_example", networkPath: "networkPath_example")) // AddMediaPathRequest | The media path dto. -let refreshLibrary = true // Bool | Whether to refresh the library. (optional) (default to false) - -// Add a media path to a library. -LibraryStructureAPI.addMediaPath(addMediaPathRequest: addMediaPathRequest, refreshLibrary: refreshLibrary) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **addMediaPathRequest** | [**AddMediaPathRequest**](AddMediaPathRequest.md) | The media path dto. | - **refreshLibrary** | **Bool** | Whether to refresh the library. | [optional] [default to false] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **addVirtualFolder** -```swift - open class func addVirtualFolder(name: String? = nil, collectionType: CollectionTypeOptions? = nil, paths: [String]? = nil, refreshLibrary: Bool? = nil, addVirtualFolderRequest: AddVirtualFolderRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Adds a virtual folder. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The name of the virtual folder. (optional) -let collectionType = CollectionTypeOptions() // CollectionTypeOptions | The type of the collection. (optional) -let paths = ["inner_example"] // [String] | The paths of the virtual folder. (optional) -let refreshLibrary = true // Bool | Whether to refresh the library. (optional) (default to false) -let addVirtualFolderRequest = AddVirtualFolder_request(libraryOptions: AddVirtualFolderDto_LibraryOptions(enablePhotos: false, enableRealtimeMonitor: false, enableChapterImageExtraction: false, extractChapterImagesDuringLibraryScan: false, pathInfos: [MediaPathInfo(path: "path_example", networkPath: "networkPath_example")], saveLocalMetadata: false, enableInternetProviders: false, enableAutomaticSeriesGrouping: false, enableEmbeddedTitles: false, enableEmbeddedEpisodeInfos: false, automaticRefreshIntervalDays: 123, preferredMetadataLanguage: "preferredMetadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", seasonZeroDisplayName: "seasonZeroDisplayName_example", metadataSavers: ["metadataSavers_example"], disabledLocalMetadataReaders: ["disabledLocalMetadataReaders_example"], localMetadataReaderOrder: ["localMetadataReaderOrder_example"], disabledSubtitleFetchers: ["disabledSubtitleFetchers_example"], subtitleFetcherOrder: ["subtitleFetcherOrder_example"], skipSubtitlesIfEmbeddedSubtitlesPresent: false, skipSubtitlesIfAudioTrackMatches: false, subtitleDownloadLanguages: ["subtitleDownloadLanguages_example"], requirePerfectSubtitleMatch: false, saveSubtitlesWithMedia: false, automaticallyAddToCollection: false, allowEmbeddedSubtitles: EmbeddedSubtitleOptions(), typeOptions: [TypeOptions(type: "type_example", metadataFetchers: ["metadataFetchers_example"], metadataFetcherOrder: ["metadataFetcherOrder_example"], imageFetchers: ["imageFetchers_example"], imageFetcherOrder: ["imageFetcherOrder_example"], imageOptions: [ImageOption(type: ImageType(), limit: 123, minWidth: 123)])])) // AddVirtualFolderRequest | The library options. (optional) - -// Adds a virtual folder. -LibraryStructureAPI.addVirtualFolder(name: name, collectionType: collectionType, paths: paths, refreshLibrary: refreshLibrary, addVirtualFolderRequest: addVirtualFolderRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The name of the virtual folder. | [optional] - **collectionType** | [**CollectionTypeOptions**](.md) | The type of the collection. | [optional] - **paths** | [**[String]**](String.md) | The paths of the virtual folder. | [optional] - **refreshLibrary** | **Bool** | Whether to refresh the library. | [optional] [default to false] - **addVirtualFolderRequest** | [**AddVirtualFolderRequest**](AddVirtualFolderRequest.md) | The library options. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getVirtualFolders** -```swift - open class func getVirtualFolders(completion: @escaping (_ data: [VirtualFolderInfo]?, _ error: Error?) -> Void) -``` - -Gets all virtual folders. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets all virtual folders. -LibraryStructureAPI.getVirtualFolders() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[VirtualFolderInfo]**](VirtualFolderInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **removeMediaPath** -```swift - open class func removeMediaPath(name: String? = nil, path: String? = nil, refreshLibrary: Bool? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Remove a media path. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The name of the library. (optional) -let path = "path_example" // String | The path to remove. (optional) -let refreshLibrary = true // Bool | Whether to refresh the library. (optional) (default to false) - -// Remove a media path. -LibraryStructureAPI.removeMediaPath(name: name, path: path, refreshLibrary: refreshLibrary) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The name of the library. | [optional] - **path** | **String** | The path to remove. | [optional] - **refreshLibrary** | **Bool** | Whether to refresh the library. | [optional] [default to false] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **removeVirtualFolder** -```swift - open class func removeVirtualFolder(name: String? = nil, refreshLibrary: Bool? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Removes a virtual folder. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The name of the folder. (optional) -let refreshLibrary = true // Bool | Whether to refresh the library. (optional) (default to false) - -// Removes a virtual folder. -LibraryStructureAPI.removeVirtualFolder(name: name, refreshLibrary: refreshLibrary) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The name of the folder. | [optional] - **refreshLibrary** | **Bool** | Whether to refresh the library. | [optional] [default to false] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **renameVirtualFolder** -```swift - open class func renameVirtualFolder(name: String? = nil, newName: String? = nil, refreshLibrary: Bool? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Renames a virtual folder. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The name of the virtual folder. (optional) -let newName = "newName_example" // String | The new name. (optional) -let refreshLibrary = true // Bool | Whether to refresh the library. (optional) (default to false) - -// Renames a virtual folder. -LibraryStructureAPI.renameVirtualFolder(name: name, newName: newName, refreshLibrary: refreshLibrary) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The name of the virtual folder. | [optional] - **newName** | **String** | The new name. | [optional] - **refreshLibrary** | **Bool** | Whether to refresh the library. | [optional] [default to false] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateLibraryOptions** -```swift - open class func updateLibraryOptions(updateLibraryOptionsRequest: UpdateLibraryOptionsRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Update library options. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let updateLibraryOptionsRequest = UpdateLibraryOptions_request(id: "id_example", libraryOptions: AddVirtualFolderDto_LibraryOptions(enablePhotos: false, enableRealtimeMonitor: false, enableChapterImageExtraction: false, extractChapterImagesDuringLibraryScan: false, pathInfos: [MediaPathInfo(path: "path_example", networkPath: "networkPath_example")], saveLocalMetadata: false, enableInternetProviders: false, enableAutomaticSeriesGrouping: false, enableEmbeddedTitles: false, enableEmbeddedEpisodeInfos: false, automaticRefreshIntervalDays: 123, preferredMetadataLanguage: "preferredMetadataLanguage_example", metadataCountryCode: "metadataCountryCode_example", seasonZeroDisplayName: "seasonZeroDisplayName_example", metadataSavers: ["metadataSavers_example"], disabledLocalMetadataReaders: ["disabledLocalMetadataReaders_example"], localMetadataReaderOrder: ["localMetadataReaderOrder_example"], disabledSubtitleFetchers: ["disabledSubtitleFetchers_example"], subtitleFetcherOrder: ["subtitleFetcherOrder_example"], skipSubtitlesIfEmbeddedSubtitlesPresent: false, skipSubtitlesIfAudioTrackMatches: false, subtitleDownloadLanguages: ["subtitleDownloadLanguages_example"], requirePerfectSubtitleMatch: false, saveSubtitlesWithMedia: false, automaticallyAddToCollection: false, allowEmbeddedSubtitles: EmbeddedSubtitleOptions(), typeOptions: [TypeOptions(type: "type_example", metadataFetchers: ["metadataFetchers_example"], metadataFetcherOrder: ["metadataFetcherOrder_example"], imageFetchers: ["imageFetchers_example"], imageFetcherOrder: ["imageFetcherOrder_example"], imageOptions: [ImageOption(type: ImageType(), limit: 123, minWidth: 123)])])) // UpdateLibraryOptionsRequest | The library name and options. (optional) - -// Update library options. -LibraryStructureAPI.updateLibraryOptions(updateLibraryOptionsRequest: updateLibraryOptionsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **updateLibraryOptionsRequest** | [**UpdateLibraryOptionsRequest**](UpdateLibraryOptionsRequest.md) | The library name and options. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateMediaPath** -```swift - open class func updateMediaPath(updateMediaPathRequest: UpdateMediaPathRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates a media path. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let updateMediaPathRequest = UpdateMediaPath_request(name: "name_example", pathInfo: UpdateMediaPathRequestDto_PathInfo(path: "path_example", networkPath: "networkPath_example")) // UpdateMediaPathRequest | The name of the library and path infos. - -// Updates a media path. -LibraryStructureAPI.updateMediaPath(updateMediaPathRequest: updateMediaPathRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **updateMediaPathRequest** | [**UpdateMediaPathRequest**](UpdateMediaPathRequest.md) | The name of the library and path infos. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/LibraryTypeOptionsDto.md b/docs/LibraryTypeOptionsDto.md deleted file mode 100644 index a3c0590dd..000000000 --- a/docs/LibraryTypeOptionsDto.md +++ /dev/null @@ -1,14 +0,0 @@ -# LibraryTypeOptionsDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**type** | **String** | Gets or sets the type. | [optional] -**metadataFetchers** | [LibraryOptionInfoDto] | Gets or sets the metadata fetchers. | [optional] -**imageFetchers** | [LibraryOptionInfoDto] | Gets or sets the image fetchers. | [optional] -**supportedImageTypes** | [ImageType] | Gets or sets the supported image types. | [optional] -**defaultImageOptions** | [ImageOption] | Gets or sets the default image options. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LibraryUpdateInfo.md b/docs/LibraryUpdateInfo.md deleted file mode 100644 index 4c239c390..000000000 --- a/docs/LibraryUpdateInfo.md +++ /dev/null @@ -1,16 +0,0 @@ -# LibraryUpdateInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**foldersAddedTo** | **[String]** | Gets or sets the folders added to. | [optional] -**foldersRemovedFrom** | **[String]** | Gets or sets the folders removed from. | [optional] -**itemsAdded** | **[String]** | Gets or sets the items added. | [optional] -**itemsRemoved** | **[String]** | Gets or sets the items removed. | [optional] -**itemsUpdated** | **[String]** | Gets or sets the items updated. | [optional] -**collectionFolders** | **[String]** | | [optional] -**isEmpty** | **Bool** | | [optional] [readonly] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ListingsProviderInfo.md b/docs/ListingsProviderInfo.md deleted file mode 100644 index e28908689..000000000 --- a/docs/ListingsProviderInfo.md +++ /dev/null @@ -1,27 +0,0 @@ -# ListingsProviderInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | | [optional] -**type** | **String** | | [optional] -**username** | **String** | | [optional] -**password** | **String** | | [optional] -**listingsId** | **String** | | [optional] -**zipCode** | **String** | | [optional] -**country** | **String** | | [optional] -**path** | **String** | | [optional] -**enabledTuners** | **[String]** | | [optional] -**enableAllTuners** | **Bool** | | [optional] -**newsCategories** | **[String]** | | [optional] -**sportsCategories** | **[String]** | | [optional] -**kidsCategories** | **[String]** | | [optional] -**movieCategories** | **[String]** | | [optional] -**channelMappings** | [NameValuePair] | | [optional] -**moviePrefix** | **String** | | [optional] -**preferredLanguage** | **String** | | [optional] -**userAgent** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LiveStreamResponse.md b/docs/LiveStreamResponse.md deleted file mode 100644 index 0093afa6b..000000000 --- a/docs/LiveStreamResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# LiveStreamResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**mediaSource** | [**LiveStreamResponseMediaSource**](LiveStreamResponseMediaSource.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LiveStreamResponseMediaSource.md b/docs/LiveStreamResponseMediaSource.md deleted file mode 100644 index eea62ee7a..000000000 --- a/docs/LiveStreamResponseMediaSource.md +++ /dev/null @@ -1,51 +0,0 @@ -# LiveStreamResponseMediaSource - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**_protocol** | [**MediaProtocol**](MediaProtocol.md) | | [optional] -**id** | **String** | | [optional] -**path** | **String** | | [optional] -**encoderPath** | **String** | | [optional] -**encoderProtocol** | [**MediaProtocol**](MediaProtocol.md) | | [optional] -**type** | [**MediaSourceType**](MediaSourceType.md) | | [optional] -**container** | **String** | | [optional] -**size** | **Int64** | | [optional] -**name** | **String** | | [optional] -**isRemote** | **Bool** | Gets or sets a value indicating whether the media is remote. Differentiate internet url vs local network. | [optional] -**eTag** | **String** | | [optional] -**runTimeTicks** | **Int64** | | [optional] -**readAtNativeFramerate** | **Bool** | | [optional] -**ignoreDts** | **Bool** | | [optional] -**ignoreIndex** | **Bool** | | [optional] -**genPtsInput** | **Bool** | | [optional] -**supportsTranscoding** | **Bool** | | [optional] -**supportsDirectStream** | **Bool** | | [optional] -**supportsDirectPlay** | **Bool** | | [optional] -**isInfiniteStream** | **Bool** | | [optional] -**requiresOpening** | **Bool** | | [optional] -**openToken** | **String** | | [optional] -**requiresClosing** | **Bool** | | [optional] -**liveStreamId** | **String** | | [optional] -**bufferMs** | **Int** | | [optional] -**requiresLooping** | **Bool** | | [optional] -**supportsProbing** | **Bool** | | [optional] -**videoType** | [**VideoType**](VideoType.md) | | [optional] -**isoType** | [**IsoType**](IsoType.md) | | [optional] -**video3DFormat** | [**Video3DFormat**](Video3DFormat.md) | | [optional] -**mediaStreams** | [MediaStream] | | [optional] -**mediaAttachments** | [MediaAttachment] | | [optional] -**formats** | **[String]** | | [optional] -**bitrate** | **Int** | | [optional] -**timestamp** | [**TransportStreamTimestamp**](TransportStreamTimestamp.md) | | [optional] -**requiredHttpHeaders** | **[String: String]** | | [optional] -**transcodingUrl** | **String** | | [optional] -**transcodingSubProtocol** | **String** | | [optional] -**transcodingContainer** | **String** | | [optional] -**analyzeDurationMs** | **Int** | | [optional] -**defaultAudioStreamIndex** | **Int** | | [optional] -**defaultSubtitleStreamIndex** | **Int** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LiveTvAPI.md b/docs/LiveTvAPI.md deleted file mode 100644 index 8c3802b1e..000000000 --- a/docs/LiveTvAPI.md +++ /dev/null @@ -1,2213 +0,0 @@ -# LiveTvAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**addListingProvider**](LiveTvAPI.md#addlistingprovider) | **POST** /LiveTv/ListingProviders | Adds a listings provider. -[**addTunerHost**](LiveTvAPI.md#addtunerhost) | **POST** /LiveTv/TunerHosts | Adds a tuner host. -[**cancelSeriesTimer**](LiveTvAPI.md#cancelseriestimer) | **DELETE** /LiveTv/SeriesTimers/{timerId} | Cancels a live tv series timer. -[**cancelTimer**](LiveTvAPI.md#canceltimer) | **DELETE** /LiveTv/Timers/{timerId} | Cancels a live tv timer. -[**createSeriesTimer**](LiveTvAPI.md#createseriestimer) | **POST** /LiveTv/SeriesTimers | Creates a live tv series timer. -[**createTimer**](LiveTvAPI.md#createtimer) | **POST** /LiveTv/Timers | Creates a live tv timer. -[**deleteListingProvider**](LiveTvAPI.md#deletelistingprovider) | **DELETE** /LiveTv/ListingProviders | Delete listing provider. -[**deleteRecording**](LiveTvAPI.md#deleterecording) | **DELETE** /LiveTv/Recordings/{recordingId} | Deletes a live tv recording. -[**deleteTunerHost**](LiveTvAPI.md#deletetunerhost) | **DELETE** /LiveTv/TunerHosts | Deletes a tuner host. -[**discoverTuners**](LiveTvAPI.md#discovertuners) | **GET** /LiveTv/Tuners/Discover | Discover tuners. -[**discvoverTuners**](LiveTvAPI.md#discvovertuners) | **GET** /LiveTv/Tuners/Discvover | Discover tuners. -[**getChannel**](LiveTvAPI.md#getchannel) | **GET** /LiveTv/Channels/{channelId} | Gets a live tv channel. -[**getChannelMappingOptions**](LiveTvAPI.md#getchannelmappingoptions) | **GET** /LiveTv/ChannelMappingOptions | Get channel mapping options. -[**getDefaultListingProvider**](LiveTvAPI.md#getdefaultlistingprovider) | **GET** /LiveTv/ListingProviders/Default | Gets default listings provider info. -[**getDefaultTimer**](LiveTvAPI.md#getdefaulttimer) | **GET** /LiveTv/Timers/Defaults | Gets the default values for a new timer. -[**getGuideInfo**](LiveTvAPI.md#getguideinfo) | **GET** /LiveTv/GuideInfo | Get guid info. -[**getLineups**](LiveTvAPI.md#getlineups) | **GET** /LiveTv/ListingProviders/Lineups | Gets available lineups. -[**getLiveRecordingFile**](LiveTvAPI.md#getliverecordingfile) | **GET** /LiveTv/LiveRecordings/{recordingId}/stream | Gets a live tv recording stream. -[**getLiveStreamFile**](LiveTvAPI.md#getlivestreamfile) | **GET** /LiveTv/LiveStreamFiles/{streamId}/stream.{container} | Gets a live tv channel stream. -[**getLiveTvChannels**](LiveTvAPI.md#getlivetvchannels) | **GET** /LiveTv/Channels | Gets available live tv channels. -[**getLiveTvInfo**](LiveTvAPI.md#getlivetvinfo) | **GET** /LiveTv/Info | Gets available live tv services. -[**getLiveTvPrograms**](LiveTvAPI.md#getlivetvprograms) | **GET** /LiveTv/Programs | Gets available live tv epgs. -[**getProgram**](LiveTvAPI.md#getprogram) | **GET** /LiveTv/Programs/{programId} | Gets a live tv program. -[**getPrograms**](LiveTvAPI.md#getprograms) | **POST** /LiveTv/Programs | Gets available live tv epgs. -[**getRecommendedPrograms**](LiveTvAPI.md#getrecommendedprograms) | **GET** /LiveTv/Programs/Recommended | Gets recommended live tv epgs. -[**getRecording**](LiveTvAPI.md#getrecording) | **GET** /LiveTv/Recordings/{recordingId} | Gets a live tv recording. -[**getRecordingFolders**](LiveTvAPI.md#getrecordingfolders) | **GET** /LiveTv/Recordings/Folders | Gets recording folders. -[**getRecordingGroup**](LiveTvAPI.md#getrecordinggroup) | **GET** /LiveTv/Recordings/Groups/{groupId} | Get recording group. -[**getRecordingGroups**](LiveTvAPI.md#getrecordinggroups) | **GET** /LiveTv/Recordings/Groups | Gets live tv recording groups. -[**getRecordings**](LiveTvAPI.md#getrecordings) | **GET** /LiveTv/Recordings | Gets live tv recordings. -[**getRecordingsSeries**](LiveTvAPI.md#getrecordingsseries) | **GET** /LiveTv/Recordings/Series | Gets live tv recording series. -[**getSchedulesDirectCountries**](LiveTvAPI.md#getschedulesdirectcountries) | **GET** /LiveTv/ListingProviders/SchedulesDirect/Countries | Gets available countries. -[**getSeriesTimer**](LiveTvAPI.md#getseriestimer) | **GET** /LiveTv/SeriesTimers/{timerId} | Gets a live tv series timer. -[**getSeriesTimers**](LiveTvAPI.md#getseriestimers) | **GET** /LiveTv/SeriesTimers | Gets live tv series timers. -[**getTimer**](LiveTvAPI.md#gettimer) | **GET** /LiveTv/Timers/{timerId} | Gets a timer. -[**getTimers**](LiveTvAPI.md#gettimers) | **GET** /LiveTv/Timers | Gets the live tv timers. -[**getTunerHostTypes**](LiveTvAPI.md#gettunerhosttypes) | **GET** /LiveTv/TunerHosts/Types | Get tuner host types. -[**resetTuner**](LiveTvAPI.md#resettuner) | **POST** /LiveTv/Tuners/{tunerId}/Reset | Resets a tv tuner. -[**setChannelMapping**](LiveTvAPI.md#setchannelmapping) | **POST** /LiveTv/ChannelMappings | Set channel mappings. -[**updateSeriesTimer**](LiveTvAPI.md#updateseriestimer) | **POST** /LiveTv/SeriesTimers/{timerId} | Updates a live tv series timer. -[**updateTimer**](LiveTvAPI.md#updatetimer) | **POST** /LiveTv/Timers/{timerId} | Updates a live tv timer. - - -# **addListingProvider** -```swift - open class func addListingProvider(pw: String? = nil, validateListings: Bool? = nil, validateLogin: Bool? = nil, addListingProviderRequest: AddListingProviderRequest? = nil, completion: @escaping (_ data: ListingsProviderInfo?, _ error: Error?) -> Void) -``` - -Adds a listings provider. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let pw = "pw_example" // String | Password. (optional) -let validateListings = true // Bool | Validate listings. (optional) (default to false) -let validateLogin = true // Bool | Validate login. (optional) (default to false) -let addListingProviderRequest = AddListingProvider_request(id: "id_example", type: "type_example", username: "username_example", password: "password_example", listingsId: "listingsId_example", zipCode: "zipCode_example", country: "country_example", path: "path_example", enabledTuners: ["enabledTuners_example"], enableAllTuners: false, newsCategories: ["newsCategories_example"], sportsCategories: ["sportsCategories_example"], kidsCategories: ["kidsCategories_example"], movieCategories: ["movieCategories_example"], channelMappings: [NameValuePair(name: "name_example", value: "value_example")], moviePrefix: "moviePrefix_example", preferredLanguage: "preferredLanguage_example", userAgent: "userAgent_example") // AddListingProviderRequest | New listings info. (optional) - -// Adds a listings provider. -LiveTvAPI.addListingProvider(pw: pw, validateListings: validateListings, validateLogin: validateLogin, addListingProviderRequest: addListingProviderRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **pw** | **String** | Password. | [optional] - **validateListings** | **Bool** | Validate listings. | [optional] [default to false] - **validateLogin** | **Bool** | Validate login. | [optional] [default to false] - **addListingProviderRequest** | [**AddListingProviderRequest**](AddListingProviderRequest.md) | New listings info. | [optional] - -### Return type - -[**ListingsProviderInfo**](ListingsProviderInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **addTunerHost** -```swift - open class func addTunerHost(addTunerHostRequest: AddTunerHostRequest? = nil, completion: @escaping (_ data: TunerHostInfo?, _ error: Error?) -> Void) -``` - -Adds a tuner host. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let addTunerHostRequest = AddTunerHost_request(id: "id_example", url: "url_example", type: "type_example", deviceId: "deviceId_example", friendlyName: "friendlyName_example", importFavoritesOnly: false, allowHWTranscoding: false, enableStreamLooping: false, source: "source_example", tunerCount: 123, userAgent: "userAgent_example") // AddTunerHostRequest | New tuner host. (optional) - -// Adds a tuner host. -LiveTvAPI.addTunerHost(addTunerHostRequest: addTunerHostRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **addTunerHostRequest** | [**AddTunerHostRequest**](AddTunerHostRequest.md) | New tuner host. | [optional] - -### Return type - -[**TunerHostInfo**](TunerHostInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **cancelSeriesTimer** -```swift - open class func cancelSeriesTimer(timerId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Cancels a live tv series timer. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let timerId = "timerId_example" // String | Timer id. - -// Cancels a live tv series timer. -LiveTvAPI.cancelSeriesTimer(timerId: timerId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **timerId** | **String** | Timer id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **cancelTimer** -```swift - open class func cancelTimer(timerId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Cancels a live tv timer. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let timerId = "timerId_example" // String | Timer id. - -// Cancels a live tv timer. -LiveTvAPI.cancelTimer(timerId: timerId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **timerId** | **String** | Timer id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **createSeriesTimer** -```swift - open class func createSeriesTimer(createSeriesTimerRequest: CreateSeriesTimerRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Creates a live tv series timer. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let createSeriesTimerRequest = CreateSeriesTimer_request(id: "id_example", type: "type_example", serverId: "serverId_example", externalId: "externalId_example", channelId: "channelId_example", externalChannelId: "externalChannelId_example", channelName: "channelName_example", channelPrimaryImageTag: "channelPrimaryImageTag_example", programId: "programId_example", externalProgramId: "externalProgramId_example", name: "name_example", overview: "overview_example", startDate: Date(), endDate: Date(), serviceName: "serviceName_example", priority: 123, prePaddingSeconds: 123, postPaddingSeconds: 123, isPrePaddingRequired: false, parentBackdropItemId: "parentBackdropItemId_example", parentBackdropImageTags: ["parentBackdropImageTags_example"], isPostPaddingRequired: false, keepUntil: KeepUntil(), recordAnyTime: false, skipEpisodesInLibrary: false, recordAnyChannel: false, keepUpTo: 123, recordNewOnly: false, days: [DayOfWeek()], dayPattern: DayPattern(), imageTags: "TODO", parentThumbItemId: "parentThumbItemId_example", parentThumbImageTag: "parentThumbImageTag_example", parentPrimaryImageItemId: "parentPrimaryImageItemId_example", parentPrimaryImageTag: "parentPrimaryImageTag_example") // CreateSeriesTimerRequest | New series timer info. (optional) - -// Creates a live tv series timer. -LiveTvAPI.createSeriesTimer(createSeriesTimerRequest: createSeriesTimerRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **createSeriesTimerRequest** | [**CreateSeriesTimerRequest**](CreateSeriesTimerRequest.md) | New series timer info. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **createTimer** -```swift - open class func createTimer(createTimerRequest: CreateTimerRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Creates a live tv timer. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let createTimerRequest = CreateTimer_request(id: "id_example", type: "type_example", serverId: "serverId_example", externalId: "externalId_example", channelId: "channelId_example", externalChannelId: "externalChannelId_example", channelName: "channelName_example", channelPrimaryImageTag: "channelPrimaryImageTag_example", programId: "programId_example", externalProgramId: "externalProgramId_example", name: "name_example", overview: "overview_example", startDate: Date(), endDate: Date(), serviceName: "serviceName_example", priority: 123, prePaddingSeconds: 123, postPaddingSeconds: 123, isPrePaddingRequired: false, parentBackdropItemId: "parentBackdropItemId_example", parentBackdropImageTags: ["parentBackdropImageTags_example"], isPostPaddingRequired: false, keepUntil: KeepUntil(), status: RecordingStatus(), seriesTimerId: "seriesTimerId_example", externalSeriesTimerId: "externalSeriesTimerId_example", runTimeTicks: 123, programInfo: TimerInfoDto_ProgramInfo(name: "name_example", originalTitle: "originalTitle_example", serverId: "serverId_example", id: "id_example", etag: "etag_example", sourceType: "sourceType_example", playlistItemId: "playlistItemId_example", dateCreated: Date(), dateLastMediaAdded: Date(), extraType: "extraType_example", airsBeforeSeasonNumber: 123, airsAfterSeasonNumber: 123, airsBeforeEpisodeNumber: 123, canDelete: false, canDownload: false, hasSubtitles: false, preferredMetadataLanguage: "preferredMetadataLanguage_example", preferredMetadataCountryCode: "preferredMetadataCountryCode_example", supportsSync: false, container: "container_example", sortName: "sortName_example", forcedSortName: "forcedSortName_example", video3DFormat: Video3DFormat(), premiereDate: Date(), externalUrls: [ExternalUrl(name: "name_example", url: "url_example")], mediaSources: [MediaSourceInfo(_protocol: MediaProtocol(), id: "id_example", path: "path_example", encoderPath: "encoderPath_example", encoderProtocol: nil, type: MediaSourceType(), container: "container_example", size: 123, name: "name_example", isRemote: false, eTag: "eTag_example", runTimeTicks: 123, readAtNativeFramerate: false, ignoreDts: false, ignoreIndex: false, genPtsInput: false, supportsTranscoding: false, supportsDirectStream: false, supportsDirectPlay: false, isInfiniteStream: false, requiresOpening: false, openToken: "openToken_example", requiresClosing: false, liveStreamId: "liveStreamId_example", bufferMs: 123, requiresLooping: false, supportsProbing: false, videoType: VideoType(), isoType: IsoType(), video3DFormat: nil, mediaStreams: [MediaStream(codec: "codec_example", codecTag: "codecTag_example", language: "language_example", colorRange: "colorRange_example", colorSpace: "colorSpace_example", colorTransfer: "colorTransfer_example", colorPrimaries: "colorPrimaries_example", comment: "comment_example", timeBase: "timeBase_example", codecTimeBase: "codecTimeBase_example", title: "title_example", videoRange: "videoRange_example", localizedUndefined: "localizedUndefined_example", localizedDefault: "localizedDefault_example", localizedForced: "localizedForced_example", localizedExternal: "localizedExternal_example", displayTitle: "displayTitle_example", nalLengthSize: "nalLengthSize_example", isInterlaced: false, isAVC: false, channelLayout: "channelLayout_example", bitRate: 123, bitDepth: 123, refFrames: 123, packetLength: 123, channels: 123, sampleRate: 123, isDefault: false, isForced: false, height: 123, width: 123, averageFrameRate: 123, realFrameRate: 123, profile: "profile_example", type: MediaStreamType(), aspectRatio: "aspectRatio_example", index: 123, score: 123, isExternal: false, deliveryMethod: SubtitleDeliveryMethod(), deliveryUrl: "deliveryUrl_example", isExternalUrl: false, isTextSubtitleStream: false, supportsExternalStream: false, path: "path_example", pixelFormat: "pixelFormat_example", level: 123, isAnamorphic: false)], mediaAttachments: [MediaAttachment(codec: "codec_example", codecTag: "codecTag_example", comment: "comment_example", index: 123, fileName: "fileName_example", mimeType: "mimeType_example", deliveryUrl: "deliveryUrl_example")], formats: ["formats_example"], bitrate: 123, timestamp: TransportStreamTimestamp(), requiredHttpHeaders: "TODO", transcodingUrl: "transcodingUrl_example", transcodingSubProtocol: "transcodingSubProtocol_example", transcodingContainer: "transcodingContainer_example", analyzeDurationMs: 123, defaultAudioStreamIndex: 123, defaultSubtitleStreamIndex: 123)], criticRating: 123, productionLocations: ["productionLocations_example"], path: "path_example", enableMediaSourceDisplay: false, officialRating: "officialRating_example", customRating: "customRating_example", channelId: "channelId_example", channelName: "channelName_example", overview: "overview_example", taglines: ["taglines_example"], genres: ["genres_example"], communityRating: 123, cumulativeRunTimeTicks: 123, runTimeTicks: 123, playAccess: PlayAccess(), aspectRatio: "aspectRatio_example", productionYear: 123, isPlaceHolder: false, number: "number_example", channelNumber: "channelNumber_example", indexNumber: 123, indexNumberEnd: 123, parentIndexNumber: 123, remoteTrailers: [MediaUrl(url: "url_example", name: "name_example")], providerIds: "TODO", isHD: false, isFolder: false, parentId: "parentId_example", type: BaseItemKind(), people: [BaseItemPerson(name: "name_example", id: "id_example", role: "role_example", type: "type_example", primaryImageTag: "primaryImageTag_example", imageBlurHashes: BaseItemPerson_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"))], studios: [NameGuidPair(name: "name_example", id: "id_example")], genreItems: [nil], parentLogoItemId: "parentLogoItemId_example", parentBackdropItemId: "parentBackdropItemId_example", parentBackdropImageTags: ["parentBackdropImageTags_example"], localTrailerCount: 123, userData: BaseItemDto_UserData(rating: 123, playedPercentage: 123, unplayedItemCount: 123, playbackPositionTicks: 123, playCount: 123, isFavorite: false, likes: false, lastPlayedDate: Date(), played: false, key: "key_example", itemId: "itemId_example"), recursiveItemCount: 123, childCount: 123, seriesName: "seriesName_example", seriesId: "seriesId_example", seasonId: "seasonId_example", specialFeatureCount: 123, displayPreferencesId: "displayPreferencesId_example", status: "status_example", airTime: "airTime_example", airDays: [DayOfWeek()], tags: ["tags_example"], primaryImageAspectRatio: 123, artists: ["artists_example"], artistItems: [nil], album: "album_example", collectionType: "collectionType_example", displayOrder: "displayOrder_example", albumId: "albumId_example", albumPrimaryImageTag: "albumPrimaryImageTag_example", seriesPrimaryImageTag: "seriesPrimaryImageTag_example", albumArtist: "albumArtist_example", albumArtists: [nil], seasonName: "seasonName_example", mediaStreams: [nil], videoType: nil, partCount: 123, mediaSourceCount: 123, imageTags: "TODO", backdropImageTags: ["backdropImageTags_example"], screenshotImageTags: ["screenshotImageTags_example"], parentLogoImageTag: "parentLogoImageTag_example", parentArtItemId: "parentArtItemId_example", parentArtImageTag: "parentArtImageTag_example", seriesThumbImageTag: "seriesThumbImageTag_example", imageBlurHashes: BaseItemDto_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"), seriesStudio: "seriesStudio_example", parentThumbItemId: "parentThumbItemId_example", parentThumbImageTag: "parentThumbImageTag_example", parentPrimaryImageItemId: "parentPrimaryImageItemId_example", parentPrimaryImageTag: "parentPrimaryImageTag_example", chapters: [ChapterInfo(startPositionTicks: 123, name: "name_example", imagePath: "imagePath_example", imageDateModified: Date(), imageTag: "imageTag_example")], locationType: LocationType(), isoType: nil, mediaType: "mediaType_example", endDate: Date(), lockedFields: [MetadataField()], trailerCount: 123, movieCount: 123, seriesCount: 123, programCount: 123, episodeCount: 123, songCount: 123, albumCount: 123, artistCount: 123, musicVideoCount: 123, lockData: false, width: 123, height: 123, cameraMake: "cameraMake_example", cameraModel: "cameraModel_example", software: "software_example", exposureTime: 123, focalLength: 123, imageOrientation: ImageOrientation(), aperture: 123, shutterSpeed: 123, latitude: 123, longitude: 123, altitude: 123, isoSpeedRating: 123, seriesTimerId: "seriesTimerId_example", programId: "programId_example", channelPrimaryImageTag: "channelPrimaryImageTag_example", startDate: Date(), completionPercentage: 123, isRepeat: false, episodeTitle: "episodeTitle_example", channelType: ChannelType(), audio: ProgramAudio(), isMovie: false, isSports: false, isSeries: false, isLive: false, isNews: false, isKids: false, isPremiere: false, timerId: "timerId_example")) // CreateTimerRequest | New timer info. (optional) - -// Creates a live tv timer. -LiveTvAPI.createTimer(createTimerRequest: createTimerRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **createTimerRequest** | [**CreateTimerRequest**](CreateTimerRequest.md) | New timer info. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **deleteListingProvider** -```swift - open class func deleteListingProvider(id: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Delete listing provider. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | Listing provider id. (optional) - -// Delete listing provider. -LiveTvAPI.deleteListingProvider(id: id) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | Listing provider id. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **deleteRecording** -```swift - open class func deleteRecording(recordingId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Deletes a live tv recording. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let recordingId = "recordingId_example" // String | Recording id. - -// Deletes a live tv recording. -LiveTvAPI.deleteRecording(recordingId: recordingId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **recordingId** | **String** | Recording id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **deleteTunerHost** -```swift - open class func deleteTunerHost(id: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Deletes a tuner host. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | Tuner host id. (optional) - -// Deletes a tuner host. -LiveTvAPI.deleteTunerHost(id: id) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | Tuner host id. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **discoverTuners** -```swift - open class func discoverTuners(newDevicesOnly: Bool? = nil, completion: @escaping (_ data: [TunerHostInfo]?, _ error: Error?) -> Void) -``` - -Discover tuners. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let newDevicesOnly = true // Bool | Only discover new tuners. (optional) (default to false) - -// Discover tuners. -LiveTvAPI.discoverTuners(newDevicesOnly: newDevicesOnly) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **newDevicesOnly** | **Bool** | Only discover new tuners. | [optional] [default to false] - -### Return type - -[**[TunerHostInfo]**](TunerHostInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **discvoverTuners** -```swift - open class func discvoverTuners(newDevicesOnly: Bool? = nil, completion: @escaping (_ data: [TunerHostInfo]?, _ error: Error?) -> Void) -``` - -Discover tuners. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let newDevicesOnly = true // Bool | Only discover new tuners. (optional) (default to false) - -// Discover tuners. -LiveTvAPI.discvoverTuners(newDevicesOnly: newDevicesOnly) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **newDevicesOnly** | **Bool** | Only discover new tuners. | [optional] [default to false] - -### Return type - -[**[TunerHostInfo]**](TunerHostInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getChannel** -```swift - open class func getChannel(channelId: String, userId: String? = nil, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Gets a live tv channel. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let channelId = "channelId_example" // String | Channel id. -let userId = "userId_example" // String | Optional. Attach user data. (optional) - -// Gets a live tv channel. -LiveTvAPI.getChannel(channelId: channelId, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **channelId** | **String** | Channel id. | - **userId** | **String** | Optional. Attach user data. | [optional] - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getChannelMappingOptions** -```swift - open class func getChannelMappingOptions(providerId: String? = nil, completion: @escaping (_ data: ChannelMappingOptionsDto?, _ error: Error?) -> Void) -``` - -Get channel mapping options. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let providerId = "providerId_example" // String | Provider id. (optional) - -// Get channel mapping options. -LiveTvAPI.getChannelMappingOptions(providerId: providerId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **providerId** | **String** | Provider id. | [optional] - -### Return type - -[**ChannelMappingOptionsDto**](ChannelMappingOptionsDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDefaultListingProvider** -```swift - open class func getDefaultListingProvider(completion: @escaping (_ data: ListingsProviderInfo?, _ error: Error?) -> Void) -``` - -Gets default listings provider info. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets default listings provider info. -LiveTvAPI.getDefaultListingProvider() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ListingsProviderInfo**](ListingsProviderInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getDefaultTimer** -```swift - open class func getDefaultTimer(programId: String? = nil, completion: @escaping (_ data: SeriesTimerInfoDto?, _ error: Error?) -> Void) -``` - -Gets the default values for a new timer. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let programId = "programId_example" // String | Optional. To attach default values based on a program. (optional) - -// Gets the default values for a new timer. -LiveTvAPI.getDefaultTimer(programId: programId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **programId** | **String** | Optional. To attach default values based on a program. | [optional] - -### Return type - -[**SeriesTimerInfoDto**](SeriesTimerInfoDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getGuideInfo** -```swift - open class func getGuideInfo(completion: @escaping (_ data: GuideInfo?, _ error: Error?) -> Void) -``` - -Get guid info. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get guid info. -LiveTvAPI.getGuideInfo() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**GuideInfo**](GuideInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLineups** -```swift - open class func getLineups(id: String? = nil, type: String? = nil, location: String? = nil, country: String? = nil, completion: @escaping (_ data: [NameIdPair]?, _ error: Error?) -> Void) -``` - -Gets available lineups. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | Provider id. (optional) -let type = "type_example" // String | Provider type. (optional) -let location = "location_example" // String | Location. (optional) -let country = "country_example" // String | Country. (optional) - -// Gets available lineups. -LiveTvAPI.getLineups(id: id, type: type, location: location, country: country) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | Provider id. | [optional] - **type** | **String** | Provider type. | [optional] - **location** | **String** | Location. | [optional] - **country** | **String** | Country. | [optional] - -### Return type - -[**[NameIdPair]**](NameIdPair.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLiveRecordingFile** -```swift - open class func getLiveRecordingFile(recordingId: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a live tv recording stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let recordingId = "recordingId_example" // String | Recording id. - -// Gets a live tv recording stream. -LiveTvAPI.getLiveRecordingFile(recordingId: recordingId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **recordingId** | **String** | Recording id. | - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: video/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLiveStreamFile** -```swift - open class func getLiveStreamFile(streamId: String, container: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a live tv channel stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let streamId = "streamId_example" // String | Stream id. -let container = "container_example" // String | Container type. - -// Gets a live tv channel stream. -LiveTvAPI.getLiveStreamFile(streamId: streamId, container: container) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **streamId** | **String** | Stream id. | - **container** | **String** | Container type. | - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: video/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLiveTvChannels** -```swift - open class func getLiveTvChannels(type: ChannelType? = nil, userId: String? = nil, startIndex: Int? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, limit: Int? = nil, isFavorite: Bool? = nil, isLiked: Bool? = nil, isDisliked: Bool? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, sortBy: [String]? = nil, sortOrder: SortOrder? = nil, enableFavoriteSorting: Bool? = nil, addCurrentProgram: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets available live tv channels. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let type = ChannelType() // ChannelType | Optional. Filter by channel type. (optional) -let userId = "userId_example" // String | Optional. Filter by user and attach user data. (optional) -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 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 limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let isFavorite = true // Bool | Optional. Filter by channels that are favorites, or not. (optional) -let isLiked = true // Bool | Optional. Filter by channels that are liked, or not. (optional) -let isDisliked = true // Bool | Optional. Filter by channels that are disliked, or not. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | \"Optional. The image types to include in the output. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let sortBy = ["inner_example"] // [String] | Optional. Key to sort by. (optional) -let sortOrder = SortOrder() // SortOrder | Optional. Sort order. (optional) -let enableFavoriteSorting = true // Bool | Optional. Incorporate favorite and like status into channel sorting. (optional) (default to false) -let addCurrentProgram = true // Bool | Optional. Adds current program info to each channel. (optional) (default to true) - -// Gets available live tv channels. -LiveTvAPI.getLiveTvChannels(type: type, userId: userId, startIndex: startIndex, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, limit: limit, isFavorite: isFavorite, isLiked: isLiked, isDisliked: isDisliked, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, fields: fields, enableUserData: enableUserData, sortBy: sortBy, sortOrder: sortOrder, enableFavoriteSorting: enableFavoriteSorting, addCurrentProgram: addCurrentProgram) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **type** | [**ChannelType**](.md) | Optional. Filter by channel type. | [optional] - **userId** | **String** | Optional. Filter by user and attach user data. | [optional] - **startIndex** | **Int** | Optional. The record index to start at. All items with a lower index will be dropped from the results. | [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] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **isFavorite** | **Bool** | Optional. Filter by channels that are favorites, or not. | [optional] - **isLiked** | **Bool** | Optional. Filter by channels that are liked, or not. | [optional] - **isDisliked** | **Bool** | Optional. Filter by channels that are disliked, or not. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | \"Optional. The image types to include in the output. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **sortBy** | [**[String]**](String.md) | Optional. Key to sort by. | [optional] - **sortOrder** | [**SortOrder**](.md) | Optional. Sort order. | [optional] - **enableFavoriteSorting** | **Bool** | Optional. Incorporate favorite and like status into channel sorting. | [optional] [default to false] - **addCurrentProgram** | **Bool** | Optional. Adds current program info to each channel. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLiveTvInfo** -```swift - open class func getLiveTvInfo(completion: @escaping (_ data: LiveTvInfo?, _ error: Error?) -> Void) -``` - -Gets available live tv services. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets available live tv services. -LiveTvAPI.getLiveTvInfo() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**LiveTvInfo**](LiveTvInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLiveTvPrograms** -```swift - open class func getLiveTvPrograms(channelIds: [String]? = nil, userId: String? = nil, minStartDate: Date? = nil, hasAired: Bool? = nil, isAiring: Bool? = nil, maxStartDate: Date? = nil, minEndDate: Date? = nil, maxEndDate: Date? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, startIndex: Int? = nil, limit: Int? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, genres: [String]? = nil, genreIds: [String]? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, seriesTimerId: String? = nil, librarySeriesId: String? = nil, fields: [ItemFields]? = nil, enableTotalRecordCount: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets available live tv epgs. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let channelIds = ["inner_example"] // [String] | The channels to return guide information for. (optional) -let userId = "userId_example" // String | Optional. Filter by user id. (optional) -let minStartDate = Date() // Date | Optional. The minimum premiere start date. (optional) -let hasAired = true // Bool | Optional. Filter by programs that have completed airing, or not. (optional) -let isAiring = true // Bool | Optional. Filter by programs that are currently airing, or not. (optional) -let maxStartDate = Date() // Date | Optional. The maximum premiere start date. (optional) -let minEndDate = Date() // Date | Optional. The minimum premiere end date. (optional) -let maxEndDate = Date() // Date | Optional. The maximum premiere end date. (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 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 sortBy = ["inner_example"] // [String] | Optional. Specify one or more sort orders, comma delimited. Options: Name, StartDate. (optional) -let sortOrder = [SortOrder()] // [SortOrder] | Sort Order - Ascending,Descending. (optional) -let genres = ["inner_example"] // [String] | The genres to return guide information for. (optional) -let genreIds = ["inner_example"] // [String] | The genre ids to return guide information for. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let seriesTimerId = "seriesTimerId_example" // String | Optional. Filter by series timer id. (optional) -let librarySeriesId = "librarySeriesId_example" // String | Optional. Filter by library series id. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableTotalRecordCount = true // Bool | Retrieve total record count. (optional) (default to true) - -// Gets available live tv epgs. -LiveTvAPI.getLiveTvPrograms(channelIds: channelIds, userId: userId, minStartDate: minStartDate, hasAired: hasAired, isAiring: isAiring, maxStartDate: maxStartDate, minEndDate: minEndDate, maxEndDate: maxEndDate, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, startIndex: startIndex, limit: limit, sortBy: sortBy, sortOrder: sortOrder, genres: genres, genreIds: genreIds, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData, seriesTimerId: seriesTimerId, librarySeriesId: librarySeriesId, fields: fields, enableTotalRecordCount: enableTotalRecordCount) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **channelIds** | [**[String]**](String.md) | The channels to return guide information for. | [optional] - **userId** | **String** | Optional. Filter by user id. | [optional] - **minStartDate** | **Date** | Optional. The minimum premiere start date. | [optional] - **hasAired** | **Bool** | Optional. Filter by programs that have completed airing, or not. | [optional] - **isAiring** | **Bool** | Optional. Filter by programs that are currently airing, or not. | [optional] - **maxStartDate** | **Date** | Optional. The maximum premiere start date. | [optional] - **minEndDate** | **Date** | Optional. The minimum premiere end date. | [optional] - **maxEndDate** | **Date** | Optional. The maximum premiere end date. | [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] - **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] - **sortBy** | [**[String]**](String.md) | Optional. Specify one or more sort orders, comma delimited. Options: Name, StartDate. | [optional] - **sortOrder** | [**[SortOrder]**](SortOrder.md) | Sort Order - Ascending,Descending. | [optional] - **genres** | [**[String]**](String.md) | The genres to return guide information for. | [optional] - **genreIds** | [**[String]**](String.md) | The genre ids to return guide information for. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **seriesTimerId** | **String** | Optional. Filter by series timer id. | [optional] - **librarySeriesId** | **String** | Optional. Filter by library series id. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableTotalRecordCount** | **Bool** | Retrieve total record count. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getProgram** -```swift - open class func getProgram(programId: String, userId: String? = nil, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Gets a live tv program. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let programId = "programId_example" // String | Program id. -let userId = "userId_example" // String | Optional. Attach user data. (optional) - -// Gets a live tv program. -LiveTvAPI.getProgram(programId: programId, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **programId** | **String** | Program id. | - **userId** | **String** | Optional. Attach user data. | [optional] - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPrograms** -```swift - open class func getPrograms(getProgramsRequest: GetProgramsRequest? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets available live tv epgs. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let getProgramsRequest = GetPrograms_request(channelIds: ["channelIds_example"], userId: "userId_example", minStartDate: Date(), hasAired: false, isAiring: false, maxStartDate: Date(), minEndDate: Date(), maxEndDate: Date(), isMovie: false, isSeries: false, isNews: false, isKids: false, isSports: false, startIndex: 123, limit: 123, sortBy: ["sortBy_example"], sortOrder: [SortOrder()], genres: ["genres_example"], genreIds: ["genreIds_example"], enableImages: false, enableTotalRecordCount: false, imageTypeLimit: 123, enableImageTypes: [ImageType()], enableUserData: false, seriesTimerId: "seriesTimerId_example", librarySeriesId: "librarySeriesId_example", fields: [ItemFields()]) // GetProgramsRequest | Request body. (optional) - -// Gets available live tv epgs. -LiveTvAPI.getPrograms(getProgramsRequest: getProgramsRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getProgramsRequest** | [**GetProgramsRequest**](GetProgramsRequest.md) | Request body. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRecommendedPrograms** -```swift - open class func getRecommendedPrograms(userId: String? = nil, limit: Int? = nil, isAiring: Bool? = nil, hasAired: Bool? = nil, isSeries: Bool? = nil, isMovie: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, genreIds: [String]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, enableTotalRecordCount: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets recommended live tv epgs. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | Optional. filter by user id. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let isAiring = true // Bool | Optional. Filter by programs that are currently airing, or not. (optional) -let hasAired = true // Bool | Optional. Filter by programs that have completed airing, or not. (optional) -let isSeries = true // Bool | Optional. Filter for series. (optional) -let isMovie = true // Bool | Optional. Filter for movies. (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 enableImages = true // Bool | Optional. Include image information in output. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let genreIds = ["inner_example"] // [String] | The genres to return guide information for. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableUserData = true // Bool | Optional. include user data. (optional) -let enableTotalRecordCount = true // Bool | Retrieve total record count. (optional) (default to true) - -// Gets recommended live tv epgs. -LiveTvAPI.getRecommendedPrograms(userId: userId, limit: limit, isAiring: isAiring, hasAired: hasAired, isSeries: isSeries, isMovie: isMovie, isNews: isNews, isKids: isKids, isSports: isSports, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, genreIds: genreIds, fields: fields, enableUserData: enableUserData, enableTotalRecordCount: enableTotalRecordCount) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | Optional. filter by user id. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **isAiring** | **Bool** | Optional. Filter by programs that are currently airing, or not. | [optional] - **hasAired** | **Bool** | Optional. Filter by programs that have completed airing, or not. | [optional] - **isSeries** | **Bool** | Optional. Filter for series. | [optional] - **isMovie** | **Bool** | Optional. Filter for movies. | [optional] - **isNews** | **Bool** | Optional. Filter for news. | [optional] - **isKids** | **Bool** | Optional. Filter for kids. | [optional] - **isSports** | **Bool** | Optional. Filter for sports. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **genreIds** | [**[String]**](String.md) | The genres to return guide information for. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableUserData** | **Bool** | Optional. include user data. | [optional] - **enableTotalRecordCount** | **Bool** | Retrieve total record count. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRecording** -```swift - open class func getRecording(recordingId: String, userId: String? = nil, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Gets a live tv recording. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let recordingId = "recordingId_example" // String | Recording id. -let userId = "userId_example" // String | Optional. Attach user data. (optional) - -// Gets a live tv recording. -LiveTvAPI.getRecording(recordingId: recordingId, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **recordingId** | **String** | Recording id. | - **userId** | **String** | Optional. Attach user data. | [optional] - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRecordingFolders** -```swift - open class func getRecordingFolders(userId: String? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets recording folders. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | Optional. Filter by user and attach user data. (optional) - -// Gets recording folders. -LiveTvAPI.getRecordingFolders(userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | Optional. Filter by user and attach user data. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRecordingGroup** -```swift - open class func getRecordingGroup(groupId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Get recording group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let groupId = "groupId_example" // String | Group id. - -// Get recording group. -LiveTvAPI.getRecordingGroup(groupId: groupId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **groupId** | **String** | Group id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRecordingGroups** -```swift - open class func getRecordingGroups(userId: String? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets live tv recording groups. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | Optional. Filter by user and attach user data. (optional) - -// Gets live tv recording groups. -LiveTvAPI.getRecordingGroups(userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | Optional. Filter by user and attach user data. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRecordings** -```swift - open class func getRecordings(channelId: String? = nil, userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, status: RecordingStatus? = nil, isInProgress: Bool? = nil, seriesTimerId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, isNews: Bool? = nil, isLibraryItem: Bool? = nil, enableTotalRecordCount: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets live tv recordings. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let channelId = "channelId_example" // String | Optional. Filter by channel id. (optional) -let userId = "userId_example" // String | Optional. Filter by user and attach user data. (optional) -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 status = RecordingStatus() // RecordingStatus | Optional. Filter by recording status. (optional) -let isInProgress = true // Bool | Optional. Filter by recordings that are in progress, or not. (optional) -let seriesTimerId = "seriesTimerId_example" // String | Optional. Filter by recordings belonging to a series timer. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let isMovie = true // Bool | Optional. Filter for movies. (optional) -let isSeries = true // Bool | Optional. Filter for series. (optional) -let isKids = true // Bool | Optional. Filter for kids. (optional) -let isSports = true // Bool | Optional. Filter for sports. (optional) -let isNews = true // Bool | Optional. Filter for news. (optional) -let isLibraryItem = true // Bool | Optional. Filter for is library item. (optional) -let enableTotalRecordCount = true // Bool | Optional. Return total record count. (optional) (default to true) - -// Gets live tv recordings. -LiveTvAPI.getRecordings(channelId: channelId, userId: userId, startIndex: startIndex, limit: limit, status: status, isInProgress: isInProgress, seriesTimerId: seriesTimerId, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, fields: fields, enableUserData: enableUserData, isMovie: isMovie, isSeries: isSeries, isKids: isKids, isSports: isSports, isNews: isNews, isLibraryItem: isLibraryItem, enableTotalRecordCount: enableTotalRecordCount) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **channelId** | **String** | Optional. Filter by channel id. | [optional] - **userId** | **String** | Optional. Filter by user and attach user data. | [optional] - **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] - **status** | [**RecordingStatus**](.md) | Optional. Filter by recording status. | [optional] - **isInProgress** | **Bool** | Optional. Filter by recordings that are in progress, or not. | [optional] - **seriesTimerId** | **String** | Optional. Filter by recordings belonging to a series timer. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **isMovie** | **Bool** | Optional. Filter for movies. | [optional] - **isSeries** | **Bool** | Optional. Filter for series. | [optional] - **isKids** | **Bool** | Optional. Filter for kids. | [optional] - **isSports** | **Bool** | Optional. Filter for sports. | [optional] - **isNews** | **Bool** | Optional. Filter for news. | [optional] - **isLibraryItem** | **Bool** | Optional. Filter for is library item. | [optional] - **enableTotalRecordCount** | **Bool** | Optional. Return total record count. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRecordingsSeries** -```swift - open class func getRecordingsSeries(channelId: String? = nil, userId: String? = nil, groupId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, status: RecordingStatus? = nil, isInProgress: Bool? = nil, seriesTimerId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, fields: [ItemFields]? = nil, enableUserData: Bool? = nil, enableTotalRecordCount: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets live tv recording series. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let channelId = "channelId_example" // String | Optional. Filter by channel id. (optional) -let userId = "userId_example" // String | Optional. Filter by user and attach user data. (optional) -let groupId = "groupId_example" // String | Optional. Filter by recording group. (optional) -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 status = RecordingStatus() // RecordingStatus | Optional. Filter by recording status. (optional) -let isInProgress = true // Bool | Optional. Filter by recordings that are in progress, or not. (optional) -let seriesTimerId = "seriesTimerId_example" // String | Optional. Filter by recordings belonging to a series timer. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let enableTotalRecordCount = true // Bool | Optional. Return total record count. (optional) (default to true) - -// Gets live tv recording series. -LiveTvAPI.getRecordingsSeries(channelId: channelId, userId: userId, groupId: groupId, startIndex: startIndex, limit: limit, status: status, isInProgress: isInProgress, seriesTimerId: seriesTimerId, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, fields: fields, enableUserData: enableUserData, enableTotalRecordCount: enableTotalRecordCount) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **channelId** | **String** | Optional. Filter by channel id. | [optional] - **userId** | **String** | Optional. Filter by user and attach user data. | [optional] - **groupId** | **String** | Optional. Filter by recording group. | [optional] - **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] - **status** | [**RecordingStatus**](.md) | Optional. Filter by recording status. | [optional] - **isInProgress** | **Bool** | Optional. Filter by recordings that are in progress, or not. | [optional] - **seriesTimerId** | **String** | Optional. Filter by recordings belonging to a series timer. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **enableTotalRecordCount** | **Bool** | Optional. Return total record count. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSchedulesDirectCountries** -```swift - open class func getSchedulesDirectCountries(completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets available countries. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets available countries. -LiveTvAPI.getSchedulesDirectCountries() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSeriesTimer** -```swift - open class func getSeriesTimer(timerId: String, completion: @escaping (_ data: SeriesTimerInfoDto?, _ error: Error?) -> Void) -``` - -Gets a live tv series timer. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let timerId = "timerId_example" // String | Timer id. - -// Gets a live tv series timer. -LiveTvAPI.getSeriesTimer(timerId: timerId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **timerId** | **String** | Timer id. | - -### Return type - -[**SeriesTimerInfoDto**](SeriesTimerInfoDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSeriesTimers** -```swift - open class func getSeriesTimers(sortBy: String? = nil, sortOrder: SortOrder? = nil, completion: @escaping (_ data: SeriesTimerInfoDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets live tv series timers. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let sortBy = "sortBy_example" // String | Optional. Sort by SortName or Priority. (optional) -let sortOrder = SortOrder() // SortOrder | Optional. Sort in Ascending or Descending order. (optional) - -// Gets live tv series timers. -LiveTvAPI.getSeriesTimers(sortBy: sortBy, sortOrder: sortOrder) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sortBy** | **String** | Optional. Sort by SortName or Priority. | [optional] - **sortOrder** | [**SortOrder**](.md) | Optional. Sort in Ascending or Descending order. | [optional] - -### Return type - -[**SeriesTimerInfoDtoQueryResult**](SeriesTimerInfoDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getTimer** -```swift - open class func getTimer(timerId: String, completion: @escaping (_ data: TimerInfoDto?, _ error: Error?) -> Void) -``` - -Gets a timer. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let timerId = "timerId_example" // String | Timer id. - -// Gets a timer. -LiveTvAPI.getTimer(timerId: timerId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **timerId** | **String** | Timer id. | - -### Return type - -[**TimerInfoDto**](TimerInfoDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getTimers** -```swift - open class func getTimers(channelId: String? = nil, seriesTimerId: String? = nil, isActive: Bool? = nil, isScheduled: Bool? = nil, completion: @escaping (_ data: TimerInfoDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets the live tv timers. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let channelId = "channelId_example" // String | Optional. Filter by channel id. (optional) -let seriesTimerId = "seriesTimerId_example" // String | Optional. Filter by timers belonging to a series timer. (optional) -let isActive = true // Bool | Optional. Filter by timers that are active. (optional) -let isScheduled = true // Bool | Optional. Filter by timers that are scheduled. (optional) - -// Gets the live tv timers. -LiveTvAPI.getTimers(channelId: channelId, seriesTimerId: seriesTimerId, isActive: isActive, isScheduled: isScheduled) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **channelId** | **String** | Optional. Filter by channel id. | [optional] - **seriesTimerId** | **String** | Optional. Filter by timers belonging to a series timer. | [optional] - **isActive** | **Bool** | Optional. Filter by timers that are active. | [optional] - **isScheduled** | **Bool** | Optional. Filter by timers that are scheduled. | [optional] - -### Return type - -[**TimerInfoDtoQueryResult**](TimerInfoDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getTunerHostTypes** -```swift - open class func getTunerHostTypes(completion: @escaping (_ data: [NameIdPair]?, _ error: Error?) -> Void) -``` - -Get tuner host types. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get tuner host types. -LiveTvAPI.getTunerHostTypes() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[NameIdPair]**](NameIdPair.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **resetTuner** -```swift - open class func resetTuner(tunerId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Resets a tv tuner. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let tunerId = "tunerId_example" // String | Tuner id. - -// Resets a tv tuner. -LiveTvAPI.resetTuner(tunerId: tunerId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **tunerId** | **String** | Tuner id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **setChannelMapping** -```swift - open class func setChannelMapping(setChannelMappingRequest: SetChannelMappingRequest, completion: @escaping (_ data: TunerChannelMapping?, _ error: Error?) -> Void) -``` - -Set channel mappings. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let setChannelMappingRequest = SetChannelMapping_request(providerId: "providerId_example", tunerChannelId: "tunerChannelId_example", providerChannelId: "providerChannelId_example") // SetChannelMappingRequest | The set channel mapping dto. - -// Set channel mappings. -LiveTvAPI.setChannelMapping(setChannelMappingRequest: setChannelMappingRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **setChannelMappingRequest** | [**SetChannelMappingRequest**](SetChannelMappingRequest.md) | The set channel mapping dto. | - -### Return type - -[**TunerChannelMapping**](TunerChannelMapping.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateSeriesTimer** -```swift - open class func updateSeriesTimer(timerId: String, createSeriesTimerRequest: CreateSeriesTimerRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates a live tv series timer. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let timerId = "timerId_example" // String | Timer id. -let createSeriesTimerRequest = CreateSeriesTimer_request(id: "id_example", type: "type_example", serverId: "serverId_example", externalId: "externalId_example", channelId: "channelId_example", externalChannelId: "externalChannelId_example", channelName: "channelName_example", channelPrimaryImageTag: "channelPrimaryImageTag_example", programId: "programId_example", externalProgramId: "externalProgramId_example", name: "name_example", overview: "overview_example", startDate: Date(), endDate: Date(), serviceName: "serviceName_example", priority: 123, prePaddingSeconds: 123, postPaddingSeconds: 123, isPrePaddingRequired: false, parentBackdropItemId: "parentBackdropItemId_example", parentBackdropImageTags: ["parentBackdropImageTags_example"], isPostPaddingRequired: false, keepUntil: KeepUntil(), recordAnyTime: false, skipEpisodesInLibrary: false, recordAnyChannel: false, keepUpTo: 123, recordNewOnly: false, days: [DayOfWeek()], dayPattern: DayPattern(), imageTags: "TODO", parentThumbItemId: "parentThumbItemId_example", parentThumbImageTag: "parentThumbImageTag_example", parentPrimaryImageItemId: "parentPrimaryImageItemId_example", parentPrimaryImageTag: "parentPrimaryImageTag_example") // CreateSeriesTimerRequest | New series timer info. (optional) - -// Updates a live tv series timer. -LiveTvAPI.updateSeriesTimer(timerId: timerId, createSeriesTimerRequest: createSeriesTimerRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **timerId** | **String** | Timer id. | - **createSeriesTimerRequest** | [**CreateSeriesTimerRequest**](CreateSeriesTimerRequest.md) | New series timer info. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateTimer** -```swift - open class func updateTimer(timerId: String, createTimerRequest: CreateTimerRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates a live tv timer. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let timerId = "timerId_example" // String | Timer id. -let createTimerRequest = CreateTimer_request(id: "id_example", type: "type_example", serverId: "serverId_example", externalId: "externalId_example", channelId: "channelId_example", externalChannelId: "externalChannelId_example", channelName: "channelName_example", channelPrimaryImageTag: "channelPrimaryImageTag_example", programId: "programId_example", externalProgramId: "externalProgramId_example", name: "name_example", overview: "overview_example", startDate: Date(), endDate: Date(), serviceName: "serviceName_example", priority: 123, prePaddingSeconds: 123, postPaddingSeconds: 123, isPrePaddingRequired: false, parentBackdropItemId: "parentBackdropItemId_example", parentBackdropImageTags: ["parentBackdropImageTags_example"], isPostPaddingRequired: false, keepUntil: KeepUntil(), status: RecordingStatus(), seriesTimerId: "seriesTimerId_example", externalSeriesTimerId: "externalSeriesTimerId_example", runTimeTicks: 123, programInfo: TimerInfoDto_ProgramInfo(name: "name_example", originalTitle: "originalTitle_example", serverId: "serverId_example", id: "id_example", etag: "etag_example", sourceType: "sourceType_example", playlistItemId: "playlistItemId_example", dateCreated: Date(), dateLastMediaAdded: Date(), extraType: "extraType_example", airsBeforeSeasonNumber: 123, airsAfterSeasonNumber: 123, airsBeforeEpisodeNumber: 123, canDelete: false, canDownload: false, hasSubtitles: false, preferredMetadataLanguage: "preferredMetadataLanguage_example", preferredMetadataCountryCode: "preferredMetadataCountryCode_example", supportsSync: false, container: "container_example", sortName: "sortName_example", forcedSortName: "forcedSortName_example", video3DFormat: Video3DFormat(), premiereDate: Date(), externalUrls: [ExternalUrl(name: "name_example", url: "url_example")], mediaSources: [MediaSourceInfo(_protocol: MediaProtocol(), id: "id_example", path: "path_example", encoderPath: "encoderPath_example", encoderProtocol: nil, type: MediaSourceType(), container: "container_example", size: 123, name: "name_example", isRemote: false, eTag: "eTag_example", runTimeTicks: 123, readAtNativeFramerate: false, ignoreDts: false, ignoreIndex: false, genPtsInput: false, supportsTranscoding: false, supportsDirectStream: false, supportsDirectPlay: false, isInfiniteStream: false, requiresOpening: false, openToken: "openToken_example", requiresClosing: false, liveStreamId: "liveStreamId_example", bufferMs: 123, requiresLooping: false, supportsProbing: false, videoType: VideoType(), isoType: IsoType(), video3DFormat: nil, mediaStreams: [MediaStream(codec: "codec_example", codecTag: "codecTag_example", language: "language_example", colorRange: "colorRange_example", colorSpace: "colorSpace_example", colorTransfer: "colorTransfer_example", colorPrimaries: "colorPrimaries_example", comment: "comment_example", timeBase: "timeBase_example", codecTimeBase: "codecTimeBase_example", title: "title_example", videoRange: "videoRange_example", localizedUndefined: "localizedUndefined_example", localizedDefault: "localizedDefault_example", localizedForced: "localizedForced_example", localizedExternal: "localizedExternal_example", displayTitle: "displayTitle_example", nalLengthSize: "nalLengthSize_example", isInterlaced: false, isAVC: false, channelLayout: "channelLayout_example", bitRate: 123, bitDepth: 123, refFrames: 123, packetLength: 123, channels: 123, sampleRate: 123, isDefault: false, isForced: false, height: 123, width: 123, averageFrameRate: 123, realFrameRate: 123, profile: "profile_example", type: MediaStreamType(), aspectRatio: "aspectRatio_example", index: 123, score: 123, isExternal: false, deliveryMethod: SubtitleDeliveryMethod(), deliveryUrl: "deliveryUrl_example", isExternalUrl: false, isTextSubtitleStream: false, supportsExternalStream: false, path: "path_example", pixelFormat: "pixelFormat_example", level: 123, isAnamorphic: false)], mediaAttachments: [MediaAttachment(codec: "codec_example", codecTag: "codecTag_example", comment: "comment_example", index: 123, fileName: "fileName_example", mimeType: "mimeType_example", deliveryUrl: "deliveryUrl_example")], formats: ["formats_example"], bitrate: 123, timestamp: TransportStreamTimestamp(), requiredHttpHeaders: "TODO", transcodingUrl: "transcodingUrl_example", transcodingSubProtocol: "transcodingSubProtocol_example", transcodingContainer: "transcodingContainer_example", analyzeDurationMs: 123, defaultAudioStreamIndex: 123, defaultSubtitleStreamIndex: 123)], criticRating: 123, productionLocations: ["productionLocations_example"], path: "path_example", enableMediaSourceDisplay: false, officialRating: "officialRating_example", customRating: "customRating_example", channelId: "channelId_example", channelName: "channelName_example", overview: "overview_example", taglines: ["taglines_example"], genres: ["genres_example"], communityRating: 123, cumulativeRunTimeTicks: 123, runTimeTicks: 123, playAccess: PlayAccess(), aspectRatio: "aspectRatio_example", productionYear: 123, isPlaceHolder: false, number: "number_example", channelNumber: "channelNumber_example", indexNumber: 123, indexNumberEnd: 123, parentIndexNumber: 123, remoteTrailers: [MediaUrl(url: "url_example", name: "name_example")], providerIds: "TODO", isHD: false, isFolder: false, parentId: "parentId_example", type: BaseItemKind(), people: [BaseItemPerson(name: "name_example", id: "id_example", role: "role_example", type: "type_example", primaryImageTag: "primaryImageTag_example", imageBlurHashes: BaseItemPerson_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"))], studios: [NameGuidPair(name: "name_example", id: "id_example")], genreItems: [nil], parentLogoItemId: "parentLogoItemId_example", parentBackdropItemId: "parentBackdropItemId_example", parentBackdropImageTags: ["parentBackdropImageTags_example"], localTrailerCount: 123, userData: BaseItemDto_UserData(rating: 123, playedPercentage: 123, unplayedItemCount: 123, playbackPositionTicks: 123, playCount: 123, isFavorite: false, likes: false, lastPlayedDate: Date(), played: false, key: "key_example", itemId: "itemId_example"), recursiveItemCount: 123, childCount: 123, seriesName: "seriesName_example", seriesId: "seriesId_example", seasonId: "seasonId_example", specialFeatureCount: 123, displayPreferencesId: "displayPreferencesId_example", status: "status_example", airTime: "airTime_example", airDays: [DayOfWeek()], tags: ["tags_example"], primaryImageAspectRatio: 123, artists: ["artists_example"], artistItems: [nil], album: "album_example", collectionType: "collectionType_example", displayOrder: "displayOrder_example", albumId: "albumId_example", albumPrimaryImageTag: "albumPrimaryImageTag_example", seriesPrimaryImageTag: "seriesPrimaryImageTag_example", albumArtist: "albumArtist_example", albumArtists: [nil], seasonName: "seasonName_example", mediaStreams: [nil], videoType: nil, partCount: 123, mediaSourceCount: 123, imageTags: "TODO", backdropImageTags: ["backdropImageTags_example"], screenshotImageTags: ["screenshotImageTags_example"], parentLogoImageTag: "parentLogoImageTag_example", parentArtItemId: "parentArtItemId_example", parentArtImageTag: "parentArtImageTag_example", seriesThumbImageTag: "seriesThumbImageTag_example", imageBlurHashes: BaseItemDto_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"), seriesStudio: "seriesStudio_example", parentThumbItemId: "parentThumbItemId_example", parentThumbImageTag: "parentThumbImageTag_example", parentPrimaryImageItemId: "parentPrimaryImageItemId_example", parentPrimaryImageTag: "parentPrimaryImageTag_example", chapters: [ChapterInfo(startPositionTicks: 123, name: "name_example", imagePath: "imagePath_example", imageDateModified: Date(), imageTag: "imageTag_example")], locationType: LocationType(), isoType: nil, mediaType: "mediaType_example", endDate: Date(), lockedFields: [MetadataField()], trailerCount: 123, movieCount: 123, seriesCount: 123, programCount: 123, episodeCount: 123, songCount: 123, albumCount: 123, artistCount: 123, musicVideoCount: 123, lockData: false, width: 123, height: 123, cameraMake: "cameraMake_example", cameraModel: "cameraModel_example", software: "software_example", exposureTime: 123, focalLength: 123, imageOrientation: ImageOrientation(), aperture: 123, shutterSpeed: 123, latitude: 123, longitude: 123, altitude: 123, isoSpeedRating: 123, seriesTimerId: "seriesTimerId_example", programId: "programId_example", channelPrimaryImageTag: "channelPrimaryImageTag_example", startDate: Date(), completionPercentage: 123, isRepeat: false, episodeTitle: "episodeTitle_example", channelType: ChannelType(), audio: ProgramAudio(), isMovie: false, isSports: false, isSeries: false, isLive: false, isNews: false, isKids: false, isPremiere: false, timerId: "timerId_example")) // CreateTimerRequest | New timer info. (optional) - -// Updates a live tv timer. -LiveTvAPI.updateTimer(timerId: timerId, createTimerRequest: createTimerRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **timerId** | **String** | Timer id. | - **createTimerRequest** | [**CreateTimerRequest**](CreateTimerRequest.md) | New timer info. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/LiveTvInfo.md b/docs/LiveTvInfo.md deleted file mode 100644 index f714e591c..000000000 --- a/docs/LiveTvInfo.md +++ /dev/null @@ -1,12 +0,0 @@ -# LiveTvInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**services** | [LiveTvServiceInfo] | Gets or sets the services. | [optional] -**isEnabled** | **Bool** | Gets or sets a value indicating whether this instance is enabled. | [optional] -**enabledUsers** | **[String]** | Gets or sets the enabled users. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LiveTvOptions.md b/docs/LiveTvOptions.md deleted file mode 100644 index 7d8f0298a..000000000 --- a/docs/LiveTvOptions.md +++ /dev/null @@ -1,22 +0,0 @@ -# LiveTvOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**guideDays** | **Int** | | [optional] -**recordingPath** | **String** | | [optional] -**movieRecordingPath** | **String** | | [optional] -**seriesRecordingPath** | **String** | | [optional] -**enableRecordingSubfolders** | **Bool** | | [optional] -**enableOriginalAudioWithEncodedRecordings** | **Bool** | | [optional] -**tunerHosts** | [TunerHostInfo] | | [optional] -**listingProviders** | [ListingsProviderInfo] | | [optional] -**prePaddingSeconds** | **Int** | | [optional] -**postPaddingSeconds** | **Int** | | [optional] -**mediaLocationsCreated** | **[String]** | | [optional] -**recordingPostProcessor** | **String** | | [optional] -**recordingPostProcessorArguments** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LiveTvServiceInfo.md b/docs/LiveTvServiceInfo.md deleted file mode 100644 index 0c97f413f..000000000 --- a/docs/LiveTvServiceInfo.md +++ /dev/null @@ -1,17 +0,0 @@ -# LiveTvServiceInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**homePageUrl** | **String** | Gets or sets the home page URL. | [optional] -**status** | [**LiveTvServiceStatus**](LiveTvServiceStatus.md) | Gets or sets the status. | [optional] -**statusMessage** | **String** | Gets or sets the status message. | [optional] -**version** | **String** | Gets or sets the version. | [optional] -**hasUpdateAvailable** | **Bool** | Gets or sets a value indicating whether this instance has update available. | [optional] -**isVisible** | **Bool** | Gets or sets a value indicating whether this instance is visible. | [optional] -**tuners** | **[String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LiveTvServiceStatus.md b/docs/LiveTvServiceStatus.md deleted file mode 100644 index 32c55fadf..000000000 --- a/docs/LiveTvServiceStatus.md +++ /dev/null @@ -1,9 +0,0 @@ -# LiveTvServiceStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LocalizationAPI.md b/docs/LocalizationAPI.md deleted file mode 100644 index 50d3af74e..000000000 --- a/docs/LocalizationAPI.md +++ /dev/null @@ -1,188 +0,0 @@ -# LocalizationAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getCountries**](LocalizationAPI.md#getcountries) | **GET** /Localization/Countries | Gets known countries. -[**getCultures**](LocalizationAPI.md#getcultures) | **GET** /Localization/Cultures | Gets known cultures. -[**getLocalizationOptions**](LocalizationAPI.md#getlocalizationoptions) | **GET** /Localization/Options | Gets localization options. -[**getParentalRatings**](LocalizationAPI.md#getparentalratings) | **GET** /Localization/ParentalRatings | Gets known parental ratings. - - -# **getCountries** -```swift - open class func getCountries(completion: @escaping (_ data: [CountryInfo]?, _ error: Error?) -> Void) -``` - -Gets known countries. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets known countries. -LocalizationAPI.getCountries() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[CountryInfo]**](CountryInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getCultures** -```swift - open class func getCultures(completion: @escaping (_ data: [CultureDto]?, _ error: Error?) -> Void) -``` - -Gets known cultures. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets known cultures. -LocalizationAPI.getCultures() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[CultureDto]**](CultureDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLocalizationOptions** -```swift - open class func getLocalizationOptions(completion: @escaping (_ data: [LocalizationOption]?, _ error: Error?) -> Void) -``` - -Gets localization options. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets localization options. -LocalizationAPI.getLocalizationOptions() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[LocalizationOption]**](LocalizationOption.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getParentalRatings** -```swift - open class func getParentalRatings(completion: @escaping (_ data: [ParentalRating]?, _ error: Error?) -> Void) -``` - -Gets known parental ratings. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets known parental ratings. -LocalizationAPI.getParentalRatings() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[ParentalRating]**](ParentalRating.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/LocalizationOption.md b/docs/LocalizationOption.md deleted file mode 100644 index 0cad221d9..000000000 --- a/docs/LocalizationOption.md +++ /dev/null @@ -1,11 +0,0 @@ -# LocalizationOption - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | | [optional] -**value** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LocationType.md b/docs/LocationType.md deleted file mode 100644 index 4fb8674f5..000000000 --- a/docs/LocationType.md +++ /dev/null @@ -1,9 +0,0 @@ -# LocationType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LogFile.md b/docs/LogFile.md deleted file mode 100644 index 504fb4ded..000000000 --- a/docs/LogFile.md +++ /dev/null @@ -1,13 +0,0 @@ -# LogFile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**dateCreated** | **Date** | Gets or sets the date created. | [optional] -**dateModified** | **Date** | Gets or sets the date modified. | [optional] -**size** | **Int64** | Gets or sets the size. | [optional] -**name** | **String** | Gets or sets the name. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/LogLevel.md b/docs/LogLevel.md deleted file mode 100644 index 9983769ce..000000000 --- a/docs/LogLevel.md +++ /dev/null @@ -1,9 +0,0 @@ -# LogLevel - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaAttachment.md b/docs/MediaAttachment.md deleted file mode 100644 index 677424340..000000000 --- a/docs/MediaAttachment.md +++ /dev/null @@ -1,16 +0,0 @@ -# MediaAttachment - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**codec** | **String** | Gets or sets the codec. | [optional] -**codecTag** | **String** | Gets or sets the codec tag. | [optional] -**comment** | **String** | Gets or sets the comment. | [optional] -**index** | **Int** | Gets or sets the index. | [optional] -**fileName** | **String** | Gets or sets the filename. | [optional] -**mimeType** | **String** | Gets or sets the MIME type. | [optional] -**deliveryUrl** | **String** | Gets or sets the delivery URL. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaEncoderPathDto.md b/docs/MediaEncoderPathDto.md deleted file mode 100644 index 641e49e28..000000000 --- a/docs/MediaEncoderPathDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# MediaEncoderPathDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**path** | **String** | Gets or sets media encoder path. | [optional] -**pathType** | **String** | Gets or sets media encoder path type. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaInfoAPI.md b/docs/MediaInfoAPI.md deleted file mode 100644 index 666a8c085..000000000 --- a/docs/MediaInfoAPI.md +++ /dev/null @@ -1,309 +0,0 @@ -# MediaInfoAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**closeLiveStream**](MediaInfoAPI.md#closelivestream) | **POST** /LiveStreams/Close | Closes a media source. -[**getBitrateTestBytes**](MediaInfoAPI.md#getbitratetestbytes) | **GET** /Playback/BitrateTest | Tests the network with a request with the size of the bitrate. -[**getPlaybackInfo**](MediaInfoAPI.md#getplaybackinfo) | **GET** /Items/{itemId}/PlaybackInfo | Gets live playback media info for an item. -[**getPostedPlaybackInfo**](MediaInfoAPI.md#getpostedplaybackinfo) | **POST** /Items/{itemId}/PlaybackInfo | Gets live playback media info for an item. -[**openLiveStream**](MediaInfoAPI.md#openlivestream) | **POST** /LiveStreams/Open | Opens a media source. - - -# **closeLiveStream** -```swift - open class func closeLiveStream(liveStreamId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Closes a media source. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let liveStreamId = "liveStreamId_example" // String | The livestream id. - -// Closes a media source. -MediaInfoAPI.closeLiveStream(liveStreamId: liveStreamId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **liveStreamId** | **String** | The livestream id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getBitrateTestBytes** -```swift - open class func getBitrateTestBytes(size: Int? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Tests the network with a request with the size of the bitrate. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let size = 987 // Int | The bitrate. Defaults to 102400. (optional) (default to 102400) - -// Tests the network with a request with the size of the bitrate. -MediaInfoAPI.getBitrateTestBytes(size: size) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **size** | **Int** | The bitrate. Defaults to 102400. | [optional] [default to 102400] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/octet-stream - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPlaybackInfo** -```swift - open class func getPlaybackInfo(itemId: String, userId: String, completion: @escaping (_ data: PlaybackInfoResponse?, _ error: Error?) -> Void) -``` - -Gets live playback media info for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let userId = "userId_example" // String | The user id. - -// Gets live playback media info for an item. -MediaInfoAPI.getPlaybackInfo(itemId: itemId, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **userId** | **String** | The user id. | - -### Return type - -[**PlaybackInfoResponse**](PlaybackInfoResponse.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPostedPlaybackInfo** -```swift - open class func getPostedPlaybackInfo(itemId: String, userId: String? = nil, maxStreamingBitrate: Int? = nil, startTimeTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, maxAudioChannels: Int? = nil, mediaSourceId: String? = nil, liveStreamId: String? = nil, autoOpenLiveStream: Bool? = nil, enableDirectPlay: Bool? = nil, enableDirectStream: Bool? = nil, enableTranscoding: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, getPostedPlaybackInfoRequest: GetPostedPlaybackInfoRequest? = nil, completion: @escaping (_ data: PlaybackInfoResponse?, _ error: Error?) -> Void) -``` - -Gets live playback media info for an item. - -For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence. Query parameters are obsolete. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let userId = "userId_example" // String | The user id. (optional) -let maxStreamingBitrate = 987 // Int | The maximum streaming bitrate. (optional) -let startTimeTicks = 987 // Int64 | The start time in ticks. (optional) -let audioStreamIndex = 987 // Int | The audio stream index. (optional) -let subtitleStreamIndex = 987 // Int | The subtitle stream index. (optional) -let maxAudioChannels = 987 // Int | The maximum number of audio channels. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media source id. (optional) -let liveStreamId = "liveStreamId_example" // String | The livestream id. (optional) -let autoOpenLiveStream = true // Bool | Whether to auto open the livestream. (optional) -let enableDirectPlay = true // Bool | Whether to enable direct play. Default: true. (optional) -let enableDirectStream = true // Bool | Whether to enable direct stream. Default: true. (optional) -let enableTranscoding = true // Bool | Whether to enable transcoding. Default: true. (optional) -let allowVideoStreamCopy = true // Bool | Whether to allow to copy the video stream. Default: true. (optional) -let allowAudioStreamCopy = true // Bool | Whether to allow to copy the audio stream. Default: true. (optional) -let getPostedPlaybackInfoRequest = GetPostedPlaybackInfo_request(userId: "userId_example", maxStreamingBitrate: 123, startTimeTicks: 123, audioStreamIndex: 123, subtitleStreamIndex: 123, maxAudioChannels: 123, mediaSourceId: "mediaSourceId_example", liveStreamId: "liveStreamId_example", deviceProfile: ClientCapabilities_DeviceProfile(name: "name_example", id: "id_example", identification: DeviceProfile_Identification(friendlyName: "friendlyName_example", modelNumber: "modelNumber_example", serialNumber: "serialNumber_example", modelName: "modelName_example", modelDescription: "modelDescription_example", modelUrl: "modelUrl_example", manufacturer: "manufacturer_example", manufacturerUrl: "manufacturerUrl_example", headers: [HttpHeaderInfo(name: "name_example", value: "value_example", match: HeaderMatchType())]), friendlyName: "friendlyName_example", manufacturer: "manufacturer_example", manufacturerUrl: "manufacturerUrl_example", modelName: "modelName_example", modelDescription: "modelDescription_example", modelNumber: "modelNumber_example", modelUrl: "modelUrl_example", serialNumber: "serialNumber_example", enableAlbumArtInDidl: false, enableSingleAlbumArtLimit: false, enableSingleSubtitleLimit: false, supportedMediaTypes: "supportedMediaTypes_example", userId: "userId_example", albumArtPn: "albumArtPn_example", maxAlbumArtWidth: 123, maxAlbumArtHeight: 123, maxIconWidth: 123, maxIconHeight: 123, maxStreamingBitrate: 123, maxStaticBitrate: 123, musicStreamingTranscodingBitrate: 123, maxStaticMusicBitrate: 123, sonyAggregationFlags: "sonyAggregationFlags_example", protocolInfo: "protocolInfo_example", timelineOffsetSeconds: 123, requiresPlainVideoItems: false, requiresPlainFolders: false, enableMSMediaReceiverRegistrar: false, ignoreTranscodeByteRangeRequests: false, xmlRootAttributes: [XmlAttribute(name: "name_example", value: "value_example")], directPlayProfiles: [DirectPlayProfile(container: "container_example", audioCodec: "audioCodec_example", videoCodec: "videoCodec_example", type: DlnaProfileType())], transcodingProfiles: [TranscodingProfile(container: "container_example", type: nil, videoCodec: "videoCodec_example", audioCodec: "audioCodec_example", _protocol: "_protocol_example", estimateContentLength: false, enableMpegtsM2TsMode: false, transcodeSeekInfo: TranscodeSeekInfo(), copyTimestamps: false, context: EncodingContext(), enableSubtitlesInManifest: false, maxAudioChannels: "maxAudioChannels_example", minSegments: 123, segmentLength: 123, breakOnNonKeyFrames: false, conditions: [ProfileCondition(condition: ProfileConditionType(), property: ProfileConditionValue(), value: "value_example", isRequired: false)])], containerProfiles: [ContainerProfile(type: nil, conditions: [nil], container: "container_example")], codecProfiles: [CodecProfile(type: CodecType(), conditions: [nil], applyConditions: [nil], codec: "codec_example", container: "container_example")], responseProfiles: [ResponseProfile(container: "container_example", audioCodec: "audioCodec_example", videoCodec: "videoCodec_example", type: nil, orgPn: "orgPn_example", mimeType: "mimeType_example", conditions: [nil])], subtitleProfiles: [SubtitleProfile(format: "format_example", method: SubtitleDeliveryMethod(), didlMode: "didlMode_example", language: "language_example", container: "container_example")]), enableDirectPlay: false, enableDirectStream: false, enableTranscoding: false, allowVideoStreamCopy: false, allowAudioStreamCopy: false, autoOpenLiveStream: false) // GetPostedPlaybackInfoRequest | The playback info. (optional) - -// Gets live playback media info for an item. -MediaInfoAPI.getPostedPlaybackInfo(itemId: itemId, userId: userId, maxStreamingBitrate: maxStreamingBitrate, startTimeTicks: startTimeTicks, audioStreamIndex: audioStreamIndex, subtitleStreamIndex: subtitleStreamIndex, maxAudioChannels: maxAudioChannels, mediaSourceId: mediaSourceId, liveStreamId: liveStreamId, autoOpenLiveStream: autoOpenLiveStream, enableDirectPlay: enableDirectPlay, enableDirectStream: enableDirectStream, enableTranscoding: enableTranscoding, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, getPostedPlaybackInfoRequest: getPostedPlaybackInfoRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **userId** | **String** | The user id. | [optional] - **maxStreamingBitrate** | **Int** | The maximum streaming bitrate. | [optional] - **startTimeTicks** | **Int64** | The start time in ticks. | [optional] - **audioStreamIndex** | **Int** | The audio stream index. | [optional] - **subtitleStreamIndex** | **Int** | The subtitle stream index. | [optional] - **maxAudioChannels** | **Int** | The maximum number of audio channels. | [optional] - **mediaSourceId** | **String** | The media source id. | [optional] - **liveStreamId** | **String** | The livestream id. | [optional] - **autoOpenLiveStream** | **Bool** | Whether to auto open the livestream. | [optional] - **enableDirectPlay** | **Bool** | Whether to enable direct play. Default: true. | [optional] - **enableDirectStream** | **Bool** | Whether to enable direct stream. Default: true. | [optional] - **enableTranscoding** | **Bool** | Whether to enable transcoding. Default: true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether to allow to copy the video stream. Default: true. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether to allow to copy the audio stream. Default: true. | [optional] - **getPostedPlaybackInfoRequest** | [**GetPostedPlaybackInfoRequest**](GetPostedPlaybackInfoRequest.md) | The playback info. | [optional] - -### Return type - -[**PlaybackInfoResponse**](PlaybackInfoResponse.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **openLiveStream** -```swift - open class func openLiveStream(openToken: String? = nil, userId: String? = nil, playSessionId: String? = nil, maxStreamingBitrate: Int? = nil, startTimeTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, maxAudioChannels: Int? = nil, itemId: String? = nil, enableDirectPlay: Bool? = nil, enableDirectStream: Bool? = nil, openLiveStreamRequest: OpenLiveStreamRequest? = nil, completion: @escaping (_ data: LiveStreamResponse?, _ error: Error?) -> Void) -``` - -Opens a media source. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let openToken = "openToken_example" // String | The open token. (optional) -let userId = "userId_example" // String | The user id. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let maxStreamingBitrate = 987 // Int | The maximum streaming bitrate. (optional) -let startTimeTicks = 987 // Int64 | The start time in ticks. (optional) -let audioStreamIndex = 987 // Int | The audio stream index. (optional) -let subtitleStreamIndex = 987 // Int | The subtitle stream index. (optional) -let maxAudioChannels = 987 // Int | The maximum number of audio channels. (optional) -let itemId = "itemId_example" // String | The item id. (optional) -let enableDirectPlay = true // Bool | Whether to enable direct play. Default: true. (optional) -let enableDirectStream = true // Bool | Whether to enable direct stream. Default: true. (optional) -let openLiveStreamRequest = OpenLiveStream_request(openToken: "openToken_example", userId: "userId_example", playSessionId: "playSessionId_example", maxStreamingBitrate: 123, startTimeTicks: 123, audioStreamIndex: 123, subtitleStreamIndex: 123, maxAudioChannels: 123, itemId: "itemId_example", enableDirectPlay: false, enableDirectStream: false, deviceProfile: ClientCapabilities_DeviceProfile(name: "name_example", id: "id_example", identification: DeviceProfile_Identification(friendlyName: "friendlyName_example", modelNumber: "modelNumber_example", serialNumber: "serialNumber_example", modelName: "modelName_example", modelDescription: "modelDescription_example", modelUrl: "modelUrl_example", manufacturer: "manufacturer_example", manufacturerUrl: "manufacturerUrl_example", headers: [HttpHeaderInfo(name: "name_example", value: "value_example", match: HeaderMatchType())]), friendlyName: "friendlyName_example", manufacturer: "manufacturer_example", manufacturerUrl: "manufacturerUrl_example", modelName: "modelName_example", modelDescription: "modelDescription_example", modelNumber: "modelNumber_example", modelUrl: "modelUrl_example", serialNumber: "serialNumber_example", enableAlbumArtInDidl: false, enableSingleAlbumArtLimit: false, enableSingleSubtitleLimit: false, supportedMediaTypes: "supportedMediaTypes_example", userId: "userId_example", albumArtPn: "albumArtPn_example", maxAlbumArtWidth: 123, maxAlbumArtHeight: 123, maxIconWidth: 123, maxIconHeight: 123, maxStreamingBitrate: 123, maxStaticBitrate: 123, musicStreamingTranscodingBitrate: 123, maxStaticMusicBitrate: 123, sonyAggregationFlags: "sonyAggregationFlags_example", protocolInfo: "protocolInfo_example", timelineOffsetSeconds: 123, requiresPlainVideoItems: false, requiresPlainFolders: false, enableMSMediaReceiverRegistrar: false, ignoreTranscodeByteRangeRequests: false, xmlRootAttributes: [XmlAttribute(name: "name_example", value: "value_example")], directPlayProfiles: [DirectPlayProfile(container: "container_example", audioCodec: "audioCodec_example", videoCodec: "videoCodec_example", type: DlnaProfileType())], transcodingProfiles: [TranscodingProfile(container: "container_example", type: nil, videoCodec: "videoCodec_example", audioCodec: "audioCodec_example", _protocol: "_protocol_example", estimateContentLength: false, enableMpegtsM2TsMode: false, transcodeSeekInfo: TranscodeSeekInfo(), copyTimestamps: false, context: EncodingContext(), enableSubtitlesInManifest: false, maxAudioChannels: "maxAudioChannels_example", minSegments: 123, segmentLength: 123, breakOnNonKeyFrames: false, conditions: [ProfileCondition(condition: ProfileConditionType(), property: ProfileConditionValue(), value: "value_example", isRequired: false)])], containerProfiles: [ContainerProfile(type: nil, conditions: [nil], container: "container_example")], codecProfiles: [CodecProfile(type: CodecType(), conditions: [nil], applyConditions: [nil], codec: "codec_example", container: "container_example")], responseProfiles: [ResponseProfile(container: "container_example", audioCodec: "audioCodec_example", videoCodec: "videoCodec_example", type: nil, orgPn: "orgPn_example", mimeType: "mimeType_example", conditions: [nil])], subtitleProfiles: [SubtitleProfile(format: "format_example", method: SubtitleDeliveryMethod(), didlMode: "didlMode_example", language: "language_example", container: "container_example")]), directPlayProtocols: [MediaProtocol()]) // OpenLiveStreamRequest | The open live stream dto. (optional) - -// Opens a media source. -MediaInfoAPI.openLiveStream(openToken: openToken, userId: userId, playSessionId: playSessionId, maxStreamingBitrate: maxStreamingBitrate, startTimeTicks: startTimeTicks, audioStreamIndex: audioStreamIndex, subtitleStreamIndex: subtitleStreamIndex, maxAudioChannels: maxAudioChannels, itemId: itemId, enableDirectPlay: enableDirectPlay, enableDirectStream: enableDirectStream, openLiveStreamRequest: openLiveStreamRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **openToken** | **String** | The open token. | [optional] - **userId** | **String** | The user id. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **maxStreamingBitrate** | **Int** | The maximum streaming bitrate. | [optional] - **startTimeTicks** | **Int64** | The start time in ticks. | [optional] - **audioStreamIndex** | **Int** | The audio stream index. | [optional] - **subtitleStreamIndex** | **Int** | The subtitle stream index. | [optional] - **maxAudioChannels** | **Int** | The maximum number of audio channels. | [optional] - **itemId** | **String** | The item id. | [optional] - **enableDirectPlay** | **Bool** | Whether to enable direct play. Default: true. | [optional] - **enableDirectStream** | **Bool** | Whether to enable direct stream. Default: true. | [optional] - **openLiveStreamRequest** | [**OpenLiveStreamRequest**](OpenLiveStreamRequest.md) | The open live stream dto. | [optional] - -### Return type - -[**LiveStreamResponse**](LiveStreamResponse.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/MediaPathDto.md b/docs/MediaPathDto.md deleted file mode 100644 index 986d1481e..000000000 --- a/docs/MediaPathDto.md +++ /dev/null @@ -1,12 +0,0 @@ -# MediaPathDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name of the library. | -**path** | **String** | Gets or sets the path to add. | [optional] -**pathInfo** | [**MediaPathDtoPathInfo**](MediaPathDtoPathInfo.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaPathDtoPathInfo.md b/docs/MediaPathDtoPathInfo.md deleted file mode 100644 index 6b862b4bc..000000000 --- a/docs/MediaPathDtoPathInfo.md +++ /dev/null @@ -1,11 +0,0 @@ -# MediaPathDtoPathInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**path** | **String** | | [optional] -**networkPath** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaPathInfo.md b/docs/MediaPathInfo.md deleted file mode 100644 index efcb2ed39..000000000 --- a/docs/MediaPathInfo.md +++ /dev/null @@ -1,11 +0,0 @@ -# MediaPathInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**path** | **String** | | [optional] -**networkPath** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaProtocol.md b/docs/MediaProtocol.md deleted file mode 100644 index c8f936cfc..000000000 --- a/docs/MediaProtocol.md +++ /dev/null @@ -1,9 +0,0 @@ -# MediaProtocol - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaSourceInfo.md b/docs/MediaSourceInfo.md deleted file mode 100644 index 3a532be36..000000000 --- a/docs/MediaSourceInfo.md +++ /dev/null @@ -1,51 +0,0 @@ -# MediaSourceInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**_protocol** | [**MediaProtocol**](MediaProtocol.md) | | [optional] -**id** | **String** | | [optional] -**path** | **String** | | [optional] -**encoderPath** | **String** | | [optional] -**encoderProtocol** | [**MediaProtocol**](MediaProtocol.md) | | [optional] -**type** | [**MediaSourceType**](MediaSourceType.md) | | [optional] -**container** | **String** | | [optional] -**size** | **Int64** | | [optional] -**name** | **String** | | [optional] -**isRemote** | **Bool** | Gets or sets a value indicating whether the media is remote. Differentiate internet url vs local network. | [optional] -**eTag** | **String** | | [optional] -**runTimeTicks** | **Int64** | | [optional] -**readAtNativeFramerate** | **Bool** | | [optional] -**ignoreDts** | **Bool** | | [optional] -**ignoreIndex** | **Bool** | | [optional] -**genPtsInput** | **Bool** | | [optional] -**supportsTranscoding** | **Bool** | | [optional] -**supportsDirectStream** | **Bool** | | [optional] -**supportsDirectPlay** | **Bool** | | [optional] -**isInfiniteStream** | **Bool** | | [optional] -**requiresOpening** | **Bool** | | [optional] -**openToken** | **String** | | [optional] -**requiresClosing** | **Bool** | | [optional] -**liveStreamId** | **String** | | [optional] -**bufferMs** | **Int** | | [optional] -**requiresLooping** | **Bool** | | [optional] -**supportsProbing** | **Bool** | | [optional] -**videoType** | [**VideoType**](VideoType.md) | | [optional] -**isoType** | [**IsoType**](IsoType.md) | | [optional] -**video3DFormat** | [**Video3DFormat**](Video3DFormat.md) | | [optional] -**mediaStreams** | [MediaStream] | | [optional] -**mediaAttachments** | [MediaAttachment] | | [optional] -**formats** | **[String]** | | [optional] -**bitrate** | **Int** | | [optional] -**timestamp** | [**TransportStreamTimestamp**](TransportStreamTimestamp.md) | | [optional] -**requiredHttpHeaders** | **[String: String]** | | [optional] -**transcodingUrl** | **String** | | [optional] -**transcodingSubProtocol** | **String** | | [optional] -**transcodingContainer** | **String** | | [optional] -**analyzeDurationMs** | **Int** | | [optional] -**defaultAudioStreamIndex** | **Int** | | [optional] -**defaultSubtitleStreamIndex** | **Int** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaSourceType.md b/docs/MediaSourceType.md deleted file mode 100644 index 2416051df..000000000 --- a/docs/MediaSourceType.md +++ /dev/null @@ -1,9 +0,0 @@ -# MediaSourceType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaStream.md b/docs/MediaStream.md deleted file mode 100644 index b64d1693d..000000000 --- a/docs/MediaStream.md +++ /dev/null @@ -1,57 +0,0 @@ -# MediaStream - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**codec** | **String** | Gets or sets the codec. | [optional] -**codecTag** | **String** | Gets or sets the codec tag. | [optional] -**language** | **String** | Gets or sets the language. | [optional] -**colorRange** | **String** | Gets or sets the color range. | [optional] -**colorSpace** | **String** | Gets or sets the color space. | [optional] -**colorTransfer** | **String** | Gets or sets the color transfer. | [optional] -**colorPrimaries** | **String** | Gets or sets the color primaries. | [optional] -**comment** | **String** | Gets or sets the comment. | [optional] -**timeBase** | **String** | Gets or sets the time base. | [optional] -**codecTimeBase** | **String** | Gets or sets the codec time base. | [optional] -**title** | **String** | Gets or sets the title. | [optional] -**videoRange** | **String** | Gets the video range. | [optional] [readonly] -**localizedUndefined** | **String** | | [optional] -**localizedDefault** | **String** | | [optional] -**localizedForced** | **String** | | [optional] -**localizedExternal** | **String** | | [optional] -**displayTitle** | **String** | | [optional] [readonly] -**nalLengthSize** | **String** | | [optional] -**isInterlaced** | **Bool** | Gets or sets a value indicating whether this instance is interlaced. | [optional] -**isAVC** | **Bool** | | [optional] -**channelLayout** | **String** | Gets or sets the channel layout. | [optional] -**bitRate** | **Int** | Gets or sets the bit rate. | [optional] -**bitDepth** | **Int** | Gets or sets the bit depth. | [optional] -**refFrames** | **Int** | Gets or sets the reference frames. | [optional] -**packetLength** | **Int** | Gets or sets the length of the packet. | [optional] -**channels** | **Int** | Gets or sets the channels. | [optional] -**sampleRate** | **Int** | Gets or sets the sample rate. | [optional] -**isDefault** | **Bool** | Gets or sets a value indicating whether this instance is default. | [optional] -**isForced** | **Bool** | Gets or sets a value indicating whether this instance is forced. | [optional] -**height** | **Int** | Gets or sets the height. | [optional] -**width** | **Int** | Gets or sets the width. | [optional] -**averageFrameRate** | **Float** | Gets or sets the average frame rate. | [optional] -**realFrameRate** | **Float** | Gets or sets the real frame rate. | [optional] -**profile** | **String** | Gets or sets the profile. | [optional] -**type** | [**MediaStreamType**](MediaStreamType.md) | Gets or sets the type. | [optional] -**aspectRatio** | **String** | Gets or sets the aspect ratio. | [optional] -**index** | **Int** | Gets or sets the index. | [optional] -**score** | **Int** | Gets or sets the score. | [optional] -**isExternal** | **Bool** | Gets or sets a value indicating whether this instance is external. | [optional] -**deliveryMethod** | [**SubtitleDeliveryMethod**](SubtitleDeliveryMethod.md) | Gets or sets the method. | [optional] -**deliveryUrl** | **String** | Gets or sets the delivery URL. | [optional] -**isExternalUrl** | **Bool** | Gets or sets a value indicating whether this instance is external URL. | [optional] -**isTextSubtitleStream** | **Bool** | | [optional] [readonly] -**supportsExternalStream** | **Bool** | Gets or sets a value indicating whether [supports external stream]. | [optional] -**path** | **String** | Gets or sets the filename. | [optional] -**pixelFormat** | **String** | Gets or sets the pixel format. | [optional] -**level** | **Double** | Gets or sets the level. | [optional] -**isAnamorphic** | **Bool** | Gets or sets whether this instance is anamorphic. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaStreamType.md b/docs/MediaStreamType.md deleted file mode 100644 index 8a8f92476..000000000 --- a/docs/MediaStreamType.md +++ /dev/null @@ -1,9 +0,0 @@ -# MediaStreamType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaUpdateInfoDto.md b/docs/MediaUpdateInfoDto.md deleted file mode 100644 index 7ad532657..000000000 --- a/docs/MediaUpdateInfoDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# MediaUpdateInfoDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**updates** | [MediaUpdateInfoPathDto] | Gets or sets the list of updates. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaUpdateInfoPathDto.md b/docs/MediaUpdateInfoPathDto.md deleted file mode 100644 index a22492cd5..000000000 --- a/docs/MediaUpdateInfoPathDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# MediaUpdateInfoPathDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**path** | **String** | Gets or sets media path. | [optional] -**updateType** | **String** | Gets or sets media update type. Created, Modified, Deleted. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MediaUrl.md b/docs/MediaUrl.md deleted file mode 100644 index a2b8c6422..000000000 --- a/docs/MediaUrl.md +++ /dev/null @@ -1,11 +0,0 @@ -# MediaUrl - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**url** | **String** | | [optional] -**name** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MessageCommand.md b/docs/MessageCommand.md deleted file mode 100644 index 5ff52fce9..000000000 --- a/docs/MessageCommand.md +++ /dev/null @@ -1,12 +0,0 @@ -# MessageCommand - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**header** | **String** | | [optional] -**text** | **String** | | -**timeoutMs** | **Int64** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MetadataConfiguration.md b/docs/MetadataConfiguration.md deleted file mode 100644 index 623fd4a2a..000000000 --- a/docs/MetadataConfiguration.md +++ /dev/null @@ -1,10 +0,0 @@ -# MetadataConfiguration - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**useFileCreationTimeForDateAdded** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MetadataEditorInfo.md b/docs/MetadataEditorInfo.md deleted file mode 100644 index fe84ed823..000000000 --- a/docs/MetadataEditorInfo.md +++ /dev/null @@ -1,15 +0,0 @@ -# MetadataEditorInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**parentalRatingOptions** | [ParentalRating] | | [optional] -**countries** | [CountryInfo] | | [optional] -**cultures** | [CultureDto] | | [optional] -**externalIdInfos** | [ExternalIdInfo] | | [optional] -**contentType** | **String** | | [optional] -**contentTypeOptions** | [NameValuePair] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MetadataField.md b/docs/MetadataField.md deleted file mode 100644 index 9b34316e2..000000000 --- a/docs/MetadataField.md +++ /dev/null @@ -1,9 +0,0 @@ -# MetadataField - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MetadataOptions.md b/docs/MetadataOptions.md deleted file mode 100644 index 4dee824fa..000000000 --- a/docs/MetadataOptions.md +++ /dev/null @@ -1,16 +0,0 @@ -# MetadataOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**itemType** | **String** | | [optional] -**disabledMetadataSavers** | **[String]** | | [optional] -**localMetadataReaderOrder** | **[String]** | | [optional] -**disabledMetadataFetchers** | **[String]** | | [optional] -**metadataFetcherOrder** | **[String]** | | [optional] -**disabledImageFetchers** | **[String]** | | [optional] -**imageFetcherOrder** | **[String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MetadataRefreshMode.md b/docs/MetadataRefreshMode.md deleted file mode 100644 index 483e794e0..000000000 --- a/docs/MetadataRefreshMode.md +++ /dev/null @@ -1,9 +0,0 @@ -# MetadataRefreshMode - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MovePlaylistItemRequestDto.md b/docs/MovePlaylistItemRequestDto.md deleted file mode 100644 index b0f763c87..000000000 --- a/docs/MovePlaylistItemRequestDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# MovePlaylistItemRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playlistItemId** | **String** | Gets or sets the playlist identifier of the item. | [optional] -**newIndex** | **Int** | Gets or sets the new position. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MovieInfo.md b/docs/MovieInfo.md deleted file mode 100644 index 48a7100d0..000000000 --- a/docs/MovieInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# MovieInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MovieInfoRemoteSearchQuery.md b/docs/MovieInfoRemoteSearchQuery.md deleted file mode 100644 index d6a270b88..000000000 --- a/docs/MovieInfoRemoteSearchQuery.md +++ /dev/null @@ -1,13 +0,0 @@ -# MovieInfoRemoteSearchQuery - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**MovieInfoRemoteSearchQuerySearchInfo**](MovieInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MovieInfoRemoteSearchQuerySearchInfo.md b/docs/MovieInfoRemoteSearchQuerySearchInfo.md deleted file mode 100644 index 2df65fe55..000000000 --- a/docs/MovieInfoRemoteSearchQuerySearchInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# MovieInfoRemoteSearchQuerySearchInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MoviesAPI.md b/docs/MoviesAPI.md deleted file mode 100644 index b934cb64c..000000000 --- a/docs/MoviesAPI.md +++ /dev/null @@ -1,65 +0,0 @@ -# MoviesAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getMovieRecommendations**](MoviesAPI.md#getmovierecommendations) | **GET** /Movies/Recommendations | Gets movie recommendations. - - -# **getMovieRecommendations** -```swift - open class func getMovieRecommendations(userId: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, categoryLimit: Int? = nil, itemLimit: Int? = nil, completion: @escaping (_ data: [RecommendationDto]?, _ error: Error?) -> Void) -``` - -Gets movie recommendations. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. The fields to return. (optional) -let categoryLimit = 987 // Int | The max number of categories to return. (optional) (default to 5) -let itemLimit = 987 // Int | The max number of items to return per category. (optional) (default to 8) - -// Gets movie recommendations. -MoviesAPI.getMovieRecommendations(userId: userId, parentId: parentId, fields: fields, categoryLimit: categoryLimit, itemLimit: itemLimit) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. The fields to return. | [optional] - **categoryLimit** | **Int** | The max number of categories to return. | [optional] [default to 5] - **itemLimit** | **Int** | The max number of items to return per category. | [optional] [default to 8] - -### Return type - -[**[RecommendationDto]**](RecommendationDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/MusicGenresAPI.md b/docs/MusicGenresAPI.md deleted file mode 100644 index c86b06935..000000000 --- a/docs/MusicGenresAPI.md +++ /dev/null @@ -1,142 +0,0 @@ -# MusicGenresAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getMusicGenre**](MusicGenresAPI.md#getmusicgenre) | **GET** /MusicGenres/{genreName} | Gets a music genre, by name. -[**getMusicGenres**](MusicGenresAPI.md#getmusicgenres) | **GET** /MusicGenres | Gets all music genres from a given item, folder, or the entire library. - - -# **getMusicGenre** -```swift - open class func getMusicGenre(genreName: String, userId: String? = nil, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Gets a music genre, by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let genreName = "genreName_example" // String | The genre name. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) - -// Gets a music genre, by name. -MusicGenresAPI.getMusicGenre(genreName: genreName, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **genreName** | **String** | The genre name. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getMusicGenres** -```swift - open class func getMusicGenres(startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, isFavorite: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, sortBy: [String]? = nil, sortOrder: [SortOrder]? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets all music genres from a given item, folder, or the entire library. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -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 searchTerm = "searchTerm_example" // String | The search term. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited. (optional) -let isFavorite = true // Bool | Optional filter by items that are marked as favorite, or not. (optional) -let imageTypeLimit = 987 // Int | Optional, the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let userId = "userId_example" // String | User id. (optional) -let nameStartsWithOrGreater = "nameStartsWithOrGreater_example" // String | Optional filter by items whose name is sorted equally or greater than a given input string. (optional) -let nameStartsWith = "nameStartsWith_example" // String | Optional filter by items whose name is sorted equally than a given input string. (optional) -let nameLessThan = "nameLessThan_example" // String | Optional filter by items whose name is equally or lesser than a given input string. (optional) -let sortBy = ["inner_example"] // [String] | Optional. Specify one or more sort orders, comma delimited. (optional) -let sortOrder = [SortOrder()] // [SortOrder] | Sort Order - Ascending,Descending. (optional) -let enableImages = true // Bool | Optional, include image information in output. (optional) (default to true) -let enableTotalRecordCount = true // Bool | Optional. Include total record count. (optional) (default to true) - -// Gets all music genres from a given item, folder, or the entire library. -MusicGenresAPI.getMusicGenres(startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, isFavorite: isFavorite, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, userId: userId, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, sortBy: sortBy, sortOrder: sortOrder, enableImages: enableImages, enableTotalRecordCount: enableTotalRecordCount) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **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] - **searchTerm** | **String** | The search term. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited. | [optional] - **isFavorite** | **Bool** | Optional filter by items that are marked as favorite, or not. | [optional] - **imageTypeLimit** | **Int** | Optional, the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **userId** | **String** | User id. | [optional] - **nameStartsWithOrGreater** | **String** | Optional filter by items whose name is sorted equally or greater than a given input string. | [optional] - **nameStartsWith** | **String** | Optional filter by items whose name is sorted equally than a given input string. | [optional] - **nameLessThan** | **String** | Optional filter by items whose name is equally or lesser than a given input string. | [optional] - **sortBy** | [**[String]**](String.md) | Optional. Specify one or more sort orders, comma delimited. | [optional] - **sortOrder** | [**[SortOrder]**](SortOrder.md) | Sort Order - Ascending,Descending. | [optional] - **enableImages** | **Bool** | Optional, include image information in output. | [optional] [default to true] - **enableTotalRecordCount** | **Bool** | Optional. Include total record count. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/MusicVideoInfo.md b/docs/MusicVideoInfo.md deleted file mode 100644 index da3b42b69..000000000 --- a/docs/MusicVideoInfo.md +++ /dev/null @@ -1,21 +0,0 @@ -# MusicVideoInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] -**artists** | **[String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MusicVideoInfoRemoteSearchQuery.md b/docs/MusicVideoInfoRemoteSearchQuery.md deleted file mode 100644 index f91dde4e3..000000000 --- a/docs/MusicVideoInfoRemoteSearchQuery.md +++ /dev/null @@ -1,13 +0,0 @@ -# MusicVideoInfoRemoteSearchQuery - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**MusicVideoInfoRemoteSearchQuerySearchInfo**](MusicVideoInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/MusicVideoInfoRemoteSearchQuerySearchInfo.md b/docs/MusicVideoInfoRemoteSearchQuerySearchInfo.md deleted file mode 100644 index 4017836db..000000000 --- a/docs/MusicVideoInfoRemoteSearchQuerySearchInfo.md +++ /dev/null @@ -1,21 +0,0 @@ -# MusicVideoInfoRemoteSearchQuerySearchInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] -**artists** | **[String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NameGuidPair.md b/docs/NameGuidPair.md deleted file mode 100644 index 012aacdea..000000000 --- a/docs/NameGuidPair.md +++ /dev/null @@ -1,11 +0,0 @@ -# NameGuidPair - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | | [optional] -**id** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NameIdPair.md b/docs/NameIdPair.md deleted file mode 100644 index b4db671db..000000000 --- a/docs/NameIdPair.md +++ /dev/null @@ -1,11 +0,0 @@ -# NameIdPair - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**id** | **String** | Gets or sets the identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NameValuePair.md b/docs/NameValuePair.md deleted file mode 100644 index 4a4ab532f..000000000 --- a/docs/NameValuePair.md +++ /dev/null @@ -1,11 +0,0 @@ -# NameValuePair - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**value** | **String** | Gets or sets the value. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NetworkConfiguration.md b/docs/NetworkConfiguration.md deleted file mode 100644 index 814247371..000000000 --- a/docs/NetworkConfiguration.md +++ /dev/null @@ -1,43 +0,0 @@ -# NetworkConfiguration - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**requireHttps** | **Bool** | Gets or sets a value indicating whether the server should force connections over HTTPS. | [optional] -**certificatePath** | **String** | Gets or sets the filesystem path of an X.509 certificate to use for SSL. | [optional] -**certificatePassword** | **String** | Gets or sets the password required to access the X.509 certificate data in the file specified by Jellyfin.Networking.Configuration.NetworkConfiguration.CertificatePath. | [optional] -**baseUrl** | **String** | Gets or sets a value used to specify the URL prefix that your Jellyfin instance can be accessed at. | [optional] -**publicHttpsPort** | **Int** | Gets or sets the public HTTPS port. | [optional] -**httpServerPortNumber** | **Int** | Gets or sets the HTTP server port number. | [optional] -**httpsPortNumber** | **Int** | Gets or sets the HTTPS server port number. | [optional] -**enableHttps** | **Bool** | Gets or sets a value indicating whether to use HTTPS. | [optional] -**publicPort** | **Int** | Gets or sets the public mapped port. | [optional] -**uPnPCreateHttpPortMap** | **Bool** | Gets or sets a value indicating whether the http port should be mapped as part of UPnP automatic port forwarding. | [optional] -**uDPPortRange** | **String** | Gets or sets the UDPPortRange. | [optional] -**enableIPV6** | **Bool** | Gets or sets a value indicating whether gets or sets IPV6 capability. | [optional] -**enableIPV4** | **Bool** | Gets or sets a value indicating whether gets or sets IPV4 capability. | [optional] -**enableSSDPTracing** | **Bool** | Gets or sets a value indicating whether detailed SSDP logs are sent to the console/log. \"Emby.Dlna\": \"Debug\" must be set in logging.default.json for this property to have any effect. | [optional] -**sSDPTracingFilter** | **String** | Gets or sets the SSDPTracingFilter Gets or sets a value indicating whether an IP address is to be used to filter the detailed ssdp logs that are being sent to the console/log. If the setting \"Emby.Dlna\": \"Debug\" msut be set in logging.default.json for this property to work. | [optional] -**uDPSendCount** | **Int** | Gets or sets the number of times SSDP UDP messages are sent. | [optional] -**uDPSendDelay** | **Int** | Gets or sets the delay between each groups of SSDP messages (in ms). | [optional] -**ignoreVirtualInterfaces** | **Bool** | Gets or sets a value indicating whether address names that match Jellyfin.Networking.Configuration.NetworkConfiguration.VirtualInterfaceNames should be Ignore for the purposes of binding. | [optional] -**virtualInterfaceNames** | **String** | Gets or sets a value indicating the interfaces that should be ignored. The list can be comma separated. <seealso cref=\"P:Jellyfin.Networking.Configuration.NetworkConfiguration.IgnoreVirtualInterfaces\" />. | [optional] -**gatewayMonitorPeriod** | **Int** | Gets or sets the time (in seconds) between the pings of SSDP gateway monitor. | [optional] -**enableMultiSocketBinding** | **Bool** | Gets a value indicating whether multi-socket binding is available. | [optional] [readonly] -**trustAllIP6Interfaces** | **Bool** | Gets or sets a value indicating whether all IPv6 interfaces should be treated as on the internal network. Depending on the address range implemented ULA ranges might not be used. | [optional] -**hDHomerunPortRange** | **String** | Gets or sets the ports that HDHomerun uses. | [optional] -**publishedServerUriBySubnet** | **[String]** | Gets or sets the PublishedServerUriBySubnet Gets or sets PublishedServerUri to advertise for specific subnets. | [optional] -**autoDiscoveryTracing** | **Bool** | Gets or sets a value indicating whether Autodiscovery tracing is enabled. | [optional] -**autoDiscovery** | **Bool** | Gets or sets a value indicating whether Autodiscovery is enabled. | [optional] -**remoteIPFilter** | **[String]** | Gets or sets the filter for remote IP connectivity. Used in conjuntion with <seealso cref=\"P:Jellyfin.Networking.Configuration.NetworkConfiguration.IsRemoteIPFilterBlacklist\" />. | [optional] -**isRemoteIPFilterBlacklist** | **Bool** | Gets or sets a value indicating whether <seealso cref=\"P:Jellyfin.Networking.Configuration.NetworkConfiguration.RemoteIPFilter\" /> contains a blacklist or a whitelist. Default is a whitelist. | [optional] -**enableUPnP** | **Bool** | Gets or sets a value indicating whether to enable automatic port forwarding. | [optional] -**enableRemoteAccess** | **Bool** | Gets or sets a value indicating whether access outside of the LAN is permitted. | [optional] -**localNetworkSubnets** | **[String]** | Gets or sets the subnets that are deemed to make up the LAN. | [optional] -**localNetworkAddresses** | **[String]** | Gets or sets the interface addresses which Jellyfin will bind to. If empty, all interfaces will be used. | [optional] -**knownProxies** | **[String]** | Gets or sets the known proxies. If the proxy is a network, it's added to the KnownNetworks. | [optional] -**enablePublishedServerUriByRequest** | **Bool** | Gets or sets a value indicating whether the published server uri is based on information in HTTP requests. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NewGroupRequestDto.md b/docs/NewGroupRequestDto.md deleted file mode 100644 index 43d661bbf..000000000 --- a/docs/NewGroupRequestDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# NewGroupRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**groupName** | **String** | Gets or sets the group name. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NextItemRequestDto.md b/docs/NextItemRequestDto.md deleted file mode 100644 index 576e9dfce..000000000 --- a/docs/NextItemRequestDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# NextItemRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playlistItemId** | **String** | Gets or sets the playing item identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NotificationDto.md b/docs/NotificationDto.md deleted file mode 100644 index facfc4905..000000000 --- a/docs/NotificationDto.md +++ /dev/null @@ -1,17 +0,0 @@ -# NotificationDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | Gets or sets the notification ID. Defaults to an empty string. | [optional] -**userId** | **String** | Gets or sets the notification's user ID. Defaults to an empty string. | [optional] -**date** | **Date** | Gets or sets the notification date. | [optional] -**isRead** | **Bool** | Gets or sets a value indicating whether the notification has been read. Defaults to false. | [optional] -**name** | **String** | Gets or sets the notification's name. Defaults to an empty string. | [optional] -**description** | **String** | Gets or sets the notification's description. Defaults to an empty string. | [optional] -**url** | **String** | Gets or sets the notification's URL. Defaults to an empty string. | [optional] -**level** | [**NotificationLevel**](NotificationLevel.md) | Gets or sets the notification level. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NotificationLevel.md b/docs/NotificationLevel.md deleted file mode 100644 index 38c2b33d9..000000000 --- a/docs/NotificationLevel.md +++ /dev/null @@ -1,9 +0,0 @@ -# NotificationLevel - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NotificationOption.md b/docs/NotificationOption.md deleted file mode 100644 index 845977c30..000000000 --- a/docs/NotificationOption.md +++ /dev/null @@ -1,15 +0,0 @@ -# NotificationOption - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**type** | **String** | | [optional] -**disabledMonitorUsers** | **[String]** | Gets or sets user Ids to not monitor (it's opt out). | [optional] -**sendToUsers** | **[String]** | Gets or sets user Ids to send to (if SendToUserMode == Custom). | [optional] -**enabled** | **Bool** | Gets or sets a value indicating whether this MediaBrowser.Model.Notifications.NotificationOption is enabled. | [optional] -**disabledServices** | **[String]** | Gets or sets the disabled services. | [optional] -**sendToUserMode** | [**SendToUserType**](SendToUserType.md) | Gets or sets the send to user mode. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NotificationOptions.md b/docs/NotificationOptions.md deleted file mode 100644 index 025e8fd63..000000000 --- a/docs/NotificationOptions.md +++ /dev/null @@ -1,10 +0,0 @@ -# NotificationOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**options** | [NotificationOption] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NotificationResultDto.md b/docs/NotificationResultDto.md deleted file mode 100644 index 5e1d87977..000000000 --- a/docs/NotificationResultDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# NotificationResultDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**notifications** | [NotificationDto] | Gets or sets the current page of notifications. | [optional] -**totalRecordCount** | **Int** | Gets or sets the total number of notifications. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NotificationTypeInfo.md b/docs/NotificationTypeInfo.md deleted file mode 100644 index 957e0658f..000000000 --- a/docs/NotificationTypeInfo.md +++ /dev/null @@ -1,14 +0,0 @@ -# NotificationTypeInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**type** | **String** | | [optional] -**name** | **String** | | [optional] -**enabled** | **Bool** | | [optional] -**category** | **String** | | [optional] -**isBasedOnUserEvent** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/NotificationsAPI.md b/docs/NotificationsAPI.md deleted file mode 100644 index 293378553..000000000 --- a/docs/NotificationsAPI.md +++ /dev/null @@ -1,343 +0,0 @@ -# NotificationsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**createAdminNotification**](NotificationsAPI.md#createadminnotification) | **POST** /Notifications/Admin | Sends a notification to all admins. -[**getNotificationServices**](NotificationsAPI.md#getnotificationservices) | **GET** /Notifications/Services | Gets notification services. -[**getNotificationTypes**](NotificationsAPI.md#getnotificationtypes) | **GET** /Notifications/Types | Gets notification types. -[**getNotifications**](NotificationsAPI.md#getnotifications) | **GET** /Notifications/{userId} | Gets a user's notifications. -[**getNotificationsSummary**](NotificationsAPI.md#getnotificationssummary) | **GET** /Notifications/{userId}/Summary | Gets a user's notification summary. -[**setRead**](NotificationsAPI.md#setread) | **POST** /Notifications/{userId}/Read | Sets notifications as read. -[**setUnread**](NotificationsAPI.md#setunread) | **POST** /Notifications/{userId}/Unread | Sets notifications as unread. - - -# **createAdminNotification** -```swift - open class func createAdminNotification(createAdminNotificationRequest: CreateAdminNotificationRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Sends a notification to all admins. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let createAdminNotificationRequest = CreateAdminNotification_request(name: "name_example", description: "description_example", notificationLevel: NotificationLevel(), url: "url_example") // CreateAdminNotificationRequest | The notification request. - -// Sends a notification to all admins. -NotificationsAPI.createAdminNotification(createAdminNotificationRequest: createAdminNotificationRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **createAdminNotificationRequest** | [**CreateAdminNotificationRequest**](CreateAdminNotificationRequest.md) | The notification request. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getNotificationServices** -```swift - open class func getNotificationServices(completion: @escaping (_ data: [NameIdPair]?, _ error: Error?) -> Void) -``` - -Gets notification services. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets notification services. -NotificationsAPI.getNotificationServices() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[NameIdPair]**](NameIdPair.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getNotificationTypes** -```swift - open class func getNotificationTypes(completion: @escaping (_ data: [NotificationTypeInfo]?, _ error: Error?) -> Void) -``` - -Gets notification types. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets notification types. -NotificationsAPI.getNotificationTypes() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[NotificationTypeInfo]**](NotificationTypeInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getNotifications** -```swift - open class func getNotifications(userId: String, completion: @escaping (_ data: NotificationResultDto?, _ error: Error?) -> Void) -``` - -Gets a user's notifications. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | - -// Gets a user's notifications. -NotificationsAPI.getNotifications(userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | | - -### Return type - -[**NotificationResultDto**](NotificationResultDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getNotificationsSummary** -```swift - open class func getNotificationsSummary(userId: String, completion: @escaping (_ data: NotificationsSummaryDto?, _ error: Error?) -> Void) -``` - -Gets a user's notification summary. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | - -// Gets a user's notification summary. -NotificationsAPI.getNotificationsSummary(userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | | - -### Return type - -[**NotificationsSummaryDto**](NotificationsSummaryDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **setRead** -```swift - open class func setRead(userId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Sets notifications as read. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | - -// Sets notifications as read. -NotificationsAPI.setRead(userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **setUnread** -```swift - open class func setUnread(userId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Sets notifications as unread. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | - -// Sets notifications as unread. -NotificationsAPI.setUnread(userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/NotificationsSummaryDto.md b/docs/NotificationsSummaryDto.md deleted file mode 100644 index b7a8635ea..000000000 --- a/docs/NotificationsSummaryDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# NotificationsSummaryDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**unreadCount** | **Int** | Gets or sets the number of unread notifications. | [optional] -**maxUnreadNotificationLevel** | [**NotificationLevel**](NotificationLevel.md) | Gets or sets the maximum unread notification level. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ObjectGroupUpdate.md b/docs/ObjectGroupUpdate.md deleted file mode 100644 index bcb6e389f..000000000 --- a/docs/ObjectGroupUpdate.md +++ /dev/null @@ -1,12 +0,0 @@ -# ObjectGroupUpdate - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**groupId** | **String** | Gets the group identifier. | [optional] -**type** | [**GroupUpdateType**](GroupUpdateType.md) | Gets the update type. | [optional] -**data** | [**AnyCodable**](.md) | Gets the update data. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/OpenLiveStreamDto.md b/docs/OpenLiveStreamDto.md deleted file mode 100644 index fe09d6c75..000000000 --- a/docs/OpenLiveStreamDto.md +++ /dev/null @@ -1,22 +0,0 @@ -# OpenLiveStreamDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**openToken** | **String** | Gets or sets the open token. | [optional] -**userId** | **String** | Gets or sets the user id. | [optional] -**playSessionId** | **String** | Gets or sets the play session id. | [optional] -**maxStreamingBitrate** | **Int** | Gets or sets the max streaming bitrate. | [optional] -**startTimeTicks** | **Int64** | Gets or sets the start time in ticks. | [optional] -**audioStreamIndex** | **Int** | Gets or sets the audio stream index. | [optional] -**subtitleStreamIndex** | **Int** | Gets or sets the subtitle stream index. | [optional] -**maxAudioChannels** | **Int** | Gets or sets the max audio channels. | [optional] -**itemId** | **String** | Gets or sets the item id. | [optional] -**enableDirectPlay** | **Bool** | Gets or sets a value indicating whether to enable direct play. | [optional] -**enableDirectStream** | **Bool** | Gets or sets a value indicating whether to enale direct stream. | [optional] -**deviceProfile** | [**ClientCapabilitiesDeviceProfile**](ClientCapabilitiesDeviceProfile.md) | | [optional] -**directPlayProtocols** | [MediaProtocol] | Gets or sets the device play protocols. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/OpenLiveStreamRequest.md b/docs/OpenLiveStreamRequest.md deleted file mode 100644 index 09c664504..000000000 --- a/docs/OpenLiveStreamRequest.md +++ /dev/null @@ -1,22 +0,0 @@ -# OpenLiveStreamRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**openToken** | **String** | Gets or sets the open token. | [optional] -**userId** | **String** | Gets or sets the user id. | [optional] -**playSessionId** | **String** | Gets or sets the play session id. | [optional] -**maxStreamingBitrate** | **Int** | Gets or sets the max streaming bitrate. | [optional] -**startTimeTicks** | **Int64** | Gets or sets the start time in ticks. | [optional] -**audioStreamIndex** | **Int** | Gets or sets the audio stream index. | [optional] -**subtitleStreamIndex** | **Int** | Gets or sets the subtitle stream index. | [optional] -**maxAudioChannels** | **Int** | Gets or sets the max audio channels. | [optional] -**itemId** | **String** | Gets or sets the item id. | [optional] -**enableDirectPlay** | **Bool** | Gets or sets a value indicating whether to enable direct play. | [optional] -**enableDirectStream** | **Bool** | Gets or sets a value indicating whether to enale direct stream. | [optional] -**deviceProfile** | [**ClientCapabilitiesDeviceProfile**](ClientCapabilitiesDeviceProfile.md) | | [optional] -**directPlayProtocols** | [MediaProtocol] | Gets or sets the device play protocols. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PackageAPI.md b/docs/PackageAPI.md deleted file mode 100644 index 847e741db..000000000 --- a/docs/PackageAPI.md +++ /dev/null @@ -1,302 +0,0 @@ -# PackageAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**cancelPackageInstallation**](PackageAPI.md#cancelpackageinstallation) | **DELETE** /Packages/Installing/{packageId} | Cancels a package installation. -[**getPackageInfo**](PackageAPI.md#getpackageinfo) | **GET** /Packages/{name} | Gets a package by name or assembly GUID. -[**getPackages**](PackageAPI.md#getpackages) | **GET** /Packages | Gets available packages. -[**getRepositories**](PackageAPI.md#getrepositories) | **GET** /Repositories | Gets all package repositories. -[**installPackage**](PackageAPI.md#installpackage) | **POST** /Packages/Installed/{name} | Installs a package. -[**setRepositories**](PackageAPI.md#setrepositories) | **POST** /Repositories | Sets the enabled and existing package repositories. - - -# **cancelPackageInstallation** -```swift - open class func cancelPackageInstallation(packageId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Cancels a package installation. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let packageId = "packageId_example" // String | Installation Id. - -// Cancels a package installation. -PackageAPI.cancelPackageInstallation(packageId: packageId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **packageId** | **String** | Installation Id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPackageInfo** -```swift - open class func getPackageInfo(name: String, assemblyGuid: String? = nil, completion: @escaping (_ data: PackageInfo?, _ error: Error?) -> Void) -``` - -Gets a package by name or assembly GUID. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The name of the package. -let assemblyGuid = "assemblyGuid_example" // String | The GUID of the associated assembly. (optional) - -// Gets a package by name or assembly GUID. -PackageAPI.getPackageInfo(name: name, assemblyGuid: assemblyGuid) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The name of the package. | - **assemblyGuid** | **String** | The GUID of the associated assembly. | [optional] - -### Return type - -[**PackageInfo**](PackageInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPackages** -```swift - open class func getPackages(completion: @escaping (_ data: [PackageInfo]?, _ error: Error?) -> Void) -``` - -Gets available packages. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets available packages. -PackageAPI.getPackages() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[PackageInfo]**](PackageInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRepositories** -```swift - open class func getRepositories(completion: @escaping (_ data: [RepositoryInfo]?, _ error: Error?) -> Void) -``` - -Gets all package repositories. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets all package repositories. -PackageAPI.getRepositories() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[RepositoryInfo]**](RepositoryInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **installPackage** -```swift - open class func installPackage(name: String, assemblyGuid: String? = nil, version: String? = nil, repositoryUrl: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Installs a package. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Package name. -let assemblyGuid = "assemblyGuid_example" // String | GUID of the associated assembly. (optional) -let version = "version_example" // String | Optional version. Defaults to latest version. (optional) -let repositoryUrl = "repositoryUrl_example" // String | Optional. Specify the repository to install from. (optional) - -// Installs a package. -PackageAPI.installPackage(name: name, assemblyGuid: assemblyGuid, version: version, repositoryUrl: repositoryUrl) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Package name. | - **assemblyGuid** | **String** | GUID of the associated assembly. | [optional] - **version** | **String** | Optional version. Defaults to latest version. | [optional] - **repositoryUrl** | **String** | Optional. Specify the repository to install from. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **setRepositories** -```swift - open class func setRepositories(repositoryInfo: [RepositoryInfo], completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Sets the enabled and existing package repositories. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let repositoryInfo = [RepositoryInfo(name: "name_example", url: "url_example", enabled: false)] // [RepositoryInfo] | The list of package repositories. - -// Sets the enabled and existing package repositories. -PackageAPI.setRepositories(repositoryInfo: repositoryInfo) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **repositoryInfo** | [**[RepositoryInfo]**](RepositoryInfo.md) | The list of package repositories. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/PackageInfo.md b/docs/PackageInfo.md deleted file mode 100644 index 826c206c4..000000000 --- a/docs/PackageInfo.md +++ /dev/null @@ -1,17 +0,0 @@ -# PackageInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**description** | **String** | Gets or sets a long description of the plugin containing features or helpful explanations. | [optional] -**overview** | **String** | Gets or sets a short overview of what the plugin does. | [optional] -**owner** | **String** | Gets or sets the owner. | [optional] -**category** | **String** | Gets or sets the category. | [optional] -**guid** | **String** | Gets or sets the guid of the assembly associated with this plugin. This is used to identify the proper item for automatic updates. | [optional] -**versions** | [VersionInfo] | Gets or sets the versions. | [optional] -**imageUrl** | **String** | Gets or sets the image url for the package. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ParentalRating.md b/docs/ParentalRating.md deleted file mode 100644 index 5f2fa3410..000000000 --- a/docs/ParentalRating.md +++ /dev/null @@ -1,11 +0,0 @@ -# ParentalRating - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**value** | **Int** | Gets or sets the value. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PathSubstitution.md b/docs/PathSubstitution.md deleted file mode 100644 index 608094116..000000000 --- a/docs/PathSubstitution.md +++ /dev/null @@ -1,11 +0,0 @@ -# PathSubstitution - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**from** | **String** | Gets or sets the value to substitute. | [optional] -**to** | **String** | Gets or sets the value to substitution with. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PersonLookupInfo.md b/docs/PersonLookupInfo.md deleted file mode 100644 index d17872126..000000000 --- a/docs/PersonLookupInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# PersonLookupInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PersonLookupInfoRemoteSearchQuery.md b/docs/PersonLookupInfoRemoteSearchQuery.md deleted file mode 100644 index c47819831..000000000 --- a/docs/PersonLookupInfoRemoteSearchQuery.md +++ /dev/null @@ -1,13 +0,0 @@ -# PersonLookupInfoRemoteSearchQuery - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**PersonLookupInfoRemoteSearchQuerySearchInfo**](PersonLookupInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PersonLookupInfoRemoteSearchQuerySearchInfo.md b/docs/PersonLookupInfoRemoteSearchQuerySearchInfo.md deleted file mode 100644 index 002c52840..000000000 --- a/docs/PersonLookupInfoRemoteSearchQuerySearchInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# PersonLookupInfoRemoteSearchQuerySearchInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PersonsAPI.md b/docs/PersonsAPI.md deleted file mode 100644 index 2b1b38602..000000000 --- a/docs/PersonsAPI.md +++ /dev/null @@ -1,132 +0,0 @@ -# PersonsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getPerson**](PersonsAPI.md#getperson) | **GET** /Persons/{name} | Get person by name. -[**getPersons**](PersonsAPI.md#getpersons) | **GET** /Persons | Gets all persons. - - -# **getPerson** -```swift - open class func getPerson(name: String, userId: String? = nil, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Get person by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Person name. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) - -// Get person by name. -PersonsAPI.getPerson(name: name, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Person name. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPersons** -```swift - open class func getPersons(limit: Int? = nil, searchTerm: String? = nil, fields: [ItemFields]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, excludePersonTypes: [String]? = nil, personTypes: [String]? = nil, appearsInItemId: String? = nil, userId: String? = nil, enableImages: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets all persons. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let searchTerm = "searchTerm_example" // String | The search term. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let filters = [ItemFilter()] // [ItemFilter] | Optional. Specify additional filters to apply. (optional) -let isFavorite = true // Bool | Optional filter by items that are marked as favorite, or not. userId is required. (optional) -let enableUserData = true // Bool | Optional, include user data. (optional) -let imageTypeLimit = 987 // Int | Optional, the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let excludePersonTypes = ["inner_example"] // [String] | Optional. If specified results will be filtered to exclude those containing the specified PersonType. Allows multiple, comma-delimited. (optional) -let personTypes = ["inner_example"] // [String] | Optional. If specified results will be filtered to include only those containing the specified PersonType. Allows multiple, comma-delimited. (optional) -let appearsInItemId = "appearsInItemId_example" // String | Optional. If specified, person results will be filtered on items related to said persons. (optional) -let userId = "userId_example" // String | User id. (optional) -let enableImages = true // Bool | Optional, include image information in output. (optional) (default to true) - -// Gets all persons. -PersonsAPI.getPersons(limit: limit, searchTerm: searchTerm, fields: fields, filters: filters, isFavorite: isFavorite, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, excludePersonTypes: excludePersonTypes, personTypes: personTypes, appearsInItemId: appearsInItemId, userId: userId, enableImages: enableImages) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **searchTerm** | **String** | The search term. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **filters** | [**[ItemFilter]**](ItemFilter.md) | Optional. Specify additional filters to apply. | [optional] - **isFavorite** | **Bool** | Optional filter by items that are marked as favorite, or not. userId is required. | [optional] - **enableUserData** | **Bool** | Optional, include user data. | [optional] - **imageTypeLimit** | **Int** | Optional, the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **excludePersonTypes** | [**[String]**](String.md) | Optional. If specified results will be filtered to exclude those containing the specified PersonType. Allows multiple, comma-delimited. | [optional] - **personTypes** | [**[String]**](String.md) | Optional. If specified results will be filtered to include only those containing the specified PersonType. Allows multiple, comma-delimited. | [optional] - **appearsInItemId** | **String** | Optional. If specified, person results will be filtered on items related to said persons. | [optional] - **userId** | **String** | User id. | [optional] - **enableImages** | **Bool** | Optional, include image information in output. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/PinRedeemResult.md b/docs/PinRedeemResult.md deleted file mode 100644 index c283c9b4b..000000000 --- a/docs/PinRedeemResult.md +++ /dev/null @@ -1,11 +0,0 @@ -# PinRedeemResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**success** | **Bool** | Gets or sets a value indicating whether this MediaBrowser.Model.Users.PinRedeemResult is success. | [optional] -**usersReset** | **[String]** | Gets or sets the users reset. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PingRequestDto.md b/docs/PingRequestDto.md deleted file mode 100644 index c0a9cbe1a..000000000 --- a/docs/PingRequestDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# PingRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ping** | **Int64** | Gets or sets the ping time. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlayAccess.md b/docs/PlayAccess.md deleted file mode 100644 index 9bc7cd9c0..000000000 --- a/docs/PlayAccess.md +++ /dev/null @@ -1,9 +0,0 @@ -# PlayAccess - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlayCommand.md b/docs/PlayCommand.md deleted file mode 100644 index e7f010c19..000000000 --- a/docs/PlayCommand.md +++ /dev/null @@ -1,9 +0,0 @@ -# PlayCommand - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlayMethod.md b/docs/PlayMethod.md deleted file mode 100644 index 7e4a332d6..000000000 --- a/docs/PlayMethod.md +++ /dev/null @@ -1,9 +0,0 @@ -# PlayMethod - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlayRequest.md b/docs/PlayRequest.md deleted file mode 100644 index 3195fc2c7..000000000 --- a/docs/PlayRequest.md +++ /dev/null @@ -1,17 +0,0 @@ -# PlayRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**itemIds** | **[String]** | Gets or sets the item ids. | [optional] -**startPositionTicks** | **Int64** | Gets or sets the start position ticks that the first item should be played at. | [optional] -**playCommand** | [**PlayCommand**](PlayCommand.md) | Gets or sets the play command. | [optional] -**controllingUserId** | **String** | Gets or sets the controlling user identifier. | [optional] -**subtitleStreamIndex** | **Int** | | [optional] -**audioStreamIndex** | **Int** | | [optional] -**mediaSourceId** | **String** | | [optional] -**startIndex** | **Int** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlayRequestDto.md b/docs/PlayRequestDto.md deleted file mode 100644 index 1b9618479..000000000 --- a/docs/PlayRequestDto.md +++ /dev/null @@ -1,12 +0,0 @@ -# PlayRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playingQueue** | **[String]** | Gets or sets the playing queue. | [optional] -**playingItemPosition** | **Int** | Gets or sets the position of the playing item in the queue. | [optional] -**startPositionTicks** | **Int64** | Gets or sets the start position ticks. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlaybackErrorCode.md b/docs/PlaybackErrorCode.md deleted file mode 100644 index 313dacabd..000000000 --- a/docs/PlaybackErrorCode.md +++ /dev/null @@ -1,9 +0,0 @@ -# PlaybackErrorCode - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlaybackInfoDto.md b/docs/PlaybackInfoDto.md deleted file mode 100644 index f9881c58d..000000000 --- a/docs/PlaybackInfoDto.md +++ /dev/null @@ -1,24 +0,0 @@ -# PlaybackInfoDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**userId** | **String** | Gets or sets the playback userId. | [optional] -**maxStreamingBitrate** | **Int** | Gets or sets the max streaming bitrate. | [optional] -**startTimeTicks** | **Int64** | Gets or sets the start time in ticks. | [optional] -**audioStreamIndex** | **Int** | Gets or sets the audio stream index. | [optional] -**subtitleStreamIndex** | **Int** | Gets or sets the subtitle stream index. | [optional] -**maxAudioChannels** | **Int** | Gets or sets the max audio channels. | [optional] -**mediaSourceId** | **String** | Gets or sets the media source id. | [optional] -**liveStreamId** | **String** | Gets or sets the live stream id. | [optional] -**deviceProfile** | [**ClientCapabilitiesDeviceProfile**](ClientCapabilitiesDeviceProfile.md) | | [optional] -**enableDirectPlay** | **Bool** | Gets or sets a value indicating whether to enable direct play. | [optional] -**enableDirectStream** | **Bool** | Gets or sets a value indicating whether to enable direct stream. | [optional] -**enableTranscoding** | **Bool** | Gets or sets a value indicating whether to enable transcoding. | [optional] -**allowVideoStreamCopy** | **Bool** | Gets or sets a value indicating whether to enable video stream copy. | [optional] -**allowAudioStreamCopy** | **Bool** | Gets or sets a value indicating whether to allow audio stream copy. | [optional] -**autoOpenLiveStream** | **Bool** | Gets or sets a value indicating whether to auto open the live stream. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlaybackInfoResponse.md b/docs/PlaybackInfoResponse.md deleted file mode 100644 index 4f68e7c65..000000000 --- a/docs/PlaybackInfoResponse.md +++ /dev/null @@ -1,12 +0,0 @@ -# PlaybackInfoResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**mediaSources** | [MediaSourceInfo] | Gets or sets the media sources. | [optional] -**playSessionId** | **String** | Gets or sets the play session identifier. | [optional] -**errorCode** | [**PlaybackErrorCode**](PlaybackErrorCode.md) | Gets or sets the error code. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlaybackProgressInfo.md b/docs/PlaybackProgressInfo.md deleted file mode 100644 index 7d05281fa..000000000 --- a/docs/PlaybackProgressInfo.md +++ /dev/null @@ -1,29 +0,0 @@ -# PlaybackProgressInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**canSeek** | **Bool** | Gets or sets a value indicating whether this instance can seek. | [optional] -**item** | [**PlaybackProgressInfoItem**](PlaybackProgressInfoItem.md) | | [optional] -**itemId** | **String** | Gets or sets the item identifier. | [optional] -**sessionId** | **String** | Gets or sets the session id. | [optional] -**mediaSourceId** | **String** | Gets or sets the media version identifier. | [optional] -**audioStreamIndex** | **Int** | Gets or sets the index of the audio stream. | [optional] -**subtitleStreamIndex** | **Int** | Gets or sets the index of the subtitle stream. | [optional] -**isPaused** | **Bool** | Gets or sets a value indicating whether this instance is paused. | [optional] -**isMuted** | **Bool** | Gets or sets a value indicating whether this instance is muted. | [optional] -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] -**playbackStartTimeTicks** | **Int64** | | [optional] -**volumeLevel** | **Int** | Gets or sets the volume level. | [optional] -**brightness** | **Int** | | [optional] -**aspectRatio** | **String** | | [optional] -**playMethod** | [**PlayMethod**](PlayMethod.md) | Gets or sets the play method. | [optional] -**liveStreamId** | **String** | Gets or sets the live stream identifier. | [optional] -**playSessionId** | **String** | Gets or sets the play session identifier. | [optional] -**repeatMode** | [**RepeatMode**](RepeatMode.md) | Gets or sets the repeat mode. | [optional] -**nowPlayingQueue** | [QueueItem] | | [optional] -**playlistItemId** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlaybackProgressInfoItem.md b/docs/PlaybackProgressInfoItem.md deleted file mode 100644 index 1bb998fc1..000000000 --- a/docs/PlaybackProgressInfoItem.md +++ /dev/null @@ -1,159 +0,0 @@ -# PlaybackProgressInfoItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**etag** | **String** | Gets or sets the etag. | [optional] -**sourceType** | **String** | Gets or sets the type of the source. | [optional] -**playlistItemId** | **String** | Gets or sets the playlist item identifier. | [optional] -**dateCreated** | **Date** | Gets or sets the date created. | [optional] -**dateLastMediaAdded** | **Date** | | [optional] -**extraType** | **String** | | [optional] -**airsBeforeSeasonNumber** | **Int** | | [optional] -**airsAfterSeasonNumber** | **Int** | | [optional] -**airsBeforeEpisodeNumber** | **Int** | | [optional] -**canDelete** | **Bool** | | [optional] -**canDownload** | **Bool** | | [optional] -**hasSubtitles** | **Bool** | | [optional] -**preferredMetadataLanguage** | **String** | | [optional] -**preferredMetadataCountryCode** | **String** | | [optional] -**supportsSync** | **Bool** | Gets or sets a value indicating whether [supports synchronize]. | [optional] -**container** | **String** | | [optional] -**sortName** | **String** | Gets or sets the name of the sort. | [optional] -**forcedSortName** | **String** | | [optional] -**video3DFormat** | [**Video3DFormat**](Video3DFormat.md) | Gets or sets the video3 D format. | [optional] -**premiereDate** | **Date** | Gets or sets the premiere date. | [optional] -**externalUrls** | [ExternalUrl] | Gets or sets the external urls. | [optional] -**mediaSources** | [MediaSourceInfo] | Gets or sets the media versions. | [optional] -**criticRating** | **Float** | Gets or sets the critic rating. | [optional] -**productionLocations** | **[String]** | | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**enableMediaSourceDisplay** | **Bool** | | [optional] -**officialRating** | **String** | Gets or sets the official rating. | [optional] -**customRating** | **String** | Gets or sets the custom rating. | [optional] -**channelId** | **String** | Gets or sets the channel identifier. | [optional] -**channelName** | **String** | | [optional] -**overview** | **String** | Gets or sets the overview. | [optional] -**taglines** | **[String]** | Gets or sets the taglines. | [optional] -**genres** | **[String]** | Gets or sets the genres. | [optional] -**communityRating** | **Float** | Gets or sets the community rating. | [optional] -**cumulativeRunTimeTicks** | **Int64** | Gets or sets the cumulative run time ticks. | [optional] -**runTimeTicks** | **Int64** | Gets or sets the run time ticks. | [optional] -**playAccess** | [**PlayAccess**](PlayAccess.md) | Gets or sets the play access. | [optional] -**aspectRatio** | **String** | Gets or sets the aspect ratio. | [optional] -**productionYear** | **Int** | Gets or sets the production year. | [optional] -**isPlaceHolder** | **Bool** | Gets or sets a value indicating whether this instance is place holder. | [optional] -**number** | **String** | Gets or sets the number. | [optional] -**channelNumber** | **String** | | [optional] -**indexNumber** | **Int** | Gets or sets the index number. | [optional] -**indexNumberEnd** | **Int** | Gets or sets the index number end. | [optional] -**parentIndexNumber** | **Int** | Gets or sets the parent index number. | [optional] -**remoteTrailers** | [MediaUrl] | Gets or sets the trailer urls. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**isHD** | **Bool** | Gets or sets a value indicating whether this instance is HD. | [optional] -**isFolder** | **Bool** | Gets or sets a value indicating whether this instance is folder. | [optional] -**parentId** | **String** | Gets or sets the parent id. | [optional] -**type** | [**BaseItemKind**](BaseItemKind.md) | The base item kind. | [optional] -**people** | [BaseItemPerson] | Gets or sets the people. | [optional] -**studios** | [NameGuidPair] | Gets or sets the studios. | [optional] -**genreItems** | [NameGuidPair] | | [optional] -**parentLogoItemId** | **String** | Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropItemId** | **String** | Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropImageTags** | **[String]** | Gets or sets the parent backdrop image tags. | [optional] -**localTrailerCount** | **Int** | Gets or sets the local trailer count. | [optional] -**userData** | [**BaseItemDtoUserData**](BaseItemDtoUserData.md) | | [optional] -**recursiveItemCount** | **Int** | Gets or sets the recursive item count. | [optional] -**childCount** | **Int** | Gets or sets the child count. | [optional] -**seriesName** | **String** | Gets or sets the name of the series. | [optional] -**seriesId** | **String** | Gets or sets the series id. | [optional] -**seasonId** | **String** | Gets or sets the season identifier. | [optional] -**specialFeatureCount** | **Int** | Gets or sets the special feature count. | [optional] -**displayPreferencesId** | **String** | Gets or sets the display preferences id. | [optional] -**status** | **String** | Gets or sets the status. | [optional] -**airTime** | **String** | Gets or sets the air time. | [optional] -**airDays** | [DayOfWeek] | Gets or sets the air days. | [optional] -**tags** | **[String]** | Gets or sets the tags. | [optional] -**primaryImageAspectRatio** | **Double** | Gets or sets the primary image aspect ratio, after image enhancements. | [optional] -**artists** | **[String]** | Gets or sets the artists. | [optional] -**artistItems** | [NameGuidPair] | Gets or sets the artist items. | [optional] -**album** | **String** | Gets or sets the album. | [optional] -**collectionType** | **String** | Gets or sets the type of the collection. | [optional] -**displayOrder** | **String** | Gets or sets the display order. | [optional] -**albumId** | **String** | Gets or sets the album id. | [optional] -**albumPrimaryImageTag** | **String** | Gets or sets the album image tag. | [optional] -**seriesPrimaryImageTag** | **String** | Gets or sets the series primary image tag. | [optional] -**albumArtist** | **String** | Gets or sets the album artist. | [optional] -**albumArtists** | [NameGuidPair] | Gets or sets the album artists. | [optional] -**seasonName** | **String** | Gets or sets the name of the season. | [optional] -**mediaStreams** | [MediaStream] | Gets or sets the media streams. | [optional] -**videoType** | [**VideoType**](VideoType.md) | Gets or sets the type of the video. | [optional] -**partCount** | **Int** | Gets or sets the part count. | [optional] -**mediaSourceCount** | **Int** | | [optional] -**imageTags** | **[String: String]** | Gets or sets the image tags. | [optional] -**backdropImageTags** | **[String]** | Gets or sets the backdrop image tags. | [optional] -**screenshotImageTags** | **[String]** | Gets or sets the screenshot image tags. | [optional] -**parentLogoImageTag** | **String** | Gets or sets the parent logo image tag. | [optional] -**parentArtItemId** | **String** | Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. | [optional] -**parentArtImageTag** | **String** | Gets or sets the parent art image tag. | [optional] -**seriesThumbImageTag** | **String** | Gets or sets the series thumb image tag. | [optional] -**imageBlurHashes** | [**BaseItemDtoImageBlurHashes**](BaseItemDtoImageBlurHashes.md) | | [optional] -**seriesStudio** | **String** | Gets or sets the series studio. | [optional] -**parentThumbItemId** | **String** | Gets or sets the parent thumb item id. | [optional] -**parentThumbImageTag** | **String** | Gets or sets the parent thumb image tag. | [optional] -**parentPrimaryImageItemId** | **String** | Gets or sets the parent primary image item identifier. | [optional] -**parentPrimaryImageTag** | **String** | Gets or sets the parent primary image tag. | [optional] -**chapters** | [ChapterInfo] | Gets or sets the chapters. | [optional] -**locationType** | [**LocationType**](LocationType.md) | Gets or sets the type of the location. | [optional] -**isoType** | [**IsoType**](IsoType.md) | Gets or sets the type of the iso. | [optional] -**mediaType** | **String** | Gets or sets the type of the media. | [optional] -**endDate** | **Date** | Gets or sets the end date. | [optional] -**lockedFields** | [MetadataField] | Gets or sets the locked fields. | [optional] -**trailerCount** | **Int** | Gets or sets the trailer count. | [optional] -**movieCount** | **Int** | Gets or sets the movie count. | [optional] -**seriesCount** | **Int** | Gets or sets the series count. | [optional] -**programCount** | **Int** | | [optional] -**episodeCount** | **Int** | Gets or sets the episode count. | [optional] -**songCount** | **Int** | Gets or sets the song count. | [optional] -**albumCount** | **Int** | Gets or sets the album count. | [optional] -**artistCount** | **Int** | | [optional] -**musicVideoCount** | **Int** | Gets or sets the music video count. | [optional] -**lockData** | **Bool** | Gets or sets a value indicating whether [enable internet providers]. | [optional] -**width** | **Int** | | [optional] -**height** | **Int** | | [optional] -**cameraMake** | **String** | | [optional] -**cameraModel** | **String** | | [optional] -**software** | **String** | | [optional] -**exposureTime** | **Double** | | [optional] -**focalLength** | **Double** | | [optional] -**imageOrientation** | [**ImageOrientation**](ImageOrientation.md) | | [optional] -**aperture** | **Double** | | [optional] -**shutterSpeed** | **Double** | | [optional] -**latitude** | **Double** | | [optional] -**longitude** | **Double** | | [optional] -**altitude** | **Double** | | [optional] -**isoSpeedRating** | **Int** | | [optional] -**seriesTimerId** | **String** | Gets or sets the series timer identifier. | [optional] -**programId** | **String** | Gets or sets the program identifier. | [optional] -**channelPrimaryImageTag** | **String** | Gets or sets the channel primary image tag. | [optional] -**startDate** | **Date** | Gets or sets the start date of the recording, in UTC. | [optional] -**completionPercentage** | **Double** | Gets or sets the completion percentage. | [optional] -**isRepeat** | **Bool** | Gets or sets a value indicating whether this instance is repeat. | [optional] -**episodeTitle** | **String** | Gets or sets the episode title. | [optional] -**channelType** | [**ChannelType**](ChannelType.md) | Gets or sets the type of the channel. | [optional] -**audio** | [**ProgramAudio**](ProgramAudio.md) | Gets or sets the audio. | [optional] -**isMovie** | **Bool** | Gets or sets a value indicating whether this instance is movie. | [optional] -**isSports** | **Bool** | Gets or sets a value indicating whether this instance is sports. | [optional] -**isSeries** | **Bool** | Gets or sets a value indicating whether this instance is series. | [optional] -**isLive** | **Bool** | Gets or sets a value indicating whether this instance is live. | [optional] -**isNews** | **Bool** | Gets or sets a value indicating whether this instance is news. | [optional] -**isKids** | **Bool** | Gets or sets a value indicating whether this instance is kids. | [optional] -**isPremiere** | **Bool** | Gets or sets a value indicating whether this instance is premiere. | [optional] -**timerId** | **String** | Gets or sets the timer identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlaybackStartInfo.md b/docs/PlaybackStartInfo.md deleted file mode 100644 index 1fcb960c8..000000000 --- a/docs/PlaybackStartInfo.md +++ /dev/null @@ -1,29 +0,0 @@ -# PlaybackStartInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**canSeek** | **Bool** | Gets or sets a value indicating whether this instance can seek. | [optional] -**item** | [**PlaybackProgressInfoItem**](PlaybackProgressInfoItem.md) | | [optional] -**itemId** | **String** | Gets or sets the item identifier. | [optional] -**sessionId** | **String** | Gets or sets the session id. | [optional] -**mediaSourceId** | **String** | Gets or sets the media version identifier. | [optional] -**audioStreamIndex** | **Int** | Gets or sets the index of the audio stream. | [optional] -**subtitleStreamIndex** | **Int** | Gets or sets the index of the subtitle stream. | [optional] -**isPaused** | **Bool** | Gets or sets a value indicating whether this instance is paused. | [optional] -**isMuted** | **Bool** | Gets or sets a value indicating whether this instance is muted. | [optional] -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] -**playbackStartTimeTicks** | **Int64** | | [optional] -**volumeLevel** | **Int** | Gets or sets the volume level. | [optional] -**brightness** | **Int** | | [optional] -**aspectRatio** | **String** | | [optional] -**playMethod** | [**PlayMethod**](PlayMethod.md) | Gets or sets the play method. | [optional] -**liveStreamId** | **String** | Gets or sets the live stream identifier. | [optional] -**playSessionId** | **String** | Gets or sets the play session identifier. | [optional] -**repeatMode** | [**RepeatMode**](RepeatMode.md) | Gets or sets the repeat mode. | [optional] -**nowPlayingQueue** | [QueueItem] | | [optional] -**playlistItemId** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlaybackStopInfo.md b/docs/PlaybackStopInfo.md deleted file mode 100644 index b207d5d43..000000000 --- a/docs/PlaybackStopInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# PlaybackStopInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**item** | [**PlaybackProgressInfoItem**](PlaybackProgressInfoItem.md) | | [optional] -**itemId** | **String** | Gets or sets the item identifier. | [optional] -**sessionId** | **String** | Gets or sets the session id. | [optional] -**mediaSourceId** | **String** | Gets or sets the media version identifier. | [optional] -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] -**liveStreamId** | **String** | Gets or sets the live stream identifier. | [optional] -**playSessionId** | **String** | Gets or sets the play session identifier. | [optional] -**failed** | **Bool** | Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed. | [optional] -**nextMediaType** | **String** | | [optional] -**playlistItemId** | **String** | | [optional] -**nowPlayingQueue** | [QueueItem] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlayerStateInfo.md b/docs/PlayerStateInfo.md deleted file mode 100644 index 3ceba6d5f..000000000 --- a/docs/PlayerStateInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# PlayerStateInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**positionTicks** | **Int64** | Gets or sets the now playing position ticks. | [optional] -**canSeek** | **Bool** | Gets or sets a value indicating whether this instance can seek. | [optional] -**isPaused** | **Bool** | Gets or sets a value indicating whether this instance is paused. | [optional] -**isMuted** | **Bool** | Gets or sets a value indicating whether this instance is muted. | [optional] -**volumeLevel** | **Int** | Gets or sets the volume level. | [optional] -**audioStreamIndex** | **Int** | Gets or sets the index of the now playing audio stream. | [optional] -**subtitleStreamIndex** | **Int** | Gets or sets the index of the now playing subtitle stream. | [optional] -**mediaSourceId** | **String** | Gets or sets the now playing media version identifier. | [optional] -**playMethod** | [**PlayMethod**](PlayMethod.md) | Gets or sets the play method. | [optional] -**repeatMode** | [**RepeatMode**](RepeatMode.md) | Gets or sets the repeat mode. | [optional] -**liveStreamId** | **String** | Gets or sets the now playing live stream identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlaylistCreationResult.md b/docs/PlaylistCreationResult.md deleted file mode 100644 index e3fcf46e6..000000000 --- a/docs/PlaylistCreationResult.md +++ /dev/null @@ -1,10 +0,0 @@ -# PlaylistCreationResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlaylistsAPI.md b/docs/PlaylistsAPI.md deleted file mode 100644 index 705195fa2..000000000 --- a/docs/PlaylistsAPI.md +++ /dev/null @@ -1,289 +0,0 @@ -# PlaylistsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**addToPlaylist**](PlaylistsAPI.md#addtoplaylist) | **POST** /Playlists/{playlistId}/Items | Adds items to a playlist. -[**createPlaylist**](PlaylistsAPI.md#createplaylist) | **POST** /Playlists | Creates a new playlist. -[**getPlaylistItems**](PlaylistsAPI.md#getplaylistitems) | **GET** /Playlists/{playlistId}/Items | Gets the original items of a playlist. -[**moveItem**](PlaylistsAPI.md#moveitem) | **POST** /Playlists/{playlistId}/Items/{itemId}/Move/{newIndex} | Moves a playlist item. -[**removeFromPlaylist**](PlaylistsAPI.md#removefromplaylist) | **DELETE** /Playlists/{playlistId}/Items | Removes items from a playlist. - - -# **addToPlaylist** -```swift - open class func addToPlaylist(playlistId: String, ids: [String]? = nil, userId: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Adds items to a playlist. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let playlistId = "playlistId_example" // String | The playlist id. -let ids = ["inner_example"] // [String] | Item id, comma delimited. (optional) -let userId = "userId_example" // String | The userId. (optional) - -// Adds items to a playlist. -PlaylistsAPI.addToPlaylist(playlistId: playlistId, ids: ids, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **playlistId** | **String** | The playlist id. | - **ids** | [**[String]**](String.md) | Item id, comma delimited. | [optional] - **userId** | **String** | The userId. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **createPlaylist** -```swift - open class func createPlaylist(name: String? = nil, ids: [String]? = nil, userId: String? = nil, mediaType: String? = nil, createPlaylistRequest: CreatePlaylistRequest? = nil, completion: @escaping (_ data: PlaylistCreationResult?, _ error: Error?) -> Void) -``` - -Creates a new playlist. - -For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence. Query parameters are obsolete. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The playlist name. (optional) -let ids = ["inner_example"] // [String] | The item ids. (optional) -let userId = "userId_example" // String | The user id. (optional) -let mediaType = "mediaType_example" // String | The media type. (optional) -let createPlaylistRequest = CreatePlaylist_request(name: "name_example", ids: ["ids_example"], userId: "userId_example", mediaType: "mediaType_example") // CreatePlaylistRequest | The create playlist payload. (optional) - -// Creates a new playlist. -PlaylistsAPI.createPlaylist(name: name, ids: ids, userId: userId, mediaType: mediaType, createPlaylistRequest: createPlaylistRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The playlist name. | [optional] - **ids** | [**[String]**](String.md) | The item ids. | [optional] - **userId** | **String** | The user id. | [optional] - **mediaType** | **String** | The media type. | [optional] - **createPlaylistRequest** | [**CreatePlaylistRequest**](CreatePlaylistRequest.md) | The create playlist payload. | [optional] - -### Return type - -[**PlaylistCreationResult**](PlaylistCreationResult.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPlaylistItems** -```swift - open class func getPlaylistItems(playlistId: String, userId: String, startIndex: Int? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, enableImages: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets the original items of a playlist. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let playlistId = "playlistId_example" // String | The playlist id. -let userId = "userId_example" // String | User id. -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 fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) - -// Gets the original items of a playlist. -PlaylistsAPI.getPlaylistItems(playlistId: playlistId, userId: userId, startIndex: startIndex, limit: limit, fields: fields, enableImages: enableImages, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **playlistId** | **String** | The playlist id. | - **userId** | **String** | User id. | - **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] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **moveItem** -```swift - open class func moveItem(playlistId: String, itemId: String, newIndex: Int, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Moves a playlist item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let playlistId = "playlistId_example" // String | The playlist id. -let itemId = "itemId_example" // String | The item id. -let newIndex = 987 // Int | The new index. - -// Moves a playlist item. -PlaylistsAPI.moveItem(playlistId: playlistId, itemId: itemId, newIndex: newIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **playlistId** | **String** | The playlist id. | - **itemId** | **String** | The item id. | - **newIndex** | **Int** | The new index. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **removeFromPlaylist** -```swift - open class func removeFromPlaylist(playlistId: String, entryIds: [String]? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Removes items from a playlist. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let playlistId = "playlistId_example" // String | The playlist id. -let entryIds = ["inner_example"] // [String] | The item ids, comma delimited. (optional) - -// Removes items from a playlist. -PlaylistsAPI.removeFromPlaylist(playlistId: playlistId, entryIds: entryIds) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **playlistId** | **String** | The playlist id. | - **entryIds** | [**[String]**](String.md) | The item ids, comma delimited. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/PlaystateAPI.md b/docs/PlaystateAPI.md deleted file mode 100644 index 1880fad65..000000000 --- a/docs/PlaystateAPI.md +++ /dev/null @@ -1,507 +0,0 @@ -# PlaystateAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**markPlayedItem**](PlaystateAPI.md#markplayeditem) | **POST** /Users/{userId}/PlayedItems/{itemId} | Marks an item as played for user. -[**markUnplayedItem**](PlaystateAPI.md#markunplayeditem) | **DELETE** /Users/{userId}/PlayedItems/{itemId} | Marks an item as unplayed for user. -[**onPlaybackProgress**](PlaystateAPI.md#onplaybackprogress) | **POST** /Users/{userId}/PlayingItems/{itemId}/Progress | Reports a user's playback progress. -[**onPlaybackStart**](PlaystateAPI.md#onplaybackstart) | **POST** /Users/{userId}/PlayingItems/{itemId} | Reports that a user has begun playing an item. -[**onPlaybackStopped**](PlaystateAPI.md#onplaybackstopped) | **DELETE** /Users/{userId}/PlayingItems/{itemId} | Reports that a user has stopped playing an item. -[**pingPlaybackSession**](PlaystateAPI.md#pingplaybacksession) | **POST** /Sessions/Playing/Ping | Pings a playback session. -[**reportPlaybackProgress**](PlaystateAPI.md#reportplaybackprogress) | **POST** /Sessions/Playing/Progress | Reports playback progress within a session. -[**reportPlaybackStart**](PlaystateAPI.md#reportplaybackstart) | **POST** /Sessions/Playing | Reports playback has started within a session. -[**reportPlaybackStopped**](PlaystateAPI.md#reportplaybackstopped) | **POST** /Sessions/Playing/Stopped | Reports playback has stopped within a session. - - -# **markPlayedItem** -```swift - open class func markPlayedItem(userId: String, itemId: String, datePlayed: Date? = nil, completion: @escaping (_ data: UserItemDataDto?, _ error: Error?) -> Void) -``` - -Marks an item as played for user. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. -let datePlayed = Date() // Date | Optional. The date the item was played. (optional) - -// Marks an item as played for user. -PlaystateAPI.markPlayedItem(userId: userId, itemId: itemId, datePlayed: datePlayed) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - **datePlayed** | **Date** | Optional. The date the item was played. | [optional] - -### Return type - -[**UserItemDataDto**](UserItemDataDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **markUnplayedItem** -```swift - open class func markUnplayedItem(userId: String, itemId: String, completion: @escaping (_ data: UserItemDataDto?, _ error: Error?) -> Void) -``` - -Marks an item as unplayed for user. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. - -// Marks an item as unplayed for user. -PlaystateAPI.markUnplayedItem(userId: userId, itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - -### Return type - -[**UserItemDataDto**](UserItemDataDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **onPlaybackProgress** -```swift - open class func onPlaybackProgress(userId: String, itemId: String, mediaSourceId: String? = nil, positionTicks: Int64? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, volumeLevel: Int? = nil, playMethod: PlayMethod? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, repeatMode: RepeatMode? = nil, isPaused: Bool? = nil, isMuted: Bool? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports a user's playback progress. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. -let mediaSourceId = "mediaSourceId_example" // String | The id of the MediaSource. (optional) -let positionTicks = 987 // Int64 | Optional. The current position, in ticks. 1 tick = 10000 ms. (optional) -let audioStreamIndex = 987 // Int | The audio stream index. (optional) -let subtitleStreamIndex = 987 // Int | The subtitle stream index. (optional) -let volumeLevel = 987 // Int | Scale of 0-100. (optional) -let playMethod = PlayMethod() // PlayMethod | The play method. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let repeatMode = RepeatMode() // RepeatMode | The repeat mode. (optional) -let isPaused = true // Bool | Indicates if the player is paused. (optional) (default to false) -let isMuted = true // Bool | Indicates if the player is muted. (optional) (default to false) - -// Reports a user's playback progress. -PlaystateAPI.onPlaybackProgress(userId: userId, itemId: itemId, mediaSourceId: mediaSourceId, positionTicks: positionTicks, audioStreamIndex: audioStreamIndex, subtitleStreamIndex: subtitleStreamIndex, volumeLevel: volumeLevel, playMethod: playMethod, liveStreamId: liveStreamId, playSessionId: playSessionId, repeatMode: repeatMode, isPaused: isPaused, isMuted: isMuted) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - **mediaSourceId** | **String** | The id of the MediaSource. | [optional] - **positionTicks** | **Int64** | Optional. The current position, in ticks. 1 tick = 10000 ms. | [optional] - **audioStreamIndex** | **Int** | The audio stream index. | [optional] - **subtitleStreamIndex** | **Int** | The subtitle stream index. | [optional] - **volumeLevel** | **Int** | Scale of 0-100. | [optional] - **playMethod** | [**PlayMethod**](.md) | The play method. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **repeatMode** | [**RepeatMode**](.md) | The repeat mode. | [optional] - **isPaused** | **Bool** | Indicates if the player is paused. | [optional] [default to false] - **isMuted** | **Bool** | Indicates if the player is muted. | [optional] [default to false] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **onPlaybackStart** -```swift - open class func onPlaybackStart(userId: String, itemId: String, mediaSourceId: String? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, playMethod: PlayMethod? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, canSeek: Bool? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports that a user has begun playing an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. -let mediaSourceId = "mediaSourceId_example" // String | The id of the MediaSource. (optional) -let audioStreamIndex = 987 // Int | The audio stream index. (optional) -let subtitleStreamIndex = 987 // Int | The subtitle stream index. (optional) -let playMethod = PlayMethod() // PlayMethod | The play method. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let canSeek = true // Bool | Indicates if the client can seek. (optional) (default to false) - -// Reports that a user has begun playing an item. -PlaystateAPI.onPlaybackStart(userId: userId, itemId: itemId, mediaSourceId: mediaSourceId, audioStreamIndex: audioStreamIndex, subtitleStreamIndex: subtitleStreamIndex, playMethod: playMethod, liveStreamId: liveStreamId, playSessionId: playSessionId, canSeek: canSeek) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - **mediaSourceId** | **String** | The id of the MediaSource. | [optional] - **audioStreamIndex** | **Int** | The audio stream index. | [optional] - **subtitleStreamIndex** | **Int** | The subtitle stream index. | [optional] - **playMethod** | [**PlayMethod**](.md) | The play method. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **canSeek** | **Bool** | Indicates if the client can seek. | [optional] [default to false] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **onPlaybackStopped** -```swift - open class func onPlaybackStopped(userId: String, itemId: String, mediaSourceId: String? = nil, nextMediaType: String? = nil, positionTicks: Int64? = nil, liveStreamId: String? = nil, playSessionId: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports that a user has stopped playing an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. -let mediaSourceId = "mediaSourceId_example" // String | The id of the MediaSource. (optional) -let nextMediaType = "nextMediaType_example" // String | The next media type that will play. (optional) -let positionTicks = 987 // Int64 | Optional. The position, in ticks, where playback stopped. 1 tick = 10000 ms. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) - -// Reports that a user has stopped playing an item. -PlaystateAPI.onPlaybackStopped(userId: userId, itemId: itemId, mediaSourceId: mediaSourceId, nextMediaType: nextMediaType, positionTicks: positionTicks, liveStreamId: liveStreamId, playSessionId: playSessionId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - **mediaSourceId** | **String** | The id of the MediaSource. | [optional] - **nextMediaType** | **String** | The next media type that will play. | [optional] - **positionTicks** | **Int64** | Optional. The position, in ticks, where playback stopped. 1 tick = 10000 ms. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **pingPlaybackSession** -```swift - open class func pingPlaybackSession(playSessionId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Pings a playback session. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let playSessionId = "playSessionId_example" // String | Playback session id. - -// Pings a playback session. -PlaystateAPI.pingPlaybackSession(playSessionId: playSessionId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **playSessionId** | **String** | Playback session id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **reportPlaybackProgress** -```swift - open class func reportPlaybackProgress(reportPlaybackProgressRequest: ReportPlaybackProgressRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports playback progress within a session. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let reportPlaybackProgressRequest = ReportPlaybackProgress_request(canSeek: false, item: PlaybackProgressInfo_Item(name: "name_example", originalTitle: "originalTitle_example", serverId: "serverId_example", id: "id_example", etag: "etag_example", sourceType: "sourceType_example", playlistItemId: "playlistItemId_example", dateCreated: Date(), dateLastMediaAdded: Date(), extraType: "extraType_example", airsBeforeSeasonNumber: 123, airsAfterSeasonNumber: 123, airsBeforeEpisodeNumber: 123, canDelete: false, canDownload: false, hasSubtitles: false, preferredMetadataLanguage: "preferredMetadataLanguage_example", preferredMetadataCountryCode: "preferredMetadataCountryCode_example", supportsSync: false, container: "container_example", sortName: "sortName_example", forcedSortName: "forcedSortName_example", video3DFormat: Video3DFormat(), premiereDate: Date(), externalUrls: [ExternalUrl(name: "name_example", url: "url_example")], mediaSources: [MediaSourceInfo(_protocol: MediaProtocol(), id: "id_example", path: "path_example", encoderPath: "encoderPath_example", encoderProtocol: nil, type: MediaSourceType(), container: "container_example", size: 123, name: "name_example", isRemote: false, eTag: "eTag_example", runTimeTicks: 123, readAtNativeFramerate: false, ignoreDts: false, ignoreIndex: false, genPtsInput: false, supportsTranscoding: false, supportsDirectStream: false, supportsDirectPlay: false, isInfiniteStream: false, requiresOpening: false, openToken: "openToken_example", requiresClosing: false, liveStreamId: "liveStreamId_example", bufferMs: 123, requiresLooping: false, supportsProbing: false, videoType: VideoType(), isoType: IsoType(), video3DFormat: nil, mediaStreams: [MediaStream(codec: "codec_example", codecTag: "codecTag_example", language: "language_example", colorRange: "colorRange_example", colorSpace: "colorSpace_example", colorTransfer: "colorTransfer_example", colorPrimaries: "colorPrimaries_example", comment: "comment_example", timeBase: "timeBase_example", codecTimeBase: "codecTimeBase_example", title: "title_example", videoRange: "videoRange_example", localizedUndefined: "localizedUndefined_example", localizedDefault: "localizedDefault_example", localizedForced: "localizedForced_example", localizedExternal: "localizedExternal_example", displayTitle: "displayTitle_example", nalLengthSize: "nalLengthSize_example", isInterlaced: false, isAVC: false, channelLayout: "channelLayout_example", bitRate: 123, bitDepth: 123, refFrames: 123, packetLength: 123, channels: 123, sampleRate: 123, isDefault: false, isForced: false, height: 123, width: 123, averageFrameRate: 123, realFrameRate: 123, profile: "profile_example", type: MediaStreamType(), aspectRatio: "aspectRatio_example", index: 123, score: 123, isExternal: false, deliveryMethod: SubtitleDeliveryMethod(), deliveryUrl: "deliveryUrl_example", isExternalUrl: false, isTextSubtitleStream: false, supportsExternalStream: false, path: "path_example", pixelFormat: "pixelFormat_example", level: 123, isAnamorphic: false)], mediaAttachments: [MediaAttachment(codec: "codec_example", codecTag: "codecTag_example", comment: "comment_example", index: 123, fileName: "fileName_example", mimeType: "mimeType_example", deliveryUrl: "deliveryUrl_example")], formats: ["formats_example"], bitrate: 123, timestamp: TransportStreamTimestamp(), requiredHttpHeaders: "TODO", transcodingUrl: "transcodingUrl_example", transcodingSubProtocol: "transcodingSubProtocol_example", transcodingContainer: "transcodingContainer_example", analyzeDurationMs: 123, defaultAudioStreamIndex: 123, defaultSubtitleStreamIndex: 123)], criticRating: 123, productionLocations: ["productionLocations_example"], path: "path_example", enableMediaSourceDisplay: false, officialRating: "officialRating_example", customRating: "customRating_example", channelId: "channelId_example", channelName: "channelName_example", overview: "overview_example", taglines: ["taglines_example"], genres: ["genres_example"], communityRating: 123, cumulativeRunTimeTicks: 123, runTimeTicks: 123, playAccess: PlayAccess(), aspectRatio: "aspectRatio_example", productionYear: 123, isPlaceHolder: false, number: "number_example", channelNumber: "channelNumber_example", indexNumber: 123, indexNumberEnd: 123, parentIndexNumber: 123, remoteTrailers: [MediaUrl(url: "url_example", name: "name_example")], providerIds: "TODO", isHD: false, isFolder: false, parentId: "parentId_example", type: BaseItemKind(), people: [BaseItemPerson(name: "name_example", id: "id_example", role: "role_example", type: "type_example", primaryImageTag: "primaryImageTag_example", imageBlurHashes: BaseItemPerson_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"))], studios: [NameGuidPair(name: "name_example", id: "id_example")], genreItems: [nil], parentLogoItemId: "parentLogoItemId_example", parentBackdropItemId: "parentBackdropItemId_example", parentBackdropImageTags: ["parentBackdropImageTags_example"], localTrailerCount: 123, userData: BaseItemDto_UserData(rating: 123, playedPercentage: 123, unplayedItemCount: 123, playbackPositionTicks: 123, playCount: 123, isFavorite: false, likes: false, lastPlayedDate: Date(), played: false, key: "key_example", itemId: "itemId_example"), recursiveItemCount: 123, childCount: 123, seriesName: "seriesName_example", seriesId: "seriesId_example", seasonId: "seasonId_example", specialFeatureCount: 123, displayPreferencesId: "displayPreferencesId_example", status: "status_example", airTime: "airTime_example", airDays: [DayOfWeek()], tags: ["tags_example"], primaryImageAspectRatio: 123, artists: ["artists_example"], artistItems: [nil], album: "album_example", collectionType: "collectionType_example", displayOrder: "displayOrder_example", albumId: "albumId_example", albumPrimaryImageTag: "albumPrimaryImageTag_example", seriesPrimaryImageTag: "seriesPrimaryImageTag_example", albumArtist: "albumArtist_example", albumArtists: [nil], seasonName: "seasonName_example", mediaStreams: [nil], videoType: nil, partCount: 123, mediaSourceCount: 123, imageTags: "TODO", backdropImageTags: ["backdropImageTags_example"], screenshotImageTags: ["screenshotImageTags_example"], parentLogoImageTag: "parentLogoImageTag_example", parentArtItemId: "parentArtItemId_example", parentArtImageTag: "parentArtImageTag_example", seriesThumbImageTag: "seriesThumbImageTag_example", imageBlurHashes: BaseItemDto_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"), seriesStudio: "seriesStudio_example", parentThumbItemId: "parentThumbItemId_example", parentThumbImageTag: "parentThumbImageTag_example", parentPrimaryImageItemId: "parentPrimaryImageItemId_example", parentPrimaryImageTag: "parentPrimaryImageTag_example", chapters: [ChapterInfo(startPositionTicks: 123, name: "name_example", imagePath: "imagePath_example", imageDateModified: Date(), imageTag: "imageTag_example")], locationType: LocationType(), isoType: nil, mediaType: "mediaType_example", endDate: Date(), lockedFields: [MetadataField()], trailerCount: 123, movieCount: 123, seriesCount: 123, programCount: 123, episodeCount: 123, songCount: 123, albumCount: 123, artistCount: 123, musicVideoCount: 123, lockData: false, width: 123, height: 123, cameraMake: "cameraMake_example", cameraModel: "cameraModel_example", software: "software_example", exposureTime: 123, focalLength: 123, imageOrientation: ImageOrientation(), aperture: 123, shutterSpeed: 123, latitude: 123, longitude: 123, altitude: 123, isoSpeedRating: 123, seriesTimerId: "seriesTimerId_example", programId: "programId_example", channelPrimaryImageTag: "channelPrimaryImageTag_example", startDate: Date(), completionPercentage: 123, isRepeat: false, episodeTitle: "episodeTitle_example", channelType: ChannelType(), audio: ProgramAudio(), isMovie: false, isSports: false, isSeries: false, isLive: false, isNews: false, isKids: false, isPremiere: false, timerId: "timerId_example"), itemId: "itemId_example", sessionId: "sessionId_example", mediaSourceId: "mediaSourceId_example", audioStreamIndex: 123, subtitleStreamIndex: 123, isPaused: false, isMuted: false, positionTicks: 123, playbackStartTimeTicks: 123, volumeLevel: 123, brightness: 123, aspectRatio: "aspectRatio_example", playMethod: PlayMethod(), liveStreamId: "liveStreamId_example", playSessionId: "playSessionId_example", repeatMode: RepeatMode(), nowPlayingQueue: [QueueItem(id: "id_example", playlistItemId: "playlistItemId_example")], playlistItemId: "playlistItemId_example") // ReportPlaybackProgressRequest | The playback progress info. (optional) - -// Reports playback progress within a session. -PlaystateAPI.reportPlaybackProgress(reportPlaybackProgressRequest: reportPlaybackProgressRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **reportPlaybackProgressRequest** | [**ReportPlaybackProgressRequest**](ReportPlaybackProgressRequest.md) | The playback progress info. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **reportPlaybackStart** -```swift - open class func reportPlaybackStart(reportPlaybackStartRequest: ReportPlaybackStartRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports playback has started within a session. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let reportPlaybackStartRequest = ReportPlaybackStart_request(canSeek: false, item: PlaybackProgressInfo_Item(name: "name_example", originalTitle: "originalTitle_example", serverId: "serverId_example", id: "id_example", etag: "etag_example", sourceType: "sourceType_example", playlistItemId: "playlistItemId_example", dateCreated: Date(), dateLastMediaAdded: Date(), extraType: "extraType_example", airsBeforeSeasonNumber: 123, airsAfterSeasonNumber: 123, airsBeforeEpisodeNumber: 123, canDelete: false, canDownload: false, hasSubtitles: false, preferredMetadataLanguage: "preferredMetadataLanguage_example", preferredMetadataCountryCode: "preferredMetadataCountryCode_example", supportsSync: false, container: "container_example", sortName: "sortName_example", forcedSortName: "forcedSortName_example", video3DFormat: Video3DFormat(), premiereDate: Date(), externalUrls: [ExternalUrl(name: "name_example", url: "url_example")], mediaSources: [MediaSourceInfo(_protocol: MediaProtocol(), id: "id_example", path: "path_example", encoderPath: "encoderPath_example", encoderProtocol: nil, type: MediaSourceType(), container: "container_example", size: 123, name: "name_example", isRemote: false, eTag: "eTag_example", runTimeTicks: 123, readAtNativeFramerate: false, ignoreDts: false, ignoreIndex: false, genPtsInput: false, supportsTranscoding: false, supportsDirectStream: false, supportsDirectPlay: false, isInfiniteStream: false, requiresOpening: false, openToken: "openToken_example", requiresClosing: false, liveStreamId: "liveStreamId_example", bufferMs: 123, requiresLooping: false, supportsProbing: false, videoType: VideoType(), isoType: IsoType(), video3DFormat: nil, mediaStreams: [MediaStream(codec: "codec_example", codecTag: "codecTag_example", language: "language_example", colorRange: "colorRange_example", colorSpace: "colorSpace_example", colorTransfer: "colorTransfer_example", colorPrimaries: "colorPrimaries_example", comment: "comment_example", timeBase: "timeBase_example", codecTimeBase: "codecTimeBase_example", title: "title_example", videoRange: "videoRange_example", localizedUndefined: "localizedUndefined_example", localizedDefault: "localizedDefault_example", localizedForced: "localizedForced_example", localizedExternal: "localizedExternal_example", displayTitle: "displayTitle_example", nalLengthSize: "nalLengthSize_example", isInterlaced: false, isAVC: false, channelLayout: "channelLayout_example", bitRate: 123, bitDepth: 123, refFrames: 123, packetLength: 123, channels: 123, sampleRate: 123, isDefault: false, isForced: false, height: 123, width: 123, averageFrameRate: 123, realFrameRate: 123, profile: "profile_example", type: MediaStreamType(), aspectRatio: "aspectRatio_example", index: 123, score: 123, isExternal: false, deliveryMethod: SubtitleDeliveryMethod(), deliveryUrl: "deliveryUrl_example", isExternalUrl: false, isTextSubtitleStream: false, supportsExternalStream: false, path: "path_example", pixelFormat: "pixelFormat_example", level: 123, isAnamorphic: false)], mediaAttachments: [MediaAttachment(codec: "codec_example", codecTag: "codecTag_example", comment: "comment_example", index: 123, fileName: "fileName_example", mimeType: "mimeType_example", deliveryUrl: "deliveryUrl_example")], formats: ["formats_example"], bitrate: 123, timestamp: TransportStreamTimestamp(), requiredHttpHeaders: "TODO", transcodingUrl: "transcodingUrl_example", transcodingSubProtocol: "transcodingSubProtocol_example", transcodingContainer: "transcodingContainer_example", analyzeDurationMs: 123, defaultAudioStreamIndex: 123, defaultSubtitleStreamIndex: 123)], criticRating: 123, productionLocations: ["productionLocations_example"], path: "path_example", enableMediaSourceDisplay: false, officialRating: "officialRating_example", customRating: "customRating_example", channelId: "channelId_example", channelName: "channelName_example", overview: "overview_example", taglines: ["taglines_example"], genres: ["genres_example"], communityRating: 123, cumulativeRunTimeTicks: 123, runTimeTicks: 123, playAccess: PlayAccess(), aspectRatio: "aspectRatio_example", productionYear: 123, isPlaceHolder: false, number: "number_example", channelNumber: "channelNumber_example", indexNumber: 123, indexNumberEnd: 123, parentIndexNumber: 123, remoteTrailers: [MediaUrl(url: "url_example", name: "name_example")], providerIds: "TODO", isHD: false, isFolder: false, parentId: "parentId_example", type: BaseItemKind(), people: [BaseItemPerson(name: "name_example", id: "id_example", role: "role_example", type: "type_example", primaryImageTag: "primaryImageTag_example", imageBlurHashes: BaseItemPerson_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"))], studios: [NameGuidPair(name: "name_example", id: "id_example")], genreItems: [nil], parentLogoItemId: "parentLogoItemId_example", parentBackdropItemId: "parentBackdropItemId_example", parentBackdropImageTags: ["parentBackdropImageTags_example"], localTrailerCount: 123, userData: BaseItemDto_UserData(rating: 123, playedPercentage: 123, unplayedItemCount: 123, playbackPositionTicks: 123, playCount: 123, isFavorite: false, likes: false, lastPlayedDate: Date(), played: false, key: "key_example", itemId: "itemId_example"), recursiveItemCount: 123, childCount: 123, seriesName: "seriesName_example", seriesId: "seriesId_example", seasonId: "seasonId_example", specialFeatureCount: 123, displayPreferencesId: "displayPreferencesId_example", status: "status_example", airTime: "airTime_example", airDays: [DayOfWeek()], tags: ["tags_example"], primaryImageAspectRatio: 123, artists: ["artists_example"], artistItems: [nil], album: "album_example", collectionType: "collectionType_example", displayOrder: "displayOrder_example", albumId: "albumId_example", albumPrimaryImageTag: "albumPrimaryImageTag_example", seriesPrimaryImageTag: "seriesPrimaryImageTag_example", albumArtist: "albumArtist_example", albumArtists: [nil], seasonName: "seasonName_example", mediaStreams: [nil], videoType: nil, partCount: 123, mediaSourceCount: 123, imageTags: "TODO", backdropImageTags: ["backdropImageTags_example"], screenshotImageTags: ["screenshotImageTags_example"], parentLogoImageTag: "parentLogoImageTag_example", parentArtItemId: "parentArtItemId_example", parentArtImageTag: "parentArtImageTag_example", seriesThumbImageTag: "seriesThumbImageTag_example", imageBlurHashes: BaseItemDto_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"), seriesStudio: "seriesStudio_example", parentThumbItemId: "parentThumbItemId_example", parentThumbImageTag: "parentThumbImageTag_example", parentPrimaryImageItemId: "parentPrimaryImageItemId_example", parentPrimaryImageTag: "parentPrimaryImageTag_example", chapters: [ChapterInfo(startPositionTicks: 123, name: "name_example", imagePath: "imagePath_example", imageDateModified: Date(), imageTag: "imageTag_example")], locationType: LocationType(), isoType: nil, mediaType: "mediaType_example", endDate: Date(), lockedFields: [MetadataField()], trailerCount: 123, movieCount: 123, seriesCount: 123, programCount: 123, episodeCount: 123, songCount: 123, albumCount: 123, artistCount: 123, musicVideoCount: 123, lockData: false, width: 123, height: 123, cameraMake: "cameraMake_example", cameraModel: "cameraModel_example", software: "software_example", exposureTime: 123, focalLength: 123, imageOrientation: ImageOrientation(), aperture: 123, shutterSpeed: 123, latitude: 123, longitude: 123, altitude: 123, isoSpeedRating: 123, seriesTimerId: "seriesTimerId_example", programId: "programId_example", channelPrimaryImageTag: "channelPrimaryImageTag_example", startDate: Date(), completionPercentage: 123, isRepeat: false, episodeTitle: "episodeTitle_example", channelType: ChannelType(), audio: ProgramAudio(), isMovie: false, isSports: false, isSeries: false, isLive: false, isNews: false, isKids: false, isPremiere: false, timerId: "timerId_example"), itemId: "itemId_example", sessionId: "sessionId_example", mediaSourceId: "mediaSourceId_example", audioStreamIndex: 123, subtitleStreamIndex: 123, isPaused: false, isMuted: false, positionTicks: 123, playbackStartTimeTicks: 123, volumeLevel: 123, brightness: 123, aspectRatio: "aspectRatio_example", playMethod: PlayMethod(), liveStreamId: "liveStreamId_example", playSessionId: "playSessionId_example", repeatMode: RepeatMode(), nowPlayingQueue: [QueueItem(id: "id_example", playlistItemId: "playlistItemId_example")], playlistItemId: "playlistItemId_example") // ReportPlaybackStartRequest | The playback start info. (optional) - -// Reports playback has started within a session. -PlaystateAPI.reportPlaybackStart(reportPlaybackStartRequest: reportPlaybackStartRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **reportPlaybackStartRequest** | [**ReportPlaybackStartRequest**](ReportPlaybackStartRequest.md) | The playback start info. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **reportPlaybackStopped** -```swift - open class func reportPlaybackStopped(reportPlaybackStoppedRequest: ReportPlaybackStoppedRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports playback has stopped within a session. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let reportPlaybackStoppedRequest = ReportPlaybackStopped_request(item: PlaybackProgressInfo_Item(name: "name_example", originalTitle: "originalTitle_example", serverId: "serverId_example", id: "id_example", etag: "etag_example", sourceType: "sourceType_example", playlistItemId: "playlistItemId_example", dateCreated: Date(), dateLastMediaAdded: Date(), extraType: "extraType_example", airsBeforeSeasonNumber: 123, airsAfterSeasonNumber: 123, airsBeforeEpisodeNumber: 123, canDelete: false, canDownload: false, hasSubtitles: false, preferredMetadataLanguage: "preferredMetadataLanguage_example", preferredMetadataCountryCode: "preferredMetadataCountryCode_example", supportsSync: false, container: "container_example", sortName: "sortName_example", forcedSortName: "forcedSortName_example", video3DFormat: Video3DFormat(), premiereDate: Date(), externalUrls: [ExternalUrl(name: "name_example", url: "url_example")], mediaSources: [MediaSourceInfo(_protocol: MediaProtocol(), id: "id_example", path: "path_example", encoderPath: "encoderPath_example", encoderProtocol: nil, type: MediaSourceType(), container: "container_example", size: 123, name: "name_example", isRemote: false, eTag: "eTag_example", runTimeTicks: 123, readAtNativeFramerate: false, ignoreDts: false, ignoreIndex: false, genPtsInput: false, supportsTranscoding: false, supportsDirectStream: false, supportsDirectPlay: false, isInfiniteStream: false, requiresOpening: false, openToken: "openToken_example", requiresClosing: false, liveStreamId: "liveStreamId_example", bufferMs: 123, requiresLooping: false, supportsProbing: false, videoType: VideoType(), isoType: IsoType(), video3DFormat: nil, mediaStreams: [MediaStream(codec: "codec_example", codecTag: "codecTag_example", language: "language_example", colorRange: "colorRange_example", colorSpace: "colorSpace_example", colorTransfer: "colorTransfer_example", colorPrimaries: "colorPrimaries_example", comment: "comment_example", timeBase: "timeBase_example", codecTimeBase: "codecTimeBase_example", title: "title_example", videoRange: "videoRange_example", localizedUndefined: "localizedUndefined_example", localizedDefault: "localizedDefault_example", localizedForced: "localizedForced_example", localizedExternal: "localizedExternal_example", displayTitle: "displayTitle_example", nalLengthSize: "nalLengthSize_example", isInterlaced: false, isAVC: false, channelLayout: "channelLayout_example", bitRate: 123, bitDepth: 123, refFrames: 123, packetLength: 123, channels: 123, sampleRate: 123, isDefault: false, isForced: false, height: 123, width: 123, averageFrameRate: 123, realFrameRate: 123, profile: "profile_example", type: MediaStreamType(), aspectRatio: "aspectRatio_example", index: 123, score: 123, isExternal: false, deliveryMethod: SubtitleDeliveryMethod(), deliveryUrl: "deliveryUrl_example", isExternalUrl: false, isTextSubtitleStream: false, supportsExternalStream: false, path: "path_example", pixelFormat: "pixelFormat_example", level: 123, isAnamorphic: false)], mediaAttachments: [MediaAttachment(codec: "codec_example", codecTag: "codecTag_example", comment: "comment_example", index: 123, fileName: "fileName_example", mimeType: "mimeType_example", deliveryUrl: "deliveryUrl_example")], formats: ["formats_example"], bitrate: 123, timestamp: TransportStreamTimestamp(), requiredHttpHeaders: "TODO", transcodingUrl: "transcodingUrl_example", transcodingSubProtocol: "transcodingSubProtocol_example", transcodingContainer: "transcodingContainer_example", analyzeDurationMs: 123, defaultAudioStreamIndex: 123, defaultSubtitleStreamIndex: 123)], criticRating: 123, productionLocations: ["productionLocations_example"], path: "path_example", enableMediaSourceDisplay: false, officialRating: "officialRating_example", customRating: "customRating_example", channelId: "channelId_example", channelName: "channelName_example", overview: "overview_example", taglines: ["taglines_example"], genres: ["genres_example"], communityRating: 123, cumulativeRunTimeTicks: 123, runTimeTicks: 123, playAccess: PlayAccess(), aspectRatio: "aspectRatio_example", productionYear: 123, isPlaceHolder: false, number: "number_example", channelNumber: "channelNumber_example", indexNumber: 123, indexNumberEnd: 123, parentIndexNumber: 123, remoteTrailers: [MediaUrl(url: "url_example", name: "name_example")], providerIds: "TODO", isHD: false, isFolder: false, parentId: "parentId_example", type: BaseItemKind(), people: [BaseItemPerson(name: "name_example", id: "id_example", role: "role_example", type: "type_example", primaryImageTag: "primaryImageTag_example", imageBlurHashes: BaseItemPerson_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"))], studios: [NameGuidPair(name: "name_example", id: "id_example")], genreItems: [nil], parentLogoItemId: "parentLogoItemId_example", parentBackdropItemId: "parentBackdropItemId_example", parentBackdropImageTags: ["parentBackdropImageTags_example"], localTrailerCount: 123, userData: BaseItemDto_UserData(rating: 123, playedPercentage: 123, unplayedItemCount: 123, playbackPositionTicks: 123, playCount: 123, isFavorite: false, likes: false, lastPlayedDate: Date(), played: false, key: "key_example", itemId: "itemId_example"), recursiveItemCount: 123, childCount: 123, seriesName: "seriesName_example", seriesId: "seriesId_example", seasonId: "seasonId_example", specialFeatureCount: 123, displayPreferencesId: "displayPreferencesId_example", status: "status_example", airTime: "airTime_example", airDays: [DayOfWeek()], tags: ["tags_example"], primaryImageAspectRatio: 123, artists: ["artists_example"], artistItems: [nil], album: "album_example", collectionType: "collectionType_example", displayOrder: "displayOrder_example", albumId: "albumId_example", albumPrimaryImageTag: "albumPrimaryImageTag_example", seriesPrimaryImageTag: "seriesPrimaryImageTag_example", albumArtist: "albumArtist_example", albumArtists: [nil], seasonName: "seasonName_example", mediaStreams: [nil], videoType: nil, partCount: 123, mediaSourceCount: 123, imageTags: "TODO", backdropImageTags: ["backdropImageTags_example"], screenshotImageTags: ["screenshotImageTags_example"], parentLogoImageTag: "parentLogoImageTag_example", parentArtItemId: "parentArtItemId_example", parentArtImageTag: "parentArtImageTag_example", seriesThumbImageTag: "seriesThumbImageTag_example", imageBlurHashes: BaseItemDto_ImageBlurHashes(primary: "TODO", art: "TODO", backdrop: "TODO", banner: "TODO", logo: "TODO", thumb: "TODO", disc: "TODO", box: "TODO", screenshot: "TODO", menu: "TODO", chapter: "TODO", boxRear: "TODO", profile: "TODO"), seriesStudio: "seriesStudio_example", parentThumbItemId: "parentThumbItemId_example", parentThumbImageTag: "parentThumbImageTag_example", parentPrimaryImageItemId: "parentPrimaryImageItemId_example", parentPrimaryImageTag: "parentPrimaryImageTag_example", chapters: [ChapterInfo(startPositionTicks: 123, name: "name_example", imagePath: "imagePath_example", imageDateModified: Date(), imageTag: "imageTag_example")], locationType: LocationType(), isoType: nil, mediaType: "mediaType_example", endDate: Date(), lockedFields: [MetadataField()], trailerCount: 123, movieCount: 123, seriesCount: 123, programCount: 123, episodeCount: 123, songCount: 123, albumCount: 123, artistCount: 123, musicVideoCount: 123, lockData: false, width: 123, height: 123, cameraMake: "cameraMake_example", cameraModel: "cameraModel_example", software: "software_example", exposureTime: 123, focalLength: 123, imageOrientation: ImageOrientation(), aperture: 123, shutterSpeed: 123, latitude: 123, longitude: 123, altitude: 123, isoSpeedRating: 123, seriesTimerId: "seriesTimerId_example", programId: "programId_example", channelPrimaryImageTag: "channelPrimaryImageTag_example", startDate: Date(), completionPercentage: 123, isRepeat: false, episodeTitle: "episodeTitle_example", channelType: ChannelType(), audio: ProgramAudio(), isMovie: false, isSports: false, isSeries: false, isLive: false, isNews: false, isKids: false, isPremiere: false, timerId: "timerId_example"), itemId: "itemId_example", sessionId: "sessionId_example", mediaSourceId: "mediaSourceId_example", positionTicks: 123, liveStreamId: "liveStreamId_example", playSessionId: "playSessionId_example", failed: false, nextMediaType: "nextMediaType_example", playlistItemId: "playlistItemId_example", nowPlayingQueue: [QueueItem(id: "id_example", playlistItemId: "playlistItemId_example")]) // ReportPlaybackStoppedRequest | The playback stop info. (optional) - -// Reports playback has stopped within a session. -PlaystateAPI.reportPlaybackStopped(reportPlaybackStoppedRequest: reportPlaybackStoppedRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **reportPlaybackStoppedRequest** | [**ReportPlaybackStoppedRequest**](ReportPlaybackStoppedRequest.md) | The playback stop info. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/PlaystateCommand.md b/docs/PlaystateCommand.md deleted file mode 100644 index e62990181..000000000 --- a/docs/PlaystateCommand.md +++ /dev/null @@ -1,9 +0,0 @@ -# PlaystateCommand - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PlaystateRequest.md b/docs/PlaystateRequest.md deleted file mode 100644 index 17ddd7678..000000000 --- a/docs/PlaystateRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# PlaystateRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**command** | [**PlaystateCommand**](PlaystateCommand.md) | Enum PlaystateCommand. | [optional] -**seekPositionTicks** | **Int64** | | [optional] -**controllingUserId** | **String** | Gets or sets the controlling user identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PluginInfo.md b/docs/PluginInfo.md deleted file mode 100644 index 83e0f1c58..000000000 --- a/docs/PluginInfo.md +++ /dev/null @@ -1,17 +0,0 @@ -# PluginInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**version** | **String** | Gets or sets the version. | [optional] -**configurationFileName** | **String** | Gets or sets the name of the configuration file. | [optional] -**description** | **String** | Gets or sets the description. | [optional] -**id** | **String** | Gets or sets the unique id. | [optional] -**canUninstall** | **Bool** | Gets or sets a value indicating whether the plugin can be uninstalled. | [optional] -**hasImage** | **Bool** | Gets or sets a value indicating whether this plugin has a valid image. | [optional] -**status** | [**PluginStatus**](PluginStatus.md) | Gets or sets a value indicating the status of the plugin. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PluginSecurityInfo.md b/docs/PluginSecurityInfo.md deleted file mode 100644 index 5de766ddd..000000000 --- a/docs/PluginSecurityInfo.md +++ /dev/null @@ -1,11 +0,0 @@ -# PluginSecurityInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**supporterKey** | **String** | Gets or sets the supporter key. | [optional] -**isMbSupporter** | **Bool** | Gets or sets a value indicating whether is mb supporter. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PluginStatus.md b/docs/PluginStatus.md deleted file mode 100644 index 09589e27f..000000000 --- a/docs/PluginStatus.md +++ /dev/null @@ -1,9 +0,0 @@ -# PluginStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PluginsAPI.md b/docs/PluginsAPI.md deleted file mode 100644 index 4e87fff2f..000000000 --- a/docs/PluginsAPI.md +++ /dev/null @@ -1,455 +0,0 @@ -# PluginsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**disablePlugin**](PluginsAPI.md#disableplugin) | **POST** /Plugins/{pluginId}/{version}/Disable | Disable a plugin. -[**enablePlugin**](PluginsAPI.md#enableplugin) | **POST** /Plugins/{pluginId}/{version}/Enable | Enables a disabled plugin. -[**getPluginConfiguration**](PluginsAPI.md#getpluginconfiguration) | **GET** /Plugins/{pluginId}/Configuration | Gets plugin configuration. -[**getPluginImage**](PluginsAPI.md#getpluginimage) | **GET** /Plugins/{pluginId}/{version}/Image | Gets a plugin's image. -[**getPluginManifest**](PluginsAPI.md#getpluginmanifest) | **POST** /Plugins/{pluginId}/Manifest | Gets a plugin's manifest. -[**getPlugins**](PluginsAPI.md#getplugins) | **GET** /Plugins | Gets a list of currently installed plugins. -[**uninstallPlugin**](PluginsAPI.md#uninstallplugin) | **DELETE** /Plugins/{pluginId} | Uninstalls a plugin. -[**uninstallPluginByVersion**](PluginsAPI.md#uninstallpluginbyversion) | **DELETE** /Plugins/{pluginId}/{version} | Uninstalls a plugin by version. -[**updatePluginConfiguration**](PluginsAPI.md#updatepluginconfiguration) | **POST** /Plugins/{pluginId}/Configuration | Updates plugin configuration. - - -# **disablePlugin** -```swift - open class func disablePlugin(pluginId: String, version: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Disable a plugin. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let pluginId = "pluginId_example" // String | Plugin id. -let version = "version_example" // String | Plugin version. - -// Disable a plugin. -PluginsAPI.disablePlugin(pluginId: pluginId, version: version) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **pluginId** | **String** | Plugin id. | - **version** | **String** | Plugin version. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **enablePlugin** -```swift - open class func enablePlugin(pluginId: String, version: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Enables a disabled plugin. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let pluginId = "pluginId_example" // String | Plugin id. -let version = "version_example" // String | Plugin version. - -// Enables a disabled plugin. -PluginsAPI.enablePlugin(pluginId: pluginId, version: version) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **pluginId** | **String** | Plugin id. | - **version** | **String** | Plugin version. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPluginConfiguration** -```swift - open class func getPluginConfiguration(pluginId: String, completion: @escaping (_ data: AnyCodable?, _ error: Error?) -> Void) -``` - -Gets plugin configuration. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let pluginId = "pluginId_example" // String | Plugin id. - -// Gets plugin configuration. -PluginsAPI.getPluginConfiguration(pluginId: pluginId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **pluginId** | **String** | Plugin id. | - -### Return type - -[**AnyCodable**](AnyCodable.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPluginImage** -```swift - open class func getPluginImage(pluginId: String, version: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a plugin's image. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let pluginId = "pluginId_example" // String | Plugin id. -let version = "version_example" // String | Plugin version. - -// Gets a plugin's image. -PluginsAPI.getPluginImage(pluginId: pluginId, version: version) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **pluginId** | **String** | Plugin id. | - **version** | **String** | Plugin version. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: image/_*, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPluginManifest** -```swift - open class func getPluginManifest(pluginId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Gets a plugin's manifest. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let pluginId = "pluginId_example" // String | Plugin id. - -// Gets a plugin's manifest. -PluginsAPI.getPluginManifest(pluginId: pluginId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **pluginId** | **String** | Plugin id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPlugins** -```swift - open class func getPlugins(completion: @escaping (_ data: [PluginInfo]?, _ error: Error?) -> Void) -``` - -Gets a list of currently installed plugins. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets a list of currently installed plugins. -PluginsAPI.getPlugins() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[PluginInfo]**](PluginInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **uninstallPlugin** -```swift - open class func uninstallPlugin(pluginId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Uninstalls a plugin. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let pluginId = "pluginId_example" // String | Plugin id. - -// Uninstalls a plugin. -PluginsAPI.uninstallPlugin(pluginId: pluginId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **pluginId** | **String** | Plugin id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **uninstallPluginByVersion** -```swift - open class func uninstallPluginByVersion(pluginId: String, version: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Uninstalls a plugin by version. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let pluginId = "pluginId_example" // String | Plugin id. -let version = "version_example" // String | Plugin version. - -// Uninstalls a plugin by version. -PluginsAPI.uninstallPluginByVersion(pluginId: pluginId, version: version) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **pluginId** | **String** | Plugin id. | - **version** | **String** | Plugin version. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updatePluginConfiguration** -```swift - open class func updatePluginConfiguration(pluginId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates plugin configuration. - -Accepts plugin configuration as JSON body. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let pluginId = "pluginId_example" // String | Plugin id. - -// Updates plugin configuration. -PluginsAPI.updatePluginConfiguration(pluginId: pluginId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **pluginId** | **String** | Plugin id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/PostFullCapabilitiesRequest.md b/docs/PostFullCapabilitiesRequest.md deleted file mode 100644 index b0579555f..000000000 --- a/docs/PostFullCapabilitiesRequest.md +++ /dev/null @@ -1,19 +0,0 @@ -# PostFullCapabilitiesRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playableMediaTypes** | **[String]** | Gets or sets the list of playable media types. | [optional] -**supportedCommands** | [GeneralCommandType] | Gets or sets the list of supported commands. | [optional] -**supportsMediaControl** | **Bool** | Gets or sets a value indicating whether session supports media control. | [optional] -**supportsContentUploading** | **Bool** | Gets or sets a value indicating whether session supports content uploading. | [optional] -**messageCallbackUrl** | **String** | Gets or sets the message callback url. | [optional] -**supportsPersistentIdentifier** | **Bool** | Gets or sets a value indicating whether session supports a persistent identifier. | [optional] -**supportsSync** | **Bool** | Gets or sets a value indicating whether session supports sync. | [optional] -**deviceProfile** | [**ClientCapabilitiesDeviceProfile**](ClientCapabilitiesDeviceProfile.md) | | [optional] -**appStoreUrl** | **String** | Gets or sets the app store url. | [optional] -**iconUrl** | **String** | Gets or sets the icon url. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PostUpdatedMediaRequest.md b/docs/PostUpdatedMediaRequest.md deleted file mode 100644 index 913e544ba..000000000 --- a/docs/PostUpdatedMediaRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# PostUpdatedMediaRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**updates** | [MediaUpdateInfoPathDto] | Gets or sets the list of updates. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PreviousItemRequestDto.md b/docs/PreviousItemRequestDto.md deleted file mode 100644 index 472c1bb17..000000000 --- a/docs/PreviousItemRequestDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# PreviousItemRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playlistItemId** | **String** | Gets or sets the playing item identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ProblemDetails.md b/docs/ProblemDetails.md deleted file mode 100644 index a7d209424..000000000 --- a/docs/ProblemDetails.md +++ /dev/null @@ -1,14 +0,0 @@ -# ProblemDetails - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**type** | **String** | | [optional] -**title** | **String** | | [optional] -**status** | **Int** | | [optional] -**detail** | **String** | | [optional] -**instance** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ProfileCondition.md b/docs/ProfileCondition.md deleted file mode 100644 index 3ce86b287..000000000 --- a/docs/ProfileCondition.md +++ /dev/null @@ -1,13 +0,0 @@ -# ProfileCondition - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**condition** | [**ProfileConditionType**](ProfileConditionType.md) | | [optional] -**property** | [**ProfileConditionValue**](ProfileConditionValue.md) | | [optional] -**value** | **String** | | [optional] -**isRequired** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ProfileConditionType.md b/docs/ProfileConditionType.md deleted file mode 100644 index 4ed008626..000000000 --- a/docs/ProfileConditionType.md +++ /dev/null @@ -1,9 +0,0 @@ -# ProfileConditionType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ProfileConditionValue.md b/docs/ProfileConditionValue.md deleted file mode 100644 index 565fdca19..000000000 --- a/docs/ProfileConditionValue.md +++ /dev/null @@ -1,9 +0,0 @@ -# ProfileConditionValue - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ProgramAudio.md b/docs/ProgramAudio.md deleted file mode 100644 index 5c12eaddd..000000000 --- a/docs/ProgramAudio.md +++ /dev/null @@ -1,9 +0,0 @@ -# ProgramAudio - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/PublicSystemInfo.md b/docs/PublicSystemInfo.md deleted file mode 100644 index 5acaa7f6e..000000000 --- a/docs/PublicSystemInfo.md +++ /dev/null @@ -1,16 +0,0 @@ -# PublicSystemInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**localAddress** | **String** | Gets or sets the local address. | [optional] -**serverName** | **String** | Gets or sets the name of the server. | [optional] -**version** | **String** | Gets or sets the server version. | [optional] -**productName** | **String** | Gets or sets the product name. This is the AssemblyProduct name. | [optional] -**operatingSystem** | **String** | Gets or sets the operating system. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**startupWizardCompleted** | **Bool** | Gets or sets a value indicating whether the startup wizard is completed. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/QueryFilters.md b/docs/QueryFilters.md deleted file mode 100644 index 54417b32d..000000000 --- a/docs/QueryFilters.md +++ /dev/null @@ -1,11 +0,0 @@ -# QueryFilters - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**genres** | [NameGuidPair] | | [optional] -**tags** | **[String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/QueryFiltersLegacy.md b/docs/QueryFiltersLegacy.md deleted file mode 100644 index 186fb7377..000000000 --- a/docs/QueryFiltersLegacy.md +++ /dev/null @@ -1,13 +0,0 @@ -# QueryFiltersLegacy - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**genres** | **[String]** | | [optional] -**tags** | **[String]** | | [optional] -**officialRatings** | **[String]** | | [optional] -**years** | **[Int]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/QueueItem.md b/docs/QueueItem.md deleted file mode 100644 index 73b3378d3..000000000 --- a/docs/QueueItem.md +++ /dev/null @@ -1,11 +0,0 @@ -# QueueItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | | [optional] -**playlistItemId** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/QueueRequestDto.md b/docs/QueueRequestDto.md deleted file mode 100644 index 7c7b5e644..000000000 --- a/docs/QueueRequestDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# QueueRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**itemIds** | **[String]** | Gets or sets the items to enqueue. | [optional] -**mode** | [**GroupQueueMode**](GroupQueueMode.md) | Enum GroupQueueMode. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/QuickConnectAPI.md b/docs/QuickConnectAPI.md deleted file mode 100644 index a6f2e1834..000000000 --- a/docs/QuickConnectAPI.md +++ /dev/null @@ -1,196 +0,0 @@ -# QuickConnectAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**authorize**](QuickConnectAPI.md#authorize) | **POST** /QuickConnect/Authorize | Authorizes a pending quick connect request. -[**connect**](QuickConnectAPI.md#connect) | **GET** /QuickConnect/Connect | Attempts to retrieve authentication information. -[**getEnabled**](QuickConnectAPI.md#getenabled) | **GET** /QuickConnect/Enabled | Gets the current quick connect state. -[**initiate**](QuickConnectAPI.md#initiate) | **GET** /QuickConnect/Initiate | Initiate a new quick connect request. - - -# **authorize** -```swift - open class func authorize(code: String, completion: @escaping (_ data: Bool?, _ error: Error?) -> Void) -``` - -Authorizes a pending quick connect request. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let code = "code_example" // String | Quick connect code to authorize. - -// Authorizes a pending quick connect request. -QuickConnectAPI.authorize(code: code) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **code** | **String** | Quick connect code to authorize. | - -### Return type - -**Bool** - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **connect** -```swift - open class func connect(secret: String, completion: @escaping (_ data: QuickConnectResult?, _ error: Error?) -> Void) -``` - -Attempts to retrieve authentication information. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let secret = "secret_example" // String | Secret previously returned from the Initiate endpoint. - -// Attempts to retrieve authentication information. -QuickConnectAPI.connect(secret: secret) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **secret** | **String** | Secret previously returned from the Initiate endpoint. | - -### Return type - -[**QuickConnectResult**](QuickConnectResult.md) - -### Authorization - -No authorization required - -### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getEnabled** -```swift - open class func getEnabled(completion: @escaping (_ data: Bool?, _ error: Error?) -> Void) -``` - -Gets the current quick connect state. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets the current quick connect state. -QuickConnectAPI.getEnabled() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -**Bool** - -### Authorization - -No authorization required - -### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **initiate** -```swift - open class func initiate(completion: @escaping (_ data: QuickConnectResult?, _ error: Error?) -> Void) -``` - -Initiate a new quick connect request. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Initiate a new quick connect request. -QuickConnectAPI.initiate() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**QuickConnectResult**](QuickConnectResult.md) - -### Authorization - -No authorization required - -### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/QuickConnectDto.md b/docs/QuickConnectDto.md deleted file mode 100644 index d2b4a6163..000000000 --- a/docs/QuickConnectDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# QuickConnectDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**secret** | **String** | Gets or sets the quick connect secret. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/QuickConnectResult.md b/docs/QuickConnectResult.md deleted file mode 100644 index ab358d8ff..000000000 --- a/docs/QuickConnectResult.md +++ /dev/null @@ -1,17 +0,0 @@ -# QuickConnectResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**authenticated** | **Bool** | Gets or sets a value indicating whether this request is authorized. | [optional] -**secret** | **String** | Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information. | [optional] -**code** | **String** | Gets the user facing code used so the user can quickly differentiate this request from others. | [optional] -**deviceId** | **String** | Gets the requesting device id. | [optional] -**deviceName** | **String** | Gets the requesting device name. | [optional] -**appName** | **String** | Gets the requesting app name. | [optional] -**appVersion** | **String** | Gets the requesting app version. | [optional] -**dateAdded** | **Date** | Gets or sets the DateTime that this request was created. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/QuickConnectState.md b/docs/QuickConnectState.md deleted file mode 100644 index 1ad795eca..000000000 --- a/docs/QuickConnectState.md +++ /dev/null @@ -1,9 +0,0 @@ -# QuickConnectState - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RatingType.md b/docs/RatingType.md deleted file mode 100644 index 89b5e8320..000000000 --- a/docs/RatingType.md +++ /dev/null @@ -1,9 +0,0 @@ -# RatingType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ReadyRequestDto.md b/docs/ReadyRequestDto.md deleted file mode 100644 index 897e3c673..000000000 --- a/docs/ReadyRequestDto.md +++ /dev/null @@ -1,13 +0,0 @@ -# ReadyRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**when** | **Date** | Gets or sets when the request has been made by the client. | [optional] -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] -**isPlaying** | **Bool** | Gets or sets a value indicating whether the client playback is unpaused. | [optional] -**playlistItemId** | **String** | Gets or sets the playlist item identifier of the playing item. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RecommendationDto.md b/docs/RecommendationDto.md deleted file mode 100644 index 3da3692c6..000000000 --- a/docs/RecommendationDto.md +++ /dev/null @@ -1,13 +0,0 @@ -# RecommendationDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**items** | [BaseItemDto] | | [optional] -**recommendationType** | [**RecommendationType**](RecommendationType.md) | | [optional] -**baselineItemName** | **String** | | [optional] -**categoryId** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RecommendationType.md b/docs/RecommendationType.md deleted file mode 100644 index a0b9b8d62..000000000 --- a/docs/RecommendationType.md +++ /dev/null @@ -1,9 +0,0 @@ -# RecommendationType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RecordingStatus.md b/docs/RecordingStatus.md deleted file mode 100644 index 489b7cebe..000000000 --- a/docs/RecordingStatus.md +++ /dev/null @@ -1,9 +0,0 @@ -# RecordingStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RemoteImageAPI.md b/docs/RemoteImageAPI.md deleted file mode 100644 index 55e7b7d85..000000000 --- a/docs/RemoteImageAPI.md +++ /dev/null @@ -1,169 +0,0 @@ -# RemoteImageAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**downloadRemoteImage**](RemoteImageAPI.md#downloadremoteimage) | **POST** /Items/{itemId}/RemoteImages/Download | Downloads a remote image for an item. -[**getRemoteImageProviders**](RemoteImageAPI.md#getremoteimageproviders) | **GET** /Items/{itemId}/RemoteImages/Providers | Gets available remote image providers for an item. -[**getRemoteImages**](RemoteImageAPI.md#getremoteimages) | **GET** /Items/{itemId}/RemoteImages | Gets available remote images for an item. - - -# **downloadRemoteImage** -```swift - open class func downloadRemoteImage(itemId: String, type: ImageType, imageUrl: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Downloads a remote image for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item Id. -let type = ImageType() // ImageType | The image type. -let imageUrl = "imageUrl_example" // String | The image url. (optional) - -// Downloads a remote image for an item. -RemoteImageAPI.downloadRemoteImage(itemId: itemId, type: type, imageUrl: imageUrl) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item Id. | - **type** | [**ImageType**](.md) | The image type. | - **imageUrl** | **String** | The image url. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRemoteImageProviders** -```swift - open class func getRemoteImageProviders(itemId: String, completion: @escaping (_ data: [ImageProviderInfo]?, _ error: Error?) -> Void) -``` - -Gets available remote image providers for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item Id. - -// Gets available remote image providers for an item. -RemoteImageAPI.getRemoteImageProviders(itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item Id. | - -### Return type - -[**[ImageProviderInfo]**](ImageProviderInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRemoteImages** -```swift - open class func getRemoteImages(itemId: String, type: ImageType? = nil, startIndex: Int? = nil, limit: Int? = nil, providerName: String? = nil, includeAllLanguages: Bool? = nil, completion: @escaping (_ data: RemoteImageResult?, _ error: Error?) -> Void) -``` - -Gets available remote images for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | Item Id. -let type = ImageType() // ImageType | The image type. (optional) -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 providerName = "providerName_example" // String | Optional. The image provider to use. (optional) -let includeAllLanguages = true // Bool | Optional. Include all languages. (optional) (default to false) - -// Gets available remote images for an item. -RemoteImageAPI.getRemoteImages(itemId: itemId, type: type, startIndex: startIndex, limit: limit, providerName: providerName, includeAllLanguages: includeAllLanguages) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | Item Id. | - **type** | [**ImageType**](.md) | The image type. | [optional] - **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] - **providerName** | **String** | Optional. The image provider to use. | [optional] - **includeAllLanguages** | **Bool** | Optional. Include all languages. | [optional] [default to false] - -### Return type - -[**RemoteImageResult**](RemoteImageResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/RemoteImageInfo.md b/docs/RemoteImageInfo.md deleted file mode 100644 index 2cdc31d13..000000000 --- a/docs/RemoteImageInfo.md +++ /dev/null @@ -1,19 +0,0 @@ -# RemoteImageInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**providerName** | **String** | Gets or sets the name of the provider. | [optional] -**url** | **String** | Gets or sets the URL. | [optional] -**thumbnailUrl** | **String** | Gets or sets a url used for previewing a smaller version. | [optional] -**height** | **Int** | Gets or sets the height. | [optional] -**width** | **Int** | Gets or sets the width. | [optional] -**communityRating** | **Double** | Gets or sets the community rating. | [optional] -**voteCount** | **Int** | Gets or sets the vote count. | [optional] -**language** | **String** | Gets or sets the language. | [optional] -**type** | [**ImageType**](ImageType.md) | Gets or sets the type. | [optional] -**ratingType** | [**RatingType**](RatingType.md) | Gets or sets the type of the rating. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RemoteImageResult.md b/docs/RemoteImageResult.md deleted file mode 100644 index 8e757649b..000000000 --- a/docs/RemoteImageResult.md +++ /dev/null @@ -1,12 +0,0 @@ -# RemoteImageResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**images** | [RemoteImageInfo] | Gets or sets the images. | [optional] -**totalRecordCount** | **Int** | Gets or sets the total record count. | [optional] -**providers** | **[String]** | Gets or sets the providers. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RemoteSearchResult.md b/docs/RemoteSearchResult.md deleted file mode 100644 index 717aaf318..000000000 --- a/docs/RemoteSearchResult.md +++ /dev/null @@ -1,19 +0,0 @@ -# RemoteSearchResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**productionYear** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**indexNumberEnd** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**imageUrl** | **String** | | [optional] -**searchProviderName** | **String** | | [optional] -**overview** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RemoteSubtitleInfo.md b/docs/RemoteSubtitleInfo.md deleted file mode 100644 index f7fe10827..000000000 --- a/docs/RemoteSubtitleInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# RemoteSubtitleInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**threeLetterISOLanguageName** | **String** | | [optional] -**id** | **String** | | [optional] -**providerName** | **String** | | [optional] -**name** | **String** | | [optional] -**format** | **String** | | [optional] -**author** | **String** | | [optional] -**comment** | **String** | | [optional] -**dateCreated** | **Date** | | [optional] -**communityRating** | **Float** | | [optional] -**downloadCount** | **Int** | | [optional] -**isHashMatch** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RemoveFromPlaylistRequestDto.md b/docs/RemoveFromPlaylistRequestDto.md deleted file mode 100644 index 9351f4942..000000000 --- a/docs/RemoveFromPlaylistRequestDto.md +++ /dev/null @@ -1,12 +0,0 @@ -# RemoveFromPlaylistRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playlistItemIds** | **[String]** | Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist. | [optional] -**clearPlaylist** | **Bool** | Gets or sets a value indicating whether the entire playlist should be cleared. | [optional] -**clearPlayingItem** | **Bool** | Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RepeatMode.md b/docs/RepeatMode.md deleted file mode 100644 index 894da4a91..000000000 --- a/docs/RepeatMode.md +++ /dev/null @@ -1,9 +0,0 @@ -# RepeatMode - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ReportPlaybackProgressRequest.md b/docs/ReportPlaybackProgressRequest.md deleted file mode 100644 index 8fe2f4157..000000000 --- a/docs/ReportPlaybackProgressRequest.md +++ /dev/null @@ -1,29 +0,0 @@ -# ReportPlaybackProgressRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**canSeek** | **Bool** | Gets or sets a value indicating whether this instance can seek. | [optional] -**item** | [**PlaybackProgressInfoItem**](PlaybackProgressInfoItem.md) | | [optional] -**itemId** | **String** | Gets or sets the item identifier. | [optional] -**sessionId** | **String** | Gets or sets the session id. | [optional] -**mediaSourceId** | **String** | Gets or sets the media version identifier. | [optional] -**audioStreamIndex** | **Int** | Gets or sets the index of the audio stream. | [optional] -**subtitleStreamIndex** | **Int** | Gets or sets the index of the subtitle stream. | [optional] -**isPaused** | **Bool** | Gets or sets a value indicating whether this instance is paused. | [optional] -**isMuted** | **Bool** | Gets or sets a value indicating whether this instance is muted. | [optional] -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] -**playbackStartTimeTicks** | **Int64** | | [optional] -**volumeLevel** | **Int** | Gets or sets the volume level. | [optional] -**brightness** | **Int** | | [optional] -**aspectRatio** | **String** | | [optional] -**playMethod** | [**PlayMethod**](PlayMethod.md) | Gets or sets the play method. | [optional] -**liveStreamId** | **String** | Gets or sets the live stream identifier. | [optional] -**playSessionId** | **String** | Gets or sets the play session identifier. | [optional] -**repeatMode** | [**RepeatMode**](RepeatMode.md) | Gets or sets the repeat mode. | [optional] -**nowPlayingQueue** | [QueueItem] | | [optional] -**playlistItemId** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ReportPlaybackStartRequest.md b/docs/ReportPlaybackStartRequest.md deleted file mode 100644 index f59ada24d..000000000 --- a/docs/ReportPlaybackStartRequest.md +++ /dev/null @@ -1,29 +0,0 @@ -# ReportPlaybackStartRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**canSeek** | **Bool** | Gets or sets a value indicating whether this instance can seek. | [optional] -**item** | [**PlaybackProgressInfoItem**](PlaybackProgressInfoItem.md) | | [optional] -**itemId** | **String** | Gets or sets the item identifier. | [optional] -**sessionId** | **String** | Gets or sets the session id. | [optional] -**mediaSourceId** | **String** | Gets or sets the media version identifier. | [optional] -**audioStreamIndex** | **Int** | Gets or sets the index of the audio stream. | [optional] -**subtitleStreamIndex** | **Int** | Gets or sets the index of the subtitle stream. | [optional] -**isPaused** | **Bool** | Gets or sets a value indicating whether this instance is paused. | [optional] -**isMuted** | **Bool** | Gets or sets a value indicating whether this instance is muted. | [optional] -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] -**playbackStartTimeTicks** | **Int64** | | [optional] -**volumeLevel** | **Int** | Gets or sets the volume level. | [optional] -**brightness** | **Int** | | [optional] -**aspectRatio** | **String** | | [optional] -**playMethod** | [**PlayMethod**](PlayMethod.md) | Gets or sets the play method. | [optional] -**liveStreamId** | **String** | Gets or sets the live stream identifier. | [optional] -**playSessionId** | **String** | Gets or sets the play session identifier. | [optional] -**repeatMode** | [**RepeatMode**](RepeatMode.md) | Gets or sets the repeat mode. | [optional] -**nowPlayingQueue** | [QueueItem] | | [optional] -**playlistItemId** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ReportPlaybackStoppedRequest.md b/docs/ReportPlaybackStoppedRequest.md deleted file mode 100644 index b3d3c6f87..000000000 --- a/docs/ReportPlaybackStoppedRequest.md +++ /dev/null @@ -1,20 +0,0 @@ -# ReportPlaybackStoppedRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**item** | [**PlaybackProgressInfoItem**](PlaybackProgressInfoItem.md) | | [optional] -**itemId** | **String** | Gets or sets the item identifier. | [optional] -**sessionId** | **String** | Gets or sets the session id. | [optional] -**mediaSourceId** | **String** | Gets or sets the media version identifier. | [optional] -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] -**liveStreamId** | **String** | Gets or sets the live stream identifier. | [optional] -**playSessionId** | **String** | Gets or sets the play session identifier. | [optional] -**failed** | **Bool** | Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed. | [optional] -**nextMediaType** | **String** | | [optional] -**playlistItemId** | **String** | | [optional] -**nowPlayingQueue** | [QueueItem] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/RepositoryInfo.md b/docs/RepositoryInfo.md deleted file mode 100644 index f3f1ac37f..000000000 --- a/docs/RepositoryInfo.md +++ /dev/null @@ -1,12 +0,0 @@ -# RepositoryInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**url** | **String** | Gets or sets the URL. | [optional] -**enabled** | **Bool** | Gets or sets a value indicating whether the repository is enabled. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ResponseProfile.md b/docs/ResponseProfile.md deleted file mode 100644 index bd7eee242..000000000 --- a/docs/ResponseProfile.md +++ /dev/null @@ -1,16 +0,0 @@ -# ResponseProfile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**container** | **String** | | [optional] -**audioCodec** | **String** | | [optional] -**videoCodec** | **String** | | [optional] -**type** | [**DlnaProfileType**](DlnaProfileType.md) | | [optional] -**orgPn** | **String** | | [optional] -**mimeType** | **String** | | [optional] -**conditions** | [ProfileCondition] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ScheduledTasksAPI.md b/docs/ScheduledTasksAPI.md deleted file mode 100644 index 926e50d77..000000000 --- a/docs/ScheduledTasksAPI.md +++ /dev/null @@ -1,257 +0,0 @@ -# ScheduledTasksAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getTask**](ScheduledTasksAPI.md#gettask) | **GET** /ScheduledTasks/{taskId} | Get task by id. -[**getTasks**](ScheduledTasksAPI.md#gettasks) | **GET** /ScheduledTasks | Get tasks. -[**startTask**](ScheduledTasksAPI.md#starttask) | **POST** /ScheduledTasks/Running/{taskId} | Start specified task. -[**stopTask**](ScheduledTasksAPI.md#stoptask) | **DELETE** /ScheduledTasks/Running/{taskId} | Stop specified task. -[**updateTask**](ScheduledTasksAPI.md#updatetask) | **POST** /ScheduledTasks/{taskId}/Triggers | Update specified task triggers. - - -# **getTask** -```swift - open class func getTask(taskId: String, completion: @escaping (_ data: TaskInfo?, _ error: Error?) -> Void) -``` - -Get task by id. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let taskId = "taskId_example" // String | Task Id. - -// Get task by id. -ScheduledTasksAPI.getTask(taskId: taskId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **taskId** | **String** | Task Id. | - -### Return type - -[**TaskInfo**](TaskInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getTasks** -```swift - open class func getTasks(isHidden: Bool? = nil, isEnabled: Bool? = nil, completion: @escaping (_ data: [TaskInfo]?, _ error: Error?) -> Void) -``` - -Get tasks. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let isHidden = true // Bool | Optional filter tasks that are hidden, or not. (optional) -let isEnabled = true // Bool | Optional filter tasks that are enabled, or not. (optional) - -// Get tasks. -ScheduledTasksAPI.getTasks(isHidden: isHidden, isEnabled: isEnabled) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **isHidden** | **Bool** | Optional filter tasks that are hidden, or not. | [optional] - **isEnabled** | **Bool** | Optional filter tasks that are enabled, or not. | [optional] - -### Return type - -[**[TaskInfo]**](TaskInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **startTask** -```swift - open class func startTask(taskId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Start specified task. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let taskId = "taskId_example" // String | Task Id. - -// Start specified task. -ScheduledTasksAPI.startTask(taskId: taskId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **taskId** | **String** | Task Id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **stopTask** -```swift - open class func stopTask(taskId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Stop specified task. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let taskId = "taskId_example" // String | Task Id. - -// Stop specified task. -ScheduledTasksAPI.stopTask(taskId: taskId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **taskId** | **String** | Task Id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateTask** -```swift - open class func updateTask(taskId: String, taskTriggerInfo: [TaskTriggerInfo], completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Update specified task triggers. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let taskId = "taskId_example" // String | Task Id. -let taskTriggerInfo = [TaskTriggerInfo(type: "type_example", timeOfDayTicks: 123, intervalTicks: 123, dayOfWeek: DayOfWeek(), maxRuntimeTicks: 123)] // [TaskTriggerInfo] | Triggers. - -// Update specified task triggers. -ScheduledTasksAPI.updateTask(taskId: taskId, taskTriggerInfo: taskTriggerInfo) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **taskId** | **String** | Task Id. | - **taskTriggerInfo** | [**[TaskTriggerInfo]**](TaskTriggerInfo.md) | Triggers. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/ScrollDirection.md b/docs/ScrollDirection.md deleted file mode 100644 index 7d5d40862..000000000 --- a/docs/ScrollDirection.md +++ /dev/null @@ -1,9 +0,0 @@ -# ScrollDirection - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SearchAPI.md b/docs/SearchAPI.md deleted file mode 100644 index 757e9c356..000000000 --- a/docs/SearchAPI.md +++ /dev/null @@ -1,91 +0,0 @@ -# SearchAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**callGet**](SearchAPI.md#callget) | **GET** /Search/Hints | Gets the search hint result. - - -# **callGet** -```swift - open class func callGet(searchTerm: String, startIndex: Int? = nil, limit: Int? = nil, userId: String? = nil, includeItemTypes: [BaseItemKind]? = nil, excludeItemTypes: [BaseItemKind]? = 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 -```swift -// 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 = [BaseItemKind()] // [BaseItemKind] | If specified, only results with the specified item types are returned. This allows multiple, comma delimeted. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | 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** | [**[BaseItemKind]**](BaseItemKind.md) | If specified, only results with the specified item types are returned. This allows multiple, comma delimeted. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | If specified, results with these item types are filtered out. This allows multiple, comma delimeted. | [optional] - **mediaTypes** | [**[String]**](String.md) | 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**](SearchHintResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/SearchHint.md b/docs/SearchHint.md deleted file mode 100644 index b728e6017..000000000 --- a/docs/SearchHint.md +++ /dev/null @@ -1,38 +0,0 @@ -# SearchHint - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**itemId** | **String** | Gets or sets the item id. | [optional] -**id** | **String** | | [optional] -**name** | **String** | Gets or sets the name. | [optional] -**matchedTerm** | **String** | Gets or sets the matched term. | [optional] -**indexNumber** | **Int** | Gets or sets the index number. | [optional] -**productionYear** | **Int** | Gets or sets the production year. | [optional] -**parentIndexNumber** | **Int** | Gets or sets the parent index number. | [optional] -**primaryImageTag** | **String** | Gets or sets the image tag. | [optional] -**thumbImageTag** | **String** | Gets or sets the thumb image tag. | [optional] -**thumbImageItemId** | **String** | Gets or sets the thumb image item identifier. | [optional] -**backdropImageTag** | **String** | Gets or sets the backdrop image tag. | [optional] -**backdropImageItemId** | **String** | Gets or sets the backdrop image item identifier. | [optional] -**type** | **String** | Gets or sets the type. | [optional] -**isFolder** | **Bool** | | [optional] -**runTimeTicks** | **Int64** | Gets or sets the run time ticks. | [optional] -**mediaType** | **String** | Gets or sets the type of the media. | [optional] -**startDate** | **Date** | | [optional] -**endDate** | **Date** | | [optional] -**series** | **String** | Gets or sets the series. | [optional] -**status** | **String** | | [optional] -**album** | **String** | Gets or sets the album. | [optional] -**albumId** | **String** | | [optional] -**albumArtist** | **String** | Gets or sets the album artist. | [optional] -**artists** | **[String]** | Gets or sets the artists. | [optional] -**songCount** | **Int** | Gets or sets the song count. | [optional] -**episodeCount** | **Int** | Gets or sets the episode count. | [optional] -**channelId** | **String** | Gets or sets the channel identifier. | [optional] -**channelName** | **String** | Gets or sets the name of the channel. | [optional] -**primaryImageAspectRatio** | **Double** | Gets or sets the primary image aspect ratio. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SearchHintResult.md b/docs/SearchHintResult.md deleted file mode 100644 index c98bdfa0f..000000000 --- a/docs/SearchHintResult.md +++ /dev/null @@ -1,11 +0,0 @@ -# SearchHintResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchHints** | [SearchHint] | Gets the search hints. | [optional] -**totalRecordCount** | **Int** | Gets the total record count. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SeekRequestDto.md b/docs/SeekRequestDto.md deleted file mode 100644 index 5f2540356..000000000 --- a/docs/SeekRequestDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# SeekRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SendCommand.md b/docs/SendCommand.md deleted file mode 100644 index 77c7b1a4b..000000000 --- a/docs/SendCommand.md +++ /dev/null @@ -1,15 +0,0 @@ -# SendCommand - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**groupId** | **String** | Gets the group identifier. | [optional] -**playlistItemId** | **String** | Gets the playlist identifier of the playing item. | [optional] -**when** | **Date** | Gets or sets the UTC time when to execute the command. | [optional] -**positionTicks** | **Int64** | Gets the position ticks. | [optional] -**command** | [**SendCommandType**](SendCommandType.md) | Gets the command. | [optional] -**emittedAt** | **Date** | Gets the UTC time when this command has been emitted. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SendCommandType.md b/docs/SendCommandType.md deleted file mode 100644 index b210bd80c..000000000 --- a/docs/SendCommandType.md +++ /dev/null @@ -1,9 +0,0 @@ -# SendCommandType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SendFullGeneralCommandRequest.md b/docs/SendFullGeneralCommandRequest.md deleted file mode 100644 index c088037fa..000000000 --- a/docs/SendFullGeneralCommandRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# SendFullGeneralCommandRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | [**GeneralCommandType**](GeneralCommandType.md) | This exists simply to identify a set of known commands. | [optional] -**controllingUserId** | **String** | | [optional] -**arguments** | **[String: String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SendMessageCommandRequest.md b/docs/SendMessageCommandRequest.md deleted file mode 100644 index 192492de6..000000000 --- a/docs/SendMessageCommandRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# SendMessageCommandRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**header** | **String** | | [optional] -**text** | **String** | | -**timeoutMs** | **Int64** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SendToUserType.md b/docs/SendToUserType.md deleted file mode 100644 index 2f5c53c9a..000000000 --- a/docs/SendToUserType.md +++ /dev/null @@ -1,9 +0,0 @@ -# SendToUserType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SeriesInfo.md b/docs/SeriesInfo.md deleted file mode 100644 index 67480e9fa..000000000 --- a/docs/SeriesInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# SeriesInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SeriesInfoRemoteSearchQuery.md b/docs/SeriesInfoRemoteSearchQuery.md deleted file mode 100644 index 6139026de..000000000 --- a/docs/SeriesInfoRemoteSearchQuery.md +++ /dev/null @@ -1,13 +0,0 @@ -# SeriesInfoRemoteSearchQuery - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**SeriesInfoRemoteSearchQuerySearchInfo**](SeriesInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SeriesInfoRemoteSearchQuerySearchInfo.md b/docs/SeriesInfoRemoteSearchQuerySearchInfo.md deleted file mode 100644 index e1b1c852d..000000000 --- a/docs/SeriesInfoRemoteSearchQuerySearchInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# SeriesInfoRemoteSearchQuerySearchInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SeriesStatus.md b/docs/SeriesStatus.md deleted file mode 100644 index 1d94a72ee..000000000 --- a/docs/SeriesStatus.md +++ /dev/null @@ -1,9 +0,0 @@ -# SeriesStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SeriesTimerInfoDto.md b/docs/SeriesTimerInfoDto.md deleted file mode 100644 index 9d89ae500..000000000 --- a/docs/SeriesTimerInfoDto.md +++ /dev/null @@ -1,44 +0,0 @@ -# SeriesTimerInfoDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | Gets or sets the Id of the recording. | [optional] -**type** | **String** | | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**externalId** | **String** | Gets or sets the external identifier. | [optional] -**channelId** | **String** | Gets or sets the channel id of the recording. | [optional] -**externalChannelId** | **String** | Gets or sets the external channel identifier. | [optional] -**channelName** | **String** | Gets or sets the channel name of the recording. | [optional] -**channelPrimaryImageTag** | **String** | | [optional] -**programId** | **String** | Gets or sets the program identifier. | [optional] -**externalProgramId** | **String** | Gets or sets the external program identifier. | [optional] -**name** | **String** | Gets or sets the name of the recording. | [optional] -**overview** | **String** | Gets or sets the description of the recording. | [optional] -**startDate** | **Date** | Gets or sets the start date of the recording, in UTC. | [optional] -**endDate** | **Date** | Gets or sets the end date of the recording, in UTC. | [optional] -**serviceName** | **String** | Gets or sets the name of the service. | [optional] -**priority** | **Int** | Gets or sets the priority. | [optional] -**prePaddingSeconds** | **Int** | Gets or sets the pre padding seconds. | [optional] -**postPaddingSeconds** | **Int** | Gets or sets the post padding seconds. | [optional] -**isPrePaddingRequired** | **Bool** | Gets or sets a value indicating whether this instance is pre padding required. | [optional] -**parentBackdropItemId** | **String** | Gets or sets the Id of the Parent that has a backdrop if the item does not have one. | [optional] -**parentBackdropImageTags** | **[String]** | Gets or sets the parent backdrop image tags. | [optional] -**isPostPaddingRequired** | **Bool** | Gets or sets a value indicating whether this instance is post padding required. | [optional] -**keepUntil** | [**KeepUntil**](KeepUntil.md) | | [optional] -**recordAnyTime** | **Bool** | Gets or sets a value indicating whether [record any time]. | [optional] -**skipEpisodesInLibrary** | **Bool** | | [optional] -**recordAnyChannel** | **Bool** | Gets or sets a value indicating whether [record any channel]. | [optional] -**keepUpTo** | **Int** | | [optional] -**recordNewOnly** | **Bool** | Gets or sets a value indicating whether [record new only]. | [optional] -**days** | [DayOfWeek] | Gets or sets the days. | [optional] -**dayPattern** | [**DayPattern**](DayPattern.md) | Gets or sets the day pattern. | [optional] -**imageTags** | **[String: String]** | Gets or sets the image tags. | [optional] -**parentThumbItemId** | **String** | Gets or sets the parent thumb item id. | [optional] -**parentThumbImageTag** | **String** | Gets or sets the parent thumb image tag. | [optional] -**parentPrimaryImageItemId** | **String** | Gets or sets the parent primary image item identifier. | [optional] -**parentPrimaryImageTag** | **String** | Gets or sets the parent primary image tag. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SeriesTimerInfoDtoQueryResult.md b/docs/SeriesTimerInfoDtoQueryResult.md deleted file mode 100644 index 5b86aa0ac..000000000 --- a/docs/SeriesTimerInfoDtoQueryResult.md +++ /dev/null @@ -1,12 +0,0 @@ -# SeriesTimerInfoDtoQueryResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**items** | [SeriesTimerInfoDto] | Gets or sets the items. | [optional] -**totalRecordCount** | **Int** | Gets or sets the total number of records available. | [optional] -**startIndex** | **Int** | Gets or sets the index of the first record in Items. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ServerConfiguration.md b/docs/ServerConfiguration.md deleted file mode 100644 index 02ad228f9..000000000 --- a/docs/ServerConfiguration.md +++ /dev/null @@ -1,57 +0,0 @@ -# ServerConfiguration - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**logFileRetentionDays** | **Int** | Gets or sets the number of days we should retain log files. | [optional] -**isStartupWizardCompleted** | **Bool** | Gets or sets a value indicating whether this instance is first run. | [optional] -**cachePath** | **String** | Gets or sets the cache path. | [optional] -**previousVersion** | **String** | Gets or sets the last known version that was ran using the configuration. | [optional] -**previousVersionStr** | **String** | Gets or sets the stringified PreviousVersion to be stored/loaded, because System.Version itself isn't xml-serializable. | [optional] -**enableMetrics** | **Bool** | Gets or sets a value indicating whether to enable prometheus metrics exporting. | [optional] -**enableNormalizedItemByNameIds** | **Bool** | | [optional] -**isPortAuthorized** | **Bool** | Gets or sets a value indicating whether this instance is port authorized. | [optional] -**quickConnectAvailable** | **Bool** | Gets or sets a value indicating whether quick connect is available for use on this server. | [optional] -**enableCaseSensitiveItemIds** | **Bool** | Gets or sets a value indicating whether [enable case sensitive item ids]. | [optional] -**disableLiveTvChannelUserDataName** | **Bool** | | [optional] -**metadataPath** | **String** | Gets or sets the metadata path. | [optional] -**metadataNetworkPath** | **String** | | [optional] -**preferredMetadataLanguage** | **String** | Gets or sets the preferred metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**sortReplaceCharacters** | **[String]** | Gets or sets characters to be replaced with a ' ' in strings to create a sort name. | [optional] -**sortRemoveCharacters** | **[String]** | Gets or sets characters to be removed from strings to create a sort name. | [optional] -**sortRemoveWords** | **[String]** | Gets or sets words to be removed from strings to create a sort name. | [optional] -**minResumePct** | **Int** | Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated. | [optional] -**maxResumePct** | **Int** | Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. | [optional] -**minResumeDurationSeconds** | **Int** | Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates.. | [optional] -**minAudiobookResume** | **Int** | Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated. | [optional] -**maxAudiobookResume** | **Int** | Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. | [optional] -**libraryMonitorDelay** | **Int** | Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added/removed Some delay is necessary with some items because their creation is not atomic. It involves the creation of several different directories and files. | [optional] -**imageSavingConvention** | [**ImageSavingConvention**](ImageSavingConvention.md) | Gets or sets the image saving convention. | [optional] -**metadataOptions** | [MetadataOptions] | | [optional] -**skipDeserializationForBasicTypes** | **Bool** | | [optional] -**serverName** | **String** | | [optional] -**uICulture** | **String** | | [optional] -**saveMetadataHidden** | **Bool** | | [optional] -**contentTypes** | [NameValuePair] | | [optional] -**remoteClientBitrateLimit** | **Int** | | [optional] -**enableFolderView** | **Bool** | | [optional] -**enableGroupingIntoCollections** | **Bool** | | [optional] -**displaySpecialsWithinSeasons** | **Bool** | | [optional] -**codecsUsed** | **[String]** | | [optional] -**pluginRepositories** | [RepositoryInfo] | | [optional] -**enableExternalContentInSuggestions** | **Bool** | | [optional] -**imageExtractionTimeoutMs** | **Int** | | [optional] -**pathSubstitutions** | [PathSubstitution] | | [optional] -**enableSlowResponseWarning** | **Bool** | Gets or sets a value indicating whether slow server responses should be logged as a warning. | [optional] -**slowResponseThresholdMs** | **Int64** | Gets or sets the threshold for the slow response time warning in ms. | [optional] -**corsHosts** | **[String]** | Gets or sets the cors hosts. | [optional] -**activityLogRetentionDays** | **Int** | Gets or sets the number of days we should retain activity logs. | [optional] -**libraryScanFanoutConcurrency** | **Int** | Gets or sets the how the library scan fans out. | [optional] -**libraryMetadataRefreshConcurrency** | **Int** | Gets or sets the how many metadata refreshes can run concurrently. | [optional] -**removeOldPlugins** | **Bool** | Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder. | [optional] -**allowClientLogUpload** | **Bool** | Gets or sets a value indicating whether clients should be allowed to upload logs. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ServerDiscoveryInfo.md b/docs/ServerDiscoveryInfo.md deleted file mode 100644 index e520fb64a..000000000 --- a/docs/ServerDiscoveryInfo.md +++ /dev/null @@ -1,13 +0,0 @@ -# ServerDiscoveryInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**address** | **String** | Gets the address. | [optional] -**id** | **String** | Gets the server identifier. | [optional] -**name** | **String** | Gets the name. | [optional] -**endpointAddress** | **String** | Gets the endpoint address. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SessionAPI.md b/docs/SessionAPI.md deleted file mode 100644 index 19d412169..000000000 --- a/docs/SessionAPI.md +++ /dev/null @@ -1,836 +0,0 @@ -# SessionAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**addUserToSession**](SessionAPI.md#addusertosession) | **POST** /Sessions/{sessionId}/User/{userId} | Adds an additional user to a session. -[**displayContent**](SessionAPI.md#displaycontent) | **POST** /Sessions/{sessionId}/Viewing | Instructs a session to browse to an item or view. -[**getAuthProviders**](SessionAPI.md#getauthproviders) | **GET** /Auth/Providers | Get all auth providers. -[**getPasswordResetProviders**](SessionAPI.md#getpasswordresetproviders) | **GET** /Auth/PasswordResetProviders | Get all password reset providers. -[**getSessions**](SessionAPI.md#getsessions) | **GET** /Sessions | Gets a list of sessions. -[**play**](SessionAPI.md#play) | **POST** /Sessions/{sessionId}/Playing | Instructs a session to play an item. -[**postCapabilities**](SessionAPI.md#postcapabilities) | **POST** /Sessions/Capabilities | Updates capabilities for a device. -[**postFullCapabilities**](SessionAPI.md#postfullcapabilities) | **POST** /Sessions/Capabilities/Full | Updates capabilities for a device. -[**removeUserFromSession**](SessionAPI.md#removeuserfromsession) | **DELETE** /Sessions/{sessionId}/User/{userId} | Removes an additional user from a session. -[**reportSessionEnded**](SessionAPI.md#reportsessionended) | **POST** /Sessions/Logout | Reports that a session has ended. -[**reportViewing**](SessionAPI.md#reportviewing) | **POST** /Sessions/Viewing | Reports that a session is viewing an item. -[**sendFullGeneralCommand**](SessionAPI.md#sendfullgeneralcommand) | **POST** /Sessions/{sessionId}/Command | Issues a full general command to a client. -[**sendGeneralCommand**](SessionAPI.md#sendgeneralcommand) | **POST** /Sessions/{sessionId}/Command/{command} | Issues a general command to a client. -[**sendMessageCommand**](SessionAPI.md#sendmessagecommand) | **POST** /Sessions/{sessionId}/Message | Issues a command to a client to display a message to the user. -[**sendPlaystateCommand**](SessionAPI.md#sendplaystatecommand) | **POST** /Sessions/{sessionId}/Playing/{command} | Issues a playstate command to a client. -[**sendSystemCommand**](SessionAPI.md#sendsystemcommand) | **POST** /Sessions/{sessionId}/System/{command} | Issues a system command to a client. - - -# **addUserToSession** -```swift - open class func addUserToSession(sessionId: String, userId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Adds an additional user to a session. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let sessionId = "sessionId_example" // String | The session id. -let userId = "userId_example" // String | The user id. - -// Adds an additional user to a session. -SessionAPI.addUserToSession(sessionId: sessionId, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionId** | **String** | The session id. | - **userId** | **String** | The user id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **displayContent** -```swift - open class func displayContent(sessionId: String, itemType: BaseItemKind, itemId: String, itemName: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Instructs a session to browse to an item or view. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let sessionId = "sessionId_example" // String | The session Id. -let itemType = BaseItemKind() // BaseItemKind | The type of item to browse to. -let itemId = "itemId_example" // String | The Id of the item. -let itemName = "itemName_example" // String | The name of the item. - -// Instructs a session to browse to an item or view. -SessionAPI.displayContent(sessionId: sessionId, itemType: itemType, itemId: itemId, itemName: itemName) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionId** | **String** | The session Id. | - **itemType** | [**BaseItemKind**](.md) | The type of item to browse to. | - **itemId** | **String** | The Id of the item. | - **itemName** | **String** | The name of the item. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getAuthProviders** -```swift - open class func getAuthProviders(completion: @escaping (_ data: [NameIdPair]?, _ error: Error?) -> Void) -``` - -Get all auth providers. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get all auth providers. -SessionAPI.getAuthProviders() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[NameIdPair]**](NameIdPair.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPasswordResetProviders** -```swift - open class func getPasswordResetProviders(completion: @escaping (_ data: [NameIdPair]?, _ error: Error?) -> Void) -``` - -Get all password reset providers. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Get all password reset providers. -SessionAPI.getPasswordResetProviders() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[NameIdPair]**](NameIdPair.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSessions** -```swift - open class func getSessions(controllableByUserId: String? = nil, deviceId: String? = nil, activeWithinSeconds: Int? = nil, completion: @escaping (_ data: [SessionInfo]?, _ error: Error?) -> Void) -``` - -Gets a list of sessions. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let controllableByUserId = "controllableByUserId_example" // String | Filter by sessions that a given user is allowed to remote control. (optional) -let deviceId = "deviceId_example" // String | Filter by device Id. (optional) -let activeWithinSeconds = 987 // Int | Optional. Filter by sessions that were active in the last n seconds. (optional) - -// Gets a list of sessions. -SessionAPI.getSessions(controllableByUserId: controllableByUserId, deviceId: deviceId, activeWithinSeconds: activeWithinSeconds) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **controllableByUserId** | **String** | Filter by sessions that a given user is allowed to remote control. | [optional] - **deviceId** | **String** | Filter by device Id. | [optional] - **activeWithinSeconds** | **Int** | Optional. Filter by sessions that were active in the last n seconds. | [optional] - -### Return type - -[**[SessionInfo]**](SessionInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **play** -```swift - open class func play(sessionId: String, playCommand: PlayCommand, itemIds: [String], startPositionTicks: Int64? = nil, mediaSourceId: String? = nil, audioStreamIndex: Int? = nil, subtitleStreamIndex: Int? = nil, startIndex: Int? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Instructs a session to play an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let sessionId = "sessionId_example" // String | The session id. -let playCommand = PlayCommand() // PlayCommand | The type of play command to issue (PlayNow, PlayNext, PlayLast). Clients who have not yet implemented play next and play last may play now. -let itemIds = ["inner_example"] // [String] | The ids of the items to play, comma delimited. -let startPositionTicks = 987 // Int64 | The starting position of the first item. (optional) -let mediaSourceId = "mediaSourceId_example" // String | Optional. The media source id. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to play. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to play. (optional) -let startIndex = 987 // Int | Optional. The start index. (optional) - -// Instructs a session to play an item. -SessionAPI.play(sessionId: sessionId, playCommand: playCommand, itemIds: itemIds, startPositionTicks: startPositionTicks, mediaSourceId: mediaSourceId, audioStreamIndex: audioStreamIndex, subtitleStreamIndex: subtitleStreamIndex, startIndex: startIndex) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionId** | **String** | The session id. | - **playCommand** | [**PlayCommand**](.md) | The type of play command to issue (PlayNow, PlayNext, PlayLast). Clients who have not yet implemented play next and play last may play now. | - **itemIds** | [**[String]**](String.md) | The ids of the items to play, comma delimited. | - **startPositionTicks** | **Int64** | The starting position of the first item. | [optional] - **mediaSourceId** | **String** | Optional. The media source id. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to play. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to play. | [optional] - **startIndex** | **Int** | Optional. The start index. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **postCapabilities** -```swift - open class func postCapabilities(id: String? = nil, playableMediaTypes: [String]? = nil, supportedCommands: [GeneralCommandType]? = nil, supportsMediaControl: Bool? = nil, supportsSync: Bool? = nil, supportsPersistentIdentifier: Bool? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates capabilities for a device. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | The session id. (optional) -let playableMediaTypes = ["inner_example"] // [String] | A list of playable media types, comma delimited. Audio, Video, Book, Photo. (optional) -let supportedCommands = [GeneralCommandType()] // [GeneralCommandType] | A list of supported remote control commands, comma delimited. (optional) -let supportsMediaControl = true // Bool | Determines whether media can be played remotely.. (optional) (default to false) -let supportsSync = true // Bool | Determines whether sync is supported. (optional) (default to false) -let supportsPersistentIdentifier = true // Bool | Determines whether the device supports a unique identifier. (optional) (default to true) - -// Updates capabilities for a device. -SessionAPI.postCapabilities(id: id, playableMediaTypes: playableMediaTypes, supportedCommands: supportedCommands, supportsMediaControl: supportsMediaControl, supportsSync: supportsSync, supportsPersistentIdentifier: supportsPersistentIdentifier) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | The session id. | [optional] - **playableMediaTypes** | [**[String]**](String.md) | A list of playable media types, comma delimited. Audio, Video, Book, Photo. | [optional] - **supportedCommands** | [**[GeneralCommandType]**](GeneralCommandType.md) | A list of supported remote control commands, comma delimited. | [optional] - **supportsMediaControl** | **Bool** | Determines whether media can be played remotely.. | [optional] [default to false] - **supportsSync** | **Bool** | Determines whether sync is supported. | [optional] [default to false] - **supportsPersistentIdentifier** | **Bool** | Determines whether the device supports a unique identifier. | [optional] [default to true] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **postFullCapabilities** -```swift - open class func postFullCapabilities(postFullCapabilitiesRequest: PostFullCapabilitiesRequest, id: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates capabilities for a device. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let postFullCapabilitiesRequest = PostFullCapabilities_request(playableMediaTypes: ["playableMediaTypes_example"], supportedCommands: [GeneralCommandType()], supportsMediaControl: false, supportsContentUploading: false, messageCallbackUrl: "messageCallbackUrl_example", supportsPersistentIdentifier: false, supportsSync: false, deviceProfile: ClientCapabilities_DeviceProfile(name: "name_example", id: "id_example", identification: DeviceProfile_Identification(friendlyName: "friendlyName_example", modelNumber: "modelNumber_example", serialNumber: "serialNumber_example", modelName: "modelName_example", modelDescription: "modelDescription_example", modelUrl: "modelUrl_example", manufacturer: "manufacturer_example", manufacturerUrl: "manufacturerUrl_example", headers: [HttpHeaderInfo(name: "name_example", value: "value_example", match: HeaderMatchType())]), friendlyName: "friendlyName_example", manufacturer: "manufacturer_example", manufacturerUrl: "manufacturerUrl_example", modelName: "modelName_example", modelDescription: "modelDescription_example", modelNumber: "modelNumber_example", modelUrl: "modelUrl_example", serialNumber: "serialNumber_example", enableAlbumArtInDidl: false, enableSingleAlbumArtLimit: false, enableSingleSubtitleLimit: false, supportedMediaTypes: "supportedMediaTypes_example", userId: "userId_example", albumArtPn: "albumArtPn_example", maxAlbumArtWidth: 123, maxAlbumArtHeight: 123, maxIconWidth: 123, maxIconHeight: 123, maxStreamingBitrate: 123, maxStaticBitrate: 123, musicStreamingTranscodingBitrate: 123, maxStaticMusicBitrate: 123, sonyAggregationFlags: "sonyAggregationFlags_example", protocolInfo: "protocolInfo_example", timelineOffsetSeconds: 123, requiresPlainVideoItems: false, requiresPlainFolders: false, enableMSMediaReceiverRegistrar: false, ignoreTranscodeByteRangeRequests: false, xmlRootAttributes: [XmlAttribute(name: "name_example", value: "value_example")], directPlayProfiles: [DirectPlayProfile(container: "container_example", audioCodec: "audioCodec_example", videoCodec: "videoCodec_example", type: DlnaProfileType())], transcodingProfiles: [TranscodingProfile(container: "container_example", type: nil, videoCodec: "videoCodec_example", audioCodec: "audioCodec_example", _protocol: "_protocol_example", estimateContentLength: false, enableMpegtsM2TsMode: false, transcodeSeekInfo: TranscodeSeekInfo(), copyTimestamps: false, context: EncodingContext(), enableSubtitlesInManifest: false, maxAudioChannels: "maxAudioChannels_example", minSegments: 123, segmentLength: 123, breakOnNonKeyFrames: false, conditions: [ProfileCondition(condition: ProfileConditionType(), property: ProfileConditionValue(), value: "value_example", isRequired: false)])], containerProfiles: [ContainerProfile(type: nil, conditions: [nil], container: "container_example")], codecProfiles: [CodecProfile(type: CodecType(), conditions: [nil], applyConditions: [nil], codec: "codec_example", container: "container_example")], responseProfiles: [ResponseProfile(container: "container_example", audioCodec: "audioCodec_example", videoCodec: "videoCodec_example", type: nil, orgPn: "orgPn_example", mimeType: "mimeType_example", conditions: [nil])], subtitleProfiles: [SubtitleProfile(format: "format_example", method: SubtitleDeliveryMethod(), didlMode: "didlMode_example", language: "language_example", container: "container_example")]), appStoreUrl: "appStoreUrl_example", iconUrl: "iconUrl_example") // PostFullCapabilitiesRequest | The MediaBrowser.Model.Session.ClientCapabilities. -let id = "id_example" // String | The session id. (optional) - -// Updates capabilities for a device. -SessionAPI.postFullCapabilities(postFullCapabilitiesRequest: postFullCapabilitiesRequest, id: id) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **postFullCapabilitiesRequest** | [**PostFullCapabilitiesRequest**](PostFullCapabilitiesRequest.md) | The MediaBrowser.Model.Session.ClientCapabilities. | - **id** | **String** | The session id. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **removeUserFromSession** -```swift - open class func removeUserFromSession(sessionId: String, userId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Removes an additional user from a session. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let sessionId = "sessionId_example" // String | The session id. -let userId = "userId_example" // String | The user id. - -// Removes an additional user from a session. -SessionAPI.removeUserFromSession(sessionId: sessionId, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionId** | **String** | The session id. | - **userId** | **String** | The user id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **reportSessionEnded** -```swift - open class func reportSessionEnded(completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports that a session has ended. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Reports that a session has ended. -SessionAPI.reportSessionEnded() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **reportViewing** -```swift - open class func reportViewing(itemId: String, sessionId: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Reports that a session is viewing an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let sessionId = "sessionId_example" // String | The session id. (optional) - -// Reports that a session is viewing an item. -SessionAPI.reportViewing(itemId: itemId, sessionId: sessionId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **sessionId** | **String** | The session id. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **sendFullGeneralCommand** -```swift - open class func sendFullGeneralCommand(sessionId: String, sendFullGeneralCommandRequest: SendFullGeneralCommandRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Issues a full general command to a client. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let sessionId = "sessionId_example" // String | The session id. -let sendFullGeneralCommandRequest = SendFullGeneralCommand_request(name: GeneralCommandType(), controllingUserId: "controllingUserId_example", arguments: "TODO") // SendFullGeneralCommandRequest | The MediaBrowser.Model.Session.GeneralCommand. - -// Issues a full general command to a client. -SessionAPI.sendFullGeneralCommand(sessionId: sessionId, sendFullGeneralCommandRequest: sendFullGeneralCommandRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionId** | **String** | The session id. | - **sendFullGeneralCommandRequest** | [**SendFullGeneralCommandRequest**](SendFullGeneralCommandRequest.md) | The MediaBrowser.Model.Session.GeneralCommand. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **sendGeneralCommand** -```swift - open class func sendGeneralCommand(sessionId: String, command: GeneralCommandType, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Issues a general command to a client. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let sessionId = "sessionId_example" // String | The session id. -let command = GeneralCommandType() // GeneralCommandType | The command to send. - -// Issues a general command to a client. -SessionAPI.sendGeneralCommand(sessionId: sessionId, command: command) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionId** | **String** | The session id. | - **command** | [**GeneralCommandType**](.md) | The command to send. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **sendMessageCommand** -```swift - open class func sendMessageCommand(sessionId: String, sendMessageCommandRequest: SendMessageCommandRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Issues a command to a client to display a message to the user. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let sessionId = "sessionId_example" // String | The session id. -let sendMessageCommandRequest = SendMessageCommand_request(header: "header_example", text: "text_example", timeoutMs: 123) // SendMessageCommandRequest | The MediaBrowser.Model.Session.MessageCommand object containing Header, Message Text, and TimeoutMs. - -// Issues a command to a client to display a message to the user. -SessionAPI.sendMessageCommand(sessionId: sessionId, sendMessageCommandRequest: sendMessageCommandRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionId** | **String** | The session id. | - **sendMessageCommandRequest** | [**SendMessageCommandRequest**](SendMessageCommandRequest.md) | The MediaBrowser.Model.Session.MessageCommand object containing Header, Message Text, and TimeoutMs. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **sendPlaystateCommand** -```swift - open class func sendPlaystateCommand(sessionId: String, command: PlaystateCommand, seekPositionTicks: Int64? = nil, controllingUserId: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Issues a playstate command to a client. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let sessionId = "sessionId_example" // String | The session id. -let command = PlaystateCommand() // PlaystateCommand | The MediaBrowser.Model.Session.PlaystateCommand. -let seekPositionTicks = 987 // Int64 | The optional position ticks. (optional) -let controllingUserId = "controllingUserId_example" // String | The optional controlling user id. (optional) - -// Issues a playstate command to a client. -SessionAPI.sendPlaystateCommand(sessionId: sessionId, command: command, seekPositionTicks: seekPositionTicks, controllingUserId: controllingUserId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionId** | **String** | The session id. | - **command** | [**PlaystateCommand**](.md) | The MediaBrowser.Model.Session.PlaystateCommand. | - **seekPositionTicks** | **Int64** | The optional position ticks. | [optional] - **controllingUserId** | **String** | The optional controlling user id. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **sendSystemCommand** -```swift - open class func sendSystemCommand(sessionId: String, command: GeneralCommandType, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Issues a system command to a client. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let sessionId = "sessionId_example" // String | The session id. -let command = GeneralCommandType() // GeneralCommandType | The command to send. - -// Issues a system command to a client. -SessionAPI.sendSystemCommand(sessionId: sessionId, command: command) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionId** | **String** | The session id. | - **command** | [**GeneralCommandType**](.md) | The command to send. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/SessionInfo.md b/docs/SessionInfo.md deleted file mode 100644 index 0ca454ad8..000000000 --- a/docs/SessionInfo.md +++ /dev/null @@ -1,38 +0,0 @@ -# SessionInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playState** | [**SessionInfoPlayState**](SessionInfoPlayState.md) | | [optional] -**additionalUsers** | [SessionUserInfo] | | [optional] -**capabilities** | [**SessionInfoCapabilities**](SessionInfoCapabilities.md) | | [optional] -**remoteEndPoint** | **String** | Gets or sets the remote end point. | [optional] -**playableMediaTypes** | **[String]** | Gets the playable media types. | [optional] [readonly] -**id** | **String** | Gets or sets the id. | [optional] -**userId** | **String** | Gets or sets the user id. | [optional] -**userName** | **String** | Gets or sets the username. | [optional] -**client** | **String** | Gets or sets the type of the client. | [optional] -**lastActivityDate** | **Date** | Gets or sets the last activity date. | [optional] -**lastPlaybackCheckIn** | **Date** | Gets or sets the last playback check in. | [optional] -**deviceName** | **String** | Gets or sets the name of the device. | [optional] -**deviceType** | **String** | Gets or sets the type of the device. | [optional] -**nowPlayingItem** | [**SessionInfoNowPlayingItem**](SessionInfoNowPlayingItem.md) | | [optional] -**fullNowPlayingItem** | [**SessionInfoFullNowPlayingItem**](SessionInfoFullNowPlayingItem.md) | | [optional] -**nowViewingItem** | [**SessionInfoNowViewingItem**](SessionInfoNowViewingItem.md) | | [optional] -**deviceId** | **String** | Gets or sets the device id. | [optional] -**applicationVersion** | **String** | Gets or sets the application version. | [optional] -**transcodingInfo** | [**SessionInfoTranscodingInfo**](SessionInfoTranscodingInfo.md) | | [optional] -**isActive** | **Bool** | Gets a value indicating whether this instance is active. | [optional] [readonly] -**supportsMediaControl** | **Bool** | | [optional] [readonly] -**supportsRemoteControl** | **Bool** | | [optional] [readonly] -**nowPlayingQueue** | [QueueItem] | | [optional] -**nowPlayingQueueFullItems** | [BaseItemDto] | | [optional] -**hasCustomDeviceName** | **Bool** | | [optional] -**playlistItemId** | **String** | | [optional] -**serverId** | **String** | | [optional] -**userPrimaryImageTag** | **String** | | [optional] -**supportedCommands** | [GeneralCommandType] | Gets the supported commands. | [optional] [readonly] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SessionInfoCapabilities.md b/docs/SessionInfoCapabilities.md deleted file mode 100644 index bd0f02ce9..000000000 --- a/docs/SessionInfoCapabilities.md +++ /dev/null @@ -1,19 +0,0 @@ -# SessionInfoCapabilities - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playableMediaTypes** | **[String]** | | [optional] -**supportedCommands** | [GeneralCommandType] | | [optional] -**supportsMediaControl** | **Bool** | | [optional] -**supportsContentUploading** | **Bool** | | [optional] -**messageCallbackUrl** | **String** | | [optional] -**supportsPersistentIdentifier** | **Bool** | | [optional] -**supportsSync** | **Bool** | | [optional] -**deviceProfile** | [**ClientCapabilitiesDeviceProfile**](ClientCapabilitiesDeviceProfile.md) | | [optional] -**appStoreUrl** | **String** | | [optional] -**iconUrl** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SessionInfoFullNowPlayingItem.md b/docs/SessionInfoFullNowPlayingItem.md deleted file mode 100644 index 79abed5c1..000000000 --- a/docs/SessionInfoFullNowPlayingItem.md +++ /dev/null @@ -1,20 +0,0 @@ -# SessionInfoFullNowPlayingItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**size** | **Int64** | | [optional] -**container** | **String** | | [optional] -**isHD** | **Bool** | | [optional] [readonly] -**isShortcut** | **Bool** | | [optional] -**shortcutPath** | **String** | | [optional] -**width** | **Int** | | [optional] -**height** | **Int** | | [optional] -**extraIds** | **[String]** | | [optional] -**dateLastSaved** | **Date** | | [optional] -**remoteTrailers** | [MediaUrl] | Gets or sets the remote trailers. | [optional] -**supportsExternalTransfer** | **Bool** | | [optional] [readonly] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SessionInfoNowPlayingItem.md b/docs/SessionInfoNowPlayingItem.md deleted file mode 100644 index 0cfad8712..000000000 --- a/docs/SessionInfoNowPlayingItem.md +++ /dev/null @@ -1,159 +0,0 @@ -# SessionInfoNowPlayingItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**etag** | **String** | Gets or sets the etag. | [optional] -**sourceType** | **String** | Gets or sets the type of the source. | [optional] -**playlistItemId** | **String** | Gets or sets the playlist item identifier. | [optional] -**dateCreated** | **Date** | Gets or sets the date created. | [optional] -**dateLastMediaAdded** | **Date** | | [optional] -**extraType** | **String** | | [optional] -**airsBeforeSeasonNumber** | **Int** | | [optional] -**airsAfterSeasonNumber** | **Int** | | [optional] -**airsBeforeEpisodeNumber** | **Int** | | [optional] -**canDelete** | **Bool** | | [optional] -**canDownload** | **Bool** | | [optional] -**hasSubtitles** | **Bool** | | [optional] -**preferredMetadataLanguage** | **String** | | [optional] -**preferredMetadataCountryCode** | **String** | | [optional] -**supportsSync** | **Bool** | Gets or sets a value indicating whether [supports synchronize]. | [optional] -**container** | **String** | | [optional] -**sortName** | **String** | Gets or sets the name of the sort. | [optional] -**forcedSortName** | **String** | | [optional] -**video3DFormat** | [**Video3DFormat**](Video3DFormat.md) | Gets or sets the video3 D format. | [optional] -**premiereDate** | **Date** | Gets or sets the premiere date. | [optional] -**externalUrls** | [ExternalUrl] | Gets or sets the external urls. | [optional] -**mediaSources** | [MediaSourceInfo] | Gets or sets the media versions. | [optional] -**criticRating** | **Float** | Gets or sets the critic rating. | [optional] -**productionLocations** | **[String]** | | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**enableMediaSourceDisplay** | **Bool** | | [optional] -**officialRating** | **String** | Gets or sets the official rating. | [optional] -**customRating** | **String** | Gets or sets the custom rating. | [optional] -**channelId** | **String** | Gets or sets the channel identifier. | [optional] -**channelName** | **String** | | [optional] -**overview** | **String** | Gets or sets the overview. | [optional] -**taglines** | **[String]** | Gets or sets the taglines. | [optional] -**genres** | **[String]** | Gets or sets the genres. | [optional] -**communityRating** | **Float** | Gets or sets the community rating. | [optional] -**cumulativeRunTimeTicks** | **Int64** | Gets or sets the cumulative run time ticks. | [optional] -**runTimeTicks** | **Int64** | Gets or sets the run time ticks. | [optional] -**playAccess** | [**PlayAccess**](PlayAccess.md) | Gets or sets the play access. | [optional] -**aspectRatio** | **String** | Gets or sets the aspect ratio. | [optional] -**productionYear** | **Int** | Gets or sets the production year. | [optional] -**isPlaceHolder** | **Bool** | Gets or sets a value indicating whether this instance is place holder. | [optional] -**number** | **String** | Gets or sets the number. | [optional] -**channelNumber** | **String** | | [optional] -**indexNumber** | **Int** | Gets or sets the index number. | [optional] -**indexNumberEnd** | **Int** | Gets or sets the index number end. | [optional] -**parentIndexNumber** | **Int** | Gets or sets the parent index number. | [optional] -**remoteTrailers** | [MediaUrl] | Gets or sets the trailer urls. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**isHD** | **Bool** | Gets or sets a value indicating whether this instance is HD. | [optional] -**isFolder** | **Bool** | Gets or sets a value indicating whether this instance is folder. | [optional] -**parentId** | **String** | Gets or sets the parent id. | [optional] -**type** | [**BaseItemKind**](BaseItemKind.md) | The base item kind. | [optional] -**people** | [BaseItemPerson] | Gets or sets the people. | [optional] -**studios** | [NameGuidPair] | Gets or sets the studios. | [optional] -**genreItems** | [NameGuidPair] | | [optional] -**parentLogoItemId** | **String** | Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropItemId** | **String** | Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropImageTags** | **[String]** | Gets or sets the parent backdrop image tags. | [optional] -**localTrailerCount** | **Int** | Gets or sets the local trailer count. | [optional] -**userData** | [**BaseItemDtoUserData**](BaseItemDtoUserData.md) | | [optional] -**recursiveItemCount** | **Int** | Gets or sets the recursive item count. | [optional] -**childCount** | **Int** | Gets or sets the child count. | [optional] -**seriesName** | **String** | Gets or sets the name of the series. | [optional] -**seriesId** | **String** | Gets or sets the series id. | [optional] -**seasonId** | **String** | Gets or sets the season identifier. | [optional] -**specialFeatureCount** | **Int** | Gets or sets the special feature count. | [optional] -**displayPreferencesId** | **String** | Gets or sets the display preferences id. | [optional] -**status** | **String** | Gets or sets the status. | [optional] -**airTime** | **String** | Gets or sets the air time. | [optional] -**airDays** | [DayOfWeek] | Gets or sets the air days. | [optional] -**tags** | **[String]** | Gets or sets the tags. | [optional] -**primaryImageAspectRatio** | **Double** | Gets or sets the primary image aspect ratio, after image enhancements. | [optional] -**artists** | **[String]** | Gets or sets the artists. | [optional] -**artistItems** | [NameGuidPair] | Gets or sets the artist items. | [optional] -**album** | **String** | Gets or sets the album. | [optional] -**collectionType** | **String** | Gets or sets the type of the collection. | [optional] -**displayOrder** | **String** | Gets or sets the display order. | [optional] -**albumId** | **String** | Gets or sets the album id. | [optional] -**albumPrimaryImageTag** | **String** | Gets or sets the album image tag. | [optional] -**seriesPrimaryImageTag** | **String** | Gets or sets the series primary image tag. | [optional] -**albumArtist** | **String** | Gets or sets the album artist. | [optional] -**albumArtists** | [NameGuidPair] | Gets or sets the album artists. | [optional] -**seasonName** | **String** | Gets or sets the name of the season. | [optional] -**mediaStreams** | [MediaStream] | Gets or sets the media streams. | [optional] -**videoType** | [**VideoType**](VideoType.md) | Gets or sets the type of the video. | [optional] -**partCount** | **Int** | Gets or sets the part count. | [optional] -**mediaSourceCount** | **Int** | | [optional] -**imageTags** | **[String: String]** | Gets or sets the image tags. | [optional] -**backdropImageTags** | **[String]** | Gets or sets the backdrop image tags. | [optional] -**screenshotImageTags** | **[String]** | Gets or sets the screenshot image tags. | [optional] -**parentLogoImageTag** | **String** | Gets or sets the parent logo image tag. | [optional] -**parentArtItemId** | **String** | Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. | [optional] -**parentArtImageTag** | **String** | Gets or sets the parent art image tag. | [optional] -**seriesThumbImageTag** | **String** | Gets or sets the series thumb image tag. | [optional] -**imageBlurHashes** | [**BaseItemDtoImageBlurHashes**](BaseItemDtoImageBlurHashes.md) | | [optional] -**seriesStudio** | **String** | Gets or sets the series studio. | [optional] -**parentThumbItemId** | **String** | Gets or sets the parent thumb item id. | [optional] -**parentThumbImageTag** | **String** | Gets or sets the parent thumb image tag. | [optional] -**parentPrimaryImageItemId** | **String** | Gets or sets the parent primary image item identifier. | [optional] -**parentPrimaryImageTag** | **String** | Gets or sets the parent primary image tag. | [optional] -**chapters** | [ChapterInfo] | Gets or sets the chapters. | [optional] -**locationType** | [**LocationType**](LocationType.md) | Gets or sets the type of the location. | [optional] -**isoType** | [**IsoType**](IsoType.md) | Gets or sets the type of the iso. | [optional] -**mediaType** | **String** | Gets or sets the type of the media. | [optional] -**endDate** | **Date** | Gets or sets the end date. | [optional] -**lockedFields** | [MetadataField] | Gets or sets the locked fields. | [optional] -**trailerCount** | **Int** | Gets or sets the trailer count. | [optional] -**movieCount** | **Int** | Gets or sets the movie count. | [optional] -**seriesCount** | **Int** | Gets or sets the series count. | [optional] -**programCount** | **Int** | | [optional] -**episodeCount** | **Int** | Gets or sets the episode count. | [optional] -**songCount** | **Int** | Gets or sets the song count. | [optional] -**albumCount** | **Int** | Gets or sets the album count. | [optional] -**artistCount** | **Int** | | [optional] -**musicVideoCount** | **Int** | Gets or sets the music video count. | [optional] -**lockData** | **Bool** | Gets or sets a value indicating whether [enable internet providers]. | [optional] -**width** | **Int** | | [optional] -**height** | **Int** | | [optional] -**cameraMake** | **String** | | [optional] -**cameraModel** | **String** | | [optional] -**software** | **String** | | [optional] -**exposureTime** | **Double** | | [optional] -**focalLength** | **Double** | | [optional] -**imageOrientation** | [**ImageOrientation**](ImageOrientation.md) | | [optional] -**aperture** | **Double** | | [optional] -**shutterSpeed** | **Double** | | [optional] -**latitude** | **Double** | | [optional] -**longitude** | **Double** | | [optional] -**altitude** | **Double** | | [optional] -**isoSpeedRating** | **Int** | | [optional] -**seriesTimerId** | **String** | Gets or sets the series timer identifier. | [optional] -**programId** | **String** | Gets or sets the program identifier. | [optional] -**channelPrimaryImageTag** | **String** | Gets or sets the channel primary image tag. | [optional] -**startDate** | **Date** | Gets or sets the start date of the recording, in UTC. | [optional] -**completionPercentage** | **Double** | Gets or sets the completion percentage. | [optional] -**isRepeat** | **Bool** | Gets or sets a value indicating whether this instance is repeat. | [optional] -**episodeTitle** | **String** | Gets or sets the episode title. | [optional] -**channelType** | [**ChannelType**](ChannelType.md) | Gets or sets the type of the channel. | [optional] -**audio** | [**ProgramAudio**](ProgramAudio.md) | Gets or sets the audio. | [optional] -**isMovie** | **Bool** | Gets or sets a value indicating whether this instance is movie. | [optional] -**isSports** | **Bool** | Gets or sets a value indicating whether this instance is sports. | [optional] -**isSeries** | **Bool** | Gets or sets a value indicating whether this instance is series. | [optional] -**isLive** | **Bool** | Gets or sets a value indicating whether this instance is live. | [optional] -**isNews** | **Bool** | Gets or sets a value indicating whether this instance is news. | [optional] -**isKids** | **Bool** | Gets or sets a value indicating whether this instance is kids. | [optional] -**isPremiere** | **Bool** | Gets or sets a value indicating whether this instance is premiere. | [optional] -**timerId** | **String** | Gets or sets the timer identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SessionInfoNowViewingItem.md b/docs/SessionInfoNowViewingItem.md deleted file mode 100644 index db152a6ee..000000000 --- a/docs/SessionInfoNowViewingItem.md +++ /dev/null @@ -1,159 +0,0 @@ -# SessionInfoNowViewingItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**etag** | **String** | Gets or sets the etag. | [optional] -**sourceType** | **String** | Gets or sets the type of the source. | [optional] -**playlistItemId** | **String** | Gets or sets the playlist item identifier. | [optional] -**dateCreated** | **Date** | Gets or sets the date created. | [optional] -**dateLastMediaAdded** | **Date** | | [optional] -**extraType** | **String** | | [optional] -**airsBeforeSeasonNumber** | **Int** | | [optional] -**airsAfterSeasonNumber** | **Int** | | [optional] -**airsBeforeEpisodeNumber** | **Int** | | [optional] -**canDelete** | **Bool** | | [optional] -**canDownload** | **Bool** | | [optional] -**hasSubtitles** | **Bool** | | [optional] -**preferredMetadataLanguage** | **String** | | [optional] -**preferredMetadataCountryCode** | **String** | | [optional] -**supportsSync** | **Bool** | Gets or sets a value indicating whether [supports synchronize]. | [optional] -**container** | **String** | | [optional] -**sortName** | **String** | Gets or sets the name of the sort. | [optional] -**forcedSortName** | **String** | | [optional] -**video3DFormat** | [**Video3DFormat**](Video3DFormat.md) | Gets or sets the video3 D format. | [optional] -**premiereDate** | **Date** | Gets or sets the premiere date. | [optional] -**externalUrls** | [ExternalUrl] | Gets or sets the external urls. | [optional] -**mediaSources** | [MediaSourceInfo] | Gets or sets the media versions. | [optional] -**criticRating** | **Float** | Gets or sets the critic rating. | [optional] -**productionLocations** | **[String]** | | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**enableMediaSourceDisplay** | **Bool** | | [optional] -**officialRating** | **String** | Gets or sets the official rating. | [optional] -**customRating** | **String** | Gets or sets the custom rating. | [optional] -**channelId** | **String** | Gets or sets the channel identifier. | [optional] -**channelName** | **String** | | [optional] -**overview** | **String** | Gets or sets the overview. | [optional] -**taglines** | **[String]** | Gets or sets the taglines. | [optional] -**genres** | **[String]** | Gets or sets the genres. | [optional] -**communityRating** | **Float** | Gets or sets the community rating. | [optional] -**cumulativeRunTimeTicks** | **Int64** | Gets or sets the cumulative run time ticks. | [optional] -**runTimeTicks** | **Int64** | Gets or sets the run time ticks. | [optional] -**playAccess** | [**PlayAccess**](PlayAccess.md) | Gets or sets the play access. | [optional] -**aspectRatio** | **String** | Gets or sets the aspect ratio. | [optional] -**productionYear** | **Int** | Gets or sets the production year. | [optional] -**isPlaceHolder** | **Bool** | Gets or sets a value indicating whether this instance is place holder. | [optional] -**number** | **String** | Gets or sets the number. | [optional] -**channelNumber** | **String** | | [optional] -**indexNumber** | **Int** | Gets or sets the index number. | [optional] -**indexNumberEnd** | **Int** | Gets or sets the index number end. | [optional] -**parentIndexNumber** | **Int** | Gets or sets the parent index number. | [optional] -**remoteTrailers** | [MediaUrl] | Gets or sets the trailer urls. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**isHD** | **Bool** | Gets or sets a value indicating whether this instance is HD. | [optional] -**isFolder** | **Bool** | Gets or sets a value indicating whether this instance is folder. | [optional] -**parentId** | **String** | Gets or sets the parent id. | [optional] -**type** | [**BaseItemKind**](BaseItemKind.md) | The base item kind. | [optional] -**people** | [BaseItemPerson] | Gets or sets the people. | [optional] -**studios** | [NameGuidPair] | Gets or sets the studios. | [optional] -**genreItems** | [NameGuidPair] | | [optional] -**parentLogoItemId** | **String** | Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropItemId** | **String** | Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropImageTags** | **[String]** | Gets or sets the parent backdrop image tags. | [optional] -**localTrailerCount** | **Int** | Gets or sets the local trailer count. | [optional] -**userData** | [**BaseItemDtoUserData**](BaseItemDtoUserData.md) | | [optional] -**recursiveItemCount** | **Int** | Gets or sets the recursive item count. | [optional] -**childCount** | **Int** | Gets or sets the child count. | [optional] -**seriesName** | **String** | Gets or sets the name of the series. | [optional] -**seriesId** | **String** | Gets or sets the series id. | [optional] -**seasonId** | **String** | Gets or sets the season identifier. | [optional] -**specialFeatureCount** | **Int** | Gets or sets the special feature count. | [optional] -**displayPreferencesId** | **String** | Gets or sets the display preferences id. | [optional] -**status** | **String** | Gets or sets the status. | [optional] -**airTime** | **String** | Gets or sets the air time. | [optional] -**airDays** | [DayOfWeek] | Gets or sets the air days. | [optional] -**tags** | **[String]** | Gets or sets the tags. | [optional] -**primaryImageAspectRatio** | **Double** | Gets or sets the primary image aspect ratio, after image enhancements. | [optional] -**artists** | **[String]** | Gets or sets the artists. | [optional] -**artistItems** | [NameGuidPair] | Gets or sets the artist items. | [optional] -**album** | **String** | Gets or sets the album. | [optional] -**collectionType** | **String** | Gets or sets the type of the collection. | [optional] -**displayOrder** | **String** | Gets or sets the display order. | [optional] -**albumId** | **String** | Gets or sets the album id. | [optional] -**albumPrimaryImageTag** | **String** | Gets or sets the album image tag. | [optional] -**seriesPrimaryImageTag** | **String** | Gets or sets the series primary image tag. | [optional] -**albumArtist** | **String** | Gets or sets the album artist. | [optional] -**albumArtists** | [NameGuidPair] | Gets or sets the album artists. | [optional] -**seasonName** | **String** | Gets or sets the name of the season. | [optional] -**mediaStreams** | [MediaStream] | Gets or sets the media streams. | [optional] -**videoType** | [**VideoType**](VideoType.md) | Gets or sets the type of the video. | [optional] -**partCount** | **Int** | Gets or sets the part count. | [optional] -**mediaSourceCount** | **Int** | | [optional] -**imageTags** | **[String: String]** | Gets or sets the image tags. | [optional] -**backdropImageTags** | **[String]** | Gets or sets the backdrop image tags. | [optional] -**screenshotImageTags** | **[String]** | Gets or sets the screenshot image tags. | [optional] -**parentLogoImageTag** | **String** | Gets or sets the parent logo image tag. | [optional] -**parentArtItemId** | **String** | Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. | [optional] -**parentArtImageTag** | **String** | Gets or sets the parent art image tag. | [optional] -**seriesThumbImageTag** | **String** | Gets or sets the series thumb image tag. | [optional] -**imageBlurHashes** | [**BaseItemDtoImageBlurHashes**](BaseItemDtoImageBlurHashes.md) | | [optional] -**seriesStudio** | **String** | Gets or sets the series studio. | [optional] -**parentThumbItemId** | **String** | Gets or sets the parent thumb item id. | [optional] -**parentThumbImageTag** | **String** | Gets or sets the parent thumb image tag. | [optional] -**parentPrimaryImageItemId** | **String** | Gets or sets the parent primary image item identifier. | [optional] -**parentPrimaryImageTag** | **String** | Gets or sets the parent primary image tag. | [optional] -**chapters** | [ChapterInfo] | Gets or sets the chapters. | [optional] -**locationType** | [**LocationType**](LocationType.md) | Gets or sets the type of the location. | [optional] -**isoType** | [**IsoType**](IsoType.md) | Gets or sets the type of the iso. | [optional] -**mediaType** | **String** | Gets or sets the type of the media. | [optional] -**endDate** | **Date** | Gets or sets the end date. | [optional] -**lockedFields** | [MetadataField] | Gets or sets the locked fields. | [optional] -**trailerCount** | **Int** | Gets or sets the trailer count. | [optional] -**movieCount** | **Int** | Gets or sets the movie count. | [optional] -**seriesCount** | **Int** | Gets or sets the series count. | [optional] -**programCount** | **Int** | | [optional] -**episodeCount** | **Int** | Gets or sets the episode count. | [optional] -**songCount** | **Int** | Gets or sets the song count. | [optional] -**albumCount** | **Int** | Gets or sets the album count. | [optional] -**artistCount** | **Int** | | [optional] -**musicVideoCount** | **Int** | Gets or sets the music video count. | [optional] -**lockData** | **Bool** | Gets or sets a value indicating whether [enable internet providers]. | [optional] -**width** | **Int** | | [optional] -**height** | **Int** | | [optional] -**cameraMake** | **String** | | [optional] -**cameraModel** | **String** | | [optional] -**software** | **String** | | [optional] -**exposureTime** | **Double** | | [optional] -**focalLength** | **Double** | | [optional] -**imageOrientation** | [**ImageOrientation**](ImageOrientation.md) | | [optional] -**aperture** | **Double** | | [optional] -**shutterSpeed** | **Double** | | [optional] -**latitude** | **Double** | | [optional] -**longitude** | **Double** | | [optional] -**altitude** | **Double** | | [optional] -**isoSpeedRating** | **Int** | | [optional] -**seriesTimerId** | **String** | Gets or sets the series timer identifier. | [optional] -**programId** | **String** | Gets or sets the program identifier. | [optional] -**channelPrimaryImageTag** | **String** | Gets or sets the channel primary image tag. | [optional] -**startDate** | **Date** | Gets or sets the start date of the recording, in UTC. | [optional] -**completionPercentage** | **Double** | Gets or sets the completion percentage. | [optional] -**isRepeat** | **Bool** | Gets or sets a value indicating whether this instance is repeat. | [optional] -**episodeTitle** | **String** | Gets or sets the episode title. | [optional] -**channelType** | [**ChannelType**](ChannelType.md) | Gets or sets the type of the channel. | [optional] -**audio** | [**ProgramAudio**](ProgramAudio.md) | Gets or sets the audio. | [optional] -**isMovie** | **Bool** | Gets or sets a value indicating whether this instance is movie. | [optional] -**isSports** | **Bool** | Gets or sets a value indicating whether this instance is sports. | [optional] -**isSeries** | **Bool** | Gets or sets a value indicating whether this instance is series. | [optional] -**isLive** | **Bool** | Gets or sets a value indicating whether this instance is live. | [optional] -**isNews** | **Bool** | Gets or sets a value indicating whether this instance is news. | [optional] -**isKids** | **Bool** | Gets or sets a value indicating whether this instance is kids. | [optional] -**isPremiere** | **Bool** | Gets or sets a value indicating whether this instance is premiere. | [optional] -**timerId** | **String** | Gets or sets the timer identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SessionInfoPlayState.md b/docs/SessionInfoPlayState.md deleted file mode 100644 index 091d95de0..000000000 --- a/docs/SessionInfoPlayState.md +++ /dev/null @@ -1,20 +0,0 @@ -# SessionInfoPlayState - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**positionTicks** | **Int64** | Gets or sets the now playing position ticks. | [optional] -**canSeek** | **Bool** | Gets or sets a value indicating whether this instance can seek. | [optional] -**isPaused** | **Bool** | Gets or sets a value indicating whether this instance is paused. | [optional] -**isMuted** | **Bool** | Gets or sets a value indicating whether this instance is muted. | [optional] -**volumeLevel** | **Int** | Gets or sets the volume level. | [optional] -**audioStreamIndex** | **Int** | Gets or sets the index of the now playing audio stream. | [optional] -**subtitleStreamIndex** | **Int** | Gets or sets the index of the now playing subtitle stream. | [optional] -**mediaSourceId** | **String** | Gets or sets the now playing media version identifier. | [optional] -**playMethod** | [**PlayMethod**](PlayMethod.md) | Gets or sets the play method. | [optional] -**repeatMode** | [**RepeatMode**](RepeatMode.md) | Gets or sets the repeat mode. | [optional] -**liveStreamId** | **String** | Gets or sets the now playing live stream identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SessionInfoTranscodingInfo.md b/docs/SessionInfoTranscodingInfo.md deleted file mode 100644 index 8e39a9cfd..000000000 --- a/docs/SessionInfoTranscodingInfo.md +++ /dev/null @@ -1,22 +0,0 @@ -# SessionInfoTranscodingInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**audioCodec** | **String** | | [optional] -**videoCodec** | **String** | | [optional] -**container** | **String** | | [optional] -**isVideoDirect** | **Bool** | | [optional] -**isAudioDirect** | **Bool** | | [optional] -**bitrate** | **Int** | | [optional] -**framerate** | **Float** | | [optional] -**completionPercentage** | **Double** | | [optional] -**width** | **Int** | | [optional] -**height** | **Int** | | [optional] -**audioChannels** | **Int** | | [optional] -**hardwareAccelerationType** | [**HardwareEncodingType**](HardwareEncodingType.md) | | [optional] -**transcodeReasons** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SessionMessageType.md b/docs/SessionMessageType.md deleted file mode 100644 index 138ae972b..000000000 --- a/docs/SessionMessageType.md +++ /dev/null @@ -1,9 +0,0 @@ -# SessionMessageType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SessionUserInfo.md b/docs/SessionUserInfo.md deleted file mode 100644 index 745ae3920..000000000 --- a/docs/SessionUserInfo.md +++ /dev/null @@ -1,11 +0,0 @@ -# SessionUserInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**userId** | **String** | Gets or sets the user identifier. | [optional] -**userName** | **String** | Gets or sets the name of the user. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SetChannelMappingDto.md b/docs/SetChannelMappingDto.md deleted file mode 100644 index 0c782b471..000000000 --- a/docs/SetChannelMappingDto.md +++ /dev/null @@ -1,12 +0,0 @@ -# SetChannelMappingDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**providerId** | **String** | Gets or sets the provider id. | -**tunerChannelId** | **String** | Gets or sets the tuner channel id. | -**providerChannelId** | **String** | Gets or sets the provider channel id. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SetChannelMappingRequest.md b/docs/SetChannelMappingRequest.md deleted file mode 100644 index 0fa96f619..000000000 --- a/docs/SetChannelMappingRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# SetChannelMappingRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**providerId** | **String** | Gets or sets the provider id. | -**tunerChannelId** | **String** | Gets or sets the tuner channel id. | -**providerChannelId** | **String** | Gets or sets the provider channel id. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SetPlaylistItemRequestDto.md b/docs/SetPlaylistItemRequestDto.md deleted file mode 100644 index 773cdcc7c..000000000 --- a/docs/SetPlaylistItemRequestDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# SetPlaylistItemRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playlistItemId** | **String** | Gets or sets the playlist identifier of the playing item. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SetRemoteAccessRequest.md b/docs/SetRemoteAccessRequest.md deleted file mode 100644 index c2c5fc12b..000000000 --- a/docs/SetRemoteAccessRequest.md +++ /dev/null @@ -1,11 +0,0 @@ -# SetRemoteAccessRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enableRemoteAccess** | **Bool** | Gets or sets a value indicating whether enable remote access. | -**enableAutomaticPortMapping** | **Bool** | Gets or sets a value indicating whether enable automatic port mapping. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SetRepeatModeRequestDto.md b/docs/SetRepeatModeRequestDto.md deleted file mode 100644 index 20d643632..000000000 --- a/docs/SetRepeatModeRequestDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# SetRepeatModeRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**mode** | [**GroupRepeatMode**](GroupRepeatMode.md) | Enum GroupRepeatMode. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SetShuffleModeRequestDto.md b/docs/SetShuffleModeRequestDto.md deleted file mode 100644 index 63f38ccc1..000000000 --- a/docs/SetShuffleModeRequestDto.md +++ /dev/null @@ -1,10 +0,0 @@ -# SetShuffleModeRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**mode** | [**GroupShuffleMode**](GroupShuffleMode.md) | Enum GroupShuffleMode. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SongInfo.md b/docs/SongInfo.md deleted file mode 100644 index c1e516710..000000000 --- a/docs/SongInfo.md +++ /dev/null @@ -1,23 +0,0 @@ -# SongInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] -**albumArtists** | **[String]** | | [optional] -**album** | **String** | | [optional] -**artists** | **[String]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SortOrder.md b/docs/SortOrder.md deleted file mode 100644 index c608cc3ed..000000000 --- a/docs/SortOrder.md +++ /dev/null @@ -1,9 +0,0 @@ -# SortOrder - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SpecialViewOptionDto.md b/docs/SpecialViewOptionDto.md deleted file mode 100644 index 904f8a53d..000000000 --- a/docs/SpecialViewOptionDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# SpecialViewOptionDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets view option name. | [optional] -**id** | **String** | Gets or sets view option id. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/StartupAPI.md b/docs/StartupAPI.md deleted file mode 100644 index c0c518d2e..000000000 --- a/docs/StartupAPI.md +++ /dev/null @@ -1,335 +0,0 @@ -# StartupAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**completeWizard**](StartupAPI.md#completewizard) | **POST** /Startup/Complete | Completes the startup wizard. -[**getFirstUser**](StartupAPI.md#getfirstuser) | **GET** /Startup/User | Gets the first user. -[**getFirstUser2**](StartupAPI.md#getfirstuser2) | **GET** /Startup/FirstUser | Gets the first user. -[**getStartupConfiguration**](StartupAPI.md#getstartupconfiguration) | **GET** /Startup/Configuration | Gets the initial startup wizard configuration. -[**setRemoteAccess**](StartupAPI.md#setremoteaccess) | **POST** /Startup/RemoteAccess | Sets remote access and UPnP. -[**updateInitialConfiguration**](StartupAPI.md#updateinitialconfiguration) | **POST** /Startup/Configuration | Sets the initial startup wizard configuration. -[**updateStartupUser**](StartupAPI.md#updatestartupuser) | **POST** /Startup/User | Sets the user name and password. - - -# **completeWizard** -```swift - open class func completeWizard(completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Completes the startup wizard. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Completes the startup wizard. -StartupAPI.completeWizard() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getFirstUser** -```swift - open class func getFirstUser(completion: @escaping (_ data: StartupUserDto?, _ error: Error?) -> Void) -``` - -Gets the first user. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets the first user. -StartupAPI.getFirstUser() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**StartupUserDto**](StartupUserDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getFirstUser2** -```swift - open class func getFirstUser2(completion: @escaping (_ data: StartupUserDto?, _ error: Error?) -> Void) -``` - -Gets the first user. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets the first user. -StartupAPI.getFirstUser2() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**StartupUserDto**](StartupUserDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getStartupConfiguration** -```swift - open class func getStartupConfiguration(completion: @escaping (_ data: StartupConfigurationDto?, _ error: Error?) -> Void) -``` - -Gets the initial startup wizard configuration. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets the initial startup wizard configuration. -StartupAPI.getStartupConfiguration() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**StartupConfigurationDto**](StartupConfigurationDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **setRemoteAccess** -```swift - open class func setRemoteAccess(setRemoteAccessRequest: SetRemoteAccessRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Sets remote access and UPnP. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let setRemoteAccessRequest = SetRemoteAccess_request(enableRemoteAccess: false, enableAutomaticPortMapping: false) // SetRemoteAccessRequest | The startup remote access dto. - -// Sets remote access and UPnP. -StartupAPI.setRemoteAccess(setRemoteAccessRequest: setRemoteAccessRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **setRemoteAccessRequest** | [**SetRemoteAccessRequest**](SetRemoteAccessRequest.md) | The startup remote access dto. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateInitialConfiguration** -```swift - open class func updateInitialConfiguration(updateInitialConfigurationRequest: UpdateInitialConfigurationRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Sets the initial startup wizard configuration. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let updateInitialConfigurationRequest = UpdateInitialConfiguration_request(uICulture: "uICulture_example", metadataCountryCode: "metadataCountryCode_example", preferredMetadataLanguage: "preferredMetadataLanguage_example") // UpdateInitialConfigurationRequest | The updated startup configuration. - -// Sets the initial startup wizard configuration. -StartupAPI.updateInitialConfiguration(updateInitialConfigurationRequest: updateInitialConfigurationRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **updateInitialConfigurationRequest** | [**UpdateInitialConfigurationRequest**](UpdateInitialConfigurationRequest.md) | The updated startup configuration. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateStartupUser** -```swift - open class func updateStartupUser(updateStartupUserRequest: UpdateStartupUserRequest? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Sets the user name and password. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let updateStartupUserRequest = UpdateStartupUser_request(name: "name_example", password: "password_example") // UpdateStartupUserRequest | The DTO containing username and password. (optional) - -// Sets the user name and password. -StartupAPI.updateStartupUser(updateStartupUserRequest: updateStartupUserRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **updateStartupUserRequest** | [**UpdateStartupUserRequest**](UpdateStartupUserRequest.md) | The DTO containing username and password. | [optional] - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/StartupConfigurationDto.md b/docs/StartupConfigurationDto.md deleted file mode 100644 index 9eb854c72..000000000 --- a/docs/StartupConfigurationDto.md +++ /dev/null @@ -1,12 +0,0 @@ -# StartupConfigurationDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**uICulture** | **String** | Gets or sets UI language culture. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**preferredMetadataLanguage** | **String** | Gets or sets the preferred language for the metadata. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/StartupRemoteAccessDto.md b/docs/StartupRemoteAccessDto.md deleted file mode 100644 index cd9b2d473..000000000 --- a/docs/StartupRemoteAccessDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# StartupRemoteAccessDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enableRemoteAccess** | **Bool** | Gets or sets a value indicating whether enable remote access. | -**enableAutomaticPortMapping** | **Bool** | Gets or sets a value indicating whether enable automatic port mapping. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/StartupUserDto.md b/docs/StartupUserDto.md deleted file mode 100644 index 85039af40..000000000 --- a/docs/StartupUserDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# StartupUserDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the username. | [optional] -**password** | **String** | Gets or sets the user's password. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/StudiosAPI.md b/docs/StudiosAPI.md deleted file mode 100644 index b691973cd..000000000 --- a/docs/StudiosAPI.md +++ /dev/null @@ -1,140 +0,0 @@ -# StudiosAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getStudio**](StudiosAPI.md#getstudio) | **GET** /Studios/{name} | Gets a studio by name. -[**getStudios**](StudiosAPI.md#getstudios) | **GET** /Studios | Gets all studios from a given item, folder, or the entire library. - - -# **getStudio** -```swift - open class func getStudio(name: String, userId: String? = nil, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Gets a studio by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | Studio name. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) - -// Gets a studio by name. -StudiosAPI.getStudio(name: name, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | Studio name. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getStudios** -```swift - open class func getStudios(startIndex: Int? = nil, limit: Int? = nil, searchTerm: String? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, isFavorite: Bool? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, enableImages: Bool? = nil, enableTotalRecordCount: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets all studios from a given item, folder, or the entire library. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -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 searchTerm = "searchTerm_example" // String | Optional. Search term. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) -let isFavorite = true // Bool | Optional filter by items that are marked as favorite, or not. (optional) -let enableUserData = true // Bool | Optional, include user data. (optional) -let imageTypeLimit = 987 // Int | Optional, the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let userId = "userId_example" // String | User id. (optional) -let nameStartsWithOrGreater = "nameStartsWithOrGreater_example" // String | Optional filter by items whose name is sorted equally or greater than a given input string. (optional) -let nameStartsWith = "nameStartsWith_example" // String | Optional filter by items whose name is sorted equally than a given input string. (optional) -let nameLessThan = "nameLessThan_example" // String | Optional filter by items whose name is equally or lesser than a given input string. (optional) -let enableImages = true // Bool | Optional, include image information in output. (optional) (default to true) -let enableTotalRecordCount = true // Bool | Total record count. (optional) (default to true) - -// Gets all studios from a given item, folder, or the entire library. -StudiosAPI.getStudios(startIndex: startIndex, limit: limit, searchTerm: searchTerm, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, isFavorite: isFavorite, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, userId: userId, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, enableImages: enableImages, enableTotalRecordCount: enableTotalRecordCount) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **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] - **searchTerm** | **String** | Optional. Search term. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. | [optional] - **isFavorite** | **Bool** | Optional filter by items that are marked as favorite, or not. | [optional] - **enableUserData** | **Bool** | Optional, include user data. | [optional] - **imageTypeLimit** | **Int** | Optional, the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **userId** | **String** | User id. | [optional] - **nameStartsWithOrGreater** | **String** | Optional filter by items whose name is sorted equally or greater than a given input string. | [optional] - **nameStartsWith** | **String** | Optional filter by items whose name is sorted equally than a given input string. | [optional] - **nameLessThan** | **String** | Optional filter by items whose name is equally or lesser than a given input string. | [optional] - **enableImages** | **Bool** | Optional, include image information in output. | [optional] [default to true] - **enableTotalRecordCount** | **Bool** | Total record count. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/SubtitleAPI.md b/docs/SubtitleAPI.md deleted file mode 100644 index c7668e65a..000000000 --- a/docs/SubtitleAPI.md +++ /dev/null @@ -1,556 +0,0 @@ -# SubtitleAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**deleteSubtitle**](SubtitleAPI.md#deletesubtitle) | **DELETE** /Videos/{itemId}/Subtitles/{index} | Deletes an external subtitle file. -[**downloadRemoteSubtitles**](SubtitleAPI.md#downloadremotesubtitles) | **POST** /Items/{itemId}/RemoteSearch/Subtitles/{subtitleId} | Downloads a remote subtitle. -[**getFallbackFont**](SubtitleAPI.md#getfallbackfont) | **GET** /FallbackFont/Fonts/{name} | Gets a fallback font file. -[**getFallbackFontList**](SubtitleAPI.md#getfallbackfontlist) | **GET** /FallbackFont/Fonts | Gets a list of available fallback font files. -[**getRemoteSubtitles**](SubtitleAPI.md#getremotesubtitles) | **GET** /Providers/Subtitles/Subtitles/{id} | Gets the remote subtitles. -[**getSubtitle**](SubtitleAPI.md#getsubtitle) | **GET** /Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/Stream.{routeFormat} | Gets subtitles in a specified format. -[**getSubtitlePlaylist**](SubtitleAPI.md#getsubtitleplaylist) | **GET** /Videos/{itemId}/{mediaSourceId}/Subtitles/{index}/subtitles.m3u8 | Gets an HLS subtitle playlist. -[**getSubtitleWithTicks**](SubtitleAPI.md#getsubtitlewithticks) | **GET** /Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/{routeStartPositionTicks}/Stream.{routeFormat} | Gets subtitles in a specified format. -[**searchRemoteSubtitles**](SubtitleAPI.md#searchremotesubtitles) | **GET** /Items/{itemId}/RemoteSearch/Subtitles/{language} | Search remote subtitles. -[**uploadSubtitle**](SubtitleAPI.md#uploadsubtitle) | **POST** /Videos/{itemId}/Subtitles | Upload an external subtitle file. - - -# **deleteSubtitle** -```swift - open class func deleteSubtitle(itemId: String, index: Int, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Deletes an external subtitle file. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let index = 987 // Int | The index of the subtitle file. - -// Deletes an external subtitle file. -SubtitleAPI.deleteSubtitle(itemId: itemId, index: index) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **index** | **Int** | The index of the subtitle file. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **downloadRemoteSubtitles** -```swift - open class func downloadRemoteSubtitles(itemId: String, subtitleId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Downloads a remote subtitle. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let subtitleId = "subtitleId_example" // String | The subtitle id. - -// Downloads a remote subtitle. -SubtitleAPI.downloadRemoteSubtitles(itemId: itemId, subtitleId: subtitleId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **subtitleId** | **String** | The subtitle id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getFallbackFont** -```swift - open class func getFallbackFont(name: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a fallback font file. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The name of the fallback font file to get. - -// Gets a fallback font file. -SubtitleAPI.getFallbackFont(name: name) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The name of the fallback font file to get. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: font/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getFallbackFontList** -```swift - open class func getFallbackFontList(completion: @escaping (_ data: [FontFile]?, _ error: Error?) -> Void) -``` - -Gets a list of available fallback font files. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets a list of available fallback font files. -SubtitleAPI.getFallbackFontList() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[FontFile]**](FontFile.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRemoteSubtitles** -```swift - open class func getRemoteSubtitles(id: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets the remote subtitles. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let id = "id_example" // String | The item id. - -// Gets the remote subtitles. -SubtitleAPI.getRemoteSubtitles(id: id) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **id** | **String** | The item id. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSubtitle** -```swift - open class func getSubtitle(routeItemId: String, routeMediaSourceId: String, routeIndex: Int, routeFormat: String, itemId: String? = nil, mediaSourceId: String? = nil, index: Int? = nil, format: String? = nil, endPositionTicks: Int64? = nil, copyTimestamps: Bool? = nil, addVttTimeMap: Bool? = nil, startPositionTicks: Int64? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets subtitles in a specified format. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let routeItemId = "routeItemId_example" // String | The (route) item id. -let routeMediaSourceId = "routeMediaSourceId_example" // String | The (route) media source id. -let routeIndex = 987 // Int | The (route) subtitle stream index. -let routeFormat = "routeFormat_example" // String | The (route) format of the returned subtitle. -let itemId = "itemId_example" // String | The item id. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media source id. (optional) -let index = 987 // Int | The subtitle stream index. (optional) -let format = "format_example" // String | The format of the returned subtitle. (optional) -let endPositionTicks = 987 // Int64 | Optional. The end position of the subtitle in ticks. (optional) -let copyTimestamps = true // Bool | Optional. Whether to copy the timestamps. (optional) (default to false) -let addVttTimeMap = true // Bool | Optional. Whether to add a VTT time map. (optional) (default to false) -let startPositionTicks = 987 // Int64 | The start position of the subtitle in ticks. (optional) (default to 0) - -// Gets subtitles in a specified format. -SubtitleAPI.getSubtitle(routeItemId: routeItemId, routeMediaSourceId: routeMediaSourceId, routeIndex: routeIndex, routeFormat: routeFormat, itemId: itemId, mediaSourceId: mediaSourceId, index: index, format: format, endPositionTicks: endPositionTicks, copyTimestamps: copyTimestamps, addVttTimeMap: addVttTimeMap, startPositionTicks: startPositionTicks) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **routeItemId** | **String** | The (route) item id. | - **routeMediaSourceId** | **String** | The (route) media source id. | - **routeIndex** | **Int** | The (route) subtitle stream index. | - **routeFormat** | **String** | The (route) format of the returned subtitle. | - **itemId** | **String** | The item id. | [optional] - **mediaSourceId** | **String** | The media source id. | [optional] - **index** | **Int** | The subtitle stream index. | [optional] - **format** | **String** | The format of the returned subtitle. | [optional] - **endPositionTicks** | **Int64** | Optional. The end position of the subtitle in ticks. | [optional] - **copyTimestamps** | **Bool** | Optional. Whether to copy the timestamps. | [optional] [default to false] - **addVttTimeMap** | **Bool** | Optional. Whether to add a VTT time map. | [optional] [default to false] - **startPositionTicks** | **Int64** | The start position of the subtitle in ticks. | [optional] [default to 0] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSubtitlePlaylist** -```swift - open class func getSubtitlePlaylist(itemId: String, index: Int, mediaSourceId: String, segmentLength: Int, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets an HLS subtitle playlist. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let index = 987 // Int | The subtitle stream index. -let mediaSourceId = "mediaSourceId_example" // String | The media source id. -let segmentLength = 987 // Int | The subtitle segment length. - -// Gets an HLS subtitle playlist. -SubtitleAPI.getSubtitlePlaylist(itemId: itemId, index: index, mediaSourceId: mediaSourceId, segmentLength: segmentLength) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **index** | **Int** | The subtitle stream index. | - **mediaSourceId** | **String** | The media source id. | - **segmentLength** | **Int** | The subtitle segment length. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/x-mpegURL - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSubtitleWithTicks** -```swift - open class func getSubtitleWithTicks(routeItemId: String, routeMediaSourceId: String, routeIndex: Int, routeStartPositionTicks: Int64, routeFormat: String, itemId: String? = nil, mediaSourceId: String? = nil, index: Int? = nil, startPositionTicks: Int64? = nil, format: String? = nil, endPositionTicks: Int64? = nil, copyTimestamps: Bool? = nil, addVttTimeMap: Bool? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets subtitles in a specified format. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let routeItemId = "routeItemId_example" // String | The (route) item id. -let routeMediaSourceId = "routeMediaSourceId_example" // String | The (route) media source id. -let routeIndex = 987 // Int | The (route) subtitle stream index. -let routeStartPositionTicks = 987 // Int64 | The (route) start position of the subtitle in ticks. -let routeFormat = "routeFormat_example" // String | The (route) format of the returned subtitle. -let itemId = "itemId_example" // String | The item id. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media source id. (optional) -let index = 987 // Int | The subtitle stream index. (optional) -let startPositionTicks = 987 // Int64 | The start position of the subtitle in ticks. (optional) -let format = "format_example" // String | The format of the returned subtitle. (optional) -let endPositionTicks = 987 // Int64 | Optional. The end position of the subtitle in ticks. (optional) -let copyTimestamps = true // Bool | Optional. Whether to copy the timestamps. (optional) (default to false) -let addVttTimeMap = true // Bool | Optional. Whether to add a VTT time map. (optional) (default to false) - -// Gets subtitles in a specified format. -SubtitleAPI.getSubtitleWithTicks(routeItemId: routeItemId, routeMediaSourceId: routeMediaSourceId, routeIndex: routeIndex, routeStartPositionTicks: routeStartPositionTicks, routeFormat: routeFormat, itemId: itemId, mediaSourceId: mediaSourceId, index: index, startPositionTicks: startPositionTicks, format: format, endPositionTicks: endPositionTicks, copyTimestamps: copyTimestamps, addVttTimeMap: addVttTimeMap) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **routeItemId** | **String** | The (route) item id. | - **routeMediaSourceId** | **String** | The (route) media source id. | - **routeIndex** | **Int** | The (route) subtitle stream index. | - **routeStartPositionTicks** | **Int64** | The (route) start position of the subtitle in ticks. | - **routeFormat** | **String** | The (route) format of the returned subtitle. | - **itemId** | **String** | The item id. | [optional] - **mediaSourceId** | **String** | The media source id. | [optional] - **index** | **Int** | The subtitle stream index. | [optional] - **startPositionTicks** | **Int64** | The start position of the subtitle in ticks. | [optional] - **format** | **String** | The format of the returned subtitle. | [optional] - **endPositionTicks** | **Int64** | Optional. The end position of the subtitle in ticks. | [optional] - **copyTimestamps** | **Bool** | Optional. Whether to copy the timestamps. | [optional] [default to false] - **addVttTimeMap** | **Bool** | Optional. Whether to add a VTT time map. | [optional] [default to false] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **searchRemoteSubtitles** -```swift - open class func searchRemoteSubtitles(itemId: String, language: String, isPerfectMatch: Bool? = nil, completion: @escaping (_ data: [RemoteSubtitleInfo]?, _ error: Error?) -> Void) -``` - -Search remote subtitles. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let language = "language_example" // String | The language of the subtitles. -let isPerfectMatch = true // Bool | Optional. Only show subtitles which are a perfect match. (optional) - -// Search remote subtitles. -SubtitleAPI.searchRemoteSubtitles(itemId: itemId, language: language, isPerfectMatch: isPerfectMatch) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **language** | **String** | The language of the subtitles. | - **isPerfectMatch** | **Bool** | Optional. Only show subtitles which are a perfect match. | [optional] - -### Return type - -[**[RemoteSubtitleInfo]**](RemoteSubtitleInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **uploadSubtitle** -```swift - open class func uploadSubtitle(itemId: String, uploadSubtitleRequest: UploadSubtitleRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Upload an external subtitle file. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item the subtitle belongs to. -let uploadSubtitleRequest = UploadSubtitle_request(language: "language_example", format: "format_example", isForced: false, data: "data_example") // UploadSubtitleRequest | The request body. - -// Upload an external subtitle file. -SubtitleAPI.uploadSubtitle(itemId: itemId, uploadSubtitleRequest: uploadSubtitleRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item the subtitle belongs to. | - **uploadSubtitleRequest** | [**UploadSubtitleRequest**](UploadSubtitleRequest.md) | The request body. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/SubtitleDeliveryMethod.md b/docs/SubtitleDeliveryMethod.md deleted file mode 100644 index 8d605251d..000000000 --- a/docs/SubtitleDeliveryMethod.md +++ /dev/null @@ -1,9 +0,0 @@ -# SubtitleDeliveryMethod - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SubtitleOptions.md b/docs/SubtitleOptions.md deleted file mode 100644 index 95cb62055..000000000 --- a/docs/SubtitleOptions.md +++ /dev/null @@ -1,18 +0,0 @@ -# SubtitleOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**skipIfEmbeddedSubtitlesPresent** | **Bool** | | [optional] -**skipIfAudioTrackMatches** | **Bool** | | [optional] -**downloadLanguages** | **[String]** | | [optional] -**downloadMovieSubtitles** | **Bool** | | [optional] -**downloadEpisodeSubtitles** | **Bool** | | [optional] -**openSubtitlesUsername** | **String** | | [optional] -**openSubtitlesPasswordHash** | **String** | | [optional] -**isOpenSubtitleVipAccount** | **Bool** | | [optional] -**requirePerfectMatch** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SubtitlePlaybackMode.md b/docs/SubtitlePlaybackMode.md deleted file mode 100644 index fef30e530..000000000 --- a/docs/SubtitlePlaybackMode.md +++ /dev/null @@ -1,9 +0,0 @@ -# SubtitlePlaybackMode - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SubtitleProfile.md b/docs/SubtitleProfile.md deleted file mode 100644 index 5e7784274..000000000 --- a/docs/SubtitleProfile.md +++ /dev/null @@ -1,14 +0,0 @@ -# SubtitleProfile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**format** | **String** | | [optional] -**method** | [**SubtitleDeliveryMethod**](SubtitleDeliveryMethod.md) | Delivery method to use during playback of a specific subtitle format. | [optional] -**didlMode** | **String** | | [optional] -**language** | **String** | | [optional] -**container** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SuggestionsAPI.md b/docs/SuggestionsAPI.md deleted file mode 100644 index 1c4922e61..000000000 --- a/docs/SuggestionsAPI.md +++ /dev/null @@ -1,67 +0,0 @@ -# SuggestionsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getSuggestions**](SuggestionsAPI.md#getsuggestions) | **GET** /Users/{userId}/Suggestions | Gets suggestions. - - -# **getSuggestions** -```swift - open class func getSuggestions(userId: String, mediaType: [String]? = nil, type: [BaseItemKind]? = nil, startIndex: Int? = nil, limit: Int? = nil, enableTotalRecordCount: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets suggestions. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. -let mediaType = ["inner_example"] // [String] | The media types. (optional) -let type = [BaseItemKind()] // [BaseItemKind] | The type. (optional) -let startIndex = 987 // Int | Optional. The start index. (optional) -let limit = 987 // Int | Optional. The limit. (optional) -let enableTotalRecordCount = true // Bool | Whether to enable the total record count. (optional) (default to false) - -// Gets suggestions. -SuggestionsAPI.getSuggestions(userId: userId, mediaType: mediaType, type: type, startIndex: startIndex, limit: limit, enableTotalRecordCount: enableTotalRecordCount) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | - **mediaType** | [**[String]**](String.md) | The media types. | [optional] - **type** | [**[BaseItemKind]**](BaseItemKind.md) | The type. | [optional] - **startIndex** | **Int** | Optional. The start index. | [optional] - **limit** | **Int** | Optional. The limit. | [optional] - **enableTotalRecordCount** | **Bool** | Whether to enable the total record count. | [optional] [default to false] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/SyncPlayAPI.md b/docs/SyncPlayAPI.md deleted file mode 100644 index 982ff82c9..000000000 --- a/docs/SyncPlayAPI.md +++ /dev/null @@ -1,1017 +0,0 @@ -# SyncPlayAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**syncPlayBuffering**](SyncPlayAPI.md#syncplaybuffering) | **POST** /SyncPlay/Buffering | Notify SyncPlay group that member is buffering. -[**syncPlayCreateGroup**](SyncPlayAPI.md#syncplaycreategroup) | **POST** /SyncPlay/New | Create a new SyncPlay group. -[**syncPlayGetGroups**](SyncPlayAPI.md#syncplaygetgroups) | **GET** /SyncPlay/List | Gets all SyncPlay groups. -[**syncPlayJoinGroup**](SyncPlayAPI.md#syncplayjoingroup) | **POST** /SyncPlay/Join | Join an existing SyncPlay group. -[**syncPlayLeaveGroup**](SyncPlayAPI.md#syncplayleavegroup) | **POST** /SyncPlay/Leave | Leave the joined SyncPlay group. -[**syncPlayMovePlaylistItem**](SyncPlayAPI.md#syncplaymoveplaylistitem) | **POST** /SyncPlay/MovePlaylistItem | Request to move an item in the playlist in SyncPlay group. -[**syncPlayNextItem**](SyncPlayAPI.md#syncplaynextitem) | **POST** /SyncPlay/NextItem | Request next item in SyncPlay group. -[**syncPlayPause**](SyncPlayAPI.md#syncplaypause) | **POST** /SyncPlay/Pause | Request pause in SyncPlay group. -[**syncPlayPing**](SyncPlayAPI.md#syncplayping) | **POST** /SyncPlay/Ping | Update session ping. -[**syncPlayPreviousItem**](SyncPlayAPI.md#syncplaypreviousitem) | **POST** /SyncPlay/PreviousItem | Request previous item in SyncPlay group. -[**syncPlayQueue**](SyncPlayAPI.md#syncplayqueue) | **POST** /SyncPlay/Queue | Request to queue items to the playlist of a SyncPlay group. -[**syncPlayReady**](SyncPlayAPI.md#syncplayready) | **POST** /SyncPlay/Ready | Notify SyncPlay group that member is ready for playback. -[**syncPlayRemoveFromPlaylist**](SyncPlayAPI.md#syncplayremovefromplaylist) | **POST** /SyncPlay/RemoveFromPlaylist | Request to remove items from the playlist in SyncPlay group. -[**syncPlaySeek**](SyncPlayAPI.md#syncplayseek) | **POST** /SyncPlay/Seek | Request seek in SyncPlay group. -[**syncPlaySetIgnoreWait**](SyncPlayAPI.md#syncplaysetignorewait) | **POST** /SyncPlay/SetIgnoreWait | Request SyncPlay group to ignore member during group-wait. -[**syncPlaySetNewQueue**](SyncPlayAPI.md#syncplaysetnewqueue) | **POST** /SyncPlay/SetNewQueue | Request to set new playlist in SyncPlay group. -[**syncPlaySetPlaylistItem**](SyncPlayAPI.md#syncplaysetplaylistitem) | **POST** /SyncPlay/SetPlaylistItem | Request to change playlist item in SyncPlay group. -[**syncPlaySetRepeatMode**](SyncPlayAPI.md#syncplaysetrepeatmode) | **POST** /SyncPlay/SetRepeatMode | Request to set repeat mode in SyncPlay group. -[**syncPlaySetShuffleMode**](SyncPlayAPI.md#syncplaysetshufflemode) | **POST** /SyncPlay/SetShuffleMode | Request to set shuffle mode in SyncPlay group. -[**syncPlayStop**](SyncPlayAPI.md#syncplaystop) | **POST** /SyncPlay/Stop | Request stop in SyncPlay group. -[**syncPlayUnpause**](SyncPlayAPI.md#syncplayunpause) | **POST** /SyncPlay/Unpause | Request unpause in SyncPlay group. - - -# **syncPlayBuffering** -```swift - open class func syncPlayBuffering(syncPlayBufferingRequest: SyncPlayBufferingRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Notify SyncPlay group that member is buffering. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlayBufferingRequest = SyncPlayBuffering_request(when: Date(), positionTicks: 123, isPlaying: false, playlistItemId: "playlistItemId_example") // SyncPlayBufferingRequest | The player status. - -// Notify SyncPlay group that member is buffering. -SyncPlayAPI.syncPlayBuffering(syncPlayBufferingRequest: syncPlayBufferingRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlayBufferingRequest** | [**SyncPlayBufferingRequest**](SyncPlayBufferingRequest.md) | The player status. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayCreateGroup** -```swift - open class func syncPlayCreateGroup(syncPlayCreateGroupRequest: SyncPlayCreateGroupRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Create a new SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlayCreateGroupRequest = SyncPlayCreateGroup_request(groupName: "groupName_example") // SyncPlayCreateGroupRequest | The settings of the new group. - -// Create a new SyncPlay group. -SyncPlayAPI.syncPlayCreateGroup(syncPlayCreateGroupRequest: syncPlayCreateGroupRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlayCreateGroupRequest** | [**SyncPlayCreateGroupRequest**](SyncPlayCreateGroupRequest.md) | The settings of the new group. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayGetGroups** -```swift - open class func syncPlayGetGroups(completion: @escaping (_ data: [GroupInfoDto]?, _ error: Error?) -> Void) -``` - -Gets all SyncPlay groups. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets all SyncPlay groups. -SyncPlayAPI.syncPlayGetGroups() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[GroupInfoDto]**](GroupInfoDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayJoinGroup** -```swift - open class func syncPlayJoinGroup(syncPlayJoinGroupRequest: SyncPlayJoinGroupRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Join an existing SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlayJoinGroupRequest = SyncPlayJoinGroup_request(groupId: "groupId_example") // SyncPlayJoinGroupRequest | The group to join. - -// Join an existing SyncPlay group. -SyncPlayAPI.syncPlayJoinGroup(syncPlayJoinGroupRequest: syncPlayJoinGroupRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlayJoinGroupRequest** | [**SyncPlayJoinGroupRequest**](SyncPlayJoinGroupRequest.md) | The group to join. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayLeaveGroup** -```swift - open class func syncPlayLeaveGroup(completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Leave the joined SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Leave the joined SyncPlay group. -SyncPlayAPI.syncPlayLeaveGroup() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayMovePlaylistItem** -```swift - open class func syncPlayMovePlaylistItem(syncPlayMovePlaylistItemRequest: SyncPlayMovePlaylistItemRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request to move an item in the playlist in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlayMovePlaylistItemRequest = SyncPlayMovePlaylistItem_request(playlistItemId: "playlistItemId_example", newIndex: 123) // SyncPlayMovePlaylistItemRequest | The new position for the item. - -// Request to move an item in the playlist in SyncPlay group. -SyncPlayAPI.syncPlayMovePlaylistItem(syncPlayMovePlaylistItemRequest: syncPlayMovePlaylistItemRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlayMovePlaylistItemRequest** | [**SyncPlayMovePlaylistItemRequest**](SyncPlayMovePlaylistItemRequest.md) | The new position for the item. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayNextItem** -```swift - open class func syncPlayNextItem(syncPlayNextItemRequest: SyncPlayNextItemRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request next item in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlayNextItemRequest = SyncPlayNextItem_request(playlistItemId: "playlistItemId_example") // SyncPlayNextItemRequest | The current item information. - -// Request next item in SyncPlay group. -SyncPlayAPI.syncPlayNextItem(syncPlayNextItemRequest: syncPlayNextItemRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlayNextItemRequest** | [**SyncPlayNextItemRequest**](SyncPlayNextItemRequest.md) | The current item information. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayPause** -```swift - open class func syncPlayPause(completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request pause in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Request pause in SyncPlay group. -SyncPlayAPI.syncPlayPause() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayPing** -```swift - open class func syncPlayPing(syncPlayPingRequest: SyncPlayPingRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Update session ping. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlayPingRequest = SyncPlayPing_request(ping: 123) // SyncPlayPingRequest | The new ping. - -// Update session ping. -SyncPlayAPI.syncPlayPing(syncPlayPingRequest: syncPlayPingRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlayPingRequest** | [**SyncPlayPingRequest**](SyncPlayPingRequest.md) | The new ping. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayPreviousItem** -```swift - open class func syncPlayPreviousItem(syncPlayPreviousItemRequest: SyncPlayPreviousItemRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request previous item in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlayPreviousItemRequest = SyncPlayPreviousItem_request(playlistItemId: "playlistItemId_example") // SyncPlayPreviousItemRequest | The current item information. - -// Request previous item in SyncPlay group. -SyncPlayAPI.syncPlayPreviousItem(syncPlayPreviousItemRequest: syncPlayPreviousItemRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlayPreviousItemRequest** | [**SyncPlayPreviousItemRequest**](SyncPlayPreviousItemRequest.md) | The current item information. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayQueue** -```swift - open class func syncPlayQueue(syncPlayQueueRequest: SyncPlayQueueRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request to queue items to the playlist of a SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlayQueueRequest = SyncPlayQueue_request(itemIds: ["itemIds_example"], mode: GroupQueueMode()) // SyncPlayQueueRequest | The items to add. - -// Request to queue items to the playlist of a SyncPlay group. -SyncPlayAPI.syncPlayQueue(syncPlayQueueRequest: syncPlayQueueRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlayQueueRequest** | [**SyncPlayQueueRequest**](SyncPlayQueueRequest.md) | The items to add. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayReady** -```swift - open class func syncPlayReady(syncPlayReadyRequest: SyncPlayReadyRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Notify SyncPlay group that member is ready for playback. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlayReadyRequest = SyncPlayReady_request(when: Date(), positionTicks: 123, isPlaying: false, playlistItemId: "playlistItemId_example") // SyncPlayReadyRequest | The player status. - -// Notify SyncPlay group that member is ready for playback. -SyncPlayAPI.syncPlayReady(syncPlayReadyRequest: syncPlayReadyRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlayReadyRequest** | [**SyncPlayReadyRequest**](SyncPlayReadyRequest.md) | The player status. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayRemoveFromPlaylist** -```swift - open class func syncPlayRemoveFromPlaylist(syncPlayRemoveFromPlaylistRequest: SyncPlayRemoveFromPlaylistRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request to remove items from the playlist in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlayRemoveFromPlaylistRequest = SyncPlayRemoveFromPlaylist_request(playlistItemIds: ["playlistItemIds_example"], clearPlaylist: false, clearPlayingItem: false) // SyncPlayRemoveFromPlaylistRequest | The items to remove. - -// Request to remove items from the playlist in SyncPlay group. -SyncPlayAPI.syncPlayRemoveFromPlaylist(syncPlayRemoveFromPlaylistRequest: syncPlayRemoveFromPlaylistRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlayRemoveFromPlaylistRequest** | [**SyncPlayRemoveFromPlaylistRequest**](SyncPlayRemoveFromPlaylistRequest.md) | The items to remove. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlaySeek** -```swift - open class func syncPlaySeek(syncPlaySeekRequest: SyncPlaySeekRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request seek in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlaySeekRequest = SyncPlaySeek_request(positionTicks: 123) // SyncPlaySeekRequest | The new playback position. - -// Request seek in SyncPlay group. -SyncPlayAPI.syncPlaySeek(syncPlaySeekRequest: syncPlaySeekRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlaySeekRequest** | [**SyncPlaySeekRequest**](SyncPlaySeekRequest.md) | The new playback position. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlaySetIgnoreWait** -```swift - open class func syncPlaySetIgnoreWait(syncPlaySetIgnoreWaitRequest: SyncPlaySetIgnoreWaitRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request SyncPlay group to ignore member during group-wait. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlaySetIgnoreWaitRequest = SyncPlaySetIgnoreWait_request(ignoreWait: false) // SyncPlaySetIgnoreWaitRequest | The settings to set. - -// Request SyncPlay group to ignore member during group-wait. -SyncPlayAPI.syncPlaySetIgnoreWait(syncPlaySetIgnoreWaitRequest: syncPlaySetIgnoreWaitRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlaySetIgnoreWaitRequest** | [**SyncPlaySetIgnoreWaitRequest**](SyncPlaySetIgnoreWaitRequest.md) | The settings to set. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlaySetNewQueue** -```swift - open class func syncPlaySetNewQueue(syncPlaySetNewQueueRequest: SyncPlaySetNewQueueRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request to set new playlist in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlaySetNewQueueRequest = SyncPlaySetNewQueue_request(playingQueue: ["playingQueue_example"], playingItemPosition: 123, startPositionTicks: 123) // SyncPlaySetNewQueueRequest | The new playlist to play in the group. - -// Request to set new playlist in SyncPlay group. -SyncPlayAPI.syncPlaySetNewQueue(syncPlaySetNewQueueRequest: syncPlaySetNewQueueRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlaySetNewQueueRequest** | [**SyncPlaySetNewQueueRequest**](SyncPlaySetNewQueueRequest.md) | The new playlist to play in the group. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlaySetPlaylistItem** -```swift - open class func syncPlaySetPlaylistItem(syncPlaySetPlaylistItemRequest: SyncPlaySetPlaylistItemRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request to change playlist item in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlaySetPlaylistItemRequest = SyncPlaySetPlaylistItem_request(playlistItemId: "playlistItemId_example") // SyncPlaySetPlaylistItemRequest | The new item to play. - -// Request to change playlist item in SyncPlay group. -SyncPlayAPI.syncPlaySetPlaylistItem(syncPlaySetPlaylistItemRequest: syncPlaySetPlaylistItemRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlaySetPlaylistItemRequest** | [**SyncPlaySetPlaylistItemRequest**](SyncPlaySetPlaylistItemRequest.md) | The new item to play. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlaySetRepeatMode** -```swift - open class func syncPlaySetRepeatMode(syncPlaySetRepeatModeRequest: SyncPlaySetRepeatModeRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request to set repeat mode in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlaySetRepeatModeRequest = SyncPlaySetRepeatMode_request(mode: GroupRepeatMode()) // SyncPlaySetRepeatModeRequest | The new repeat mode. - -// Request to set repeat mode in SyncPlay group. -SyncPlayAPI.syncPlaySetRepeatMode(syncPlaySetRepeatModeRequest: syncPlaySetRepeatModeRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlaySetRepeatModeRequest** | [**SyncPlaySetRepeatModeRequest**](SyncPlaySetRepeatModeRequest.md) | The new repeat mode. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlaySetShuffleMode** -```swift - open class func syncPlaySetShuffleMode(syncPlaySetShuffleModeRequest: SyncPlaySetShuffleModeRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request to set shuffle mode in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let syncPlaySetShuffleModeRequest = SyncPlaySetShuffleMode_request(mode: GroupShuffleMode()) // SyncPlaySetShuffleModeRequest | The new shuffle mode. - -// Request to set shuffle mode in SyncPlay group. -SyncPlayAPI.syncPlaySetShuffleMode(syncPlaySetShuffleModeRequest: syncPlaySetShuffleModeRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **syncPlaySetShuffleModeRequest** | [**SyncPlaySetShuffleModeRequest**](SyncPlaySetShuffleModeRequest.md) | The new shuffle mode. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayStop** -```swift - open class func syncPlayStop(completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request stop in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Request stop in SyncPlay group. -SyncPlayAPI.syncPlayStop() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **syncPlayUnpause** -```swift - open class func syncPlayUnpause(completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Request unpause in SyncPlay group. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Request unpause in SyncPlay group. -SyncPlayAPI.syncPlayUnpause() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/SyncPlayBufferingRequest.md b/docs/SyncPlayBufferingRequest.md deleted file mode 100644 index 3bb058af5..000000000 --- a/docs/SyncPlayBufferingRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# SyncPlayBufferingRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**when** | **Date** | Gets or sets when the request has been made by the client. | [optional] -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] -**isPlaying** | **Bool** | Gets or sets a value indicating whether the client playback is unpaused. | [optional] -**playlistItemId** | **String** | Gets or sets the playlist item identifier of the playing item. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlayCreateGroupRequest.md b/docs/SyncPlayCreateGroupRequest.md deleted file mode 100644 index 9b3e9908d..000000000 --- a/docs/SyncPlayCreateGroupRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# SyncPlayCreateGroupRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**groupName** | **String** | Gets or sets the group name. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlayJoinGroupRequest.md b/docs/SyncPlayJoinGroupRequest.md deleted file mode 100644 index fd4cb287c..000000000 --- a/docs/SyncPlayJoinGroupRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# SyncPlayJoinGroupRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**groupId** | **String** | Gets or sets the group identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlayMovePlaylistItemRequest.md b/docs/SyncPlayMovePlaylistItemRequest.md deleted file mode 100644 index 77afd4cd4..000000000 --- a/docs/SyncPlayMovePlaylistItemRequest.md +++ /dev/null @@ -1,11 +0,0 @@ -# SyncPlayMovePlaylistItemRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playlistItemId** | **String** | Gets or sets the playlist identifier of the item. | [optional] -**newIndex** | **Int** | Gets or sets the new position. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlayNextItemRequest.md b/docs/SyncPlayNextItemRequest.md deleted file mode 100644 index c3f9f837a..000000000 --- a/docs/SyncPlayNextItemRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# SyncPlayNextItemRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playlistItemId** | **String** | Gets or sets the playing item identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlayPingRequest.md b/docs/SyncPlayPingRequest.md deleted file mode 100644 index 0fc2bf85c..000000000 --- a/docs/SyncPlayPingRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# SyncPlayPingRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ping** | **Int64** | Gets or sets the ping time. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlayPreviousItemRequest.md b/docs/SyncPlayPreviousItemRequest.md deleted file mode 100644 index 442a1d7a7..000000000 --- a/docs/SyncPlayPreviousItemRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# SyncPlayPreviousItemRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playlistItemId** | **String** | Gets or sets the playing item identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlayQueueRequest.md b/docs/SyncPlayQueueRequest.md deleted file mode 100644 index e892c10b9..000000000 --- a/docs/SyncPlayQueueRequest.md +++ /dev/null @@ -1,11 +0,0 @@ -# SyncPlayQueueRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**itemIds** | **[String]** | Gets or sets the items to enqueue. | [optional] -**mode** | [**GroupQueueMode**](GroupQueueMode.md) | Enum GroupQueueMode. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlayReadyRequest.md b/docs/SyncPlayReadyRequest.md deleted file mode 100644 index 0a26109ff..000000000 --- a/docs/SyncPlayReadyRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# SyncPlayReadyRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**when** | **Date** | Gets or sets when the request has been made by the client. | [optional] -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] -**isPlaying** | **Bool** | Gets or sets a value indicating whether the client playback is unpaused. | [optional] -**playlistItemId** | **String** | Gets or sets the playlist item identifier of the playing item. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlayRemoveFromPlaylistRequest.md b/docs/SyncPlayRemoveFromPlaylistRequest.md deleted file mode 100644 index eb3b8e2b8..000000000 --- a/docs/SyncPlayRemoveFromPlaylistRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# SyncPlayRemoveFromPlaylistRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playlistItemIds** | **[String]** | Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist. | [optional] -**clearPlaylist** | **Bool** | Gets or sets a value indicating whether the entire playlist should be cleared. | [optional] -**clearPlayingItem** | **Bool** | Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlaySeekRequest.md b/docs/SyncPlaySeekRequest.md deleted file mode 100644 index c08ba0206..000000000 --- a/docs/SyncPlaySeekRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# SyncPlaySeekRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**positionTicks** | **Int64** | Gets or sets the position ticks. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlaySetIgnoreWaitRequest.md b/docs/SyncPlaySetIgnoreWaitRequest.md deleted file mode 100644 index b04eff794..000000000 --- a/docs/SyncPlaySetIgnoreWaitRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# SyncPlaySetIgnoreWaitRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ignoreWait** | **Bool** | Gets or sets a value indicating whether the client should be ignored. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlaySetNewQueueRequest.md b/docs/SyncPlaySetNewQueueRequest.md deleted file mode 100644 index 81cef414f..000000000 --- a/docs/SyncPlaySetNewQueueRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# SyncPlaySetNewQueueRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playingQueue** | **[String]** | Gets or sets the playing queue. | [optional] -**playingItemPosition** | **Int** | Gets or sets the position of the playing item in the queue. | [optional] -**startPositionTicks** | **Int64** | Gets or sets the start position ticks. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlaySetPlaylistItemRequest.md b/docs/SyncPlaySetPlaylistItemRequest.md deleted file mode 100644 index de457de02..000000000 --- a/docs/SyncPlaySetPlaylistItemRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# SyncPlaySetPlaylistItemRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**playlistItemId** | **String** | Gets or sets the playlist identifier of the playing item. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlaySetRepeatModeRequest.md b/docs/SyncPlaySetRepeatModeRequest.md deleted file mode 100644 index 01a29d0cb..000000000 --- a/docs/SyncPlaySetRepeatModeRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# SyncPlaySetRepeatModeRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**mode** | [**GroupRepeatMode**](GroupRepeatMode.md) | Enum GroupRepeatMode. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlaySetShuffleModeRequest.md b/docs/SyncPlaySetShuffleModeRequest.md deleted file mode 100644 index c1f25fcd4..000000000 --- a/docs/SyncPlaySetShuffleModeRequest.md +++ /dev/null @@ -1,10 +0,0 @@ -# SyncPlaySetShuffleModeRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**mode** | [**GroupShuffleMode**](GroupShuffleMode.md) | Enum GroupShuffleMode. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SyncPlayUserAccessType.md b/docs/SyncPlayUserAccessType.md deleted file mode 100644 index 1c1b65235..000000000 --- a/docs/SyncPlayUserAccessType.md +++ /dev/null @@ -1,9 +0,0 @@ -# SyncPlayUserAccessType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/SystemAPI.md b/docs/SystemAPI.md deleted file mode 100644 index 01e810486..000000000 --- a/docs/SystemAPI.md +++ /dev/null @@ -1,462 +0,0 @@ -# SystemAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getEndpointInfo**](SystemAPI.md#getendpointinfo) | **GET** /System/Endpoint | Gets information about the request endpoint. -[**getLogFile**](SystemAPI.md#getlogfile) | **GET** /System/Logs/Log | Gets a log file. -[**getPingSystem**](SystemAPI.md#getpingsystem) | **GET** /System/Ping | Pings the system. -[**getPublicSystemInfo**](SystemAPI.md#getpublicsysteminfo) | **GET** /System/Info/Public | Gets public information about the server. -[**getServerLogs**](SystemAPI.md#getserverlogs) | **GET** /System/Logs | Gets a list of available server log files. -[**getSystemInfo**](SystemAPI.md#getsysteminfo) | **GET** /System/Info | Gets information about the server. -[**getWakeOnLanInfo**](SystemAPI.md#getwakeonlaninfo) | **GET** /System/WakeOnLanInfo | Gets wake on lan information. -[**postPingSystem**](SystemAPI.md#postpingsystem) | **POST** /System/Ping | Pings the system. -[**restartApplication**](SystemAPI.md#restartapplication) | **POST** /System/Restart | Restarts the application. -[**shutdownApplication**](SystemAPI.md#shutdownapplication) | **POST** /System/Shutdown | Shuts down the application. - - -# **getEndpointInfo** -```swift - open class func getEndpointInfo(completion: @escaping (_ data: EndPointInfo?, _ error: Error?) -> Void) -``` - -Gets information about the request endpoint. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets information about the request endpoint. -SystemAPI.getEndpointInfo() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**EndPointInfo**](EndPointInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLogFile** -```swift - open class func getLogFile(name: String, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a log file. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let name = "name_example" // String | The name of the log file to get. - -// Gets a log file. -SystemAPI.getLogFile(name: name) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **name** | **String** | The name of the log file to get. | - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: text/plain - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPingSystem** -```swift - open class func getPingSystem(completion: @escaping (_ data: String?, _ error: Error?) -> Void) -``` - -Pings the system. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Pings the system. -SystemAPI.getPingSystem() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -**String** - -### Authorization - -No authorization required - -### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPublicSystemInfo** -```swift - open class func getPublicSystemInfo(completion: @escaping (_ data: PublicSystemInfo?, _ error: Error?) -> Void) -``` - -Gets public information about the server. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets public information about the server. -SystemAPI.getPublicSystemInfo() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**PublicSystemInfo**](PublicSystemInfo.md) - -### Authorization - -No authorization required - -### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getServerLogs** -```swift - open class func getServerLogs(completion: @escaping (_ data: [LogFile]?, _ error: Error?) -> Void) -``` - -Gets a list of available server log files. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets a list of available server log files. -SystemAPI.getServerLogs() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[LogFile]**](LogFile.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSystemInfo** -```swift - open class func getSystemInfo(completion: @escaping (_ data: SystemInfo?, _ error: Error?) -> Void) -``` - -Gets information about the server. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets information about the server. -SystemAPI.getSystemInfo() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SystemInfo**](SystemInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getWakeOnLanInfo** -```swift - open class func getWakeOnLanInfo(completion: @escaping (_ data: [WakeOnLanInfo]?, _ error: Error?) -> Void) -``` - -Gets wake on lan information. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets wake on lan information. -SystemAPI.getWakeOnLanInfo() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[WakeOnLanInfo]**](WakeOnLanInfo.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **postPingSystem** -```swift - open class func postPingSystem(completion: @escaping (_ data: String?, _ error: Error?) -> Void) -``` - -Pings the system. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Pings the system. -SystemAPI.postPingSystem() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -**String** - -### Authorization - -No authorization required - -### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **restartApplication** -```swift - open class func restartApplication(completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Restarts the application. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Restarts the application. -SystemAPI.restartApplication() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **shutdownApplication** -```swift - open class func shutdownApplication(completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Shuts down the application. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Shuts down the application. -SystemAPI.shutdownApplication() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/SystemInfo.md b/docs/SystemInfo.md deleted file mode 100644 index 2fb35069d..000000000 --- a/docs/SystemInfo.md +++ /dev/null @@ -1,35 +0,0 @@ -# SystemInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**localAddress** | **String** | Gets or sets the local address. | [optional] -**serverName** | **String** | Gets or sets the name of the server. | [optional] -**version** | **String** | Gets or sets the server version. | [optional] -**productName** | **String** | Gets or sets the product name. This is the AssemblyProduct name. | [optional] -**operatingSystem** | **String** | Gets or sets the operating system. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**startupWizardCompleted** | **Bool** | Gets or sets a value indicating whether the startup wizard is completed. | [optional] -**operatingSystemDisplayName** | **String** | Gets or sets the display name of the operating system. | [optional] -**packageName** | **String** | Gets or sets the package name. | [optional] -**hasPendingRestart** | **Bool** | Gets or sets a value indicating whether this instance has pending restart. | [optional] -**isShuttingDown** | **Bool** | | [optional] -**supportsLibraryMonitor** | **Bool** | Gets or sets a value indicating whether [supports library monitor]. | [optional] -**webSocketPortNumber** | **Int** | Gets or sets the web socket port number. | [optional] -**completedInstallations** | [InstallationInfo] | Gets or sets the completed installations. | [optional] -**canSelfRestart** | **Bool** | Gets or sets a value indicating whether this instance can self restart. | [optional] -**canLaunchWebBrowser** | **Bool** | | [optional] -**programDataPath** | **String** | Gets or sets the program data path. | [optional] -**webPath** | **String** | Gets or sets the web UI resources path. | [optional] -**itemsByNamePath** | **String** | Gets or sets the items by name path. | [optional] -**cachePath** | **String** | Gets or sets the cache path. | [optional] -**logPath** | **String** | Gets or sets the log path. | [optional] -**internalMetadataPath** | **String** | Gets or sets the internal metadata path. | [optional] -**transcodingTempPath** | **String** | Gets or sets the transcode path. | [optional] -**hasUpdateAvailable** | **Bool** | Gets or sets a value indicating whether this instance has update available. | [optional] -**encoderLocation** | [**FFmpegLocation**](FFmpegLocation.md) | Enum describing the location of the FFmpeg tool. | [optional] -**systemArchitecture** | [**Architecture**](Architecture.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TaskCompletionStatus.md b/docs/TaskCompletionStatus.md deleted file mode 100644 index d9d4b8801..000000000 --- a/docs/TaskCompletionStatus.md +++ /dev/null @@ -1,9 +0,0 @@ -# TaskCompletionStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TaskInfo.md b/docs/TaskInfo.md deleted file mode 100644 index 42ba27c1a..000000000 --- a/docs/TaskInfo.md +++ /dev/null @@ -1,19 +0,0 @@ -# TaskInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**state** | [**TaskState**](TaskState.md) | Gets or sets the state of the task. | [optional] -**currentProgressPercentage** | **Double** | Gets or sets the progress. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**lastExecutionResult** | [**TaskInfoLastExecutionResult**](TaskInfoLastExecutionResult.md) | | [optional] -**triggers** | [TaskTriggerInfo] | Gets or sets the triggers. | [optional] -**description** | **String** | Gets or sets the description. | [optional] -**category** | **String** | Gets or sets the category. | [optional] -**isHidden** | **Bool** | Gets or sets a value indicating whether this instance is hidden. | [optional] -**key** | **String** | Gets or sets the key. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TaskInfoLastExecutionResult.md b/docs/TaskInfoLastExecutionResult.md deleted file mode 100644 index 2158d9363..000000000 --- a/docs/TaskInfoLastExecutionResult.md +++ /dev/null @@ -1,17 +0,0 @@ -# TaskInfoLastExecutionResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**startTimeUtc** | **Date** | Gets or sets the start time UTC. | [optional] -**endTimeUtc** | **Date** | Gets or sets the end time UTC. | [optional] -**status** | [**TaskCompletionStatus**](TaskCompletionStatus.md) | Gets or sets the status. | [optional] -**name** | **String** | Gets or sets the name. | [optional] -**key** | **String** | Gets or sets the key. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**errorMessage** | **String** | Gets or sets the error message. | [optional] -**longErrorMessage** | **String** | Gets or sets the long error message. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TaskResult.md b/docs/TaskResult.md deleted file mode 100644 index 221cd6feb..000000000 --- a/docs/TaskResult.md +++ /dev/null @@ -1,17 +0,0 @@ -# TaskResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**startTimeUtc** | **Date** | Gets or sets the start time UTC. | [optional] -**endTimeUtc** | **Date** | Gets or sets the end time UTC. | [optional] -**status** | [**TaskCompletionStatus**](TaskCompletionStatus.md) | Gets or sets the status. | [optional] -**name** | **String** | Gets or sets the name. | [optional] -**key** | **String** | Gets or sets the key. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**errorMessage** | **String** | Gets or sets the error message. | [optional] -**longErrorMessage** | **String** | Gets or sets the long error message. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TaskState.md b/docs/TaskState.md deleted file mode 100644 index 28f7d7eae..000000000 --- a/docs/TaskState.md +++ /dev/null @@ -1,9 +0,0 @@ -# TaskState - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TaskTriggerInfo.md b/docs/TaskTriggerInfo.md deleted file mode 100644 index faca410f1..000000000 --- a/docs/TaskTriggerInfo.md +++ /dev/null @@ -1,14 +0,0 @@ -# TaskTriggerInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**type** | **String** | Gets or sets the type. | [optional] -**timeOfDayTicks** | **Int64** | Gets or sets the time of day. | [optional] -**intervalTicks** | **Int64** | Gets or sets the interval. | [optional] -**dayOfWeek** | [**DayOfWeek**](DayOfWeek.md) | Gets or sets the day of week. | [optional] -**maxRuntimeTicks** | **Int64** | Gets or sets the maximum runtime ticks. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ThemeMediaResult.md b/docs/ThemeMediaResult.md deleted file mode 100644 index 63292abbf..000000000 --- a/docs/ThemeMediaResult.md +++ /dev/null @@ -1,13 +0,0 @@ -# ThemeMediaResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**items** | [BaseItemDto] | Gets or sets the items. | [optional] -**totalRecordCount** | **Int** | Gets or sets the total number of records available. | [optional] -**startIndex** | **Int** | Gets or sets the index of the first record in Items. | [optional] -**ownerId** | **String** | Gets or sets the owner id. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TimeSyncAPI.md b/docs/TimeSyncAPI.md deleted file mode 100644 index 62ea60441..000000000 --- a/docs/TimeSyncAPI.md +++ /dev/null @@ -1,53 +0,0 @@ -# TimeSyncAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getUtcTime**](TimeSyncAPI.md#getutctime) | **GET** /GetUtcTime | Gets the current UTC time. - - -# **getUtcTime** -```swift - open class func getUtcTime(completion: @escaping (_ data: UtcTimeResponse?, _ error: Error?) -> Void) -``` - -Gets the current UTC time. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets the current UTC time. -TimeSyncAPI.getUtcTime() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**UtcTimeResponse**](UtcTimeResponse.md) - -### Authorization - -No authorization required - -### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/TimerEventInfo.md b/docs/TimerEventInfo.md deleted file mode 100644 index 334203a5d..000000000 --- a/docs/TimerEventInfo.md +++ /dev/null @@ -1,11 +0,0 @@ -# TimerEventInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | | [optional] -**programId** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TimerInfoDto.md b/docs/TimerInfoDto.md deleted file mode 100644 index c57626d17..000000000 --- a/docs/TimerInfoDto.md +++ /dev/null @@ -1,37 +0,0 @@ -# TimerInfoDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | Gets or sets the Id of the recording. | [optional] -**type** | **String** | | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**externalId** | **String** | Gets or sets the external identifier. | [optional] -**channelId** | **String** | Gets or sets the channel id of the recording. | [optional] -**externalChannelId** | **String** | Gets or sets the external channel identifier. | [optional] -**channelName** | **String** | Gets or sets the channel name of the recording. | [optional] -**channelPrimaryImageTag** | **String** | | [optional] -**programId** | **String** | Gets or sets the program identifier. | [optional] -**externalProgramId** | **String** | Gets or sets the external program identifier. | [optional] -**name** | **String** | Gets or sets the name of the recording. | [optional] -**overview** | **String** | Gets or sets the description of the recording. | [optional] -**startDate** | **Date** | Gets or sets the start date of the recording, in UTC. | [optional] -**endDate** | **Date** | Gets or sets the end date of the recording, in UTC. | [optional] -**serviceName** | **String** | Gets or sets the name of the service. | [optional] -**priority** | **Int** | Gets or sets the priority. | [optional] -**prePaddingSeconds** | **Int** | Gets or sets the pre padding seconds. | [optional] -**postPaddingSeconds** | **Int** | Gets or sets the post padding seconds. | [optional] -**isPrePaddingRequired** | **Bool** | Gets or sets a value indicating whether this instance is pre padding required. | [optional] -**parentBackdropItemId** | **String** | Gets or sets the Id of the Parent that has a backdrop if the item does not have one. | [optional] -**parentBackdropImageTags** | **[String]** | Gets or sets the parent backdrop image tags. | [optional] -**isPostPaddingRequired** | **Bool** | Gets or sets a value indicating whether this instance is post padding required. | [optional] -**keepUntil** | [**KeepUntil**](KeepUntil.md) | | [optional] -**status** | [**RecordingStatus**](RecordingStatus.md) | Gets or sets the status. | [optional] -**seriesTimerId** | **String** | Gets or sets the series timer identifier. | [optional] -**externalSeriesTimerId** | **String** | Gets or sets the external series timer identifier. | [optional] -**runTimeTicks** | **Int64** | Gets or sets the run time ticks. | [optional] -**programInfo** | [**TimerInfoDtoProgramInfo**](TimerInfoDtoProgramInfo.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TimerInfoDtoProgramInfo.md b/docs/TimerInfoDtoProgramInfo.md deleted file mode 100644 index 13b3e2647..000000000 --- a/docs/TimerInfoDtoProgramInfo.md +++ /dev/null @@ -1,159 +0,0 @@ -# TimerInfoDtoProgramInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**etag** | **String** | Gets or sets the etag. | [optional] -**sourceType** | **String** | Gets or sets the type of the source. | [optional] -**playlistItemId** | **String** | Gets or sets the playlist item identifier. | [optional] -**dateCreated** | **Date** | Gets or sets the date created. | [optional] -**dateLastMediaAdded** | **Date** | | [optional] -**extraType** | **String** | | [optional] -**airsBeforeSeasonNumber** | **Int** | | [optional] -**airsAfterSeasonNumber** | **Int** | | [optional] -**airsBeforeEpisodeNumber** | **Int** | | [optional] -**canDelete** | **Bool** | | [optional] -**canDownload** | **Bool** | | [optional] -**hasSubtitles** | **Bool** | | [optional] -**preferredMetadataLanguage** | **String** | | [optional] -**preferredMetadataCountryCode** | **String** | | [optional] -**supportsSync** | **Bool** | Gets or sets a value indicating whether [supports synchronize]. | [optional] -**container** | **String** | | [optional] -**sortName** | **String** | Gets or sets the name of the sort. | [optional] -**forcedSortName** | **String** | | [optional] -**video3DFormat** | [**Video3DFormat**](Video3DFormat.md) | Gets or sets the video3 D format. | [optional] -**premiereDate** | **Date** | Gets or sets the premiere date. | [optional] -**externalUrls** | [ExternalUrl] | Gets or sets the external urls. | [optional] -**mediaSources** | [MediaSourceInfo] | Gets or sets the media versions. | [optional] -**criticRating** | **Float** | Gets or sets the critic rating. | [optional] -**productionLocations** | **[String]** | | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**enableMediaSourceDisplay** | **Bool** | | [optional] -**officialRating** | **String** | Gets or sets the official rating. | [optional] -**customRating** | **String** | Gets or sets the custom rating. | [optional] -**channelId** | **String** | Gets or sets the channel identifier. | [optional] -**channelName** | **String** | | [optional] -**overview** | **String** | Gets or sets the overview. | [optional] -**taglines** | **[String]** | Gets or sets the taglines. | [optional] -**genres** | **[String]** | Gets or sets the genres. | [optional] -**communityRating** | **Float** | Gets or sets the community rating. | [optional] -**cumulativeRunTimeTicks** | **Int64** | Gets or sets the cumulative run time ticks. | [optional] -**runTimeTicks** | **Int64** | Gets or sets the run time ticks. | [optional] -**playAccess** | [**PlayAccess**](PlayAccess.md) | Gets or sets the play access. | [optional] -**aspectRatio** | **String** | Gets or sets the aspect ratio. | [optional] -**productionYear** | **Int** | Gets or sets the production year. | [optional] -**isPlaceHolder** | **Bool** | Gets or sets a value indicating whether this instance is place holder. | [optional] -**number** | **String** | Gets or sets the number. | [optional] -**channelNumber** | **String** | | [optional] -**indexNumber** | **Int** | Gets or sets the index number. | [optional] -**indexNumberEnd** | **Int** | Gets or sets the index number end. | [optional] -**parentIndexNumber** | **Int** | Gets or sets the parent index number. | [optional] -**remoteTrailers** | [MediaUrl] | Gets or sets the trailer urls. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**isHD** | **Bool** | Gets or sets a value indicating whether this instance is HD. | [optional] -**isFolder** | **Bool** | Gets or sets a value indicating whether this instance is folder. | [optional] -**parentId** | **String** | Gets or sets the parent id. | [optional] -**type** | [**BaseItemKind**](BaseItemKind.md) | The base item kind. | [optional] -**people** | [BaseItemPerson] | Gets or sets the people. | [optional] -**studios** | [NameGuidPair] | Gets or sets the studios. | [optional] -**genreItems** | [NameGuidPair] | | [optional] -**parentLogoItemId** | **String** | Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropItemId** | **String** | Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropImageTags** | **[String]** | Gets or sets the parent backdrop image tags. | [optional] -**localTrailerCount** | **Int** | Gets or sets the local trailer count. | [optional] -**userData** | [**BaseItemDtoUserData**](BaseItemDtoUserData.md) | | [optional] -**recursiveItemCount** | **Int** | Gets or sets the recursive item count. | [optional] -**childCount** | **Int** | Gets or sets the child count. | [optional] -**seriesName** | **String** | Gets or sets the name of the series. | [optional] -**seriesId** | **String** | Gets or sets the series id. | [optional] -**seasonId** | **String** | Gets or sets the season identifier. | [optional] -**specialFeatureCount** | **Int** | Gets or sets the special feature count. | [optional] -**displayPreferencesId** | **String** | Gets or sets the display preferences id. | [optional] -**status** | **String** | Gets or sets the status. | [optional] -**airTime** | **String** | Gets or sets the air time. | [optional] -**airDays** | [DayOfWeek] | Gets or sets the air days. | [optional] -**tags** | **[String]** | Gets or sets the tags. | [optional] -**primaryImageAspectRatio** | **Double** | Gets or sets the primary image aspect ratio, after image enhancements. | [optional] -**artists** | **[String]** | Gets or sets the artists. | [optional] -**artistItems** | [NameGuidPair] | Gets or sets the artist items. | [optional] -**album** | **String** | Gets or sets the album. | [optional] -**collectionType** | **String** | Gets or sets the type of the collection. | [optional] -**displayOrder** | **String** | Gets or sets the display order. | [optional] -**albumId** | **String** | Gets or sets the album id. | [optional] -**albumPrimaryImageTag** | **String** | Gets or sets the album image tag. | [optional] -**seriesPrimaryImageTag** | **String** | Gets or sets the series primary image tag. | [optional] -**albumArtist** | **String** | Gets or sets the album artist. | [optional] -**albumArtists** | [NameGuidPair] | Gets or sets the album artists. | [optional] -**seasonName** | **String** | Gets or sets the name of the season. | [optional] -**mediaStreams** | [MediaStream] | Gets or sets the media streams. | [optional] -**videoType** | [**VideoType**](VideoType.md) | Gets or sets the type of the video. | [optional] -**partCount** | **Int** | Gets or sets the part count. | [optional] -**mediaSourceCount** | **Int** | | [optional] -**imageTags** | **[String: String]** | Gets or sets the image tags. | [optional] -**backdropImageTags** | **[String]** | Gets or sets the backdrop image tags. | [optional] -**screenshotImageTags** | **[String]** | Gets or sets the screenshot image tags. | [optional] -**parentLogoImageTag** | **String** | Gets or sets the parent logo image tag. | [optional] -**parentArtItemId** | **String** | Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. | [optional] -**parentArtImageTag** | **String** | Gets or sets the parent art image tag. | [optional] -**seriesThumbImageTag** | **String** | Gets or sets the series thumb image tag. | [optional] -**imageBlurHashes** | [**BaseItemDtoImageBlurHashes**](BaseItemDtoImageBlurHashes.md) | | [optional] -**seriesStudio** | **String** | Gets or sets the series studio. | [optional] -**parentThumbItemId** | **String** | Gets or sets the parent thumb item id. | [optional] -**parentThumbImageTag** | **String** | Gets or sets the parent thumb image tag. | [optional] -**parentPrimaryImageItemId** | **String** | Gets or sets the parent primary image item identifier. | [optional] -**parentPrimaryImageTag** | **String** | Gets or sets the parent primary image tag. | [optional] -**chapters** | [ChapterInfo] | Gets or sets the chapters. | [optional] -**locationType** | [**LocationType**](LocationType.md) | Gets or sets the type of the location. | [optional] -**isoType** | [**IsoType**](IsoType.md) | Gets or sets the type of the iso. | [optional] -**mediaType** | **String** | Gets or sets the type of the media. | [optional] -**endDate** | **Date** | Gets or sets the end date. | [optional] -**lockedFields** | [MetadataField] | Gets or sets the locked fields. | [optional] -**trailerCount** | **Int** | Gets or sets the trailer count. | [optional] -**movieCount** | **Int** | Gets or sets the movie count. | [optional] -**seriesCount** | **Int** | Gets or sets the series count. | [optional] -**programCount** | **Int** | | [optional] -**episodeCount** | **Int** | Gets or sets the episode count. | [optional] -**songCount** | **Int** | Gets or sets the song count. | [optional] -**albumCount** | **Int** | Gets or sets the album count. | [optional] -**artistCount** | **Int** | | [optional] -**musicVideoCount** | **Int** | Gets or sets the music video count. | [optional] -**lockData** | **Bool** | Gets or sets a value indicating whether [enable internet providers]. | [optional] -**width** | **Int** | | [optional] -**height** | **Int** | | [optional] -**cameraMake** | **String** | | [optional] -**cameraModel** | **String** | | [optional] -**software** | **String** | | [optional] -**exposureTime** | **Double** | | [optional] -**focalLength** | **Double** | | [optional] -**imageOrientation** | [**ImageOrientation**](ImageOrientation.md) | | [optional] -**aperture** | **Double** | | [optional] -**shutterSpeed** | **Double** | | [optional] -**latitude** | **Double** | | [optional] -**longitude** | **Double** | | [optional] -**altitude** | **Double** | | [optional] -**isoSpeedRating** | **Int** | | [optional] -**seriesTimerId** | **String** | Gets or sets the series timer identifier. | [optional] -**programId** | **String** | Gets or sets the program identifier. | [optional] -**channelPrimaryImageTag** | **String** | Gets or sets the channel primary image tag. | [optional] -**startDate** | **Date** | Gets or sets the start date of the recording, in UTC. | [optional] -**completionPercentage** | **Double** | Gets or sets the completion percentage. | [optional] -**isRepeat** | **Bool** | Gets or sets a value indicating whether this instance is repeat. | [optional] -**episodeTitle** | **String** | Gets or sets the episode title. | [optional] -**channelType** | [**ChannelType**](ChannelType.md) | Gets or sets the type of the channel. | [optional] -**audio** | [**ProgramAudio**](ProgramAudio.md) | Gets or sets the audio. | [optional] -**isMovie** | **Bool** | Gets or sets a value indicating whether this instance is movie. | [optional] -**isSports** | **Bool** | Gets or sets a value indicating whether this instance is sports. | [optional] -**isSeries** | **Bool** | Gets or sets a value indicating whether this instance is series. | [optional] -**isLive** | **Bool** | Gets or sets a value indicating whether this instance is live. | [optional] -**isNews** | **Bool** | Gets or sets a value indicating whether this instance is news. | [optional] -**isKids** | **Bool** | Gets or sets a value indicating whether this instance is kids. | [optional] -**isPremiere** | **Bool** | Gets or sets a value indicating whether this instance is premiere. | [optional] -**timerId** | **String** | Gets or sets the timer identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TimerInfoDtoQueryResult.md b/docs/TimerInfoDtoQueryResult.md deleted file mode 100644 index 99c975bea..000000000 --- a/docs/TimerInfoDtoQueryResult.md +++ /dev/null @@ -1,12 +0,0 @@ -# TimerInfoDtoQueryResult - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**items** | [TimerInfoDto] | Gets or sets the items. | [optional] -**totalRecordCount** | **Int** | Gets or sets the total number of records available. | [optional] -**startIndex** | **Int** | Gets or sets the index of the first record in Items. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TmdbAPI.md b/docs/TmdbAPI.md deleted file mode 100644 index 464fb1dec..000000000 --- a/docs/TmdbAPI.md +++ /dev/null @@ -1,53 +0,0 @@ -# TmdbAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**tmdbClientConfiguration**](TmdbAPI.md#tmdbclientconfiguration) | **GET** /Tmdb/ClientConfiguration | Gets the TMDb image configuration options. - - -# **tmdbClientConfiguration** -```swift - open class func tmdbClientConfiguration(completion: @escaping (_ data: ConfigImageTypes?, _ error: Error?) -> Void) -``` - -Gets the TMDb image configuration options. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets the TMDb image configuration options. -TmdbAPI.tmdbClientConfiguration() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ConfigImageTypes**](ConfigImageTypes.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/TrailerInfo.md b/docs/TrailerInfo.md deleted file mode 100644 index c963a3f1c..000000000 --- a/docs/TrailerInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# TrailerInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TrailerInfoRemoteSearchQuery.md b/docs/TrailerInfoRemoteSearchQuery.md deleted file mode 100644 index ff79e2ec3..000000000 --- a/docs/TrailerInfoRemoteSearchQuery.md +++ /dev/null @@ -1,13 +0,0 @@ -# TrailerInfoRemoteSearchQuery - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**searchInfo** | [**TrailerInfoRemoteSearchQuerySearchInfo**](TrailerInfoRemoteSearchQuerySearchInfo.md) | | [optional] -**itemId** | **String** | | [optional] -**searchProviderName** | **String** | Gets or sets the provider name to search within if set. | [optional] -**includeDisabledProviders** | **Bool** | Gets or sets a value indicating whether disabled providers should be included. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TrailerInfoRemoteSearchQuerySearchInfo.md b/docs/TrailerInfoRemoteSearchQuerySearchInfo.md deleted file mode 100644 index 00b338e0e..000000000 --- a/docs/TrailerInfoRemoteSearchQuerySearchInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# TrailerInfoRemoteSearchQuerySearchInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | Gets or sets the original title. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**metadataLanguage** | **String** | Gets or sets the metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**year** | **Int** | Gets or sets the year. | [optional] -**indexNumber** | **Int** | | [optional] -**parentIndexNumber** | **Int** | | [optional] -**premiereDate** | **Date** | | [optional] -**isAutomated** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TrailersAPI.md b/docs/TrailersAPI.md deleted file mode 100644 index 6a2fa1d66..000000000 --- a/docs/TrailersAPI.md +++ /dev/null @@ -1,223 +0,0 @@ -# TrailersAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getTrailers**](TrailersAPI.md#gettrailers) | **GET** /Trailers | Finds movies and trailers similar to a given trailer. - - -# **getTrailers** -```swift - open class func getTrailers(userId: String? = nil, maxOfficialRating: String? = nil, hasThemeSong: Bool? = nil, hasThemeVideo: Bool? = nil, hasSubtitles: Bool? = nil, hasSpecialFeature: Bool? = nil, hasTrailer: Bool? = nil, adjacentTo: String? = nil, parentIndexNumber: Int? = nil, hasParentalRating: Bool? = nil, isHd: Bool? = nil, is4K: Bool? = nil, locationTypes: [LocationType]? = nil, excludeLocationTypes: [LocationType]? = nil, isMissing: Bool? = nil, isUnaired: Bool? = nil, minCommunityRating: Double? = nil, minCriticRating: Double? = nil, minPremiereDate: Date? = nil, minDateLastSaved: Date? = nil, minDateLastSavedForUser: Date? = nil, maxPremiereDate: Date? = nil, hasOverview: Bool? = nil, hasImdbId: Bool? = nil, hasTmdbId: Bool? = nil, hasTvdbId: Bool? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, excludeItemIds: [String]? = nil, startIndex: Int? = nil, limit: Int? = nil, recursive: Bool? = nil, searchTerm: String? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, filters: [ItemFilter]? = nil, isFavorite: Bool? = nil, mediaTypes: [String]? = nil, imageTypes: [ImageType]? = nil, sortBy: [String]? = nil, isPlayed: Bool? = nil, genres: [String]? = nil, officialRatings: [String]? = nil, tags: [String]? = nil, years: [Int]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, person: String? = nil, personIds: [String]? = nil, personTypes: [String]? = nil, studios: [String]? = nil, artists: [String]? = nil, excludeArtistIds: [String]? = nil, artistIds: [String]? = nil, albumArtistIds: [String]? = nil, contributingArtistIds: [String]? = nil, albums: [String]? = nil, albumIds: [String]? = nil, ids: [String]? = nil, videoTypes: [VideoType]? = nil, minOfficialRating: String? = nil, isLocked: Bool? = nil, isPlaceHolder: Bool? = nil, hasOfficialRating: Bool? = nil, collapseBoxSetItems: Bool? = nil, minWidth: Int? = nil, minHeight: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, is3D: Bool? = nil, seriesStatus: [SeriesStatus]? = nil, nameStartsWithOrGreater: String? = nil, nameStartsWith: String? = nil, nameLessThan: String? = nil, studioIds: [String]? = nil, genreIds: [String]? = nil, enableTotalRecordCount: Bool? = nil, enableImages: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Finds movies and trailers similar to a given trailer. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. (optional) -let maxOfficialRating = "maxOfficialRating_example" // String | Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). (optional) -let hasThemeSong = true // Bool | Optional filter by items with theme songs. (optional) -let hasThemeVideo = true // Bool | Optional filter by items with theme videos. (optional) -let hasSubtitles = true // Bool | Optional filter by items with subtitles. (optional) -let hasSpecialFeature = true // Bool | Optional filter by items with special features. (optional) -let hasTrailer = true // Bool | Optional filter by items with trailers. (optional) -let adjacentTo = "adjacentTo_example" // String | Optional. Return items that are siblings of a supplied item. (optional) -let parentIndexNumber = 987 // Int | Optional filter by parent index number. (optional) -let hasParentalRating = true // Bool | Optional filter by items that have or do not have a parental rating. (optional) -let isHd = true // Bool | Optional filter by items that are HD or not. (optional) -let is4K = true // Bool | Optional filter by items that are 4K or not. (optional) -let locationTypes = [LocationType()] // [LocationType] | Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. (optional) -let excludeLocationTypes = [LocationType()] // [LocationType] | Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. (optional) -let isMissing = true // Bool | Optional filter by items that are missing episodes or not. (optional) -let isUnaired = true // Bool | Optional filter by items that are unaired episodes or not. (optional) -let minCommunityRating = 987 // Double | Optional filter by minimum community rating. (optional) -let minCriticRating = 987 // Double | Optional filter by minimum critic rating. (optional) -let minPremiereDate = Date() // Date | Optional. The minimum premiere date. Format = ISO. (optional) -let minDateLastSaved = Date() // Date | Optional. The minimum last saved date. Format = ISO. (optional) -let minDateLastSavedForUser = Date() // Date | Optional. The minimum last saved date for the current user. Format = ISO. (optional) -let maxPremiereDate = Date() // Date | Optional. The maximum premiere date. Format = ISO. (optional) -let hasOverview = true // Bool | Optional filter by items that have an overview or not. (optional) -let hasImdbId = true // Bool | Optional filter by items that have an imdb id or not. (optional) -let hasTmdbId = true // Bool | Optional filter by items that have a tmdb id or not. (optional) -let hasTvdbId = true // Bool | Optional filter by items that have a tvdb id or not. (optional) -let isMovie = true // Bool | Optional filter for live tv movies. (optional) -let isSeries = true // Bool | Optional filter for live tv series. (optional) -let isNews = true // Bool | Optional filter for live tv news. (optional) -let isKids = true // Bool | Optional filter for live tv kids. (optional) -let isSports = true // Bool | Optional filter for live tv sports. (optional) -let excludeItemIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. (optional) -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 recursive = true // Bool | When searching within folders, this determines whether or not the search will be recursive. true/false. (optional) -let searchTerm = "searchTerm_example" // String | Optional. Filter based on a search term. (optional) -let sortOrder = [SortOrder()] // [SortOrder] | Sort Order - Ascending,Descending. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) -let filters = [ItemFilter()] // [ItemFilter] | Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. (optional) -let isFavorite = true // Bool | Optional filter by items that are marked as favorite, or not. (optional) -let mediaTypes = ["inner_example"] // [String] | Optional filter by MediaType. Allows multiple, comma delimited. (optional) -let imageTypes = [ImageType()] // [ImageType] | Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. (optional) -let sortBy = ["inner_example"] // [String] | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) -let isPlayed = true // Bool | Optional filter by items that are played, or not. (optional) -let genres = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. (optional) -let officialRatings = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. (optional) -let tags = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. (optional) -let years = [123] // [Int] | Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. (optional) -let enableUserData = true // Bool | Optional, include user data. (optional) -let imageTypeLimit = 987 // Int | Optional, the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let person = "person_example" // String | Optional. If specified, results will be filtered to include only those containing the specified person. (optional) -let personIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified person id. (optional) -let personTypes = ["inner_example"] // [String] | Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. (optional) -let studios = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. (optional) -let artists = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. (optional) -let excludeArtistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. (optional) -let artistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified artist id. (optional) -let albumArtistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified album artist id. (optional) -let contributingArtistIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. (optional) -let albums = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. (optional) -let albumIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. (optional) -let ids = ["inner_example"] // [String] | Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. (optional) -let videoTypes = [VideoType()] // [VideoType] | Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. (optional) -let minOfficialRating = "minOfficialRating_example" // String | Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). (optional) -let isLocked = true // Bool | Optional filter by items that are locked. (optional) -let isPlaceHolder = true // Bool | Optional filter by items that are placeholders. (optional) -let hasOfficialRating = true // Bool | Optional filter by items that have official ratings. (optional) -let collapseBoxSetItems = true // Bool | Whether or not to hide items behind their boxsets. (optional) -let minWidth = 987 // Int | Optional. Filter by the minimum width of the item. (optional) -let minHeight = 987 // Int | Optional. Filter by the minimum height of the item. (optional) -let maxWidth = 987 // Int | Optional. Filter by the maximum width of the item. (optional) -let maxHeight = 987 // Int | Optional. Filter by the maximum height of the item. (optional) -let is3D = true // Bool | Optional filter by items that are 3D, or not. (optional) -let seriesStatus = [SeriesStatus()] // [SeriesStatus] | Optional filter by Series Status. Allows multiple, comma delimited. (optional) -let nameStartsWithOrGreater = "nameStartsWithOrGreater_example" // String | Optional filter by items whose name is sorted equally or greater than a given input string. (optional) -let nameStartsWith = "nameStartsWith_example" // String | Optional filter by items whose name is sorted equally than a given input string. (optional) -let nameLessThan = "nameLessThan_example" // String | Optional filter by items whose name is equally or lesser than a given input string. (optional) -let studioIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. (optional) -let genreIds = ["inner_example"] // [String] | Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. (optional) -let enableTotalRecordCount = true // Bool | Optional. Enable the total record count. (optional) (default to true) -let enableImages = true // Bool | Optional, include image information in output. (optional) (default to true) - -// Finds movies and trailers similar to a given trailer. -TrailersAPI.getTrailers(userId: userId, maxOfficialRating: maxOfficialRating, hasThemeSong: hasThemeSong, hasThemeVideo: hasThemeVideo, hasSubtitles: hasSubtitles, hasSpecialFeature: hasSpecialFeature, hasTrailer: hasTrailer, adjacentTo: adjacentTo, parentIndexNumber: parentIndexNumber, hasParentalRating: hasParentalRating, isHd: isHd, is4K: is4K, locationTypes: locationTypes, excludeLocationTypes: excludeLocationTypes, isMissing: isMissing, isUnaired: isUnaired, minCommunityRating: minCommunityRating, minCriticRating: minCriticRating, minPremiereDate: minPremiereDate, minDateLastSaved: minDateLastSaved, minDateLastSavedForUser: minDateLastSavedForUser, maxPremiereDate: maxPremiereDate, hasOverview: hasOverview, hasImdbId: hasImdbId, hasTmdbId: hasTmdbId, hasTvdbId: hasTvdbId, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, excludeItemIds: excludeItemIds, startIndex: startIndex, limit: limit, recursive: recursive, searchTerm: searchTerm, sortOrder: sortOrder, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, filters: filters, isFavorite: isFavorite, mediaTypes: mediaTypes, imageTypes: imageTypes, sortBy: sortBy, isPlayed: isPlayed, genres: genres, officialRatings: officialRatings, tags: tags, years: years, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, person: person, personIds: personIds, personTypes: personTypes, studios: studios, artists: artists, excludeArtistIds: excludeArtistIds, artistIds: artistIds, albumArtistIds: albumArtistIds, contributingArtistIds: contributingArtistIds, albums: albums, albumIds: albumIds, ids: ids, videoTypes: videoTypes, minOfficialRating: minOfficialRating, isLocked: isLocked, isPlaceHolder: isPlaceHolder, hasOfficialRating: hasOfficialRating, collapseBoxSetItems: collapseBoxSetItems, minWidth: minWidth, minHeight: minHeight, maxWidth: maxWidth, maxHeight: maxHeight, is3D: is3D, seriesStatus: seriesStatus, nameStartsWithOrGreater: nameStartsWithOrGreater, nameStartsWith: nameStartsWith, nameLessThan: nameLessThan, studioIds: studioIds, genreIds: genreIds, enableTotalRecordCount: enableTotalRecordCount, enableImages: enableImages) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | [optional] - **maxOfficialRating** | **String** | Optional filter by maximum official rating (PG, PG-13, TV-MA, etc). | [optional] - **hasThemeSong** | **Bool** | Optional filter by items with theme songs. | [optional] - **hasThemeVideo** | **Bool** | Optional filter by items with theme videos. | [optional] - **hasSubtitles** | **Bool** | Optional filter by items with subtitles. | [optional] - **hasSpecialFeature** | **Bool** | Optional filter by items with special features. | [optional] - **hasTrailer** | **Bool** | Optional filter by items with trailers. | [optional] - **adjacentTo** | **String** | Optional. Return items that are siblings of a supplied item. | [optional] - **parentIndexNumber** | **Int** | Optional filter by parent index number. | [optional] - **hasParentalRating** | **Bool** | Optional filter by items that have or do not have a parental rating. | [optional] - **isHd** | **Bool** | Optional filter by items that are HD or not. | [optional] - **is4K** | **Bool** | Optional filter by items that are 4K or not. | [optional] - **locationTypes** | [**[LocationType]**](LocationType.md) | Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited. | [optional] - **excludeLocationTypes** | [**[LocationType]**](LocationType.md) | Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited. | [optional] - **isMissing** | **Bool** | Optional filter by items that are missing episodes or not. | [optional] - **isUnaired** | **Bool** | Optional filter by items that are unaired episodes or not. | [optional] - **minCommunityRating** | **Double** | Optional filter by minimum community rating. | [optional] - **minCriticRating** | **Double** | Optional filter by minimum critic rating. | [optional] - **minPremiereDate** | **Date** | Optional. The minimum premiere date. Format = ISO. | [optional] - **minDateLastSaved** | **Date** | Optional. The minimum last saved date. Format = ISO. | [optional] - **minDateLastSavedForUser** | **Date** | Optional. The minimum last saved date for the current user. Format = ISO. | [optional] - **maxPremiereDate** | **Date** | Optional. The maximum premiere date. Format = ISO. | [optional] - **hasOverview** | **Bool** | Optional filter by items that have an overview or not. | [optional] - **hasImdbId** | **Bool** | Optional filter by items that have an imdb id or not. | [optional] - **hasTmdbId** | **Bool** | Optional filter by items that have a tmdb id or not. | [optional] - **hasTvdbId** | **Bool** | Optional filter by items that have a tvdb id or not. | [optional] - **isMovie** | **Bool** | Optional filter for live tv movies. | [optional] - **isSeries** | **Bool** | Optional filter for live tv series. | [optional] - **isNews** | **Bool** | Optional filter for live tv news. | [optional] - **isKids** | **Bool** | Optional filter for live tv kids. | [optional] - **isSports** | **Bool** | Optional filter for live tv sports. | [optional] - **excludeItemIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited. | [optional] - **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] - **recursive** | **Bool** | When searching within folders, this determines whether or not the search will be recursive. true/false. | [optional] - **searchTerm** | **String** | Optional. Filter based on a search term. | [optional] - **sortOrder** | [**[SortOrder]**](SortOrder.md) | Sort Order - Ascending,Descending. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. | [optional] - **filters** | [**[ItemFilter]**](ItemFilter.md) | Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes. | [optional] - **isFavorite** | **Bool** | Optional filter by items that are marked as favorite, or not. | [optional] - **mediaTypes** | [**[String]**](String.md) | Optional filter by MediaType. Allows multiple, comma delimited. | [optional] - **imageTypes** | [**[ImageType]**](ImageType.md) | Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited. | [optional] - **sortBy** | [**[String]**](String.md) | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. | [optional] - **isPlayed** | **Bool** | Optional filter by items that are played, or not. | [optional] - **genres** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited. | [optional] - **officialRatings** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited. | [optional] - **tags** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited. | [optional] - **years** | [**[Int]**](Int.md) | Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited. | [optional] - **enableUserData** | **Bool** | Optional, include user data. | [optional] - **imageTypeLimit** | **Int** | Optional, the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **person** | **String** | Optional. If specified, results will be filtered to include only those containing the specified person. | [optional] - **personIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified person id. | [optional] - **personTypes** | [**[String]**](String.md) | Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited. | [optional] - **studios** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited. | [optional] - **artists** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited. | [optional] - **excludeArtistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited. | [optional] - **artistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified artist id. | [optional] - **albumArtistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified album artist id. | [optional] - **contributingArtistIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered to include only those containing the specified contributing artist id. | [optional] - **albums** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited. | [optional] - **albumIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited. | [optional] - **ids** | [**[String]**](String.md) | Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited. | [optional] - **videoTypes** | [**[VideoType]**](VideoType.md) | Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited. | [optional] - **minOfficialRating** | **String** | Optional filter by minimum official rating (PG, PG-13, TV-MA, etc). | [optional] - **isLocked** | **Bool** | Optional filter by items that are locked. | [optional] - **isPlaceHolder** | **Bool** | Optional filter by items that are placeholders. | [optional] - **hasOfficialRating** | **Bool** | Optional filter by items that have official ratings. | [optional] - **collapseBoxSetItems** | **Bool** | Whether or not to hide items behind their boxsets. | [optional] - **minWidth** | **Int** | Optional. Filter by the minimum width of the item. | [optional] - **minHeight** | **Int** | Optional. Filter by the minimum height of the item. | [optional] - **maxWidth** | **Int** | Optional. Filter by the maximum width of the item. | [optional] - **maxHeight** | **Int** | Optional. Filter by the maximum height of the item. | [optional] - **is3D** | **Bool** | Optional filter by items that are 3D, or not. | [optional] - **seriesStatus** | [**[SeriesStatus]**](SeriesStatus.md) | Optional filter by Series Status. Allows multiple, comma delimited. | [optional] - **nameStartsWithOrGreater** | **String** | Optional filter by items whose name is sorted equally or greater than a given input string. | [optional] - **nameStartsWith** | **String** | Optional filter by items whose name is sorted equally than a given input string. | [optional] - **nameLessThan** | **String** | Optional filter by items whose name is equally or lesser than a given input string. | [optional] - **studioIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited. | [optional] - **genreIds** | [**[String]**](String.md) | Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited. | [optional] - **enableTotalRecordCount** | **Bool** | Optional. Enable the total record count. | [optional] [default to true] - **enableImages** | **Bool** | Optional, include image information in output. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/TranscodeReason.md b/docs/TranscodeReason.md deleted file mode 100644 index ff6d19830..000000000 --- a/docs/TranscodeReason.md +++ /dev/null @@ -1,9 +0,0 @@ -# TranscodeReason - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TranscodeSeekInfo.md b/docs/TranscodeSeekInfo.md deleted file mode 100644 index bafea95fe..000000000 --- a/docs/TranscodeSeekInfo.md +++ /dev/null @@ -1,9 +0,0 @@ -# TranscodeSeekInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TranscodingInfo.md b/docs/TranscodingInfo.md deleted file mode 100644 index 967ee2af3..000000000 --- a/docs/TranscodingInfo.md +++ /dev/null @@ -1,22 +0,0 @@ -# TranscodingInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**audioCodec** | **String** | | [optional] -**videoCodec** | **String** | | [optional] -**container** | **String** | | [optional] -**isVideoDirect** | **Bool** | | [optional] -**isAudioDirect** | **Bool** | | [optional] -**bitrate** | **Int** | | [optional] -**framerate** | **Float** | | [optional] -**completionPercentage** | **Double** | | [optional] -**width** | **Int** | | [optional] -**height** | **Int** | | [optional] -**audioChannels** | **Int** | | [optional] -**hardwareAccelerationType** | [**HardwareEncodingType**](HardwareEncodingType.md) | | [optional] -**transcodeReasons** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TranscodingProfile.md b/docs/TranscodingProfile.md deleted file mode 100644 index a499919ca..000000000 --- a/docs/TranscodingProfile.md +++ /dev/null @@ -1,25 +0,0 @@ -# TranscodingProfile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**container** | **String** | | [optional] -**type** | [**DlnaProfileType**](DlnaProfileType.md) | | [optional] -**videoCodec** | **String** | | [optional] -**audioCodec** | **String** | | [optional] -**_protocol** | **String** | | [optional] -**estimateContentLength** | **Bool** | | [optional] [default to false] -**enableMpegtsM2TsMode** | **Bool** | | [optional] [default to false] -**transcodeSeekInfo** | [**TranscodeSeekInfo**](TranscodeSeekInfo.md) | | [optional] -**copyTimestamps** | **Bool** | | [optional] [default to false] -**context** | [**EncodingContext**](EncodingContext.md) | | [optional] -**enableSubtitlesInManifest** | **Bool** | | [optional] [default to false] -**maxAudioChannels** | **String** | | [optional] -**minSegments** | **Int** | | [optional] [default to 0] -**segmentLength** | **Int** | | [optional] [default to 0] -**breakOnNonKeyFrames** | **Bool** | | [optional] [default to false] -**conditions** | [ProfileCondition] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TransportStreamTimestamp.md b/docs/TransportStreamTimestamp.md deleted file mode 100644 index f7eb066f4..000000000 --- a/docs/TransportStreamTimestamp.md +++ /dev/null @@ -1,9 +0,0 @@ -# TransportStreamTimestamp - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TunerChannelMapping.md b/docs/TunerChannelMapping.md deleted file mode 100644 index 5cce77972..000000000 --- a/docs/TunerChannelMapping.md +++ /dev/null @@ -1,13 +0,0 @@ -# TunerChannelMapping - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | | [optional] -**providerChannelName** | **String** | | [optional] -**providerChannelId** | **String** | | [optional] -**id** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TunerHostInfo.md b/docs/TunerHostInfo.md deleted file mode 100644 index e5e5488e3..000000000 --- a/docs/TunerHostInfo.md +++ /dev/null @@ -1,20 +0,0 @@ -# TunerHostInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | | [optional] -**url** | **String** | | [optional] -**type** | **String** | | [optional] -**deviceId** | **String** | | [optional] -**friendlyName** | **String** | | [optional] -**importFavoritesOnly** | **Bool** | | [optional] -**allowHWTranscoding** | **Bool** | | [optional] -**enableStreamLooping** | **Bool** | | [optional] -**source** | **String** | | [optional] -**tunerCount** | **Int** | | [optional] -**userAgent** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/TvShowsAPI.md b/docs/TvShowsAPI.md deleted file mode 100644 index 1083d0e2e..000000000 --- a/docs/TvShowsAPI.md +++ /dev/null @@ -1,292 +0,0 @@ -# TvShowsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getEpisodes**](TvShowsAPI.md#getepisodes) | **GET** /Shows/{seriesId}/Episodes | Gets episodes for a tv season. -[**getNextUp**](TvShowsAPI.md#getnextup) | **GET** /Shows/NextUp | Gets a list of next up episodes. -[**getSeasons**](TvShowsAPI.md#getseasons) | **GET** /Shows/{seriesId}/Seasons | Gets seasons for a tv series. -[**getUpcomingEpisodes**](TvShowsAPI.md#getupcomingepisodes) | **GET** /Shows/Upcoming | Gets a list of upcoming episodes. - - -# **getEpisodes** -```swift - open class func getEpisodes(seriesId: String, userId: String? = nil, fields: [ItemFields]? = nil, season: Int? = nil, seasonId: String? = nil, isMissing: Bool? = nil, adjacentTo: String? = nil, startItemId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, sortBy: String? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets episodes for a tv season. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let seriesId = "seriesId_example" // String | The series id. -let userId = "userId_example" // String | The user id. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) -let season = 987 // Int | Optional filter by season number. (optional) -let seasonId = "seasonId_example" // String | Optional. Filter by season id. (optional) -let isMissing = true // Bool | Optional. Filter by items that are missing episodes or not. (optional) -let adjacentTo = "adjacentTo_example" // String | Optional. Return items that are siblings of a supplied item. (optional) -let startItemId = "startItemId_example" // String | Optional. Skip through the list until a given item is found. (optional) -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 enableImages = true // Bool | Optional, include image information in output. (optional) -let imageTypeLimit = 987 // Int | Optional, the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let sortBy = "sortBy_example" // String | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) - -// Gets episodes for a tv season. -TvShowsAPI.getEpisodes(seriesId: seriesId, userId: userId, fields: fields, season: season, seasonId: seasonId, isMissing: isMissing, adjacentTo: adjacentTo, startItemId: startItemId, startIndex: startIndex, limit: limit, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData, sortBy: sortBy) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **seriesId** | **String** | The series id. | - **userId** | **String** | The user id. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. | [optional] - **season** | **Int** | Optional filter by season number. | [optional] - **seasonId** | **String** | Optional. Filter by season id. | [optional] - **isMissing** | **Bool** | Optional. Filter by items that are missing episodes or not. | [optional] - **adjacentTo** | **String** | Optional. Return items that are siblings of a supplied item. | [optional] - **startItemId** | **String** | Optional. Skip through the list until a given item is found. | [optional] - **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] - **enableImages** | **Bool** | Optional, include image information in output. | [optional] - **imageTypeLimit** | **Int** | Optional, the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **sortBy** | **String** | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getNextUp** -```swift - open class func getNextUp(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, seriesId: String? = nil, parentId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, nextUpDateCutoff: Date? = nil, enableTotalRecordCount: Bool? = nil, disableFirstEpisode: Bool? = nil, enableRewatching: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets a list of next up episodes. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id of the user to get the next up episodes for. (optional) -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 fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let seriesId = "seriesId_example" // String | Optional. Filter by series id. (optional) -let parentId = "parentId_example" // String | Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let nextUpDateCutoff = Date() // Date | Optional. Starting date of shows to show in Next Up section. (optional) -let enableTotalRecordCount = true // Bool | Whether to enable the total records count. Defaults to true. (optional) (default to true) -let disableFirstEpisode = true // Bool | Whether to disable sending the first episode in a series as next up. (optional) (default to false) -let enableRewatching = true // Bool | Whether to include watched episode in next up results. (optional) (default to false) - -// Gets a list of next up episodes. -TvShowsAPI.getNextUp(userId: userId, startIndex: startIndex, limit: limit, fields: fields, seriesId: seriesId, parentId: parentId, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData, nextUpDateCutoff: nextUpDateCutoff, enableTotalRecordCount: enableTotalRecordCount, disableFirstEpisode: disableFirstEpisode, enableRewatching: enableRewatching) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id of the user to get the next up episodes for. | [optional] - **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] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **seriesId** | **String** | Optional. Filter by series id. | [optional] - **parentId** | **String** | Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **nextUpDateCutoff** | **Date** | Optional. Starting date of shows to show in Next Up section. | [optional] - **enableTotalRecordCount** | **Bool** | Whether to enable the total records count. Defaults to true. | [optional] [default to true] - **disableFirstEpisode** | **Bool** | Whether to disable sending the first episode in a series as next up. | [optional] [default to false] - **enableRewatching** | **Bool** | Whether to include watched episode in next up results. | [optional] [default to false] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSeasons** -```swift - open class func getSeasons(seriesId: String, userId: String? = nil, fields: [ItemFields]? = nil, isSpecialSeason: Bool? = nil, isMissing: Bool? = nil, adjacentTo: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets seasons for a tv series. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let seriesId = "seriesId_example" // String | The series id. -let userId = "userId_example" // String | The user id. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional) -let isSpecialSeason = true // Bool | Optional. Filter by special season. (optional) -let isMissing = true // Bool | Optional. Filter by items that are missing episodes or not. (optional) -let adjacentTo = "adjacentTo_example" // String | Optional. Return items that are siblings of a supplied item. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) - -// Gets seasons for a tv series. -TvShowsAPI.getSeasons(seriesId: seriesId, userId: userId, fields: fields, isSpecialSeason: isSpecialSeason, isMissing: isMissing, adjacentTo: adjacentTo, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **seriesId** | **String** | The series id. | - **userId** | **String** | The user id. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. | [optional] - **isSpecialSeason** | **Bool** | Optional. Filter by special season. | [optional] - **isMissing** | **Bool** | Optional. Filter by items that are missing episodes or not. | [optional] - **adjacentTo** | **String** | Optional. Return items that are siblings of a supplied item. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getUpcomingEpisodes** -```swift - open class func getUpcomingEpisodes(userId: String? = nil, startIndex: Int? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, parentId: String? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets a list of upcoming episodes. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id of the user to get the upcoming episodes for. (optional) -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 fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let parentId = "parentId_example" // String | Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let enableImages = true // Bool | Optional. Include image information in output. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) - -// Gets a list of upcoming episodes. -TvShowsAPI.getUpcomingEpisodes(userId: userId, startIndex: startIndex, limit: limit, fields: fields, parentId: parentId, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id of the user to get the upcoming episodes for. | [optional] - **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] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **parentId** | **String** | Optional. Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/TypeOptions.md b/docs/TypeOptions.md deleted file mode 100644 index a0c81e7f7..000000000 --- a/docs/TypeOptions.md +++ /dev/null @@ -1,15 +0,0 @@ -# TypeOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**type** | **String** | | [optional] -**metadataFetchers** | **[String]** | | [optional] -**metadataFetcherOrder** | **[String]** | | [optional] -**imageFetchers** | **[String]** | | [optional] -**imageFetcherOrder** | **[String]** | | [optional] -**imageOptions** | [ImageOption] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UniversalAudioAPI.md b/docs/UniversalAudioAPI.md deleted file mode 100644 index 60c093125..000000000 --- a/docs/UniversalAudioAPI.md +++ /dev/null @@ -1,174 +0,0 @@ -# UniversalAudioAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getUniversalAudioStream**](UniversalAudioAPI.md#getuniversalaudiostream) | **GET** /Audio/{itemId}/universal | Gets an audio stream. -[**headUniversalAudioStream**](UniversalAudioAPI.md#headuniversalaudiostream) | **HEAD** /Audio/{itemId}/universal | Gets an audio stream. - - -# **getUniversalAudioStream** -```swift - open class func getUniversalAudioStream(itemId: String, container: [String]? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, userId: String? = nil, audioCodec: String? = nil, maxAudioChannels: Int? = nil, transcodingAudioChannels: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, startTimeTicks: Int64? = nil, transcodingContainer: String? = nil, transcodingProtocol: String? = nil, maxAudioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, enableRemoteMedia: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, enableRedirection: Bool? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets an audio stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = ["inner_example"] // [String] | Optional. The audio container. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let userId = "userId_example" // String | Optional. The user id. (optional) -let audioCodec = "audioCodec_example" // String | Optional. The audio codec to transcode to. (optional) -let maxAudioChannels = 987 // Int | Optional. The maximum number of audio channels. (optional) -let transcodingAudioChannels = 987 // Int | Optional. The number of how many audio channels to transcode to. (optional) -let maxStreamingBitrate = 987 // Int | Optional. The maximum streaming bitrate. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let transcodingContainer = "transcodingContainer_example" // String | Optional. The container to transcode to. (optional) -let transcodingProtocol = "transcodingProtocol_example" // String | Optional. The transcoding protocol. (optional) -let maxAudioSampleRate = 987 // Int | Optional. The maximum audio sample rate. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let enableRemoteMedia = true // Bool | Optional. Whether to enable remote media. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) (default to false) -let enableRedirection = true // Bool | Whether to enable redirection. Defaults to true. (optional) (default to true) - -// Gets an audio stream. -UniversalAudioAPI.getUniversalAudioStream(itemId: itemId, container: container, mediaSourceId: mediaSourceId, deviceId: deviceId, userId: userId, audioCodec: audioCodec, maxAudioChannels: maxAudioChannels, transcodingAudioChannels: transcodingAudioChannels, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, startTimeTicks: startTimeTicks, transcodingContainer: transcodingContainer, transcodingProtocol: transcodingProtocol, maxAudioSampleRate: maxAudioSampleRate, maxAudioBitDepth: maxAudioBitDepth, enableRemoteMedia: enableRemoteMedia, breakOnNonKeyFrames: breakOnNonKeyFrames, enableRedirection: enableRedirection) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | [**[String]**](String.md) | Optional. The audio container. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **userId** | **String** | Optional. The user id. | [optional] - **audioCodec** | **String** | Optional. The audio codec to transcode to. | [optional] - **maxAudioChannels** | **Int** | Optional. The maximum number of audio channels. | [optional] - **transcodingAudioChannels** | **Int** | Optional. The number of how many audio channels to transcode to. | [optional] - **maxStreamingBitrate** | **Int** | Optional. The maximum streaming bitrate. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **transcodingContainer** | **String** | Optional. The container to transcode to. | [optional] - **transcodingProtocol** | **String** | Optional. The transcoding protocol. | [optional] - **maxAudioSampleRate** | **Int** | Optional. The maximum audio sample rate. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **enableRemoteMedia** | **Bool** | Optional. Whether to enable remote media. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] [default to false] - **enableRedirection** | **Bool** | Whether to enable redirection. Defaults to true. | [optional] [default to true] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: audio/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headUniversalAudioStream** -```swift - open class func headUniversalAudioStream(itemId: String, container: [String]? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, userId: String? = nil, audioCodec: String? = nil, maxAudioChannels: Int? = nil, transcodingAudioChannels: Int? = nil, maxStreamingBitrate: Int? = nil, audioBitRate: Int? = nil, startTimeTicks: Int64? = nil, transcodingContainer: String? = nil, transcodingProtocol: String? = nil, maxAudioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, enableRemoteMedia: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, enableRedirection: Bool? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets an audio stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = ["inner_example"] // [String] | Optional. The audio container. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let userId = "userId_example" // String | Optional. The user id. (optional) -let audioCodec = "audioCodec_example" // String | Optional. The audio codec to transcode to. (optional) -let maxAudioChannels = 987 // Int | Optional. The maximum number of audio channels. (optional) -let transcodingAudioChannels = 987 // Int | Optional. The number of how many audio channels to transcode to. (optional) -let maxStreamingBitrate = 987 // Int | Optional. The maximum streaming bitrate. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let transcodingContainer = "transcodingContainer_example" // String | Optional. The container to transcode to. (optional) -let transcodingProtocol = "transcodingProtocol_example" // String | Optional. The transcoding protocol. (optional) -let maxAudioSampleRate = 987 // Int | Optional. The maximum audio sample rate. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let enableRemoteMedia = true // Bool | Optional. Whether to enable remote media. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) (default to false) -let enableRedirection = true // Bool | Whether to enable redirection. Defaults to true. (optional) (default to true) - -// Gets an audio stream. -UniversalAudioAPI.headUniversalAudioStream(itemId: itemId, container: container, mediaSourceId: mediaSourceId, deviceId: deviceId, userId: userId, audioCodec: audioCodec, maxAudioChannels: maxAudioChannels, transcodingAudioChannels: transcodingAudioChannels, maxStreamingBitrate: maxStreamingBitrate, audioBitRate: audioBitRate, startTimeTicks: startTimeTicks, transcodingContainer: transcodingContainer, transcodingProtocol: transcodingProtocol, maxAudioSampleRate: maxAudioSampleRate, maxAudioBitDepth: maxAudioBitDepth, enableRemoteMedia: enableRemoteMedia, breakOnNonKeyFrames: breakOnNonKeyFrames, enableRedirection: enableRedirection) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | [**[String]**](String.md) | Optional. The audio container. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **userId** | **String** | Optional. The user id. | [optional] - **audioCodec** | **String** | Optional. The audio codec to transcode to. | [optional] - **maxAudioChannels** | **Int** | Optional. The maximum number of audio channels. | [optional] - **transcodingAudioChannels** | **Int** | Optional. The number of how many audio channels to transcode to. | [optional] - **maxStreamingBitrate** | **Int** | Optional. The maximum streaming bitrate. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **transcodingContainer** | **String** | Optional. The container to transcode to. | [optional] - **transcodingProtocol** | **String** | Optional. The transcoding protocol. | [optional] - **maxAudioSampleRate** | **Int** | Optional. The maximum audio sample rate. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **enableRemoteMedia** | **Bool** | Optional. Whether to enable remote media. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] [default to false] - **enableRedirection** | **Bool** | Whether to enable redirection. Defaults to true. | [optional] [default to true] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: audio/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/UnratedItem.md b/docs/UnratedItem.md deleted file mode 100644 index 2537670a4..000000000 --- a/docs/UnratedItem.md +++ /dev/null @@ -1,9 +0,0 @@ -# UnratedItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateConfigurationRequest.md b/docs/UpdateConfigurationRequest.md deleted file mode 100644 index 026b9faa4..000000000 --- a/docs/UpdateConfigurationRequest.md +++ /dev/null @@ -1,57 +0,0 @@ -# UpdateConfigurationRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**logFileRetentionDays** | **Int** | Gets or sets the number of days we should retain log files. | [optional] -**isStartupWizardCompleted** | **Bool** | Gets or sets a value indicating whether this instance is first run. | [optional] -**cachePath** | **String** | Gets or sets the cache path. | [optional] -**previousVersion** | **String** | Gets or sets the last known version that was ran using the configuration. | [optional] -**previousVersionStr** | **String** | Gets or sets the stringified PreviousVersion to be stored/loaded, because System.Version itself isn't xml-serializable. | [optional] -**enableMetrics** | **Bool** | Gets or sets a value indicating whether to enable prometheus metrics exporting. | [optional] -**enableNormalizedItemByNameIds** | **Bool** | | [optional] -**isPortAuthorized** | **Bool** | Gets or sets a value indicating whether this instance is port authorized. | [optional] -**quickConnectAvailable** | **Bool** | Gets or sets a value indicating whether quick connect is available for use on this server. | [optional] -**enableCaseSensitiveItemIds** | **Bool** | Gets or sets a value indicating whether [enable case sensitive item ids]. | [optional] -**disableLiveTvChannelUserDataName** | **Bool** | | [optional] -**metadataPath** | **String** | Gets or sets the metadata path. | [optional] -**metadataNetworkPath** | **String** | | [optional] -**preferredMetadataLanguage** | **String** | Gets or sets the preferred metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**sortReplaceCharacters** | **[String]** | Gets or sets characters to be replaced with a ' ' in strings to create a sort name. | [optional] -**sortRemoveCharacters** | **[String]** | Gets or sets characters to be removed from strings to create a sort name. | [optional] -**sortRemoveWords** | **[String]** | Gets or sets words to be removed from strings to create a sort name. | [optional] -**minResumePct** | **Int** | Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated. | [optional] -**maxResumePct** | **Int** | Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. | [optional] -**minResumeDurationSeconds** | **Int** | Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates.. | [optional] -**minAudiobookResume** | **Int** | Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated. | [optional] -**maxAudiobookResume** | **Int** | Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. | [optional] -**libraryMonitorDelay** | **Int** | Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added/removed Some delay is necessary with some items because their creation is not atomic. It involves the creation of several different directories and files. | [optional] -**imageSavingConvention** | [**ImageSavingConvention**](ImageSavingConvention.md) | Gets or sets the image saving convention. | [optional] -**metadataOptions** | [MetadataOptions] | | [optional] -**skipDeserializationForBasicTypes** | **Bool** | | [optional] -**serverName** | **String** | | [optional] -**uICulture** | **String** | | [optional] -**saveMetadataHidden** | **Bool** | | [optional] -**contentTypes** | [NameValuePair] | | [optional] -**remoteClientBitrateLimit** | **Int** | | [optional] -**enableFolderView** | **Bool** | | [optional] -**enableGroupingIntoCollections** | **Bool** | | [optional] -**displaySpecialsWithinSeasons** | **Bool** | | [optional] -**codecsUsed** | **[String]** | | [optional] -**pluginRepositories** | [RepositoryInfo] | | [optional] -**enableExternalContentInSuggestions** | **Bool** | | [optional] -**imageExtractionTimeoutMs** | **Int** | | [optional] -**pathSubstitutions** | [PathSubstitution] | | [optional] -**enableSlowResponseWarning** | **Bool** | Gets or sets a value indicating whether slow server responses should be logged as a warning. | [optional] -**slowResponseThresholdMs** | **Int64** | Gets or sets the threshold for the slow response time warning in ms. | [optional] -**corsHosts** | **[String]** | Gets or sets the cors hosts. | [optional] -**activityLogRetentionDays** | **Int** | Gets or sets the number of days we should retain activity logs. | [optional] -**libraryScanFanoutConcurrency** | **Int** | Gets or sets the how the library scan fans out. | [optional] -**libraryMetadataRefreshConcurrency** | **Int** | Gets or sets the how many metadata refreshes can run concurrently. | [optional] -**removeOldPlugins** | **Bool** | Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder. | [optional] -**allowClientLogUpload** | **Bool** | Gets or sets a value indicating whether clients should be allowed to upload logs. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateDeviceOptionsRequest.md b/docs/UpdateDeviceOptionsRequest.md deleted file mode 100644 index 4a3e96659..000000000 --- a/docs/UpdateDeviceOptionsRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# UpdateDeviceOptionsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **Int** | Gets or sets the id. | [optional] -**deviceId** | **String** | Gets or sets the device id. | [optional] -**customName** | **String** | Gets or sets the custom name. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateDisplayPreferencesRequest.md b/docs/UpdateDisplayPreferencesRequest.md deleted file mode 100644 index 01ff17038..000000000 --- a/docs/UpdateDisplayPreferencesRequest.md +++ /dev/null @@ -1,23 +0,0 @@ -# UpdateDisplayPreferencesRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | Gets or sets the user id. | [optional] -**viewType** | **String** | Gets or sets the type of the view. | [optional] -**sortBy** | **String** | Gets or sets the sort by. | [optional] -**indexBy** | **String** | Gets or sets the index by. | [optional] -**rememberIndexing** | **Bool** | Gets or sets a value indicating whether [remember indexing]. | [optional] -**primaryImageHeight** | **Int** | Gets or sets the height of the primary image. | [optional] -**primaryImageWidth** | **Int** | Gets or sets the width of the primary image. | [optional] -**customPrefs** | **[String: String]** | Gets or sets the custom prefs. | [optional] -**scrollDirection** | [**ScrollDirection**](ScrollDirection.md) | An enum representing the axis that should be scrolled. | [optional] -**showBackdrop** | **Bool** | Gets or sets a value indicating whether to show backdrops on this item. | [optional] -**rememberSorting** | **Bool** | Gets or sets a value indicating whether [remember sorting]. | [optional] -**sortOrder** | [**SortOrder**](SortOrder.md) | An enum representing the sorting order. | [optional] -**showSidebar** | **Bool** | Gets or sets a value indicating whether [show sidebar]. | [optional] -**client** | **String** | Gets or sets the client. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateInitialConfigurationRequest.md b/docs/UpdateInitialConfigurationRequest.md deleted file mode 100644 index aa0afbdf1..000000000 --- a/docs/UpdateInitialConfigurationRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# UpdateInitialConfigurationRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**uICulture** | **String** | Gets or sets UI language culture. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**preferredMetadataLanguage** | **String** | Gets or sets the preferred language for the metadata. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateItemRequest.md b/docs/UpdateItemRequest.md deleted file mode 100644 index 538e7382c..000000000 --- a/docs/UpdateItemRequest.md +++ /dev/null @@ -1,159 +0,0 @@ -# UpdateItemRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**originalTitle** | **String** | | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**etag** | **String** | Gets or sets the etag. | [optional] -**sourceType** | **String** | Gets or sets the type of the source. | [optional] -**playlistItemId** | **String** | Gets or sets the playlist item identifier. | [optional] -**dateCreated** | **Date** | Gets or sets the date created. | [optional] -**dateLastMediaAdded** | **Date** | | [optional] -**extraType** | **String** | | [optional] -**airsBeforeSeasonNumber** | **Int** | | [optional] -**airsAfterSeasonNumber** | **Int** | | [optional] -**airsBeforeEpisodeNumber** | **Int** | | [optional] -**canDelete** | **Bool** | | [optional] -**canDownload** | **Bool** | | [optional] -**hasSubtitles** | **Bool** | | [optional] -**preferredMetadataLanguage** | **String** | | [optional] -**preferredMetadataCountryCode** | **String** | | [optional] -**supportsSync** | **Bool** | Gets or sets a value indicating whether [supports synchronize]. | [optional] -**container** | **String** | | [optional] -**sortName** | **String** | Gets or sets the name of the sort. | [optional] -**forcedSortName** | **String** | | [optional] -**video3DFormat** | [**Video3DFormat**](Video3DFormat.md) | Gets or sets the video3 D format. | [optional] -**premiereDate** | **Date** | Gets or sets the premiere date. | [optional] -**externalUrls** | [ExternalUrl] | Gets or sets the external urls. | [optional] -**mediaSources** | [MediaSourceInfo] | Gets or sets the media versions. | [optional] -**criticRating** | **Float** | Gets or sets the critic rating. | [optional] -**productionLocations** | **[String]** | | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**enableMediaSourceDisplay** | **Bool** | | [optional] -**officialRating** | **String** | Gets or sets the official rating. | [optional] -**customRating** | **String** | Gets or sets the custom rating. | [optional] -**channelId** | **String** | Gets or sets the channel identifier. | [optional] -**channelName** | **String** | | [optional] -**overview** | **String** | Gets or sets the overview. | [optional] -**taglines** | **[String]** | Gets or sets the taglines. | [optional] -**genres** | **[String]** | Gets or sets the genres. | [optional] -**communityRating** | **Float** | Gets or sets the community rating. | [optional] -**cumulativeRunTimeTicks** | **Int64** | Gets or sets the cumulative run time ticks. | [optional] -**runTimeTicks** | **Int64** | Gets or sets the run time ticks. | [optional] -**playAccess** | [**PlayAccess**](PlayAccess.md) | Gets or sets the play access. | [optional] -**aspectRatio** | **String** | Gets or sets the aspect ratio. | [optional] -**productionYear** | **Int** | Gets or sets the production year. | [optional] -**isPlaceHolder** | **Bool** | Gets or sets a value indicating whether this instance is place holder. | [optional] -**number** | **String** | Gets or sets the number. | [optional] -**channelNumber** | **String** | | [optional] -**indexNumber** | **Int** | Gets or sets the index number. | [optional] -**indexNumberEnd** | **Int** | Gets or sets the index number end. | [optional] -**parentIndexNumber** | **Int** | Gets or sets the parent index number. | [optional] -**remoteTrailers** | [MediaUrl] | Gets or sets the trailer urls. | [optional] -**providerIds** | **[String: String]** | Gets or sets the provider ids. | [optional] -**isHD** | **Bool** | Gets or sets a value indicating whether this instance is HD. | [optional] -**isFolder** | **Bool** | Gets or sets a value indicating whether this instance is folder. | [optional] -**parentId** | **String** | Gets or sets the parent id. | [optional] -**type** | [**BaseItemKind**](BaseItemKind.md) | The base item kind. | [optional] -**people** | [BaseItemPerson] | Gets or sets the people. | [optional] -**studios** | [NameGuidPair] | Gets or sets the studios. | [optional] -**genreItems** | [NameGuidPair] | | [optional] -**parentLogoItemId** | **String** | Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropItemId** | **String** | Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one. | [optional] -**parentBackdropImageTags** | **[String]** | Gets or sets the parent backdrop image tags. | [optional] -**localTrailerCount** | **Int** | Gets or sets the local trailer count. | [optional] -**userData** | [**BaseItemDtoUserData**](BaseItemDtoUserData.md) | | [optional] -**recursiveItemCount** | **Int** | Gets or sets the recursive item count. | [optional] -**childCount** | **Int** | Gets or sets the child count. | [optional] -**seriesName** | **String** | Gets or sets the name of the series. | [optional] -**seriesId** | **String** | Gets or sets the series id. | [optional] -**seasonId** | **String** | Gets or sets the season identifier. | [optional] -**specialFeatureCount** | **Int** | Gets or sets the special feature count. | [optional] -**displayPreferencesId** | **String** | Gets or sets the display preferences id. | [optional] -**status** | **String** | Gets or sets the status. | [optional] -**airTime** | **String** | Gets or sets the air time. | [optional] -**airDays** | [DayOfWeek] | Gets or sets the air days. | [optional] -**tags** | **[String]** | Gets or sets the tags. | [optional] -**primaryImageAspectRatio** | **Double** | Gets or sets the primary image aspect ratio, after image enhancements. | [optional] -**artists** | **[String]** | Gets or sets the artists. | [optional] -**artistItems** | [NameGuidPair] | Gets or sets the artist items. | [optional] -**album** | **String** | Gets or sets the album. | [optional] -**collectionType** | **String** | Gets or sets the type of the collection. | [optional] -**displayOrder** | **String** | Gets or sets the display order. | [optional] -**albumId** | **String** | Gets or sets the album id. | [optional] -**albumPrimaryImageTag** | **String** | Gets or sets the album image tag. | [optional] -**seriesPrimaryImageTag** | **String** | Gets or sets the series primary image tag. | [optional] -**albumArtist** | **String** | Gets or sets the album artist. | [optional] -**albumArtists** | [NameGuidPair] | Gets or sets the album artists. | [optional] -**seasonName** | **String** | Gets or sets the name of the season. | [optional] -**mediaStreams** | [MediaStream] | Gets or sets the media streams. | [optional] -**videoType** | [**VideoType**](VideoType.md) | Gets or sets the type of the video. | [optional] -**partCount** | **Int** | Gets or sets the part count. | [optional] -**mediaSourceCount** | **Int** | | [optional] -**imageTags** | **[String: String]** | Gets or sets the image tags. | [optional] -**backdropImageTags** | **[String]** | Gets or sets the backdrop image tags. | [optional] -**screenshotImageTags** | **[String]** | Gets or sets the screenshot image tags. | [optional] -**parentLogoImageTag** | **String** | Gets or sets the parent logo image tag. | [optional] -**parentArtItemId** | **String** | Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one. | [optional] -**parentArtImageTag** | **String** | Gets or sets the parent art image tag. | [optional] -**seriesThumbImageTag** | **String** | Gets or sets the series thumb image tag. | [optional] -**imageBlurHashes** | [**BaseItemDtoImageBlurHashes**](BaseItemDtoImageBlurHashes.md) | | [optional] -**seriesStudio** | **String** | Gets or sets the series studio. | [optional] -**parentThumbItemId** | **String** | Gets or sets the parent thumb item id. | [optional] -**parentThumbImageTag** | **String** | Gets or sets the parent thumb image tag. | [optional] -**parentPrimaryImageItemId** | **String** | Gets or sets the parent primary image item identifier. | [optional] -**parentPrimaryImageTag** | **String** | Gets or sets the parent primary image tag. | [optional] -**chapters** | [ChapterInfo] | Gets or sets the chapters. | [optional] -**locationType** | [**LocationType**](LocationType.md) | Gets or sets the type of the location. | [optional] -**isoType** | [**IsoType**](IsoType.md) | Gets or sets the type of the iso. | [optional] -**mediaType** | **String** | Gets or sets the type of the media. | [optional] -**endDate** | **Date** | Gets or sets the end date. | [optional] -**lockedFields** | [MetadataField] | Gets or sets the locked fields. | [optional] -**trailerCount** | **Int** | Gets or sets the trailer count. | [optional] -**movieCount** | **Int** | Gets or sets the movie count. | [optional] -**seriesCount** | **Int** | Gets or sets the series count. | [optional] -**programCount** | **Int** | | [optional] -**episodeCount** | **Int** | Gets or sets the episode count. | [optional] -**songCount** | **Int** | Gets or sets the song count. | [optional] -**albumCount** | **Int** | Gets or sets the album count. | [optional] -**artistCount** | **Int** | | [optional] -**musicVideoCount** | **Int** | Gets or sets the music video count. | [optional] -**lockData** | **Bool** | Gets or sets a value indicating whether [enable internet providers]. | [optional] -**width** | **Int** | | [optional] -**height** | **Int** | | [optional] -**cameraMake** | **String** | | [optional] -**cameraModel** | **String** | | [optional] -**software** | **String** | | [optional] -**exposureTime** | **Double** | | [optional] -**focalLength** | **Double** | | [optional] -**imageOrientation** | [**ImageOrientation**](ImageOrientation.md) | | [optional] -**aperture** | **Double** | | [optional] -**shutterSpeed** | **Double** | | [optional] -**latitude** | **Double** | | [optional] -**longitude** | **Double** | | [optional] -**altitude** | **Double** | | [optional] -**isoSpeedRating** | **Int** | | [optional] -**seriesTimerId** | **String** | Gets or sets the series timer identifier. | [optional] -**programId** | **String** | Gets or sets the program identifier. | [optional] -**channelPrimaryImageTag** | **String** | Gets or sets the channel primary image tag. | [optional] -**startDate** | **Date** | Gets or sets the start date of the recording, in UTC. | [optional] -**completionPercentage** | **Double** | Gets or sets the completion percentage. | [optional] -**isRepeat** | **Bool** | Gets or sets a value indicating whether this instance is repeat. | [optional] -**episodeTitle** | **String** | Gets or sets the episode title. | [optional] -**channelType** | [**ChannelType**](ChannelType.md) | Gets or sets the type of the channel. | [optional] -**audio** | [**ProgramAudio**](ProgramAudio.md) | Gets or sets the audio. | [optional] -**isMovie** | **Bool** | Gets or sets a value indicating whether this instance is movie. | [optional] -**isSports** | **Bool** | Gets or sets a value indicating whether this instance is sports. | [optional] -**isSeries** | **Bool** | Gets or sets a value indicating whether this instance is series. | [optional] -**isLive** | **Bool** | Gets or sets a value indicating whether this instance is live. | [optional] -**isNews** | **Bool** | Gets or sets a value indicating whether this instance is news. | [optional] -**isKids** | **Bool** | Gets or sets a value indicating whether this instance is kids. | [optional] -**isPremiere** | **Bool** | Gets or sets a value indicating whether this instance is premiere. | [optional] -**timerId** | **String** | Gets or sets the timer identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateLibraryOptionsDto.md b/docs/UpdateLibraryOptionsDto.md deleted file mode 100644 index 6cfbb8f1f..000000000 --- a/docs/UpdateLibraryOptionsDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# UpdateLibraryOptionsDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | Gets or sets the library item id. | [optional] -**libraryOptions** | [**AddVirtualFolderDtoLibraryOptions**](AddVirtualFolderDtoLibraryOptions.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateLibraryOptionsRequest.md b/docs/UpdateLibraryOptionsRequest.md deleted file mode 100644 index 21e72ec13..000000000 --- a/docs/UpdateLibraryOptionsRequest.md +++ /dev/null @@ -1,11 +0,0 @@ -# UpdateLibraryOptionsRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **String** | Gets or sets the library item id. | [optional] -**libraryOptions** | [**AddVirtualFolderDtoLibraryOptions**](AddVirtualFolderDtoLibraryOptions.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateMediaEncoderPathRequest.md b/docs/UpdateMediaEncoderPathRequest.md deleted file mode 100644 index 8b9c0c3a7..000000000 --- a/docs/UpdateMediaEncoderPathRequest.md +++ /dev/null @@ -1,11 +0,0 @@ -# UpdateMediaEncoderPathRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**path** | **String** | Gets or sets media encoder path. | [optional] -**pathType** | **String** | Gets or sets media encoder path type. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateMediaPathRequest.md b/docs/UpdateMediaPathRequest.md deleted file mode 100644 index 511accb28..000000000 --- a/docs/UpdateMediaPathRequest.md +++ /dev/null @@ -1,11 +0,0 @@ -# UpdateMediaPathRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the library name. | -**pathInfo** | [**UpdateMediaPathRequestDtoPathInfo**](UpdateMediaPathRequestDtoPathInfo.md) | | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateMediaPathRequestDto.md b/docs/UpdateMediaPathRequestDto.md deleted file mode 100644 index 922e21abc..000000000 --- a/docs/UpdateMediaPathRequestDto.md +++ /dev/null @@ -1,11 +0,0 @@ -# UpdateMediaPathRequestDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the library name. | -**pathInfo** | [**UpdateMediaPathRequestDtoPathInfo**](UpdateMediaPathRequestDtoPathInfo.md) | | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateMediaPathRequestDtoPathInfo.md b/docs/UpdateMediaPathRequestDtoPathInfo.md deleted file mode 100644 index d8bfbcdb2..000000000 --- a/docs/UpdateMediaPathRequestDtoPathInfo.md +++ /dev/null @@ -1,11 +0,0 @@ -# UpdateMediaPathRequestDtoPathInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**path** | **String** | | [optional] -**networkPath** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateStartupUserRequest.md b/docs/UpdateStartupUserRequest.md deleted file mode 100644 index c27a7617e..000000000 --- a/docs/UpdateStartupUserRequest.md +++ /dev/null @@ -1,11 +0,0 @@ -# UpdateStartupUserRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the username. | [optional] -**password** | **String** | Gets or sets the user's password. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateUserConfigurationRequest.md b/docs/UpdateUserConfigurationRequest.md deleted file mode 100644 index f6d103147..000000000 --- a/docs/UpdateUserConfigurationRequest.md +++ /dev/null @@ -1,24 +0,0 @@ -# UpdateUserConfigurationRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**audioLanguagePreference** | **String** | Gets or sets the audio language preference. | [optional] -**playDefaultAudioTrack** | **Bool** | Gets or sets a value indicating whether [play default audio track]. | [optional] -**subtitleLanguagePreference** | **String** | Gets or sets the subtitle language preference. | [optional] -**displayMissingEpisodes** | **Bool** | | [optional] -**groupedFolders** | **[String]** | | [optional] -**subtitleMode** | [**SubtitlePlaybackMode**](SubtitlePlaybackMode.md) | An enum representing a subtitle playback mode. | [optional] -**displayCollectionsView** | **Bool** | | [optional] -**enableLocalPassword** | **Bool** | | [optional] -**orderedViews** | **[String]** | | [optional] -**latestItemsExcludes** | **[String]** | | [optional] -**myMediaExcludes** | **[String]** | | [optional] -**hidePlayedInLatest** | **Bool** | | [optional] -**rememberAudioSelections** | **Bool** | | [optional] -**rememberSubtitleSelections** | **Bool** | | [optional] -**enableNextEpisodeAutoPlay** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateUserEasyPassword.md b/docs/UpdateUserEasyPassword.md deleted file mode 100644 index 146844599..000000000 --- a/docs/UpdateUserEasyPassword.md +++ /dev/null @@ -1,12 +0,0 @@ -# UpdateUserEasyPassword - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**newPassword** | **String** | Gets or sets the new sha1-hashed password. | [optional] -**newPw** | **String** | Gets or sets the new password. | [optional] -**resetPassword** | **Bool** | Gets or sets a value indicating whether to reset the password. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateUserEasyPasswordRequest.md b/docs/UpdateUserEasyPasswordRequest.md deleted file mode 100644 index b46895ed3..000000000 --- a/docs/UpdateUserEasyPasswordRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# UpdateUserEasyPasswordRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**newPassword** | **String** | Gets or sets the new sha1-hashed password. | [optional] -**newPw** | **String** | Gets or sets the new password. | [optional] -**resetPassword** | **Bool** | Gets or sets a value indicating whether to reset the password. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateUserPassword.md b/docs/UpdateUserPassword.md deleted file mode 100644 index 85e647242..000000000 --- a/docs/UpdateUserPassword.md +++ /dev/null @@ -1,13 +0,0 @@ -# UpdateUserPassword - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**currentPassword** | **String** | Gets or sets the current sha1-hashed password. | [optional] -**currentPw** | **String** | Gets or sets the current plain text password. | [optional] -**newPw** | **String** | Gets or sets the new plain text password. | [optional] -**resetPassword** | **Bool** | Gets or sets a value indicating whether to reset the password. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateUserPasswordRequest.md b/docs/UpdateUserPasswordRequest.md deleted file mode 100644 index e5257705f..000000000 --- a/docs/UpdateUserPasswordRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# UpdateUserPasswordRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**currentPassword** | **String** | Gets or sets the current sha1-hashed password. | [optional] -**currentPw** | **String** | Gets or sets the current plain text password. | [optional] -**newPw** | **String** | Gets or sets the new plain text password. | [optional] -**resetPassword** | **Bool** | Gets or sets a value indicating whether to reset the password. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateUserPolicyRequest.md b/docs/UpdateUserPolicyRequest.md deleted file mode 100644 index f56e34d3a..000000000 --- a/docs/UpdateUserPolicyRequest.md +++ /dev/null @@ -1,48 +0,0 @@ -# UpdateUserPolicyRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**isAdministrator** | **Bool** | Gets or sets a value indicating whether this instance is administrator. | [optional] -**isHidden** | **Bool** | Gets or sets a value indicating whether this instance is hidden. | [optional] -**isDisabled** | **Bool** | Gets or sets a value indicating whether this instance is disabled. | [optional] -**maxParentalRating** | **Int** | Gets or sets the max parental rating. | [optional] -**blockedTags** | **[String]** | | [optional] -**enableUserPreferenceAccess** | **Bool** | | [optional] -**accessSchedules** | [AccessSchedule] | | [optional] -**blockUnratedItems** | [UnratedItem] | | [optional] -**enableRemoteControlOfOtherUsers** | **Bool** | | [optional] -**enableSharedDeviceControl** | **Bool** | | [optional] -**enableRemoteAccess** | **Bool** | | [optional] -**enableLiveTvManagement** | **Bool** | | [optional] -**enableLiveTvAccess** | **Bool** | | [optional] -**enableMediaPlayback** | **Bool** | | [optional] -**enableAudioPlaybackTranscoding** | **Bool** | | [optional] -**enableVideoPlaybackTranscoding** | **Bool** | | [optional] -**enablePlaybackRemuxing** | **Bool** | | [optional] -**forceRemoteSourceTranscoding** | **Bool** | | [optional] -**enableContentDeletion** | **Bool** | | [optional] -**enableContentDeletionFromFolders** | **[String]** | | [optional] -**enableContentDownloading** | **Bool** | | [optional] -**enableSyncTranscoding** | **Bool** | Gets or sets a value indicating whether [enable synchronize]. | [optional] -**enableMediaConversion** | **Bool** | | [optional] -**enabledDevices** | **[String]** | | [optional] -**enableAllDevices** | **Bool** | | [optional] -**enabledChannels** | **[String]** | | [optional] -**enableAllChannels** | **Bool** | | [optional] -**enabledFolders** | **[String]** | | [optional] -**enableAllFolders** | **Bool** | | [optional] -**invalidLoginAttemptCount** | **Int** | | [optional] -**loginAttemptsBeforeLockout** | **Int** | | [optional] -**maxActiveSessions** | **Int** | | [optional] -**enablePublicSharing** | **Bool** | | [optional] -**blockedMediaFolders** | **[String]** | | [optional] -**blockedChannels** | **[String]** | | [optional] -**remoteClientBitrateLimit** | **Int** | | [optional] -**authenticationProviderId** | **String** | | [optional] -**passwordResetProviderId** | **String** | | [optional] -**syncPlayAccess** | [**SyncPlayUserAccessType**](SyncPlayUserAccessType.md) | Enum SyncPlayUserAccessType. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UpdateUserRequest.md b/docs/UpdateUserRequest.md deleted file mode 100644 index a6eba44a7..000000000 --- a/docs/UpdateUserRequest.md +++ /dev/null @@ -1,23 +0,0 @@ -# UpdateUserRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**serverName** | **String** | Gets or sets the name of the server. This is not used by the server and is for client-side usage only. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**primaryImageTag** | **String** | Gets or sets the primary image tag. | [optional] -**hasPassword** | **Bool** | Gets or sets a value indicating whether this instance has password. | [optional] -**hasConfiguredPassword** | **Bool** | Gets or sets a value indicating whether this instance has configured password. | [optional] -**hasConfiguredEasyPassword** | **Bool** | Gets or sets a value indicating whether this instance has configured easy password. | [optional] -**enableAutoLogin** | **Bool** | Gets or sets whether async login is enabled or not. | [optional] -**lastLoginDate** | **Date** | Gets or sets the last login date. | [optional] -**lastActivityDate** | **Date** | Gets or sets the last activity date. | [optional] -**configuration** | [**UserDtoConfiguration**](UserDtoConfiguration.md) | | [optional] -**policy** | [**UserDtoPolicy**](UserDtoPolicy.md) | | [optional] -**primaryImageAspectRatio** | **Double** | Gets or sets the primary image aspect ratio. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UploadSubtitleDto.md b/docs/UploadSubtitleDto.md deleted file mode 100644 index 5fd54fa38..000000000 --- a/docs/UploadSubtitleDto.md +++ /dev/null @@ -1,13 +0,0 @@ -# UploadSubtitleDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**language** | **String** | Gets or sets the subtitle language. | -**format** | **String** | Gets or sets the subtitle format. | -**isForced** | **Bool** | Gets or sets a value indicating whether the subtitle is forced. | -**data** | **String** | Gets or sets the subtitle data. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UploadSubtitleRequest.md b/docs/UploadSubtitleRequest.md deleted file mode 100644 index 2187c8a6f..000000000 --- a/docs/UploadSubtitleRequest.md +++ /dev/null @@ -1,13 +0,0 @@ -# UploadSubtitleRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**language** | **String** | Gets or sets the subtitle language. | -**format** | **String** | Gets or sets the subtitle format. | -**isForced** | **Bool** | Gets or sets a value indicating whether the subtitle is forced. | -**data** | **String** | Gets or sets the subtitle data. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UserAPI.md b/docs/UserAPI.md deleted file mode 100644 index 076e821e8..000000000 --- a/docs/UserAPI.md +++ /dev/null @@ -1,800 +0,0 @@ -# UserAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**authenticateUser**](UserAPI.md#authenticateuser) | **POST** /Users/{userId}/Authenticate | Authenticates a user. -[**authenticateUserByName**](UserAPI.md#authenticateuserbyname) | **POST** /Users/AuthenticateByName | Authenticates a user by name. -[**authenticateWithQuickConnect**](UserAPI.md#authenticatewithquickconnect) | **POST** /Users/AuthenticateWithQuickConnect | Authenticates a user with quick connect. -[**createUserByName**](UserAPI.md#createuserbyname) | **POST** /Users/New | Creates a user. -[**deleteUser**](UserAPI.md#deleteuser) | **DELETE** /Users/{userId} | Deletes a user. -[**forgotPassword**](UserAPI.md#forgotpassword) | **POST** /Users/ForgotPassword | Initiates the forgot password process for a local user. -[**forgotPasswordPin**](UserAPI.md#forgotpasswordpin) | **POST** /Users/ForgotPassword/Pin | Redeems a forgot password pin. -[**getCurrentUser**](UserAPI.md#getcurrentuser) | **GET** /Users/Me | Gets the user based on auth token. -[**getPublicUsers**](UserAPI.md#getpublicusers) | **GET** /Users/Public | Gets a list of publicly visible users for display on a login screen. -[**getUserById**](UserAPI.md#getuserbyid) | **GET** /Users/{userId} | Gets a user by Id. -[**getUsers**](UserAPI.md#getusers) | **GET** /Users | Gets a list of users. -[**updateUser**](UserAPI.md#updateuser) | **POST** /Users/{userId} | Updates a user. -[**updateUserConfiguration**](UserAPI.md#updateuserconfiguration) | **POST** /Users/{userId}/Configuration | Updates a user configuration. -[**updateUserEasyPassword**](UserAPI.md#updateusereasypassword) | **POST** /Users/{userId}/EasyPassword | Updates a user's easy password. -[**updateUserPassword**](UserAPI.md#updateuserpassword) | **POST** /Users/{userId}/Password | Updates a user's password. -[**updateUserPolicy**](UserAPI.md#updateuserpolicy) | **POST** /Users/{userId}/Policy | Updates a user policy. - - -# **authenticateUser** -```swift - open class func authenticateUser(userId: String, pw: String, password: String? = nil, completion: @escaping (_ data: AuthenticationResult?, _ error: Error?) -> Void) -``` - -Authenticates a user. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. -let pw = "pw_example" // String | The password as plain text. -let password = "password_example" // String | The password sha1-hash. (optional) - -// Authenticates a user. -UserAPI.authenticateUser(userId: userId, pw: pw, password: password) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | - **pw** | **String** | The password as plain text. | - **password** | **String** | The password sha1-hash. | [optional] - -### Return type - -[**AuthenticationResult**](AuthenticationResult.md) - -### Authorization - -No authorization required - -### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **authenticateUserByName** -```swift - open class func authenticateUserByName(authenticateUserByNameRequest: AuthenticateUserByNameRequest, completion: @escaping (_ data: AuthenticationResult?, _ error: Error?) -> Void) -``` - -Authenticates a user by name. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let authenticateUserByNameRequest = AuthenticateUserByName_request(username: "username_example", pw: "pw_example", password: "password_example") // AuthenticateUserByNameRequest | The M:Jellyfin.Api.Controllers.UserController.AuthenticateUserByName(Jellyfin.Api.Models.UserDtos.AuthenticateUserByName) request. - -// Authenticates a user by name. -UserAPI.authenticateUserByName(authenticateUserByNameRequest: authenticateUserByNameRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **authenticateUserByNameRequest** | [**AuthenticateUserByNameRequest**](AuthenticateUserByNameRequest.md) | The M:Jellyfin.Api.Controllers.UserController.AuthenticateUserByName(Jellyfin.Api.Models.UserDtos.AuthenticateUserByName) request. | - -### Return type - -[**AuthenticationResult**](AuthenticationResult.md) - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **authenticateWithQuickConnect** -```swift - open class func authenticateWithQuickConnect(authenticateWithQuickConnectRequest: AuthenticateWithQuickConnectRequest, completion: @escaping (_ data: AuthenticationResult?, _ error: Error?) -> Void) -``` - -Authenticates a user with quick connect. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let authenticateWithQuickConnectRequest = AuthenticateWithQuickConnect_request(secret: "secret_example") // AuthenticateWithQuickConnectRequest | The Jellyfin.Api.Models.UserDtos.QuickConnectDto request. - -// Authenticates a user with quick connect. -UserAPI.authenticateWithQuickConnect(authenticateWithQuickConnectRequest: authenticateWithQuickConnectRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **authenticateWithQuickConnectRequest** | [**AuthenticateWithQuickConnectRequest**](AuthenticateWithQuickConnectRequest.md) | The Jellyfin.Api.Models.UserDtos.QuickConnectDto request. | - -### Return type - -[**AuthenticationResult**](AuthenticationResult.md) - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **createUserByName** -```swift - open class func createUserByName(createUserByNameRequest: CreateUserByNameRequest, completion: @escaping (_ data: UserDto?, _ error: Error?) -> Void) -``` - -Creates a user. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let createUserByNameRequest = CreateUserByName_request(name: "name_example", password: "password_example") // CreateUserByNameRequest | The create user by name request body. - -// Creates a user. -UserAPI.createUserByName(createUserByNameRequest: createUserByNameRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **createUserByNameRequest** | [**CreateUserByNameRequest**](CreateUserByNameRequest.md) | The create user by name request body. | - -### Return type - -[**UserDto**](UserDto.md) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **deleteUser** -```swift - open class func deleteUser(userId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Deletes a user. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. - -// Deletes a user. -UserAPI.deleteUser(userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **forgotPassword** -```swift - open class func forgotPassword(forgotPasswordRequest: ForgotPasswordRequest, completion: @escaping (_ data: ForgotPasswordResult?, _ error: Error?) -> Void) -``` - -Initiates the forgot password process for a local user. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let forgotPasswordRequest = ForgotPassword_request(enteredUsername: "enteredUsername_example") // ForgotPasswordRequest | The forgot password request containing the entered username. - -// Initiates the forgot password process for a local user. -UserAPI.forgotPassword(forgotPasswordRequest: forgotPasswordRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **forgotPasswordRequest** | [**ForgotPasswordRequest**](ForgotPasswordRequest.md) | The forgot password request containing the entered username. | - -### Return type - -[**ForgotPasswordResult**](ForgotPasswordResult.md) - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **forgotPasswordPin** -```swift - open class func forgotPasswordPin(forgotPasswordPinRequest: ForgotPasswordPinRequest, completion: @escaping (_ data: PinRedeemResult?, _ error: Error?) -> Void) -``` - -Redeems a forgot password pin. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let forgotPasswordPinRequest = ForgotPasswordPin_request(pin: "pin_example") // ForgotPasswordPinRequest | The forgot password pin request containing the entered pin. - -// Redeems a forgot password pin. -UserAPI.forgotPasswordPin(forgotPasswordPinRequest: forgotPasswordPinRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **forgotPasswordPinRequest** | [**ForgotPasswordPinRequest**](ForgotPasswordPinRequest.md) | The forgot password pin request containing the entered pin. | - -### Return type - -[**PinRedeemResult**](PinRedeemResult.md) - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getCurrentUser** -```swift - open class func getCurrentUser(completion: @escaping (_ data: UserDto?, _ error: Error?) -> Void) -``` - -Gets the user based on auth token. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets the user based on auth token. -UserAPI.getCurrentUser() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**UserDto**](UserDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getPublicUsers** -```swift - open class func getPublicUsers(completion: @escaping (_ data: [UserDto]?, _ error: Error?) -> Void) -``` - -Gets a list of publicly visible users for display on a login screen. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - - -// Gets a list of publicly visible users for display on a login screen. -UserAPI.getPublicUsers() { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**[UserDto]**](UserDto.md) - -### Authorization - -No authorization required - -### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getUserById** -```swift - open class func getUserById(userId: String, completion: @escaping (_ data: UserDto?, _ error: Error?) -> Void) -``` - -Gets a user by Id. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. - -// Gets a user by Id. -UserAPI.getUserById(userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | - -### Return type - -[**UserDto**](UserDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getUsers** -```swift - open class func getUsers(isHidden: Bool? = nil, isDisabled: Bool? = nil, completion: @escaping (_ data: [UserDto]?, _ error: Error?) -> Void) -``` - -Gets a list of users. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let isHidden = true // Bool | Optional filter by IsHidden=true or false. (optional) -let isDisabled = true // Bool | Optional filter by IsDisabled=true or false. (optional) - -// Gets a list of users. -UserAPI.getUsers(isHidden: isHidden, isDisabled: isDisabled) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **isHidden** | **Bool** | Optional filter by IsHidden=true or false. | [optional] - **isDisabled** | **Bool** | Optional filter by IsDisabled=true or false. | [optional] - -### Return type - -[**[UserDto]**](UserDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateUser** -```swift - open class func updateUser(userId: String, updateUserRequest: UpdateUserRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates a user. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. -let updateUserRequest = UpdateUser_request(name: "name_example", serverId: "serverId_example", serverName: "serverName_example", id: "id_example", primaryImageTag: "primaryImageTag_example", hasPassword: false, hasConfiguredPassword: false, hasConfiguredEasyPassword: false, enableAutoLogin: false, lastLoginDate: Date(), lastActivityDate: Date(), configuration: UserDto_Configuration(audioLanguagePreference: "audioLanguagePreference_example", playDefaultAudioTrack: false, subtitleLanguagePreference: "subtitleLanguagePreference_example", displayMissingEpisodes: false, groupedFolders: ["groupedFolders_example"], subtitleMode: SubtitlePlaybackMode(), displayCollectionsView: false, enableLocalPassword: false, orderedViews: ["orderedViews_example"], latestItemsExcludes: ["latestItemsExcludes_example"], myMediaExcludes: ["myMediaExcludes_example"], hidePlayedInLatest: false, rememberAudioSelections: false, rememberSubtitleSelections: false, enableNextEpisodeAutoPlay: false), policy: UserDto_Policy(isAdministrator: false, isHidden: false, isDisabled: false, maxParentalRating: 123, blockedTags: ["blockedTags_example"], enableUserPreferenceAccess: false, accessSchedules: [AccessSchedule(id: 123, userId: "userId_example", dayOfWeek: DynamicDayOfWeek(), startHour: 123, endHour: 123)], blockUnratedItems: [UnratedItem()], enableRemoteControlOfOtherUsers: false, enableSharedDeviceControl: false, enableRemoteAccess: false, enableLiveTvManagement: false, enableLiveTvAccess: false, enableMediaPlayback: false, enableAudioPlaybackTranscoding: false, enableVideoPlaybackTranscoding: false, enablePlaybackRemuxing: false, forceRemoteSourceTranscoding: false, enableContentDeletion: false, enableContentDeletionFromFolders: ["enableContentDeletionFromFolders_example"], enableContentDownloading: false, enableSyncTranscoding: false, enableMediaConversion: false, enabledDevices: ["enabledDevices_example"], enableAllDevices: false, enabledChannels: ["enabledChannels_example"], enableAllChannels: false, enabledFolders: ["enabledFolders_example"], enableAllFolders: false, invalidLoginAttemptCount: 123, loginAttemptsBeforeLockout: 123, maxActiveSessions: 123, enablePublicSharing: false, blockedMediaFolders: ["blockedMediaFolders_example"], blockedChannels: ["blockedChannels_example"], remoteClientBitrateLimit: 123, authenticationProviderId: "authenticationProviderId_example", passwordResetProviderId: "passwordResetProviderId_example", syncPlayAccess: SyncPlayUserAccessType()), primaryImageAspectRatio: 123) // UpdateUserRequest | The updated user model. - -// Updates a user. -UserAPI.updateUser(userId: userId, updateUserRequest: updateUserRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | - **updateUserRequest** | [**UpdateUserRequest**](UpdateUserRequest.md) | The updated user model. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateUserConfiguration** -```swift - open class func updateUserConfiguration(userId: String, updateUserConfigurationRequest: UpdateUserConfigurationRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates a user configuration. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. -let updateUserConfigurationRequest = UpdateUserConfiguration_request(audioLanguagePreference: "audioLanguagePreference_example", playDefaultAudioTrack: false, subtitleLanguagePreference: "subtitleLanguagePreference_example", displayMissingEpisodes: false, groupedFolders: ["groupedFolders_example"], subtitleMode: SubtitlePlaybackMode(), displayCollectionsView: false, enableLocalPassword: false, orderedViews: ["orderedViews_example"], latestItemsExcludes: ["latestItemsExcludes_example"], myMediaExcludes: ["myMediaExcludes_example"], hidePlayedInLatest: false, rememberAudioSelections: false, rememberSubtitleSelections: false, enableNextEpisodeAutoPlay: false) // UpdateUserConfigurationRequest | The new user configuration. - -// Updates a user configuration. -UserAPI.updateUserConfiguration(userId: userId, updateUserConfigurationRequest: updateUserConfigurationRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | - **updateUserConfigurationRequest** | [**UpdateUserConfigurationRequest**](UpdateUserConfigurationRequest.md) | The new user configuration. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateUserEasyPassword** -```swift - open class func updateUserEasyPassword(userId: String, updateUserEasyPasswordRequest: UpdateUserEasyPasswordRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates a user's easy password. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. -let updateUserEasyPasswordRequest = UpdateUserEasyPassword_request(newPassword: "newPassword_example", newPw: "newPw_example", resetPassword: false) // UpdateUserEasyPasswordRequest | The M:Jellyfin.Api.Controllers.UserController.UpdateUserEasyPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserEasyPassword) request. - -// Updates a user's easy password. -UserAPI.updateUserEasyPassword(userId: userId, updateUserEasyPasswordRequest: updateUserEasyPasswordRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | - **updateUserEasyPasswordRequest** | [**UpdateUserEasyPasswordRequest**](UpdateUserEasyPasswordRequest.md) | The M:Jellyfin.Api.Controllers.UserController.UpdateUserEasyPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserEasyPassword) request. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateUserPassword** -```swift - open class func updateUserPassword(userId: String, updateUserPasswordRequest: UpdateUserPasswordRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates a user's password. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. -let updateUserPasswordRequest = UpdateUserPassword_request(currentPassword: "currentPassword_example", currentPw: "currentPw_example", newPw: "newPw_example", resetPassword: false) // UpdateUserPasswordRequest | The M:Jellyfin.Api.Controllers.UserController.UpdateUserPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserPassword) request. - -// Updates a user's password. -UserAPI.updateUserPassword(userId: userId, updateUserPasswordRequest: updateUserPasswordRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | - **updateUserPasswordRequest** | [**UpdateUserPasswordRequest**](UpdateUserPasswordRequest.md) | The M:Jellyfin.Api.Controllers.UserController.UpdateUserPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserPassword) request. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateUserPolicy** -```swift - open class func updateUserPolicy(userId: String, updateUserPolicyRequest: UpdateUserPolicyRequest, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Updates a user policy. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | The user id. -let updateUserPolicyRequest = UpdateUserPolicy_request(isAdministrator: false, isHidden: false, isDisabled: false, maxParentalRating: 123, blockedTags: ["blockedTags_example"], enableUserPreferenceAccess: false, accessSchedules: [AccessSchedule(id: 123, userId: "userId_example", dayOfWeek: DynamicDayOfWeek(), startHour: 123, endHour: 123)], blockUnratedItems: [UnratedItem()], enableRemoteControlOfOtherUsers: false, enableSharedDeviceControl: false, enableRemoteAccess: false, enableLiveTvManagement: false, enableLiveTvAccess: false, enableMediaPlayback: false, enableAudioPlaybackTranscoding: false, enableVideoPlaybackTranscoding: false, enablePlaybackRemuxing: false, forceRemoteSourceTranscoding: false, enableContentDeletion: false, enableContentDeletionFromFolders: ["enableContentDeletionFromFolders_example"], enableContentDownloading: false, enableSyncTranscoding: false, enableMediaConversion: false, enabledDevices: ["enabledDevices_example"], enableAllDevices: false, enabledChannels: ["enabledChannels_example"], enableAllChannels: false, enabledFolders: ["enabledFolders_example"], enableAllFolders: false, invalidLoginAttemptCount: 123, loginAttemptsBeforeLockout: 123, maxActiveSessions: 123, enablePublicSharing: false, blockedMediaFolders: ["blockedMediaFolders_example"], blockedChannels: ["blockedChannels_example"], remoteClientBitrateLimit: 123, authenticationProviderId: "authenticationProviderId_example", passwordResetProviderId: "passwordResetProviderId_example", syncPlayAccess: SyncPlayUserAccessType()) // UpdateUserPolicyRequest | The new user policy. - -// Updates a user policy. -UserAPI.updateUserPolicy(userId: userId, updateUserPolicyRequest: updateUserPolicyRequest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | The user id. | - **updateUserPolicyRequest** | [**UpdateUserPolicyRequest**](UpdateUserPolicyRequest.md) | The new user policy. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: application/json, text/json, application/_*+json - - **Accept**: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/UserConfiguration.md b/docs/UserConfiguration.md deleted file mode 100644 index f9a72939b..000000000 --- a/docs/UserConfiguration.md +++ /dev/null @@ -1,24 +0,0 @@ -# UserConfiguration - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**audioLanguagePreference** | **String** | Gets or sets the audio language preference. | [optional] -**playDefaultAudioTrack** | **Bool** | Gets or sets a value indicating whether [play default audio track]. | [optional] -**subtitleLanguagePreference** | **String** | Gets or sets the subtitle language preference. | [optional] -**displayMissingEpisodes** | **Bool** | | [optional] -**groupedFolders** | **[String]** | | [optional] -**subtitleMode** | [**SubtitlePlaybackMode**](SubtitlePlaybackMode.md) | An enum representing a subtitle playback mode. | [optional] -**displayCollectionsView** | **Bool** | | [optional] -**enableLocalPassword** | **Bool** | | [optional] -**orderedViews** | **[String]** | | [optional] -**latestItemsExcludes** | **[String]** | | [optional] -**myMediaExcludes** | **[String]** | | [optional] -**hidePlayedInLatest** | **Bool** | | [optional] -**rememberAudioSelections** | **Bool** | | [optional] -**rememberSubtitleSelections** | **Bool** | | [optional] -**enableNextEpisodeAutoPlay** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UserDto.md b/docs/UserDto.md deleted file mode 100644 index 5ac368bb5..000000000 --- a/docs/UserDto.md +++ /dev/null @@ -1,23 +0,0 @@ -# UserDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**serverId** | **String** | Gets or sets the server identifier. | [optional] -**serverName** | **String** | Gets or sets the name of the server. This is not used by the server and is for client-side usage only. | [optional] -**id** | **String** | Gets or sets the id. | [optional] -**primaryImageTag** | **String** | Gets or sets the primary image tag. | [optional] -**hasPassword** | **Bool** | Gets or sets a value indicating whether this instance has password. | [optional] -**hasConfiguredPassword** | **Bool** | Gets or sets a value indicating whether this instance has configured password. | [optional] -**hasConfiguredEasyPassword** | **Bool** | Gets or sets a value indicating whether this instance has configured easy password. | [optional] -**enableAutoLogin** | **Bool** | Gets or sets whether async login is enabled or not. | [optional] -**lastLoginDate** | **Date** | Gets or sets the last login date. | [optional] -**lastActivityDate** | **Date** | Gets or sets the last activity date. | [optional] -**configuration** | [**UserDtoConfiguration**](UserDtoConfiguration.md) | | [optional] -**policy** | [**UserDtoPolicy**](UserDtoPolicy.md) | | [optional] -**primaryImageAspectRatio** | **Double** | Gets or sets the primary image aspect ratio. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UserDtoConfiguration.md b/docs/UserDtoConfiguration.md deleted file mode 100644 index 51199c6b1..000000000 --- a/docs/UserDtoConfiguration.md +++ /dev/null @@ -1,24 +0,0 @@ -# UserDtoConfiguration - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**audioLanguagePreference** | **String** | Gets or sets the audio language preference. | [optional] -**playDefaultAudioTrack** | **Bool** | Gets or sets a value indicating whether [play default audio track]. | [optional] -**subtitleLanguagePreference** | **String** | Gets or sets the subtitle language preference. | [optional] -**displayMissingEpisodes** | **Bool** | | [optional] -**groupedFolders** | **[String]** | | [optional] -**subtitleMode** | [**SubtitlePlaybackMode**](SubtitlePlaybackMode.md) | An enum representing a subtitle playback mode. | [optional] -**displayCollectionsView** | **Bool** | | [optional] -**enableLocalPassword** | **Bool** | | [optional] -**orderedViews** | **[String]** | | [optional] -**latestItemsExcludes** | **[String]** | | [optional] -**myMediaExcludes** | **[String]** | | [optional] -**hidePlayedInLatest** | **Bool** | | [optional] -**rememberAudioSelections** | **Bool** | | [optional] -**rememberSubtitleSelections** | **Bool** | | [optional] -**enableNextEpisodeAutoPlay** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UserDtoPolicy.md b/docs/UserDtoPolicy.md deleted file mode 100644 index d1f5fe9d3..000000000 --- a/docs/UserDtoPolicy.md +++ /dev/null @@ -1,48 +0,0 @@ -# UserDtoPolicy - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**isAdministrator** | **Bool** | Gets or sets a value indicating whether this instance is administrator. | [optional] -**isHidden** | **Bool** | Gets or sets a value indicating whether this instance is hidden. | [optional] -**isDisabled** | **Bool** | Gets or sets a value indicating whether this instance is disabled. | [optional] -**maxParentalRating** | **Int** | Gets or sets the max parental rating. | [optional] -**blockedTags** | **[String]** | | [optional] -**enableUserPreferenceAccess** | **Bool** | | [optional] -**accessSchedules** | [AccessSchedule] | | [optional] -**blockUnratedItems** | [UnratedItem] | | [optional] -**enableRemoteControlOfOtherUsers** | **Bool** | | [optional] -**enableSharedDeviceControl** | **Bool** | | [optional] -**enableRemoteAccess** | **Bool** | | [optional] -**enableLiveTvManagement** | **Bool** | | [optional] -**enableLiveTvAccess** | **Bool** | | [optional] -**enableMediaPlayback** | **Bool** | | [optional] -**enableAudioPlaybackTranscoding** | **Bool** | | [optional] -**enableVideoPlaybackTranscoding** | **Bool** | | [optional] -**enablePlaybackRemuxing** | **Bool** | | [optional] -**forceRemoteSourceTranscoding** | **Bool** | | [optional] -**enableContentDeletion** | **Bool** | | [optional] -**enableContentDeletionFromFolders** | **[String]** | | [optional] -**enableContentDownloading** | **Bool** | | [optional] -**enableSyncTranscoding** | **Bool** | Gets or sets a value indicating whether [enable synchronize]. | [optional] -**enableMediaConversion** | **Bool** | | [optional] -**enabledDevices** | **[String]** | | [optional] -**enableAllDevices** | **Bool** | | [optional] -**enabledChannels** | **[String]** | | [optional] -**enableAllChannels** | **Bool** | | [optional] -**enabledFolders** | **[String]** | | [optional] -**enableAllFolders** | **Bool** | | [optional] -**invalidLoginAttemptCount** | **Int** | | [optional] -**loginAttemptsBeforeLockout** | **Int** | | [optional] -**maxActiveSessions** | **Int** | | [optional] -**enablePublicSharing** | **Bool** | | [optional] -**blockedMediaFolders** | **[String]** | | [optional] -**blockedChannels** | **[String]** | | [optional] -**remoteClientBitrateLimit** | **Int** | | [optional] -**authenticationProviderId** | **String** | | [optional] -**passwordResetProviderId** | **String** | | [optional] -**syncPlayAccess** | [**SyncPlayUserAccessType**](SyncPlayUserAccessType.md) | Enum SyncPlayUserAccessType. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UserItemDataDto.md b/docs/UserItemDataDto.md deleted file mode 100644 index 38a7cf4ae..000000000 --- a/docs/UserItemDataDto.md +++ /dev/null @@ -1,20 +0,0 @@ -# UserItemDataDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**rating** | **Double** | Gets or sets the rating. | [optional] -**playedPercentage** | **Double** | Gets or sets the played percentage. | [optional] -**unplayedItemCount** | **Int** | Gets or sets the unplayed item count. | [optional] -**playbackPositionTicks** | **Int64** | Gets or sets the playback position ticks. | [optional] -**playCount** | **Int** | Gets or sets the play count. | [optional] -**isFavorite** | **Bool** | Gets or sets a value indicating whether this instance is favorite. | [optional] -**likes** | **Bool** | Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes. | [optional] -**lastPlayedDate** | **Date** | Gets or sets the last played date. | [optional] -**played** | **Bool** | Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played. | [optional] -**key** | **String** | Gets or sets the key. | [optional] -**itemId** | **String** | Gets or sets the item identifier. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UserLibraryAPI.md b/docs/UserLibraryAPI.md deleted file mode 100644 index 95f6b4fb5..000000000 --- a/docs/UserLibraryAPI.md +++ /dev/null @@ -1,536 +0,0 @@ -# UserLibraryAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**deleteUserItemRating**](UserLibraryAPI.md#deleteuseritemrating) | **DELETE** /Users/{userId}/Items/{itemId}/Rating | Deletes a user's saved personal rating for an item. -[**getIntros**](UserLibraryAPI.md#getintros) | **GET** /Users/{userId}/Items/{itemId}/Intros | Gets intros to play before the main media item plays. -[**getItem**](UserLibraryAPI.md#getitem) | **GET** /Users/{userId}/Items/{itemId} | Gets an item from a user's library. -[**getLatestMedia**](UserLibraryAPI.md#getlatestmedia) | **GET** /Users/{userId}/Items/Latest | Gets latest media. -[**getLocalTrailers**](UserLibraryAPI.md#getlocaltrailers) | **GET** /Users/{userId}/Items/{itemId}/LocalTrailers | Gets local trailers for an item. -[**getRootFolder**](UserLibraryAPI.md#getrootfolder) | **GET** /Users/{userId}/Items/Root | Gets the root folder from a user's library. -[**getSpecialFeatures**](UserLibraryAPI.md#getspecialfeatures) | **GET** /Users/{userId}/Items/{itemId}/SpecialFeatures | Gets special features for an item. -[**markFavoriteItem**](UserLibraryAPI.md#markfavoriteitem) | **POST** /Users/{userId}/FavoriteItems/{itemId} | Marks an item as a favorite. -[**unmarkFavoriteItem**](UserLibraryAPI.md#unmarkfavoriteitem) | **DELETE** /Users/{userId}/FavoriteItems/{itemId} | Unmarks item as a favorite. -[**updateUserItemRating**](UserLibraryAPI.md#updateuseritemrating) | **POST** /Users/{userId}/Items/{itemId}/Rating | Updates a user's rating for an item. - - -# **deleteUserItemRating** -```swift - open class func deleteUserItemRating(userId: String, itemId: String, completion: @escaping (_ data: UserItemDataDto?, _ error: Error?) -> Void) -``` - -Deletes a user's saved personal rating for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. - -// Deletes a user's saved personal rating for an item. -UserLibraryAPI.deleteUserItemRating(userId: userId, itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - -### Return type - -[**UserItemDataDto**](UserItemDataDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getIntros** -```swift - open class func getIntros(userId: String, itemId: String, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets intros to play before the main media item plays. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. - -// Gets intros to play before the main media item plays. -UserLibraryAPI.getIntros(userId: userId, itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getItem** -```swift - open class func getItem(userId: String, itemId: String, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Gets an item from a user's library. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. - -// Gets an item from a user's library. -UserLibraryAPI.getItem(userId: userId, itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLatestMedia** -```swift - open class func getLatestMedia(userId: String, parentId: String? = nil, fields: [ItemFields]? = nil, includeItemTypes: [BaseItemKind]? = nil, isPlayed: Bool? = nil, enableImages: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, enableUserData: Bool? = nil, limit: Int? = nil, groupItems: Bool? = nil, completion: @escaping (_ data: [BaseItemDto]?, _ error: Error?) -> Void) -``` - -Gets latest media. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. (optional) -let isPlayed = true // Bool | Filter by items that are played, or not. (optional) -let enableImages = true // Bool | Optional. include image information in output. (optional) -let imageTypeLimit = 987 // Int | Optional. the max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let enableUserData = true // Bool | Optional. include user data. (optional) -let limit = 987 // Int | Return item limit. (optional) (default to 20) -let groupItems = true // Bool | Whether or not to group items into a parent container. (optional) (default to true) - -// Gets latest media. -UserLibraryAPI.getLatestMedia(userId: userId, parentId: parentId, fields: fields, includeItemTypes: includeItemTypes, isPlayed: isPlayed, enableImages: enableImages, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, enableUserData: enableUserData, limit: limit, groupItems: groupItems) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited. | [optional] - **isPlayed** | **Bool** | Filter by items that are played, or not. | [optional] - **enableImages** | **Bool** | Optional. include image information in output. | [optional] - **imageTypeLimit** | **Int** | Optional. the max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **enableUserData** | **Bool** | Optional. include user data. | [optional] - **limit** | **Int** | Return item limit. | [optional] [default to 20] - **groupItems** | **Bool** | Whether or not to group items into a parent container. | [optional] [default to true] - -### Return type - -[**[BaseItemDto]**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getLocalTrailers** -```swift - open class func getLocalTrailers(userId: String, itemId: String, completion: @escaping (_ data: [BaseItemDto]?, _ error: Error?) -> Void) -``` - -Gets local trailers for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. - -// Gets local trailers for an item. -UserLibraryAPI.getLocalTrailers(userId: userId, itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - -### Return type - -[**[BaseItemDto]**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getRootFolder** -```swift - open class func getRootFolder(userId: String, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Gets the root folder from a user's library. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. - -// Gets the root folder from a user's library. -UserLibraryAPI.getRootFolder(userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getSpecialFeatures** -```swift - open class func getSpecialFeatures(userId: String, itemId: String, completion: @escaping (_ data: [BaseItemDto]?, _ error: Error?) -> Void) -``` - -Gets special features for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. - -// Gets special features for an item. -UserLibraryAPI.getSpecialFeatures(userId: userId, itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - -### Return type - -[**[BaseItemDto]**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **markFavoriteItem** -```swift - open class func markFavoriteItem(userId: String, itemId: String, completion: @escaping (_ data: UserItemDataDto?, _ error: Error?) -> Void) -``` - -Marks an item as a favorite. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. - -// Marks an item as a favorite. -UserLibraryAPI.markFavoriteItem(userId: userId, itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - -### Return type - -[**UserItemDataDto**](UserItemDataDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **unmarkFavoriteItem** -```swift - open class func unmarkFavoriteItem(userId: String, itemId: String, completion: @escaping (_ data: UserItemDataDto?, _ error: Error?) -> Void) -``` - -Unmarks item as a favorite. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. - -// Unmarks item as a favorite. -UserLibraryAPI.unmarkFavoriteItem(userId: userId, itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - -### Return type - -[**UserItemDataDto**](UserItemDataDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **updateUserItemRating** -```swift - open class func updateUserItemRating(userId: String, itemId: String, likes: Bool? = nil, completion: @escaping (_ data: UserItemDataDto?, _ error: Error?) -> Void) -``` - -Updates a user's rating for an item. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let itemId = "itemId_example" // String | Item id. -let likes = true // Bool | Whether this M:Jellyfin.Api.Controllers.UserLibraryController.UpdateUserItemRating(System.Guid,System.Guid,System.Nullable{System.Boolean}) is likes. (optional) - -// Updates a user's rating for an item. -UserLibraryAPI.updateUserItemRating(userId: userId, itemId: itemId, likes: likes) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **itemId** | **String** | Item id. | - **likes** | **Bool** | Whether this M:Jellyfin.Api.Controllers.UserLibraryController.UpdateUserItemRating(System.Guid,System.Guid,System.Nullable{System.Boolean}) is likes. | [optional] - -### Return type - -[**UserItemDataDto**](UserItemDataDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/UserPolicy.md b/docs/UserPolicy.md deleted file mode 100644 index 586922d58..000000000 --- a/docs/UserPolicy.md +++ /dev/null @@ -1,48 +0,0 @@ -# UserPolicy - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**isAdministrator** | **Bool** | Gets or sets a value indicating whether this instance is administrator. | [optional] -**isHidden** | **Bool** | Gets or sets a value indicating whether this instance is hidden. | [optional] -**isDisabled** | **Bool** | Gets or sets a value indicating whether this instance is disabled. | [optional] -**maxParentalRating** | **Int** | Gets or sets the max parental rating. | [optional] -**blockedTags** | **[String]** | | [optional] -**enableUserPreferenceAccess** | **Bool** | | [optional] -**accessSchedules** | [AccessSchedule] | | [optional] -**blockUnratedItems** | [UnratedItem] | | [optional] -**enableRemoteControlOfOtherUsers** | **Bool** | | [optional] -**enableSharedDeviceControl** | **Bool** | | [optional] -**enableRemoteAccess** | **Bool** | | [optional] -**enableLiveTvManagement** | **Bool** | | [optional] -**enableLiveTvAccess** | **Bool** | | [optional] -**enableMediaPlayback** | **Bool** | | [optional] -**enableAudioPlaybackTranscoding** | **Bool** | | [optional] -**enableVideoPlaybackTranscoding** | **Bool** | | [optional] -**enablePlaybackRemuxing** | **Bool** | | [optional] -**forceRemoteSourceTranscoding** | **Bool** | | [optional] -**enableContentDeletion** | **Bool** | | [optional] -**enableContentDeletionFromFolders** | **[String]** | | [optional] -**enableContentDownloading** | **Bool** | | [optional] -**enableSyncTranscoding** | **Bool** | Gets or sets a value indicating whether [enable synchronize]. | [optional] -**enableMediaConversion** | **Bool** | | [optional] -**enabledDevices** | **[String]** | | [optional] -**enableAllDevices** | **Bool** | | [optional] -**enabledChannels** | **[String]** | | [optional] -**enableAllChannels** | **Bool** | | [optional] -**enabledFolders** | **[String]** | | [optional] -**enableAllFolders** | **Bool** | | [optional] -**invalidLoginAttemptCount** | **Int** | | [optional] -**loginAttemptsBeforeLockout** | **Int** | | [optional] -**maxActiveSessions** | **Int** | | [optional] -**enablePublicSharing** | **Bool** | | [optional] -**blockedMediaFolders** | **[String]** | | [optional] -**blockedChannels** | **[String]** | | [optional] -**remoteClientBitrateLimit** | **Int** | | [optional] -**authenticationProviderId** | **String** | | [optional] -**passwordResetProviderId** | **String** | | [optional] -**syncPlayAccess** | [**SyncPlayUserAccessType**](SyncPlayUserAccessType.md) | Enum SyncPlayUserAccessType. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/UserViewsAPI.md b/docs/UserViewsAPI.md deleted file mode 100644 index 770fa3391..000000000 --- a/docs/UserViewsAPI.md +++ /dev/null @@ -1,112 +0,0 @@ -# UserViewsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getGroupingOptions**](UserViewsAPI.md#getgroupingoptions) | **GET** /Users/{userId}/GroupingOptions | Get user view grouping options. -[**getUserViews**](UserViewsAPI.md#getuserviews) | **GET** /Users/{userId}/Views | Get user views. - - -# **getGroupingOptions** -```swift - open class func getGroupingOptions(userId: String, completion: @escaping (_ data: [SpecialViewOptionDto]?, _ error: Error?) -> Void) -``` - -Get user view grouping options. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. - -// Get user view grouping options. -UserViewsAPI.getGroupingOptions(userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - -### Return type - -[**[SpecialViewOptionDto]**](SpecialViewOptionDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getUserViews** -```swift - open class func getUserViews(userId: String, includeExternalContent: Bool? = nil, presetViews: [String]? = nil, includeHidden: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Get user views. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let userId = "userId_example" // String | User id. -let includeExternalContent = true // Bool | Whether or not to include external views such as channels or live tv. (optional) -let presetViews = ["inner_example"] // [String] | Preset views. (optional) -let includeHidden = true // Bool | Whether or not to include hidden content. (optional) (default to false) - -// Get user views. -UserViewsAPI.getUserViews(userId: userId, includeExternalContent: includeExternalContent, presetViews: presetViews, includeHidden: includeHidden) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **userId** | **String** | User id. | - **includeExternalContent** | **Bool** | Whether or not to include external views such as channels or live tv. | [optional] - **presetViews** | [**[String]**](String.md) | Preset views. | [optional] - **includeHidden** | **Bool** | Whether or not to include hidden content. | [optional] [default to false] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/UtcTimeResponse.md b/docs/UtcTimeResponse.md deleted file mode 100644 index 894fc6b2b..000000000 --- a/docs/UtcTimeResponse.md +++ /dev/null @@ -1,11 +0,0 @@ -# UtcTimeResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**requestReceptionTime** | **Date** | Gets the UTC time when request has been received. | [optional] -**responseTransmissionTime** | **Date** | Gets the UTC time when response has been sent. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ValidatePathDto.md b/docs/ValidatePathDto.md deleted file mode 100644 index 70b731cf5..000000000 --- a/docs/ValidatePathDto.md +++ /dev/null @@ -1,12 +0,0 @@ -# ValidatePathDto - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**validateWritable** | **Bool** | Gets or sets a value indicating whether validate if path is writable. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**isFile** | **Bool** | Gets or sets is path file. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ValidatePathRequest.md b/docs/ValidatePathRequest.md deleted file mode 100644 index 02fe7dbae..000000000 --- a/docs/ValidatePathRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# ValidatePathRequest - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**validateWritable** | **Bool** | Gets or sets a value indicating whether validate if path is writable. | [optional] -**path** | **String** | Gets or sets the path. | [optional] -**isFile** | **Bool** | Gets or sets is path file. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/Version.md b/docs/Version.md deleted file mode 100644 index db7ba0fa6..000000000 --- a/docs/Version.md +++ /dev/null @@ -1,15 +0,0 @@ -# Version - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**major** | **Int** | | [optional] [readonly] -**minor** | **Int** | | [optional] [readonly] -**build** | **Int** | | [optional] [readonly] -**revision** | **Int** | | [optional] [readonly] -**majorRevision** | **Int** | | [optional] [readonly] -**minorRevision** | **Int** | | [optional] [readonly] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/VersionInfo.md b/docs/VersionInfo.md deleted file mode 100644 index 2d763c2f3..000000000 --- a/docs/VersionInfo.md +++ /dev/null @@ -1,18 +0,0 @@ -# VersionInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**version** | **String** | Gets or sets the version. | [optional] -**versionNumber** | **String** | Gets the version as a System.Version. | [optional] [readonly] -**changelog** | **String** | Gets or sets the changelog for this version. | [optional] -**targetAbi** | **String** | Gets or sets the ABI that this version was built against. | [optional] -**sourceUrl** | **String** | Gets or sets the source URL. | [optional] -**checksum** | **String** | Gets or sets a checksum for the binary. | [optional] -**timestamp** | **String** | Gets or sets a timestamp of when the binary was built. | [optional] -**repositoryName** | **String** | Gets or sets the repository name. | [optional] -**repositoryUrl** | **String** | Gets or sets the repository url. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/Video3DFormat.md b/docs/Video3DFormat.md deleted file mode 100644 index 0641c5326..000000000 --- a/docs/Video3DFormat.md +++ /dev/null @@ -1,9 +0,0 @@ -# Video3DFormat - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/VideoAttachmentsAPI.md b/docs/VideoAttachmentsAPI.md deleted file mode 100644 index cfdf379a4..000000000 --- a/docs/VideoAttachmentsAPI.md +++ /dev/null @@ -1,61 +0,0 @@ -# VideoAttachmentsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getAttachment**](VideoAttachmentsAPI.md#getattachment) | **GET** /Videos/{videoId}/{mediaSourceId}/Attachments/{index} | Get video attachment. - - -# **getAttachment** -```swift - open class func getAttachment(videoId: String, mediaSourceId: String, index: Int, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Get video attachment. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let videoId = "videoId_example" // String | Video ID. -let mediaSourceId = "mediaSourceId_example" // String | Media Source ID. -let index = 987 // Int | Attachment Index. - -// Get video attachment. -VideoAttachmentsAPI.getAttachment(videoId: videoId, mediaSourceId: mediaSourceId, index: index) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **videoId** | **String** | Video ID. | - **mediaSourceId** | **String** | Media Source ID. | - **index** | **Int** | Attachment Index. | - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/octet-stream, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/VideoHlsAPI.md b/docs/VideoHlsAPI.md deleted file mode 100644 index 93673df28..000000000 --- a/docs/VideoHlsAPI.md +++ /dev/null @@ -1,159 +0,0 @@ -# VideoHlsAPI - -All URIs are relative to *http://localhost:8096* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getLiveHlsStream**](VideoHlsAPI.md#getlivehlsstream) | **GET** /Videos/{itemId}/live.m3u8 | Gets a hls live stream. - - -# **getLiveHlsStream** -```swift - open class func getLiveHlsStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, enableSubtitlesInManifest: Bool? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a hls live stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = "container_example" // String | The audio container. (optional) -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment lenght. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) -let maxWidth = 987 // Int | Optional. The max width. (optional) -let maxHeight = 987 // Int | Optional. The max height. (optional) -let enableSubtitlesInManifest = true // Bool | Optional. Whether to enable subtitles in the manifest. (optional) - -// Gets a hls live stream. -VideoHlsAPI.getLiveHlsStream(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions, maxWidth: maxWidth, maxHeight: maxHeight, enableSubtitlesInManifest: enableSubtitlesInManifest) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | [**String**](.md) | The item id. | - **container** | **String** | The audio container. | [optional] - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment lenght. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - **maxWidth** | **Int** | Optional. The max width. | [optional] - **maxHeight** | **Int** | Optional. The max height. | [optional] - **enableSubtitlesInManifest** | **Bool** | Optional. Whether to enable subtitles in the manifest. | [optional] - -### Return type - -**URL** - -### Authorization - -[CustomAuthentication](../README.md#CustomAuthentication) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/x-mpegURL - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/VideoType.md b/docs/VideoType.md deleted file mode 100644 index 6ec76abbd..000000000 --- a/docs/VideoType.md +++ /dev/null @@ -1,9 +0,0 @@ -# VideoType - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/VideosAPI.md b/docs/VideosAPI.md deleted file mode 100644 index 54457f7d8..000000000 --- a/docs/VideosAPI.md +++ /dev/null @@ -1,753 +0,0 @@ -# VideosAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**deleteAlternateSources**](VideosAPI.md#deletealternatesources) | **DELETE** /Videos/{itemId}/AlternateSources | Removes alternate video sources. -[**getAdditionalPart**](VideosAPI.md#getadditionalpart) | **GET** /Videos/{itemId}/AdditionalParts | Gets additional parts for a video. -[**getVideoStream**](VideosAPI.md#getvideostream) | **GET** /Videos/{itemId}/stream | Gets a video stream. -[**getVideoStreamByContainer**](VideosAPI.md#getvideostreambycontainer) | **GET** /Videos/{itemId}/stream.{container} | Gets a video stream. -[**headVideoStream**](VideosAPI.md#headvideostream) | **HEAD** /Videos/{itemId}/stream | Gets a video stream. -[**headVideoStreamByContainer**](VideosAPI.md#headvideostreambycontainer) | **HEAD** /Videos/{itemId}/stream.{container} | Gets a video stream. -[**mergeVersions**](VideosAPI.md#mergeversions) | **POST** /Videos/MergeVersions | Merges videos into a single record. - - -# **deleteAlternateSources** -```swift - open class func deleteAlternateSources(itemId: String, completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Removes alternate video sources. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. - -// Removes alternate video sources. -VideosAPI.deleteAlternateSources(itemId: itemId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getAdditionalPart** -```swift - open class func getAdditionalPart(itemId: String, userId: String? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Gets additional parts for a video. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) - -// Gets additional parts for a video. -VideosAPI.getAdditionalPart(itemId: itemId, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getVideoStream** -```swift - open class func getVideoStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a video stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = "container_example" // String | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. (optional) -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let maxWidth = 987 // Int | Optional. The maximum horizontal resolution of the encoded video. (optional) -let maxHeight = 987 // Int | Optional. The maximum vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets a video stream. -VideosAPI.getVideoStream(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | **String** | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. | [optional] - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **maxWidth** | **Int** | Optional. The maximum horizontal resolution of the encoded video. | [optional] - **maxHeight** | **Int** | Optional. The maximum vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: video/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getVideoStreamByContainer** -```swift - open class func getVideoStreamByContainer(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a video stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = "container_example" // String | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let maxWidth = 987 // Int | Optional. The maximum horizontal resolution of the encoded video. (optional) -let maxHeight = 987 // Int | Optional. The maximum vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets a video stream. -VideosAPI.getVideoStreamByContainer(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | **String** | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **maxWidth** | **Int** | Optional. The maximum horizontal resolution of the encoded video. | [optional] - **maxHeight** | **Int** | Optional. The maximum vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: video/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headVideoStream** -```swift - open class func headVideoStream(itemId: String, container: String? = nil, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a video stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = "container_example" // String | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. (optional) -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let maxWidth = 987 // Int | Optional. The maximum horizontal resolution of the encoded video. (optional) -let maxHeight = 987 // Int | Optional. The maximum vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets a video stream. -VideosAPI.headVideoStream(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | **String** | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. | [optional] - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **maxWidth** | **Int** | Optional. The maximum horizontal resolution of the encoded video. | [optional] - **maxHeight** | **Int** | Optional. The maximum vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: video/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **headVideoStreamByContainer** -```swift - open class func headVideoStreamByContainer(itemId: String, container: String, _static: Bool? = nil, params: String? = nil, tag: String? = nil, deviceProfileId: String? = nil, playSessionId: String? = nil, segmentContainer: String? = nil, segmentLength: Int? = nil, minSegments: Int? = nil, mediaSourceId: String? = nil, deviceId: String? = nil, audioCodec: String? = nil, enableAutoStreamCopy: Bool? = nil, allowVideoStreamCopy: Bool? = nil, allowAudioStreamCopy: Bool? = nil, breakOnNonKeyFrames: Bool? = nil, audioSampleRate: Int? = nil, maxAudioBitDepth: Int? = nil, audioBitRate: Int? = nil, audioChannels: Int? = nil, maxAudioChannels: Int? = nil, profile: String? = nil, level: String? = nil, framerate: Float? = nil, maxFramerate: Float? = nil, copyTimestamps: Bool? = nil, startTimeTicks: Int64? = nil, width: Int? = nil, height: Int? = nil, maxWidth: Int? = nil, maxHeight: Int? = nil, videoBitRate: Int? = nil, subtitleStreamIndex: Int? = nil, subtitleMethod: SubtitleDeliveryMethod? = nil, maxRefFrames: Int? = nil, maxVideoBitDepth: Int? = nil, requireAvc: Bool? = nil, deInterlace: Bool? = nil, requireNonAnamorphic: Bool? = nil, transcodingMaxAudioChannels: Int? = nil, cpuCoreLimit: Int? = nil, liveStreamId: String? = nil, enableMpegtsM2TsMode: Bool? = nil, videoCodec: String? = nil, subtitleCodec: String? = nil, transcodeReasons: String? = nil, audioStreamIndex: Int? = nil, videoStreamIndex: Int? = nil, context: EncodingContext? = nil, streamOptions: [String: String]? = nil, completion: @escaping (_ data: URL?, _ error: Error?) -> Void) -``` - -Gets a video stream. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let itemId = "itemId_example" // String | The item id. -let container = "container_example" // String | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. -let _static = true // Bool | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. (optional) -let params = "params_example" // String | The streaming parameters. (optional) -let tag = "tag_example" // String | The tag. (optional) -let deviceProfileId = "deviceProfileId_example" // String | Optional. The dlna device profile id to utilize. (optional) -let playSessionId = "playSessionId_example" // String | The play session id. (optional) -let segmentContainer = "segmentContainer_example" // String | The segment container. (optional) -let segmentLength = 987 // Int | The segment length. (optional) -let minSegments = 987 // Int | The minimum number of segments. (optional) -let mediaSourceId = "mediaSourceId_example" // String | The media version id, if playing an alternate version. (optional) -let deviceId = "deviceId_example" // String | The device id of the client requesting. Used to stop encoding processes when needed. (optional) -let audioCodec = "audioCodec_example" // String | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. (optional) -let enableAutoStreamCopy = true // Bool | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. (optional) -let allowVideoStreamCopy = true // Bool | Whether or not to allow copying of the video stream url. (optional) -let allowAudioStreamCopy = true // Bool | Whether or not to allow copying of the audio stream url. (optional) -let breakOnNonKeyFrames = true // Bool | Optional. Whether to break on non key frames. (optional) -let audioSampleRate = 987 // Int | Optional. Specify a specific audio sample rate, e.g. 44100. (optional) -let maxAudioBitDepth = 987 // Int | Optional. The maximum audio bit depth. (optional) -let audioBitRate = 987 // Int | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. (optional) -let audioChannels = 987 // Int | Optional. Specify a specific number of audio channels to encode to, e.g. 2. (optional) -let maxAudioChannels = 987 // Int | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. (optional) -let profile = "profile_example" // String | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. (optional) -let level = "level_example" // String | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. (optional) -let framerate = 987 // Float | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let maxFramerate = 987 // Float | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. (optional) -let copyTimestamps = true // Bool | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. (optional) -let startTimeTicks = 987 // Int64 | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. (optional) -let width = 987 // Int | Optional. The fixed horizontal resolution of the encoded video. (optional) -let height = 987 // Int | Optional. The fixed vertical resolution of the encoded video. (optional) -let maxWidth = 987 // Int | Optional. The maximum horizontal resolution of the encoded video. (optional) -let maxHeight = 987 // Int | Optional. The maximum vertical resolution of the encoded video. (optional) -let videoBitRate = 987 // Int | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. (optional) -let subtitleStreamIndex = 987 // Int | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. (optional) -let subtitleMethod = SubtitleDeliveryMethod() // SubtitleDeliveryMethod | Optional. Specify the subtitle delivery method. (optional) -let maxRefFrames = 987 // Int | Optional. (optional) -let maxVideoBitDepth = 987 // Int | Optional. The maximum video bit depth. (optional) -let requireAvc = true // Bool | Optional. Whether to require avc. (optional) -let deInterlace = true // Bool | Optional. Whether to deinterlace the video. (optional) -let requireNonAnamorphic = true // Bool | Optional. Whether to require a non anamorphic stream. (optional) -let transcodingMaxAudioChannels = 987 // Int | Optional. The maximum number of audio channels to transcode. (optional) -let cpuCoreLimit = 987 // Int | Optional. The limit of how many cpu cores to use. (optional) -let liveStreamId = "liveStreamId_example" // String | The live stream id. (optional) -let enableMpegtsM2TsMode = true // Bool | Optional. Whether to enable the MpegtsM2Ts mode. (optional) -let videoCodec = "videoCodec_example" // String | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. (optional) -let subtitleCodec = "subtitleCodec_example" // String | Optional. Specify a subtitle codec to encode to. (optional) -let transcodeReasons = "transcodeReasons_example" // String | Optional. The transcoding reason. (optional) -let audioStreamIndex = 987 // Int | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. (optional) -let videoStreamIndex = 987 // Int | Optional. The index of the video stream to use. If omitted the first video stream will be used. (optional) -let context = EncodingContext() // EncodingContext | Optional. The MediaBrowser.Model.Dlna.EncodingContext. (optional) -let streamOptions = "TODO" // [String: String] | Optional. The streaming options. (optional) - -// Gets a video stream. -VideosAPI.headVideoStreamByContainer(itemId: itemId, container: container, _static: _static, params: params, tag: tag, deviceProfileId: deviceProfileId, playSessionId: playSessionId, segmentContainer: segmentContainer, segmentLength: segmentLength, minSegments: minSegments, mediaSourceId: mediaSourceId, deviceId: deviceId, audioCodec: audioCodec, enableAutoStreamCopy: enableAutoStreamCopy, allowVideoStreamCopy: allowVideoStreamCopy, allowAudioStreamCopy: allowAudioStreamCopy, breakOnNonKeyFrames: breakOnNonKeyFrames, audioSampleRate: audioSampleRate, maxAudioBitDepth: maxAudioBitDepth, audioBitRate: audioBitRate, audioChannels: audioChannels, maxAudioChannels: maxAudioChannels, profile: profile, level: level, framerate: framerate, maxFramerate: maxFramerate, copyTimestamps: copyTimestamps, startTimeTicks: startTimeTicks, width: width, height: height, maxWidth: maxWidth, maxHeight: maxHeight, videoBitRate: videoBitRate, subtitleStreamIndex: subtitleStreamIndex, subtitleMethod: subtitleMethod, maxRefFrames: maxRefFrames, maxVideoBitDepth: maxVideoBitDepth, requireAvc: requireAvc, deInterlace: deInterlace, requireNonAnamorphic: requireNonAnamorphic, transcodingMaxAudioChannels: transcodingMaxAudioChannels, cpuCoreLimit: cpuCoreLimit, liveStreamId: liveStreamId, enableMpegtsM2TsMode: enableMpegtsM2TsMode, videoCodec: videoCodec, subtitleCodec: subtitleCodec, transcodeReasons: transcodeReasons, audioStreamIndex: audioStreamIndex, videoStreamIndex: videoStreamIndex, context: context, streamOptions: streamOptions) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **itemId** | **String** | The item id. | - **container** | **String** | The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv. | - **_static** | **Bool** | Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false. | [optional] - **params** | **String** | The streaming parameters. | [optional] - **tag** | **String** | The tag. | [optional] - **deviceProfileId** | **String** | Optional. The dlna device profile id to utilize. | [optional] - **playSessionId** | **String** | The play session id. | [optional] - **segmentContainer** | **String** | The segment container. | [optional] - **segmentLength** | **Int** | The segment length. | [optional] - **minSegments** | **Int** | The minimum number of segments. | [optional] - **mediaSourceId** | **String** | The media version id, if playing an alternate version. | [optional] - **deviceId** | **String** | The device id of the client requesting. Used to stop encoding processes when needed. | [optional] - **audioCodec** | **String** | Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma. | [optional] - **enableAutoStreamCopy** | **Bool** | Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true. | [optional] - **allowVideoStreamCopy** | **Bool** | Whether or not to allow copying of the video stream url. | [optional] - **allowAudioStreamCopy** | **Bool** | Whether or not to allow copying of the audio stream url. | [optional] - **breakOnNonKeyFrames** | **Bool** | Optional. Whether to break on non key frames. | [optional] - **audioSampleRate** | **Int** | Optional. Specify a specific audio sample rate, e.g. 44100. | [optional] - **maxAudioBitDepth** | **Int** | Optional. The maximum audio bit depth. | [optional] - **audioBitRate** | **Int** | Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults. | [optional] - **audioChannels** | **Int** | Optional. Specify a specific number of audio channels to encode to, e.g. 2. | [optional] - **maxAudioChannels** | **Int** | Optional. Specify a maximum number of audio channels to encode to, e.g. 2. | [optional] - **profile** | **String** | Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high. | [optional] - **level** | **String** | Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1. | [optional] - **framerate** | **Float** | Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **maxFramerate** | **Float** | Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements. | [optional] - **copyTimestamps** | **Bool** | Whether or not to copy timestamps when transcoding with an offset. Defaults to false. | [optional] - **startTimeTicks** | **Int64** | Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms. | [optional] - **width** | **Int** | Optional. The fixed horizontal resolution of the encoded video. | [optional] - **height** | **Int** | Optional. The fixed vertical resolution of the encoded video. | [optional] - **maxWidth** | **Int** | Optional. The maximum horizontal resolution of the encoded video. | [optional] - **maxHeight** | **Int** | Optional. The maximum vertical resolution of the encoded video. | [optional] - **videoBitRate** | **Int** | Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults. | [optional] - **subtitleStreamIndex** | **Int** | Optional. The index of the subtitle stream to use. If omitted no subtitles will be used. | [optional] - **subtitleMethod** | [**SubtitleDeliveryMethod**](.md) | Optional. Specify the subtitle delivery method. | [optional] - **maxRefFrames** | **Int** | Optional. | [optional] - **maxVideoBitDepth** | **Int** | Optional. The maximum video bit depth. | [optional] - **requireAvc** | **Bool** | Optional. Whether to require avc. | [optional] - **deInterlace** | **Bool** | Optional. Whether to deinterlace the video. | [optional] - **requireNonAnamorphic** | **Bool** | Optional. Whether to require a non anamorphic stream. | [optional] - **transcodingMaxAudioChannels** | **Int** | Optional. The maximum number of audio channels to transcode. | [optional] - **cpuCoreLimit** | **Int** | Optional. The limit of how many cpu cores to use. | [optional] - **liveStreamId** | **String** | The live stream id. | [optional] - **enableMpegtsM2TsMode** | **Bool** | Optional. Whether to enable the MpegtsM2Ts mode. | [optional] - **videoCodec** | **String** | Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv. | [optional] - **subtitleCodec** | **String** | Optional. Specify a subtitle codec to encode to. | [optional] - **transcodeReasons** | **String** | Optional. The transcoding reason. | [optional] - **audioStreamIndex** | **Int** | Optional. The index of the audio stream to use. If omitted the first audio stream will be used. | [optional] - **videoStreamIndex** | **Int** | Optional. The index of the video stream to use. If omitted the first video stream will be used. | [optional] - **context** | [**EncodingContext**](.md) | Optional. The MediaBrowser.Model.Dlna.EncodingContext. | [optional] - **streamOptions** | [**[String: String]**](String.md) | Optional. The streaming options. | [optional] - -### Return type - -**URL** - -### Authorization - -No authorization required - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: video/_* - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **mergeVersions** -```swift - open class func mergeVersions(ids: [String], completion: @escaping (_ data: Void?, _ error: Error?) -> Void) -``` - -Merges videos into a single record. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let ids = ["inner_example"] // [String] | Item id list. This allows multiple, comma delimited. - -// Merges videos into a single record. -VideosAPI.mergeVersions(ids: ids) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **ids** | [**[String]**](String.md) | Item id list. This allows multiple, comma delimited. | - -### Return type - -Void (empty response body) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/docs/VirtualFolderInfo.md b/docs/VirtualFolderInfo.md deleted file mode 100644 index ec3b1cfa4..000000000 --- a/docs/VirtualFolderInfo.md +++ /dev/null @@ -1,17 +0,0 @@ -# VirtualFolderInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name. | [optional] -**locations** | **[String]** | Gets or sets the locations. | [optional] -**collectionType** | [**CollectionTypeOptions**](CollectionTypeOptions.md) | Gets or sets the type of the collection. | [optional] -**libraryOptions** | [**VirtualFolderInfoLibraryOptions**](VirtualFolderInfoLibraryOptions.md) | | [optional] -**itemId** | **String** | Gets or sets the item identifier. | [optional] -**primaryImageItemId** | **String** | Gets or sets the primary image item identifier. | [optional] -**refreshProgress** | **Double** | | [optional] -**refreshStatus** | **String** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/VirtualFolderInfoLibraryOptions.md b/docs/VirtualFolderInfoLibraryOptions.md deleted file mode 100644 index 60eacdd6a..000000000 --- a/docs/VirtualFolderInfoLibraryOptions.md +++ /dev/null @@ -1,36 +0,0 @@ -# VirtualFolderInfoLibraryOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enablePhotos** | **Bool** | | [optional] -**enableRealtimeMonitor** | **Bool** | | [optional] -**enableChapterImageExtraction** | **Bool** | | [optional] -**extractChapterImagesDuringLibraryScan** | **Bool** | | [optional] -**pathInfos** | [MediaPathInfo] | | [optional] -**saveLocalMetadata** | **Bool** | | [optional] -**enableInternetProviders** | **Bool** | | [optional] -**enableAutomaticSeriesGrouping** | **Bool** | | [optional] -**enableEmbeddedTitles** | **Bool** | | [optional] -**enableEmbeddedEpisodeInfos** | **Bool** | | [optional] -**automaticRefreshIntervalDays** | **Int** | | [optional] -**preferredMetadataLanguage** | **String** | Gets or sets the preferred metadata language. | [optional] -**metadataCountryCode** | **String** | Gets or sets the metadata country code. | [optional] -**seasonZeroDisplayName** | **String** | | [optional] -**metadataSavers** | **[String]** | | [optional] -**disabledLocalMetadataReaders** | **[String]** | | [optional] -**localMetadataReaderOrder** | **[String]** | | [optional] -**disabledSubtitleFetchers** | **[String]** | | [optional] -**subtitleFetcherOrder** | **[String]** | | [optional] -**skipSubtitlesIfEmbeddedSubtitlesPresent** | **Bool** | | [optional] -**skipSubtitlesIfAudioTrackMatches** | **Bool** | | [optional] -**subtitleDownloadLanguages** | **[String]** | | [optional] -**requirePerfectSubtitleMatch** | **Bool** | | [optional] -**saveSubtitlesWithMedia** | **Bool** | | [optional] -**automaticallyAddToCollection** | **Bool** | | [optional] -**allowEmbeddedSubtitles** | [**EmbeddedSubtitleOptions**](EmbeddedSubtitleOptions.md) | An enum representing the options to disable embedded subs. | [optional] -**typeOptions** | [TypeOptions] | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/WakeOnLanInfo.md b/docs/WakeOnLanInfo.md deleted file mode 100644 index 944f4cb11..000000000 --- a/docs/WakeOnLanInfo.md +++ /dev/null @@ -1,11 +0,0 @@ -# WakeOnLanInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**macAddress** | **String** | Gets the MAC address of the device. | [optional] -**port** | **Int** | Gets or sets the wake-on-LAN port. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/XbmcMetadataOptions.md b/docs/XbmcMetadataOptions.md deleted file mode 100644 index e39b93ae8..000000000 --- a/docs/XbmcMetadataOptions.md +++ /dev/null @@ -1,14 +0,0 @@ -# XbmcMetadataOptions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**userId** | **String** | | [optional] -**releaseDateFormat** | **String** | | [optional] -**saveImagePathsInNfo** | **Bool** | | [optional] -**enablePathSubstitution** | **Bool** | | [optional] -**enableExtraThumbsDuplication** | **Bool** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/XmlAttribute.md b/docs/XmlAttribute.md deleted file mode 100644 index 491f992e7..000000000 --- a/docs/XmlAttribute.md +++ /dev/null @@ -1,11 +0,0 @@ -# XmlAttribute - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Gets or sets the name of the attribute. | [optional] -**value** | **String** | Gets or sets the value of the attribute. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/YearsAPI.md b/docs/YearsAPI.md deleted file mode 100644 index 9374ed1d9..000000000 --- a/docs/YearsAPI.md +++ /dev/null @@ -1,136 +0,0 @@ -# YearsAPI - -All URIs are relative to *http://localhost* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**getYear**](YearsAPI.md#getyear) | **GET** /Years/{year} | Gets a year. -[**getYears**](YearsAPI.md#getyears) | **GET** /Years | Get years. - - -# **getYear** -```swift - open class func getYear(year: Int, userId: String? = nil, completion: @escaping (_ data: BaseItemDto?, _ error: Error?) -> Void) -``` - -Gets a year. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let year = 987 // Int | The year. -let userId = "userId_example" // String | Optional. Filter by user id, and attach user data. (optional) - -// Gets a year. -YearsAPI.getYear(year: year, userId: userId) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **year** | **Int** | The year. | - **userId** | **String** | Optional. Filter by user id, and attach user data. | [optional] - -### Return type - -[**BaseItemDto**](BaseItemDto.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **getYears** -```swift - open class func getYears(startIndex: Int? = nil, limit: Int? = nil, sortOrder: [SortOrder]? = nil, parentId: String? = nil, fields: [ItemFields]? = nil, excludeItemTypes: [BaseItemKind]? = nil, includeItemTypes: [BaseItemKind]? = nil, mediaTypes: [String]? = nil, sortBy: [String]? = nil, enableUserData: Bool? = nil, imageTypeLimit: Int? = nil, enableImageTypes: [ImageType]? = nil, userId: String? = nil, recursive: Bool? = nil, enableImages: Bool? = nil, completion: @escaping (_ data: BaseItemDtoQueryResult?, _ error: Error?) -> Void) -``` - -Get years. - -### Example -```swift -// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new -import JellyfinAPI - -let startIndex = 987 // Int | Skips over a given number of items within the results. Use for paging. (optional) -let limit = 987 // Int | Optional. The maximum number of records to return. (optional) -let sortOrder = [SortOrder()] // [SortOrder] | Sort Order - Ascending,Descending. (optional) -let parentId = "parentId_example" // String | Specify this to localize the search to a specific item or folder. Omit to use the root. (optional) -let fields = [ItemFields()] // [ItemFields] | Optional. Specify additional fields of information to return in the output. (optional) -let excludeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be excluded based on item type. This allows multiple, comma delimited. (optional) -let includeItemTypes = [BaseItemKind()] // [BaseItemKind] | Optional. If specified, results will be included based on item type. This allows multiple, comma delimited. (optional) -let mediaTypes = ["inner_example"] // [String] | Optional. Filter by MediaType. Allows multiple, comma delimited. (optional) -let sortBy = ["inner_example"] // [String] | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. (optional) -let enableUserData = true // Bool | Optional. Include user data. (optional) -let imageTypeLimit = 987 // Int | Optional. The max number of images to return, per image type. (optional) -let enableImageTypes = [ImageType()] // [ImageType] | Optional. The image types to include in the output. (optional) -let userId = "userId_example" // String | User Id. (optional) -let recursive = true // Bool | Search recursively. (optional) (default to true) -let enableImages = true // Bool | Optional. Include image information in output. (optional) (default to true) - -// Get years. -YearsAPI.getYears(startIndex: startIndex, limit: limit, sortOrder: sortOrder, parentId: parentId, fields: fields, excludeItemTypes: excludeItemTypes, includeItemTypes: includeItemTypes, mediaTypes: mediaTypes, sortBy: sortBy, enableUserData: enableUserData, imageTypeLimit: imageTypeLimit, enableImageTypes: enableImageTypes, userId: userId, recursive: recursive, enableImages: enableImages) { (response, error) in - guard error == nil else { - print(error) - return - } - - if (response) { - dump(response) - } -} -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **startIndex** | **Int** | Skips over a given number of items within the results. Use for paging. | [optional] - **limit** | **Int** | Optional. The maximum number of records to return. | [optional] - **sortOrder** | [**[SortOrder]**](SortOrder.md) | Sort Order - Ascending,Descending. | [optional] - **parentId** | **String** | Specify this to localize the search to a specific item or folder. Omit to use the root. | [optional] - **fields** | [**[ItemFields]**](ItemFields.md) | Optional. Specify additional fields of information to return in the output. | [optional] - **excludeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be excluded based on item type. This allows multiple, comma delimited. | [optional] - **includeItemTypes** | [**[BaseItemKind]**](BaseItemKind.md) | Optional. If specified, results will be included based on item type. This allows multiple, comma delimited. | [optional] - **mediaTypes** | [**[String]**](String.md) | Optional. Filter by MediaType. Allows multiple, comma delimited. | [optional] - **sortBy** | [**[String]**](String.md) | Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime. | [optional] - **enableUserData** | **Bool** | Optional. Include user data. | [optional] - **imageTypeLimit** | **Int** | Optional. The max number of images to return, per image type. | [optional] - **enableImageTypes** | [**[ImageType]**](ImageType.md) | Optional. The image types to include in the output. | [optional] - **userId** | **String** | User Id. | [optional] - **recursive** | **Bool** | Search recursively. | [optional] [default to true] - **enableImages** | **Bool** | Optional. Include image information in output. | [optional] [default to true] - -### Return type - -[**BaseItemDtoQueryResult**](BaseItemDtoQueryResult.md) - -### Authorization - -[CustomAuthentication](../README.md#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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/git_push.sh b/git_push.sh deleted file mode 100644 index f53a75d4f..000000000 --- a/git_push.sh +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/sh -# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/ -# -# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update" "gitlab.com" - -git_user_id=$1 -git_repo_id=$2 -release_note=$3 -git_host=$4 - -if [ "$git_host" = "" ]; then - git_host="github.com" - echo "[INFO] No command line input provided. Set \$git_host to $git_host" -fi - -if [ "$git_user_id" = "" ]; then - git_user_id="GIT_USER_ID" - echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id" -fi - -if [ "$git_repo_id" = "" ]; then - git_repo_id="GIT_REPO_ID" - echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id" -fi - -if [ "$release_note" = "" ]; then - release_note="Minor update" - echo "[INFO] No command line input provided. Set \$release_note to $release_note" -fi - -# Initialize the local directory as a Git repository -git init - -# Adds the files in the local repository and stages them for commit. -git add . - -# Commits the tracked changes and prepares them to be pushed to a remote repository. -git commit -m "$release_note" - -# Sets the new remote -git_remote=$(git remote) -if [ "$git_remote" = "" ]; then # git remote not defined - - if [ "$GIT_TOKEN" = "" ]; then - echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment." - git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git - else - git remote add origin https://${git_user_id}:"${GIT_TOKEN}"@${git_host}/${git_user_id}/${git_repo_id}.git - fi - -fi - -git pull origin master - -# Pushes (Forces) the changes in the local repository up to the remote repository -echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git" -git push origin master 2>&1 | grep -v 'To https' diff --git a/jellyfin-openapi-stable-edited.json b/jellyfin-openapi-stable-edited.json deleted file mode 100644 index 43fcd0820..000000000 --- a/jellyfin-openapi-stable-edited.json +++ /dev/null @@ -1,55277 +0,0 @@ -{ - "openapi": "3.0.1", - "info": { - "title": "Jellyfin API", - "version": "10.8.0", - "x-jellyfin-version": "10.8.0" - }, - "servers": [ - { - "url": "http://localhost" - } - ], - "paths": { - "/System/ActivityLog/Entries": { - "get": { - "tags": [ - "ActivityLog" - ], - "summary": "Gets activity log entries.", - "operationId": "GetLogEntries", - "parameters": [ - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minDate", - "in": "query", - "description": "Optional. The minimum date. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "hasUserId", - "in": "query", - "description": "Optional. Filter log entries if it has user id, or not.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Activity log returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ActivityLogEntryQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ActivityLogEntryQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ActivityLogEntryQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Auth/Keys": { - "get": { - "tags": [ - "ApiKey" - ], - "summary": "Get all keys.", - "operationId": "GetKeys", - "responses": { - "200": { - "description": "Api keys retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AuthenticationInfoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/AuthenticationInfoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/AuthenticationInfoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "post": { - "tags": [ - "ApiKey" - ], - "summary": "Create a new api key.", - "operationId": "CreateKey", - "parameters": [ - { - "name": "app", - "in": "query", - "description": "Name of the app using the authentication key.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Api key created." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Auth/Keys/{key}": { - "delete": { - "tags": [ - "ApiKey" - ], - "summary": "Remove an api key.", - "operationId": "RevokeKey", - "parameters": [ - { - "name": "key", - "in": "path", - "description": "The access token to delete.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Api key deleted." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Artists": { - "get": { - "tags": [ - "Artists" - ], - "summary": "Gets all artists from a given item, folder, or the entire library.", - "operationId": "GetArtists", - "parameters": [ - { - "name": "minCommunityRating", - "in": "query", - "description": "Optional filter by minimum community rating.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "Optional. Search term.", - "schema": { - "type": "string" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "filters", - "in": "query", - "description": "Optional. Specify additional filters to apply.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFilter" - } - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional filter by items that are marked as favorite, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "mediaTypes", - "in": "query", - "description": "Optional filter by MediaType. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "genres", - "in": "query", - "description": "Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "genreIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "officialRatings", - "in": "query", - "description": "Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "tags", - "in": "query", - "description": "Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "years", - "in": "query", - "description": "Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int32" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional, include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional, the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "person", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified person.", - "schema": { - "type": "string" - } - }, - { - "name": "personIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified person ids.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "personTypes", - "in": "query", - "description": "Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "studios", - "in": "query", - "description": "Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "studioIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "User id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "nameStartsWithOrGreater", - "in": "query", - "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameStartsWith", - "in": "query", - "description": "Optional filter by items whose name is sorted equally than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameLessThan", - "in": "query", - "description": "Optional filter by items whose name is equally or lesser than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Sort Order - Ascending,Descending.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional, include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Total record count.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Artists returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Artists/{name}": { - "get": { - "tags": [ - "Artists" - ], - "summary": "Gets an artist by name.", - "operationId": "GetArtistByName", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Studio name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Artist returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Artists/AlbumArtists": { - "get": { - "tags": [ - "Artists" - ], - "summary": "Gets all album artists from a given item, folder, or the entire library.", - "operationId": "GetAlbumArtists", - "parameters": [ - { - "name": "minCommunityRating", - "in": "query", - "description": "Optional filter by minimum community rating.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "Optional. Search term.", - "schema": { - "type": "string" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "filters", - "in": "query", - "description": "Optional. Specify additional filters to apply.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFilter" - } - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional filter by items that are marked as favorite, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "mediaTypes", - "in": "query", - "description": "Optional filter by MediaType. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "genres", - "in": "query", - "description": "Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "genreIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "officialRatings", - "in": "query", - "description": "Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "tags", - "in": "query", - "description": "Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "years", - "in": "query", - "description": "Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int32" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional, include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional, the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "person", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified person.", - "schema": { - "type": "string" - } - }, - { - "name": "personIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified person ids.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "personTypes", - "in": "query", - "description": "Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "studios", - "in": "query", - "description": "Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "studioIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "User id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "nameStartsWithOrGreater", - "in": "query", - "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameStartsWith", - "in": "query", - "description": "Optional filter by items whose name is sorted equally than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameLessThan", - "in": "query", - "description": "Optional filter by items whose name is equally or lesser than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Sort Order - Ascending,Descending.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional, include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Total record count.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Album artists returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Audio/{itemId}/stream": { - "get": { - "tags": [ - "Audio" - ], - "summary": "Gets an audio stream.", - "operationId": "GetAudioStream", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "query", - "description": "The audio container.", - "schema": { - "type": "string" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Audio stream returned.", - "content": { - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - }, - "head": { - "tags": [ - "Audio" - ], - "summary": "Gets an audio stream.", - "operationId": "HeadAudioStream", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "query", - "description": "The audio container.", - "schema": { - "type": "string" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Audio stream returned.", - "content": { - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - } - }, - "/Audio/{itemId}/stream.{container}": { - "get": { - "tags": [ - "Audio" - ], - "summary": "Gets an audio stream.", - "operationId": "GetAudioStreamByContainer", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "path", - "description": "The audio container.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment lenght.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamporphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Audio stream returned.", - "content": { - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - }, - "head": { - "tags": [ - "Audio" - ], - "summary": "Gets an audio stream.", - "operationId": "HeadAudioStreamByContainer", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "path", - "description": "The audio container.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment lenght.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamporphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Audio stream returned.", - "content": { - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - } - }, - "/Branding/Configuration": { - "get": { - "tags": [ - "Branding" - ], - "summary": "Gets branding configuration.", - "operationId": "GetBrandingOptions", - "responses": { - "200": { - "description": "Branding configuration returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BrandingOptions" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BrandingOptions" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BrandingOptions" - } - } - } - } - } - } - }, - "/Branding/Css": { - "get": { - "tags": [ - "Branding" - ], - "summary": "Gets branding css.", - "operationId": "GetBrandingCss", - "responses": { - "200": { - "description": "Branding css returned.", - "content": { - "text/css": { - "schema": { - "type": "string" - } - }, - "application/json": { - "schema": { - "type": "string" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "string" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "string" - } - } - } - }, - "204": { - "description": "No branding css configured." - } - } - } - }, - "/Branding/Css.css": { - "get": { - "tags": [ - "Branding" - ], - "summary": "Gets branding css.", - "operationId": "GetBrandingCss_2", - "responses": { - "200": { - "description": "Branding css returned.", - "content": { - "text/css": { - "schema": { - "type": "string" - } - }, - "application/json": { - "schema": { - "type": "string" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "string" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "string" - } - } - } - }, - "204": { - "description": "No branding css configured." - } - } - } - }, - "/Channels": { - "get": { - "tags": [ - "Channels" - ], - "summary": "Gets available channels.", - "operationId": "GetChannels", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "User Id to filter by. Use System.Guid.Empty to not filter by user.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "supportsLatestItems", - "in": "query", - "description": "Optional. Filter by channels that support getting latest items.", - "schema": { - "type": "boolean" - } - }, - { - "name": "supportsMediaDeletion", - "in": "query", - "description": "Optional. Filter by channels that support media deletion.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional. Filter by channels that are favorite.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Channels returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Channels/{channelId}/Features": { - "get": { - "tags": [ - "Channels" - ], - "summary": "Get channel features.", - "operationId": "GetChannelFeatures", - "parameters": [ - { - "name": "channelId", - "in": "path", - "description": "Channel id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Channel features returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChannelFeatures" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ChannelFeatures" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ChannelFeatures" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Channels/{channelId}/Items": { - "get": { - "tags": [ - "Channels" - ], - "summary": "Get channel items.", - "operationId": "GetChannelItems", - "parameters": [ - { - "name": "channelId", - "in": "path", - "description": "Channel Id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "folderId", - "in": "query", - "description": "Optional. Folder Id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. User Id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Optional. Sort Order - Ascending,Descending.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - { - "name": "filters", - "in": "query", - "description": "Optional. Specify additional filters to apply.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFilter" - } - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - } - ], - "responses": { - "200": { - "description": "Channel items returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Channels/Features": { - "get": { - "tags": [ - "Channels" - ], - "summary": "Get all channel features.", - "operationId": "GetAllChannelFeatures", - "responses": { - "200": { - "description": "All channel features returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ChannelFeatures" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ChannelFeatures" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ChannelFeatures" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Channels/Items/Latest": { - "get": { - "tags": [ - "Channels" - ], - "summary": "Gets latest channel items.", - "operationId": "GetLatestChannelItems", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "Optional. User Id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "filters", - "in": "query", - "description": "Optional. Specify additional filters to apply.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFilter" - } - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "channelIds", - "in": "query", - "description": "Optional. Specify one or more channel id's, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - } - ], - "responses": { - "200": { - "description": "Latest channel items returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/ClientLog/Document": { - "post": { - "tags": [ - "ClientLog" - ], - "summary": "Upload a document.", - "operationId": "LogFile", - "requestBody": { - "content": { - "text/plain": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "responses": { - "200": { - "description": "Document saved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ClientLogDocumentResponseDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ClientLogDocumentResponseDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ClientLogDocumentResponseDto" - } - } - } - }, - "403": { - "description": "Event logging disabled.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "413": { - "description": "Upload size too large.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Collections": { - "post": { - "tags": [ - "Collection" - ], - "summary": "Creates a new collection.", - "operationId": "CreateCollection", - "parameters": [ - { - "name": "name", - "in": "query", - "description": "The name of the collection.", - "schema": { - "type": "string" - } - }, - { - "name": "ids", - "in": "query", - "description": "Item Ids to add to the collection.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "parentId", - "in": "query", - "description": "Optional. Create the collection within a specific folder.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "isLocked", - "in": "query", - "description": "Whether or not to lock the new collection.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Collection created.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CollectionCreationResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/CollectionCreationResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/CollectionCreationResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Collections/{collectionId}/Items": { - "post": { - "tags": [ - "Collection" - ], - "summary": "Adds items to a collection.", - "operationId": "AddToCollection", - "parameters": [ - { - "name": "collectionId", - "in": "path", - "description": "The collection id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "ids", - "in": "query", - "description": "Item ids, comma delimited.", - "required": true, - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - } - ], - "responses": { - "204": { - "description": "Items added to collection." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "Collection" - ], - "summary": "Removes items from a collection.", - "operationId": "RemoveFromCollection", - "parameters": [ - { - "name": "collectionId", - "in": "path", - "description": "The collection id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "ids", - "in": "query", - "description": "Item ids, comma delimited.", - "required": true, - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - } - ], - "responses": { - "204": { - "description": "Items removed from collection." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/System/Configuration": { - "get": { - "tags": [ - "Configuration" - ], - "summary": "Gets application configuration.", - "operationId": "GetConfiguration", - "responses": { - "200": { - "description": "Application configuration returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServerConfiguration" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ServerConfiguration" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ServerConfiguration" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "Configuration" - ], - "summary": "Updates application configuration.", - "operationId": "UpdateConfiguration", - "requestBody": { - "description": "Configuration.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ServerConfiguration" - } - ], - "description": "Represents the server configuration." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ServerConfiguration" - } - ], - "description": "Represents the server configuration." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ServerConfiguration" - } - ], - "description": "Represents the server configuration." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Configuration updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/System/Configuration/{key}": { - "get": { - "tags": [ - "Configuration" - ], - "summary": "Gets a named configuration.", - "operationId": "GetNamedConfiguration", - "parameters": [ - { - "name": "key", - "in": "path", - "description": "Configuration key.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Configuration returned.", - "content": { - "application/json": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "Configuration" - ], - "summary": "Updates named configuration.", - "operationId": "UpdateNamedConfiguration", - "parameters": [ - { - "name": "key", - "in": "path", - "description": "Configuration key.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "Configuration.", - "content": { - "application/json": { - "schema": { } - }, - "text/json": { - "schema": { } - }, - "application/*+json": { - "schema": { } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Named configuration updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/System/Configuration/MetadataOptions/Default": { - "get": { - "tags": [ - "Configuration" - ], - "summary": "Gets a default MetadataOptions object.", - "operationId": "GetDefaultMetadataOptions", - "responses": { - "200": { - "description": "Metadata options returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/MetadataOptions" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/MetadataOptions" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/MetadataOptions" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/System/MediaEncoder/Path": { - "post": { - "tags": [ - "Configuration" - ], - "summary": "Updates the path to the media encoder.", - "operationId": "UpdateMediaEncoderPath", - "requestBody": { - "description": "Media encoder path form body.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaEncoderPathDto" - } - ], - "description": "Media Encoder Path Dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaEncoderPathDto" - } - ], - "description": "Media Encoder Path Dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaEncoderPathDto" - } - ], - "description": "Media Encoder Path Dto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Media encoder path updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated", - "DefaultAuthorization" - ] - } - ] - } - }, - "/web/ConfigurationPage": { - "get": { - "tags": [ - "Dashboard" - ], - "summary": "Gets a dashboard configuration page.", - "operationId": "GetDashboardConfigurationPage", - "parameters": [ - { - "name": "name", - "in": "query", - "description": "The name of the page.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "ConfigurationPage returned.", - "content": { - "text/html": { - "schema": { - "type": "string", - "format": "binary" - } - }, - "application/x-javascript": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Plugin configuration page not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/web/ConfigurationPages": { - "get": { - "tags": [ - "Dashboard" - ], - "summary": "Gets the configuration pages.", - "operationId": "GetConfigurationPages", - "parameters": [ - { - "name": "enableInMainMenu", - "in": "query", - "description": "Whether to enable in the main menu.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "ConfigurationPages returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ConfigurationPageInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ConfigurationPageInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ConfigurationPageInfo" - } - } - } - } - }, - "404": { - "description": "Server still loading.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Devices": { - "get": { - "tags": [ - "Devices" - ], - "summary": "Get Devices.", - "operationId": "GetDevices", - "parameters": [ - { - "name": "supportsSync", - "in": "query", - "description": "Gets or sets a value indicating whether [supports synchronize].", - "schema": { - "type": "boolean" - } - }, - { - "name": "userId", - "in": "query", - "description": "Gets or sets the user identifier.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Devices retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DeviceInfoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/DeviceInfoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/DeviceInfoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "delete": { - "tags": [ - "Devices" - ], - "summary": "Deletes a device.", - "operationId": "DeleteDevice", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "Device Id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Device deleted." - }, - "404": { - "description": "Device not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Devices/Info": { - "get": { - "tags": [ - "Devices" - ], - "summary": "Get info for a device.", - "operationId": "GetDeviceInfo", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "Device Id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Device info retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DeviceInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/DeviceInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/DeviceInfo" - } - } - } - }, - "404": { - "description": "Device not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Devices/Options": { - "get": { - "tags": [ - "Devices" - ], - "summary": "Get options for a device.", - "operationId": "GetDeviceOptions", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "Device Id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Device options retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DeviceOptions" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/DeviceOptions" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/DeviceOptions" - } - } - } - }, - "404": { - "description": "Device not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "post": { - "tags": [ - "Devices" - ], - "summary": "Update device options.", - "operationId": "UpdateDeviceOptions", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "Device Id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "Device Options.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceOptionsDto" - } - ], - "description": "A dto representing custom options for a device." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceOptionsDto" - } - ], - "description": "A dto representing custom options for a device." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceOptionsDto" - } - ], - "description": "A dto representing custom options for a device." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Device options updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/DisplayPreferences/{displayPreferencesId}": { - "get": { - "tags": [ - "DisplayPreferences" - ], - "summary": "Get Display Preferences.", - "operationId": "GetDisplayPreferences", - "parameters": [ - { - "name": "displayPreferencesId", - "in": "path", - "description": "Display preferences id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "client", - "in": "query", - "description": "Client.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Display preferences retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DisplayPreferencesDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/DisplayPreferencesDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/DisplayPreferencesDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "DisplayPreferences" - ], - "summary": "Update Display Preferences.", - "operationId": "UpdateDisplayPreferences", - "parameters": [ - { - "name": "displayPreferencesId", - "in": "path", - "description": "Display preferences id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "User Id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "client", - "in": "query", - "description": "Client.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "New Display Preferences object.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DisplayPreferencesDto" - } - ], - "description": "Defines the display preferences for any item that supports them (usually Folders)." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DisplayPreferencesDto" - } - ], - "description": "Defines the display preferences for any item that supports them (usually Folders)." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DisplayPreferencesDto" - } - ], - "description": "Defines the display preferences for any item that supports them (usually Folders)." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Display preferences updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Dlna/ProfileInfos": { - "get": { - "tags": [ - "Dlna" - ], - "summary": "Get profile infos.", - "operationId": "GetProfileInfos", - "responses": { - "200": { - "description": "Device profile infos returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/DeviceProfileInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/DeviceProfileInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/DeviceProfileInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Dlna/Profiles": { - "post": { - "tags": [ - "Dlna" - ], - "summary": "Creates a profile.", - "operationId": "CreateProfile", - "requestBody": { - "description": "Device profile.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfile" - } - ], - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfile" - } - ], - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfile" - } - ], - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." - } - } - } - }, - "responses": { - "204": { - "description": "Device profile created." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Dlna/Profiles/{profileId}": { - "get": { - "tags": [ - "Dlna" - ], - "summary": "Gets a single profile.", - "operationId": "GetProfile", - "parameters": [ - { - "name": "profileId", - "in": "path", - "description": "Profile Id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Device profile returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DeviceProfile" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/DeviceProfile" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/DeviceProfile" - } - } - } - }, - "404": { - "description": "Device profile not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "delete": { - "tags": [ - "Dlna" - ], - "summary": "Deletes a profile.", - "operationId": "DeleteProfile", - "parameters": [ - { - "name": "profileId", - "in": "path", - "description": "Profile id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Device profile deleted." - }, - "404": { - "description": "Device profile not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "post": { - "tags": [ - "Dlna" - ], - "summary": "Updates a profile.", - "operationId": "UpdateProfile", - "parameters": [ - { - "name": "profileId", - "in": "path", - "description": "Profile id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "Device profile.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfile" - } - ], - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfile" - } - ], - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfile" - } - ], - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." - } - } - } - }, - "responses": { - "204": { - "description": "Device profile updated." - }, - "404": { - "description": "Device profile not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Dlna/Profiles/Default": { - "get": { - "tags": [ - "Dlna" - ], - "summary": "Gets the default profile.", - "operationId": "GetDefaultProfile", - "responses": { - "200": { - "description": "Default device profile returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DeviceProfile" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/DeviceProfile" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/DeviceProfile" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Dlna/{serverId}/ConnectionManager": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets Dlna media receiver registrar xml.", - "operationId": "GetConnectionManager", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Dlna media receiver registrar xml returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/ConnectionManager/ConnectionManager": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets Dlna media receiver registrar xml.", - "operationId": "GetConnectionManager_2", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Dlna media receiver registrar xml returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/ConnectionManager/ConnectionManager.xml": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets Dlna media receiver registrar xml.", - "operationId": "GetConnectionManager_3", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Dlna media receiver registrar xml returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/ConnectionManager/Control": { - "post": { - "tags": [ - "DlnaServer" - ], - "summary": "Process a connection manager control request.", - "operationId": "ProcessConnectionManagerControlRequest", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Request processed.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/ContentDirectory": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets Dlna content directory xml.", - "operationId": "GetContentDirectory", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Dlna content directory returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/ContentDirectory/ContentDirectory": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets Dlna content directory xml.", - "operationId": "GetContentDirectory_2", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Dlna content directory returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/ContentDirectory/ContentDirectory.xml": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets Dlna content directory xml.", - "operationId": "GetContentDirectory_3", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Dlna content directory returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/ContentDirectory/Control": { - "post": { - "tags": [ - "DlnaServer" - ], - "summary": "Process a content directory control request.", - "operationId": "ProcessContentDirectoryControlRequest", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Request processed.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/description": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Get Description Xml.", - "operationId": "GetDescriptionXml", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Description xml returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/description.xml": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Get Description Xml.", - "operationId": "GetDescriptionXml_2", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Description xml returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/icons/{fileName}": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets a server icon.", - "operationId": "GetIconId", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "fileName", - "in": "path", - "description": "The icon filename.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Request processed.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Not Found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/MediaReceiverRegistrar": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets Dlna media receiver registrar xml.", - "operationId": "GetMediaReceiverRegistrar", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Dlna media receiver registrar xml returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/MediaReceiverRegistrar/Control": { - "post": { - "tags": [ - "DlnaServer" - ], - "summary": "Process a media receiver registrar control request.", - "operationId": "ProcessMediaReceiverRegistrarControlRequest", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Request processed.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets Dlna media receiver registrar xml.", - "operationId": "GetMediaReceiverRegistrar_2", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Dlna media receiver registrar xml returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/{serverId}/MediaReceiverRegistrar/MediaReceiverRegistrar.xml": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets Dlna media receiver registrar xml.", - "operationId": "GetMediaReceiverRegistrar_3", - "parameters": [ - { - "name": "serverId", - "in": "path", - "description": "Server UUID.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Dlna media receiver registrar xml returned.", - "content": { - "text/xml": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Dlna/icons/{fileName}": { - "get": { - "tags": [ - "DlnaServer" - ], - "summary": "Gets a server icon.", - "operationId": "GetIcon", - "parameters": [ - { - "name": "fileName", - "in": "path", - "description": "The icon filename.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Request processed.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Not Found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "503": { - "description": "DLNA is disabled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "AnonymousLanAccessPolicy" - ] - } - ] - } - }, - "/Audio/{itemId}/hls1/{playlistId}/{segmentId}.{container}": { - "get": { - "tags": [ - "DynamicHls" - ], - "summary": "Gets a video stream using HTTP live streaming.", - "operationId": "GetHlsAudioSegment", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "playlistId", - "in": "path", - "description": "The playlist id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "segmentId", - "in": "path", - "description": "The segment id.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "container", - "in": "path", - "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "runtimeTicks", - "in": "query", - "description": "The position of the requested segment in ticks.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "actualSegmentLengthTicks", - "in": "query", - "description": "The length of the requested segment in ticks.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxStreamingBitrate", - "in": "query", - "description": "Optional. The maximum streaming bitrate.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Video stream returned.", - "content": { - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Audio/{itemId}/main.m3u8": { - "get": { - "tags": [ - "DynamicHls" - ], - "summary": "Gets an audio stream using HTTP live streaming.", - "operationId": "GetVariantHlsAudioPlaylist", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxStreamingBitrate", - "in": "query", - "description": "Optional. The maximum streaming bitrate.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vpx, wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Audio stream returned.", - "content": { - "application/x-mpegURL": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Audio/{itemId}/master.m3u8": { - "get": { - "tags": [ - "DynamicHls" - ], - "summary": "Gets an audio hls playlist stream.", - "operationId": "GetMasterHlsAudioPlaylist", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxStreamingBitrate", - "in": "query", - "description": "Optional. The maximum streaming bitrate.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - }, - { - "name": "enableAdaptiveBitrateStreaming", - "in": "query", - "description": "Enable adaptive bitrate streaming.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Audio stream returned.", - "content": { - "application/x-mpegURL": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "head": { - "tags": [ - "DynamicHls" - ], - "summary": "Gets an audio hls playlist stream.", - "operationId": "HeadMasterHlsAudioPlaylist", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxStreamingBitrate", - "in": "query", - "description": "Optional. The maximum streaming bitrate.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - }, - { - "name": "enableAdaptiveBitrateStreaming", - "in": "query", - "description": "Enable adaptive bitrate streaming.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Audio stream returned.", - "content": { - "application/x-mpegURL": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Videos/{itemId}/hls1/{playlistId}/{segmentId}.{container}": { - "get": { - "tags": [ - "DynamicHls" - ], - "summary": "Gets a video stream using HTTP live streaming.", - "operationId": "GetHlsVideoSegment", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "playlistId", - "in": "path", - "description": "The playlist id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "segmentId", - "in": "path", - "description": "The segment id.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "container", - "in": "path", - "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "runtimeTicks", - "in": "query", - "description": "The position of the requested segment in ticks.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "actualSegmentLengthTicks", - "in": "query", - "description": "The length of the requested segment in ticks.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The desired segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. The maximum horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. The maximum vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Video stream returned.", - "content": { - "video/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Videos/{itemId}/live.m3u8": { - "get": { - "tags": [ - "DynamicHls" - ], - "summary": "Gets a hls live stream.", - "operationId": "GetLiveHlsStream", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "query", - "description": "The audio container.", - "schema": { - "type": "string" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment lenght.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. The max width.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. The max height.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableSubtitlesInManifest", - "in": "query", - "description": "Optional. Whether to enable subtitles in the manifest.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Hls live stream retrieved.", - "content": { - "application/x-mpegURL": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Videos/{itemId}/main.m3u8": { - "get": { - "tags": [ - "DynamicHls" - ], - "summary": "Gets a video stream using HTTP live streaming.", - "operationId": "GetVariantHlsVideoPlaylist", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. The maximum horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. The maximum vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Video stream returned.", - "content": { - "application/x-mpegURL": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Videos/{itemId}/master.m3u8": { - "get": { - "tags": [ - "DynamicHls" - ], - "summary": "Gets a video hls playlist stream.", - "operationId": "GetMasterHlsVideoPlaylist", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. The maximum horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. The maximum vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - }, - { - "name": "enableAdaptiveBitrateStreaming", - "in": "query", - "description": "Enable adaptive bitrate streaming.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Video stream returned.", - "content": { - "application/x-mpegURL": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "head": { - "tags": [ - "DynamicHls" - ], - "summary": "Gets a video hls playlist stream.", - "operationId": "HeadMasterHlsVideoPlaylist", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. The maximum horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. The maximum vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - }, - { - "name": "enableAdaptiveBitrateStreaming", - "in": "query", - "description": "Enable adaptive bitrate streaming.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Video stream returned.", - "content": { - "application/x-mpegURL": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Environment/DefaultDirectoryBrowser": { - "get": { - "tags": [ - "Environment" - ], - "summary": "Get Default directory browser.", - "operationId": "GetDefaultDirectoryBrowser", - "responses": { - "200": { - "description": "Default directory browser returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DefaultDirectoryBrowserInfoDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/DefaultDirectoryBrowserInfoDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/DefaultDirectoryBrowserInfoDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Environment/DirectoryContents": { - "get": { - "tags": [ - "Environment" - ], - "summary": "Gets the contents of a given directory in the file system.", - "operationId": "GetDirectoryContents", - "parameters": [ - { - "name": "path", - "in": "query", - "description": "The path.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "includeFiles", - "in": "query", - "description": "An optional filter to include or exclude files from the results. true/false.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "includeDirectories", - "in": "query", - "description": "An optional filter to include or exclude folders from the results. true/false.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Directory contents returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FileSystemEntryInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FileSystemEntryInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FileSystemEntryInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Environment/Drives": { - "get": { - "tags": [ - "Environment" - ], - "summary": "Gets available drives from the server's file system.", - "operationId": "GetDrives", - "responses": { - "200": { - "description": "List of entries returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FileSystemEntryInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FileSystemEntryInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FileSystemEntryInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Environment/NetworkShares": { - "get": { - "tags": [ - "Environment" - ], - "summary": "Gets network paths.", - "operationId": "GetNetworkShares", - "responses": { - "200": { - "description": "Empty array returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FileSystemEntryInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FileSystemEntryInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FileSystemEntryInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "deprecated": true, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Environment/ParentPath": { - "get": { - "tags": [ - "Environment" - ], - "summary": "Gets the parent path of a given path.", - "operationId": "GetParentPath", - "parameters": [ - { - "name": "path", - "in": "query", - "description": "The path.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "type": "string" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "string" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "string" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Environment/ValidatePath": { - "post": { - "tags": [ - "Environment" - ], - "summary": "Validates path.", - "operationId": "ValidatePath", - "requestBody": { - "description": "Validate request object.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ValidatePathDto" - } - ], - "description": "Validate path object." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ValidatePathDto" - } - ], - "description": "Validate path object." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ValidatePathDto" - } - ], - "description": "Validate path object." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Path validated." - }, - "404": { - "description": "Path not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Items/Filters": { - "get": { - "tags": [ - "Filter" - ], - "summary": "Gets legacy query filters.", - "operationId": "GetQueryFiltersLegacy", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "Optional. User id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Optional. Parent id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "mediaTypes", - "in": "query", - "description": "Optional. Filter by MediaType. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - } - ], - "responses": { - "200": { - "description": "Legacy filters retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/QueryFiltersLegacy" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/QueryFiltersLegacy" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/QueryFiltersLegacy" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/Filters2": { - "get": { - "tags": [ - "Filter" - ], - "summary": "Gets query filters.", - "operationId": "GetQueryFilters", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "Optional. User id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Optional. Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "isAiring", - "in": "query", - "description": "Optional. Is item airing.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isMovie", - "in": "query", - "description": "Optional. Is item movie.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSports", - "in": "query", - "description": "Optional. Is item sports.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isKids", - "in": "query", - "description": "Optional. Is item kids.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isNews", - "in": "query", - "description": "Optional. Is item news.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSeries", - "in": "query", - "description": "Optional. Is item series.", - "schema": { - "type": "boolean" - } - }, - { - "name": "recursive", - "in": "query", - "description": "Optional. Search recursive.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Filters retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/QueryFilters" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/QueryFilters" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/QueryFilters" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Genres": { - "get": { - "tags": [ - "Genres" - ], - "summary": "Gets all genres from a given item, folder, or the entire library.", - "operationId": "GetGenres", - "parameters": [ - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "The search term.", - "schema": { - "type": "string" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional filter by items that are marked as favorite, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional, the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "User id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "nameStartsWithOrGreater", - "in": "query", - "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameStartsWith", - "in": "query", - "description": "Optional filter by items whose name is sorted equally than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameLessThan", - "in": "query", - "description": "Optional filter by items whose name is equally or lesser than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Sort Order - Ascending,Descending.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional, include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Optional. Include total record count.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Genres returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Genres/{genreName}": { - "get": { - "tags": [ - "Genres" - ], - "summary": "Gets a genre, by name.", - "operationId": "GetGenre", - "parameters": [ - { - "name": "genreName", - "in": "path", - "description": "The genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "The user id.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Genres returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Audio/{itemId}/hls/{segmentId}/stream.aac": { - "get": { - "tags": [ - "HlsSegment" - ], - "summary": "Gets the specified audio segment for an audio item.", - "operationId": "GetHlsAudioSegmentLegacyAac", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "segmentId", - "in": "path", - "description": "The segment id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Hls audio segment returned.", - "content": { - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - } - }, - "/Audio/{itemId}/hls/{segmentId}/stream.mp3": { - "get": { - "tags": [ - "HlsSegment" - ], - "summary": "Gets the specified audio segment for an audio item.", - "operationId": "GetHlsAudioSegmentLegacyMp3", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "segmentId", - "in": "path", - "description": "The segment id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Hls audio segment returned.", - "content": { - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - } - }, - "/Videos/{itemId}/hls/{playlistId}/{segmentId}.{segmentContainer}": { - "get": { - "tags": [ - "HlsSegment" - ], - "summary": "Gets a hls video segment.", - "operationId": "GetHlsVideoSegmentLegacy", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "playlistId", - "in": "path", - "description": "The playlist id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "segmentId", - "in": "path", - "description": "The segment id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "path", - "description": "The segment container.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Hls video segment returned.", - "content": { - "video/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Hls segment not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Videos/{itemId}/hls/{playlistId}/stream.m3u8": { - "get": { - "tags": [ - "HlsSegment" - ], - "summary": "Gets a hls video playlist.", - "operationId": "GetHlsPlaylistLegacy", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The video id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "playlistId", - "in": "path", - "description": "The playlist id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Hls video playlist returned.", - "content": { - "application/x-mpegURL": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Videos/ActiveEncodings": { - "delete": { - "tags": [ - "HlsSegment" - ], - "summary": "Stops an active encoding.", - "operationId": "StopEncodingProcess", - "parameters": [ - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Encoding stopped successfully." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Artists/{name}/Images/{imageType}/{imageIndex}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get artist image by name.", - "operationId": "GetArtistImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Artist name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get artist image by name.", - "operationId": "HeadArtistImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Artist name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Branding/Splashscreen": { - "get": { - "tags": [ - "Image" - ], - "summary": "Generates or gets the splashscreen.", - "operationId": "GetSplashscreen", - "parameters": [ - { - "name": "tag", - "in": "query", - "description": "Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "blur", - "in": "query", - "description": "Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "quality", - "in": "query", - "description": "Quality setting, from 0-100.", - "schema": { - "maximum": 100, - "minimum": 0, - "type": "integer", - "format": "int32", - "default": 90 - } - } - ], - "responses": { - "200": { - "description": "Splashscreen returned successfully.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - }, - "post": { - "tags": [ - "Image" - ], - "summary": "Uploads a custom splashscreen.", - "operationId": "UploadCustomSplashscreen", - "requestBody": { - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "responses": { - "204": { - "description": "Successfully uploaded new splashscreen." - }, - "400": { - "description": "Error reading MimeType from uploaded image.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "403": { - "description": "User does not have permission to upload splashscreen..", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Genres/{name}/Images/{imageType}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get genre image by name.", - "operationId": "GetGenreImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get genre image by name.", - "operationId": "HeadGenreImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Genres/{name}/Images/{imageType}/{imageIndex}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get genre image by name.", - "operationId": "GetGenreImageByIndex", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get genre image by name.", - "operationId": "HeadGenreImageByIndex", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Items/{itemId}/Images": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get item image infos.", - "operationId": "GetItemImageInfos", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Item images returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageInfo" - } - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/Images/{imageType}": { - "delete": { - "tags": [ - "Image" - ], - "summary": "Delete an item's image.", - "operationId": "DeleteItemImage", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "The image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "204": { - "description": "Image deleted." - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "post": { - "tags": [ - "Image" - ], - "summary": "Set item image.", - "operationId": "SetItemImage", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - } - ], - "requestBody": { - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "responses": { - "204": { - "description": "Image saved." - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "get": { - "tags": [ - "Image" - ], - "summary": "Gets the item's image.", - "operationId": "GetItemImage", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "format", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Gets the item's image.", - "operationId": "HeadItemImage", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "format", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Items/{itemId}/Images/{imageType}/{imageIndex}": { - "delete": { - "tags": [ - "Image" - ], - "summary": "Delete an item's image.", - "operationId": "DeleteItemImageByIndex", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "The image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "204": { - "description": "Image deleted." - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "post": { - "tags": [ - "Image" - ], - "summary": "Set item image.", - "operationId": "SetItemImageByIndex", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "(Unused) Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "requestBody": { - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "responses": { - "204": { - "description": "Image saved." - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "get": { - "tags": [ - "Image" - ], - "summary": "Gets the item's image.", - "operationId": "GetItemImageByIndex", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "format", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Gets the item's image.", - "operationId": "HeadItemImageByIndex", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "format", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Gets the item's image.", - "operationId": "GetItemImage2", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "maxWidth", - "in": "path", - "description": "The maximum image width to return.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "path", - "description": "The maximum image height to return.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "path", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "format", - "in": "path", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ], - "description": "Enum ImageOutputFormat." - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "percentPlayed", - "in": "path", - "description": "Optional. Percent to render for the percent played overlay.", - "required": true, - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "path", - "description": "Optional. Unplayed count overlay to render.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Gets the item's image.", - "operationId": "HeadItemImage2", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "maxWidth", - "in": "path", - "description": "The maximum image width to return.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "path", - "description": "The maximum image height to return.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "path", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "format", - "in": "path", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ], - "description": "Enum ImageOutputFormat." - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "percentPlayed", - "in": "path", - "description": "Optional. Percent to render for the percent played overlay.", - "required": true, - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "path", - "description": "Optional. Unplayed count overlay to render.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Items/{itemId}/Images/{imageType}/{imageIndex}/Index": { - "post": { - "tags": [ - "Image" - ], - "summary": "Updates the index for an item image.", - "operationId": "UpdateItemImageIndex", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Old image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "newIndex", - "in": "query", - "description": "New image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "204": { - "description": "Image index updated." - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/MusicGenres/{name}/Images/{imageType}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get music genre image by name.", - "operationId": "GetMusicGenreImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Music genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get music genre image by name.", - "operationId": "HeadMusicGenreImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Music genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/MusicGenres/{name}/Images/{imageType}/{imageIndex}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get music genre image by name.", - "operationId": "GetMusicGenreImageByIndex", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Music genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get music genre image by name.", - "operationId": "HeadMusicGenreImageByIndex", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Music genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Persons/{name}/Images/{imageType}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get person image by name.", - "operationId": "GetPersonImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Person name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get person image by name.", - "operationId": "HeadPersonImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Person name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Persons/{name}/Images/{imageType}/{imageIndex}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get person image by name.", - "operationId": "GetPersonImageByIndex", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Person name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get person image by name.", - "operationId": "HeadPersonImageByIndex", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Person name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Studios/{name}/Images/{imageType}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get studio image by name.", - "operationId": "GetStudioImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Studio name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get studio image by name.", - "operationId": "HeadStudioImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Studio name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Studios/{name}/Images/{imageType}/{imageIndex}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get studio image by name.", - "operationId": "GetStudioImageByIndex", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Studio name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get studio image by name.", - "operationId": "HeadStudioImageByIndex", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Studio name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Users/{userId}/Images/{imageType}": { - "post": { - "tags": [ - "Image" - ], - "summary": "Sets the user image.", - "operationId": "PostUserImage", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User Id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "(Unused) Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "index", - "in": "query", - "description": "(Unused) Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "requestBody": { - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "responses": { - "204": { - "description": "Image updated." - }, - "403": { - "description": "User does not have permission to delete the image.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "Image" - ], - "summary": "Delete the user's image.", - "operationId": "DeleteUserImage", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User Id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "(Unused) Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "index", - "in": "query", - "description": "(Unused) Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "204": { - "description": "Image deleted." - }, - "403": { - "description": "User does not have permission to delete the image.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "get": { - "tags": [ - "Image" - ], - "summary": "Get user profile image.", - "operationId": "GetUserImage", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get user profile image.", - "operationId": "HeadUserImage", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - }, - { - "name": "imageIndex", - "in": "query", - "description": "Image index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Users/{userId}/Images/{imageType}/{imageIndex}": { - "get": { - "tags": [ - "Image" - ], - "summary": "Get user profile image.", - "operationId": "GetUserImageByIndex", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - }, - "head": { - "tags": [ - "Image" - ], - "summary": "Get user profile image.", - "operationId": "HeadUserImageByIndex", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageIndex", - "in": "path", - "description": "Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "tag", - "in": "query", - "description": "Optional. Supply the cache tag from the item object to receive strong caching headers.", - "schema": { - "type": "string" - } - }, - { - "name": "format", - "in": "query", - "description": "Determines the output format of the image - original,gif,jpg,png.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageFormat" - } - ] - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "The maximum image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "The maximum image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "percentPlayed", - "in": "query", - "description": "Optional. Percent to render for the percent played overlay.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "unplayedCount", - "in": "query", - "description": "Optional. Unplayed count overlay to render.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "width", - "in": "query", - "description": "The fixed image width to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "The fixed image height to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "quality", - "in": "query", - "description": "Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillWidth", - "in": "query", - "description": "Width of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fillHeight", - "in": "query", - "description": "Height of box to fill.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cropWhitespace", - "in": "query", - "description": "Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "addPlayedIndicator", - "in": "query", - "description": "Optional. Add a played indicator.", - "schema": { - "type": "boolean" - } - }, - { - "name": "blur", - "in": "query", - "description": "Optional. Blur image.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "backgroundColor", - "in": "query", - "description": "Optional. Apply a background color for transparent images.", - "schema": { - "type": "string" - } - }, - { - "name": "foregroundLayer", - "in": "query", - "description": "Optional. Apply a foreground layer on top of the image.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Users/{userId}/Images/{imageType}/{index}": { - "post": { - "tags": [ - "Image" - ], - "summary": "Sets the user image.", - "operationId": "PostUserImageByIndex", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User Id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "(Unused) Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "index", - "in": "path", - "description": "(Unused) Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "requestBody": { - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "responses": { - "204": { - "description": "Image updated." - }, - "403": { - "description": "User does not have permission to delete the image.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "Image" - ], - "summary": "Delete the user's image.", - "operationId": "DeleteUserImageByIndex", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User Id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "imageType", - "in": "path", - "description": "(Unused) Image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "index", - "in": "path", - "description": "(Unused) Image index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "204": { - "description": "Image deleted." - }, - "403": { - "description": "User does not have permission to delete the image.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Images/General": { - "get": { - "tags": [ - "ImageByName" - ], - "summary": "Get all general images.", - "operationId": "GetGeneralImages", - "responses": { - "200": { - "description": "Retrieved list of images.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageByNameInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageByNameInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageByNameInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Images/General/{name}/{type}": { - "get": { - "tags": [ - "ImageByName" - ], - "summary": "Get General Image.", - "operationId": "GetGeneralImage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "The name of the image.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "type", - "in": "path", - "description": "Image Type (primary, backdrop, logo, etc).", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream retrieved.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Image not found.", - "content": { - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Images/MediaInfo": { - "get": { - "tags": [ - "ImageByName" - ], - "summary": "Get all media info images.", - "operationId": "GetMediaInfoImages", - "responses": { - "200": { - "description": "Image list retrieved.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageByNameInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageByNameInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageByNameInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Images/MediaInfo/{theme}/{name}": { - "get": { - "tags": [ - "ImageByName" - ], - "summary": "Get media info image.", - "operationId": "GetMediaInfoImage", - "parameters": [ - { - "name": "theme", - "in": "path", - "description": "The theme to get the image from.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "name", - "in": "path", - "description": "The name of the image.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream retrieved.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Image not found.", - "content": { - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Images/Ratings": { - "get": { - "tags": [ - "ImageByName" - ], - "summary": "Get all general images.", - "operationId": "GetRatingImages", - "responses": { - "200": { - "description": "Retrieved list of images.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageByNameInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageByNameInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageByNameInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Images/Ratings/{theme}/{name}": { - "get": { - "tags": [ - "ImageByName" - ], - "summary": "Get rating image.", - "operationId": "GetRatingImage", - "parameters": [ - { - "name": "theme", - "in": "path", - "description": "The theme to get the image from.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "name", - "in": "path", - "description": "The name of the image.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Image stream retrieved.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Image not found.", - "content": { - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Albums/{id}/InstantMix": { - "get": { - "tags": [ - "InstantMix" - ], - "summary": "Creates an instant playlist based on a given album.", - "operationId": "GetInstantMixFromAlbum", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - } - ], - "responses": { - "200": { - "description": "Instant playlist returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Artists/{id}/InstantMix": { - "get": { - "tags": [ - "InstantMix" - ], - "summary": "Creates an instant playlist based on a given artist.", - "operationId": "GetInstantMixFromArtists", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - } - ], - "responses": { - "200": { - "description": "Instant playlist returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Artists/InstantMix": { - "get": { - "tags": [ - "InstantMix" - ], - "summary": "Creates an instant playlist based on a given artist.", - "operationId": "GetInstantMixFromArtists2", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - } - ], - "responses": { - "200": { - "description": "Instant playlist returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "deprecated": true, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{id}/InstantMix": { - "get": { - "tags": [ - "InstantMix" - ], - "summary": "Creates an instant playlist based on a given item.", - "operationId": "GetInstantMixFromItem", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - } - ], - "responses": { - "200": { - "description": "Instant playlist returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/MusicGenres/{name}/InstantMix": { - "get": { - "tags": [ - "InstantMix" - ], - "summary": "Creates an instant playlist based on a given genre.", - "operationId": "GetInstantMixFromMusicGenreByName", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "The genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - } - ], - "responses": { - "200": { - "description": "Instant playlist returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/MusicGenres/InstantMix": { - "get": { - "tags": [ - "InstantMix" - ], - "summary": "Creates an instant playlist based on a given genre.", - "operationId": "GetInstantMixFromMusicGenreById", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - } - ], - "responses": { - "200": { - "description": "Instant playlist returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Playlists/{id}/InstantMix": { - "get": { - "tags": [ - "InstantMix" - ], - "summary": "Creates an instant playlist based on a given playlist.", - "operationId": "GetInstantMixFromPlaylist", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - } - ], - "responses": { - "200": { - "description": "Instant playlist returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Songs/{id}/InstantMix": { - "get": { - "tags": [ - "InstantMix" - ], - "summary": "Creates an instant playlist based on a given song.", - "operationId": "GetInstantMixFromSong", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - } - ], - "responses": { - "200": { - "description": "Instant playlist returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/ExternalIdInfos": { - "get": { - "tags": [ - "ItemLookup" - ], - "summary": "Get the item's external id info.", - "operationId": "GetExternalIdInfos", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "External id info retrieved.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ExternalIdInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ExternalIdInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ExternalIdInfo" - } - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/RemoteSearch/Apply/{itemId}": { - "post": { - "tags": [ - "ItemLookup" - ], - "summary": "Applies search criteria to an item and refreshes metadata.", - "operationId": "ApplySearchCriteria", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "replaceAllImages", - "in": "query", - "description": "Optional. Whether or not to replace all images. Default: True.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "requestBody": { - "description": "The remote search result.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/RemoteSearchResult" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/RemoteSearchResult" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/RemoteSearchResult" - } - ] - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Item metadata refreshed." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/RemoteSearch/Book": { - "post": { - "tags": [ - "ItemLookup" - ], - "summary": "Get book remote search.", - "operationId": "GetBookRemoteSearchResults", - "requestBody": { - "description": "Remote search query.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BookInfoRemoteSearchQuery" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BookInfoRemoteSearchQuery" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BookInfoRemoteSearchQuery" - } - ] - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Book remote search executed.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/RemoteSearch/BoxSet": { - "post": { - "tags": [ - "ItemLookup" - ], - "summary": "Get box set remote search.", - "operationId": "GetBoxSetRemoteSearchResults", - "requestBody": { - "description": "Remote search query.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BoxSetInfoRemoteSearchQuery" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BoxSetInfoRemoteSearchQuery" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BoxSetInfoRemoteSearchQuery" - } - ] - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Box set remote search executed.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/RemoteSearch/Movie": { - "post": { - "tags": [ - "ItemLookup" - ], - "summary": "Get movie remote search.", - "operationId": "GetMovieRemoteSearchResults", - "requestBody": { - "description": "Remote search query.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MovieInfoRemoteSearchQuery" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MovieInfoRemoteSearchQuery" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MovieInfoRemoteSearchQuery" - } - ] - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Movie remote search executed.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/RemoteSearch/MusicAlbum": { - "post": { - "tags": [ - "ItemLookup" - ], - "summary": "Get music album remote search.", - "operationId": "GetMusicAlbumRemoteSearchResults", - "requestBody": { - "description": "Remote search query.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AlbumInfoRemoteSearchQuery" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AlbumInfoRemoteSearchQuery" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AlbumInfoRemoteSearchQuery" - } - ] - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Music album remote search executed.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/RemoteSearch/MusicArtist": { - "post": { - "tags": [ - "ItemLookup" - ], - "summary": "Get music artist remote search.", - "operationId": "GetMusicArtistRemoteSearchResults", - "requestBody": { - "description": "Remote search query.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ArtistInfoRemoteSearchQuery" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ArtistInfoRemoteSearchQuery" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ArtistInfoRemoteSearchQuery" - } - ] - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Music artist remote search executed.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/RemoteSearch/MusicVideo": { - "post": { - "tags": [ - "ItemLookup" - ], - "summary": "Get music video remote search.", - "operationId": "GetMusicVideoRemoteSearchResults", - "requestBody": { - "description": "Remote search query.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MusicVideoInfoRemoteSearchQuery" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MusicVideoInfoRemoteSearchQuery" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MusicVideoInfoRemoteSearchQuery" - } - ] - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Music video remote search executed.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/RemoteSearch/Person": { - "post": { - "tags": [ - "ItemLookup" - ], - "summary": "Get person remote search.", - "operationId": "GetPersonRemoteSearchResults", - "requestBody": { - "description": "Remote search query.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PersonLookupInfoRemoteSearchQuery" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PersonLookupInfoRemoteSearchQuery" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PersonLookupInfoRemoteSearchQuery" - } - ] - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Person remote search executed.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/RemoteSearch/Series": { - "post": { - "tags": [ - "ItemLookup" - ], - "summary": "Get series remote search.", - "operationId": "GetSeriesRemoteSearchResults", - "requestBody": { - "description": "Remote search query.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeriesInfoRemoteSearchQuery" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeriesInfoRemoteSearchQuery" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeriesInfoRemoteSearchQuery" - } - ] - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Series remote search executed.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/RemoteSearch/Trailer": { - "post": { - "tags": [ - "ItemLookup" - ], - "summary": "Get trailer remote search.", - "operationId": "GetTrailerRemoteSearchResults", - "requestBody": { - "description": "Remote search query.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TrailerInfoRemoteSearchQuery" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TrailerInfoRemoteSearchQuery" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TrailerInfoRemoteSearchQuery" - } - ] - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Trailer remote search executed.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSearchResult" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/Refresh": { - "post": { - "tags": [ - "ItemRefresh" - ], - "summary": "Refreshes metadata for an item.", - "operationId": "RefreshItem", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "metadataRefreshMode", - "in": "query", - "description": "(Optional) Specifies the metadata refresh mode.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MetadataRefreshMode" - } - ], - "default": "None" - } - }, - { - "name": "imageRefreshMode", - "in": "query", - "description": "(Optional) Specifies the image refresh mode.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MetadataRefreshMode" - } - ], - "default": "None" - } - }, - { - "name": "replaceAllMetadata", - "in": "query", - "description": "(Optional) Determines if metadata should be replaced. Only applicable if mode is FullRefresh.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "replaceAllImages", - "in": "query", - "description": "(Optional) Determines if images should be replaced. Only applicable if mode is FullRefresh.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "204": { - "description": "Item metadata refresh queued." - }, - "404": { - "description": "Item to refresh not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Items": { - "get": { - "tags": [ - "Items" - ], - "summary": "Gets items based on a query.", - "operationId": "GetItems", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "The user id supplied as query parameter.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "maxOfficialRating", - "in": "query", - "description": "Optional filter by maximum official rating (PG, PG-13, TV-MA, etc).", - "schema": { - "type": "string" - } - }, - { - "name": "hasThemeSong", - "in": "query", - "description": "Optional filter by items with theme songs.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasThemeVideo", - "in": "query", - "description": "Optional filter by items with theme videos.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasSubtitles", - "in": "query", - "description": "Optional filter by items with subtitles.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasSpecialFeature", - "in": "query", - "description": "Optional filter by items with special features.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasTrailer", - "in": "query", - "description": "Optional filter by items with trailers.", - "schema": { - "type": "boolean" - } - }, - { - "name": "adjacentTo", - "in": "query", - "description": "Optional. Return items that are siblings of a supplied item.", - "schema": { - "type": "string" - } - }, - { - "name": "parentIndexNumber", - "in": "query", - "description": "Optional filter by parent index number.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "hasParentalRating", - "in": "query", - "description": "Optional filter by items that have or do not have a parental rating.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isHd", - "in": "query", - "description": "Optional filter by items that are HD or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "is4K", - "in": "query", - "description": "Optional filter by items that are 4K or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "locationTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LocationType" - } - } - }, - { - "name": "excludeLocationTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LocationType" - } - } - }, - { - "name": "isMissing", - "in": "query", - "description": "Optional filter by items that are missing episodes or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isUnaired", - "in": "query", - "description": "Optional filter by items that are unaired episodes or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "minCommunityRating", - "in": "query", - "description": "Optional filter by minimum community rating.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "minCriticRating", - "in": "query", - "description": "Optional filter by minimum critic rating.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "minPremiereDate", - "in": "query", - "description": "Optional. The minimum premiere date. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "minDateLastSaved", - "in": "query", - "description": "Optional. The minimum last saved date. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "minDateLastSavedForUser", - "in": "query", - "description": "Optional. The minimum last saved date for the current user. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "maxPremiereDate", - "in": "query", - "description": "Optional. The maximum premiere date. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "hasOverview", - "in": "query", - "description": "Optional filter by items that have an overview or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasImdbId", - "in": "query", - "description": "Optional filter by items that have an imdb id or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasTmdbId", - "in": "query", - "description": "Optional filter by items that have a tmdb id or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasTvdbId", - "in": "query", - "description": "Optional filter by items that have a tvdb id or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isMovie", - "in": "query", - "description": "Optional filter for live tv movies.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSeries", - "in": "query", - "description": "Optional filter for live tv series.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isNews", - "in": "query", - "description": "Optional filter for live tv news.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isKids", - "in": "query", - "description": "Optional filter for live tv kids.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSports", - "in": "query", - "description": "Optional filter for live tv sports.", - "schema": { - "type": "boolean" - } - }, - { - "name": "excludeItemIds", - "in": "query", - "description": "Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "recursive", - "in": "query", - "description": "When searching within folders, this determines whether or not the search will be recursive. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "Optional. Filter based on a search term.", - "schema": { - "type": "string" - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Sort Order - Ascending,Descending.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "filters", - "in": "query", - "description": "Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFilter" - } - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional filter by items that are marked as favorite, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "mediaTypes", - "in": "query", - "description": "Optional filter by MediaType. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "imageTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "isPlayed", - "in": "query", - "description": "Optional filter by items that are played, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "genres", - "in": "query", - "description": "Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "officialRatings", - "in": "query", - "description": "Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "tags", - "in": "query", - "description": "Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "years", - "in": "query", - "description": "Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int32" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional, include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional, the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "person", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified person.", - "schema": { - "type": "string" - } - }, - { - "name": "personIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified person id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "personTypes", - "in": "query", - "description": "Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "studios", - "in": "query", - "description": "Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "artists", - "in": "query", - "description": "Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "excludeArtistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "artistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified artist id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "albumArtistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified album artist id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "contributingArtistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified contributing artist id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "albums", - "in": "query", - "description": "Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "albumIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "ids", - "in": "query", - "description": "Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "videoTypes", - "in": "query", - "description": "Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/VideoType" - } - } - }, - { - "name": "minOfficialRating", - "in": "query", - "description": "Optional filter by minimum official rating (PG, PG-13, TV-MA, etc).", - "schema": { - "type": "string" - } - }, - { - "name": "isLocked", - "in": "query", - "description": "Optional filter by items that are locked.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isPlaceHolder", - "in": "query", - "description": "Optional filter by items that are placeholders.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasOfficialRating", - "in": "query", - "description": "Optional filter by items that have official ratings.", - "schema": { - "type": "boolean" - } - }, - { - "name": "collapseBoxSetItems", - "in": "query", - "description": "Whether or not to hide items behind their boxsets.", - "schema": { - "type": "boolean" - } - }, - { - "name": "minWidth", - "in": "query", - "description": "Optional. Filter by the minimum width of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minHeight", - "in": "query", - "description": "Optional. Filter by the minimum height of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. Filter by the maximum width of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. Filter by the maximum height of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "is3D", - "in": "query", - "description": "Optional filter by items that are 3D, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "seriesStatus", - "in": "query", - "description": "Optional filter by Series Status. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SeriesStatus" - } - } - }, - { - "name": "nameStartsWithOrGreater", - "in": "query", - "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameStartsWith", - "in": "query", - "description": "Optional filter by items whose name is sorted equally than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameLessThan", - "in": "query", - "description": "Optional filter by items whose name is equally or lesser than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "studioIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "genreIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Optional. Enable the total record count.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional, include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "Library" - ], - "summary": "Deletes items from the library and filesystem.", - "operationId": "DeleteItems", - "parameters": [ - { - "name": "ids", - "in": "query", - "description": "The item ids.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - } - ], - "responses": { - "204": { - "description": "Items deleted." - }, - "401": { - "description": "Unauthorized access.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Items": { - "get": { - "tags": [ - "Items" - ], - "summary": "Gets items based on a query.", - "operationId": "GetItemsByUserId", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id supplied as query parameter.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "maxOfficialRating", - "in": "query", - "description": "Optional filter by maximum official rating (PG, PG-13, TV-MA, etc).", - "schema": { - "type": "string" - } - }, - { - "name": "hasThemeSong", - "in": "query", - "description": "Optional filter by items with theme songs.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasThemeVideo", - "in": "query", - "description": "Optional filter by items with theme videos.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasSubtitles", - "in": "query", - "description": "Optional filter by items with subtitles.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasSpecialFeature", - "in": "query", - "description": "Optional filter by items with special features.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasTrailer", - "in": "query", - "description": "Optional filter by items with trailers.", - "schema": { - "type": "boolean" - } - }, - { - "name": "adjacentTo", - "in": "query", - "description": "Optional. Return items that are siblings of a supplied item.", - "schema": { - "type": "string" - } - }, - { - "name": "parentIndexNumber", - "in": "query", - "description": "Optional filter by parent index number.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "hasParentalRating", - "in": "query", - "description": "Optional filter by items that have or do not have a parental rating.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isHd", - "in": "query", - "description": "Optional filter by items that are HD or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "is4K", - "in": "query", - "description": "Optional filter by items that are 4K or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "locationTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LocationType" - } - } - }, - { - "name": "excludeLocationTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LocationType" - } - } - }, - { - "name": "isMissing", - "in": "query", - "description": "Optional filter by items that are missing episodes or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isUnaired", - "in": "query", - "description": "Optional filter by items that are unaired episodes or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "minCommunityRating", - "in": "query", - "description": "Optional filter by minimum community rating.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "minCriticRating", - "in": "query", - "description": "Optional filter by minimum critic rating.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "minPremiereDate", - "in": "query", - "description": "Optional. The minimum premiere date. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "minDateLastSaved", - "in": "query", - "description": "Optional. The minimum last saved date. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "minDateLastSavedForUser", - "in": "query", - "description": "Optional. The minimum last saved date for the current user. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "maxPremiereDate", - "in": "query", - "description": "Optional. The maximum premiere date. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "hasOverview", - "in": "query", - "description": "Optional filter by items that have an overview or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasImdbId", - "in": "query", - "description": "Optional filter by items that have an imdb id or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasTmdbId", - "in": "query", - "description": "Optional filter by items that have a tmdb id or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasTvdbId", - "in": "query", - "description": "Optional filter by items that have a tvdb id or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isMovie", - "in": "query", - "description": "Optional filter for live tv movies.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSeries", - "in": "query", - "description": "Optional filter for live tv series.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isNews", - "in": "query", - "description": "Optional filter for live tv news.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isKids", - "in": "query", - "description": "Optional filter for live tv kids.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSports", - "in": "query", - "description": "Optional filter for live tv sports.", - "schema": { - "type": "boolean" - } - }, - { - "name": "excludeItemIds", - "in": "query", - "description": "Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "recursive", - "in": "query", - "description": "When searching within folders, this determines whether or not the search will be recursive. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "Optional. Filter based on a search term.", - "schema": { - "type": "string" - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Sort Order - Ascending,Descending.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "filters", - "in": "query", - "description": "Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFilter" - } - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional filter by items that are marked as favorite, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "mediaTypes", - "in": "query", - "description": "Optional filter by MediaType. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "imageTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "isPlayed", - "in": "query", - "description": "Optional filter by items that are played, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "genres", - "in": "query", - "description": "Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "officialRatings", - "in": "query", - "description": "Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "tags", - "in": "query", - "description": "Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "years", - "in": "query", - "description": "Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int32" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional, include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional, the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "person", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified person.", - "schema": { - "type": "string" - } - }, - { - "name": "personIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified person id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "personTypes", - "in": "query", - "description": "Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "studios", - "in": "query", - "description": "Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "artists", - "in": "query", - "description": "Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "excludeArtistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "artistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified artist id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "albumArtistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified album artist id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "contributingArtistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified contributing artist id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "albums", - "in": "query", - "description": "Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "albumIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "ids", - "in": "query", - "description": "Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "videoTypes", - "in": "query", - "description": "Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/VideoType" - } - } - }, - { - "name": "minOfficialRating", - "in": "query", - "description": "Optional filter by minimum official rating (PG, PG-13, TV-MA, etc).", - "schema": { - "type": "string" - } - }, - { - "name": "isLocked", - "in": "query", - "description": "Optional filter by items that are locked.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isPlaceHolder", - "in": "query", - "description": "Optional filter by items that are placeholders.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasOfficialRating", - "in": "query", - "description": "Optional filter by items that have official ratings.", - "schema": { - "type": "boolean" - } - }, - { - "name": "collapseBoxSetItems", - "in": "query", - "description": "Whether or not to hide items behind their boxsets.", - "schema": { - "type": "boolean" - } - }, - { - "name": "minWidth", - "in": "query", - "description": "Optional. Filter by the minimum width of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minHeight", - "in": "query", - "description": "Optional. Filter by the minimum height of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. Filter by the maximum width of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. Filter by the maximum height of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "is3D", - "in": "query", - "description": "Optional filter by items that are 3D, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "seriesStatus", - "in": "query", - "description": "Optional filter by Series Status. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SeriesStatus" - } - } - }, - { - "name": "nameStartsWithOrGreater", - "in": "query", - "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameStartsWith", - "in": "query", - "description": "Optional filter by items whose name is sorted equally than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameLessThan", - "in": "query", - "description": "Optional filter by items whose name is equally or lesser than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "studioIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "genreIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Optional. Enable the total record count.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional, include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Items/Resume": { - "get": { - "tags": [ - "Items" - ], - "summary": "Gets items based on a query.", - "operationId": "GetResumeItems", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "The start index.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "The item limit.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "The search term.", - "schema": { - "type": "string" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "mediaTypes", - "in": "query", - "description": "Optional. Filter by MediaType. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on the item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Optional. Enable the total record count.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "excludeActiveSessions", - "in": "query", - "description": "Optional. Whether to exclude the currently active sessions.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Items returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}": { - "post": { - "tags": [ - "ItemUpdate" - ], - "summary": "Updates an item.", - "operationId": "UpdateItem", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "requestBody": { - "description": "The new item properties.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemDto" - } - ], - "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemDto" - } - ], - "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemDto" - } - ], - "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Item updated." - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "delete": { - "tags": [ - "Library" - ], - "summary": "Deletes an item from the library and filesystem.", - "operationId": "DeleteItem", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "Item deleted." - }, - "401": { - "description": "Unauthorized access.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/ContentType": { - "post": { - "tags": [ - "ItemUpdate" - ], - "summary": "Updates an item's content type.", - "operationId": "UpdateItemContentType", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "contentType", - "in": "query", - "description": "The content type of the item.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Item content type updated." - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Items/{itemId}/MetadataEditor": { - "get": { - "tags": [ - "ItemUpdate" - ], - "summary": "Gets metadata editor info for an item.", - "operationId": "GetMetadataEditorInfo", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Item metadata editor returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/MetadataEditorInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/MetadataEditorInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/MetadataEditorInfo" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Albums/{itemId}/Similar": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets similar items.", - "operationId": "GetSimilarAlbums", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "excludeArtistIds", - "in": "query", - "description": "Exclude artist ids.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - } - ], - "responses": { - "200": { - "description": "Similar items returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Artists/{itemId}/Similar": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets similar items.", - "operationId": "GetSimilarArtists", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "excludeArtistIds", - "in": "query", - "description": "Exclude artist ids.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - } - ], - "responses": { - "200": { - "description": "Similar items returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/Ancestors": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets all parents of an item.", - "operationId": "GetAncestors", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Item parents returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/CriticReviews": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets critic review for an item.", - "operationId": "GetCriticReviews", - "parameters": [ - { - "name": "itemId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Critic reviews returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "deprecated": true, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/Download": { - "get": { - "tags": [ - "Library" - ], - "summary": "Downloads item media.", - "operationId": "GetDownload", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Media downloaded.", - "content": { - "video/*": { - "schema": { - "type": "string", - "format": "binary" - } - }, - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "Download" - ] - } - ] - } - }, - "/Items/{itemId}/File": { - "get": { - "tags": [ - "Library" - ], - "summary": "Get the original file of an item.", - "operationId": "GetFile", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "File stream returned.", - "content": { - "video/*": { - "schema": { - "type": "string", - "format": "binary" - } - }, - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/Similar": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets similar items.", - "operationId": "GetSimilarItems", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "excludeArtistIds", - "in": "query", - "description": "Exclude artist ids.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - } - ], - "responses": { - "200": { - "description": "Similar items returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/ThemeMedia": { - "get": { - "tags": [ - "Library" - ], - "summary": "Get theme songs and videos for an item.", - "operationId": "GetThemeMedia", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "inheritFromParent", - "in": "query", - "description": "Optional. Determines whether or not parent items should be searched for theme media.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Theme songs and videos returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AllThemeMediaResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/AllThemeMediaResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/AllThemeMediaResult" - } - } - } - }, - "404": { - "description": "Item not found." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/ThemeSongs": { - "get": { - "tags": [ - "Library" - ], - "summary": "Get theme songs for an item.", - "operationId": "GetThemeSongs", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "inheritFromParent", - "in": "query", - "description": "Optional. Determines whether or not parent items should be searched for theme media.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Theme songs returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ThemeMediaResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ThemeMediaResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ThemeMediaResult" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/ThemeVideos": { - "get": { - "tags": [ - "Library" - ], - "summary": "Get theme videos for an item.", - "operationId": "GetThemeVideos", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "inheritFromParent", - "in": "query", - "description": "Optional. Determines whether or not parent items should be searched for theme media.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Theme videos returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ThemeMediaResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ThemeMediaResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ThemeMediaResult" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/Counts": { - "get": { - "tags": [ - "Library" - ], - "summary": "Get item counts.", - "operationId": "GetItemCounts", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "Optional. Get counts from a specific user's library.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional. Get counts of favorite items.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Item counts returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItemCounts" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ItemCounts" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ItemCounts" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Libraries/AvailableOptions": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets the library options info.", - "operationId": "GetLibraryOptionsInfo", - "parameters": [ - { - "name": "libraryContentType", - "in": "query", - "description": "Library content type.", - "schema": { - "type": "string" - } - }, - { - "name": "isNewLibrary", - "in": "query", - "description": "Whether this is a new library.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Library options info returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/LibraryOptionsResultDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/LibraryOptionsResultDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/LibraryOptionsResultDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrDefault" - ] - } - ] - } - }, - "/Library/Media/Updated": { - "post": { - "tags": [ - "Library" - ], - "summary": "Reports that new movies have been added by an external source.", - "operationId": "PostUpdatedMedia", - "requestBody": { - "description": "The update paths.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaUpdateInfoDto" - } - ], - "description": "Media Update Info Dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaUpdateInfoDto" - } - ], - "description": "Media Update Info Dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaUpdateInfoDto" - } - ], - "description": "Media Update Info Dto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Report success." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Library/MediaFolders": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets all user media folders.", - "operationId": "GetMediaFolders", - "parameters": [ - { - "name": "isHidden", - "in": "query", - "description": "Optional. Filter by folders that are marked hidden, or not.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Media folders returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Library/Movies/Added": { - "post": { - "tags": [ - "Library" - ], - "summary": "Reports that new movies have been added by an external source.", - "operationId": "PostAddedMovies", - "parameters": [ - { - "name": "tmdbId", - "in": "query", - "description": "The tmdbId.", - "schema": { - "type": "string" - } - }, - { - "name": "imdbId", - "in": "query", - "description": "The imdbId.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Report success." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Library/Movies/Updated": { - "post": { - "tags": [ - "Library" - ], - "summary": "Reports that new movies have been added by an external source.", - "operationId": "PostUpdatedMovies", - "parameters": [ - { - "name": "tmdbId", - "in": "query", - "description": "The tmdbId.", - "schema": { - "type": "string" - } - }, - { - "name": "imdbId", - "in": "query", - "description": "The imdbId.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Report success." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Library/PhysicalPaths": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets a list of physical paths from virtual folders.", - "operationId": "GetPhysicalPaths", - "responses": { - "200": { - "description": "Physical paths returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Library/Refresh": { - "post": { - "tags": [ - "Library" - ], - "summary": "Starts a library scan.", - "operationId": "RefreshLibrary", - "responses": { - "204": { - "description": "Library scan started." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Library/Series/Added": { - "post": { - "tags": [ - "Library" - ], - "summary": "Reports that new episodes of a series have been added by an external source.", - "operationId": "PostAddedSeries", - "parameters": [ - { - "name": "tvdbId", - "in": "query", - "description": "The tvdbId.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Report success." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Library/Series/Updated": { - "post": { - "tags": [ - "Library" - ], - "summary": "Reports that new episodes of a series have been added by an external source.", - "operationId": "PostUpdatedSeries", - "parameters": [ - { - "name": "tvdbId", - "in": "query", - "description": "The tvdbId.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Report success." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Movies/{itemId}/Similar": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets similar items.", - "operationId": "GetSimilarMovies", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "excludeArtistIds", - "in": "query", - "description": "Exclude artist ids.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - } - ], - "responses": { - "200": { - "description": "Similar items returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Shows/{itemId}/Similar": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets similar items.", - "operationId": "GetSimilarShows", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "excludeArtistIds", - "in": "query", - "description": "Exclude artist ids.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - } - ], - "responses": { - "200": { - "description": "Similar items returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Trailers/{itemId}/Similar": { - "get": { - "tags": [ - "Library" - ], - "summary": "Gets similar items.", - "operationId": "GetSimilarTrailers", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "excludeArtistIds", - "in": "query", - "description": "Exclude artist ids.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - } - ], - "responses": { - "200": { - "description": "Similar items returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Library/VirtualFolders": { - "get": { - "tags": [ - "LibraryStructure" - ], - "summary": "Gets all virtual folders.", - "operationId": "GetVirtualFolders", - "responses": { - "200": { - "description": "Virtual folders retrieved.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/VirtualFolderInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/VirtualFolderInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/VirtualFolderInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - }, - "post": { - "tags": [ - "LibraryStructure" - ], - "summary": "Adds a virtual folder.", - "operationId": "AddVirtualFolder", - "parameters": [ - { - "name": "name", - "in": "query", - "description": "The name of the virtual folder.", - "schema": { - "type": "string" - } - }, - { - "name": "collectionType", - "in": "query", - "description": "The type of the collection.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/CollectionTypeOptions" - } - ] - } - }, - { - "name": "paths", - "in": "query", - "description": "The paths of the virtual folder.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "refreshLibrary", - "in": "query", - "description": "Whether to refresh the library.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "requestBody": { - "description": "The library options.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AddVirtualFolderDto" - } - ], - "description": "Add virtual folder dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AddVirtualFolderDto" - } - ], - "description": "Add virtual folder dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AddVirtualFolderDto" - } - ], - "description": "Add virtual folder dto." - } - } - } - }, - "responses": { - "204": { - "description": "Folder added." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - }, - "delete": { - "tags": [ - "LibraryStructure" - ], - "summary": "Removes a virtual folder.", - "operationId": "RemoveVirtualFolder", - "parameters": [ - { - "name": "name", - "in": "query", - "description": "The name of the folder.", - "schema": { - "type": "string" - } - }, - { - "name": "refreshLibrary", - "in": "query", - "description": "Whether to refresh the library.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "204": { - "description": "Folder removed." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Library/VirtualFolders/LibraryOptions": { - "post": { - "tags": [ - "LibraryStructure" - ], - "summary": "Update library options.", - "operationId": "UpdateLibraryOptions", - "requestBody": { - "description": "The library name and options.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateLibraryOptionsDto" - } - ], - "description": "Update library options dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateLibraryOptionsDto" - } - ], - "description": "Update library options dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateLibraryOptionsDto" - } - ], - "description": "Update library options dto." - } - } - } - }, - "responses": { - "204": { - "description": "Library updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Library/VirtualFolders/Name": { - "post": { - "tags": [ - "LibraryStructure" - ], - "summary": "Renames a virtual folder.", - "operationId": "RenameVirtualFolder", - "parameters": [ - { - "name": "name", - "in": "query", - "description": "The name of the virtual folder.", - "schema": { - "type": "string" - } - }, - { - "name": "newName", - "in": "query", - "description": "The new name.", - "schema": { - "type": "string" - } - }, - { - "name": "refreshLibrary", - "in": "query", - "description": "Whether to refresh the library.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "204": { - "description": "Folder renamed." - }, - "404": { - "description": "Library doesn't exist.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "409": { - "description": "Library already exists.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Library/VirtualFolders/Paths": { - "post": { - "tags": [ - "LibraryStructure" - ], - "summary": "Add a media path to a library.", - "operationId": "AddMediaPath", - "parameters": [ - { - "name": "refreshLibrary", - "in": "query", - "description": "Whether to refresh the library.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "requestBody": { - "description": "The media path dto.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaPathDto" - } - ], - "description": "Media Path dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaPathDto" - } - ], - "description": "Media Path dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaPathDto" - } - ], - "description": "Media Path dto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Media path added." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - }, - "delete": { - "tags": [ - "LibraryStructure" - ], - "summary": "Remove a media path.", - "operationId": "RemoveMediaPath", - "parameters": [ - { - "name": "name", - "in": "query", - "description": "The name of the library.", - "schema": { - "type": "string" - } - }, - { - "name": "path", - "in": "query", - "description": "The path to remove.", - "schema": { - "type": "string" - } - }, - { - "name": "refreshLibrary", - "in": "query", - "description": "Whether to refresh the library.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "204": { - "description": "Media path removed." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Library/VirtualFolders/Paths/Update": { - "post": { - "tags": [ - "LibraryStructure" - ], - "summary": "Updates a media path.", - "operationId": "UpdateMediaPath", - "requestBody": { - "description": "The name of the library and path infos.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateMediaPathRequestDto" - } - ], - "description": "Update library options dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateMediaPathRequestDto" - } - ], - "description": "Update library options dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateMediaPathRequestDto" - } - ], - "description": "Update library options dto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Media path updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/LiveTv/ChannelMappingOptions": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Get channel mapping options.", - "operationId": "GetChannelMappingOptions", - "parameters": [ - { - "name": "providerId", - "in": "query", - "description": "Provider id.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Channel mapping options returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChannelMappingOptionsDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ChannelMappingOptionsDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ChannelMappingOptionsDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/ChannelMappings": { - "post": { - "tags": [ - "LiveTv" - ], - "summary": "Set channel mappings.", - "operationId": "SetChannelMapping", - "requestBody": { - "description": "The set channel mapping dto.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetChannelMappingDto" - } - ], - "description": "Set channel mapping dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetChannelMappingDto" - } - ], - "description": "Set channel mapping dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetChannelMappingDto" - } - ], - "description": "Set channel mapping dto." - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Created channel mapping returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TunerChannelMapping" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/TunerChannelMapping" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/TunerChannelMapping" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Channels": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets available live tv channels.", - "operationId": "GetLiveTvChannels", - "parameters": [ - { - "name": "type", - "in": "query", - "description": "Optional. Filter by channel type.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ChannelType" - } - ] - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "isMovie", - "in": "query", - "description": "Optional. Filter for movies.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSeries", - "in": "query", - "description": "Optional. Filter for series.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isNews", - "in": "query", - "description": "Optional. Filter for news.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isKids", - "in": "query", - "description": "Optional. Filter for kids.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSports", - "in": "query", - "description": "Optional. Filter for sports.", - "schema": { - "type": "boolean" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional. Filter by channels that are favorites, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isLiked", - "in": "query", - "description": "Optional. Filter by channels that are liked, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isDisliked", - "in": "query", - "description": "Optional. Filter by channels that are disliked, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "\"Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Key to sort by.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Optional. Sort order.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SortOrder" - } - ] - } - }, - { - "name": "enableFavoriteSorting", - "in": "query", - "description": "Optional. Incorporate favorite and like status into channel sorting.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "addCurrentProgram", - "in": "query", - "description": "Optional. Adds current program info to each channel.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Available live tv channels returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Channels/{channelId}": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets a live tv channel.", - "operationId": "GetChannel", - "parameters": [ - { - "name": "channelId", - "in": "path", - "description": "Channel id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Live tv channel returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/GuideInfo": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Get guid info.", - "operationId": "GetGuideInfo", - "responses": { - "200": { - "description": "Guid info returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GuideInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/GuideInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/GuideInfo" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Info": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets available live tv services.", - "operationId": "GetLiveTvInfo", - "responses": { - "200": { - "description": "Available live tv services returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/LiveTvInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/LiveTvInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/LiveTvInfo" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/ListingProviders": { - "post": { - "tags": [ - "LiveTv" - ], - "summary": "Adds a listings provider.", - "operationId": "AddListingProvider", - "parameters": [ - { - "name": "pw", - "in": "query", - "description": "Password.", - "schema": { - "type": "string" - } - }, - { - "name": "validateListings", - "in": "query", - "description": "Validate listings.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "validateLogin", - "in": "query", - "description": "Validate login.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "requestBody": { - "description": "New listings info.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ListingsProviderInfo" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ListingsProviderInfo" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ListingsProviderInfo" - } - ] - } - } - } - }, - "responses": { - "200": { - "description": "Created listings provider returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ListingsProviderInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ListingsProviderInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ListingsProviderInfo" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "LiveTv" - ], - "summary": "Delete listing provider.", - "operationId": "DeleteListingProvider", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "Listing provider id.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Listing provider deleted." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/ListingProviders/Default": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets default listings provider info.", - "operationId": "GetDefaultListingProvider", - "responses": { - "200": { - "description": "Default listings provider info returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ListingsProviderInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ListingsProviderInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ListingsProviderInfo" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/ListingProviders/Lineups": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets available lineups.", - "operationId": "GetLineups", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "Provider id.", - "schema": { - "type": "string" - } - }, - { - "name": "type", - "in": "query", - "description": "Provider type.", - "schema": { - "type": "string" - } - }, - { - "name": "location", - "in": "query", - "description": "Location.", - "schema": { - "type": "string" - } - }, - { - "name": "country", - "in": "query", - "description": "Country.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Available lineups returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/ListingProviders/SchedulesDirect/Countries": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets available countries.", - "operationId": "GetSchedulesDirectCountries", - "responses": { - "200": { - "description": "Available countries returned.", - "content": { - "application/json": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/LiveRecordings/{recordingId}/stream": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets a live tv recording stream.", - "operationId": "GetLiveRecordingFile", - "parameters": [ - { - "name": "recordingId", - "in": "path", - "description": "Recording id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Recording stream returned.", - "content": { - "video/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Recording not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/LiveTv/LiveStreamFiles/{streamId}/stream.{container}": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets a live tv channel stream.", - "operationId": "GetLiveStreamFile", - "parameters": [ - { - "name": "streamId", - "in": "path", - "description": "Stream id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "container", - "in": "path", - "description": "Container type.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Stream returned.", - "content": { - "video/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Stream not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/LiveTv/Programs": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets available live tv epgs.", - "operationId": "GetLiveTvPrograms", - "parameters": [ - { - "name": "channelIds", - "in": "query", - "description": "The channels to return guide information for.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "minStartDate", - "in": "query", - "description": "Optional. The minimum premiere start date.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "hasAired", - "in": "query", - "description": "Optional. Filter by programs that have completed airing, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isAiring", - "in": "query", - "description": "Optional. Filter by programs that are currently airing, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "maxStartDate", - "in": "query", - "description": "Optional. The maximum premiere start date.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "minEndDate", - "in": "query", - "description": "Optional. The minimum premiere end date.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "maxEndDate", - "in": "query", - "description": "Optional. The maximum premiere end date.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "isMovie", - "in": "query", - "description": "Optional. Filter for movies.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSeries", - "in": "query", - "description": "Optional. Filter for series.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isNews", - "in": "query", - "description": "Optional. Filter for news.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isKids", - "in": "query", - "description": "Optional. Filter for kids.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSports", - "in": "query", - "description": "Optional. Filter for sports.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited. Options: Name, StartDate.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Sort Order - Ascending,Descending.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - { - "name": "genres", - "in": "query", - "description": "The genres to return guide information for.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "genreIds", - "in": "query", - "description": "The genre ids to return guide information for.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "seriesTimerId", - "in": "query", - "description": "Optional. Filter by series timer id.", - "schema": { - "type": "string" - } - }, - { - "name": "librarySeriesId", - "in": "query", - "description": "Optional. Filter by library series id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Retrieve total record count.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Live tv epgs returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "LiveTv" - ], - "summary": "Gets available live tv epgs.", - "operationId": "GetPrograms", - "requestBody": { - "description": "Request body.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/GetProgramsDto" - } - ], - "description": "Get programs dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/GetProgramsDto" - } - ], - "description": "Get programs dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/GetProgramsDto" - } - ], - "description": "Get programs dto." - } - } - } - }, - "responses": { - "200": { - "description": "Live tv epgs returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Programs/{programId}": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets a live tv program.", - "operationId": "GetProgram", - "parameters": [ - { - "name": "programId", - "in": "path", - "description": "Program id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Program returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Programs/Recommended": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets recommended live tv epgs.", - "operationId": "GetRecommendedPrograms", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "Optional. filter by user id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "isAiring", - "in": "query", - "description": "Optional. Filter by programs that are currently airing, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasAired", - "in": "query", - "description": "Optional. Filter by programs that have completed airing, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSeries", - "in": "query", - "description": "Optional. Filter for series.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isMovie", - "in": "query", - "description": "Optional. Filter for movies.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isNews", - "in": "query", - "description": "Optional. Filter for news.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isKids", - "in": "query", - "description": "Optional. Filter for kids.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSports", - "in": "query", - "description": "Optional. Filter for sports.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "genreIds", - "in": "query", - "description": "The genres to return guide information for.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Retrieve total record count.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Recommended epgs returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Recordings": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets live tv recordings.", - "operationId": "GetRecordings", - "parameters": [ - { - "name": "channelId", - "in": "query", - "description": "Optional. Filter by channel id.", - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "status", - "in": "query", - "description": "Optional. Filter by recording status.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/RecordingStatus" - } - ] - } - }, - { - "name": "isInProgress", - "in": "query", - "description": "Optional. Filter by recordings that are in progress, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "seriesTimerId", - "in": "query", - "description": "Optional. Filter by recordings belonging to a series timer.", - "schema": { - "type": "string" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isMovie", - "in": "query", - "description": "Optional. Filter for movies.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSeries", - "in": "query", - "description": "Optional. Filter for series.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isKids", - "in": "query", - "description": "Optional. Filter for kids.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSports", - "in": "query", - "description": "Optional. Filter for sports.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isNews", - "in": "query", - "description": "Optional. Filter for news.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isLibraryItem", - "in": "query", - "description": "Optional. Filter for is library item.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Optional. Return total record count.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Live tv recordings returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Recordings/{recordingId}": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets a live tv recording.", - "operationId": "GetRecording", - "parameters": [ - { - "name": "recordingId", - "in": "path", - "description": "Recording id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Recording returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "LiveTv" - ], - "summary": "Deletes a live tv recording.", - "operationId": "DeleteRecording", - "parameters": [ - { - "name": "recordingId", - "in": "path", - "description": "Recording id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "Recording deleted." - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Recordings/Folders": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets recording folders.", - "operationId": "GetRecordingFolders", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Recording folders returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Recordings/Groups": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets live tv recording groups.", - "operationId": "GetRecordingGroups", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Recording groups returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "deprecated": true, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Recordings/Groups/{groupId}": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Get recording group.", - "operationId": "GetRecordingGroup", - "parameters": [ - { - "name": "groupId", - "in": "path", - "description": "Group id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "404": { - "description": "Not Found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "deprecated": true, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Recordings/Series": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets live tv recording series.", - "operationId": "GetRecordingsSeries", - "parameters": [ - { - "name": "channelId", - "in": "query", - "description": "Optional. Filter by channel id.", - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "groupId", - "in": "query", - "description": "Optional. Filter by recording group.", - "schema": { - "type": "string" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "status", - "in": "query", - "description": "Optional. Filter by recording status.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/RecordingStatus" - } - ] - } - }, - { - "name": "isInProgress", - "in": "query", - "description": "Optional. Filter by recordings that are in progress, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "seriesTimerId", - "in": "query", - "description": "Optional. Filter by recordings belonging to a series timer.", - "schema": { - "type": "string" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Optional. Return total record count.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Live tv recordings returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "deprecated": true, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/SeriesTimers": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets live tv series timers.", - "operationId": "GetSeriesTimers", - "parameters": [ - { - "name": "sortBy", - "in": "query", - "description": "Optional. Sort by SortName or Priority.", - "schema": { - "type": "string" - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Optional. Sort in Ascending or Descending order.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SortOrder" - } - ] - } - } - ], - "responses": { - "200": { - "description": "Timers returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SeriesTimerInfoDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/SeriesTimerInfoDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/SeriesTimerInfoDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "LiveTv" - ], - "summary": "Creates a live tv series timer.", - "operationId": "CreateSeriesTimer", - "requestBody": { - "description": "New series timer info.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - ], - "description": "Class SeriesTimerInfoDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - ], - "description": "Class SeriesTimerInfoDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - ], - "description": "Class SeriesTimerInfoDto." - } - } - } - }, - "responses": { - "204": { - "description": "Series timer info created." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/SeriesTimers/{timerId}": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets a live tv series timer.", - "operationId": "GetSeriesTimer", - "parameters": [ - { - "name": "timerId", - "in": "path", - "description": "Timer id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Series timer returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - } - } - }, - "404": { - "description": "Series timer not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "LiveTv" - ], - "summary": "Cancels a live tv series timer.", - "operationId": "CancelSeriesTimer", - "parameters": [ - { - "name": "timerId", - "in": "path", - "description": "Timer id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Timer cancelled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "LiveTv" - ], - "summary": "Updates a live tv series timer.", - "operationId": "UpdateSeriesTimer", - "parameters": [ - { - "name": "timerId", - "in": "path", - "description": "Timer id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "New series timer info.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - ], - "description": "Class SeriesTimerInfoDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - ], - "description": "Class SeriesTimerInfoDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - ], - "description": "Class SeriesTimerInfoDto." - } - } - } - }, - "responses": { - "204": { - "description": "Series timer updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Timers": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets the live tv timers.", - "operationId": "GetTimers", - "parameters": [ - { - "name": "channelId", - "in": "query", - "description": "Optional. Filter by channel id.", - "schema": { - "type": "string" - } - }, - { - "name": "seriesTimerId", - "in": "query", - "description": "Optional. Filter by timers belonging to a series timer.", - "schema": { - "type": "string" - } - }, - { - "name": "isActive", - "in": "query", - "description": "Optional. Filter by timers that are active.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isScheduled", - "in": "query", - "description": "Optional. Filter by timers that are scheduled.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TimerInfoDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/TimerInfoDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/TimerInfoDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "LiveTv" - ], - "summary": "Creates a live tv timer.", - "operationId": "CreateTimer", - "requestBody": { - "description": "New timer info.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TimerInfoDto" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TimerInfoDto" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TimerInfoDto" - } - ] - } - } - } - }, - "responses": { - "204": { - "description": "Timer created." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Timers/{timerId}": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets a timer.", - "operationId": "GetTimer", - "parameters": [ - { - "name": "timerId", - "in": "path", - "description": "Timer id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Timer returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TimerInfoDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/TimerInfoDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/TimerInfoDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "LiveTv" - ], - "summary": "Cancels a live tv timer.", - "operationId": "CancelTimer", - "parameters": [ - { - "name": "timerId", - "in": "path", - "description": "Timer id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Timer deleted." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "LiveTv" - ], - "summary": "Updates a live tv timer.", - "operationId": "UpdateTimer", - "parameters": [ - { - "name": "timerId", - "in": "path", - "description": "Timer id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "New timer info.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TimerInfoDto" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TimerInfoDto" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TimerInfoDto" - } - ] - } - } - } - }, - "responses": { - "204": { - "description": "Timer updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Timers/Defaults": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Gets the default values for a new timer.", - "operationId": "GetDefaultTimer", - "parameters": [ - { - "name": "programId", - "in": "query", - "description": "Optional. To attach default values based on a program.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Default values returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/TunerHosts": { - "post": { - "tags": [ - "LiveTv" - ], - "summary": "Adds a tuner host.", - "operationId": "AddTunerHost", - "requestBody": { - "description": "New tuner host.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TunerHostInfo" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TunerHostInfo" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/TunerHostInfo" - } - ] - } - } - } - }, - "responses": { - "200": { - "description": "Created tuner host returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TunerHostInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/TunerHostInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/TunerHostInfo" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "LiveTv" - ], - "summary": "Deletes a tuner host.", - "operationId": "DeleteTunerHost", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "Tuner host id.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Tuner host deleted." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/TunerHosts/Types": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Get tuner host types.", - "operationId": "GetTunerHostTypes", - "responses": { - "200": { - "description": "Tuner host types returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Tuners/{tunerId}/Reset": { - "post": { - "tags": [ - "LiveTv" - ], - "summary": "Resets a tv tuner.", - "operationId": "ResetTuner", - "parameters": [ - { - "name": "tunerId", - "in": "path", - "description": "Tuner id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Tuner reset." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Tuners/Discover": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Discover tuners.", - "operationId": "DiscoverTuners", - "parameters": [ - { - "name": "newDevicesOnly", - "in": "query", - "description": "Only discover new tuners.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Tuners returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TunerHostInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TunerHostInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TunerHostInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveTv/Tuners/Discvover": { - "get": { - "tags": [ - "LiveTv" - ], - "summary": "Discover tuners.", - "operationId": "DiscvoverTuners", - "parameters": [ - { - "name": "newDevicesOnly", - "in": "query", - "description": "Only discover new tuners.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Tuners returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TunerHostInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TunerHostInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TunerHostInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Localization/Countries": { - "get": { - "tags": [ - "Localization" - ], - "summary": "Gets known countries.", - "operationId": "GetCountries", - "responses": { - "200": { - "description": "Known countries returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CountryInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CountryInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CountryInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrDefault" - ] - } - ] - } - }, - "/Localization/Cultures": { - "get": { - "tags": [ - "Localization" - ], - "summary": "Gets known cultures.", - "operationId": "GetCultures", - "responses": { - "200": { - "description": "Known cultures returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CultureDto" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CultureDto" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CultureDto" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrDefault" - ] - } - ] - } - }, - "/Localization/Options": { - "get": { - "tags": [ - "Localization" - ], - "summary": "Gets localization options.", - "operationId": "GetLocalizationOptions", - "responses": { - "200": { - "description": "Localization options returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LocalizationOption" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LocalizationOption" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LocalizationOption" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrDefault" - ] - } - ] - } - }, - "/Localization/ParentalRatings": { - "get": { - "tags": [ - "Localization" - ], - "summary": "Gets known parental ratings.", - "operationId": "GetParentalRatings", - "responses": { - "200": { - "description": "Known parental ratings returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ParentalRating" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ParentalRating" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ParentalRating" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrDefault" - ] - } - ] - } - }, - "/Items/{itemId}/PlaybackInfo": { - "get": { - "tags": [ - "MediaInfo" - ], - "summary": "Gets live playback media info for an item.", - "operationId": "GetPlaybackInfo", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Playback info returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PlaybackInfoResponse" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/PlaybackInfoResponse" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/PlaybackInfoResponse" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "MediaInfo" - ], - "summary": "Gets live playback media info for an item.", - "description": "For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence.\r\nQuery parameters are obsolete.", - "operationId": "GetPostedPlaybackInfo", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "The user id.", - "deprecated": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "maxStreamingBitrate", - "in": "query", - "description": "The maximum streaming bitrate.", - "deprecated": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "The start time in ticks.", - "deprecated": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "The audio stream index.", - "deprecated": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "The subtitle stream index.", - "deprecated": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "The maximum number of audio channels.", - "deprecated": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media source id.", - "deprecated": true, - "schema": { - "type": "string" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The livestream id.", - "deprecated": true, - "schema": { - "type": "string" - } - }, - { - "name": "autoOpenLiveStream", - "in": "query", - "description": "Whether to auto open the livestream.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "enableDirectPlay", - "in": "query", - "description": "Whether to enable direct play. Default: true.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "enableDirectStream", - "in": "query", - "description": "Whether to enable direct stream. Default: true.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "enableTranscoding", - "in": "query", - "description": "Whether to enable transcoding. Default: true.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether to allow to copy the video stream. Default: true.", - "deprecated": true, - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether to allow to copy the audio stream. Default: true.", - "deprecated": true, - "schema": { - "type": "boolean" - } - } - ], - "requestBody": { - "description": "The playback info.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackInfoDto" - } - ], - "description": "Plabyback info dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackInfoDto" - } - ], - "description": "Plabyback info dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackInfoDto" - } - ], - "description": "Plabyback info dto." - } - } - } - }, - "responses": { - "200": { - "description": "Playback info returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PlaybackInfoResponse" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/PlaybackInfoResponse" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/PlaybackInfoResponse" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveStreams/Close": { - "post": { - "tags": [ - "MediaInfo" - ], - "summary": "Closes a media source.", - "operationId": "CloseLiveStream", - "parameters": [ - { - "name": "liveStreamId", - "in": "query", - "description": "The livestream id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Livestream closed." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/LiveStreams/Open": { - "post": { - "tags": [ - "MediaInfo" - ], - "summary": "Opens a media source.", - "operationId": "OpenLiveStream", - "parameters": [ - { - "name": "openToken", - "in": "query", - "description": "The open token.", - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "The user id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "maxStreamingBitrate", - "in": "query", - "description": "The maximum streaming bitrate.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "The start time in ticks.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "The audio stream index.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "The subtitle stream index.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "The maximum number of audio channels.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "itemId", - "in": "query", - "description": "The item id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "enableDirectPlay", - "in": "query", - "description": "Whether to enable direct play. Default: true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableDirectStream", - "in": "query", - "description": "Whether to enable direct stream. Default: true.", - "schema": { - "type": "boolean" - } - } - ], - "requestBody": { - "description": "The open live stream dto.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/OpenLiveStreamDto" - } - ], - "description": "Open live stream dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/OpenLiveStreamDto" - } - ], - "description": "Open live stream dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/OpenLiveStreamDto" - } - ], - "description": "Open live stream dto." - } - } - } - }, - "responses": { - "200": { - "description": "Media source opened.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/LiveStreamResponse" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/LiveStreamResponse" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/LiveStreamResponse" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Playback/BitrateTest": { - "get": { - "tags": [ - "MediaInfo" - ], - "summary": "Tests the network with a request with the size of the bitrate.", - "operationId": "GetBitrateTestBytes", - "parameters": [ - { - "name": "size", - "in": "query", - "description": "The bitrate. Defaults to 102400.", - "schema": { - "maximum": 100000000, - "minimum": 1, - "type": "integer", - "format": "int32", - "default": 102400 - } - } - ], - "responses": { - "200": { - "description": "Test buffer returned.", - "content": { - "application/octet-stream": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Movies/Recommendations": { - "get": { - "tags": [ - "Movies" - ], - "summary": "Gets movie recommendations.", - "operationId": "GetMovieRecommendations", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. The fields to return.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "categoryLimit", - "in": "query", - "description": "The max number of categories to return.", - "schema": { - "type": "integer", - "format": "int32", - "default": 5 - } - }, - { - "name": "itemLimit", - "in": "query", - "description": "The max number of items to return per category.", - "schema": { - "type": "integer", - "format": "int32", - "default": 8 - } - } - ], - "responses": { - "200": { - "description": "Movie recommendations returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RecommendationDto" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RecommendationDto" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RecommendationDto" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/MusicGenres": { - "get": { - "tags": [ - "MusicGenres" - ], - "summary": "Gets all music genres from a given item, folder, or the entire library.", - "operationId": "GetMusicGenres", - "parameters": [ - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "The search term.", - "schema": { - "type": "string" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional filter by items that are marked as favorite, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional, the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "User id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "nameStartsWithOrGreater", - "in": "query", - "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameStartsWith", - "in": "query", - "description": "Optional filter by items whose name is sorted equally than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameLessThan", - "in": "query", - "description": "Optional filter by items whose name is equally or lesser than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Sort Order - Ascending,Descending.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional, include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Optional. Include total record count.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Music genres returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "deprecated": true, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/MusicGenres/{genreName}": { - "get": { - "tags": [ - "MusicGenres" - ], - "summary": "Gets a music genre, by name.", - "operationId": "GetMusicGenre", - "parameters": [ - { - "name": "genreName", - "in": "path", - "description": "The genre name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Notifications/{userId}": { - "get": { - "tags": [ - "Notifications" - ], - "summary": "Gets a user's notifications.", - "operationId": "GetNotifications", - "parameters": [ - { - "name": "userId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Notifications returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NotificationResultDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/NotificationResultDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/NotificationResultDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Notifications/{userId}/Read": { - "post": { - "tags": [ - "Notifications" - ], - "summary": "Sets notifications as read.", - "operationId": "SetRead", - "parameters": [ - { - "name": "userId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Notifications set as read." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Notifications/{userId}/Summary": { - "get": { - "tags": [ - "Notifications" - ], - "summary": "Gets a user's notification summary.", - "operationId": "GetNotificationsSummary", - "parameters": [ - { - "name": "userId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Summary of user's notifications returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NotificationsSummaryDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/NotificationsSummaryDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/NotificationsSummaryDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Notifications/{userId}/Unread": { - "post": { - "tags": [ - "Notifications" - ], - "summary": "Sets notifications as unread.", - "operationId": "SetUnread", - "parameters": [ - { - "name": "userId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Notifications set as unread." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Notifications/Admin": { - "post": { - "tags": [ - "Notifications" - ], - "summary": "Sends a notification to all admins.", - "operationId": "CreateAdminNotification", - "requestBody": { - "description": "The notification request.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AdminNotificationDto" - } - ], - "description": "The admin notification dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AdminNotificationDto" - } - ], - "description": "The admin notification dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AdminNotificationDto" - } - ], - "description": "The admin notification dto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Notification sent." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Notifications/Services": { - "get": { - "tags": [ - "Notifications" - ], - "summary": "Gets notification services.", - "operationId": "GetNotificationServices", - "responses": { - "200": { - "description": "All notification services returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Notifications/Types": { - "get": { - "tags": [ - "Notifications" - ], - "summary": "Gets notification types.", - "operationId": "GetNotificationTypes", - "responses": { - "200": { - "description": "All notification types returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NotificationTypeInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NotificationTypeInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NotificationTypeInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Packages": { - "get": { - "tags": [ - "Package" - ], - "summary": "Gets available packages.", - "operationId": "GetPackages", - "responses": { - "200": { - "description": "Available packages returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/PackageInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/PackageInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/PackageInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Packages/{name}": { - "get": { - "tags": [ - "Package" - ], - "summary": "Gets a package by name or assembly GUID.", - "operationId": "GetPackageInfo", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "The name of the package.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "assemblyGuid", - "in": "query", - "description": "The GUID of the associated assembly.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Package retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PackageInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/PackageInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/PackageInfo" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Packages/Installed/{name}": { - "post": { - "tags": [ - "Package" - ], - "summary": "Installs a package.", - "operationId": "InstallPackage", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Package name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "assemblyGuid", - "in": "query", - "description": "GUID of the associated assembly.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "version", - "in": "query", - "description": "Optional version. Defaults to latest version.", - "schema": { - "type": "string" - } - }, - { - "name": "repositoryUrl", - "in": "query", - "description": "Optional. Specify the repository to install from.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Package found." - }, - "404": { - "description": "Package not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/Packages/Installing/{packageId}": { - "delete": { - "tags": [ - "Package" - ], - "summary": "Cancels a package installation.", - "operationId": "CancelPackageInstallation", - "parameters": [ - { - "name": "packageId", - "in": "path", - "description": "Installation Id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "Installation cancelled." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/Repositories": { - "get": { - "tags": [ - "Package" - ], - "summary": "Gets all package repositories.", - "operationId": "GetRepositories", - "responses": { - "200": { - "description": "Package repositories returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RepositoryInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RepositoryInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RepositoryInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "Package" - ], - "summary": "Sets the enabled and existing package repositories.", - "operationId": "SetRepositories", - "requestBody": { - "description": "The list of package repositories.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RepositoryInfo" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RepositoryInfo" - } - } - }, - "application/*+json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RepositoryInfo" - } - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Package repositories saved." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/Persons": { - "get": { - "tags": [ - "Persons" - ], - "summary": "Gets all persons.", - "operationId": "GetPersons", - "parameters": [ - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "The search term.", - "schema": { - "type": "string" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "filters", - "in": "query", - "description": "Optional. Specify additional filters to apply.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFilter" - } - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional filter by items that are marked as favorite, or not. userId is required.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional, include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional, the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "excludePersonTypes", - "in": "query", - "description": "Optional. If specified results will be filtered to exclude those containing the specified PersonType. Allows multiple, comma-delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "personTypes", - "in": "query", - "description": "Optional. If specified results will be filtered to include only those containing the specified PersonType. Allows multiple, comma-delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "appearsInItemId", - "in": "query", - "description": "Optional. If specified, person results will be filtered on items related to said persons.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "User id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional, include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Persons returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Persons/{name}": { - "get": { - "tags": [ - "Persons" - ], - "summary": "Get person by name.", - "operationId": "GetPerson", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Person name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Person returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "404": { - "description": "Person not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Playlists": { - "post": { - "tags": [ - "Playlists" - ], - "summary": "Creates a new playlist.", - "description": "For backwards compatibility parameters can be sent via Query or Body, with Query having higher precedence.\r\nQuery parameters are obsolete.", - "operationId": "CreatePlaylist", - "parameters": [ - { - "name": "name", - "in": "query", - "description": "The playlist name.", - "deprecated": true, - "schema": { - "type": "string" - } - }, - { - "name": "ids", - "in": "query", - "description": "The item ids.", - "deprecated": true, - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "The user id.", - "deprecated": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "mediaType", - "in": "query", - "description": "The media type.", - "deprecated": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "The create playlist payload.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/CreatePlaylistDto" - } - ], - "description": "Create new playlist dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/CreatePlaylistDto" - } - ], - "description": "Create new playlist dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/CreatePlaylistDto" - } - ], - "description": "Create new playlist dto." - } - } - } - }, - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PlaylistCreationResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/PlaylistCreationResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/PlaylistCreationResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Playlists/{playlistId}/Items": { - "post": { - "tags": [ - "Playlists" - ], - "summary": "Adds items to a playlist.", - "operationId": "AddToPlaylist", - "parameters": [ - { - "name": "playlistId", - "in": "path", - "description": "The playlist id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "ids", - "in": "query", - "description": "Item id, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "The userId.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "Items added to playlist." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "Playlists" - ], - "summary": "Removes items from a playlist.", - "operationId": "RemoveFromPlaylist", - "parameters": [ - { - "name": "playlistId", - "in": "path", - "description": "The playlist id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "entryIds", - "in": "query", - "description": "The item ids, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - } - ], - "responses": { - "204": { - "description": "Items removed." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "get": { - "tags": [ - "Playlists" - ], - "summary": "Gets the original items of a playlist.", - "operationId": "GetPlaylistItems", - "parameters": [ - { - "name": "playlistId", - "in": "path", - "description": "The playlist id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - } - ], - "responses": { - "200": { - "description": "Original playlist returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "404": { - "description": "Playlist not found." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Playlists/{playlistId}/Items/{itemId}/Move/{newIndex}": { - "post": { - "tags": [ - "Playlists" - ], - "summary": "Moves a playlist item.", - "operationId": "MoveItem", - "parameters": [ - { - "name": "playlistId", - "in": "path", - "description": "The playlist id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "newIndex", - "in": "path", - "description": "The new index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "204": { - "description": "Item moved to new index." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/Playing": { - "post": { - "tags": [ - "Playstate" - ], - "summary": "Reports playback has started within a session.", - "operationId": "ReportPlaybackStart", - "requestBody": { - "description": "The playback start info.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackStartInfo" - } - ], - "description": "Class PlaybackStartInfo." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackStartInfo" - } - ], - "description": "Class PlaybackStartInfo." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackStartInfo" - } - ], - "description": "Class PlaybackStartInfo." - } - } - } - }, - "responses": { - "204": { - "description": "Playback start recorded." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/Playing/Ping": { - "post": { - "tags": [ - "Playstate" - ], - "summary": "Pings a playback session.", - "operationId": "PingPlaybackSession", - "parameters": [ - { - "name": "playSessionId", - "in": "query", - "description": "Playback session id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Playback session pinged." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/Playing/Progress": { - "post": { - "tags": [ - "Playstate" - ], - "summary": "Reports playback progress within a session.", - "operationId": "ReportPlaybackProgress", - "requestBody": { - "description": "The playback progress info.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackProgressInfo" - } - ], - "description": "Class PlaybackProgressInfo." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackProgressInfo" - } - ], - "description": "Class PlaybackProgressInfo." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackProgressInfo" - } - ], - "description": "Class PlaybackProgressInfo." - } - } - } - }, - "responses": { - "204": { - "description": "Playback progress recorded." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/Playing/Stopped": { - "post": { - "tags": [ - "Playstate" - ], - "summary": "Reports playback has stopped within a session.", - "operationId": "ReportPlaybackStopped", - "requestBody": { - "description": "The playback stop info.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackStopInfo" - } - ], - "description": "Class PlaybackStopInfo." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackStopInfo" - } - ], - "description": "Class PlaybackStopInfo." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackStopInfo" - } - ], - "description": "Class PlaybackStopInfo." - } - } - } - }, - "responses": { - "204": { - "description": "Playback stop recorded." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/PlayedItems/{itemId}": { - "post": { - "tags": [ - "Playstate" - ], - "summary": "Marks an item as played for user.", - "operationId": "MarkPlayedItem", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "datePlayed", - "in": "query", - "description": "Optional. The date the item was played.", - "schema": { - "type": "string", - "format": "date-time" - } - } - ], - "responses": { - "200": { - "description": "Item marked as played.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "Playstate" - ], - "summary": "Marks an item as unplayed for user.", - "operationId": "MarkUnplayedItem", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Item marked as unplayed.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/PlayingItems/{itemId}": { - "post": { - "tags": [ - "Playstate" - ], - "summary": "Reports that a user has begun playing an item.", - "operationId": "OnPlaybackStart", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The id of the MediaSource.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "The audio stream index.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "The subtitle stream index.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "playMethod", - "in": "query", - "description": "The play method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayMethod" - } - ] - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "canSeek", - "in": "query", - "description": "Indicates if the client can seek.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "204": { - "description": "Play start recorded." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "Playstate" - ], - "summary": "Reports that a user has stopped playing an item.", - "operationId": "OnPlaybackStopped", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The id of the MediaSource.", - "schema": { - "type": "string" - } - }, - { - "name": "nextMediaType", - "in": "query", - "description": "The next media type that will play.", - "schema": { - "type": "string" - } - }, - { - "name": "positionTicks", - "in": "query", - "description": "Optional. The position, in ticks, where playback stopped. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Playback stop recorded." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/PlayingItems/{itemId}/Progress": { - "post": { - "tags": [ - "Playstate" - ], - "summary": "Reports a user's playback progress.", - "operationId": "OnPlaybackProgress", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The id of the MediaSource.", - "schema": { - "type": "string" - } - }, - { - "name": "positionTicks", - "in": "query", - "description": "Optional. The current position, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "The audio stream index.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "The subtitle stream index.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "volumeLevel", - "in": "query", - "description": "Scale of 0-100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "playMethod", - "in": "query", - "description": "The play method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayMethod" - } - ] - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "repeatMode", - "in": "query", - "description": "The repeat mode.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/RepeatMode" - } - ] - } - }, - { - "name": "isPaused", - "in": "query", - "description": "Indicates if the player is paused.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "isMuted", - "in": "query", - "description": "Indicates if the player is muted.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "204": { - "description": "Play progress recorded." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Plugins": { - "get": { - "tags": [ - "Plugins" - ], - "summary": "Gets a list of currently installed plugins.", - "operationId": "GetPlugins", - "responses": { - "200": { - "description": "Installed plugins returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/PluginInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/PluginInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/PluginInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Plugins/{pluginId}": { - "delete": { - "tags": [ - "Plugins" - ], - "summary": "Uninstalls a plugin.", - "operationId": "UninstallPlugin", - "parameters": [ - { - "name": "pluginId", - "in": "path", - "description": "Plugin id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "Plugin uninstalled." - }, - "404": { - "description": "Plugin not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "deprecated": true, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/Plugins/{pluginId}/{version}": { - "delete": { - "tags": [ - "Plugins" - ], - "summary": "Uninstalls a plugin by version.", - "operationId": "UninstallPluginByVersion", - "parameters": [ - { - "name": "pluginId", - "in": "path", - "description": "Plugin id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "version", - "in": "path", - "description": "Plugin version.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Plugin uninstalled." - }, - "404": { - "description": "Plugin not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/Plugins/{pluginId}/{version}/Disable": { - "post": { - "tags": [ - "Plugins" - ], - "summary": "Disable a plugin.", - "operationId": "DisablePlugin", - "parameters": [ - { - "name": "pluginId", - "in": "path", - "description": "Plugin id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "version", - "in": "path", - "description": "Plugin version.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Plugin disabled." - }, - "404": { - "description": "Plugin not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/Plugins/{pluginId}/{version}/Enable": { - "post": { - "tags": [ - "Plugins" - ], - "summary": "Enables a disabled plugin.", - "operationId": "EnablePlugin", - "parameters": [ - { - "name": "pluginId", - "in": "path", - "description": "Plugin id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "version", - "in": "path", - "description": "Plugin version.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Plugin enabled." - }, - "404": { - "description": "Plugin not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation", - "DefaultAuthorization" - ] - } - ] - } - }, - "/Plugins/{pluginId}/{version}/Image": { - "get": { - "tags": [ - "Plugins" - ], - "summary": "Gets a plugin's image.", - "operationId": "GetPluginImage", - "parameters": [ - { - "name": "pluginId", - "in": "path", - "description": "Plugin id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "version", - "in": "path", - "description": "Plugin version.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Plugin image returned.", - "content": { - "image/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Not Found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Plugins/{pluginId}/Configuration": { - "get": { - "tags": [ - "Plugins" - ], - "summary": "Gets plugin configuration.", - "operationId": "GetPluginConfiguration", - "parameters": [ - { - "name": "pluginId", - "in": "path", - "description": "Plugin id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Plugin configuration returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BasePluginConfiguration" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BasePluginConfiguration" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BasePluginConfiguration" - } - } - } - }, - "404": { - "description": "Plugin not found or plugin configuration not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "Plugins" - ], - "summary": "Updates plugin configuration.", - "description": "Accepts plugin configuration as JSON body.", - "operationId": "UpdatePluginConfiguration", - "parameters": [ - { - "name": "pluginId", - "in": "path", - "description": "Plugin id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "Plugin configuration updated." - }, - "404": { - "description": "Plugin not found or plugin does not have configuration.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Plugins/{pluginId}/Manifest": { - "post": { - "tags": [ - "Plugins" - ], - "summary": "Gets a plugin's manifest.", - "operationId": "GetPluginManifest", - "parameters": [ - { - "name": "pluginId", - "in": "path", - "description": "Plugin id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "Plugin manifest returned." - }, - "404": { - "description": "Plugin not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/QuickConnect/Authorize": { - "post": { - "tags": [ - "QuickConnect" - ], - "summary": "Authorizes a pending quick connect request.", - "operationId": "Authorize", - "parameters": [ - { - "name": "code", - "in": "query", - "description": "Quick connect code to authorize.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Quick connect result authorized successfully.", - "content": { - "application/json": { - "schema": { - "type": "boolean" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "boolean" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "boolean" - } - } - } - }, - "403": { - "description": "Unknown user id.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/QuickConnect/Connect": { - "get": { - "tags": [ - "QuickConnect" - ], - "summary": "Attempts to retrieve authentication information.", - "operationId": "Connect", - "parameters": [ - { - "name": "secret", - "in": "query", - "description": "Secret previously returned from the Initiate endpoint.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Quick connect result returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/QuickConnectResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/QuickConnectResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/QuickConnectResult" - } - } - } - }, - "404": { - "description": "Unknown quick connect secret.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/QuickConnect/Enabled": { - "get": { - "tags": [ - "QuickConnect" - ], - "summary": "Gets the current quick connect state.", - "operationId": "GetEnabled", - "responses": { - "200": { - "description": "Quick connect state returned.", - "content": { - "application/json": { - "schema": { - "type": "boolean" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "boolean" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "boolean" - } - } - } - } - } - } - }, - "/QuickConnect/Initiate": { - "get": { - "tags": [ - "QuickConnect" - ], - "summary": "Initiate a new quick connect request.", - "operationId": "Initiate", - "responses": { - "200": { - "description": "Quick connect request successfully created.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/QuickConnectResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/QuickConnectResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/QuickConnectResult" - } - } - } - }, - "401": { - "description": "Quick connect is not active on this server." - } - } - } - }, - "/Items/{itemId}/RemoteImages": { - "get": { - "tags": [ - "RemoteImage" - ], - "summary": "Gets available remote images for an item.", - "operationId": "GetRemoteImages", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item Id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "type", - "in": "query", - "description": "The image type.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ] - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "providerName", - "in": "query", - "description": "Optional. The image provider to use.", - "schema": { - "type": "string" - } - }, - { - "name": "includeAllLanguages", - "in": "query", - "description": "Optional. Include all languages.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Remote Images returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/RemoteImageResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/RemoteImageResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/RemoteImageResult" - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/RemoteImages/Download": { - "post": { - "tags": [ - "RemoteImage" - ], - "summary": "Downloads a remote image for an item.", - "operationId": "DownloadRemoteImage", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item Id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "type", - "in": "query", - "description": "The image type.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Enum ImageType." - } - }, - { - "name": "imageUrl", - "in": "query", - "description": "The image url.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Remote image downloaded." - }, - "404": { - "description": "Remote image not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Items/{itemId}/RemoteImages/Providers": { - "get": { - "tags": [ - "RemoteImage" - ], - "summary": "Gets available remote image providers for an item.", - "operationId": "GetRemoteImageProviders", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "Item Id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Returned remote image providers.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageProviderInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageProviderInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageProviderInfo" - } - } - } - } - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/ScheduledTasks": { - "get": { - "tags": [ - "ScheduledTasks" - ], - "summary": "Get tasks.", - "operationId": "GetTasks", - "parameters": [ - { - "name": "isHidden", - "in": "query", - "description": "Optional filter tasks that are hidden, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isEnabled", - "in": "query", - "description": "Optional filter tasks that are enabled, or not.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Scheduled tasks retrieved.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TaskInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TaskInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TaskInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/ScheduledTasks/{taskId}": { - "get": { - "tags": [ - "ScheduledTasks" - ], - "summary": "Get task by id.", - "operationId": "GetTask", - "parameters": [ - { - "name": "taskId", - "in": "path", - "description": "Task Id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Task retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TaskInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/TaskInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/TaskInfo" - } - } - } - }, - "404": { - "description": "Task not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/ScheduledTasks/{taskId}/Triggers": { - "post": { - "tags": [ - "ScheduledTasks" - ], - "summary": "Update specified task triggers.", - "operationId": "UpdateTask", - "parameters": [ - { - "name": "taskId", - "in": "path", - "description": "Task Id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "Triggers.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TaskTriggerInfo" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TaskTriggerInfo" - } - } - }, - "application/*+json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TaskTriggerInfo" - } - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Task triggers updated." - }, - "404": { - "description": "Task not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/ScheduledTasks/Running/{taskId}": { - "post": { - "tags": [ - "ScheduledTasks" - ], - "summary": "Start specified task.", - "operationId": "StartTask", - "parameters": [ - { - "name": "taskId", - "in": "path", - "description": "Task Id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Task started." - }, - "404": { - "description": "Task not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "delete": { - "tags": [ - "ScheduledTasks" - ], - "summary": "Stop specified task.", - "operationId": "StopTask", - "parameters": [ - { - "name": "taskId", - "in": "path", - "description": "Task Id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Task stopped." - }, - "404": { - "description": "Task not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Search/Hints": { - "get": { - "tags": [ - "Search" - ], - "summary": "Gets the search hint result.", - "operationId": "Get", - "parameters": [ - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Supply a user id to search within a user's library or omit to search all.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "The search term to filter on.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "If specified, only results with the specified item types are returned. This allows multiple, comma delimeted.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "If specified, results with these item types are filtered out. This allows multiple, comma delimeted.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "mediaTypes", - "in": "query", - "description": "If specified, only results with the specified media types are returned. This allows multiple, comma delimeted.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "parentId", - "in": "query", - "description": "If specified, only children of the parent are returned.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "isMovie", - "in": "query", - "description": "Optional filter for movies.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSeries", - "in": "query", - "description": "Optional filter for series.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isNews", - "in": "query", - "description": "Optional filter for news.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isKids", - "in": "query", - "description": "Optional filter for kids.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSports", - "in": "query", - "description": "Optional filter for sports.", - "schema": { - "type": "boolean" - } - }, - { - "name": "includePeople", - "in": "query", - "description": "Optional filter whether to include people.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "includeMedia", - "in": "query", - "description": "Optional filter whether to include media.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "includeGenres", - "in": "query", - "description": "Optional filter whether to include genres.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "includeStudios", - "in": "query", - "description": "Optional filter whether to include studios.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "includeArtists", - "in": "query", - "description": "Optional filter whether to include artists.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Search hint returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SearchHintResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/SearchHintResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/SearchHintResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Auth/PasswordResetProviders": { - "get": { - "tags": [ - "Session" - ], - "summary": "Get all password reset providers.", - "operationId": "GetPasswordResetProviders", - "responses": { - "200": { - "description": "Password reset providers retrieved.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Auth/Providers": { - "get": { - "tags": [ - "Session" - ], - "summary": "Get all auth providers.", - "operationId": "GetAuthProviders", - "responses": { - "200": { - "description": "Auth providers retrieved.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Sessions": { - "get": { - "tags": [ - "Session" - ], - "summary": "Gets a list of sessions.", - "operationId": "GetSessions", - "parameters": [ - { - "name": "controllableByUserId", - "in": "query", - "description": "Filter by sessions that a given user is allowed to remote control.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "Filter by device Id.", - "schema": { - "type": "string" - } - }, - { - "name": "activeWithinSeconds", - "in": "query", - "description": "Optional. Filter by sessions that were active in the last n seconds.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "List of sessions returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SessionInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SessionInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SessionInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/{sessionId}/Command": { - "post": { - "tags": [ - "Session" - ], - "summary": "Issues a full general command to a client.", - "operationId": "SendFullGeneralCommand", - "parameters": [ - { - "name": "sessionId", - "in": "path", - "description": "The session id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "The MediaBrowser.Model.Session.GeneralCommand.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/GeneralCommand" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/GeneralCommand" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/GeneralCommand" - } - ] - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Full general command sent to session." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/{sessionId}/Command/{command}": { - "post": { - "tags": [ - "Session" - ], - "summary": "Issues a general command to a client.", - "operationId": "SendGeneralCommand", - "parameters": [ - { - "name": "sessionId", - "in": "path", - "description": "The session id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "command", - "in": "path", - "description": "The command to send.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/GeneralCommandType" - } - ], - "description": "This exists simply to identify a set of known commands." - } - } - ], - "responses": { - "204": { - "description": "General command sent to session." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/{sessionId}/Message": { - "post": { - "tags": [ - "Session" - ], - "summary": "Issues a command to a client to display a message to the user.", - "operationId": "SendMessageCommand", - "parameters": [ - { - "name": "sessionId", - "in": "path", - "description": "The session id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "The MediaBrowser.Model.Session.MessageCommand object containing Header, Message Text, and TimeoutMs.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MessageCommand" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MessageCommand" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MessageCommand" - } - ] - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Message sent." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/{sessionId}/Playing": { - "post": { - "tags": [ - "Session" - ], - "summary": "Instructs a session to play an item.", - "operationId": "Play", - "parameters": [ - { - "name": "sessionId", - "in": "path", - "description": "The session id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "playCommand", - "in": "query", - "description": "The type of play command to issue (PlayNow, PlayNext, PlayLast). Clients who have not yet implemented play next and play last may play now.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayCommand" - } - ], - "description": "Enum PlayCommand." - } - }, - { - "name": "itemIds", - "in": "query", - "description": "The ids of the items to play, comma delimited.", - "required": true, - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "startPositionTicks", - "in": "query", - "description": "The starting position of the first item.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "Optional. The media source id.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to play.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to play.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The start index.", - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "204": { - "description": "Instruction sent to session." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/{sessionId}/Playing/{command}": { - "post": { - "tags": [ - "Session" - ], - "summary": "Issues a playstate command to a client.", - "operationId": "SendPlaystateCommand", - "parameters": [ - { - "name": "sessionId", - "in": "path", - "description": "The session id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "command", - "in": "path", - "description": "The MediaBrowser.Model.Session.PlaystateCommand.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaystateCommand" - } - ], - "description": "Enum PlaystateCommand." - } - }, - { - "name": "seekPositionTicks", - "in": "query", - "description": "The optional position ticks.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "controllingUserId", - "in": "query", - "description": "The optional controlling user id.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Playstate command sent to session." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/{sessionId}/System/{command}": { - "post": { - "tags": [ - "Session" - ], - "summary": "Issues a system command to a client.", - "operationId": "SendSystemCommand", - "parameters": [ - { - "name": "sessionId", - "in": "path", - "description": "The session id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "command", - "in": "path", - "description": "The command to send.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/GeneralCommandType" - } - ], - "description": "This exists simply to identify a set of known commands." - } - } - ], - "responses": { - "204": { - "description": "System command sent to session." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/{sessionId}/User/{userId}": { - "post": { - "tags": [ - "Session" - ], - "summary": "Adds an additional user to a session.", - "operationId": "AddUserToSession", - "parameters": [ - { - "name": "sessionId", - "in": "path", - "description": "The session id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "User added to session." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "Session" - ], - "summary": "Removes an additional user from a session.", - "operationId": "RemoveUserFromSession", - "parameters": [ - { - "name": "sessionId", - "in": "path", - "description": "The session id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "User removed from session." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/{sessionId}/Viewing": { - "post": { - "tags": [ - "Session" - ], - "summary": "Instructs a session to browse to an item or view.", - "operationId": "DisplayContent", - "parameters": [ - { - "name": "sessionId", - "in": "path", - "description": "The session Id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "itemType", - "in": "query", - "description": "The type of item to browse to.", - "required": true, - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemKind" - } - ], - "description": "The base item kind." - } - }, - { - "name": "itemId", - "in": "query", - "description": "The Id of the item.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "itemName", - "in": "query", - "description": "The name of the item.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Instruction sent to session." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/Capabilities": { - "post": { - "tags": [ - "Session" - ], - "summary": "Updates capabilities for a device.", - "operationId": "PostCapabilities", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "The session id.", - "schema": { - "type": "string" - } - }, - { - "name": "playableMediaTypes", - "in": "query", - "description": "A list of playable media types, comma delimited. Audio, Video, Book, Photo.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "supportedCommands", - "in": "query", - "description": "A list of supported remote control commands, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GeneralCommandType" - } - } - }, - { - "name": "supportsMediaControl", - "in": "query", - "description": "Determines whether media can be played remotely..", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "supportsSync", - "in": "query", - "description": "Determines whether sync is supported.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "supportsPersistentIdentifier", - "in": "query", - "description": "Determines whether the device supports a unique identifier.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "204": { - "description": "Capabilities posted." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/Capabilities/Full": { - "post": { - "tags": [ - "Session" - ], - "summary": "Updates capabilities for a device.", - "operationId": "PostFullCapabilities", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "The session id.", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "The MediaBrowser.Model.Session.ClientCapabilities.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ClientCapabilitiesDto" - } - ], - "description": "Client capabilities dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ClientCapabilitiesDto" - } - ], - "description": "Client capabilities dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ClientCapabilitiesDto" - } - ], - "description": "Client capabilities dto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Capabilities updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/Logout": { - "post": { - "tags": [ - "Session" - ], - "summary": "Reports that a session has ended.", - "operationId": "ReportSessionEnded", - "responses": { - "204": { - "description": "Session end reported to server." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Sessions/Viewing": { - "post": { - "tags": [ - "Session" - ], - "summary": "Reports that a session is viewing an item.", - "operationId": "ReportViewing", - "parameters": [ - { - "name": "sessionId", - "in": "query", - "description": "The session id.", - "schema": { - "type": "string" - } - }, - { - "name": "itemId", - "in": "query", - "description": "The item id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Session reported to server." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Startup/Complete": { - "post": { - "tags": [ - "Startup" - ], - "summary": "Completes the startup wizard.", - "operationId": "CompleteWizard", - "responses": { - "204": { - "description": "Startup wizard completed." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Startup/Configuration": { - "get": { - "tags": [ - "Startup" - ], - "summary": "Gets the initial startup wizard configuration.", - "operationId": "GetStartupConfiguration", - "responses": { - "200": { - "description": "Initial startup wizard configuration retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/StartupConfigurationDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/StartupConfigurationDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/StartupConfigurationDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - }, - "post": { - "tags": [ - "Startup" - ], - "summary": "Sets the initial startup wizard configuration.", - "operationId": "UpdateInitialConfiguration", - "requestBody": { - "description": "The updated startup configuration.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/StartupConfigurationDto" - } - ], - "description": "The startup configuration DTO." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/StartupConfigurationDto" - } - ], - "description": "The startup configuration DTO." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/StartupConfigurationDto" - } - ], - "description": "The startup configuration DTO." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Configuration saved." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Startup/FirstUser": { - "get": { - "tags": [ - "Startup" - ], - "summary": "Gets the first user.", - "operationId": "GetFirstUser_2", - "responses": { - "200": { - "description": "Initial user retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/StartupUserDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/StartupUserDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/StartupUserDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Startup/RemoteAccess": { - "post": { - "tags": [ - "Startup" - ], - "summary": "Sets remote access and UPnP.", - "operationId": "SetRemoteAccess", - "requestBody": { - "description": "The startup remote access dto.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/StartupRemoteAccessDto" - } - ], - "description": "Startup remote access dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/StartupRemoteAccessDto" - } - ], - "description": "Startup remote access dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/StartupRemoteAccessDto" - } - ], - "description": "Startup remote access dto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Configuration saved." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Startup/User": { - "get": { - "tags": [ - "Startup" - ], - "summary": "Gets the first user.", - "operationId": "GetFirstUser", - "responses": { - "200": { - "description": "Initial user retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/StartupUserDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/StartupUserDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/StartupUserDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - }, - "post": { - "tags": [ - "Startup" - ], - "summary": "Sets the user name and password.", - "operationId": "UpdateStartupUser", - "requestBody": { - "description": "The DTO containing username and password.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/StartupUserDto" - } - ], - "description": "The startup user DTO." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/StartupUserDto" - } - ], - "description": "The startup user DTO." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/StartupUserDto" - } - ], - "description": "The startup user DTO." - } - } - } - }, - "responses": { - "204": { - "description": "Updated user name and password." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrElevated" - ] - } - ] - } - }, - "/Studios": { - "get": { - "tags": [ - "Studios" - ], - "summary": "Gets all studios from a given item, folder, or the entire library.", - "operationId": "GetStudios", - "parameters": [ - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "Optional. Search term.", - "schema": { - "type": "string" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional filter by items that are marked as favorite, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional, include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional, the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "User id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "nameStartsWithOrGreater", - "in": "query", - "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameStartsWith", - "in": "query", - "description": "Optional filter by items whose name is sorted equally than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameLessThan", - "in": "query", - "description": "Optional filter by items whose name is equally or lesser than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional, include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Total record count.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Studios returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Studios/{name}": { - "get": { - "tags": [ - "Studios" - ], - "summary": "Gets a studio by name.", - "operationId": "GetStudio", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "Studio name.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Studio returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/FallbackFont/Fonts": { - "get": { - "tags": [ - "Subtitle" - ], - "summary": "Gets a list of available fallback font files.", - "operationId": "GetFallbackFontList", - "responses": { - "200": { - "description": "Information retrieved.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FontFile" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FontFile" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/FontFile" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/FallbackFont/Fonts/{name}": { - "get": { - "tags": [ - "Subtitle" - ], - "summary": "Gets a fallback font file.", - "operationId": "GetFallbackFont", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "The name of the fallback font file to get.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Fallback font file retrieved.", - "content": { - "font/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/RemoteSearch/Subtitles/{language}": { - "get": { - "tags": [ - "Subtitle" - ], - "summary": "Search remote subtitles.", - "operationId": "SearchRemoteSubtitles", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "language", - "in": "path", - "description": "The language of the subtitles.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "isPerfectMatch", - "in": "query", - "description": "Optional. Only show subtitles which are a perfect match.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Subtitles retrieved.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSubtitleInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSubtitleInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteSubtitleInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Items/{itemId}/RemoteSearch/Subtitles/{subtitleId}": { - "post": { - "tags": [ - "Subtitle" - ], - "summary": "Downloads a remote subtitle.", - "operationId": "DownloadRemoteSubtitles", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "subtitleId", - "in": "path", - "description": "The subtitle id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Subtitle downloaded." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Providers/Subtitles/Subtitles/{id}": { - "get": { - "tags": [ - "Subtitle" - ], - "summary": "Gets the remote subtitles.", - "operationId": "GetRemoteSubtitles", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "File returned.", - "content": { - "text/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Videos/{itemId}/{mediaSourceId}/Subtitles/{index}/subtitles.m3u8": { - "get": { - "tags": [ - "Subtitle" - ], - "summary": "Gets an HLS subtitle playlist.", - "operationId": "GetSubtitlePlaylist", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "index", - "in": "path", - "description": "The subtitle stream index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "path", - "description": "The media source id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The subtitle segment length.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Subtitle playlist retrieved.", - "content": { - "application/x-mpegURL": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Videos/{itemId}/Subtitles": { - "post": { - "tags": [ - "Subtitle" - ], - "summary": "Upload an external subtitle file.", - "operationId": "UploadSubtitle", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item the subtitle belongs to.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "requestBody": { - "description": "The request body.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UploadSubtitleDto" - } - ], - "description": "Upload subtitles dto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UploadSubtitleDto" - } - ], - "description": "Upload subtitles dto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UploadSubtitleDto" - } - ], - "description": "Upload subtitles dto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Subtitle uploaded." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Videos/{itemId}/Subtitles/{index}": { - "delete": { - "tags": [ - "Subtitle" - ], - "summary": "Deletes an external subtitle file.", - "operationId": "DeleteSubtitle", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "index", - "in": "path", - "description": "The index of the subtitle file.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "204": { - "description": "Subtitle deleted." - }, - "404": { - "description": "Item not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/{routeStartPositionTicks}/Stream.{routeFormat}": { - "get": { - "tags": [ - "Subtitle" - ], - "summary": "Gets subtitles in a specified format.", - "operationId": "GetSubtitleWithTicks", - "parameters": [ - { - "name": "routeItemId", - "in": "path", - "description": "The (route) item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "routeMediaSourceId", - "in": "path", - "description": "The (route) media source id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "routeIndex", - "in": "path", - "description": "The (route) subtitle stream index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "routeStartPositionTicks", - "in": "path", - "description": "The (route) start position of the subtitle in ticks.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "routeFormat", - "in": "path", - "description": "The (route) format of the returned subtitle.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "itemId", - "in": "query", - "description": "The item id.", - "deprecated": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media source id.", - "deprecated": true, - "schema": { - "type": "string" - } - }, - { - "name": "index", - "in": "query", - "description": "The subtitle stream index.", - "deprecated": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "startPositionTicks", - "in": "query", - "description": "The start position of the subtitle in ticks.", - "deprecated": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "format", - "in": "query", - "description": "The format of the returned subtitle.", - "deprecated": true, - "schema": { - "type": "string" - } - }, - { - "name": "endPositionTicks", - "in": "query", - "description": "Optional. The end position of the subtitle in ticks.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Optional. Whether to copy the timestamps.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "addVttTimeMap", - "in": "query", - "description": "Optional. Whether to add a VTT time map.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "File returned.", - "content": { - "text/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - } - }, - "/Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/Stream.{routeFormat}": { - "get": { - "tags": [ - "Subtitle" - ], - "summary": "Gets subtitles in a specified format.", - "operationId": "GetSubtitle", - "parameters": [ - { - "name": "routeItemId", - "in": "path", - "description": "The (route) item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "routeMediaSourceId", - "in": "path", - "description": "The (route) media source id.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "routeIndex", - "in": "path", - "description": "The (route) subtitle stream index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "routeFormat", - "in": "path", - "description": "The (route) format of the returned subtitle.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "itemId", - "in": "query", - "description": "The item id.", - "deprecated": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media source id.", - "deprecated": true, - "schema": { - "type": "string" - } - }, - { - "name": "index", - "in": "query", - "description": "The subtitle stream index.", - "deprecated": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "format", - "in": "query", - "description": "The format of the returned subtitle.", - "deprecated": true, - "schema": { - "type": "string" - } - }, - { - "name": "endPositionTicks", - "in": "query", - "description": "Optional. The end position of the subtitle in ticks.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Optional. Whether to copy the timestamps.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "addVttTimeMap", - "in": "query", - "description": "Optional. Whether to add a VTT time map.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "startPositionTicks", - "in": "query", - "description": "The start position of the subtitle in ticks.", - "schema": { - "type": "integer", - "format": "int64", - "default": 0 - } - } - ], - "responses": { - "200": { - "description": "File returned.", - "content": { - "text/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - } - }, - "/Users/{userId}/Suggestions": { - "get": { - "tags": [ - "Suggestions" - ], - "summary": "Gets suggestions.", - "operationId": "GetSuggestions", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "mediaType", - "in": "query", - "description": "The media types.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "type", - "in": "query", - "description": "The type.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The start index.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The limit.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Whether to enable the total record count.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Suggestions returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/SyncPlay/Buffering": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Notify SyncPlay group that member is buffering.", - "operationId": "SyncPlayBuffering", - "requestBody": { - "description": "The player status.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BufferRequestDto" - } - ], - "description": "Class BufferRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BufferRequestDto" - } - ], - "description": "Class BufferRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/BufferRequestDto" - } - ], - "description": "Class BufferRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Group state update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/Join": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Join an existing SyncPlay group.", - "operationId": "SyncPlayJoinGroup", - "requestBody": { - "description": "The group to join.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/JoinGroupRequestDto" - } - ], - "description": "Class JoinGroupRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/JoinGroupRequestDto" - } - ], - "description": "Class JoinGroupRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/JoinGroupRequestDto" - } - ], - "description": "Class JoinGroupRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Group join successful." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayJoinGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/Leave": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Leave the joined SyncPlay group.", - "operationId": "SyncPlayLeaveGroup", - "responses": { - "204": { - "description": "Group leave successful." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/List": { - "get": { - "tags": [ - "SyncPlay" - ], - "summary": "Gets all SyncPlay groups.", - "operationId": "SyncPlayGetGroups", - "responses": { - "200": { - "description": "Groups returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GroupInfoDto" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GroupInfoDto" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GroupInfoDto" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayJoinGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/MovePlaylistItem": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request to move an item in the playlist in SyncPlay group.", - "operationId": "SyncPlayMovePlaylistItem", - "requestBody": { - "description": "The new position for the item.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MovePlaylistItemRequestDto" - } - ], - "description": "Class MovePlaylistItemRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MovePlaylistItemRequestDto" - } - ], - "description": "Class MovePlaylistItemRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/MovePlaylistItemRequestDto" - } - ], - "description": "Class MovePlaylistItemRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Queue update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/New": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Create a new SyncPlay group.", - "operationId": "SyncPlayCreateGroup", - "requestBody": { - "description": "The settings of the new group.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/NewGroupRequestDto" - } - ], - "description": "Class NewGroupRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/NewGroupRequestDto" - } - ], - "description": "Class NewGroupRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/NewGroupRequestDto" - } - ], - "description": "Class NewGroupRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "New group created." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayCreateGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/NextItem": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request next item in SyncPlay group.", - "operationId": "SyncPlayNextItem", - "requestBody": { - "description": "The current item information.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/NextItemRequestDto" - } - ], - "description": "Class NextItemRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/NextItemRequestDto" - } - ], - "description": "Class NextItemRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/NextItemRequestDto" - } - ], - "description": "Class NextItemRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Next item update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/Pause": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request pause in SyncPlay group.", - "operationId": "SyncPlayPause", - "responses": { - "204": { - "description": "Pause update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/Ping": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Update session ping.", - "operationId": "SyncPlayPing", - "requestBody": { - "description": "The new ping.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PingRequestDto" - } - ], - "description": "Class PingRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PingRequestDto" - } - ], - "description": "Class PingRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PingRequestDto" - } - ], - "description": "Class PingRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Ping updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/PreviousItem": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request previous item in SyncPlay group.", - "operationId": "SyncPlayPreviousItem", - "requestBody": { - "description": "The current item information.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PreviousItemRequestDto" - } - ], - "description": "Class PreviousItemRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PreviousItemRequestDto" - } - ], - "description": "Class PreviousItemRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PreviousItemRequestDto" - } - ], - "description": "Class PreviousItemRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Previous item update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/Queue": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request to queue items to the playlist of a SyncPlay group.", - "operationId": "SyncPlayQueue", - "requestBody": { - "description": "The items to add.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/QueueRequestDto" - } - ], - "description": "Class QueueRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/QueueRequestDto" - } - ], - "description": "Class QueueRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/QueueRequestDto" - } - ], - "description": "Class QueueRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Queue update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/Ready": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Notify SyncPlay group that member is ready for playback.", - "operationId": "SyncPlayReady", - "requestBody": { - "description": "The player status.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ReadyRequestDto" - } - ], - "description": "Class ReadyRequest." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ReadyRequestDto" - } - ], - "description": "Class ReadyRequest." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ReadyRequestDto" - } - ], - "description": "Class ReadyRequest." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Group state update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/RemoveFromPlaylist": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request to remove items from the playlist in SyncPlay group.", - "operationId": "SyncPlayRemoveFromPlaylist", - "requestBody": { - "description": "The items to remove.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/RemoveFromPlaylistRequestDto" - } - ], - "description": "Class RemoveFromPlaylistRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/RemoveFromPlaylistRequestDto" - } - ], - "description": "Class RemoveFromPlaylistRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/RemoveFromPlaylistRequestDto" - } - ], - "description": "Class RemoveFromPlaylistRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Queue update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/Seek": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request seek in SyncPlay group.", - "operationId": "SyncPlaySeek", - "requestBody": { - "description": "The new playback position.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeekRequestDto" - } - ], - "description": "Class SeekRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeekRequestDto" - } - ], - "description": "Class SeekRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SeekRequestDto" - } - ], - "description": "Class SeekRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Seek update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/SetIgnoreWait": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request SyncPlay group to ignore member during group-wait.", - "operationId": "SyncPlaySetIgnoreWait", - "requestBody": { - "description": "The settings to set.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/IgnoreWaitRequestDto" - } - ], - "description": "Class IgnoreWaitRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/IgnoreWaitRequestDto" - } - ], - "description": "Class IgnoreWaitRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/IgnoreWaitRequestDto" - } - ], - "description": "Class IgnoreWaitRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Member state updated." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/SetNewQueue": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request to set new playlist in SyncPlay group.", - "operationId": "SyncPlaySetNewQueue", - "requestBody": { - "description": "The new playlist to play in the group.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayRequestDto" - } - ], - "description": "Class PlayRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayRequestDto" - } - ], - "description": "Class PlayRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayRequestDto" - } - ], - "description": "Class PlayRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Queue update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/SetPlaylistItem": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request to change playlist item in SyncPlay group.", - "operationId": "SyncPlaySetPlaylistItem", - "requestBody": { - "description": "The new item to play.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetPlaylistItemRequestDto" - } - ], - "description": "Class SetPlaylistItemRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetPlaylistItemRequestDto" - } - ], - "description": "Class SetPlaylistItemRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetPlaylistItemRequestDto" - } - ], - "description": "Class SetPlaylistItemRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Queue update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/SetRepeatMode": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request to set repeat mode in SyncPlay group.", - "operationId": "SyncPlaySetRepeatMode", - "requestBody": { - "description": "The new repeat mode.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetRepeatModeRequestDto" - } - ], - "description": "Class SetRepeatModeRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetRepeatModeRequestDto" - } - ], - "description": "Class SetRepeatModeRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetRepeatModeRequestDto" - } - ], - "description": "Class SetRepeatModeRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Play queue update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/SetShuffleMode": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request to set shuffle mode in SyncPlay group.", - "operationId": "SyncPlaySetShuffleMode", - "requestBody": { - "description": "The new shuffle mode.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetShuffleModeRequestDto" - } - ], - "description": "Class SetShuffleModeRequestDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetShuffleModeRequestDto" - } - ], - "description": "Class SetShuffleModeRequestDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SetShuffleModeRequestDto" - } - ], - "description": "Class SetShuffleModeRequestDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Play queue update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/Stop": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request stop in SyncPlay group.", - "operationId": "SyncPlayStop", - "responses": { - "204": { - "description": "Stop update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/SyncPlay/Unpause": { - "post": { - "tags": [ - "SyncPlay" - ], - "summary": "Request unpause in SyncPlay group.", - "operationId": "SyncPlayUnpause", - "responses": { - "204": { - "description": "Unpause update sent to all group members." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "SyncPlayIsInGroup", - "SyncPlayHasAccess" - ] - } - ] - } - }, - "/System/Endpoint": { - "get": { - "tags": [ - "System" - ], - "summary": "Gets information about the request endpoint.", - "operationId": "GetEndpointInfo", - "responses": { - "200": { - "description": "Information retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EndPointInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/EndPointInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/EndPointInfo" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/System/Info": { - "get": { - "tags": [ - "System" - ], - "summary": "Gets information about the server.", - "operationId": "GetSystemInfo", - "responses": { - "200": { - "description": "Information retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SystemInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/SystemInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/SystemInfo" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "FirstTimeSetupOrIgnoreParentalControl" - ] - } - ] - } - }, - "/System/Info/Public": { - "get": { - "tags": [ - "System" - ], - "summary": "Gets public information about the server.", - "operationId": "GetPublicSystemInfo", - "responses": { - "200": { - "description": "Information retrieved.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PublicSystemInfo" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/PublicSystemInfo" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/PublicSystemInfo" - } - } - } - } - } - } - }, - "/System/Logs": { - "get": { - "tags": [ - "System" - ], - "summary": "Gets a list of available server log files.", - "operationId": "GetServerLogs", - "responses": { - "200": { - "description": "Information retrieved.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LogFile" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LogFile" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LogFile" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/System/Logs/Log": { - "get": { - "tags": [ - "System" - ], - "summary": "Gets a log file.", - "operationId": "GetLogFile", - "parameters": [ - { - "name": "name", - "in": "query", - "description": "The name of the log file to get.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Log file retrieved.", - "content": { - "text/plain": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/System/Ping": { - "get": { - "tags": [ - "System" - ], - "summary": "Pings the system.", - "operationId": "GetPingSystem", - "responses": { - "200": { - "description": "Information retrieved.", - "content": { - "application/json": { - "schema": { - "type": "string" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "string" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "string" - } - } - } - } - } - }, - "post": { - "tags": [ - "System" - ], - "summary": "Pings the system.", - "operationId": "PostPingSystem", - "responses": { - "200": { - "description": "Information retrieved.", - "content": { - "application/json": { - "schema": { - "type": "string" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "string" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "string" - } - } - } - } - } - } - }, - "/System/Restart": { - "post": { - "tags": [ - "System" - ], - "summary": "Restarts the application.", - "operationId": "RestartApplication", - "responses": { - "204": { - "description": "Server restarted." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "LocalAccessOrRequiresElevation" - ] - } - ] - } - }, - "/System/Shutdown": { - "post": { - "tags": [ - "System" - ], - "summary": "Shuts down the application.", - "operationId": "ShutdownApplication", - "responses": { - "204": { - "description": "Server shut down." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/System/WakeOnLanInfo": { - "get": { - "tags": [ - "System" - ], - "summary": "Gets wake on lan information.", - "operationId": "GetWakeOnLanInfo", - "responses": { - "200": { - "description": "Information retrieved.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/WakeOnLanInfo" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/WakeOnLanInfo" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/WakeOnLanInfo" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "deprecated": true, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/GetUtcTime": { - "get": { - "tags": [ - "TimeSync" - ], - "summary": "Gets the current UTC time.", - "operationId": "GetUtcTime", - "responses": { - "200": { - "description": "Time returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UtcTimeResponse" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/UtcTimeResponse" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/UtcTimeResponse" - } - } - } - } - } - } - }, - "/Tmdb/ClientConfiguration": { - "get": { - "tags": [ - "Tmdb" - ], - "summary": "Gets the TMDb image configuration options.", - "operationId": "TmdbClientConfiguration", - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConfigImageTypes" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Trailers": { - "get": { - "tags": [ - "Trailers" - ], - "summary": "Finds movies and trailers similar to a given trailer.", - "operationId": "GetTrailers", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "The user id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "maxOfficialRating", - "in": "query", - "description": "Optional filter by maximum official rating (PG, PG-13, TV-MA, etc).", - "schema": { - "type": "string" - } - }, - { - "name": "hasThemeSong", - "in": "query", - "description": "Optional filter by items with theme songs.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasThemeVideo", - "in": "query", - "description": "Optional filter by items with theme videos.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasSubtitles", - "in": "query", - "description": "Optional filter by items with subtitles.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasSpecialFeature", - "in": "query", - "description": "Optional filter by items with special features.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasTrailer", - "in": "query", - "description": "Optional filter by items with trailers.", - "schema": { - "type": "boolean" - } - }, - { - "name": "adjacentTo", - "in": "query", - "description": "Optional. Return items that are siblings of a supplied item.", - "schema": { - "type": "string" - } - }, - { - "name": "parentIndexNumber", - "in": "query", - "description": "Optional filter by parent index number.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "hasParentalRating", - "in": "query", - "description": "Optional filter by items that have or do not have a parental rating.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isHd", - "in": "query", - "description": "Optional filter by items that are HD or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "is4K", - "in": "query", - "description": "Optional filter by items that are 4K or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "locationTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on LocationType. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LocationType" - } - } - }, - { - "name": "excludeLocationTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on the LocationType. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LocationType" - } - } - }, - { - "name": "isMissing", - "in": "query", - "description": "Optional filter by items that are missing episodes or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isUnaired", - "in": "query", - "description": "Optional filter by items that are unaired episodes or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "minCommunityRating", - "in": "query", - "description": "Optional filter by minimum community rating.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "minCriticRating", - "in": "query", - "description": "Optional filter by minimum critic rating.", - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "minPremiereDate", - "in": "query", - "description": "Optional. The minimum premiere date. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "minDateLastSaved", - "in": "query", - "description": "Optional. The minimum last saved date. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "minDateLastSavedForUser", - "in": "query", - "description": "Optional. The minimum last saved date for the current user. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "maxPremiereDate", - "in": "query", - "description": "Optional. The maximum premiere date. Format = ISO.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "hasOverview", - "in": "query", - "description": "Optional filter by items that have an overview or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasImdbId", - "in": "query", - "description": "Optional filter by items that have an imdb id or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasTmdbId", - "in": "query", - "description": "Optional filter by items that have a tmdb id or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasTvdbId", - "in": "query", - "description": "Optional filter by items that have a tvdb id or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isMovie", - "in": "query", - "description": "Optional filter for live tv movies.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSeries", - "in": "query", - "description": "Optional filter for live tv series.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isNews", - "in": "query", - "description": "Optional filter for live tv news.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isKids", - "in": "query", - "description": "Optional filter for live tv kids.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isSports", - "in": "query", - "description": "Optional filter for live tv sports.", - "schema": { - "type": "boolean" - } - }, - { - "name": "excludeItemIds", - "in": "query", - "description": "Optional. If specified, results will be filtered by excluding item ids. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "recursive", - "in": "query", - "description": "When searching within folders, this determines whether or not the search will be recursive. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "searchTerm", - "in": "query", - "description": "Optional. Filter based on a search term.", - "schema": { - "type": "string" - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Sort Order - Ascending,Descending.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "filters", - "in": "query", - "description": "Optional. Specify additional filters to apply. This allows multiple, comma delimited. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFilter" - } - } - }, - { - "name": "isFavorite", - "in": "query", - "description": "Optional filter by items that are marked as favorite, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "mediaTypes", - "in": "query", - "description": "Optional filter by MediaType. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "imageTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on those containing image types. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "isPlayed", - "in": "query", - "description": "Optional filter by items that are played, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "genres", - "in": "query", - "description": "Optional. If specified, results will be filtered based on genre. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "officialRatings", - "in": "query", - "description": "Optional. If specified, results will be filtered based on OfficialRating. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "tags", - "in": "query", - "description": "Optional. If specified, results will be filtered based on tag. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "years", - "in": "query", - "description": "Optional. If specified, results will be filtered based on production year. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int32" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional, include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional, the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "person", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified person.", - "schema": { - "type": "string" - } - }, - { - "name": "personIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified person id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "personTypes", - "in": "query", - "description": "Optional. If specified, along with Person, results will be filtered to include only those containing the specified person and PersonType. Allows multiple, comma-delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "studios", - "in": "query", - "description": "Optional. If specified, results will be filtered based on studio. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "artists", - "in": "query", - "description": "Optional. If specified, results will be filtered based on artists. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "excludeArtistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on artist id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "artistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified artist id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "albumArtistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified album artist id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "contributingArtistIds", - "in": "query", - "description": "Optional. If specified, results will be filtered to include only those containing the specified contributing artist id.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "albums", - "in": "query", - "description": "Optional. If specified, results will be filtered based on album. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "albumIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on album id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "ids", - "in": "query", - "description": "Optional. If specific items are needed, specify a list of item id's to retrieve. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "videoTypes", - "in": "query", - "description": "Optional filter by VideoType (videofile, dvd, bluray, iso). Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/VideoType" - } - } - }, - { - "name": "minOfficialRating", - "in": "query", - "description": "Optional filter by minimum official rating (PG, PG-13, TV-MA, etc).", - "schema": { - "type": "string" - } - }, - { - "name": "isLocked", - "in": "query", - "description": "Optional filter by items that are locked.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isPlaceHolder", - "in": "query", - "description": "Optional filter by items that are placeholders.", - "schema": { - "type": "boolean" - } - }, - { - "name": "hasOfficialRating", - "in": "query", - "description": "Optional filter by items that have official ratings.", - "schema": { - "type": "boolean" - } - }, - { - "name": "collapseBoxSetItems", - "in": "query", - "description": "Whether or not to hide items behind their boxsets.", - "schema": { - "type": "boolean" - } - }, - { - "name": "minWidth", - "in": "query", - "description": "Optional. Filter by the minimum width of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minHeight", - "in": "query", - "description": "Optional. Filter by the minimum height of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. Filter by the maximum width of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. Filter by the maximum height of the item.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "is3D", - "in": "query", - "description": "Optional filter by items that are 3D, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "seriesStatus", - "in": "query", - "description": "Optional filter by Series Status. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SeriesStatus" - } - } - }, - { - "name": "nameStartsWithOrGreater", - "in": "query", - "description": "Optional filter by items whose name is sorted equally or greater than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameStartsWith", - "in": "query", - "description": "Optional filter by items whose name is sorted equally than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "nameLessThan", - "in": "query", - "description": "Optional filter by items whose name is equally or lesser than a given input string.", - "schema": { - "type": "string" - } - }, - { - "name": "studioIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on studio id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "genreIds", - "in": "query", - "description": "Optional. If specified, results will be filtered based on genre id. This allows multiple, pipe delimited.", - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Optional. Enable the total record count.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional, include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Shows/{seriesId}/Episodes": { - "get": { - "tags": [ - "TvShows" - ], - "summary": "Gets episodes for a tv season.", - "operationId": "GetEpisodes", - "parameters": [ - { - "name": "seriesId", - "in": "path", - "description": "The series id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "The user id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "season", - "in": "query", - "description": "Optional filter by season number.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "seasonId", - "in": "query", - "description": "Optional. Filter by season id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "isMissing", - "in": "query", - "description": "Optional. Filter by items that are missing episodes or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "adjacentTo", - "in": "query", - "description": "Optional. Return items that are siblings of a supplied item.", - "schema": { - "type": "string" - } - }, - { - "name": "startItemId", - "in": "query", - "description": "Optional. Skip through the list until a given item is found.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional, include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional, the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "404": { - "description": "Not Found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Shows/{seriesId}/Seasons": { - "get": { - "tags": [ - "TvShows" - ], - "summary": "Gets seasons for a tv series.", - "operationId": "GetSeasons", - "parameters": [ - { - "name": "seriesId", - "in": "path", - "description": "The series id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "The user id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "isSpecialSeason", - "in": "query", - "description": "Optional. Filter by special season.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isMissing", - "in": "query", - "description": "Optional. Filter by items that are missing episodes or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "adjacentTo", - "in": "query", - "description": "Optional. Return items that are siblings of a supplied item.", - "schema": { - "type": "string" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "404": { - "description": "Not Found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Shows/NextUp": { - "get": { - "tags": [ - "TvShows" - ], - "summary": "Gets a list of next up episodes.", - "operationId": "GetNextUp", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "The user id of the user to get the next up episodes for.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "seriesId", - "in": "query", - "description": "Optional. Filter by series id.", - "schema": { - "type": "string" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Optional. Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "nextUpDateCutoff", - "in": "query", - "description": "Optional. Starting date of shows to show in Next Up section.", - "schema": { - "type": "string", - "format": "date-time" - } - }, - { - "name": "enableTotalRecordCount", - "in": "query", - "description": "Whether to enable the total records count. Defaults to true.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "disableFirstEpisode", - "in": "query", - "description": "Whether to disable sending the first episode in a series as next up.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "enableRewatching", - "in": "query", - "description": "Whether to include watched episode in next up results.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Shows/Upcoming": { - "get": { - "tags": [ - "TvShows" - ], - "summary": "Gets a list of upcoming episodes.", - "operationId": "GetUpcomingEpisodes", - "parameters": [ - { - "name": "userId", - "in": "query", - "description": "The user id of the user to get the upcoming episodes for.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "startIndex", - "in": "query", - "description": "Optional. The record index to start at. All items with a lower index will be dropped from the results.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "parentId", - "in": "query", - "description": "Optional. Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Success", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Audio/{itemId}/universal": { - "get": { - "tags": [ - "UniversalAudio" - ], - "summary": "Gets an audio stream.", - "operationId": "GetUniversalAudioStream", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "query", - "description": "Optional. The audio container.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. The user id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. The audio codec to transcode to.", - "schema": { - "type": "string" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "transcodingAudioChannels", - "in": "query", - "description": "Optional. The number of how many audio channels to transcode to.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxStreamingBitrate", - "in": "query", - "description": "Optional. The maximum streaming bitrate.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "transcodingContainer", - "in": "query", - "description": "Optional. The container to transcode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodingProtocol", - "in": "query", - "description": "Optional. The transcoding protocol.", - "schema": { - "type": "string" - } - }, - { - "name": "maxAudioSampleRate", - "in": "query", - "description": "Optional. The maximum audio sample rate.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableRemoteMedia", - "in": "query", - "description": "Optional. Whether to enable remote media.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "enableRedirection", - "in": "query", - "description": "Whether to enable redirection. Defaults to true.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Audio stream returned.", - "content": { - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "302": { - "description": "Redirected to remote audio stream." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "head": { - "tags": [ - "UniversalAudio" - ], - "summary": "Gets an audio stream.", - "operationId": "HeadUniversalAudioStream", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "query", - "description": "Optional. The audio container.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. The user id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. The audio codec to transcode to.", - "schema": { - "type": "string" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "transcodingAudioChannels", - "in": "query", - "description": "Optional. The number of how many audio channels to transcode to.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxStreamingBitrate", - "in": "query", - "description": "Optional. The maximum streaming bitrate.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "transcodingContainer", - "in": "query", - "description": "Optional. The container to transcode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodingProtocol", - "in": "query", - "description": "Optional. The transcoding protocol.", - "schema": { - "type": "string" - } - }, - { - "name": "maxAudioSampleRate", - "in": "query", - "description": "Optional. The maximum audio sample rate.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableRemoteMedia", - "in": "query", - "description": "Optional. Whether to enable remote media.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "enableRedirection", - "in": "query", - "description": "Whether to enable redirection. Defaults to true.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Audio stream returned.", - "content": { - "audio/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "302": { - "description": "Redirected to remote audio stream." - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users": { - "get": { - "tags": [ - "User" - ], - "summary": "Gets a list of users.", - "operationId": "GetUsers", - "parameters": [ - { - "name": "isHidden", - "in": "query", - "description": "Optional filter by IsHidden=true or false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "isDisabled", - "in": "query", - "description": "Optional filter by IsDisabled=true or false.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Users returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/UserDto" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/UserDto" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/UserDto" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}": { - "get": { - "tags": [ - "User" - ], - "summary": "Gets a user by Id.", - "operationId": "GetUserById", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "User returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/UserDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/UserDto" - } - } - } - }, - "404": { - "description": "User not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "IgnoreParentalControl" - ] - } - ] - }, - "delete": { - "tags": [ - "User" - ], - "summary": "Deletes a user.", - "operationId": "DeleteUser", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "User deleted." - }, - "404": { - "description": "User not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - }, - "post": { - "tags": [ - "User" - ], - "summary": "Updates a user.", - "operationId": "UpdateUser", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "requestBody": { - "description": "The updated user model.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UserDto" - } - ], - "description": "Class UserDto." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UserDto" - } - ], - "description": "Class UserDto." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UserDto" - } - ], - "description": "Class UserDto." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "User updated." - }, - "400": { - "description": "User information was not supplied.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "403": { - "description": "User update forbidden.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Authenticate": { - "post": { - "tags": [ - "User" - ], - "summary": "Authenticates a user.", - "operationId": "AuthenticateUser", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "pw", - "in": "query", - "description": "The password as plain text.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "password", - "in": "query", - "description": "The password sha1-hash.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "User authenticated.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AuthenticationResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/AuthenticationResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/AuthenticationResult" - } - } - } - }, - "403": { - "description": "Sha1-hashed password only is not allowed.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "404": { - "description": "User not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Users/{userId}/Configuration": { - "post": { - "tags": [ - "User" - ], - "summary": "Updates a user configuration.", - "operationId": "UpdateUserConfiguration", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "requestBody": { - "description": "The new user configuration.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UserConfiguration" - } - ], - "description": "Class UserConfiguration." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UserConfiguration" - } - ], - "description": "Class UserConfiguration." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UserConfiguration" - } - ], - "description": "Class UserConfiguration." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "User configuration updated." - }, - "403": { - "description": "User configuration update forbidden.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/EasyPassword": { - "post": { - "tags": [ - "User" - ], - "summary": "Updates a user's easy password.", - "operationId": "UpdateUserEasyPassword", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "requestBody": { - "description": "The M:Jellyfin.Api.Controllers.UserController.UpdateUserEasyPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserEasyPassword) request.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateUserEasyPassword" - } - ], - "description": "The update user easy password request body." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateUserEasyPassword" - } - ], - "description": "The update user easy password request body." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateUserEasyPassword" - } - ], - "description": "The update user easy password request body." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Password successfully reset." - }, - "403": { - "description": "User is not allowed to update the password.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "404": { - "description": "User not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Password": { - "post": { - "tags": [ - "User" - ], - "summary": "Updates a user's password.", - "operationId": "UpdateUserPassword", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "requestBody": { - "description": "The M:Jellyfin.Api.Controllers.UserController.UpdateUserPassword(System.Guid,Jellyfin.Api.Models.UserDtos.UpdateUserPassword) request.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateUserPassword" - } - ], - "description": "The update user password request body." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateUserPassword" - } - ], - "description": "The update user password request body." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UpdateUserPassword" - } - ], - "description": "The update user password request body." - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "Password successfully reset." - }, - "403": { - "description": "User is not allowed to update the password.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "404": { - "description": "User not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Policy": { - "post": { - "tags": [ - "User" - ], - "summary": "Updates a user policy.", - "operationId": "UpdateUserPolicy", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "The user id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "requestBody": { - "description": "The new user policy.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UserPolicy" - } - ] - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UserPolicy" - } - ] - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/UserPolicy" - } - ] - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "User policy updated." - }, - "400": { - "description": "User policy was not supplied.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "403": { - "description": "User policy update forbidden.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Users/AuthenticateByName": { - "post": { - "tags": [ - "User" - ], - "summary": "Authenticates a user by name.", - "operationId": "AuthenticateUserByName", - "requestBody": { - "description": "The M:Jellyfin.Api.Controllers.UserController.AuthenticateUserByName(Jellyfin.Api.Models.UserDtos.AuthenticateUserByName) request.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AuthenticateUserByName" - } - ], - "description": "The authenticate user by name request body." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AuthenticateUserByName" - } - ], - "description": "The authenticate user by name request body." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/AuthenticateUserByName" - } - ], - "description": "The authenticate user by name request body." - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "User authenticated.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AuthenticationResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/AuthenticationResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/AuthenticationResult" - } - } - } - } - } - } - }, - "/Users/AuthenticateWithQuickConnect": { - "post": { - "tags": [ - "User" - ], - "summary": "Authenticates a user with quick connect.", - "operationId": "AuthenticateWithQuickConnect", - "requestBody": { - "description": "The Jellyfin.Api.Models.UserDtos.QuickConnectDto request.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/QuickConnectDto" - } - ], - "description": "The quick connect request body." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/QuickConnectDto" - } - ], - "description": "The quick connect request body." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/QuickConnectDto" - } - ], - "description": "The quick connect request body." - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "User authenticated.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AuthenticationResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/AuthenticationResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/AuthenticationResult" - } - } - } - }, - "400": { - "description": "Missing token." - } - } - } - }, - "/Users/ForgotPassword": { - "post": { - "tags": [ - "User" - ], - "summary": "Initiates the forgot password process for a local user.", - "operationId": "ForgotPassword", - "requestBody": { - "description": "The forgot password request containing the entered username.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ForgotPasswordDto" - } - ], - "description": "Forgot Password request body DTO." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ForgotPasswordDto" - } - ], - "description": "Forgot Password request body DTO." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ForgotPasswordDto" - } - ], - "description": "Forgot Password request body DTO." - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Password reset process started.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ForgotPasswordResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ForgotPasswordResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ForgotPasswordResult" - } - } - } - } - } - } - }, - "/Users/ForgotPassword/Pin": { - "post": { - "tags": [ - "User" - ], - "summary": "Redeems a forgot password pin.", - "operationId": "ForgotPasswordPin", - "requestBody": { - "description": "The forgot password pin request containing the entered pin.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ForgotPasswordPinDto" - } - ], - "description": "Forgot Password Pin enter request body DTO." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ForgotPasswordPinDto" - } - ], - "description": "Forgot Password Pin enter request body DTO." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/ForgotPasswordPinDto" - } - ], - "description": "Forgot Password Pin enter request body DTO." - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Pin reset process started.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PinRedeemResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/PinRedeemResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/PinRedeemResult" - } - } - } - } - } - } - }, - "/Users/Me": { - "get": { - "tags": [ - "User" - ], - "summary": "Gets the user based on auth token.", - "operationId": "GetCurrentUser", - "responses": { - "200": { - "description": "User returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/UserDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/UserDto" - } - } - } - }, - "400": { - "description": "Token is not owned by a user.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/New": { - "post": { - "tags": [ - "User" - ], - "summary": "Creates a user.", - "operationId": "CreateUserByName", - "requestBody": { - "description": "The create user by name request body.", - "content": { - "application/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/CreateUserByName" - } - ], - "description": "The create user by name request body." - } - }, - "text/json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/CreateUserByName" - } - ], - "description": "The create user by name request body." - } - }, - "application/*+json": { - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/CreateUserByName" - } - ], - "description": "The create user by name request body." - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "User created.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/UserDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/UserDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Users/Public": { - "get": { - "tags": [ - "User" - ], - "summary": "Gets a list of publicly visible users for display on a login screen.", - "operationId": "GetPublicUsers", - "responses": { - "200": { - "description": "Public users returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/UserDto" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/UserDto" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/UserDto" - } - } - } - } - } - } - } - }, - "/Users/{userId}/FavoriteItems/{itemId}": { - "post": { - "tags": [ - "UserLibrary" - ], - "summary": "Marks an item as a favorite.", - "operationId": "MarkFavoriteItem", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Item marked as favorite.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "delete": { - "tags": [ - "UserLibrary" - ], - "summary": "Unmarks item as a favorite.", - "operationId": "UnmarkFavoriteItem", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Item unmarked as favorite.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Items/{itemId}": { - "get": { - "tags": [ - "UserLibrary" - ], - "summary": "Gets an item from a user's library.", - "operationId": "GetItem", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Item returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Items/{itemId}/Intros": { - "get": { - "tags": [ - "UserLibrary" - ], - "summary": "Gets intros to play before the main media item plays.", - "operationId": "GetIntros", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Intros returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Items/{itemId}/LocalTrailers": { - "get": { - "tags": [ - "UserLibrary" - ], - "summary": "Gets local trailers for an item.", - "operationId": "GetLocalTrailers", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "An Microsoft.AspNetCore.Mvc.OkResult containing the item's local trailers.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Items/{itemId}/Rating": { - "delete": { - "tags": [ - "UserLibrary" - ], - "summary": "Deletes a user's saved personal rating for an item.", - "operationId": "DeleteUserItemRating", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Personal rating removed.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - }, - "post": { - "tags": [ - "UserLibrary" - ], - "summary": "Updates a user's rating for an item.", - "operationId": "UpdateUserItemRating", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "likes", - "in": "query", - "description": "Whether this M:Jellyfin.Api.Controllers.UserLibraryController.UpdateUserItemRating(System.Guid,System.Guid,System.Nullable{System.Boolean}) is likes.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Item rating updated.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/UserItemDataDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Items/{itemId}/SpecialFeatures": { - "get": { - "tags": [ - "UserLibrary" - ], - "summary": "Gets special features for an item.", - "operationId": "GetSpecialFeatures", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "itemId", - "in": "path", - "description": "Item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Special features returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Items/Latest": { - "get": { - "tags": [ - "UserLibrary" - ], - "summary": "Gets latest media.", - "operationId": "GetLatestMedia", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "isPlayed", - "in": "query", - "description": "Filter by items that are played, or not.", - "schema": { - "type": "boolean" - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. include image information in output.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. the max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "limit", - "in": "query", - "description": "Return item limit.", - "schema": { - "type": "integer", - "format": "int32", - "default": 20 - } - }, - { - "name": "groupItems", - "in": "query", - "description": "Whether or not to group items into a parent container.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Latest media returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Items/Root": { - "get": { - "tags": [ - "UserLibrary" - ], - "summary": "Gets the root folder from a user's library.", - "operationId": "GetRootFolder", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Root folder returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/GroupingOptions": { - "get": { - "tags": [ - "UserViews" - ], - "summary": "Get user view grouping options.", - "operationId": "GetGroupingOptions", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "User view grouping options returned.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SpecialViewOptionDto" - } - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SpecialViewOptionDto" - } - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SpecialViewOptionDto" - } - } - } - } - }, - "404": { - "description": "User not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Users/{userId}/Views": { - "get": { - "tags": [ - "UserViews" - ], - "summary": "Get user views.", - "operationId": "GetUserViews", - "parameters": [ - { - "name": "userId", - "in": "path", - "description": "User id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "includeExternalContent", - "in": "query", - "description": "Whether or not to include external views such as channels or live tv.", - "schema": { - "type": "boolean" - } - }, - { - "name": "presetViews", - "in": "query", - "description": "Preset views.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "includeHidden", - "in": "query", - "description": "Whether or not to include hidden content.", - "schema": { - "type": "boolean", - "default": false - } - } - ], - "responses": { - "200": { - "description": "User views returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Videos/{videoId}/{mediaSourceId}/Attachments/{index}": { - "get": { - "tags": [ - "VideoAttachments" - ], - "summary": "Get video attachment.", - "operationId": "GetAttachment", - "parameters": [ - { - "name": "videoId", - "in": "path", - "description": "Video ID.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "mediaSourceId", - "in": "path", - "description": "Media Source ID.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "index", - "in": "path", - "description": "Attachment Index.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - } - ], - "responses": { - "200": { - "description": "Attachment retrieved.", - "content": { - "application/octet-stream": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - }, - "404": { - "description": "Video or attachment not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - } - } - } - }, - "/Videos/{itemId}/AdditionalParts": { - "get": { - "tags": [ - "Videos" - ], - "summary": "Gets additional parts for a video.", - "operationId": "GetAdditionalPart", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Additional parts returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Videos/{itemId}/AlternateSources": { - "delete": { - "tags": [ - "Videos" - ], - "summary": "Removes alternate video sources.", - "operationId": "DeleteAlternateSources", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "204": { - "description": "Alternate sources deleted." - }, - "404": { - "description": "Video not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Videos/{itemId}/stream": { - "get": { - "tags": [ - "Videos" - ], - "summary": "Gets a video stream.", - "operationId": "GetVideoStream", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "query", - "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", - "schema": { - "type": "string" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. The maximum horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. The maximum vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Video stream returned.", - "content": { - "video/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - }, - "head": { - "tags": [ - "Videos" - ], - "summary": "Gets a video stream.", - "operationId": "HeadVideoStream", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "query", - "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", - "schema": { - "type": "string" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. The maximum horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. The maximum vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Video stream returned.", - "content": { - "video/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - } - }, - "/Videos/{itemId}/stream.{container}": { - "get": { - "tags": [ - "Videos" - ], - "summary": "Gets a video stream.", - "operationId": "GetVideoStreamByContainer", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "path", - "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. The maximum horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. The maximum vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Video stream returned.", - "content": { - "video/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - }, - "head": { - "tags": [ - "Videos" - ], - "summary": "Gets a video stream.", - "operationId": "HeadVideoStreamByContainer", - "parameters": [ - { - "name": "itemId", - "in": "path", - "description": "The item id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "container", - "in": "path", - "description": "The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, mpg, avi, 3gp, wmv, wtv, m2ts, mov, iso, flv.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "static", - "in": "query", - "description": "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "params", - "in": "query", - "description": "The streaming parameters.", - "schema": { - "type": "string" - } - }, - { - "name": "tag", - "in": "query", - "description": "The tag.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceProfileId", - "in": "query", - "description": "Optional. The dlna device profile id to utilize.", - "schema": { - "type": "string" - } - }, - { - "name": "playSessionId", - "in": "query", - "description": "The play session id.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentContainer", - "in": "query", - "description": "The segment container.", - "schema": { - "type": "string" - } - }, - { - "name": "segmentLength", - "in": "query", - "description": "The segment length.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "minSegments", - "in": "query", - "description": "The minimum number of segments.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "mediaSourceId", - "in": "query", - "description": "The media version id, if playing an alternate version.", - "schema": { - "type": "string" - } - }, - { - "name": "deviceId", - "in": "query", - "description": "The device id of the client requesting. Used to stop encoding processes when needed.", - "schema": { - "type": "string" - } - }, - { - "name": "audioCodec", - "in": "query", - "description": "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", - "schema": { - "type": "string" - } - }, - { - "name": "enableAutoStreamCopy", - "in": "query", - "description": "Whether or not to allow automatic stream copy if requested values match the original source. Defaults to true.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowVideoStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the video stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "allowAudioStreamCopy", - "in": "query", - "description": "Whether or not to allow copying of the audio stream url.", - "schema": { - "type": "boolean" - } - }, - { - "name": "breakOnNonKeyFrames", - "in": "query", - "description": "Optional. Whether to break on non key frames.", - "schema": { - "type": "boolean" - } - }, - { - "name": "audioSampleRate", - "in": "query", - "description": "Optional. Specify a specific audio sample rate, e.g. 44100.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioBitDepth", - "in": "query", - "description": "Optional. The maximum audio bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioBitRate", - "in": "query", - "description": "Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "audioChannels", - "in": "query", - "description": "Optional. Specify a specific number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxAudioChannels", - "in": "query", - "description": "Optional. Specify a maximum number of audio channels to encode to, e.g. 2.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "profile", - "in": "query", - "description": "Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, high.", - "schema": { - "type": "string" - } - }, - { - "name": "level", - "in": "query", - "description": "Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.", - "schema": { - "type": "string" - } - }, - { - "name": "framerate", - "in": "query", - "description": "Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "maxFramerate", - "in": "query", - "description": "Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally this should be omitted unless the device has specific requirements.", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "copyTimestamps", - "in": "query", - "description": "Whether or not to copy timestamps when transcoding with an offset. Defaults to false.", - "schema": { - "type": "boolean" - } - }, - { - "name": "startTimeTicks", - "in": "query", - "description": "Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "width", - "in": "query", - "description": "Optional. The fixed horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "height", - "in": "query", - "description": "Optional. The fixed vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxWidth", - "in": "query", - "description": "Optional. The maximum horizontal resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxHeight", - "in": "query", - "description": "Optional. The maximum vertical resolution of the encoded video.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoBitRate", - "in": "query", - "description": "Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be left to encoder defaults.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleStreamIndex", - "in": "query", - "description": "Optional. The index of the subtitle stream to use. If omitted no subtitles will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "subtitleMethod", - "in": "query", - "description": "Optional. Specify the subtitle delivery method.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ] - } - }, - { - "name": "maxRefFrames", - "in": "query", - "description": "Optional.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "maxVideoBitDepth", - "in": "query", - "description": "Optional. The maximum video bit depth.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "requireAvc", - "in": "query", - "description": "Optional. Whether to require avc.", - "schema": { - "type": "boolean" - } - }, - { - "name": "deInterlace", - "in": "query", - "description": "Optional. Whether to deinterlace the video.", - "schema": { - "type": "boolean" - } - }, - { - "name": "requireNonAnamorphic", - "in": "query", - "description": "Optional. Whether to require a non anamorphic stream.", - "schema": { - "type": "boolean" - } - }, - { - "name": "transcodingMaxAudioChannels", - "in": "query", - "description": "Optional. The maximum number of audio channels to transcode.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "cpuCoreLimit", - "in": "query", - "description": "Optional. The limit of how many cpu cores to use.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "liveStreamId", - "in": "query", - "description": "The live stream id.", - "schema": { - "type": "string" - } - }, - { - "name": "enableMpegtsM2TsMode", - "in": "query", - "description": "Optional. Whether to enable the MpegtsM2Ts mode.", - "schema": { - "type": "boolean" - } - }, - { - "name": "videoCodec", - "in": "query", - "description": "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h265, h264, mpeg4, theora, vp8, vp9, vpx (deprecated), wmv.", - "schema": { - "type": "string" - } - }, - { - "name": "subtitleCodec", - "in": "query", - "description": "Optional. Specify a subtitle codec to encode to.", - "schema": { - "type": "string" - } - }, - { - "name": "transcodeReasons", - "in": "query", - "description": "Optional. The transcoding reason.", - "schema": { - "type": "string" - } - }, - { - "name": "audioStreamIndex", - "in": "query", - "description": "Optional. The index of the audio stream to use. If omitted the first audio stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "videoStreamIndex", - "in": "query", - "description": "Optional. The index of the video stream to use. If omitted the first video stream will be used.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "context", - "in": "query", - "description": "Optional. The MediaBrowser.Model.Dlna.EncodingContext.", - "schema": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ] - } - }, - { - "name": "streamOptions", - "in": "query", - "description": "Optional. The streaming options.", - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - } - ], - "responses": { - "200": { - "description": "Video stream returned.", - "content": { - "video/*": { - "schema": { - "type": "string", - "format": "binary" - } - } - } - } - } - } - }, - "/Videos/MergeVersions": { - "post": { - "tags": [ - "Videos" - ], - "summary": "Merges videos into a single record.", - "operationId": "MergeVersions", - "parameters": [ - { - "name": "ids", - "in": "query", - "description": "Item id list. This allows multiple, comma delimited.", - "required": true, - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - } - ], - "responses": { - "204": { - "description": "Videos merged." - }, - "400": { - "description": "Supply at least 2 video ids.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "RequiresElevation" - ] - } - ] - } - }, - "/Years": { - "get": { - "tags": [ - "Years" - ], - "summary": "Get years.", - "operationId": "GetYears", - "parameters": [ - { - "name": "startIndex", - "in": "query", - "description": "Skips over a given number of items within the results. Use for paging.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "limit", - "in": "query", - "description": "Optional. The maximum number of records to return.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "sortOrder", - "in": "query", - "description": "Sort Order - Ascending,Descending.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - { - "name": "parentId", - "in": "query", - "description": "Specify this to localize the search to a specific item or folder. Omit to use the root.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "fields", - "in": "query", - "description": "Optional. Specify additional fields of information to return in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - } - } - }, - { - "name": "excludeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be excluded based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "includeItemTypes", - "in": "query", - "description": "Optional. If specified, results will be included based on item type. This allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemKind" - } - } - }, - { - "name": "mediaTypes", - "in": "query", - "description": "Optional. Filter by MediaType. Allows multiple, comma delimited.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "sortBy", - "in": "query", - "description": "Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "enableUserData", - "in": "query", - "description": "Optional. Include user data.", - "schema": { - "type": "boolean" - } - }, - { - "name": "imageTypeLimit", - "in": "query", - "description": "Optional. The max number of images to return, per image type.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "enableImageTypes", - "in": "query", - "description": "Optional. The image types to include in the output.", - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - } - } - }, - { - "name": "userId", - "in": "query", - "description": "User Id.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "recursive", - "in": "query", - "description": "Search recursively.", - "schema": { - "type": "boolean", - "default": true - } - }, - { - "name": "enableImages", - "in": "query", - "description": "Optional. Include image information in output.", - "schema": { - "type": "boolean", - "default": true - } - } - ], - "responses": { - "200": { - "description": "Year query returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDtoQueryResult" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - }, - "/Years/{year}": { - "get": { - "tags": [ - "Years" - ], - "summary": "Gets a year.", - "operationId": "GetYear", - "parameters": [ - { - "name": "year", - "in": "path", - "description": "The year.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "userId", - "in": "query", - "description": "Optional. Filter by user id, and attach user data.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "Year returned.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/BaseItemDto" - } - } - } - }, - "404": { - "description": "Year not found.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"CamelCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - }, - "application/json; profile=\"PascalCase\"": { - "schema": { - "$ref": "#/components/schemas/ProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "CustomAuthentication": [ - "DefaultAuthorization" - ] - } - ] - } - } - }, - "components": { - "schemas": { - "AccessSchedule": { - "type": "object", - "properties": { - "Id": { - "type": "integer", - "description": "Gets the id of this instance.", - "format": "int32", - "readOnly": true - }, - "UserId": { - "type": "string", - "description": "Gets the id of the associated user.", - "format": "uuid" - }, - "DayOfWeek": { - "allOf": [ - { - "$ref": "#/components/schemas/DynamicDayOfWeek" - } - ], - "description": "Gets or sets the day of week." - }, - "StartHour": { - "type": "number", - "description": "Gets or sets the start hour.", - "format": "double" - }, - "EndHour": { - "type": "number", - "description": "Gets or sets the end hour.", - "format": "double" - } - }, - "additionalProperties": false, - "description": "An entity representing a user's access schedule." - }, - "ActivityLogEntry": { - "type": "object", - "properties": { - "Id": { - "type": "integer", - "description": "Gets or sets the identifier.", - "format": "int64" - }, - "Name": { - "type": "string", - "description": "Gets or sets the name." - }, - "Overview": { - "type": "string", - "description": "Gets or sets the overview.", - "nullable": true - }, - "ShortOverview": { - "type": "string", - "description": "Gets or sets the short overview.", - "nullable": true - }, - "Type": { - "type": "string", - "description": "Gets or sets the type." - }, - "ItemId": { - "type": "string", - "description": "Gets or sets the item identifier.", - "nullable": true - }, - "Date": { - "type": "string", - "description": "Gets or sets the date.", - "format": "date-time" - }, - "UserId": { - "type": "string", - "description": "Gets or sets the user identifier.", - "format": "uuid" - }, - "UserPrimaryImageTag": { - "type": "string", - "description": "Gets or sets the user primary image tag.", - "nullable": true, - "deprecated": true - }, - "Severity": { - "allOf": [ - { - "$ref": "#/components/schemas/LogLevel" - } - ], - "description": "Gets or sets the log severity." - } - }, - "additionalProperties": false, - "description": "An activity log entry." - }, - "ActivityLogEntryQueryResult": { - "type": "object", - "properties": { - "Items": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ActivityLogEntry" - }, - "description": "Gets or sets the items.", - "nullable": true - }, - "TotalRecordCount": { - "type": "integer", - "description": "Gets or sets the total number of records available.", - "format": "int32" - }, - "StartIndex": { - "type": "integer", - "description": "Gets or sets the index of the first record in Items.", - "format": "int32" - } - }, - "additionalProperties": false - }, - "AddVirtualFolderDto": { - "type": "object", - "properties": { - "LibraryOptions": { - "allOf": [ - { - "$ref": "#/components/schemas/LibraryOptions" - } - ], - "description": "Gets or sets library options.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Add virtual folder dto." - }, - "AdminNotificationDto": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the notification name.", - "nullable": true - }, - "Description": { - "type": "string", - "description": "Gets or sets the notification description.", - "nullable": true - }, - "NotificationLevel": { - "allOf": [ - { - "$ref": "#/components/schemas/NotificationLevel" - } - ], - "description": "Gets or sets the notification level.", - "nullable": true - }, - "Url": { - "type": "string", - "description": "Gets or sets the notification url.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "The admin notification dto." - }, - "AlbumInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "description": "Gets or sets the original title.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "MetadataLanguage": { - "type": "string", - "description": "Gets or sets the metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "Year": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "IsAutomated": { - "type": "boolean" - }, - "AlbumArtists": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the album artist." - }, - "ArtistProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the artist provider ids." - }, - "SongInfos": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SongInfo" - } - } - }, - "additionalProperties": false - }, - "AlbumInfoRemoteSearchQuery": { - "type": "object", - "properties": { - "SearchInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/AlbumInfo" - } - ], - "nullable": true - }, - "ItemId": { - "type": "string", - "format": "uuid" - }, - "SearchProviderName": { - "type": "string", - "description": "Gets or sets the provider name to search within if set.", - "nullable": true - }, - "IncludeDisabledProviders": { - "type": "boolean", - "description": "Gets or sets a value indicating whether disabled providers should be included." - } - }, - "additionalProperties": false - }, - "AllThemeMediaResult": { - "type": "object", - "properties": { - "ThemeVideosResult": { - "allOf": [ - { - "$ref": "#/components/schemas/ThemeMediaResult" - } - ], - "description": "Class ThemeMediaResult.", - "nullable": true - }, - "ThemeSongsResult": { - "allOf": [ - { - "$ref": "#/components/schemas/ThemeMediaResult" - } - ], - "description": "Class ThemeMediaResult.", - "nullable": true - }, - "SoundtrackSongsResult": { - "allOf": [ - { - "$ref": "#/components/schemas/ThemeMediaResult" - } - ], - "description": "Class ThemeMediaResult.", - "nullable": true - } - }, - "additionalProperties": false - }, - "Architecture": { - "enum": [ - "X86", - "X64", - "Arm", - "Arm64", - "Wasm", - "S390x" - ], - "type": "string" - }, - "ArtistInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "description": "Gets or sets the original title.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "MetadataLanguage": { - "type": "string", - "description": "Gets or sets the metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "Year": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "IsAutomated": { - "type": "boolean" - }, - "SongInfos": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SongInfo" - } - } - }, - "additionalProperties": false - }, - "ArtistInfoRemoteSearchQuery": { - "type": "object", - "properties": { - "SearchInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/ArtistInfo" - } - ], - "nullable": true - }, - "ItemId": { - "type": "string", - "format": "uuid" - }, - "SearchProviderName": { - "type": "string", - "description": "Gets or sets the provider name to search within if set.", - "nullable": true - }, - "IncludeDisabledProviders": { - "type": "boolean", - "description": "Gets or sets a value indicating whether disabled providers should be included." - } - }, - "additionalProperties": false - }, - "AuthenticateUserByName": { - "type": "object", - "properties": { - "Username": { - "type": "string", - "description": "Gets or sets the username.", - "nullable": true - }, - "Pw": { - "type": "string", - "description": "Gets or sets the plain text password.", - "nullable": true - }, - "Password": { - "type": "string", - "description": "Gets or sets the sha1-hashed password.", - "nullable": true, - "deprecated": true - } - }, - "additionalProperties": false, - "description": "The authenticate user by name request body." - }, - "AuthenticationInfo": { - "type": "object", - "properties": { - "Id": { - "type": "integer", - "description": "Gets or sets the identifier.", - "format": "int64" - }, - "AccessToken": { - "type": "string", - "description": "Gets or sets the access token.", - "nullable": true - }, - "DeviceId": { - "type": "string", - "description": "Gets or sets the device identifier.", - "nullable": true - }, - "AppName": { - "type": "string", - "description": "Gets or sets the name of the application.", - "nullable": true - }, - "AppVersion": { - "type": "string", - "description": "Gets or sets the application version.", - "nullable": true - }, - "DeviceName": { - "type": "string", - "description": "Gets or sets the name of the device.", - "nullable": true - }, - "UserId": { - "type": "string", - "description": "Gets or sets the user identifier.", - "format": "uuid" - }, - "IsActive": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is active." - }, - "DateCreated": { - "type": "string", - "description": "Gets or sets the date created.", - "format": "date-time" - }, - "DateRevoked": { - "type": "string", - "description": "Gets or sets the date revoked.", - "format": "date-time", - "nullable": true - }, - "DateLastActivity": { - "type": "string", - "format": "date-time" - }, - "UserName": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "AuthenticationInfoQueryResult": { - "type": "object", - "properties": { - "Items": { - "type": "array", - "items": { - "$ref": "#/components/schemas/AuthenticationInfo" - }, - "description": "Gets or sets the items.", - "nullable": true - }, - "TotalRecordCount": { - "type": "integer", - "description": "Gets or sets the total number of records available.", - "format": "int32" - }, - "StartIndex": { - "type": "integer", - "description": "Gets or sets the index of the first record in Items.", - "format": "int32" - } - }, - "additionalProperties": false - }, - "AuthenticationResult": { - "type": "object", - "properties": { - "User": { - "allOf": [ - { - "$ref": "#/components/schemas/UserDto" - } - ], - "description": "Class UserDto.", - "nullable": true - }, - "SessionInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/SessionInfo" - } - ], - "description": "Class SessionInfo.", - "nullable": true - }, - "AccessToken": { - "type": "string", - "nullable": true - }, - "ServerId": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "BaseItem": { - "type": "object", - "properties": { - "Size": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "Container": { - "type": "string", - "nullable": true - }, - "IsHD": { - "type": "boolean", - "readOnly": true - }, - "IsShortcut": { - "type": "boolean" - }, - "ShortcutPath": { - "type": "string", - "nullable": true - }, - "Width": { - "type": "integer", - "format": "int32" - }, - "Height": { - "type": "integer", - "format": "int32" - }, - "ExtraIds": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "nullable": true - }, - "DateLastSaved": { - "type": "string", - "format": "date-time" - }, - "RemoteTrailers": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MediaUrl" - }, - "description": "Gets or sets the remote trailers.", - "nullable": true - }, - "SupportsExternalTransfer": { - "type": "boolean", - "readOnly": true - } - }, - "additionalProperties": false, - "description": "Class BaseItem." - }, - "BaseItemDto": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "nullable": true - }, - "ServerId": { - "type": "string", - "description": "Gets or sets the server identifier.", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the id.", - "format": "uuid" - }, - "Etag": { - "type": "string", - "description": "Gets or sets the etag.", - "nullable": true - }, - "SourceType": { - "type": "string", - "description": "Gets or sets the type of the source.", - "nullable": true - }, - "PlaylistItemId": { - "type": "string", - "description": "Gets or sets the playlist item identifier.", - "nullable": true - }, - "DateCreated": { - "type": "string", - "description": "Gets or sets the date created.", - "format": "date-time", - "nullable": true - }, - "DateLastMediaAdded": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "ExtraType": { - "type": "string", - "nullable": true - }, - "AirsBeforeSeasonNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "AirsAfterSeasonNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "AirsBeforeEpisodeNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "CanDelete": { - "type": "boolean", - "nullable": true - }, - "CanDownload": { - "type": "boolean", - "nullable": true - }, - "HasSubtitles": { - "type": "boolean", - "nullable": true - }, - "PreferredMetadataLanguage": { - "type": "string", - "nullable": true - }, - "PreferredMetadataCountryCode": { - "type": "string", - "nullable": true - }, - "SupportsSync": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [supports synchronize].", - "nullable": true - }, - "Container": { - "type": "string", - "nullable": true - }, - "SortName": { - "type": "string", - "description": "Gets or sets the name of the sort.", - "nullable": true - }, - "ForcedSortName": { - "type": "string", - "nullable": true - }, - "Video3DFormat": { - "allOf": [ - { - "$ref": "#/components/schemas/Video3DFormat" - } - ], - "description": "Gets or sets the video3 D format.", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "description": "Gets or sets the premiere date.", - "format": "date-time", - "nullable": true - }, - "ExternalUrls": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ExternalUrl" - }, - "description": "Gets or sets the external urls.", - "nullable": true - }, - "MediaSources": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MediaSourceInfo" - }, - "description": "Gets or sets the media versions.", - "nullable": true - }, - "CriticRating": { - "type": "number", - "description": "Gets or sets the critic rating.", - "format": "float", - "nullable": true - }, - "ProductionLocations": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "EnableMediaSourceDisplay": { - "type": "boolean", - "nullable": true - }, - "OfficialRating": { - "type": "string", - "description": "Gets or sets the official rating.", - "nullable": true - }, - "CustomRating": { - "type": "string", - "description": "Gets or sets the custom rating.", - "nullable": true - }, - "ChannelId": { - "type": "string", - "description": "Gets or sets the channel identifier.", - "format": "uuid", - "nullable": true - }, - "ChannelName": { - "type": "string", - "nullable": true - }, - "Overview": { - "type": "string", - "description": "Gets or sets the overview.", - "nullable": true - }, - "Taglines": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the taglines.", - "nullable": true - }, - "Genres": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the genres.", - "nullable": true - }, - "CommunityRating": { - "type": "number", - "description": "Gets or sets the community rating.", - "format": "float", - "nullable": true - }, - "CumulativeRunTimeTicks": { - "type": "integer", - "description": "Gets or sets the cumulative run time ticks.", - "format": "int64", - "nullable": true - }, - "RunTimeTicks": { - "type": "integer", - "description": "Gets or sets the run time ticks.", - "format": "int64", - "nullable": true - }, - "PlayAccess": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayAccess" - } - ], - "description": "Gets or sets the play access.", - "nullable": true - }, - "AspectRatio": { - "type": "string", - "description": "Gets or sets the aspect ratio.", - "nullable": true - }, - "ProductionYear": { - "type": "integer", - "description": "Gets or sets the production year.", - "format": "int32", - "nullable": true - }, - "IsPlaceHolder": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is place holder.", - "nullable": true - }, - "Number": { - "type": "string", - "description": "Gets or sets the number.", - "nullable": true - }, - "ChannelNumber": { - "type": "string", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "description": "Gets or sets the index number.", - "format": "int32", - "nullable": true - }, - "IndexNumberEnd": { - "type": "integer", - "description": "Gets or sets the index number end.", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "description": "Gets or sets the parent index number.", - "format": "int32", - "nullable": true - }, - "RemoteTrailers": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MediaUrl" - }, - "description": "Gets or sets the trailer urls.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "IsHD": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is HD.", - "nullable": true - }, - "IsFolder": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is folder.", - "nullable": true - }, - "ParentId": { - "type": "string", - "description": "Gets or sets the parent id.", - "format": "uuid", - "nullable": true - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemKind" - } - ], - "description": "The base item kind." - }, - "People": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemPerson" - }, - "description": "Gets or sets the people.", - "nullable": true - }, - "Studios": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameGuidPair" - }, - "description": "Gets or sets the studios.", - "nullable": true - }, - "GenreItems": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameGuidPair" - }, - "nullable": true - }, - "ParentLogoItemId": { - "type": "string", - "description": "Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one.", - "format": "uuid", - "nullable": true - }, - "ParentBackdropItemId": { - "type": "string", - "description": "Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one.", - "format": "uuid", - "nullable": true - }, - "ParentBackdropImageTags": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the parent backdrop image tags.", - "nullable": true - }, - "LocalTrailerCount": { - "type": "integer", - "description": "Gets or sets the local trailer count.", - "format": "int32", - "nullable": true - }, - "UserData": { - "allOf": [ - { - "$ref": "#/components/schemas/UserItemDataDto" - } - ], - "description": "Gets or sets the user data for this item based on the user it's being requested for.", - "nullable": true - }, - "RecursiveItemCount": { - "type": "integer", - "description": "Gets or sets the recursive item count.", - "format": "int32", - "nullable": true - }, - "ChildCount": { - "type": "integer", - "description": "Gets or sets the child count.", - "format": "int32", - "nullable": true - }, - "SeriesName": { - "type": "string", - "description": "Gets or sets the name of the series.", - "nullable": true - }, - "SeriesId": { - "type": "string", - "description": "Gets or sets the series id.", - "format": "uuid", - "nullable": true - }, - "SeasonId": { - "type": "string", - "description": "Gets or sets the season identifier.", - "format": "uuid", - "nullable": true - }, - "SpecialFeatureCount": { - "type": "integer", - "description": "Gets or sets the special feature count.", - "format": "int32", - "nullable": true - }, - "DisplayPreferencesId": { - "type": "string", - "description": "Gets or sets the display preferences id.", - "nullable": true - }, - "Status": { - "type": "string", - "description": "Gets or sets the status.", - "nullable": true - }, - "AirTime": { - "type": "string", - "description": "Gets or sets the air time.", - "nullable": true - }, - "AirDays": { - "type": "array", - "items": { - "$ref": "#/components/schemas/DayOfWeek" - }, - "description": "Gets or sets the air days.", - "nullable": true - }, - "Tags": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the tags.", - "nullable": true - }, - "PrimaryImageAspectRatio": { - "type": "number", - "description": "Gets or sets the primary image aspect ratio, after image enhancements.", - "format": "double", - "nullable": true - }, - "Artists": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the artists.", - "nullable": true - }, - "ArtistItems": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameGuidPair" - }, - "description": "Gets or sets the artist items.", - "nullable": true - }, - "Album": { - "type": "string", - "description": "Gets or sets the album.", - "nullable": true - }, - "CollectionType": { - "type": "string", - "description": "Gets or sets the type of the collection.", - "nullable": true - }, - "DisplayOrder": { - "type": "string", - "description": "Gets or sets the display order.", - "nullable": true - }, - "AlbumId": { - "type": "string", - "description": "Gets or sets the album id.", - "format": "uuid", - "nullable": true - }, - "AlbumPrimaryImageTag": { - "type": "string", - "description": "Gets or sets the album image tag.", - "nullable": true - }, - "SeriesPrimaryImageTag": { - "type": "string", - "description": "Gets or sets the series primary image tag.", - "nullable": true - }, - "AlbumArtist": { - "type": "string", - "description": "Gets or sets the album artist.", - "nullable": true - }, - "AlbumArtists": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameGuidPair" - }, - "description": "Gets or sets the album artists.", - "nullable": true - }, - "SeasonName": { - "type": "string", - "description": "Gets or sets the name of the season.", - "nullable": true - }, - "MediaStreams": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MediaStream" - }, - "description": "Gets or sets the media streams.", - "nullable": true - }, - "VideoType": { - "allOf": [ - { - "$ref": "#/components/schemas/VideoType" - } - ], - "description": "Gets or sets the type of the video.", - "nullable": true - }, - "PartCount": { - "type": "integer", - "description": "Gets or sets the part count.", - "format": "int32", - "nullable": true - }, - "MediaSourceCount": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ImageTags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Gets or sets the image tags.", - "nullable": true - }, - "BackdropImageTags": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the backdrop image tags.", - "nullable": true - }, - "ScreenshotImageTags": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the screenshot image tags.", - "nullable": true - }, - "ParentLogoImageTag": { - "type": "string", - "description": "Gets or sets the parent logo image tag.", - "nullable": true - }, - "ParentArtItemId": { - "type": "string", - "description": "Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one.", - "format": "uuid", - "nullable": true - }, - "ParentArtImageTag": { - "type": "string", - "description": "Gets or sets the parent art image tag.", - "nullable": true - }, - "SeriesThumbImageTag": { - "type": "string", - "description": "Gets or sets the series thumb image tag.", - "nullable": true - }, - "ImageBlurHashes": { - "type": "object", - "properties": { - "Primary": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Art": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Backdrop": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Banner": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Logo": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Thumb": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Disc": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Box": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Screenshot": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Menu": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Chapter": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "BoxRear": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Profile": { - "type": "object", - "additionalProperties": { - "type": "string" - } - } - }, - "description": "Gets or sets the blurhashes for the image tags.\r\nMaps image type to dictionary mapping image tag to blurhash value.", - "nullable": true - }, - "SeriesStudio": { - "type": "string", - "description": "Gets or sets the series studio.", - "nullable": true - }, - "ParentThumbItemId": { - "type": "string", - "description": "Gets or sets the parent thumb item id.", - "format": "uuid", - "nullable": true - }, - "ParentThumbImageTag": { - "type": "string", - "description": "Gets or sets the parent thumb image tag.", - "nullable": true - }, - "ParentPrimaryImageItemId": { - "type": "string", - "description": "Gets or sets the parent primary image item identifier.", - "nullable": true - }, - "ParentPrimaryImageTag": { - "type": "string", - "description": "Gets or sets the parent primary image tag.", - "nullable": true - }, - "Chapters": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ChapterInfo" - }, - "description": "Gets or sets the chapters.", - "nullable": true - }, - "LocationType": { - "allOf": [ - { - "$ref": "#/components/schemas/LocationType" - } - ], - "description": "Gets or sets the type of the location.", - "nullable": true - }, - "IsoType": { - "allOf": [ - { - "$ref": "#/components/schemas/IsoType" - } - ], - "description": "Gets or sets the type of the iso.", - "nullable": true - }, - "MediaType": { - "type": "string", - "description": "Gets or sets the type of the media.", - "nullable": true - }, - "EndDate": { - "type": "string", - "description": "Gets or sets the end date.", - "format": "date-time", - "nullable": true - }, - "LockedFields": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MetadataField" - }, - "description": "Gets or sets the locked fields.", - "nullable": true - }, - "TrailerCount": { - "type": "integer", - "description": "Gets or sets the trailer count.", - "format": "int32", - "nullable": true - }, - "MovieCount": { - "type": "integer", - "description": "Gets or sets the movie count.", - "format": "int32", - "nullable": true - }, - "SeriesCount": { - "type": "integer", - "description": "Gets or sets the series count.", - "format": "int32", - "nullable": true - }, - "ProgramCount": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "EpisodeCount": { - "type": "integer", - "description": "Gets or sets the episode count.", - "format": "int32", - "nullable": true - }, - "SongCount": { - "type": "integer", - "description": "Gets or sets the song count.", - "format": "int32", - "nullable": true - }, - "AlbumCount": { - "type": "integer", - "description": "Gets or sets the album count.", - "format": "int32", - "nullable": true - }, - "ArtistCount": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "MusicVideoCount": { - "type": "integer", - "description": "Gets or sets the music video count.", - "format": "int32", - "nullable": true - }, - "LockData": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [enable internet providers].", - "nullable": true - }, - "Width": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "Height": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "CameraMake": { - "type": "string", - "nullable": true - }, - "CameraModel": { - "type": "string", - "nullable": true - }, - "Software": { - "type": "string", - "nullable": true - }, - "ExposureTime": { - "type": "number", - "format": "double", - "nullable": true - }, - "FocalLength": { - "type": "number", - "format": "double", - "nullable": true - }, - "ImageOrientation": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageOrientation" - } - ], - "nullable": true - }, - "Aperture": { - "type": "number", - "format": "double", - "nullable": true - }, - "ShutterSpeed": { - "type": "number", - "format": "double", - "nullable": true - }, - "Latitude": { - "type": "number", - "format": "double", - "nullable": true - }, - "Longitude": { - "type": "number", - "format": "double", - "nullable": true - }, - "Altitude": { - "type": "number", - "format": "double", - "nullable": true - }, - "IsoSpeedRating": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "SeriesTimerId": { - "type": "string", - "description": "Gets or sets the series timer identifier.", - "nullable": true - }, - "ProgramId": { - "type": "string", - "description": "Gets or sets the program identifier.", - "nullable": true - }, - "ChannelPrimaryImageTag": { - "type": "string", - "description": "Gets or sets the channel primary image tag.", - "nullable": true - }, - "StartDate": { - "type": "string", - "description": "Gets or sets the start date of the recording, in UTC.", - "format": "date-time", - "nullable": true - }, - "CompletionPercentage": { - "type": "number", - "description": "Gets or sets the completion percentage.", - "format": "double", - "nullable": true - }, - "IsRepeat": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is repeat.", - "nullable": true - }, - "EpisodeTitle": { - "type": "string", - "description": "Gets or sets the episode title.", - "nullable": true - }, - "ChannelType": { - "allOf": [ - { - "$ref": "#/components/schemas/ChannelType" - } - ], - "description": "Gets or sets the type of the channel.", - "nullable": true - }, - "Audio": { - "allOf": [ - { - "$ref": "#/components/schemas/ProgramAudio" - } - ], - "description": "Gets or sets the audio.", - "nullable": true - }, - "IsMovie": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is movie.", - "nullable": true - }, - "IsSports": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is sports.", - "nullable": true - }, - "IsSeries": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is series.", - "nullable": true - }, - "IsLive": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is live.", - "nullable": true - }, - "IsNews": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is news.", - "nullable": true - }, - "IsKids": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is kids.", - "nullable": true - }, - "IsPremiere": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is premiere.", - "nullable": true - }, - "TimerId": { - "type": "string", - "description": "Gets or sets the timer identifier.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client." - }, - "BaseItemDtoQueryResult": { - "type": "object", - "properties": { - "Items": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - }, - "description": "Gets or sets the items.", - "nullable": true - }, - "TotalRecordCount": { - "type": "integer", - "description": "Gets or sets the total number of records available.", - "format": "int32" - }, - "StartIndex": { - "type": "integer", - "description": "Gets or sets the index of the first record in Items.", - "format": "int32" - } - }, - "additionalProperties": false - }, - "BaseItemKind": { - "enum": [ - "AggregateFolder", - "Audio", - "AudioBook", - "BasePluginFolder", - "Book", - "BoxSet", - "Channel", - "ChannelFolderItem", - "CollectionFolder", - "Episode", - "Folder", - "Genre", - "ManualPlaylistsFolder", - "Movie", - "LiveTvChannel", - "LiveTvProgram", - "MusicAlbum", - "MusicArtist", - "MusicGenre", - "MusicVideo", - "Person", - "Photo", - "PhotoAlbum", - "Playlist", - "PlaylistsFolder", - "Program", - "Recording", - "Season", - "Series", - "Studio", - "Trailer", - "TvChannel", - "TvProgram", - "UserRootFolder", - "UserView", - "Video", - "Year" - ], - "type": "string", - "description": "The base item kind." - }, - "BaseItemPerson": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the identifier.", - "format": "uuid" - }, - "Role": { - "type": "string", - "description": "Gets or sets the role.", - "nullable": true - }, - "Type": { - "type": "string", - "description": "Gets or sets the type.", - "nullable": true - }, - "PrimaryImageTag": { - "type": "string", - "description": "Gets or sets the primary image tag.", - "nullable": true - }, - "ImageBlurHashes": { - "type": "object", - "properties": { - "Primary": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Art": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Backdrop": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Banner": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Logo": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Thumb": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Disc": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Box": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Screenshot": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Menu": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Chapter": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "BoxRear": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "Profile": { - "type": "object", - "additionalProperties": { - "type": "string" - } - } - }, - "description": "Gets or sets the primary image blurhash.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "This is used by the api to get information about a Person within a BaseItem." - }, - "BasePluginConfiguration": { - "type": "object", - "additionalProperties": false, - "description": "Class BasePluginConfiguration." - }, - "BookInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "description": "Gets or sets the original title.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "MetadataLanguage": { - "type": "string", - "description": "Gets or sets the metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "Year": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "IsAutomated": { - "type": "boolean" - }, - "SeriesName": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "BookInfoRemoteSearchQuery": { - "type": "object", - "properties": { - "SearchInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/BookInfo" - } - ], - "nullable": true - }, - "ItemId": { - "type": "string", - "format": "uuid" - }, - "SearchProviderName": { - "type": "string", - "description": "Gets or sets the provider name to search within if set.", - "nullable": true - }, - "IncludeDisabledProviders": { - "type": "boolean", - "description": "Gets or sets a value indicating whether disabled providers should be included." - } - }, - "additionalProperties": false - }, - "BoxSetInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "description": "Gets or sets the original title.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "MetadataLanguage": { - "type": "string", - "description": "Gets or sets the metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "Year": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "IsAutomated": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "BoxSetInfoRemoteSearchQuery": { - "type": "object", - "properties": { - "SearchInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/BoxSetInfo" - } - ], - "nullable": true - }, - "ItemId": { - "type": "string", - "format": "uuid" - }, - "SearchProviderName": { - "type": "string", - "description": "Gets or sets the provider name to search within if set.", - "nullable": true - }, - "IncludeDisabledProviders": { - "type": "boolean", - "description": "Gets or sets a value indicating whether disabled providers should be included." - } - }, - "additionalProperties": false - }, - "BrandingOptions": { - "type": "object", - "properties": { - "LoginDisclaimer": { - "type": "string", - "description": "Gets or sets the login disclaimer.", - "nullable": true - }, - "CustomCss": { - "type": "string", - "description": "Gets or sets the custom CSS.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "The branding options." - }, - "BufferRequestDto": { - "type": "object", - "properties": { - "When": { - "type": "string", - "description": "Gets or sets when the request has been made by the client.", - "format": "date-time" - }, - "PositionTicks": { - "type": "integer", - "description": "Gets or sets the position ticks.", - "format": "int64" - }, - "IsPlaying": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the client playback is unpaused." - }, - "PlaylistItemId": { - "type": "string", - "description": "Gets or sets the playlist item identifier of the playing item.", - "format": "uuid" - } - }, - "additionalProperties": false, - "description": "Class BufferRequestDto." - }, - "ChannelFeatures": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name." - }, - "Id": { - "type": "string", - "description": "Gets or sets the identifier.", - "format": "uuid" - }, - "CanSearch": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance can search." - }, - "MediaTypes": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ChannelMediaType" - }, - "description": "Gets or sets the media types." - }, - "ContentTypes": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ChannelMediaContentType" - }, - "description": "Gets or sets the content types." - }, - "MaxPageSize": { - "type": "integer", - "description": "Gets or sets the maximum number of records the channel allows retrieving at a time.", - "format": "int32", - "nullable": true - }, - "AutoRefreshLevels": { - "type": "integer", - "description": "Gets or sets the automatic refresh levels.", - "format": "int32", - "nullable": true - }, - "DefaultSortFields": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ChannelItemSortField" - }, - "description": "Gets or sets the default sort orders." - }, - "SupportsSortOrderToggle": { - "type": "boolean", - "description": "Gets or sets a value indicating whether a sort ascending/descending toggle is supported." - }, - "SupportsLatestMedia": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [supports latest media]." - }, - "CanFilter": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance can filter." - }, - "SupportsContentDownloading": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [supports content downloading]." - } - }, - "additionalProperties": false - }, - "ChannelItemSortField": { - "enum": [ - "Name", - "CommunityRating", - "PremiereDate", - "DateCreated", - "Runtime", - "PlayCount", - "CommunityPlayCount" - ], - "type": "string" - }, - "ChannelMappingOptionsDto": { - "type": "object", - "properties": { - "TunerChannels": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TunerChannelMapping" - }, - "description": "Gets or sets list of tuner channels." - }, - "ProviderChannels": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameIdPair" - }, - "description": "Gets or sets list of provider channels." - }, - "Mappings": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameValuePair" - }, - "description": "Gets or sets list of mappings." - }, - "ProviderName": { - "type": "string", - "description": "Gets or sets provider name.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Channel mapping options dto." - }, - "ChannelMediaContentType": { - "enum": [ - "Clip", - "Podcast", - "Trailer", - "Movie", - "Episode", - "Song", - "MovieExtra", - "TvExtra" - ], - "type": "string" - }, - "ChannelMediaType": { - "enum": [ - "Audio", - "Video", - "Photo" - ], - "type": "string" - }, - "ChannelType": { - "enum": [ - "TV", - "Radio" - ], - "type": "string", - "description": "Enum ChannelType." - }, - "ChapterInfo": { - "type": "object", - "properties": { - "StartPositionTicks": { - "type": "integer", - "description": "Gets or sets the start position ticks.", - "format": "int64" - }, - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "ImagePath": { - "type": "string", - "description": "Gets or sets the image path.", - "nullable": true - }, - "ImageDateModified": { - "type": "string", - "format": "date-time" - }, - "ImageTag": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class ChapterInfo." - }, - "ClientCapabilities": { - "type": "object", - "properties": { - "PlayableMediaTypes": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "SupportedCommands": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GeneralCommandType" - }, - "nullable": true - }, - "SupportsMediaControl": { - "type": "boolean" - }, - "SupportsContentUploading": { - "type": "boolean" - }, - "MessageCallbackUrl": { - "type": "string", - "nullable": true - }, - "SupportsPersistentIdentifier": { - "type": "boolean" - }, - "SupportsSync": { - "type": "boolean" - }, - "DeviceProfile": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfile" - } - ], - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't.", - "nullable": true - }, - "AppStoreUrl": { - "type": "string", - "nullable": true - }, - "IconUrl": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "ClientCapabilitiesDto": { - "type": "object", - "properties": { - "PlayableMediaTypes": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the list of playable media types." - }, - "SupportedCommands": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GeneralCommandType" - }, - "description": "Gets or sets the list of supported commands." - }, - "SupportsMediaControl": { - "type": "boolean", - "description": "Gets or sets a value indicating whether session supports media control." - }, - "SupportsContentUploading": { - "type": "boolean", - "description": "Gets or sets a value indicating whether session supports content uploading." - }, - "MessageCallbackUrl": { - "type": "string", - "description": "Gets or sets the message callback url.", - "nullable": true - }, - "SupportsPersistentIdentifier": { - "type": "boolean", - "description": "Gets or sets a value indicating whether session supports a persistent identifier." - }, - "SupportsSync": { - "type": "boolean", - "description": "Gets or sets a value indicating whether session supports sync." - }, - "DeviceProfile": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfile" - } - ], - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't.", - "nullable": true - }, - "AppStoreUrl": { - "type": "string", - "description": "Gets or sets the app store url.", - "nullable": true - }, - "IconUrl": { - "type": "string", - "description": "Gets or sets the icon url.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Client capabilities dto." - }, - "ClientLogDocumentResponseDto": { - "type": "object", - "properties": { - "FileName": { - "type": "string", - "description": "Gets the resulting filename." - } - }, - "additionalProperties": false, - "description": "Client log document response dto." - }, - "CodecProfile": { - "type": "object", - "properties": { - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/CodecType" - } - ] - }, - "Conditions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ProfileCondition" - }, - "nullable": true - }, - "ApplyConditions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ProfileCondition" - }, - "nullable": true - }, - "Codec": { - "type": "string", - "nullable": true - }, - "Container": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "CodecType": { - "enum": [ - "Video", - "VideoAudio", - "Audio" - ], - "type": "string" - }, - "CollectionCreationResult": { - "type": "object", - "properties": { - "Id": { - "type": "string", - "format": "uuid" - } - }, - "additionalProperties": false - }, - "CollectionTypeOptions": { - "enum": [ - "Movies", - "TvShows", - "Music", - "MusicVideos", - "HomeVideos", - "BoxSets", - "Books", - "Mixed" - ], - "type": "string" - }, - "ConfigImageTypes": { - "type": "object", - "properties": { - "BackdropSizes": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "BaseUrl": { - "type": "string", - "nullable": true - }, - "LogoSizes": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "PosterSizes": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "ProfileSizes": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "SecureBaseUrl": { - "type": "string", - "nullable": true - }, - "StillSizes": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "ConfigurationPageInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name." - }, - "EnableInMainMenu": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the configurations page is enabled in the main menu." - }, - "MenuSection": { - "type": "string", - "description": "Gets or sets the menu section.", - "nullable": true - }, - "MenuIcon": { - "type": "string", - "description": "Gets or sets the menu icon.", - "nullable": true - }, - "DisplayName": { - "type": "string", - "description": "Gets or sets the display name.", - "nullable": true - }, - "PluginId": { - "type": "string", - "description": "Gets or sets the plugin id.", - "format": "uuid", - "nullable": true - } - }, - "additionalProperties": false, - "description": "The configuration page info." - }, - "ContainerProfile": { - "type": "object", - "properties": { - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/DlnaProfileType" - } - ] - }, - "Conditions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ProfileCondition" - }, - "nullable": true - }, - "Container": { - "type": "string" - } - }, - "additionalProperties": false - }, - "ControlResponse": { - "type": "object", - "properties": { - "Headers": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "readOnly": true - }, - "Xml": { - "type": "string" - }, - "IsSuccessful": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "CountryInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "DisplayName": { - "type": "string", - "description": "Gets or sets the display name.", - "nullable": true - }, - "TwoLetterISORegionName": { - "type": "string", - "description": "Gets or sets the name of the two letter ISO region.", - "nullable": true - }, - "ThreeLetterISORegionName": { - "type": "string", - "description": "Gets or sets the name of the three letter ISO region.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class CountryInfo." - }, - "CreatePlaylistDto": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name of the new playlist.", - "nullable": true - }, - "Ids": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "description": "Gets or sets item ids to add to the playlist." - }, - "UserId": { - "type": "string", - "description": "Gets or sets the user id.", - "format": "uuid", - "nullable": true - }, - "MediaType": { - "type": "string", - "description": "Gets or sets the media type.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Create new playlist dto." - }, - "CreateUserByName": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the username.", - "nullable": true - }, - "Password": { - "type": "string", - "description": "Gets or sets the password.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "The create user by name request body." - }, - "CultureDto": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets the name." - }, - "DisplayName": { - "type": "string", - "description": "Gets the display name." - }, - "TwoLetterISOLanguageName": { - "type": "string", - "description": "Gets the name of the two letter ISO language." - }, - "ThreeLetterISOLanguageName": { - "type": "string", - "description": "Gets the name of the three letter ISO language.", - "nullable": true, - "readOnly": true - }, - "ThreeLetterISOLanguageNames": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "additionalProperties": false, - "description": "Class CultureDto." - }, - "DayOfWeek": { - "enum": [ - "Sunday", - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday" - ], - "type": "string" - }, - "DayPattern": { - "enum": [ - "Daily", - "Weekdays", - "Weekends" - ], - "type": "string" - }, - "DefaultDirectoryBrowserInfoDto": { - "type": "object", - "properties": { - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Default directory browser info." - }, - "DeviceIdentification": { - "type": "object", - "properties": { - "FriendlyName": { - "type": "string", - "description": "Gets or sets the name of the friendly." - }, - "ModelNumber": { - "type": "string", - "description": "Gets or sets the model number." - }, - "SerialNumber": { - "type": "string", - "description": "Gets or sets the serial number." - }, - "ModelName": { - "type": "string", - "description": "Gets or sets the name of the model." - }, - "ModelDescription": { - "type": "string", - "description": "Gets or sets the model description." - }, - "ModelUrl": { - "type": "string", - "description": "Gets or sets the model URL." - }, - "Manufacturer": { - "type": "string", - "description": "Gets or sets the manufacturer." - }, - "ManufacturerUrl": { - "type": "string", - "description": "Gets or sets the manufacturer URL." - }, - "Headers": { - "type": "array", - "items": { - "$ref": "#/components/schemas/HttpHeaderInfo" - }, - "description": "Gets or sets the headers." - } - }, - "additionalProperties": false - }, - "DeviceInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "nullable": true - }, - "AccessToken": { - "type": "string", - "description": "Gets or sets the access token.", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the identifier.", - "nullable": true - }, - "LastUserName": { - "type": "string", - "description": "Gets or sets the last name of the user.", - "nullable": true - }, - "AppName": { - "type": "string", - "description": "Gets or sets the name of the application.", - "nullable": true - }, - "AppVersion": { - "type": "string", - "description": "Gets or sets the application version.", - "nullable": true - }, - "LastUserId": { - "type": "string", - "description": "Gets or sets the last user identifier.", - "format": "uuid" - }, - "DateLastActivity": { - "type": "string", - "description": "Gets or sets the date last modified.", - "format": "date-time" - }, - "Capabilities": { - "allOf": [ - { - "$ref": "#/components/schemas/ClientCapabilities" - } - ], - "description": "Gets or sets the capabilities.", - "nullable": true - }, - "IconUrl": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "DeviceInfoQueryResult": { - "type": "object", - "properties": { - "Items": { - "type": "array", - "items": { - "$ref": "#/components/schemas/DeviceInfo" - }, - "description": "Gets or sets the items.", - "nullable": true - }, - "TotalRecordCount": { - "type": "integer", - "description": "Gets or sets the total number of records available.", - "format": "int32" - }, - "StartIndex": { - "type": "integer", - "description": "Gets or sets the index of the first record in Items.", - "format": "int32" - } - }, - "additionalProperties": false - }, - "DeviceOptions": { - "type": "object", - "properties": { - "Id": { - "type": "integer", - "description": "Gets the id.", - "format": "int32", - "readOnly": true - }, - "DeviceId": { - "type": "string", - "description": "Gets the device id." - }, - "CustomName": { - "type": "string", - "description": "Gets or sets the custom name.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "An entity representing custom options for a device." - }, - "DeviceOptionsDto": { - "type": "object", - "properties": { - "Id": { - "type": "integer", - "description": "Gets or sets the id.", - "format": "int32" - }, - "DeviceId": { - "type": "string", - "description": "Gets or sets the device id.", - "nullable": true - }, - "CustomName": { - "type": "string", - "description": "Gets or sets the custom name.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "A dto representing custom options for a device." - }, - "DeviceProfile": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name of this device profile.", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the Id.", - "nullable": true - }, - "Identification": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceIdentification" - } - ], - "description": "Gets or sets the Identification.", - "nullable": true - }, - "FriendlyName": { - "type": "string", - "description": "Gets or sets the friendly name of the device profile, which can be shown to users.", - "nullable": true - }, - "Manufacturer": { - "type": "string", - "description": "Gets or sets the manufacturer of the device which this profile represents.", - "nullable": true - }, - "ManufacturerUrl": { - "type": "string", - "description": "Gets or sets an url for the manufacturer of the device which this profile represents.", - "nullable": true - }, - "ModelName": { - "type": "string", - "description": "Gets or sets the model name of the device which this profile represents.", - "nullable": true - }, - "ModelDescription": { - "type": "string", - "description": "Gets or sets the model description of the device which this profile represents.", - "nullable": true - }, - "ModelNumber": { - "type": "string", - "description": "Gets or sets the model number of the device which this profile represents.", - "nullable": true - }, - "ModelUrl": { - "type": "string", - "description": "Gets or sets the ModelUrl.", - "nullable": true - }, - "SerialNumber": { - "type": "string", - "description": "Gets or sets the serial number of the device which this profile represents.", - "nullable": true - }, - "EnableAlbumArtInDidl": { - "type": "boolean", - "description": "Gets or sets a value indicating whether EnableAlbumArtInDidl.", - "default": false - }, - "EnableSingleAlbumArtLimit": { - "type": "boolean", - "description": "Gets or sets a value indicating whether EnableSingleAlbumArtLimit.", - "default": false - }, - "EnableSingleSubtitleLimit": { - "type": "boolean", - "description": "Gets or sets a value indicating whether EnableSingleSubtitleLimit.", - "default": false - }, - "SupportedMediaTypes": { - "type": "string", - "description": "Gets or sets the SupportedMediaTypes." - }, - "UserId": { - "type": "string", - "description": "Gets or sets the UserId.", - "nullable": true - }, - "AlbumArtPn": { - "type": "string", - "description": "Gets or sets the AlbumArtPn.", - "nullable": true - }, - "MaxAlbumArtWidth": { - "type": "integer", - "description": "Gets or sets the MaxAlbumArtWidth.", - "format": "int32", - "nullable": true - }, - "MaxAlbumArtHeight": { - "type": "integer", - "description": "Gets or sets the MaxAlbumArtHeight.", - "format": "int32", - "nullable": true - }, - "MaxIconWidth": { - "type": "integer", - "description": "Gets or sets the maximum allowed width of embedded icons.", - "format": "int32", - "nullable": true - }, - "MaxIconHeight": { - "type": "integer", - "description": "Gets or sets the maximum allowed height of embedded icons.", - "format": "int32", - "nullable": true - }, - "MaxStreamingBitrate": { - "type": "integer", - "description": "Gets or sets the maximum allowed bitrate for all streamed content.", - "format": "int32", - "nullable": true - }, - "MaxStaticBitrate": { - "type": "integer", - "description": "Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files).", - "format": "int32", - "nullable": true - }, - "MusicStreamingTranscodingBitrate": { - "type": "integer", - "description": "Gets or sets the maximum allowed bitrate for transcoded music streams.", - "format": "int32", - "nullable": true - }, - "MaxStaticMusicBitrate": { - "type": "integer", - "description": "Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files.", - "format": "int32", - "nullable": true - }, - "SonyAggregationFlags": { - "type": "string", - "description": "Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "nullable": true - }, - "ProtocolInfo": { - "type": "string", - "description": "Gets or sets the ProtocolInfo.", - "nullable": true - }, - "TimelineOffsetSeconds": { - "type": "integer", - "description": "Gets or sets the TimelineOffsetSeconds.", - "format": "int32", - "default": 0 - }, - "RequiresPlainVideoItems": { - "type": "boolean", - "description": "Gets or sets a value indicating whether RequiresPlainVideoItems.", - "default": false - }, - "RequiresPlainFolders": { - "type": "boolean", - "description": "Gets or sets a value indicating whether RequiresPlainFolders.", - "default": false - }, - "EnableMSMediaReceiverRegistrar": { - "type": "boolean", - "description": "Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar.", - "default": false - }, - "IgnoreTranscodeByteRangeRequests": { - "type": "boolean", - "description": "Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests.", - "default": false - }, - "XmlRootAttributes": { - "type": "array", - "items": { - "$ref": "#/components/schemas/XmlAttribute" - }, - "description": "Gets or sets the XmlRootAttributes." - }, - "DirectPlayProfiles": { - "type": "array", - "items": { - "$ref": "#/components/schemas/DirectPlayProfile" - }, - "description": "Gets or sets the direct play profiles." - }, - "TranscodingProfiles": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TranscodingProfile" - }, - "description": "Gets or sets the transcoding profiles." - }, - "ContainerProfiles": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ContainerProfile" - }, - "description": "Gets or sets the container profiles." - }, - "CodecProfiles": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CodecProfile" - }, - "description": "Gets or sets the codec profiles." - }, - "ResponseProfiles": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ResponseProfile" - }, - "description": "Gets or sets the ResponseProfiles." - }, - "SubtitleProfiles": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SubtitleProfile" - }, - "description": "Gets or sets the subtitle profiles." - } - }, - "additionalProperties": false, - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't." - }, - "DeviceProfileInfo": { - "type": "object", - "properties": { - "Id": { - "type": "string", - "description": "Gets or sets the identifier.", - "nullable": true - }, - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfileType" - } - ], - "description": "Gets or sets the type." - } - }, - "additionalProperties": false - }, - "DeviceProfileType": { - "enum": [ - "System", - "User" - ], - "type": "string" - }, - "DirectPlayProfile": { - "type": "object", - "properties": { - "Container": { - "type": "string", - "nullable": true - }, - "AudioCodec": { - "type": "string", - "nullable": true - }, - "VideoCodec": { - "type": "string", - "nullable": true - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/DlnaProfileType" - } - ] - } - }, - "additionalProperties": false - }, - "DisplayPreferencesDto": { - "type": "object", - "properties": { - "Id": { - "type": "string", - "description": "Gets or sets the user id.", - "nullable": true - }, - "ViewType": { - "type": "string", - "description": "Gets or sets the type of the view.", - "nullable": true - }, - "SortBy": { - "type": "string", - "description": "Gets or sets the sort by.", - "nullable": true - }, - "IndexBy": { - "type": "string", - "description": "Gets or sets the index by.", - "nullable": true - }, - "RememberIndexing": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [remember indexing]." - }, - "PrimaryImageHeight": { - "type": "integer", - "description": "Gets or sets the height of the primary image.", - "format": "int32" - }, - "PrimaryImageWidth": { - "type": "integer", - "description": "Gets or sets the width of the primary image.", - "format": "int32" - }, - "CustomPrefs": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the custom prefs." - }, - "ScrollDirection": { - "allOf": [ - { - "$ref": "#/components/schemas/ScrollDirection" - } - ], - "description": "An enum representing the axis that should be scrolled." - }, - "ShowBackdrop": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to show backdrops on this item." - }, - "RememberSorting": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [remember sorting]." - }, - "SortOrder": { - "allOf": [ - { - "$ref": "#/components/schemas/SortOrder" - } - ], - "description": "An enum representing the sorting order." - }, - "ShowSidebar": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [show sidebar]." - }, - "Client": { - "type": "string", - "description": "Gets or sets the client.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Defines the display preferences for any item that supports them (usually Folders)." - }, - "DlnaOptions": { - "type": "object", - "properties": { - "EnablePlayTo": { - "type": "boolean", - "description": "Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna playTo subsystem." - }, - "EnableServer": { - "type": "boolean", - "description": "Gets or sets a value indicating whether gets or sets a value to indicate the status of the dlna server subsystem." - }, - "EnableDebugLog": { - "type": "boolean", - "description": "Gets or sets a value indicating whether detailed dlna server logs are sent to the console/log.\r\nIf the setting \"Emby.Dlna\": \"Debug\" msut be set in logging.default.json for this property to work." - }, - "EnablePlayToTracing": { - "type": "boolean", - "description": "Gets or sets a value indicating whether whether detailed playTo debug logs are sent to the console/log.\r\nIf the setting \"Emby.Dlna.PlayTo\": \"Debug\" msut be set in logging.default.json for this property to work." - }, - "ClientDiscoveryIntervalSeconds": { - "type": "integer", - "description": "Gets or sets the ssdp client discovery interval time (in seconds).\r\nThis is the time after which the server will send a ssdp search request.", - "format": "int32" - }, - "AliveMessageIntervalSeconds": { - "type": "integer", - "description": "Gets or sets the frequency at which ssdp alive notifications are transmitted.", - "format": "int32" - }, - "BlastAliveMessageIntervalSeconds": { - "type": "integer", - "description": "Gets or sets the frequency at which ssdp alive notifications are transmitted. MIGRATING - TO BE REMOVED ONCE WEB HAS BEEN ALTERED.", - "format": "int32" - }, - "DefaultUserId": { - "type": "string", - "description": "Gets or sets the default user account that the dlna server uses.", - "nullable": true - }, - "AutoCreatePlayToProfiles": { - "type": "boolean", - "description": "Gets or sets a value indicating whether playTo device profiles should be created." - }, - "BlastAliveMessages": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to blast alive messages." - }, - "SendOnlyMatchedHost": { - "type": "boolean", - "description": "gets or sets a value indicating whether to send only matched host." - } - }, - "additionalProperties": false, - "description": "The DlnaOptions class contains the user definable parameters for the dlna subsystems." - }, - "DlnaProfileType": { - "enum": [ - "Audio", - "Video", - "Photo", - "Subtitle" - ], - "type": "string" - }, - "DynamicDayOfWeek": { - "enum": [ - "Sunday", - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday", - "Everyday", - "Weekday", - "Weekend" - ], - "type": "string", - "description": "An enum that represents a day of the week, weekdays, weekends, or all days." - }, - "EmbeddedSubtitleOptions": { - "enum": [ - "AllowAll", - "AllowText", - "AllowImage", - "AllowNone" - ], - "type": "string", - "description": "An enum representing the options to disable embedded subs." - }, - "EncodingContext": { - "enum": [ - "Streaming", - "Static" - ], - "type": "string" - }, - "EncodingOptions": { - "type": "object", - "properties": { - "EncodingThreadCount": { - "type": "integer", - "format": "int32" - }, - "TranscodingTempPath": { - "type": "string", - "nullable": true - }, - "FallbackFontPath": { - "type": "string", - "nullable": true - }, - "EnableFallbackFont": { - "type": "boolean" - }, - "DownMixAudioBoost": { - "type": "number", - "format": "double" - }, - "MaxMuxingQueueSize": { - "type": "integer", - "format": "int32" - }, - "EnableThrottling": { - "type": "boolean" - }, - "ThrottleDelaySeconds": { - "type": "integer", - "format": "int32" - }, - "HardwareAccelerationType": { - "type": "string", - "nullable": true - }, - "EncoderAppPath": { - "type": "string", - "description": "Gets or sets the FFmpeg path as set by the user via the UI.", - "nullable": true - }, - "EncoderAppPathDisplay": { - "type": "string", - "description": "Gets or sets the current FFmpeg path being used by the system and displayed on the transcode page.", - "nullable": true - }, - "VaapiDevice": { - "type": "string", - "nullable": true - }, - "EnableTonemapping": { - "type": "boolean" - }, - "EnableVppTonemapping": { - "type": "boolean" - }, - "TonemappingAlgorithm": { - "type": "string", - "nullable": true - }, - "TonemappingRange": { - "type": "string", - "nullable": true - }, - "TonemappingDesat": { - "type": "number", - "format": "double" - }, - "TonemappingThreshold": { - "type": "number", - "format": "double" - }, - "TonemappingPeak": { - "type": "number", - "format": "double" - }, - "TonemappingParam": { - "type": "number", - "format": "double" - }, - "H264Crf": { - "type": "integer", - "format": "int32" - }, - "H265Crf": { - "type": "integer", - "format": "int32" - }, - "EncoderPreset": { - "type": "string", - "nullable": true - }, - "DeinterlaceDoubleRate": { - "type": "boolean" - }, - "DeinterlaceMethod": { - "type": "string", - "nullable": true - }, - "EnableDecodingColorDepth10Hevc": { - "type": "boolean" - }, - "EnableDecodingColorDepth10Vp9": { - "type": "boolean" - }, - "EnableEnhancedNvdecDecoder": { - "type": "boolean" - }, - "PreferSystemNativeHwDecoder": { - "type": "boolean" - }, - "EnableIntelLowPowerH264HwEncoder": { - "type": "boolean" - }, - "EnableIntelLowPowerHevcHwEncoder": { - "type": "boolean" - }, - "EnableHardwareEncoding": { - "type": "boolean" - }, - "AllowHevcEncoding": { - "type": "boolean" - }, - "EnableSubtitleExtraction": { - "type": "boolean" - }, - "HardwareDecodingCodecs": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "AllowOnDemandMetadataBasedKeyframeExtractionForExtensions": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "EndPointInfo": { - "type": "object", - "properties": { - "IsLocal": { - "type": "boolean" - }, - "IsInNetwork": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "ExternalIdInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc)." - }, - "Key": { - "type": "string", - "description": "Gets or sets the unique key for this id. This key should be unique across all providers." - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/ExternalIdMediaType" - } - ], - "description": "Gets or sets the specific media type for this id. This is used to distinguish between the different\r\nexternal id types for providers with multiple ids.\r\nA null value indicates there is no specific media type associated with the external id, or this is the\r\ndefault id for the external provider so there is no need to specify a type.", - "nullable": true - }, - "UrlFormatString": { - "type": "string", - "description": "Gets or sets the URL format string.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Represents the external id information for serialization to the client." - }, - "ExternalIdMediaType": { - "enum": [ - "Album", - "AlbumArtist", - "Artist", - "BoxSet", - "Episode", - "Movie", - "OtherArtist", - "Person", - "ReleaseGroup", - "Season", - "Series", - "Track" - ], - "type": "string", - "description": "The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo." - }, - "ExternalUrl": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Url": { - "type": "string", - "description": "Gets or sets the type of the item.", - "nullable": true - } - }, - "additionalProperties": false - }, - "FFmpegLocation": { - "enum": [ - "NotFound", - "SetByArgument", - "Custom", - "System" - ], - "type": "string", - "description": "Enum describing the location of the FFmpeg tool." - }, - "FileSystemEntryInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets the name." - }, - "Path": { - "type": "string", - "description": "Gets the path." - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemEntryType" - } - ], - "description": "Gets the type." - } - }, - "additionalProperties": false, - "description": "Class FileSystemEntryInfo." - }, - "FileSystemEntryType": { - "enum": [ - "File", - "Directory", - "NetworkComputer", - "NetworkShare" - ], - "type": "string", - "description": "Enum FileSystemEntryType." - }, - "FontFile": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Size": { - "type": "integer", - "description": "Gets or sets the size.", - "format": "int64" - }, - "DateCreated": { - "type": "string", - "description": "Gets or sets the date created.", - "format": "date-time" - }, - "DateModified": { - "type": "string", - "description": "Gets or sets the date modified.", - "format": "date-time" - } - }, - "additionalProperties": false, - "description": "Class FontFile." - }, - "ForgotPasswordAction": { - "enum": [ - "ContactAdmin", - "PinCode", - "InNetworkRequired" - ], - "type": "string" - }, - "ForgotPasswordDto": { - "required": [ - "EnteredUsername" - ], - "type": "object", - "properties": { - "EnteredUsername": { - "type": "string", - "description": "Gets or sets the entered username to have its password reset." - } - }, - "additionalProperties": false, - "description": "Forgot Password request body DTO." - }, - "ForgotPasswordPinDto": { - "required": [ - "Pin" - ], - "type": "object", - "properties": { - "Pin": { - "type": "string", - "description": "Gets or sets the entered pin to have the password reset." - } - }, - "additionalProperties": false, - "description": "Forgot Password Pin enter request body DTO." - }, - "ForgotPasswordResult": { - "type": "object", - "properties": { - "Action": { - "allOf": [ - { - "$ref": "#/components/schemas/ForgotPasswordAction" - } - ], - "description": "Gets or sets the action." - }, - "PinFile": { - "type": "string", - "description": "Gets or sets the pin file.", - "nullable": true - }, - "PinExpirationDate": { - "type": "string", - "description": "Gets or sets the pin expiration date.", - "format": "date-time", - "nullable": true - } - }, - "additionalProperties": false - }, - "GeneralCommand": { - "type": "object", - "properties": { - "Name": { - "allOf": [ - { - "$ref": "#/components/schemas/GeneralCommandType" - } - ], - "description": "This exists simply to identify a set of known commands." - }, - "ControllingUserId": { - "type": "string", - "format": "uuid" - }, - "Arguments": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - } - } - }, - "additionalProperties": false - }, - "GeneralCommandType": { - "enum": [ - "MoveUp", - "MoveDown", - "MoveLeft", - "MoveRight", - "PageUp", - "PageDown", - "PreviousLetter", - "NextLetter", - "ToggleOsd", - "ToggleContextMenu", - "Select", - "Back", - "TakeScreenshot", - "SendKey", - "SendString", - "GoHome", - "GoToSettings", - "VolumeUp", - "VolumeDown", - "Mute", - "Unmute", - "ToggleMute", - "SetVolume", - "SetAudioStreamIndex", - "SetSubtitleStreamIndex", - "ToggleFullscreen", - "DisplayContent", - "GoToSearch", - "DisplayMessage", - "SetRepeatMode", - "ChannelUp", - "ChannelDown", - "Guide", - "ToggleStats", - "PlayMediaSource", - "PlayTrailers", - "SetShuffleQueue", - "PlayState", - "PlayNext", - "ToggleOsdMenu", - "Play", - "SetMaxStreamingBitrate" - ], - "type": "string", - "description": "This exists simply to identify a set of known commands." - }, - "GetProgramsDto": { - "type": "object", - "properties": { - "ChannelIds": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "description": "Gets or sets the channels to return guide information for." - }, - "UserId": { - "type": "string", - "description": "Gets or sets optional. Filter by user id.", - "format": "uuid" - }, - "MinStartDate": { - "type": "string", - "description": "Gets or sets the minimum premiere start date.\r\nOptional.", - "format": "date-time", - "nullable": true - }, - "HasAired": { - "type": "boolean", - "description": "Gets or sets filter by programs that have completed airing, or not.\r\nOptional.", - "nullable": true - }, - "IsAiring": { - "type": "boolean", - "description": "Gets or sets filter by programs that are currently airing, or not.\r\nOptional.", - "nullable": true - }, - "MaxStartDate": { - "type": "string", - "description": "Gets or sets the maximum premiere start date.\r\nOptional.", - "format": "date-time", - "nullable": true - }, - "MinEndDate": { - "type": "string", - "description": "Gets or sets the minimum premiere end date.\r\nOptional.", - "format": "date-time", - "nullable": true - }, - "MaxEndDate": { - "type": "string", - "description": "Gets or sets the maximum premiere end date.\r\nOptional.", - "format": "date-time", - "nullable": true - }, - "IsMovie": { - "type": "boolean", - "description": "Gets or sets filter for movies.\r\nOptional.", - "nullable": true - }, - "IsSeries": { - "type": "boolean", - "description": "Gets or sets filter for series.\r\nOptional.", - "nullable": true - }, - "IsNews": { - "type": "boolean", - "description": "Gets or sets filter for news.\r\nOptional.", - "nullable": true - }, - "IsKids": { - "type": "boolean", - "description": "Gets or sets filter for kids.\r\nOptional.", - "nullable": true - }, - "IsSports": { - "type": "boolean", - "description": "Gets or sets filter for sports.\r\nOptional.", - "nullable": true - }, - "StartIndex": { - "type": "integer", - "description": "Gets or sets the record index to start at. All items with a lower index will be dropped from the results.\r\nOptional.", - "format": "int32", - "nullable": true - }, - "Limit": { - "type": "integer", - "description": "Gets or sets the maximum number of records to return.\r\nOptional.", - "format": "int32", - "nullable": true - }, - "SortBy": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate.\r\nOptional." - }, - "SortOrder": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SortOrder" - }, - "description": "Gets or sets sort Order - Ascending,Descending." - }, - "Genres": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the genres to return guide information for." - }, - "GenreIds": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "description": "Gets or sets the genre ids to return guide information for." - }, - "EnableImages": { - "type": "boolean", - "description": "Gets or sets include image information in output.\r\nOptional.", - "nullable": true - }, - "EnableTotalRecordCount": { - "type": "boolean", - "description": "Gets or sets a value indicating whether retrieve total record count." - }, - "ImageTypeLimit": { - "type": "integer", - "description": "Gets or sets the max number of images to return, per image type.\r\nOptional.", - "format": "int32", - "nullable": true - }, - "EnableImageTypes": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - }, - "description": "Gets or sets the image types to include in the output.\r\nOptional." - }, - "EnableUserData": { - "type": "boolean", - "description": "Gets or sets include user data.\r\nOptional.", - "nullable": true - }, - "SeriesTimerId": { - "type": "string", - "description": "Gets or sets filter by series timer id.\r\nOptional.", - "nullable": true - }, - "LibrarySeriesId": { - "type": "string", - "description": "Gets or sets filter by library series id.\r\nOptional.", - "format": "uuid" - }, - "Fields": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ItemFields" - }, - "description": "Gets or sets specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines.\r\nOptional." - } - }, - "additionalProperties": false, - "description": "Get programs dto." - }, - "GroupInfoDto": { - "type": "object", - "properties": { - "GroupId": { - "type": "string", - "description": "Gets the group identifier.", - "format": "uuid" - }, - "GroupName": { - "type": "string", - "description": "Gets the group name." - }, - "State": { - "allOf": [ - { - "$ref": "#/components/schemas/GroupStateType" - } - ], - "description": "Gets the group state." - }, - "Participants": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets the participants." - }, - "LastUpdatedAt": { - "type": "string", - "description": "Gets the date when this DTO has been created.", - "format": "date-time" - } - }, - "additionalProperties": false, - "description": "Class GroupInfoDto." - }, - "GroupQueueMode": { - "enum": [ - "Queue", - "QueueNext" - ], - "type": "string", - "description": "Enum GroupQueueMode." - }, - "GroupRepeatMode": { - "enum": [ - "RepeatOne", - "RepeatAll", - "RepeatNone" - ], - "type": "string", - "description": "Enum GroupRepeatMode." - }, - "GroupShuffleMode": { - "enum": [ - "Sorted", - "Shuffle" - ], - "type": "string", - "description": "Enum GroupShuffleMode." - }, - "GroupStateType": { - "enum": [ - "Idle", - "Waiting", - "Paused", - "Playing" - ], - "type": "string", - "description": "Enum GroupState." - }, - "GroupUpdateType": { - "enum": [ - "UserJoined", - "UserLeft", - "GroupJoined", - "GroupLeft", - "StateUpdate", - "PlayQueue", - "NotInGroup", - "GroupDoesNotExist", - "CreateGroupDenied", - "JoinGroupDenied", - "LibraryAccessDenied" - ], - "type": "string", - "description": "Enum GroupUpdateType." - }, - "GuideInfo": { - "type": "object", - "properties": { - "StartDate": { - "type": "string", - "description": "Gets or sets the start date.", - "format": "date-time" - }, - "EndDate": { - "type": "string", - "description": "Gets or sets the end date.", - "format": "date-time" - } - }, - "additionalProperties": false - }, - "HardwareEncodingType": { - "enum": [ - "AMF", - "QSV", - "NVENC", - "V4L2M2M", - "VAAPI", - "VideoToolBox" - ], - "type": "string", - "description": "Enum HardwareEncodingType." - }, - "HeaderMatchType": { - "enum": [ - "Equals", - "Regex", - "Substring" - ], - "type": "string" - }, - "HttpHeaderInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "nullable": true - }, - "Value": { - "type": "string", - "nullable": true - }, - "Match": { - "allOf": [ - { - "$ref": "#/components/schemas/HeaderMatchType" - } - ] - } - }, - "additionalProperties": false - }, - "IgnoreWaitRequestDto": { - "type": "object", - "properties": { - "IgnoreWait": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the client should be ignored." - } - }, - "additionalProperties": false, - "description": "Class IgnoreWaitRequestDto." - }, - "ImageByNameInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Theme": { - "type": "string", - "description": "Gets or sets the theme.", - "nullable": true - }, - "Context": { - "type": "string", - "description": "Gets or sets the context.", - "nullable": true - }, - "FileLength": { - "type": "integer", - "description": "Gets or sets the length of the file.", - "format": "int64" - }, - "Format": { - "type": "string", - "description": "Gets or sets the format.", - "nullable": true - } - }, - "additionalProperties": false - }, - "ImageFormat": { - "enum": [ - "Bmp", - "Gif", - "Jpg", - "Png", - "Webp" - ], - "type": "string", - "description": "Enum ImageOutputFormat." - }, - "ImageInfo": { - "type": "object", - "properties": { - "ImageType": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Gets or sets the type of the image." - }, - "ImageIndex": { - "type": "integer", - "description": "Gets or sets the index of the image.", - "format": "int32", - "nullable": true - }, - "ImageTag": { - "type": "string", - "description": "Gets or sets the image tag.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "BlurHash": { - "type": "string", - "description": "Gets or sets the blurhash.", - "nullable": true - }, - "Height": { - "type": "integer", - "description": "Gets or sets the height.", - "format": "int32", - "nullable": true - }, - "Width": { - "type": "integer", - "description": "Gets or sets the width.", - "format": "int32", - "nullable": true - }, - "Size": { - "type": "integer", - "description": "Gets or sets the size.", - "format": "int64" - } - }, - "additionalProperties": false, - "description": "Class ImageInfo." - }, - "ImageOption": { - "type": "object", - "properties": { - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Gets or sets the type." - }, - "Limit": { - "type": "integer", - "description": "Gets or sets the limit.", - "format": "int32" - }, - "MinWidth": { - "type": "integer", - "description": "Gets or sets the minimum width.", - "format": "int32" - } - }, - "additionalProperties": false - }, - "ImageOrientation": { - "enum": [ - "TopLeft", - "TopRight", - "BottomRight", - "BottomLeft", - "LeftTop", - "RightTop", - "RightBottom", - "LeftBottom" - ], - "type": "string" - }, - "ImageProviderInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets the name." - }, - "SupportedImages": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - }, - "description": "Gets the supported image types." - } - }, - "additionalProperties": false, - "description": "Class ImageProviderInfo." - }, - "ImageSavingConvention": { - "enum": [ - "Legacy", - "Compatible" - ], - "type": "string" - }, - "ImageType": { - "enum": [ - "Primary", - "Art", - "Backdrop", - "Banner", - "Logo", - "Thumb", - "Disc", - "Box", - "Screenshot", - "Menu", - "Chapter", - "BoxRear", - "Profile" - ], - "type": "string", - "description": "Enum ImageType." - }, - "InstallationInfo": { - "type": "object", - "properties": { - "Guid": { - "type": "string", - "description": "Gets or sets the Id.", - "format": "uuid" - }, - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Version": { - "type": "string", - "description": "Gets or sets the version.", - "nullable": true - }, - "Changelog": { - "type": "string", - "description": "Gets or sets the changelog for this version.", - "nullable": true - }, - "SourceUrl": { - "type": "string", - "description": "Gets or sets the source URL.", - "nullable": true - }, - "Checksum": { - "type": "string", - "description": "Gets or sets a checksum for the binary.", - "nullable": true - }, - "PackageInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/PackageInfo" - } - ], - "description": "Gets or sets package information for the installation.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class InstallationInfo." - }, - "IPlugin": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets the name of the plugin.", - "nullable": true, - "readOnly": true - }, - "Description": { - "type": "string", - "description": "Gets the Description.", - "nullable": true, - "readOnly": true - }, - "Id": { - "type": "string", - "description": "Gets the unique id.", - "format": "uuid", - "readOnly": true - }, - "Version": { - "type": "string", - "description": "Gets the plugin version.", - "nullable": true, - "readOnly": true - }, - "AssemblyFilePath": { - "type": "string", - "description": "Gets the path to the assembly file.", - "nullable": true, - "readOnly": true - }, - "CanUninstall": { - "type": "boolean", - "description": "Gets a value indicating whether the plugin can be uninstalled.", - "readOnly": true - }, - "DataFolderPath": { - "type": "string", - "description": "Gets the full path to the data folder, where the plugin can store any miscellaneous files needed.", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false, - "description": "Defines the MediaBrowser.Common.Plugins.IPlugin." - }, - "IsoType": { - "enum": [ - "Dvd", - "BluRay" - ], - "type": "string", - "description": "Enum IsoType." - }, - "ItemCounts": { - "type": "object", - "properties": { - "MovieCount": { - "type": "integer", - "description": "Gets or sets the movie count.", - "format": "int32" - }, - "SeriesCount": { - "type": "integer", - "description": "Gets or sets the series count.", - "format": "int32" - }, - "EpisodeCount": { - "type": "integer", - "description": "Gets or sets the episode count.", - "format": "int32" - }, - "ArtistCount": { - "type": "integer", - "description": "Gets or sets the artist count.", - "format": "int32" - }, - "ProgramCount": { - "type": "integer", - "description": "Gets or sets the program count.", - "format": "int32" - }, - "TrailerCount": { - "type": "integer", - "description": "Gets or sets the trailer count.", - "format": "int32" - }, - "SongCount": { - "type": "integer", - "description": "Gets or sets the song count.", - "format": "int32" - }, - "AlbumCount": { - "type": "integer", - "description": "Gets or sets the album count.", - "format": "int32" - }, - "MusicVideoCount": { - "type": "integer", - "description": "Gets or sets the music video count.", - "format": "int32" - }, - "BoxSetCount": { - "type": "integer", - "description": "Gets or sets the box set count.", - "format": "int32" - }, - "BookCount": { - "type": "integer", - "description": "Gets or sets the book count.", - "format": "int32" - }, - "ItemCount": { - "type": "integer", - "description": "Gets or sets the item count.", - "format": "int32" - } - }, - "additionalProperties": false, - "description": "Class LibrarySummary." - }, - "ItemFields": { - "enum": [ - "AirTime", - "CanDelete", - "CanDownload", - "ChannelInfo", - "Chapters", - "ChildCount", - "CumulativeRunTimeTicks", - "CustomRating", - "DateCreated", - "DateLastMediaAdded", - "DisplayPreferencesId", - "Etag", - "ExternalUrls", - "Genres", - "HomePageUrl", - "ItemCounts", - "MediaSourceCount", - "MediaSources", - "OriginalTitle", - "Overview", - "ParentId", - "Path", - "People", - "PlayAccess", - "ProductionLocations", - "ProviderIds", - "PrimaryImageAspectRatio", - "RecursiveItemCount", - "Settings", - "ScreenshotImageTags", - "SeriesPrimaryImage", - "SeriesStudio", - "SortName", - "SpecialEpisodeNumbers", - "Studios", - "BasicSyncInfo", - "SyncInfo", - "Taglines", - "Tags", - "RemoteTrailers", - "MediaStreams", - "SeasonUserData", - "ServiceName", - "ThemeSongIds", - "ThemeVideoIds", - "ExternalEtag", - "PresentationUniqueKey", - "InheritedParentalRatingValue", - "ExternalSeriesId", - "SeriesPresentationUniqueKey", - "DateLastRefreshed", - "DateLastSaved", - "RefreshState", - "ChannelImage", - "EnableMediaSourceDisplay", - "Width", - "Height", - "ExtraIds", - "LocalTrailerCount", - "IsHD", - "SpecialFeatureCount" - ], - "type": "string", - "description": "Used to control the data that gets attached to DtoBaseItems." - }, - "ItemFilter": { - "enum": [ - "IsFolder", - "IsNotFolder", - "IsUnplayed", - "IsPlayed", - "IsFavorite", - "IsResumable", - "Likes", - "Dislikes", - "IsFavoriteOrLikes" - ], - "type": "string", - "description": "Enum ItemFilter." - }, - "JoinGroupRequestDto": { - "type": "object", - "properties": { - "GroupId": { - "type": "string", - "description": "Gets or sets the group identifier.", - "format": "uuid" - } - }, - "additionalProperties": false, - "description": "Class JoinGroupRequestDto." - }, - "KeepUntil": { - "enum": [ - "UntilDeleted", - "UntilSpaceNeeded", - "UntilWatched", - "UntilDate" - ], - "type": "string" - }, - "LibraryOptionInfoDto": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets name.", - "nullable": true - }, - "DefaultEnabled": { - "type": "boolean", - "description": "Gets or sets a value indicating whether default enabled." - } - }, - "additionalProperties": false, - "description": "Library option info dto." - }, - "LibraryOptions": { - "type": "object", - "properties": { - "EnablePhotos": { - "type": "boolean" - }, - "EnableRealtimeMonitor": { - "type": "boolean" - }, - "EnableChapterImageExtraction": { - "type": "boolean" - }, - "ExtractChapterImagesDuringLibraryScan": { - "type": "boolean" - }, - "PathInfos": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MediaPathInfo" - } - }, - "SaveLocalMetadata": { - "type": "boolean" - }, - "EnableInternetProviders": { - "type": "boolean", - "deprecated": true - }, - "EnableAutomaticSeriesGrouping": { - "type": "boolean" - }, - "EnableEmbeddedTitles": { - "type": "boolean" - }, - "EnableEmbeddedEpisodeInfos": { - "type": "boolean" - }, - "AutomaticRefreshIntervalDays": { - "type": "integer", - "format": "int32" - }, - "PreferredMetadataLanguage": { - "type": "string", - "description": "Gets or sets the preferred metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "SeasonZeroDisplayName": { - "type": "string" - }, - "MetadataSavers": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "DisabledLocalMetadataReaders": { - "type": "array", - "items": { - "type": "string" - } - }, - "LocalMetadataReaderOrder": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "DisabledSubtitleFetchers": { - "type": "array", - "items": { - "type": "string" - } - }, - "SubtitleFetcherOrder": { - "type": "array", - "items": { - "type": "string" - } - }, - "SkipSubtitlesIfEmbeddedSubtitlesPresent": { - "type": "boolean" - }, - "SkipSubtitlesIfAudioTrackMatches": { - "type": "boolean" - }, - "SubtitleDownloadLanguages": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "RequirePerfectSubtitleMatch": { - "type": "boolean" - }, - "SaveSubtitlesWithMedia": { - "type": "boolean" - }, - "AutomaticallyAddToCollection": { - "type": "boolean" - }, - "AllowEmbeddedSubtitles": { - "allOf": [ - { - "$ref": "#/components/schemas/EmbeddedSubtitleOptions" - } - ], - "description": "An enum representing the options to disable embedded subs." - }, - "TypeOptions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TypeOptions" - } - } - }, - "additionalProperties": false - }, - "LibraryOptionsResultDto": { - "type": "object", - "properties": { - "MetadataSavers": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LibraryOptionInfoDto" - }, - "description": "Gets or sets the metadata savers." - }, - "MetadataReaders": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LibraryOptionInfoDto" - }, - "description": "Gets or sets the metadata readers." - }, - "SubtitleFetchers": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LibraryOptionInfoDto" - }, - "description": "Gets or sets the subtitle fetchers." - }, - "TypeOptions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LibraryTypeOptionsDto" - }, - "description": "Gets or sets the type options." - } - }, - "additionalProperties": false, - "description": "Library options result dto." - }, - "LibraryTypeOptionsDto": { - "type": "object", - "properties": { - "Type": { - "type": "string", - "description": "Gets or sets the type.", - "nullable": true - }, - "MetadataFetchers": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LibraryOptionInfoDto" - }, - "description": "Gets or sets the metadata fetchers." - }, - "ImageFetchers": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LibraryOptionInfoDto" - }, - "description": "Gets or sets the image fetchers." - }, - "SupportedImageTypes": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageType" - }, - "description": "Gets or sets the supported image types." - }, - "DefaultImageOptions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageOption" - }, - "description": "Gets or sets the default image options." - } - }, - "additionalProperties": false, - "description": "Library type options dto." - }, - "LibraryUpdateInfo": { - "type": "object", - "properties": { - "FoldersAddedTo": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the folders added to." - }, - "FoldersRemovedFrom": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the folders removed from." - }, - "ItemsAdded": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the items added." - }, - "ItemsRemoved": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the items removed." - }, - "ItemsUpdated": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the items updated." - }, - "CollectionFolders": { - "type": "array", - "items": { - "type": "string" - } - }, - "IsEmpty": { - "type": "boolean", - "readOnly": true - } - }, - "additionalProperties": false, - "description": "Class LibraryUpdateInfo." - }, - "ListingsProviderInfo": { - "type": "object", - "properties": { - "Id": { - "type": "string", - "nullable": true - }, - "Type": { - "type": "string", - "nullable": true - }, - "Username": { - "type": "string", - "nullable": true - }, - "Password": { - "type": "string", - "nullable": true - }, - "ListingsId": { - "type": "string", - "nullable": true - }, - "ZipCode": { - "type": "string", - "nullable": true - }, - "Country": { - "type": "string", - "nullable": true - }, - "Path": { - "type": "string", - "nullable": true - }, - "EnabledTuners": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "EnableAllTuners": { - "type": "boolean" - }, - "NewsCategories": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "SportsCategories": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "KidsCategories": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "MovieCategories": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "ChannelMappings": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameValuePair" - }, - "nullable": true - }, - "MoviePrefix": { - "type": "string", - "nullable": true - }, - "PreferredLanguage": { - "type": "string", - "nullable": true - }, - "UserAgent": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "LiveStreamResponse": { - "type": "object", - "properties": { - "MediaSource": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaSourceInfo" - } - ] - } - }, - "additionalProperties": false - }, - "LiveTvInfo": { - "type": "object", - "properties": { - "Services": { - "type": "array", - "items": { - "$ref": "#/components/schemas/LiveTvServiceInfo" - }, - "description": "Gets or sets the services." - }, - "IsEnabled": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is enabled." - }, - "EnabledUsers": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the enabled users." - } - }, - "additionalProperties": false - }, - "LiveTvOptions": { - "type": "object", - "properties": { - "GuideDays": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "RecordingPath": { - "type": "string", - "nullable": true - }, - "MovieRecordingPath": { - "type": "string", - "nullable": true - }, - "SeriesRecordingPath": { - "type": "string", - "nullable": true - }, - "EnableRecordingSubfolders": { - "type": "boolean" - }, - "EnableOriginalAudioWithEncodedRecordings": { - "type": "boolean" - }, - "TunerHosts": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TunerHostInfo" - }, - "nullable": true - }, - "ListingProviders": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ListingsProviderInfo" - }, - "nullable": true - }, - "PrePaddingSeconds": { - "type": "integer", - "format": "int32" - }, - "PostPaddingSeconds": { - "type": "integer", - "format": "int32" - }, - "MediaLocationsCreated": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "RecordingPostProcessor": { - "type": "string", - "nullable": true - }, - "RecordingPostProcessorArguments": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "LiveTvServiceInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "HomePageUrl": { - "type": "string", - "description": "Gets or sets the home page URL.", - "nullable": true - }, - "Status": { - "allOf": [ - { - "$ref": "#/components/schemas/LiveTvServiceStatus" - } - ], - "description": "Gets or sets the status." - }, - "StatusMessage": { - "type": "string", - "description": "Gets or sets the status message.", - "nullable": true - }, - "Version": { - "type": "string", - "description": "Gets or sets the version.", - "nullable": true - }, - "HasUpdateAvailable": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance has update available." - }, - "IsVisible": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is visible." - }, - "Tuners": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class ServiceInfo." - }, - "LiveTvServiceStatus": { - "enum": [ - "Ok", - "Unavailable" - ], - "type": "string" - }, - "LocalizationOption": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "nullable": true - }, - "Value": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "LocationType": { - "enum": [ - "FileSystem", - "Remote", - "Virtual", - "Offline" - ], - "type": "string", - "description": "Enum LocationType." - }, - "LogFile": { - "type": "object", - "properties": { - "DateCreated": { - "type": "string", - "description": "Gets or sets the date created.", - "format": "date-time" - }, - "DateModified": { - "type": "string", - "description": "Gets or sets the date modified.", - "format": "date-time" - }, - "Size": { - "type": "integer", - "description": "Gets or sets the size.", - "format": "int64" - }, - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - } - }, - "additionalProperties": false - }, - "LogLevel": { - "enum": [ - "Trace", - "Debug", - "Information", - "Warning", - "Error", - "Critical", - "None" - ], - "type": "string" - }, - "MediaAttachment": { - "type": "object", - "properties": { - "Codec": { - "type": "string", - "description": "Gets or sets the codec.", - "nullable": true - }, - "CodecTag": { - "type": "string", - "description": "Gets or sets the codec tag.", - "nullable": true - }, - "Comment": { - "type": "string", - "description": "Gets or sets the comment.", - "nullable": true - }, - "Index": { - "type": "integer", - "description": "Gets or sets the index.", - "format": "int32" - }, - "FileName": { - "type": "string", - "description": "Gets or sets the filename.", - "nullable": true - }, - "MimeType": { - "type": "string", - "description": "Gets or sets the MIME type.", - "nullable": true - }, - "DeliveryUrl": { - "type": "string", - "description": "Gets or sets the delivery URL.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class MediaAttachment." - }, - "MediaEncoderPathDto": { - "type": "object", - "properties": { - "Path": { - "type": "string", - "description": "Gets or sets media encoder path." - }, - "PathType": { - "type": "string", - "description": "Gets or sets media encoder path type." - } - }, - "additionalProperties": false, - "description": "Media Encoder Path Dto." - }, - "MediaPathDto": { - "required": [ - "Name" - ], - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name of the library." - }, - "Path": { - "type": "string", - "description": "Gets or sets the path to add.", - "nullable": true - }, - "PathInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaPathInfo" - } - ], - "description": "Gets or sets the path info.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Media Path dto." - }, - "MediaPathInfo": { - "type": "object", - "properties": { - "Path": { - "type": "string" - }, - "NetworkPath": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "MediaProtocol": { - "enum": [ - "File", - "Http", - "Rtmp", - "Rtsp", - "Udp", - "Rtp", - "Ftp" - ], - "type": "string" - }, - "MediaSourceInfo": { - "type": "object", - "properties": { - "Protocol": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaProtocol" - } - ] - }, - "Id": { - "type": "string", - "nullable": true - }, - "Path": { - "type": "string", - "nullable": true - }, - "EncoderPath": { - "type": "string", - "nullable": true - }, - "EncoderProtocol": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaProtocol" - } - ], - "nullable": true - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaSourceType" - } - ] - }, - "Container": { - "type": "string", - "nullable": true - }, - "Size": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "Name": { - "type": "string", - "nullable": true - }, - "IsRemote": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the media is remote.\r\nDifferentiate internet url vs local network." - }, - "ETag": { - "type": "string", - "nullable": true - }, - "RunTimeTicks": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "ReadAtNativeFramerate": { - "type": "boolean" - }, - "IgnoreDts": { - "type": "boolean" - }, - "IgnoreIndex": { - "type": "boolean" - }, - "GenPtsInput": { - "type": "boolean" - }, - "SupportsTranscoding": { - "type": "boolean" - }, - "SupportsDirectStream": { - "type": "boolean" - }, - "SupportsDirectPlay": { - "type": "boolean" - }, - "IsInfiniteStream": { - "type": "boolean" - }, - "RequiresOpening": { - "type": "boolean" - }, - "OpenToken": { - "type": "string", - "nullable": true - }, - "RequiresClosing": { - "type": "boolean" - }, - "LiveStreamId": { - "type": "string", - "nullable": true - }, - "BufferMs": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "RequiresLooping": { - "type": "boolean" - }, - "SupportsProbing": { - "type": "boolean" - }, - "VideoType": { - "allOf": [ - { - "$ref": "#/components/schemas/VideoType" - } - ], - "nullable": true - }, - "IsoType": { - "allOf": [ - { - "$ref": "#/components/schemas/IsoType" - } - ], - "nullable": true - }, - "Video3DFormat": { - "allOf": [ - { - "$ref": "#/components/schemas/Video3DFormat" - } - ], - "nullable": true - }, - "MediaStreams": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MediaStream" - }, - "nullable": true - }, - "MediaAttachments": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MediaAttachment" - }, - "nullable": true - }, - "Formats": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "Bitrate": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "Timestamp": { - "allOf": [ - { - "$ref": "#/components/schemas/TransportStreamTimestamp" - } - ], - "nullable": true - }, - "RequiredHttpHeaders": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "nullable": true - }, - "TranscodingUrl": { - "type": "string", - "nullable": true - }, - "TranscodingSubProtocol": { - "type": "string", - "nullable": true - }, - "TranscodingContainer": { - "type": "string", - "nullable": true - }, - "AnalyzeDurationMs": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "DefaultAudioStreamIndex": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "DefaultSubtitleStreamIndex": { - "type": "integer", - "format": "int32", - "nullable": true - } - }, - "additionalProperties": false - }, - "MediaSourceType": { - "enum": [ - "Default", - "Grouping", - "Placeholder" - ], - "type": "string" - }, - "MediaStream": { - "type": "object", - "properties": { - "Codec": { - "type": "string", - "description": "Gets or sets the codec.", - "nullable": true - }, - "CodecTag": { - "type": "string", - "description": "Gets or sets the codec tag.", - "nullable": true - }, - "Language": { - "type": "string", - "description": "Gets or sets the language.", - "nullable": true - }, - "ColorRange": { - "type": "string", - "description": "Gets or sets the color range.", - "nullable": true - }, - "ColorSpace": { - "type": "string", - "description": "Gets or sets the color space.", - "nullable": true - }, - "ColorTransfer": { - "type": "string", - "description": "Gets or sets the color transfer.", - "nullable": true - }, - "ColorPrimaries": { - "type": "string", - "description": "Gets or sets the color primaries.", - "nullable": true - }, - "Comment": { - "type": "string", - "description": "Gets or sets the comment.", - "nullable": true - }, - "TimeBase": { - "type": "string", - "description": "Gets or sets the time base.", - "nullable": true - }, - "CodecTimeBase": { - "type": "string", - "description": "Gets or sets the codec time base.", - "nullable": true - }, - "Title": { - "type": "string", - "description": "Gets or sets the title.", - "nullable": true - }, - "VideoRange": { - "type": "string", - "description": "Gets the video range.", - "nullable": true, - "readOnly": true - }, - "LocalizedUndefined": { - "type": "string", - "nullable": true - }, - "LocalizedDefault": { - "type": "string", - "nullable": true - }, - "LocalizedForced": { - "type": "string", - "nullable": true - }, - "LocalizedExternal": { - "type": "string", - "nullable": true - }, - "DisplayTitle": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "NalLengthSize": { - "type": "string", - "nullable": true - }, - "IsInterlaced": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is interlaced." - }, - "IsAVC": { - "type": "boolean", - "nullable": true - }, - "ChannelLayout": { - "type": "string", - "description": "Gets or sets the channel layout.", - "nullable": true - }, - "BitRate": { - "type": "integer", - "description": "Gets or sets the bit rate.", - "format": "int32", - "nullable": true - }, - "BitDepth": { - "type": "integer", - "description": "Gets or sets the bit depth.", - "format": "int32", - "nullable": true - }, - "RefFrames": { - "type": "integer", - "description": "Gets or sets the reference frames.", - "format": "int32", - "nullable": true - }, - "PacketLength": { - "type": "integer", - "description": "Gets or sets the length of the packet.", - "format": "int32", - "nullable": true - }, - "Channels": { - "type": "integer", - "description": "Gets or sets the channels.", - "format": "int32", - "nullable": true - }, - "SampleRate": { - "type": "integer", - "description": "Gets or sets the sample rate.", - "format": "int32", - "nullable": true - }, - "IsDefault": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is default." - }, - "IsForced": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is forced." - }, - "Height": { - "type": "integer", - "description": "Gets or sets the height.", - "format": "int32", - "nullable": true - }, - "Width": { - "type": "integer", - "description": "Gets or sets the width.", - "format": "int32", - "nullable": true - }, - "AverageFrameRate": { - "type": "number", - "description": "Gets or sets the average frame rate.", - "format": "float", - "nullable": true - }, - "RealFrameRate": { - "type": "number", - "description": "Gets or sets the real frame rate.", - "format": "float", - "nullable": true - }, - "Profile": { - "type": "string", - "description": "Gets or sets the profile.", - "nullable": true - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaStreamType" - } - ], - "description": "Gets or sets the type." - }, - "AspectRatio": { - "type": "string", - "description": "Gets or sets the aspect ratio.", - "nullable": true - }, - "Index": { - "type": "integer", - "description": "Gets or sets the index.", - "format": "int32" - }, - "Score": { - "type": "integer", - "description": "Gets or sets the score.", - "format": "int32", - "nullable": true - }, - "IsExternal": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is external." - }, - "DeliveryMethod": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ], - "description": "Gets or sets the method.", - "nullable": true - }, - "DeliveryUrl": { - "type": "string", - "description": "Gets or sets the delivery URL.", - "nullable": true - }, - "IsExternalUrl": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is external URL.", - "nullable": true - }, - "IsTextSubtitleStream": { - "type": "boolean", - "readOnly": true - }, - "SupportsExternalStream": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [supports external stream]." - }, - "Path": { - "type": "string", - "description": "Gets or sets the filename.", - "nullable": true - }, - "PixelFormat": { - "type": "string", - "description": "Gets or sets the pixel format.", - "nullable": true - }, - "Level": { - "type": "number", - "description": "Gets or sets the level.", - "format": "double", - "nullable": true - }, - "IsAnamorphic": { - "type": "boolean", - "description": "Gets or sets whether this instance is anamorphic.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class MediaStream." - }, - "MediaStreamType": { - "enum": [ - "Audio", - "Video", - "Subtitle", - "EmbeddedImage" - ], - "type": "string", - "description": "Enum MediaStreamType." - }, - "MediaUpdateInfoDto": { - "type": "object", - "properties": { - "Updates": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MediaUpdateInfoPathDto" - }, - "description": "Gets or sets the list of updates." - } - }, - "additionalProperties": false, - "description": "Media Update Info Dto." - }, - "MediaUpdateInfoPathDto": { - "type": "object", - "properties": { - "Path": { - "type": "string", - "description": "Gets or sets media path.", - "nullable": true - }, - "UpdateType": { - "type": "string", - "description": "Gets or sets media update type.\r\nCreated, Modified, Deleted.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "The media update info path." - }, - "MediaUrl": { - "type": "object", - "properties": { - "Url": { - "type": "string", - "nullable": true - }, - "Name": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "MessageCommand": { - "required": [ - "Text" - ], - "type": "object", - "properties": { - "Header": { - "type": "string", - "nullable": true - }, - "Text": { - "type": "string" - }, - "TimeoutMs": { - "type": "integer", - "format": "int64", - "nullable": true - } - }, - "additionalProperties": false - }, - "MetadataConfiguration": { - "type": "object", - "properties": { - "UseFileCreationTimeForDateAdded": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "MetadataEditorInfo": { - "type": "object", - "properties": { - "ParentalRatingOptions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ParentalRating" - } - }, - "Countries": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CountryInfo" - } - }, - "Cultures": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CultureDto" - } - }, - "ExternalIdInfos": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ExternalIdInfo" - } - }, - "ContentType": { - "type": "string", - "nullable": true - }, - "ContentTypeOptions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameValuePair" - } - } - }, - "additionalProperties": false - }, - "MetadataField": { - "enum": [ - "Cast", - "Genres", - "ProductionLocations", - "Studios", - "Tags", - "Name", - "Overview", - "Runtime", - "OfficialRating" - ], - "type": "string", - "description": "Enum MetadataFields." - }, - "MetadataOptions": { - "type": "object", - "properties": { - "ItemType": { - "type": "string", - "nullable": true - }, - "DisabledMetadataSavers": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "LocalMetadataReaderOrder": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "DisabledMetadataFetchers": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "MetadataFetcherOrder": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "DisabledImageFetchers": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "ImageFetcherOrder": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class MetadataOptions." - }, - "MetadataRefreshMode": { - "enum": [ - "None", - "ValidationOnly", - "Default", - "FullRefresh" - ], - "type": "string" - }, - "MovePlaylistItemRequestDto": { - "type": "object", - "properties": { - "PlaylistItemId": { - "type": "string", - "description": "Gets or sets the playlist identifier of the item.", - "format": "uuid" - }, - "NewIndex": { - "type": "integer", - "description": "Gets or sets the new position.", - "format": "int32" - } - }, - "additionalProperties": false, - "description": "Class MovePlaylistItemRequestDto." - }, - "MovieInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "description": "Gets or sets the original title.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "MetadataLanguage": { - "type": "string", - "description": "Gets or sets the metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "Year": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "IsAutomated": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "MovieInfoRemoteSearchQuery": { - "type": "object", - "properties": { - "SearchInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/MovieInfo" - } - ], - "nullable": true - }, - "ItemId": { - "type": "string", - "format": "uuid" - }, - "SearchProviderName": { - "type": "string", - "description": "Gets or sets the provider name to search within if set.", - "nullable": true - }, - "IncludeDisabledProviders": { - "type": "boolean", - "description": "Gets or sets a value indicating whether disabled providers should be included." - } - }, - "additionalProperties": false - }, - "MusicVideoInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "description": "Gets or sets the original title.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "MetadataLanguage": { - "type": "string", - "description": "Gets or sets the metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "Year": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "IsAutomated": { - "type": "boolean" - }, - "Artists": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "MusicVideoInfoRemoteSearchQuery": { - "type": "object", - "properties": { - "SearchInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/MusicVideoInfo" - } - ], - "nullable": true - }, - "ItemId": { - "type": "string", - "format": "uuid" - }, - "SearchProviderName": { - "type": "string", - "description": "Gets or sets the provider name to search within if set.", - "nullable": true - }, - "IncludeDisabledProviders": { - "type": "boolean", - "description": "Gets or sets a value indicating whether disabled providers should be included." - } - }, - "additionalProperties": false - }, - "NameGuidPair": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "nullable": true - }, - "Id": { - "type": "string", - "format": "uuid" - } - }, - "additionalProperties": false - }, - "NameIdPair": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the identifier.", - "nullable": true - } - }, - "additionalProperties": false - }, - "NameValuePair": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Value": { - "type": "string", - "description": "Gets or sets the value.", - "nullable": true - } - }, - "additionalProperties": false - }, - "NetworkConfiguration": { - "type": "object", - "properties": { - "RequireHttps": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the server should force connections over HTTPS." - }, - "CertificatePath": { - "type": "string", - "description": "Gets or sets the filesystem path of an X.509 certificate to use for SSL." - }, - "CertificatePassword": { - "type": "string", - "description": "Gets or sets the password required to access the X.509 certificate data in the file specified by Jellyfin.Networking.Configuration.NetworkConfiguration.CertificatePath." - }, - "BaseUrl": { - "type": "string", - "description": "Gets or sets a value used to specify the URL prefix that your Jellyfin instance can be accessed at." - }, - "PublicHttpsPort": { - "type": "integer", - "description": "Gets or sets the public HTTPS port.", - "format": "int32" - }, - "HttpServerPortNumber": { - "type": "integer", - "description": "Gets or sets the HTTP server port number.", - "format": "int32" - }, - "HttpsPortNumber": { - "type": "integer", - "description": "Gets or sets the HTTPS server port number.", - "format": "int32" - }, - "EnableHttps": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to use HTTPS." - }, - "PublicPort": { - "type": "integer", - "description": "Gets or sets the public mapped port.", - "format": "int32" - }, - "UPnPCreateHttpPortMap": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the http port should be mapped as part of UPnP automatic port forwarding." - }, - "UDPPortRange": { - "type": "string", - "description": "Gets or sets the UDPPortRange." - }, - "EnableIPV6": { - "type": "boolean", - "description": "Gets or sets a value indicating whether gets or sets IPV6 capability." - }, - "EnableIPV4": { - "type": "boolean", - "description": "Gets or sets a value indicating whether gets or sets IPV4 capability." - }, - "EnableSSDPTracing": { - "type": "boolean", - "description": "Gets or sets a value indicating whether detailed SSDP logs are sent to the console/log.\r\n\"Emby.Dlna\": \"Debug\" must be set in logging.default.json for this property to have any effect." - }, - "SSDPTracingFilter": { - "type": "string", - "description": "Gets or sets the SSDPTracingFilter\r\nGets or sets a value indicating whether an IP address is to be used to filter the detailed ssdp logs that are being sent to the console/log.\r\nIf the setting \"Emby.Dlna\": \"Debug\" msut be set in logging.default.json for this property to work." - }, - "UDPSendCount": { - "type": "integer", - "description": "Gets or sets the number of times SSDP UDP messages are sent.", - "format": "int32" - }, - "UDPSendDelay": { - "type": "integer", - "description": "Gets or sets the delay between each groups of SSDP messages (in ms).", - "format": "int32" - }, - "IgnoreVirtualInterfaces": { - "type": "boolean", - "description": "Gets or sets a value indicating whether address names that match Jellyfin.Networking.Configuration.NetworkConfiguration.VirtualInterfaceNames should be Ignore for the purposes of binding." - }, - "VirtualInterfaceNames": { - "type": "string", - "description": "Gets or sets a value indicating the interfaces that should be ignored. The list can be comma separated. ." - }, - "GatewayMonitorPeriod": { - "type": "integer", - "description": "Gets or sets the time (in seconds) between the pings of SSDP gateway monitor.", - "format": "int32" - }, - "EnableMultiSocketBinding": { - "type": "boolean", - "description": "Gets a value indicating whether multi-socket binding is available.", - "readOnly": true - }, - "TrustAllIP6Interfaces": { - "type": "boolean", - "description": "Gets or sets a value indicating whether all IPv6 interfaces should be treated as on the internal network.\r\nDepending on the address range implemented ULA ranges might not be used." - }, - "HDHomerunPortRange": { - "type": "string", - "description": "Gets or sets the ports that HDHomerun uses." - }, - "PublishedServerUriBySubnet": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the PublishedServerUriBySubnet\r\nGets or sets PublishedServerUri to advertise for specific subnets." - }, - "AutoDiscoveryTracing": { - "type": "boolean", - "description": "Gets or sets a value indicating whether Autodiscovery tracing is enabled." - }, - "AutoDiscovery": { - "type": "boolean", - "description": "Gets or sets a value indicating whether Autodiscovery is enabled." - }, - "RemoteIPFilter": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the filter for remote IP connectivity. Used in conjuntion with ." - }, - "IsRemoteIPFilterBlacklist": { - "type": "boolean", - "description": "Gets or sets a value indicating whether contains a blacklist or a whitelist. Default is a whitelist." - }, - "EnableUPnP": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to enable automatic port forwarding." - }, - "EnableRemoteAccess": { - "type": "boolean", - "description": "Gets or sets a value indicating whether access outside of the LAN is permitted." - }, - "LocalNetworkSubnets": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the subnets that are deemed to make up the LAN." - }, - "LocalNetworkAddresses": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the interface addresses which Jellyfin will bind to. If empty, all interfaces will be used." - }, - "KnownProxies": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the known proxies. If the proxy is a network, it's added to the KnownNetworks." - }, - "EnablePublishedServerUriByRequest": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the published server uri is based on information in HTTP requests." - } - }, - "additionalProperties": false, - "description": "Defines the Jellyfin.Networking.Configuration.NetworkConfiguration." - }, - "NewGroupRequestDto": { - "type": "object", - "properties": { - "GroupName": { - "type": "string", - "description": "Gets or sets the group name." - } - }, - "additionalProperties": false, - "description": "Class NewGroupRequestDto." - }, - "NextItemRequestDto": { - "type": "object", - "properties": { - "PlaylistItemId": { - "type": "string", - "description": "Gets or sets the playing item identifier.", - "format": "uuid" - } - }, - "additionalProperties": false, - "description": "Class NextItemRequestDto." - }, - "NotificationDto": { - "type": "object", - "properties": { - "Id": { - "type": "string", - "description": "Gets or sets the notification ID. Defaults to an empty string." - }, - "UserId": { - "type": "string", - "description": "Gets or sets the notification's user ID. Defaults to an empty string." - }, - "Date": { - "type": "string", - "description": "Gets or sets the notification date.", - "format": "date-time" - }, - "IsRead": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the notification has been read. Defaults to false." - }, - "Name": { - "type": "string", - "description": "Gets or sets the notification's name. Defaults to an empty string." - }, - "Description": { - "type": "string", - "description": "Gets or sets the notification's description. Defaults to an empty string." - }, - "Url": { - "type": "string", - "description": "Gets or sets the notification's URL. Defaults to an empty string." - }, - "Level": { - "allOf": [ - { - "$ref": "#/components/schemas/NotificationLevel" - } - ], - "description": "Gets or sets the notification level." - } - }, - "additionalProperties": false, - "description": "The notification DTO." - }, - "NotificationLevel": { - "enum": [ - "Normal", - "Warning", - "Error" - ], - "type": "string" - }, - "NotificationOption": { - "type": "object", - "properties": { - "Type": { - "type": "string", - "nullable": true - }, - "DisabledMonitorUsers": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets user Ids to not monitor (it's opt out)." - }, - "SendToUsers": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets user Ids to send to (if SendToUserMode == Custom)." - }, - "Enabled": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this MediaBrowser.Model.Notifications.NotificationOption is enabled." - }, - "DisabledServices": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the disabled services." - }, - "SendToUserMode": { - "allOf": [ - { - "$ref": "#/components/schemas/SendToUserType" - } - ], - "description": "Gets or sets the send to user mode." - } - }, - "additionalProperties": false - }, - "NotificationOptions": { - "type": "object", - "properties": { - "Options": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NotificationOption" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "NotificationResultDto": { - "type": "object", - "properties": { - "Notifications": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NotificationDto" - }, - "description": "Gets or sets the current page of notifications." - }, - "TotalRecordCount": { - "type": "integer", - "description": "Gets or sets the total number of notifications.", - "format": "int32" - } - }, - "additionalProperties": false, - "description": "A list of notifications with the total record count for pagination." - }, - "NotificationsSummaryDto": { - "type": "object", - "properties": { - "UnreadCount": { - "type": "integer", - "description": "Gets or sets the number of unread notifications.", - "format": "int32" - }, - "MaxUnreadNotificationLevel": { - "allOf": [ - { - "$ref": "#/components/schemas/NotificationLevel" - } - ], - "description": "Gets or sets the maximum unread notification level.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "The notification summary DTO." - }, - "NotificationTypeInfo": { - "type": "object", - "properties": { - "Type": { - "type": "string", - "nullable": true - }, - "Name": { - "type": "string", - "nullable": true - }, - "Enabled": { - "type": "boolean" - }, - "Category": { - "type": "string", - "nullable": true - }, - "IsBasedOnUserEvent": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "ObjectGroupUpdate": { - "type": "object", - "properties": { - "GroupId": { - "type": "string", - "description": "Gets the group identifier.", - "format": "uuid" - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/GroupUpdateType" - } - ], - "description": "Gets the update type." - }, - "Data": { - "description": "Gets the update data." - } - }, - "additionalProperties": false, - "description": "Class GroupUpdate." - }, - "OpenLiveStreamDto": { - "type": "object", - "properties": { - "OpenToken": { - "type": "string", - "description": "Gets or sets the open token.", - "nullable": true - }, - "UserId": { - "type": "string", - "description": "Gets or sets the user id.", - "format": "uuid", - "nullable": true - }, - "PlaySessionId": { - "type": "string", - "description": "Gets or sets the play session id.", - "nullable": true - }, - "MaxStreamingBitrate": { - "type": "integer", - "description": "Gets or sets the max streaming bitrate.", - "format": "int32", - "nullable": true - }, - "StartTimeTicks": { - "type": "integer", - "description": "Gets or sets the start time in ticks.", - "format": "int64", - "nullable": true - }, - "AudioStreamIndex": { - "type": "integer", - "description": "Gets or sets the audio stream index.", - "format": "int32", - "nullable": true - }, - "SubtitleStreamIndex": { - "type": "integer", - "description": "Gets or sets the subtitle stream index.", - "format": "int32", - "nullable": true - }, - "MaxAudioChannels": { - "type": "integer", - "description": "Gets or sets the max audio channels.", - "format": "int32", - "nullable": true - }, - "ItemId": { - "type": "string", - "description": "Gets or sets the item id.", - "format": "uuid", - "nullable": true - }, - "EnableDirectPlay": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to enable direct play.", - "nullable": true - }, - "EnableDirectStream": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to enale direct stream.", - "nullable": true - }, - "DeviceProfile": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfile" - } - ], - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't.", - "nullable": true - }, - "DirectPlayProtocols": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MediaProtocol" - }, - "description": "Gets or sets the device play protocols." - } - }, - "additionalProperties": false, - "description": "Open live stream dto." - }, - "PackageInfo": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "Gets or sets the name." - }, - "description": { - "type": "string", - "description": "Gets or sets a long description of the plugin containing features or helpful explanations." - }, - "overview": { - "type": "string", - "description": "Gets or sets a short overview of what the plugin does." - }, - "owner": { - "type": "string", - "description": "Gets or sets the owner." - }, - "category": { - "type": "string", - "description": "Gets or sets the category." - }, - "guid": { - "type": "string", - "description": "Gets or sets the guid of the assembly associated with this plugin.\r\nThis is used to identify the proper item for automatic updates.", - "format": "uuid" - }, - "versions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/VersionInfo" - }, - "description": "Gets or sets the versions." - }, - "imageUrl": { - "type": "string", - "description": "Gets or sets the image url for the package.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class PackageInfo." - }, - "ParentalRating": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Value": { - "type": "integer", - "description": "Gets or sets the value.", - "format": "int32" - } - }, - "additionalProperties": false, - "description": "Class ParentalRating." - }, - "PathSubstitution": { - "type": "object", - "properties": { - "From": { - "type": "string", - "description": "Gets or sets the value to substitute." - }, - "To": { - "type": "string", - "description": "Gets or sets the value to substitution with." - } - }, - "additionalProperties": false, - "description": "Defines the MediaBrowser.Model.Configuration.PathSubstitution." - }, - "PersonLookupInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "description": "Gets or sets the original title.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "MetadataLanguage": { - "type": "string", - "description": "Gets or sets the metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "Year": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "IsAutomated": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "PersonLookupInfoRemoteSearchQuery": { - "type": "object", - "properties": { - "SearchInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/PersonLookupInfo" - } - ], - "nullable": true - }, - "ItemId": { - "type": "string", - "format": "uuid" - }, - "SearchProviderName": { - "type": "string", - "description": "Gets or sets the provider name to search within if set.", - "nullable": true - }, - "IncludeDisabledProviders": { - "type": "boolean", - "description": "Gets or sets a value indicating whether disabled providers should be included." - } - }, - "additionalProperties": false - }, - "PingRequestDto": { - "type": "object", - "properties": { - "Ping": { - "type": "integer", - "description": "Gets or sets the ping time.", - "format": "int64" - } - }, - "additionalProperties": false, - "description": "Class PingRequestDto." - }, - "PinRedeemResult": { - "type": "object", - "properties": { - "Success": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this MediaBrowser.Model.Users.PinRedeemResult is success." - }, - "UsersReset": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the users reset." - } - }, - "additionalProperties": false - }, - "PlayAccess": { - "enum": [ - "Full", - "None" - ], - "type": "string" - }, - "PlaybackErrorCode": { - "enum": [ - "NotAllowed", - "NoCompatibleStream", - "RateLimitExceeded" - ], - "type": "string" - }, - "PlaybackInfoDto": { - "type": "object", - "properties": { - "UserId": { - "type": "string", - "description": "Gets or sets the playback userId.", - "format": "uuid", - "nullable": true - }, - "MaxStreamingBitrate": { - "type": "integer", - "description": "Gets or sets the max streaming bitrate.", - "format": "int32", - "nullable": true - }, - "StartTimeTicks": { - "type": "integer", - "description": "Gets or sets the start time in ticks.", - "format": "int64", - "nullable": true - }, - "AudioStreamIndex": { - "type": "integer", - "description": "Gets or sets the audio stream index.", - "format": "int32", - "nullable": true - }, - "SubtitleStreamIndex": { - "type": "integer", - "description": "Gets or sets the subtitle stream index.", - "format": "int32", - "nullable": true - }, - "MaxAudioChannels": { - "type": "integer", - "description": "Gets or sets the max audio channels.", - "format": "int32", - "nullable": true - }, - "MediaSourceId": { - "type": "string", - "description": "Gets or sets the media source id.", - "nullable": true - }, - "LiveStreamId": { - "type": "string", - "description": "Gets or sets the live stream id.", - "nullable": true - }, - "DeviceProfile": { - "allOf": [ - { - "$ref": "#/components/schemas/DeviceProfile" - } - ], - "description": "A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.\r\n
\r\nSpecifically, it defines the supported containers and\r\ncodecs (video and/or audio, including codec profiles and levels)\r\nthe device is able to direct play (without transcoding or remuxing),\r\nas well as which containers/codecs to transcode to in case it isn't.", - "nullable": true - }, - "EnableDirectPlay": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to enable direct play.", - "nullable": true - }, - "EnableDirectStream": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to enable direct stream.", - "nullable": true - }, - "EnableTranscoding": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to enable transcoding.", - "nullable": true - }, - "AllowVideoStreamCopy": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to enable video stream copy.", - "nullable": true - }, - "AllowAudioStreamCopy": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to allow audio stream copy.", - "nullable": true - }, - "AutoOpenLiveStream": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to auto open the live stream.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Plabyback info dto." - }, - "PlaybackInfoResponse": { - "type": "object", - "properties": { - "MediaSources": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MediaSourceInfo" - }, - "description": "Gets or sets the media sources." - }, - "PlaySessionId": { - "type": "string", - "description": "Gets or sets the play session identifier.", - "nullable": true - }, - "ErrorCode": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaybackErrorCode" - } - ], - "description": "Gets or sets the error code.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class PlaybackInfoResponse." - }, - "PlaybackProgressInfo": { - "type": "object", - "properties": { - "CanSeek": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance can seek." - }, - "Item": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemDto" - } - ], - "description": "Gets or sets the item.", - "nullable": true - }, - "ItemId": { - "type": "string", - "description": "Gets or sets the item identifier.", - "format": "uuid" - }, - "SessionId": { - "type": "string", - "description": "Gets or sets the session id.", - "nullable": true - }, - "MediaSourceId": { - "type": "string", - "description": "Gets or sets the media version identifier.", - "nullable": true - }, - "AudioStreamIndex": { - "type": "integer", - "description": "Gets or sets the index of the audio stream.", - "format": "int32", - "nullable": true - }, - "SubtitleStreamIndex": { - "type": "integer", - "description": "Gets or sets the index of the subtitle stream.", - "format": "int32", - "nullable": true - }, - "IsPaused": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is paused." - }, - "IsMuted": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is muted." - }, - "PositionTicks": { - "type": "integer", - "description": "Gets or sets the position ticks.", - "format": "int64", - "nullable": true - }, - "PlaybackStartTimeTicks": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "VolumeLevel": { - "type": "integer", - "description": "Gets or sets the volume level.", - "format": "int32", - "nullable": true - }, - "Brightness": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "AspectRatio": { - "type": "string", - "nullable": true - }, - "PlayMethod": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayMethod" - } - ], - "description": "Gets or sets the play method." - }, - "LiveStreamId": { - "type": "string", - "description": "Gets or sets the live stream identifier.", - "nullable": true - }, - "PlaySessionId": { - "type": "string", - "description": "Gets or sets the play session identifier.", - "nullable": true - }, - "RepeatMode": { - "allOf": [ - { - "$ref": "#/components/schemas/RepeatMode" - } - ], - "description": "Gets or sets the repeat mode." - }, - "NowPlayingQueue": { - "type": "array", - "items": { - "$ref": "#/components/schemas/QueueItem" - }, - "nullable": true - }, - "PlaylistItemId": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class PlaybackProgressInfo." - }, - "PlaybackStartInfo": { - "type": "object", - "properties": { - "CanSeek": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance can seek." - }, - "Item": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemDto" - } - ], - "description": "Gets or sets the item.", - "nullable": true - }, - "ItemId": { - "type": "string", - "description": "Gets or sets the item identifier.", - "format": "uuid" - }, - "SessionId": { - "type": "string", - "description": "Gets or sets the session id.", - "nullable": true - }, - "MediaSourceId": { - "type": "string", - "description": "Gets or sets the media version identifier.", - "nullable": true - }, - "AudioStreamIndex": { - "type": "integer", - "description": "Gets or sets the index of the audio stream.", - "format": "int32", - "nullable": true - }, - "SubtitleStreamIndex": { - "type": "integer", - "description": "Gets or sets the index of the subtitle stream.", - "format": "int32", - "nullable": true - }, - "IsPaused": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is paused." - }, - "IsMuted": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is muted." - }, - "PositionTicks": { - "type": "integer", - "description": "Gets or sets the position ticks.", - "format": "int64", - "nullable": true - }, - "PlaybackStartTimeTicks": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "VolumeLevel": { - "type": "integer", - "description": "Gets or sets the volume level.", - "format": "int32", - "nullable": true - }, - "Brightness": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "AspectRatio": { - "type": "string", - "nullable": true - }, - "PlayMethod": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayMethod" - } - ], - "description": "Gets or sets the play method." - }, - "LiveStreamId": { - "type": "string", - "description": "Gets or sets the live stream identifier.", - "nullable": true - }, - "PlaySessionId": { - "type": "string", - "description": "Gets or sets the play session identifier.", - "nullable": true - }, - "RepeatMode": { - "allOf": [ - { - "$ref": "#/components/schemas/RepeatMode" - } - ], - "description": "Gets or sets the repeat mode." - }, - "NowPlayingQueue": { - "type": "array", - "items": { - "$ref": "#/components/schemas/QueueItem" - }, - "nullable": true - }, - "PlaylistItemId": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class PlaybackStartInfo." - }, - "PlaybackStopInfo": { - "type": "object", - "properties": { - "Item": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemDto" - } - ], - "description": "Gets or sets the item.", - "nullable": true - }, - "ItemId": { - "type": "string", - "description": "Gets or sets the item identifier.", - "format": "uuid" - }, - "SessionId": { - "type": "string", - "description": "Gets or sets the session id.", - "nullable": true - }, - "MediaSourceId": { - "type": "string", - "description": "Gets or sets the media version identifier.", - "nullable": true - }, - "PositionTicks": { - "type": "integer", - "description": "Gets or sets the position ticks.", - "format": "int64", - "nullable": true - }, - "LiveStreamId": { - "type": "string", - "description": "Gets or sets the live stream identifier.", - "nullable": true - }, - "PlaySessionId": { - "type": "string", - "description": "Gets or sets the play session identifier.", - "nullable": true - }, - "Failed": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed." - }, - "NextMediaType": { - "type": "string", - "nullable": true - }, - "PlaylistItemId": { - "type": "string", - "nullable": true - }, - "NowPlayingQueue": { - "type": "array", - "items": { - "$ref": "#/components/schemas/QueueItem" - }, - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class PlaybackStopInfo." - }, - "PlayCommand": { - "enum": [ - "PlayNow", - "PlayNext", - "PlayLast", - "PlayInstantMix", - "PlayShuffle" - ], - "type": "string", - "description": "Enum PlayCommand." - }, - "PlayerStateInfo": { - "type": "object", - "properties": { - "PositionTicks": { - "type": "integer", - "description": "Gets or sets the now playing position ticks.", - "format": "int64", - "nullable": true - }, - "CanSeek": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance can seek." - }, - "IsPaused": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is paused." - }, - "IsMuted": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is muted." - }, - "VolumeLevel": { - "type": "integer", - "description": "Gets or sets the volume level.", - "format": "int32", - "nullable": true - }, - "AudioStreamIndex": { - "type": "integer", - "description": "Gets or sets the index of the now playing audio stream.", - "format": "int32", - "nullable": true - }, - "SubtitleStreamIndex": { - "type": "integer", - "description": "Gets or sets the index of the now playing subtitle stream.", - "format": "int32", - "nullable": true - }, - "MediaSourceId": { - "type": "string", - "description": "Gets or sets the now playing media version identifier.", - "nullable": true - }, - "PlayMethod": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayMethod" - } - ], - "description": "Gets or sets the play method.", - "nullable": true - }, - "RepeatMode": { - "allOf": [ - { - "$ref": "#/components/schemas/RepeatMode" - } - ], - "description": "Gets or sets the repeat mode." - }, - "LiveStreamId": { - "type": "string", - "description": "Gets or sets the now playing live stream identifier.", - "nullable": true - } - }, - "additionalProperties": false - }, - "PlaylistCreationResult": { - "type": "object", - "properties": { - "Id": { - "type": "string" - } - }, - "additionalProperties": false - }, - "PlayMethod": { - "enum": [ - "Transcode", - "DirectStream", - "DirectPlay" - ], - "type": "string" - }, - "PlayRequest": { - "type": "object", - "properties": { - "ItemIds": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "description": "Gets or sets the item ids.", - "nullable": true - }, - "StartPositionTicks": { - "type": "integer", - "description": "Gets or sets the start position ticks that the first item should be played at.", - "format": "int64", - "nullable": true - }, - "PlayCommand": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayCommand" - } - ], - "description": "Gets or sets the play command." - }, - "ControllingUserId": { - "type": "string", - "description": "Gets or sets the controlling user identifier.", - "format": "uuid" - }, - "SubtitleStreamIndex": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "AudioStreamIndex": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "MediaSourceId": { - "type": "string", - "nullable": true - }, - "StartIndex": { - "type": "integer", - "format": "int32", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class PlayRequest." - }, - "PlayRequestDto": { - "type": "object", - "properties": { - "PlayingQueue": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "description": "Gets or sets the playing queue." - }, - "PlayingItemPosition": { - "type": "integer", - "description": "Gets or sets the position of the playing item in the queue.", - "format": "int32" - }, - "StartPositionTicks": { - "type": "integer", - "description": "Gets or sets the start position ticks.", - "format": "int64" - } - }, - "additionalProperties": false, - "description": "Class PlayRequestDto." - }, - "PlaystateCommand": { - "enum": [ - "Stop", - "Pause", - "Unpause", - "NextTrack", - "PreviousTrack", - "Seek", - "Rewind", - "FastForward", - "PlayPause" - ], - "type": "string", - "description": "Enum PlaystateCommand." - }, - "PlaystateRequest": { - "type": "object", - "properties": { - "Command": { - "allOf": [ - { - "$ref": "#/components/schemas/PlaystateCommand" - } - ], - "description": "Enum PlaystateCommand." - }, - "SeekPositionTicks": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "ControllingUserId": { - "type": "string", - "description": "Gets or sets the controlling user identifier.", - "nullable": true - } - }, - "additionalProperties": false - }, - "PluginInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name." - }, - "Version": { - "type": "string", - "description": "Gets or sets the version." - }, - "ConfigurationFileName": { - "type": "string", - "description": "Gets or sets the name of the configuration file.", - "nullable": true - }, - "Description": { - "type": "string", - "description": "Gets or sets the description." - }, - "Id": { - "type": "string", - "description": "Gets or sets the unique id.", - "format": "uuid" - }, - "CanUninstall": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the plugin can be uninstalled." - }, - "HasImage": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this plugin has a valid image." - }, - "Status": { - "allOf": [ - { - "$ref": "#/components/schemas/PluginStatus" - } - ], - "description": "Gets or sets a value indicating the status of the plugin." - } - }, - "additionalProperties": false, - "description": "This is a serializable stub class that is used by the api to provide information about installed plugins." - }, - "PluginStatus": { - "enum": [ - "Active", - "Restart", - "Deleted", - "Superceded", - "Malfunctioned", - "NotSupported", - "Disabled" - ], - "type": "string", - "description": "Plugin load status." - }, - "PreviousItemRequestDto": { - "type": "object", - "properties": { - "PlaylistItemId": { - "type": "string", - "description": "Gets or sets the playing item identifier.", - "format": "uuid" - } - }, - "additionalProperties": false, - "description": "Class PreviousItemRequestDto." - }, - "ProblemDetails": { - "type": "object", - "properties": { - "type": { - "type": "string", - "nullable": true - }, - "title": { - "type": "string", - "nullable": true - }, - "status": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "detail": { - "type": "string", - "nullable": true - }, - "instance": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": { } - }, - "ProfileCondition": { - "type": "object", - "properties": { - "Condition": { - "allOf": [ - { - "$ref": "#/components/schemas/ProfileConditionType" - } - ] - }, - "Property": { - "allOf": [ - { - "$ref": "#/components/schemas/ProfileConditionValue" - } - ] - }, - "Value": { - "type": "string", - "nullable": true - }, - "IsRequired": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "ProfileConditionType": { - "enum": [ - "Equals", - "NotEquals", - "LessThanEqual", - "GreaterThanEqual", - "EqualsAny" - ], - "type": "string" - }, - "ProfileConditionValue": { - "enum": [ - "AudioChannels", - "AudioBitrate", - "AudioProfile", - "Width", - "Height", - "Has64BitOffsets", - "PacketLength", - "VideoBitDepth", - "VideoBitrate", - "VideoFramerate", - "VideoLevel", - "VideoProfile", - "VideoTimestamp", - "IsAnamorphic", - "RefFrames", - "NumAudioStreams", - "NumVideoStreams", - "IsSecondaryAudio", - "VideoCodecTag", - "IsAvc", - "IsInterlaced", - "AudioSampleRate", - "AudioBitDepth" - ], - "type": "string" - }, - "ProgramAudio": { - "enum": [ - "Mono", - "Stereo", - "Dolby", - "DolbyDigital", - "Thx", - "Atmos" - ], - "type": "string" - }, - "PublicSystemInfo": { - "type": "object", - "properties": { - "LocalAddress": { - "type": "string", - "description": "Gets or sets the local address.", - "nullable": true - }, - "ServerName": { - "type": "string", - "description": "Gets or sets the name of the server.", - "nullable": true - }, - "Version": { - "type": "string", - "description": "Gets or sets the server version.", - "nullable": true - }, - "ProductName": { - "type": "string", - "description": "Gets or sets the product name. This is the AssemblyProduct name.", - "nullable": true - }, - "OperatingSystem": { - "type": "string", - "description": "Gets or sets the operating system.", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the id.", - "nullable": true - }, - "StartupWizardCompleted": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the startup wizard is completed.", - "nullable": true - } - }, - "additionalProperties": false - }, - "QueryFilters": { - "type": "object", - "properties": { - "Genres": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameGuidPair" - }, - "nullable": true - }, - "Tags": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "QueryFiltersLegacy": { - "type": "object", - "properties": { - "Genres": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "Tags": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "OfficialRatings": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "Years": { - "type": "array", - "items": { - "type": "integer", - "format": "int32" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "QueueItem": { - "type": "object", - "properties": { - "Id": { - "type": "string", - "format": "uuid" - }, - "PlaylistItemId": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "QueueRequestDto": { - "type": "object", - "properties": { - "ItemIds": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "description": "Gets or sets the items to enqueue." - }, - "Mode": { - "allOf": [ - { - "$ref": "#/components/schemas/GroupQueueMode" - } - ], - "description": "Enum GroupQueueMode." - } - }, - "additionalProperties": false, - "description": "Class QueueRequestDto." - }, - "QuickConnectDto": { - "required": [ - "Secret" - ], - "type": "object", - "properties": { - "Secret": { - "type": "string", - "description": "Gets or sets the quick connect secret." - } - }, - "additionalProperties": false, - "description": "The quick connect request body." - }, - "QuickConnectResult": { - "type": "object", - "properties": { - "Authenticated": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this request is authorized." - }, - "Secret": { - "type": "string", - "description": "Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information." - }, - "Code": { - "type": "string", - "description": "Gets the user facing code used so the user can quickly differentiate this request from others." - }, - "DeviceId": { - "type": "string", - "description": "Gets the requesting device id." - }, - "DeviceName": { - "type": "string", - "description": "Gets the requesting device name." - }, - "AppName": { - "type": "string", - "description": "Gets the requesting app name." - }, - "AppVersion": { - "type": "string", - "description": "Gets the requesting app version." - }, - "DateAdded": { - "type": "string", - "description": "Gets or sets the DateTime that this request was created.", - "format": "date-time" - } - }, - "additionalProperties": false, - "description": "Stores the state of an quick connect request." - }, - "RatingType": { - "enum": [ - "Score", - "Likes" - ], - "type": "string" - }, - "ReadyRequestDto": { - "type": "object", - "properties": { - "When": { - "type": "string", - "description": "Gets or sets when the request has been made by the client.", - "format": "date-time" - }, - "PositionTicks": { - "type": "integer", - "description": "Gets or sets the position ticks.", - "format": "int64" - }, - "IsPlaying": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the client playback is unpaused." - }, - "PlaylistItemId": { - "type": "string", - "description": "Gets or sets the playlist item identifier of the playing item.", - "format": "uuid" - } - }, - "additionalProperties": false, - "description": "Class ReadyRequest." - }, - "RecommendationDto": { - "type": "object", - "properties": { - "Items": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - }, - "nullable": true - }, - "RecommendationType": { - "allOf": [ - { - "$ref": "#/components/schemas/RecommendationType" - } - ] - }, - "BaselineItemName": { - "type": "string", - "nullable": true - }, - "CategoryId": { - "type": "string", - "format": "uuid" - } - }, - "additionalProperties": false - }, - "RecommendationType": { - "enum": [ - "SimilarToRecentlyPlayed", - "SimilarToLikedItem", - "HasDirectorFromRecentlyPlayed", - "HasActorFromRecentlyPlayed", - "HasLikedDirector", - "HasLikedActor" - ], - "type": "string" - }, - "RecordingStatus": { - "enum": [ - "New", - "InProgress", - "Completed", - "Cancelled", - "ConflictedOk", - "ConflictedNotOk", - "Error" - ], - "type": "string" - }, - "RemoteImageInfo": { - "type": "object", - "properties": { - "ProviderName": { - "type": "string", - "description": "Gets or sets the name of the provider.", - "nullable": true - }, - "Url": { - "type": "string", - "description": "Gets or sets the URL.", - "nullable": true - }, - "ThumbnailUrl": { - "type": "string", - "description": "Gets or sets a url used for previewing a smaller version.", - "nullable": true - }, - "Height": { - "type": "integer", - "description": "Gets or sets the height.", - "format": "int32", - "nullable": true - }, - "Width": { - "type": "integer", - "description": "Gets or sets the width.", - "format": "int32", - "nullable": true - }, - "CommunityRating": { - "type": "number", - "description": "Gets or sets the community rating.", - "format": "double", - "nullable": true - }, - "VoteCount": { - "type": "integer", - "description": "Gets or sets the vote count.", - "format": "int32", - "nullable": true - }, - "Language": { - "type": "string", - "description": "Gets or sets the language.", - "nullable": true - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageType" - } - ], - "description": "Gets or sets the type." - }, - "RatingType": { - "allOf": [ - { - "$ref": "#/components/schemas/RatingType" - } - ], - "description": "Gets or sets the type of the rating." - } - }, - "additionalProperties": false, - "description": "Class RemoteImageInfo." - }, - "RemoteImageResult": { - "type": "object", - "properties": { - "Images": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RemoteImageInfo" - }, - "description": "Gets or sets the images.", - "nullable": true - }, - "TotalRecordCount": { - "type": "integer", - "description": "Gets or sets the total record count.", - "format": "int32" - }, - "Providers": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the providers.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class RemoteImageResult." - }, - "RemoteSearchResult": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "ProductionYear": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "IndexNumberEnd": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "ImageUrl": { - "type": "string", - "nullable": true - }, - "SearchProviderName": { - "type": "string", - "nullable": true - }, - "Overview": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "RemoteSubtitleInfo": { - "type": "object", - "properties": { - "ThreeLetterISOLanguageName": { - "type": "string", - "nullable": true - }, - "Id": { - "type": "string", - "nullable": true - }, - "ProviderName": { - "type": "string", - "nullable": true - }, - "Name": { - "type": "string", - "nullable": true - }, - "Format": { - "type": "string", - "nullable": true - }, - "Author": { - "type": "string", - "nullable": true - }, - "Comment": { - "type": "string", - "nullable": true - }, - "DateCreated": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "CommunityRating": { - "type": "number", - "format": "float", - "nullable": true - }, - "DownloadCount": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "IsHashMatch": { - "type": "boolean", - "nullable": true - } - }, - "additionalProperties": false - }, - "RemoveFromPlaylistRequestDto": { - "type": "object", - "properties": { - "PlaylistItemIds": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "description": "Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist." - }, - "ClearPlaylist": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the entire playlist should be cleared." - }, - "ClearPlayingItem": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist." - } - }, - "additionalProperties": false, - "description": "Class RemoveFromPlaylistRequestDto." - }, - "RepeatMode": { - "enum": [ - "RepeatNone", - "RepeatAll", - "RepeatOne" - ], - "type": "string" - }, - "RepositoryInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Url": { - "type": "string", - "description": "Gets or sets the URL.", - "nullable": true - }, - "Enabled": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the repository is enabled." - } - }, - "additionalProperties": false, - "description": "Class RepositoryInfo." - }, - "ResponseProfile": { - "type": "object", - "properties": { - "Container": { - "type": "string", - "nullable": true - }, - "AudioCodec": { - "type": "string", - "nullable": true - }, - "VideoCodec": { - "type": "string", - "nullable": true - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/DlnaProfileType" - } - ] - }, - "OrgPn": { - "type": "string", - "nullable": true - }, - "MimeType": { - "type": "string", - "nullable": true - }, - "Conditions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ProfileCondition" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "ScrollDirection": { - "enum": [ - "Horizontal", - "Vertical" - ], - "type": "string", - "description": "An enum representing the axis that should be scrolled." - }, - "SearchHint": { - "type": "object", - "properties": { - "ItemId": { - "type": "string", - "description": "Gets or sets the item id.", - "format": "uuid" - }, - "Id": { - "type": "string", - "format": "uuid" - }, - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "MatchedTerm": { - "type": "string", - "description": "Gets or sets the matched term.", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "description": "Gets or sets the index number.", - "format": "int32", - "nullable": true - }, - "ProductionYear": { - "type": "integer", - "description": "Gets or sets the production year.", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "description": "Gets or sets the parent index number.", - "format": "int32", - "nullable": true - }, - "PrimaryImageTag": { - "type": "string", - "description": "Gets or sets the image tag.", - "nullable": true - }, - "ThumbImageTag": { - "type": "string", - "description": "Gets or sets the thumb image tag.", - "nullable": true - }, - "ThumbImageItemId": { - "type": "string", - "description": "Gets or sets the thumb image item identifier.", - "nullable": true - }, - "BackdropImageTag": { - "type": "string", - "description": "Gets or sets the backdrop image tag.", - "nullable": true - }, - "BackdropImageItemId": { - "type": "string", - "description": "Gets or sets the backdrop image item identifier.", - "nullable": true - }, - "Type": { - "type": "string", - "description": "Gets or sets the type.", - "nullable": true - }, - "IsFolder": { - "type": "boolean", - "nullable": true - }, - "RunTimeTicks": { - "type": "integer", - "description": "Gets or sets the run time ticks.", - "format": "int64", - "nullable": true - }, - "MediaType": { - "type": "string", - "description": "Gets or sets the type of the media.", - "nullable": true - }, - "StartDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "EndDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "Series": { - "type": "string", - "description": "Gets or sets the series.", - "nullable": true - }, - "Status": { - "type": "string", - "nullable": true - }, - "Album": { - "type": "string", - "description": "Gets or sets the album.", - "nullable": true - }, - "AlbumId": { - "type": "string", - "format": "uuid" - }, - "AlbumArtist": { - "type": "string", - "description": "Gets or sets the album artist.", - "nullable": true - }, - "Artists": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the artists.", - "nullable": true - }, - "SongCount": { - "type": "integer", - "description": "Gets or sets the song count.", - "format": "int32", - "nullable": true - }, - "EpisodeCount": { - "type": "integer", - "description": "Gets or sets the episode count.", - "format": "int32", - "nullable": true - }, - "ChannelId": { - "type": "string", - "description": "Gets or sets the channel identifier.", - "format": "uuid" - }, - "ChannelName": { - "type": "string", - "description": "Gets or sets the name of the channel.", - "nullable": true - }, - "PrimaryImageAspectRatio": { - "type": "number", - "description": "Gets or sets the primary image aspect ratio.", - "format": "double", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class SearchHintResult." - }, - "SearchHintResult": { - "type": "object", - "properties": { - "SearchHints": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SearchHint" - }, - "description": "Gets the search hints." - }, - "TotalRecordCount": { - "type": "integer", - "description": "Gets the total record count.", - "format": "int32" - } - }, - "additionalProperties": false, - "description": "Class SearchHintResult." - }, - "SeekRequestDto": { - "type": "object", - "properties": { - "PositionTicks": { - "type": "integer", - "description": "Gets or sets the position ticks.", - "format": "int64" - } - }, - "additionalProperties": false, - "description": "Class SeekRequestDto." - }, - "SendCommand": { - "type": "object", - "properties": { - "GroupId": { - "type": "string", - "description": "Gets the group identifier.", - "format": "uuid" - }, - "PlaylistItemId": { - "type": "string", - "description": "Gets the playlist identifier of the playing item.", - "format": "uuid" - }, - "When": { - "type": "string", - "description": "Gets or sets the UTC time when to execute the command.", - "format": "date-time" - }, - "PositionTicks": { - "type": "integer", - "description": "Gets the position ticks.", - "format": "int64", - "nullable": true - }, - "Command": { - "allOf": [ - { - "$ref": "#/components/schemas/SendCommandType" - } - ], - "description": "Gets the command." - }, - "EmittedAt": { - "type": "string", - "description": "Gets the UTC time when this command has been emitted.", - "format": "date-time" - } - }, - "additionalProperties": false, - "description": "Class SendCommand." - }, - "SendCommandType": { - "enum": [ - "Unpause", - "Pause", - "Stop", - "Seek" - ], - "type": "string", - "description": "Enum SendCommandType." - }, - "SendToUserType": { - "enum": [ - "All", - "Admins", - "Custom" - ], - "type": "string" - }, - "SeriesInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "description": "Gets or sets the original title.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "MetadataLanguage": { - "type": "string", - "description": "Gets or sets the metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "Year": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "IsAutomated": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "SeriesInfoRemoteSearchQuery": { - "type": "object", - "properties": { - "SearchInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/SeriesInfo" - } - ], - "nullable": true - }, - "ItemId": { - "type": "string", - "format": "uuid" - }, - "SearchProviderName": { - "type": "string", - "description": "Gets or sets the provider name to search within if set.", - "nullable": true - }, - "IncludeDisabledProviders": { - "type": "boolean", - "description": "Gets or sets a value indicating whether disabled providers should be included." - } - }, - "additionalProperties": false - }, - "SeriesStatus": { - "enum": [ - "Continuing", - "Ended" - ], - "type": "string", - "description": "Enum SeriesStatus." - }, - "SeriesTimerInfoDto": { - "type": "object", - "properties": { - "Id": { - "type": "string", - "description": "Gets or sets the Id of the recording.", - "nullable": true - }, - "Type": { - "type": "string", - "nullable": true - }, - "ServerId": { - "type": "string", - "description": "Gets or sets the server identifier.", - "nullable": true - }, - "ExternalId": { - "type": "string", - "description": "Gets or sets the external identifier.", - "nullable": true - }, - "ChannelId": { - "type": "string", - "description": "Gets or sets the channel id of the recording.", - "format": "uuid" - }, - "ExternalChannelId": { - "type": "string", - "description": "Gets or sets the external channel identifier.", - "nullable": true - }, - "ChannelName": { - "type": "string", - "description": "Gets or sets the channel name of the recording.", - "nullable": true - }, - "ChannelPrimaryImageTag": { - "type": "string", - "nullable": true - }, - "ProgramId": { - "type": "string", - "description": "Gets or sets the program identifier.", - "nullable": true - }, - "ExternalProgramId": { - "type": "string", - "description": "Gets or sets the external program identifier.", - "nullable": true - }, - "Name": { - "type": "string", - "description": "Gets or sets the name of the recording.", - "nullable": true - }, - "Overview": { - "type": "string", - "description": "Gets or sets the description of the recording.", - "nullable": true - }, - "StartDate": { - "type": "string", - "description": "Gets or sets the start date of the recording, in UTC.", - "format": "date-time" - }, - "EndDate": { - "type": "string", - "description": "Gets or sets the end date of the recording, in UTC.", - "format": "date-time" - }, - "ServiceName": { - "type": "string", - "description": "Gets or sets the name of the service.", - "nullable": true - }, - "Priority": { - "type": "integer", - "description": "Gets or sets the priority.", - "format": "int32" - }, - "PrePaddingSeconds": { - "type": "integer", - "description": "Gets or sets the pre padding seconds.", - "format": "int32" - }, - "PostPaddingSeconds": { - "type": "integer", - "description": "Gets or sets the post padding seconds.", - "format": "int32" - }, - "IsPrePaddingRequired": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is pre padding required." - }, - "ParentBackdropItemId": { - "type": "string", - "description": "Gets or sets the Id of the Parent that has a backdrop if the item does not have one.", - "nullable": true - }, - "ParentBackdropImageTags": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the parent backdrop image tags.", - "nullable": true - }, - "IsPostPaddingRequired": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is post padding required." - }, - "KeepUntil": { - "allOf": [ - { - "$ref": "#/components/schemas/KeepUntil" - } - ] - }, - "RecordAnyTime": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [record any time]." - }, - "SkipEpisodesInLibrary": { - "type": "boolean" - }, - "RecordAnyChannel": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [record any channel]." - }, - "KeepUpTo": { - "type": "integer", - "format": "int32" - }, - "RecordNewOnly": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [record new only]." - }, - "Days": { - "type": "array", - "items": { - "$ref": "#/components/schemas/DayOfWeek" - }, - "description": "Gets or sets the days.", - "nullable": true - }, - "DayPattern": { - "allOf": [ - { - "$ref": "#/components/schemas/DayPattern" - } - ], - "description": "Gets or sets the day pattern.", - "nullable": true - }, - "ImageTags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Gets or sets the image tags.", - "nullable": true - }, - "ParentThumbItemId": { - "type": "string", - "description": "Gets or sets the parent thumb item id.", - "nullable": true - }, - "ParentThumbImageTag": { - "type": "string", - "description": "Gets or sets the parent thumb image tag.", - "nullable": true - }, - "ParentPrimaryImageItemId": { - "type": "string", - "description": "Gets or sets the parent primary image item identifier.", - "nullable": true - }, - "ParentPrimaryImageTag": { - "type": "string", - "description": "Gets or sets the parent primary image tag.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class SeriesTimerInfoDto." - }, - "SeriesTimerInfoDtoQueryResult": { - "type": "object", - "properties": { - "Items": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SeriesTimerInfoDto" - }, - "description": "Gets or sets the items.", - "nullable": true - }, - "TotalRecordCount": { - "type": "integer", - "description": "Gets or sets the total number of records available.", - "format": "int32" - }, - "StartIndex": { - "type": "integer", - "description": "Gets or sets the index of the first record in Items.", - "format": "int32" - } - }, - "additionalProperties": false - }, - "ServerConfiguration": { - "type": "object", - "properties": { - "LogFileRetentionDays": { - "type": "integer", - "description": "Gets or sets the number of days we should retain log files.", - "format": "int32" - }, - "IsStartupWizardCompleted": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is first run." - }, - "CachePath": { - "type": "string", - "description": "Gets or sets the cache path.", - "nullable": true - }, - "PreviousVersion": { - "type": "string", - "description": "Gets or sets the last known version that was ran using the configuration.", - "nullable": true - }, - "PreviousVersionStr": { - "type": "string", - "description": "Gets or sets the stringified PreviousVersion to be stored/loaded,\r\nbecause System.Version itself isn't xml-serializable.", - "nullable": true - }, - "EnableMetrics": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to enable prometheus metrics exporting." - }, - "EnableNormalizedItemByNameIds": { - "type": "boolean" - }, - "IsPortAuthorized": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is port authorized." - }, - "QuickConnectAvailable": { - "type": "boolean", - "description": "Gets or sets a value indicating whether quick connect is available for use on this server." - }, - "EnableCaseSensitiveItemIds": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [enable case sensitive item ids]." - }, - "DisableLiveTvChannelUserDataName": { - "type": "boolean" - }, - "MetadataPath": { - "type": "string", - "description": "Gets or sets the metadata path." - }, - "MetadataNetworkPath": { - "type": "string" - }, - "PreferredMetadataLanguage": { - "type": "string", - "description": "Gets or sets the preferred metadata language." - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code." - }, - "SortReplaceCharacters": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets characters to be replaced with a ' ' in strings to create a sort name." - }, - "SortRemoveCharacters": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets characters to be removed from strings to create a sort name." - }, - "SortRemoveWords": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets words to be removed from strings to create a sort name." - }, - "MinResumePct": { - "type": "integer", - "description": "Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated.", - "format": "int32" - }, - "MaxResumePct": { - "type": "integer", - "description": "Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched.", - "format": "int32" - }, - "MinResumeDurationSeconds": { - "type": "integer", - "description": "Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates..", - "format": "int32" - }, - "MinAudiobookResume": { - "type": "integer", - "description": "Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated.", - "format": "int32" - }, - "MaxAudiobookResume": { - "type": "integer", - "description": "Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched.", - "format": "int32" - }, - "LibraryMonitorDelay": { - "type": "integer", - "description": "Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added/removed\r\nSome delay is necessary with some items because their creation is not atomic. It involves the creation of several\r\ndifferent directories and files.", - "format": "int32" - }, - "ImageSavingConvention": { - "allOf": [ - { - "$ref": "#/components/schemas/ImageSavingConvention" - } - ], - "description": "Gets or sets the image saving convention." - }, - "MetadataOptions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/MetadataOptions" - } - }, - "SkipDeserializationForBasicTypes": { - "type": "boolean" - }, - "ServerName": { - "type": "string" - }, - "UICulture": { - "type": "string" - }, - "SaveMetadataHidden": { - "type": "boolean" - }, - "ContentTypes": { - "type": "array", - "items": { - "$ref": "#/components/schemas/NameValuePair" - } - }, - "RemoteClientBitrateLimit": { - "type": "integer", - "format": "int32" - }, - "EnableFolderView": { - "type": "boolean" - }, - "EnableGroupingIntoCollections": { - "type": "boolean" - }, - "DisplaySpecialsWithinSeasons": { - "type": "boolean" - }, - "CodecsUsed": { - "type": "array", - "items": { - "type": "string" - } - }, - "PluginRepositories": { - "type": "array", - "items": { - "$ref": "#/components/schemas/RepositoryInfo" - } - }, - "EnableExternalContentInSuggestions": { - "type": "boolean" - }, - "ImageExtractionTimeoutMs": { - "type": "integer", - "format": "int32" - }, - "PathSubstitutions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/PathSubstitution" - } - }, - "EnableSlowResponseWarning": { - "type": "boolean", - "description": "Gets or sets a value indicating whether slow server responses should be logged as a warning." - }, - "SlowResponseThresholdMs": { - "type": "integer", - "description": "Gets or sets the threshold for the slow response time warning in ms.", - "format": "int64" - }, - "CorsHosts": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the cors hosts." - }, - "ActivityLogRetentionDays": { - "type": "integer", - "description": "Gets or sets the number of days we should retain activity logs.", - "format": "int32", - "nullable": true - }, - "LibraryScanFanoutConcurrency": { - "type": "integer", - "description": "Gets or sets the how the library scan fans out.", - "format": "int32" - }, - "LibraryMetadataRefreshConcurrency": { - "type": "integer", - "description": "Gets or sets the how many metadata refreshes can run concurrently.", - "format": "int32" - }, - "RemoveOldPlugins": { - "type": "boolean", - "description": "Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder." - }, - "AllowClientLogUpload": { - "type": "boolean", - "description": "Gets or sets a value indicating whether clients should be allowed to upload logs." - } - }, - "additionalProperties": false, - "description": "Represents the server configuration." - }, - "ServerDiscoveryInfo": { - "type": "object", - "properties": { - "Address": { - "type": "string", - "description": "Gets the address." - }, - "Id": { - "type": "string", - "description": "Gets the server identifier." - }, - "Name": { - "type": "string", - "description": "Gets the name." - }, - "EndpointAddress": { - "type": "string", - "description": "Gets the endpoint address.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "The server discovery info model." - }, - "SessionInfo": { - "type": "object", - "properties": { - "PlayState": { - "allOf": [ - { - "$ref": "#/components/schemas/PlayerStateInfo" - } - ], - "nullable": true - }, - "AdditionalUsers": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SessionUserInfo" - }, - "nullable": true - }, - "Capabilities": { - "allOf": [ - { - "$ref": "#/components/schemas/ClientCapabilities" - } - ], - "nullable": true - }, - "RemoteEndPoint": { - "type": "string", - "description": "Gets or sets the remote end point.", - "nullable": true - }, - "PlayableMediaTypes": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets the playable media types.", - "nullable": true, - "readOnly": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the id.", - "nullable": true - }, - "UserId": { - "type": "string", - "description": "Gets or sets the user id.", - "format": "uuid" - }, - "UserName": { - "type": "string", - "description": "Gets or sets the username.", - "nullable": true - }, - "Client": { - "type": "string", - "description": "Gets or sets the type of the client.", - "nullable": true - }, - "LastActivityDate": { - "type": "string", - "description": "Gets or sets the last activity date.", - "format": "date-time" - }, - "LastPlaybackCheckIn": { - "type": "string", - "description": "Gets or sets the last playback check in.", - "format": "date-time" - }, - "DeviceName": { - "type": "string", - "description": "Gets or sets the name of the device.", - "nullable": true - }, - "DeviceType": { - "type": "string", - "description": "Gets or sets the type of the device.", - "nullable": true - }, - "NowPlayingItem": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemDto" - } - ], - "description": "Gets or sets the now playing item.", - "nullable": true - }, - "FullNowPlayingItem": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItem" - } - ], - "description": "Class BaseItem.", - "nullable": true - }, - "NowViewingItem": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemDto" - } - ], - "description": "This is strictly used as a data transfer object from the api layer.\r\nThis holds information about a BaseItem in a format that is convenient for the client.", - "nullable": true - }, - "DeviceId": { - "type": "string", - "description": "Gets or sets the device id.", - "nullable": true - }, - "ApplicationVersion": { - "type": "string", - "description": "Gets or sets the application version.", - "nullable": true - }, - "TranscodingInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/TranscodingInfo" - } - ], - "nullable": true - }, - "IsActive": { - "type": "boolean", - "description": "Gets a value indicating whether this instance is active.", - "readOnly": true - }, - "SupportsMediaControl": { - "type": "boolean", - "readOnly": true - }, - "SupportsRemoteControl": { - "type": "boolean", - "readOnly": true - }, - "NowPlayingQueue": { - "type": "array", - "items": { - "$ref": "#/components/schemas/QueueItem" - }, - "nullable": true - }, - "NowPlayingQueueFullItems": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - }, - "nullable": true - }, - "HasCustomDeviceName": { - "type": "boolean" - }, - "PlaylistItemId": { - "type": "string", - "nullable": true - }, - "ServerId": { - "type": "string", - "nullable": true - }, - "UserPrimaryImageTag": { - "type": "string", - "nullable": true - }, - "SupportedCommands": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GeneralCommandType" - }, - "description": "Gets the supported commands.", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false, - "description": "Class SessionInfo." - }, - "SessionMessageType": { - "enum": [ - "ForceKeepAlive", - "GeneralCommand", - "UserDataChanged", - "Sessions", - "Play", - "SyncPlayCommand", - "SyncPlayGroupUpdate", - "Playstate", - "RestartRequired", - "ServerShuttingDown", - "ServerRestarting", - "LibraryChanged", - "UserDeleted", - "UserUpdated", - "SeriesTimerCreated", - "TimerCreated", - "SeriesTimerCancelled", - "TimerCancelled", - "RefreshProgress", - "ScheduledTaskEnded", - "PackageInstallationCancelled", - "PackageInstallationFailed", - "PackageInstallationCompleted", - "PackageInstalling", - "PackageUninstalled", - "ActivityLogEntry", - "ScheduledTasksInfo", - "ActivityLogEntryStart", - "ActivityLogEntryStop", - "SessionsStart", - "SessionsStop", - "ScheduledTasksInfoStart", - "ScheduledTasksInfoStop", - "KeepAlive" - ], - "type": "string", - "description": "The different kinds of messages that are used in the WebSocket api." - }, - "SessionUserInfo": { - "type": "object", - "properties": { - "UserId": { - "type": "string", - "description": "Gets or sets the user identifier.", - "format": "uuid" - }, - "UserName": { - "type": "string", - "description": "Gets or sets the name of the user.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class SessionUserInfo." - }, - "SetChannelMappingDto": { - "required": [ - "ProviderChannelId", - "ProviderId", - "TunerChannelId" - ], - "type": "object", - "properties": { - "ProviderId": { - "type": "string", - "description": "Gets or sets the provider id." - }, - "TunerChannelId": { - "type": "string", - "description": "Gets or sets the tuner channel id." - }, - "ProviderChannelId": { - "type": "string", - "description": "Gets or sets the provider channel id." - } - }, - "additionalProperties": false, - "description": "Set channel mapping dto." - }, - "SetPlaylistItemRequestDto": { - "type": "object", - "properties": { - "PlaylistItemId": { - "type": "string", - "description": "Gets or sets the playlist identifier of the playing item.", - "format": "uuid" - } - }, - "additionalProperties": false, - "description": "Class SetPlaylistItemRequestDto." - }, - "SetRepeatModeRequestDto": { - "type": "object", - "properties": { - "Mode": { - "allOf": [ - { - "$ref": "#/components/schemas/GroupRepeatMode" - } - ], - "description": "Enum GroupRepeatMode." - } - }, - "additionalProperties": false, - "description": "Class SetRepeatModeRequestDto." - }, - "SetShuffleModeRequestDto": { - "type": "object", - "properties": { - "Mode": { - "allOf": [ - { - "$ref": "#/components/schemas/GroupShuffleMode" - } - ], - "description": "Enum GroupShuffleMode." - } - }, - "additionalProperties": false, - "description": "Class SetShuffleModeRequestDto." - }, - "SongInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "description": "Gets or sets the original title.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "MetadataLanguage": { - "type": "string", - "description": "Gets or sets the metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "Year": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "IsAutomated": { - "type": "boolean" - }, - "AlbumArtists": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "Album": { - "type": "string", - "nullable": true - }, - "Artists": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "SortOrder": { - "enum": [ - "Ascending", - "Descending" - ], - "type": "string", - "description": "An enum representing the sorting order." - }, - "SpecialViewOptionDto": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets view option name.", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets view option id.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Special view option dto." - }, - "StartupConfigurationDto": { - "type": "object", - "properties": { - "UICulture": { - "type": "string", - "description": "Gets or sets UI language culture.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "PreferredMetadataLanguage": { - "type": "string", - "description": "Gets or sets the preferred language for the metadata.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "The startup configuration DTO." - }, - "StartupRemoteAccessDto": { - "required": [ - "EnableAutomaticPortMapping", - "EnableRemoteAccess" - ], - "type": "object", - "properties": { - "EnableRemoteAccess": { - "type": "boolean", - "description": "Gets or sets a value indicating whether enable remote access." - }, - "EnableAutomaticPortMapping": { - "type": "boolean", - "description": "Gets or sets a value indicating whether enable automatic port mapping." - } - }, - "additionalProperties": false, - "description": "Startup remote access dto." - }, - "StartupUserDto": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the username.", - "nullable": true - }, - "Password": { - "type": "string", - "description": "Gets or sets the user's password.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "The startup user DTO." - }, - "SubtitleDeliveryMethod": { - "enum": [ - "Encode", - "Embed", - "External", - "Hls", - "Drop" - ], - "type": "string", - "description": "Delivery method to use during playback of a specific subtitle format." - }, - "SubtitleOptions": { - "type": "object", - "properties": { - "SkipIfEmbeddedSubtitlesPresent": { - "type": "boolean" - }, - "SkipIfAudioTrackMatches": { - "type": "boolean" - }, - "DownloadLanguages": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "DownloadMovieSubtitles": { - "type": "boolean" - }, - "DownloadEpisodeSubtitles": { - "type": "boolean" - }, - "OpenSubtitlesUsername": { - "type": "string", - "nullable": true - }, - "OpenSubtitlesPasswordHash": { - "type": "string", - "nullable": true - }, - "IsOpenSubtitleVipAccount": { - "type": "boolean" - }, - "RequirePerfectMatch": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "SubtitlePlaybackMode": { - "enum": [ - "Default", - "Always", - "OnlyForced", - "None", - "Smart" - ], - "type": "string", - "description": "An enum representing a subtitle playback mode." - }, - "SubtitleProfile": { - "type": "object", - "properties": { - "Format": { - "type": "string", - "nullable": true - }, - "Method": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitleDeliveryMethod" - } - ], - "description": "Delivery method to use during playback of a specific subtitle format." - }, - "DidlMode": { - "type": "string", - "nullable": true - }, - "Language": { - "type": "string", - "nullable": true - }, - "Container": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "SyncPlayUserAccessType": { - "enum": [ - "CreateAndJoinGroups", - "JoinGroups", - "None" - ], - "type": "string", - "description": "Enum SyncPlayUserAccessType." - }, - "SystemInfo": { - "type": "object", - "properties": { - "LocalAddress": { - "type": "string", - "description": "Gets or sets the local address.", - "nullable": true - }, - "ServerName": { - "type": "string", - "description": "Gets or sets the name of the server.", - "nullable": true - }, - "Version": { - "type": "string", - "description": "Gets or sets the server version.", - "nullable": true - }, - "ProductName": { - "type": "string", - "description": "Gets or sets the product name. This is the AssemblyProduct name.", - "nullable": true - }, - "OperatingSystem": { - "type": "string", - "description": "Gets or sets the operating system.", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the id.", - "nullable": true - }, - "StartupWizardCompleted": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the startup wizard is completed.", - "nullable": true - }, - "OperatingSystemDisplayName": { - "type": "string", - "description": "Gets or sets the display name of the operating system.", - "nullable": true - }, - "PackageName": { - "type": "string", - "description": "Gets or sets the package name.", - "nullable": true - }, - "HasPendingRestart": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance has pending restart." - }, - "IsShuttingDown": { - "type": "boolean" - }, - "SupportsLibraryMonitor": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [supports library monitor]." - }, - "WebSocketPortNumber": { - "type": "integer", - "description": "Gets or sets the web socket port number.", - "format": "int32" - }, - "CompletedInstallations": { - "type": "array", - "items": { - "$ref": "#/components/schemas/InstallationInfo" - }, - "description": "Gets or sets the completed installations.", - "nullable": true - }, - "CanSelfRestart": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance can self restart." - }, - "CanLaunchWebBrowser": { - "type": "boolean" - }, - "ProgramDataPath": { - "type": "string", - "description": "Gets or sets the program data path.", - "nullable": true - }, - "WebPath": { - "type": "string", - "description": "Gets or sets the web UI resources path.", - "nullable": true - }, - "ItemsByNamePath": { - "type": "string", - "description": "Gets or sets the items by name path.", - "nullable": true - }, - "CachePath": { - "type": "string", - "description": "Gets or sets the cache path.", - "nullable": true - }, - "LogPath": { - "type": "string", - "description": "Gets or sets the log path.", - "nullable": true - }, - "InternalMetadataPath": { - "type": "string", - "description": "Gets or sets the internal metadata path.", - "nullable": true - }, - "TranscodingTempPath": { - "type": "string", - "description": "Gets or sets the transcode path.", - "nullable": true - }, - "HasUpdateAvailable": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance has update available.", - "deprecated": true - }, - "EncoderLocation": { - "allOf": [ - { - "$ref": "#/components/schemas/FFmpegLocation" - } - ], - "description": "Enum describing the location of the FFmpeg tool.", - "deprecated": true - }, - "SystemArchitecture": { - "allOf": [ - { - "$ref": "#/components/schemas/Architecture" - } - ] - } - }, - "additionalProperties": false, - "description": "Class SystemInfo." - }, - "TaskCompletionStatus": { - "enum": [ - "Completed", - "Failed", - "Cancelled", - "Aborted" - ], - "type": "string", - "description": "Enum TaskCompletionStatus." - }, - "TaskInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "State": { - "allOf": [ - { - "$ref": "#/components/schemas/TaskState" - } - ], - "description": "Gets or sets the state of the task." - }, - "CurrentProgressPercentage": { - "type": "number", - "description": "Gets or sets the progress.", - "format": "double", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the id.", - "nullable": true - }, - "LastExecutionResult": { - "allOf": [ - { - "$ref": "#/components/schemas/TaskResult" - } - ], - "description": "Gets or sets the last execution result.", - "nullable": true - }, - "Triggers": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TaskTriggerInfo" - }, - "description": "Gets or sets the triggers.", - "nullable": true - }, - "Description": { - "type": "string", - "description": "Gets or sets the description.", - "nullable": true - }, - "Category": { - "type": "string", - "description": "Gets or sets the category.", - "nullable": true - }, - "IsHidden": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is hidden." - }, - "Key": { - "type": "string", - "description": "Gets or sets the key.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class TaskInfo." - }, - "TaskResult": { - "type": "object", - "properties": { - "StartTimeUtc": { - "type": "string", - "description": "Gets or sets the start time UTC.", - "format": "date-time" - }, - "EndTimeUtc": { - "type": "string", - "description": "Gets or sets the end time UTC.", - "format": "date-time" - }, - "Status": { - "allOf": [ - { - "$ref": "#/components/schemas/TaskCompletionStatus" - } - ], - "description": "Gets or sets the status." - }, - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Key": { - "type": "string", - "description": "Gets or sets the key.", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the id.", - "nullable": true - }, - "ErrorMessage": { - "type": "string", - "description": "Gets or sets the error message.", - "nullable": true - }, - "LongErrorMessage": { - "type": "string", - "description": "Gets or sets the long error message.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class TaskExecutionInfo." - }, - "TaskState": { - "enum": [ - "Idle", - "Cancelling", - "Running" - ], - "type": "string", - "description": "Enum TaskState." - }, - "TaskTriggerInfo": { - "type": "object", - "properties": { - "Type": { - "type": "string", - "description": "Gets or sets the type.", - "nullable": true - }, - "TimeOfDayTicks": { - "type": "integer", - "description": "Gets or sets the time of day.", - "format": "int64", - "nullable": true - }, - "IntervalTicks": { - "type": "integer", - "description": "Gets or sets the interval.", - "format": "int64", - "nullable": true - }, - "DayOfWeek": { - "allOf": [ - { - "$ref": "#/components/schemas/DayOfWeek" - } - ], - "description": "Gets or sets the day of week.", - "nullable": true - }, - "MaxRuntimeTicks": { - "type": "integer", - "description": "Gets or sets the maximum runtime ticks.", - "format": "int64", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class TaskTriggerInfo." - }, - "ThemeMediaResult": { - "type": "object", - "properties": { - "Items": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseItemDto" - }, - "description": "Gets or sets the items.", - "nullable": true - }, - "TotalRecordCount": { - "type": "integer", - "description": "Gets or sets the total number of records available.", - "format": "int32" - }, - "StartIndex": { - "type": "integer", - "description": "Gets or sets the index of the first record in Items.", - "format": "int32" - }, - "OwnerId": { - "type": "string", - "description": "Gets or sets the owner id.", - "format": "uuid" - } - }, - "additionalProperties": false, - "description": "Class ThemeMediaResult." - }, - "TimerEventInfo": { - "type": "object", - "properties": { - "Id": { - "type": "string" - }, - "ProgramId": { - "type": "string", - "format": "uuid", - "nullable": true - } - }, - "additionalProperties": false - }, - "TimerInfoDto": { - "type": "object", - "properties": { - "Id": { - "type": "string", - "description": "Gets or sets the Id of the recording.", - "nullable": true - }, - "Type": { - "type": "string", - "nullable": true - }, - "ServerId": { - "type": "string", - "description": "Gets or sets the server identifier.", - "nullable": true - }, - "ExternalId": { - "type": "string", - "description": "Gets or sets the external identifier.", - "nullable": true - }, - "ChannelId": { - "type": "string", - "description": "Gets or sets the channel id of the recording.", - "format": "uuid" - }, - "ExternalChannelId": { - "type": "string", - "description": "Gets or sets the external channel identifier.", - "nullable": true - }, - "ChannelName": { - "type": "string", - "description": "Gets or sets the channel name of the recording.", - "nullable": true - }, - "ChannelPrimaryImageTag": { - "type": "string", - "nullable": true - }, - "ProgramId": { - "type": "string", - "description": "Gets or sets the program identifier.", - "nullable": true - }, - "ExternalProgramId": { - "type": "string", - "description": "Gets or sets the external program identifier.", - "nullable": true - }, - "Name": { - "type": "string", - "description": "Gets or sets the name of the recording.", - "nullable": true - }, - "Overview": { - "type": "string", - "description": "Gets or sets the description of the recording.", - "nullable": true - }, - "StartDate": { - "type": "string", - "description": "Gets or sets the start date of the recording, in UTC.", - "format": "date-time" - }, - "EndDate": { - "type": "string", - "description": "Gets or sets the end date of the recording, in UTC.", - "format": "date-time" - }, - "ServiceName": { - "type": "string", - "description": "Gets or sets the name of the service.", - "nullable": true - }, - "Priority": { - "type": "integer", - "description": "Gets or sets the priority.", - "format": "int32" - }, - "PrePaddingSeconds": { - "type": "integer", - "description": "Gets or sets the pre padding seconds.", - "format": "int32" - }, - "PostPaddingSeconds": { - "type": "integer", - "description": "Gets or sets the post padding seconds.", - "format": "int32" - }, - "IsPrePaddingRequired": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is pre padding required." - }, - "ParentBackdropItemId": { - "type": "string", - "description": "Gets or sets the Id of the Parent that has a backdrop if the item does not have one.", - "nullable": true - }, - "ParentBackdropImageTags": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the parent backdrop image tags.", - "nullable": true - }, - "IsPostPaddingRequired": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is post padding required." - }, - "KeepUntil": { - "allOf": [ - { - "$ref": "#/components/schemas/KeepUntil" - } - ] - }, - "Status": { - "allOf": [ - { - "$ref": "#/components/schemas/RecordingStatus" - } - ], - "description": "Gets or sets the status." - }, - "SeriesTimerId": { - "type": "string", - "description": "Gets or sets the series timer identifier.", - "nullable": true - }, - "ExternalSeriesTimerId": { - "type": "string", - "description": "Gets or sets the external series timer identifier.", - "nullable": true - }, - "RunTimeTicks": { - "type": "integer", - "description": "Gets or sets the run time ticks.", - "format": "int64", - "nullable": true - }, - "ProgramInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/BaseItemDto" - } - ], - "description": "Gets or sets the program information.", - "nullable": true - } - }, - "additionalProperties": false - }, - "TimerInfoDtoQueryResult": { - "type": "object", - "properties": { - "Items": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TimerInfoDto" - }, - "description": "Gets or sets the items.", - "nullable": true - }, - "TotalRecordCount": { - "type": "integer", - "description": "Gets or sets the total number of records available.", - "format": "int32" - }, - "StartIndex": { - "type": "integer", - "description": "Gets or sets the index of the first record in Items.", - "format": "int32" - } - }, - "additionalProperties": false - }, - "TrailerInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "OriginalTitle": { - "type": "string", - "description": "Gets or sets the original title.", - "nullable": true - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "MetadataLanguage": { - "type": "string", - "description": "Gets or sets the metadata language.", - "nullable": true - }, - "MetadataCountryCode": { - "type": "string", - "description": "Gets or sets the metadata country code.", - "nullable": true - }, - "ProviderIds": { - "type": "object", - "additionalProperties": { - "type": "string", - "nullable": true - }, - "description": "Gets or sets the provider ids.", - "nullable": true - }, - "Year": { - "type": "integer", - "description": "Gets or sets the year.", - "format": "int32", - "nullable": true - }, - "IndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "ParentIndexNumber": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "PremiereDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "IsAutomated": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "TrailerInfoRemoteSearchQuery": { - "type": "object", - "properties": { - "SearchInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/TrailerInfo" - } - ], - "nullable": true - }, - "ItemId": { - "type": "string", - "format": "uuid" - }, - "SearchProviderName": { - "type": "string", - "description": "Gets or sets the provider name to search within if set.", - "nullable": true - }, - "IncludeDisabledProviders": { - "type": "boolean", - "description": "Gets or sets a value indicating whether disabled providers should be included." - } - }, - "additionalProperties": false - }, - "TranscodeSeekInfo": { - "enum": [ - "Auto", - "Bytes" - ], - "type": "string" - }, - "TranscodingInfo": { - "type": "object", - "properties": { - "AudioCodec": { - "type": "string", - "nullable": true - }, - "VideoCodec": { - "type": "string", - "nullable": true - }, - "Container": { - "type": "string", - "nullable": true - }, - "IsVideoDirect": { - "type": "boolean" - }, - "IsAudioDirect": { - "type": "boolean" - }, - "Bitrate": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "Framerate": { - "type": "number", - "format": "float", - "nullable": true - }, - "CompletionPercentage": { - "type": "number", - "format": "double", - "nullable": true - }, - "Width": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "Height": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "AudioChannels": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "HardwareAccelerationType": { - "allOf": [ - { - "$ref": "#/components/schemas/HardwareEncodingType" - } - ], - "nullable": true - }, - "TranscodeReasons": { - "enum": [ - "ContainerNotSupported", - "VideoCodecNotSupported", - "AudioCodecNotSupported", - "SubtitleCodecNotSupported", - "AudioIsExternal", - "SecondaryAudioNotSupported", - "VideoProfileNotSupported", - "VideoLevelNotSupported", - "VideoResolutionNotSupported", - "VideoBitDepthNotSupported", - "VideoFramerateNotSupported", - "RefFramesNotSupported", - "AnamorphicVideoNotSupported", - "InterlacedVideoNotSupported", - "AudioChannelsNotSupported", - "AudioProfileNotSupported", - "AudioSampleRateNotSupported", - "AudioBitDepthNotSupported", - "ContainerBitrateExceedsLimit", - "VideoBitrateNotSupported", - "AudioBitrateNotSupported", - "UnknownVideoStreamInfo", - "UnknownAudioStreamInfo", - "DirectPlayError" - ], - "type": "string" - } - }, - "additionalProperties": false - }, - "TranscodingProfile": { - "type": "object", - "properties": { - "Container": { - "type": "string" - }, - "Type": { - "allOf": [ - { - "$ref": "#/components/schemas/DlnaProfileType" - } - ] - }, - "VideoCodec": { - "type": "string" - }, - "AudioCodec": { - "type": "string" - }, - "Protocol": { - "type": "string" - }, - "EstimateContentLength": { - "type": "boolean", - "default": false - }, - "EnableMpegtsM2TsMode": { - "type": "boolean", - "default": false - }, - "TranscodeSeekInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/TranscodeSeekInfo" - } - ], - "default": "Auto" - }, - "CopyTimestamps": { - "type": "boolean", - "default": false - }, - "Context": { - "allOf": [ - { - "$ref": "#/components/schemas/EncodingContext" - } - ], - "default": "Streaming" - }, - "EnableSubtitlesInManifest": { - "type": "boolean", - "default": false - }, - "MaxAudioChannels": { - "type": "string", - "nullable": true - }, - "MinSegments": { - "type": "integer", - "format": "int32", - "default": 0 - }, - "SegmentLength": { - "type": "integer", - "format": "int32", - "default": 0 - }, - "BreakOnNonKeyFrames": { - "type": "boolean", - "default": false - }, - "Conditions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ProfileCondition" - } - } - }, - "additionalProperties": false - }, - "TransportStreamTimestamp": { - "enum": [ - "None", - "Zero", - "Valid" - ], - "type": "string" - }, - "TunerChannelMapping": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "nullable": true - }, - "ProviderChannelName": { - "type": "string", - "nullable": true - }, - "ProviderChannelId": { - "type": "string", - "nullable": true - }, - "Id": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "TunerHostInfo": { - "type": "object", - "properties": { - "Id": { - "type": "string", - "nullable": true - }, - "Url": { - "type": "string", - "nullable": true - }, - "Type": { - "type": "string", - "nullable": true - }, - "DeviceId": { - "type": "string", - "nullable": true - }, - "FriendlyName": { - "type": "string", - "nullable": true - }, - "ImportFavoritesOnly": { - "type": "boolean" - }, - "AllowHWTranscoding": { - "type": "boolean" - }, - "EnableStreamLooping": { - "type": "boolean" - }, - "Source": { - "type": "string", - "nullable": true - }, - "TunerCount": { - "type": "integer", - "format": "int32" - }, - "UserAgent": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "TypeOptions": { - "type": "object", - "properties": { - "Type": { - "type": "string", - "nullable": true - }, - "MetadataFetchers": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "MetadataFetcherOrder": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "ImageFetchers": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "ImageFetcherOrder": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "ImageOptions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ImageOption" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "UnratedItem": { - "enum": [ - "Movie", - "Trailer", - "Series", - "Music", - "Book", - "LiveTvChannel", - "LiveTvProgram", - "ChannelContent", - "Other" - ], - "type": "string", - "description": "An enum representing an unrated item." - }, - "UpdateLibraryOptionsDto": { - "type": "object", - "properties": { - "Id": { - "type": "string", - "description": "Gets or sets the library item id.", - "format": "uuid" - }, - "LibraryOptions": { - "allOf": [ - { - "$ref": "#/components/schemas/LibraryOptions" - } - ], - "description": "Gets or sets library options.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Update library options dto." - }, - "UpdateMediaPathRequestDto": { - "required": [ - "Name", - "PathInfo" - ], - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the library name." - }, - "PathInfo": { - "allOf": [ - { - "$ref": "#/components/schemas/MediaPathInfo" - } - ], - "description": "Gets or sets library folder path information." - } - }, - "additionalProperties": false, - "description": "Update library options dto." - }, - "UpdateUserEasyPassword": { - "type": "object", - "properties": { - "NewPassword": { - "type": "string", - "description": "Gets or sets the new sha1-hashed password.", - "nullable": true - }, - "NewPw": { - "type": "string", - "description": "Gets or sets the new password.", - "nullable": true - }, - "ResetPassword": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to reset the password." - } - }, - "additionalProperties": false, - "description": "The update user easy password request body." - }, - "UpdateUserPassword": { - "type": "object", - "properties": { - "CurrentPassword": { - "type": "string", - "description": "Gets or sets the current sha1-hashed password.", - "nullable": true - }, - "CurrentPw": { - "type": "string", - "description": "Gets or sets the current plain text password.", - "nullable": true - }, - "NewPw": { - "type": "string", - "description": "Gets or sets the new plain text password.", - "nullable": true - }, - "ResetPassword": { - "type": "boolean", - "description": "Gets or sets a value indicating whether to reset the password." - } - }, - "additionalProperties": false, - "description": "The update user password request body." - }, - "UploadSubtitleDto": { - "required": [ - "Data", - "Format", - "IsForced", - "Language" - ], - "type": "object", - "properties": { - "Language": { - "type": "string", - "description": "Gets or sets the subtitle language." - }, - "Format": { - "type": "string", - "description": "Gets or sets the subtitle format." - }, - "IsForced": { - "type": "boolean", - "description": "Gets or sets a value indicating whether the subtitle is forced." - }, - "Data": { - "type": "string", - "description": "Gets or sets the subtitle data." - } - }, - "additionalProperties": false, - "description": "Upload subtitles dto." - }, - "UserConfiguration": { - "type": "object", - "properties": { - "AudioLanguagePreference": { - "type": "string", - "description": "Gets or sets the audio language preference.", - "nullable": true - }, - "PlayDefaultAudioTrack": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [play default audio track]." - }, - "SubtitleLanguagePreference": { - "type": "string", - "description": "Gets or sets the subtitle language preference.", - "nullable": true - }, - "DisplayMissingEpisodes": { - "type": "boolean" - }, - "GroupedFolders": { - "type": "array", - "items": { - "type": "string" - } - }, - "SubtitleMode": { - "allOf": [ - { - "$ref": "#/components/schemas/SubtitlePlaybackMode" - } - ], - "description": "An enum representing a subtitle playback mode." - }, - "DisplayCollectionsView": { - "type": "boolean" - }, - "EnableLocalPassword": { - "type": "boolean" - }, - "OrderedViews": { - "type": "array", - "items": { - "type": "string" - } - }, - "LatestItemsExcludes": { - "type": "array", - "items": { - "type": "string" - } - }, - "MyMediaExcludes": { - "type": "array", - "items": { - "type": "string" - } - }, - "HidePlayedInLatest": { - "type": "boolean" - }, - "RememberAudioSelections": { - "type": "boolean" - }, - "RememberSubtitleSelections": { - "type": "boolean" - }, - "EnableNextEpisodeAutoPlay": { - "type": "boolean" - } - }, - "additionalProperties": false, - "description": "Class UserConfiguration." - }, - "UserDto": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "ServerId": { - "type": "string", - "description": "Gets or sets the server identifier.", - "nullable": true - }, - "ServerName": { - "type": "string", - "description": "Gets or sets the name of the server.\r\nThis is not used by the server and is for client-side usage only.", - "nullable": true - }, - "Id": { - "type": "string", - "description": "Gets or sets the id.", - "format": "uuid" - }, - "PrimaryImageTag": { - "type": "string", - "description": "Gets or sets the primary image tag.", - "nullable": true - }, - "HasPassword": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance has password." - }, - "HasConfiguredPassword": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance has configured password." - }, - "HasConfiguredEasyPassword": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance has configured easy password." - }, - "EnableAutoLogin": { - "type": "boolean", - "description": "Gets or sets whether async login is enabled or not.", - "nullable": true - }, - "LastLoginDate": { - "type": "string", - "description": "Gets or sets the last login date.", - "format": "date-time", - "nullable": true - }, - "LastActivityDate": { - "type": "string", - "description": "Gets or sets the last activity date.", - "format": "date-time", - "nullable": true - }, - "Configuration": { - "allOf": [ - { - "$ref": "#/components/schemas/UserConfiguration" - } - ], - "description": "Gets or sets the configuration.", - "nullable": true - }, - "Policy": { - "allOf": [ - { - "$ref": "#/components/schemas/UserPolicy" - } - ], - "description": "Gets or sets the policy.", - "nullable": true - }, - "PrimaryImageAspectRatio": { - "type": "number", - "description": "Gets or sets the primary image aspect ratio.", - "format": "double", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class UserDto." - }, - "UserItemDataDto": { - "type": "object", - "properties": { - "Rating": { - "type": "number", - "description": "Gets or sets the rating.", - "format": "double", - "nullable": true - }, - "PlayedPercentage": { - "type": "number", - "description": "Gets or sets the played percentage.", - "format": "double", - "nullable": true - }, - "UnplayedItemCount": { - "type": "integer", - "description": "Gets or sets the unplayed item count.", - "format": "int32", - "nullable": true - }, - "PlaybackPositionTicks": { - "type": "integer", - "description": "Gets or sets the playback position ticks.", - "format": "int64" - }, - "PlayCount": { - "type": "integer", - "description": "Gets or sets the play count.", - "format": "int32" - }, - "IsFavorite": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is favorite." - }, - "Likes": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes.", - "nullable": true - }, - "LastPlayedDate": { - "type": "string", - "description": "Gets or sets the last played date.", - "format": "date-time", - "nullable": true - }, - "Played": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played." - }, - "Key": { - "type": "string", - "description": "Gets or sets the key.", - "nullable": true - }, - "ItemId": { - "type": "string", - "description": "Gets or sets the item identifier.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Class UserItemDataDto." - }, - "UserPolicy": { - "type": "object", - "properties": { - "IsAdministrator": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is administrator." - }, - "IsHidden": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is hidden." - }, - "IsDisabled": { - "type": "boolean", - "description": "Gets or sets a value indicating whether this instance is disabled." - }, - "MaxParentalRating": { - "type": "integer", - "description": "Gets or sets the max parental rating.", - "format": "int32", - "nullable": true - }, - "BlockedTags": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "EnableUserPreferenceAccess": { - "type": "boolean" - }, - "AccessSchedules": { - "type": "array", - "items": { - "$ref": "#/components/schemas/AccessSchedule" - }, - "nullable": true - }, - "BlockUnratedItems": { - "type": "array", - "items": { - "$ref": "#/components/schemas/UnratedItem" - }, - "nullable": true - }, - "EnableRemoteControlOfOtherUsers": { - "type": "boolean" - }, - "EnableSharedDeviceControl": { - "type": "boolean" - }, - "EnableRemoteAccess": { - "type": "boolean" - }, - "EnableLiveTvManagement": { - "type": "boolean" - }, - "EnableLiveTvAccess": { - "type": "boolean" - }, - "EnableMediaPlayback": { - "type": "boolean" - }, - "EnableAudioPlaybackTranscoding": { - "type": "boolean" - }, - "EnableVideoPlaybackTranscoding": { - "type": "boolean" - }, - "EnablePlaybackRemuxing": { - "type": "boolean" - }, - "ForceRemoteSourceTranscoding": { - "type": "boolean" - }, - "EnableContentDeletion": { - "type": "boolean" - }, - "EnableContentDeletionFromFolders": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "EnableContentDownloading": { - "type": "boolean" - }, - "EnableSyncTranscoding": { - "type": "boolean", - "description": "Gets or sets a value indicating whether [enable synchronize]." - }, - "EnableMediaConversion": { - "type": "boolean" - }, - "EnabledDevices": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "EnableAllDevices": { - "type": "boolean" - }, - "EnabledChannels": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "nullable": true - }, - "EnableAllChannels": { - "type": "boolean" - }, - "EnabledFolders": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "nullable": true - }, - "EnableAllFolders": { - "type": "boolean" - }, - "InvalidLoginAttemptCount": { - "type": "integer", - "format": "int32" - }, - "LoginAttemptsBeforeLockout": { - "type": "integer", - "format": "int32" - }, - "MaxActiveSessions": { - "type": "integer", - "format": "int32" - }, - "EnablePublicSharing": { - "type": "boolean" - }, - "BlockedMediaFolders": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "nullable": true - }, - "BlockedChannels": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "nullable": true - }, - "RemoteClientBitrateLimit": { - "type": "integer", - "format": "int32" - }, - "AuthenticationProviderId": { - "type": "string", - "nullable": true - }, - "PasswordResetProviderId": { - "type": "string", - "nullable": true - }, - "SyncPlayAccess": { - "allOf": [ - { - "$ref": "#/components/schemas/SyncPlayUserAccessType" - } - ], - "description": "Enum SyncPlayUserAccessType." - } - }, - "additionalProperties": false - }, - "UtcTimeResponse": { - "type": "object", - "properties": { - "RequestReceptionTime": { - "type": "string", - "description": "Gets the UTC time when request has been received.", - "format": "date-time" - }, - "ResponseTransmissionTime": { - "type": "string", - "description": "Gets the UTC time when response has been sent.", - "format": "date-time" - } - }, - "additionalProperties": false, - "description": "Class UtcTimeResponse." - }, - "ValidatePathDto": { - "type": "object", - "properties": { - "ValidateWritable": { - "type": "boolean", - "description": "Gets or sets a value indicating whether validate if path is writable." - }, - "Path": { - "type": "string", - "description": "Gets or sets the path.", - "nullable": true - }, - "IsFile": { - "type": "boolean", - "description": "Gets or sets is path file.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Validate path object." - }, - "VersionInfo": { - "type": "object", - "properties": { - "version": { - "type": "string", - "description": "Gets or sets the version." - }, - "VersionNumber": { - "type": "string", - "description": "Gets the version as a System.Version.", - "readOnly": true - }, - "changelog": { - "type": "string", - "description": "Gets or sets the changelog for this version.", - "nullable": true - }, - "targetAbi": { - "type": "string", - "description": "Gets or sets the ABI that this version was built against.", - "nullable": true - }, - "sourceUrl": { - "type": "string", - "description": "Gets or sets the source URL.", - "nullable": true - }, - "checksum": { - "type": "string", - "description": "Gets or sets a checksum for the binary.", - "nullable": true - }, - "timestamp": { - "type": "string", - "description": "Gets or sets a timestamp of when the binary was built.", - "nullable": true - }, - "repositoryName": { - "type": "string", - "description": "Gets or sets the repository name." - }, - "repositoryUrl": { - "type": "string", - "description": "Gets or sets the repository url." - } - }, - "additionalProperties": false, - "description": "Defines the MediaBrowser.Model.Updates.VersionInfo class." - }, - "Video3DFormat": { - "enum": [ - "HalfSideBySide", - "FullSideBySide", - "FullTopAndBottom", - "HalfTopAndBottom", - "MVC" - ], - "type": "string" - }, - "VideoType": { - "enum": [ - "VideoFile", - "Iso", - "Dvd", - "BluRay" - ], - "type": "string", - "description": "Enum VideoType." - }, - "VirtualFolderInfo": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name.", - "nullable": true - }, - "Locations": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Gets or sets the locations.", - "nullable": true - }, - "CollectionType": { - "allOf": [ - { - "$ref": "#/components/schemas/CollectionTypeOptions" - } - ], - "description": "Gets or sets the type of the collection.", - "nullable": true - }, - "LibraryOptions": { - "allOf": [ - { - "$ref": "#/components/schemas/LibraryOptions" - } - ], - "nullable": true - }, - "ItemId": { - "type": "string", - "description": "Gets or sets the item identifier.", - "nullable": true - }, - "PrimaryImageItemId": { - "type": "string", - "description": "Gets or sets the primary image item identifier.", - "nullable": true - }, - "RefreshProgress": { - "type": "number", - "format": "double", - "nullable": true - }, - "RefreshStatus": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Used to hold information about a user's list of configured virtual folders." - }, - "WakeOnLanInfo": { - "type": "object", - "properties": { - "MacAddress": { - "type": "string", - "description": "Gets the MAC address of the device.", - "nullable": true - }, - "Port": { - "type": "integer", - "description": "Gets or sets the wake-on-LAN port.", - "format": "int32" - } - }, - "additionalProperties": false, - "description": "Provides the MAC address and port for wake-on-LAN functionality." - }, - "XbmcMetadataOptions": { - "type": "object", - "properties": { - "UserId": { - "type": "string", - "nullable": true - }, - "ReleaseDateFormat": { - "type": "string" - }, - "SaveImagePathsInNfo": { - "type": "boolean" - }, - "EnablePathSubstitution": { - "type": "boolean" - }, - "EnableExtraThumbsDuplication": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "XmlAttribute": { - "type": "object", - "properties": { - "Name": { - "type": "string", - "description": "Gets or sets the name of the attribute.", - "nullable": true - }, - "Value": { - "type": "string", - "description": "Gets or sets the value of the attribute.", - "nullable": true - } - }, - "additionalProperties": false, - "description": "Defines the MediaBrowser.Model.Dlna.XmlAttribute." - } - }, - "securitySchemes": { - "CustomAuthentication": { - "type": "apiKey", - "description": "API key header parameter", - "name": "Authorization", - "in": "header" - } - } - } -} \ No newline at end of file diff --git a/project.yml b/project.yml deleted file mode 100644 index 8a822fac8..000000000 --- a/project.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: JellyfinAPI -targets: - JellyfinAPI: - type: framework - platform: iOS - deploymentTarget: "9.0" - sources: [Sources] - info: - path: ./Info.plist - version: 10.8.0 - settings: - APPLICATION_EXTENSION_API_ONLY: true - scheme: {} - dependencies: - - carthage: AnyCodable diff --git a/templates/.DS_Store b/templates/.DS_Store deleted file mode 100644 index e5d59e9c0..000000000 Binary files a/templates/.DS_Store and /dev/null differ diff --git a/templates/swift5/.DS_Store b/templates/swift5/.DS_Store deleted file mode 100644 index 5008ddfcf..000000000 Binary files a/templates/swift5/.DS_Store and /dev/null differ diff --git a/templates/swift5/modelObject.mustache b/templates/swift5/modelObject.mustache deleted file mode 100644 index cc0fad0a2..000000000 --- a/templates/swift5/modelObject.mustache +++ /dev/null @@ -1,121 +0,0 @@ -{{^objcCompatible}}{{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} {{#useClasses}}final class{{/useClasses}}{{^useClasses}}struct{{/useClasses}} {{{classname}}}: {{#useVapor}}Content{{/useVapor}}{{^useVapor}}Codable, JSONEncodable{{/useVapor}}{{#vendorExtensions.x-swift-hashable}}, Hashable{{/vendorExtensions.x-swift-hashable}} { -{{/objcCompatible}}{{#objcCompatible}}@objc {{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} class {{classname}}: NSObject, Codable, JSONEncodable { -{{/objcCompatible}} - -{{#allVars}} -{{#isEnum}} -{{> modelInlineEnumDeclaration}} -{{/isEnum}} -{{/allVars}} -{{#allVars}} -{{#isEnum}} - {{#description}}/** {{{.}}} */ - {{/description}}{{#deprecated}}@available(*, deprecated, message: "This property is deprecated.") - {{/deprecated}}{{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} {{#readonlyProperties}}private(set) {{/readonlyProperties}}var {{{name}}}: {{#vendorExtensions.x-null-encodable}}NullEncodable<{{{datatypeWithEnum}}}>{{/vendorExtensions.x-null-encodable}}{{^vendorExtensions.x-null-encodable}}{{{datatypeWithEnum}}}{{#required}}{{#isNullable}}?{{/isNullable}}{{/required}}{{^required}}?{{/required}}{{/vendorExtensions.x-null-encodable}}{{#defaultValue}} = {{#vendorExtensions.x-null-encodable}}{{{vendorExtensions.x-null-encodable-default-value}}}{{/vendorExtensions.x-null-encodable}}{{^vendorExtensions.x-null-encodable}}{{{.}}}{{/vendorExtensions.x-null-encodable}}{{/defaultValue}} -{{/isEnum}} -{{^isEnum}} - {{#description}}/** {{{.}}} */ - {{/description}}{{#deprecated}}@available(*, deprecated, message: "This property is deprecated.") - {{/deprecated}}{{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} {{#readonlyProperties}}private(set) {{/readonlyProperties}}var {{{name}}}: {{#vendorExtensions.x-null-encodable}}NullEncodable<{{{datatype}}}>{{/vendorExtensions.x-null-encodable}}{{^vendorExtensions.x-null-encodable}}{{{datatype}}}{{#required}}{{#isNullable}}?{{/isNullable}}{{/required}}{{^required}}?{{/required}}{{/vendorExtensions.x-null-encodable}}{{#defaultValue}} = {{#vendorExtensions.x-null-encodable}}{{{vendorExtensions.x-null-encodable-default-value}}}{{/vendorExtensions.x-null-encodable}}{{^vendorExtensions.x-null-encodable}}{{{.}}}{{/vendorExtensions.x-null-encodable}}{{/defaultValue}} - {{#objcCompatible}} - {{#vendorExtensions.x-swift-optional-scalar}} - {{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} var {{{name}}}Num: NSNumber? { - get { - {{^vendorExtensions.x-null-encodable}} - return {{{name}}} as NSNumber? - {{/vendorExtensions.x-null-encodable}} - {{#vendorExtensions.x-null-encodable}} - if case .encodeValue(let value) = {{name}} { - return value as NSNumber? - } else { - return nil - } - {{/vendorExtensions.x-null-encodable}} - } - } - {{/vendorExtensions.x-swift-optional-scalar}} - {{/objcCompatible}} -{{/isEnum}} -{{/allVars}} -{{#hasVars}} - - {{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} init({{#allVars}}{{{name}}}: {{#vendorExtensions.x-null-encodable}}NullEncodable<{{{datatypeWithEnum}}}>{{/vendorExtensions.x-null-encodable}}{{^vendorExtensions.x-null-encodable}}{{{datatypeWithEnum}}}{{#required}}{{#isNullable}}?{{/isNullable}}{{/required}}{{^required}}?{{/required}}{{/vendorExtensions.x-null-encodable}}{{#defaultValue}} = {{#vendorExtensions.x-null-encodable}}{{{vendorExtensions.x-null-encodable-default-value}}}{{/vendorExtensions.x-null-encodable}}{{^vendorExtensions.x-null-encodable}}{{{.}}}{{/vendorExtensions.x-null-encodable}}{{/defaultValue}}{{^defaultValue}}{{^required}} = {{#vendorExtensions.x-null-encodable}}.encodeNull{{/vendorExtensions.x-null-encodable}}{{^vendorExtensions.x-null-encodable}}nil{{/vendorExtensions.x-null-encodable}}{{/required}}{{/defaultValue}}{{^-last}}, {{/-last}}{{/allVars}}) { - {{#allVars}} - self.{{{name}}} = {{{name}}} - {{/allVars}} - } -{{/hasVars}} - - {{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} enum CodingKeys: {{#hasVars}}String, {{/hasVars}}CodingKey, CaseIterable { - {{#allVars}} - case {{{name}}}{{#vendorExtensions.x-codegen-escaped-property-name}} = "{{{baseName}}}"{{/vendorExtensions.x-codegen-escaped-property-name}} - {{/allVars}} - }{{#generateModelAdditionalProperties}}{{#additionalPropertiesType}} - - {{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} {{#readonlyProperties}}private(set) {{/readonlyProperties}}var additionalProperties: [String: {{{additionalPropertiesType}}}] = [:] - - {{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} subscript(key: String) -> {{{additionalPropertiesType}}}? { - get { - if let value = additionalProperties[key] { - return value - } - return nil - } - - set { - additionalProperties[key] = newValue - } - }{{/additionalPropertiesType}}{{/generateModelAdditionalProperties}} - - // Encodable protocol methods - - {{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.container(keyedBy: CodingKeys.self) - {{#allVars}} - {{#vendorExtensions.x-null-encodable}} - switch {{{name}}} { - case .encodeNothing: break - case .encodeNull, .encodeValue: try encoderContainer.encode({{{name}}}, forKey: .{{{name}}}) - } - {{/vendorExtensions.x-null-encodable}} - {{^vendorExtensions.x-null-encodable}} - try encoderContainer.encode{{^required}}IfPresent{{/required}}({{{name}}}, forKey: .{{{name}}}) - {{/vendorExtensions.x-null-encodable}} - {{/allVars}} - {{#generateModelAdditionalProperties}} - {{#additionalPropertiesType}} - var additionalPropertiesContainer = encoder.container(keyedBy: String.self) - try additionalPropertiesContainer.encodeMap(additionalProperties) - {{/additionalPropertiesType}} - {{/generateModelAdditionalProperties}} - }{{#generateModelAdditionalProperties}}{{#additionalPropertiesType}} - - // Decodable protocol methods - - {{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}}{{#objcCompatible}} required{{/objcCompatible}} init(from decoder: Decoder) throws { - let decoderContainer = try decoder.container(keyedBy: CodingKeys.self) - {{#allVars}} - {{{name}}} = try decoderContainer.decode{{#required}}{{#isNullable}}IfPresent{{/isNullable}}{{/required}}{{^required}}IfPresent{{/required}}({{{datatypeWithEnum}}}.self, forKey: .{{{name}}}) - {{/allVars}} - var nonAdditionalPropertyKeys = Set() - {{#allVars}} - nonAdditionalPropertyKeys.insert("{{{baseName}}}") - {{/allVars}} - let additionalPropertiesContainer = try decoder.container(keyedBy: String.self) - additionalProperties = try additionalPropertiesContainer.decodeMap({{{additionalPropertiesType}}}.self, excludedKeys: nonAdditionalPropertyKeys) - }{{/additionalPropertiesType}}{{/generateModelAdditionalProperties}}{{^objcCompatible}}{{#useClasses}}{{#vendorExtensions.x-swift-hashable}} - - {{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} static func == (lhs: {{classname}}, rhs: {{classname}}) -> Bool { - {{#allVars}} - lhs.{{{name}}} == rhs.{{{name}}}{{^-last}} &&{{/-last}} - {{/allVars}} - {{#generateModelAdditionalProperties}}{{#additionalPropertiesType}}{{#hasVars}}&& {{/hasVars}}lhs.additionalProperties == rhs.additionalProperties{{/additionalPropertiesType}}{{/generateModelAdditionalProperties}} - } - - {{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} func hash(into hasher: inout Hasher) { - {{#allVars}} - hasher.combine({{{name}}}{{^vendorExtensions.x-null-encodable}}{{^required}}?{{/required}}{{/vendorExtensions.x-null-encodable}}.hashValue) - {{/allVars}} - {{#generateModelAdditionalProperties}}{{#additionalPropertiesType}}hasher.combine(additionalProperties.hashValue){{/additionalPropertiesType}}{{/generateModelAdditionalProperties}} - }{{/vendorExtensions.x-swift-hashable}}{{/useClasses}}{{/objcCompatible}} -} \ No newline at end of file diff --git a/templates/swift5/modelOneOf.mustache b/templates/swift5/modelOneOf.mustache deleted file mode 100644 index 27ca9424f..000000000 --- a/templates/swift5/modelOneOf.mustache +++ /dev/null @@ -1,31 +0,0 @@ -public enum {{classname}}: {{#useVapor}}Content{{/useVapor}}{{^useVapor}}Codable, JSONEncodable{{#vendorExtensions.x-swift-hashable}}, Hashable{{/vendorExtensions.x-swift-hashable}}{{/useVapor}} { - {{#oneOf}} - case type{{.}}({{.}}) - {{/oneOf}} - - public func encode(to encoder: Encoder) throws { - var encoderContainer = encoder.singleValueContainer() - switch self { - {{#oneOf}} - case .type{{.}}(let value): - try encoderContainer.encode(value) - {{/oneOf}} - } - } - - public init(from decoder: Decoder) throws { - let decoderContainer = try decoder.singleValueContainer() - {{#oneOf}} - {{#-first}} - if let value = try? decoderContainer.decode({{.}}.self) { - {{/-first}} - {{^-first}} - } else if let value = try? decoderContainer.decode({{.}}.self) { - {{/-first}} - self = .type{{.}}(value) - {{/oneOf}} - } else { - throw DecodingError.typeMismatch(Self.Type.self, .init(codingPath: decoder.codingPath, debugDescription: "Unable to decode instance of {{classname}}")) - } - } -} \ No newline at end of file